@charset "UTF-8";
.problem {
  position: relative;
  padding: 76px 0;
  background: #fff;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: rgba(182, 139, 76, 0.08);
  border-radius: 50%;
}
.problem .problem_inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.problem .problem_head {
  margin-bottom: 28px;
  text-align: center;
}
.problem .problem_head span {
  display: block;
  margin-bottom: 8px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.problem .problem_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.problem .problem_head p {
  margin: 14px 0 0;
  color: #666;
  font-size: 16px;
  font-weight: 500;
}
.problem .problem_box {
  position: relative;
  padding: 48px 40px;
  background: linear-gradient(135deg, #fff 0%, #f6efe6 100%);
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}
.problem .problem_box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 32px;
  height: 32px;
  background: #f6efe6;
  border-right: 1px solid rgba(182, 139, 76, 0.18);
  border-bottom: 1px solid rgba(182, 139, 76, 0.18);
  transform: translateX(-50%) rotate(45deg);
}
.problem .problem_list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 24px 72px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.problem .problem_list li {
  display: flex;
  align-items: center;
  color: #222;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.problem .problem_list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #b68b4c;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}
.problem .problem_message {
  margin: 52px auto 36px;
  text-align: center;
}
.problem .problem_message span {
  display: block;
  color: #777;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.problem .problem_message p {
  margin: 6px 0 0;
  color: #222;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.problem .problem_message strong {
  position: relative;
  display: inline-block;
  color: #222;
  font-size: 46px;
  font-weight: 900;
}
.problem .problem_message strong::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 88px;
  height: 3px;
  background: #b68b4c;
  border-radius: 999px;
  transform: translateX(-50%);
}
.problem .solution_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem .solution_card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}
.problem .solution_card::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -30px;
  width: 190px;
  height: 190px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  transform: rotate(-10deg);
  pointer-events: none;
}
.problem .solution_card.solution_card--price::after {
  background-image: url("../images/solution_price.webp");
}
.problem .solution_card.solution_card--seo::after {
  background-image: url("../images/solution_seo.webp");
}
.problem .solution_card.solution_card--map::after {
  background-image: url("../images/solution_map.webp");
}
.problem .solution_card.solution_card--recruit::after {
  background-image: url("../images/solution_recruit.webp");
}
.problem .solution_card.solution_card--reserve::after {
  background-image: url("../images/solution_reserve.webp");
}
.problem .solution_card.solution_card--update::after {
  background-image: url("../images/solution_update.webp");
}
.problem .solution_card .solution_card_icon,
.problem .solution_card h3,
.problem .solution_card p {
  position: relative;
  z-index: 1;
}
.problem .solution_card .solution_card_icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #f4efe7;
  border-radius: 50%;
}
.problem .solution_card .solution_card_icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.problem .solution_card h3 {
  margin: 0 0 12px;
  color: #222;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}
.problem .solution_card p {
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}
@media (min-width: 1025px) {
  .problem .solution_card {
    --oy: 0px;
    transform: translateY(var(--oy));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .problem .solution_card:nth-child(3n+2) {
    --oy: 40px;
  }
  .problem .solution_card:nth-child(3n+3) {
    --oy: 20px;
  }
  .problem .solution_card:hover {
    transform: translateY(calc(var(--oy) - 6px));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 1024px) {
  .problem {
    padding: 68px 0;
  }
  .problem .problem_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .problem .problem_head {
    text-align: center;
  }
  .problem .problem_head h2 {
    font-size: 34px;
  }
  .problem .problem_box {
    padding: 36px 24px;
  }
  .problem .problem_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }
  .problem .problem_list li {
    align-items: flex-start;
    font-size: 15px;
  }
  .problem .problem_list li::before {
    margin-top: 3px;
  }
  .problem .problem_message {
    margin-top: 64px;
  }
  .problem .problem_message strong {
    font-size: 40px;
  }
  .problem .solution_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .problem .problem {
    padding: 64px 0;
  }
  .problem .problem_head {
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .problem .problem_head h2 {
    font-size: 28px;
  }
  .problem .problem_head p {
    font-size: 14px;
  }
  .problem .problem_box {
    max-width: 520px;
    margin: 0 auto;
    padding: 28px 20px;
    border-radius: 20px;
  }
  .problem .problem_list {
    grid-template-columns: 1fr;
    gap: 18px;
    width: fit-content;
    margin: 0 auto;
  }
  .problem .problem_list li {
    font-size: 14px;
  }
  .problem .problem_message {
    margin: 56px auto 34px;
  }
  .problem .problem_message p {
    font-size: 22px;
  }
  .problem .problem_message strong {
    font-size: 32px;
  }
  .problem .solution_cards {
    max-width: 520px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .problem .solution_card {
    min-height: 180px;
    padding: 24px 22px;
  }
  .problem .solution_card::after {
    width: 140px;
    height: 140px;
    right: -10px;
  }
}
@media screen and (max-width: 480px) {
  .problem .problem_inner {
    padding: 0 12px;
  }
  .problem .problem_head h2 {
    font-size: 25px;
  }
  .problem .problem_head p {
    text-align: left;
  }
  .problem .problem_message strong {
    font-size: 28px;
  }
  .problem .solution_card h3 {
    font-size: 18px;
  }
  .problem .solution_card p {
    font-size: 13px;
  }
}

.why {
  position: relative;
  padding: 76px 0;
  background: #fff;
  overflow: hidden;
}
.why .why_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.why .why_head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.why .why_head span {
  display: block;
  margin-bottom: 12px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.why .why_head h2 {
  max-width: 620px;
  margin: 0 auto 24px;
  color: #222;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.why .why_head p {
  max-width: 680px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: left;
}
.why .why_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.why .why_card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.16);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.why .why_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}
.why .why_card .why_card_number {
  display: block;
  margin-bottom: 18px;
  color: rgba(182, 139, 76, 0.35);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}
.why .why_card .why_card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  background: #f4efe7;
  border-radius: 50%;
}
.why .why_card .why_card_icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.why .why_card h3 {
  margin: 0 0 14px;
  color: #222;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.why .why_card p {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}
@media (min-width: 1025px) {
  .why .why_card {
    --oy: 0px;
    transform: translateY(var(--oy));
  }
  .why .why_card:nth-child(2n) {
    --oy: 48px;
  }
  .why .why_card:hover {
    transform: translateY(calc(var(--oy) - 4px));
  }
}
@media screen and (max-width: 1024px) {
  .why {
    padding: 68px 0;
  }
  .why .why_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .why .why_head {
    margin-bottom: 42px;
  }
  .why .why_head h2 {
    max-width: 560px;
    font-size: 34px;
  }
  .why .why_head p {
    max-width: 620px;
  }
  .why .why_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .why {
    padding: 64px 0;
  }
  .why .why_inner {
    padding: 0 14px;
  }
  .why .why_head {
    max-width: 520px;
    margin-bottom: 34px;
  }
  .why .why_head h2 {
    max-width: 420px;
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.45;
  }
  .why .why_head p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.9;
  }
  .why .why_cards {
    max-width: 520px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .why .why_card {
    padding: 22px 14px;
  }
  .why .why_card .why_card_number {
    margin-bottom: 14px;
    font-size: 24px;
  }
  .why .why_card .why_card_icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }
  .why .why_card .why_card_icon img {
    width: 36px;
    height: 36px;
  }
  .why .why_card h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .why .why_card p {
    max-width: 180px;
    font-size: 12px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 480px) {
  .why .why_inner {
    padding: 0 12px;
  }
  .why .why_head {
    max-width: 420px;
  }
  .why .why_head h2 {
    font-size: 24px;
  }
  .why .why_head p {
    max-width: 90%;
  }
  .why .why_cards {
    max-width: 420px;
  }
  .why .why_card h3 {
    font-size: 18px;
  }
  .why .why_card p {
    max-width: 160px;
    font-size: 13px;
  }
}

.function {
  position: relative;
  padding: 76px 0;
  background: #faf9f6;
  overflow: hidden;
}
.function .function_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.function .function_head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.function .function_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.function .function_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.function .function_head h2 .function_head_br {
  display: none;
}
.function .function_head p {
  max-width: 90%;
  margin: 16px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
.function .function_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.function .function_card {
  position: relative;
  min-height: 210px;
  padding: 26px 18px 22px;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}
.function .function_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}
.function .function_card:hover .function_card_more {
  transform: translateX(4px);
}
.function .function_card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
}
.function .function_card h3 {
  margin: 0 0 10px;
  color: #222;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}
.function .function_card p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
.function .function_card .function_card_more {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #b68b4c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: 0.2s;
}
@media (min-width: 1025px) {
  .function .function_card {
    --oy: 0px;
    transform: translateY(var(--oy));
  }
  .function .function_card:nth-child(2n) {
    --oy: 34px;
  }
  .function .function_card:hover {
    transform: translateY(calc(var(--oy) - 4px));
  }
}
@media screen and (max-width: 1024px) {
  .function {
    padding: 68px 0;
  }
  .function .function_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .function .function_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .function {
    padding: 64px 0;
  }
  .function .function_inner {
    padding: 0 14px;
  }
  .function .function_head {
    max-width: 520px;
  }
  .function .function_head h2 {
    font-size: 28px;
  }
  .function .function_head p {
    font-size: 14px;
  }
  .function .function_cards {
    max-width: 520px;
    margin: 0 auto;
    gap: 12px;
  }
  .function .function_card {
    min-height: 188px;
    padding: 24px 12px 18px;
  }
  .function .function_card img {
    width: 48px;
    height: 48px;
  }
  .function .function_card h3 {
    font-size: 15px;
  }
  .function .function_card p {
    font-size: 12px;
  }
  .function .function_card .function_card_more {
    margin-top: 14px;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .function .function_inner {
    padding: 0 12px;
  }
  .function .function_inner .function_head {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .function .function_inner .function_head h2 .function_head_br {
    display: block;
  }
  .function .function_inner .function_head p {
    text-align: left;
  }
  .function .function_cards {
    max-width: 420px;
  }
}

.function_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.function_modal.is-active {
  display: block;
}
.function_modal .function_modal_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.function_modal .function_modal_body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 100% - 32px);
  max-height: 86vh;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  padding: 34px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.function_modal .function_modal_body > span {
  display: block;
  margin-bottom: 8px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.function_modal .function_modal_body h3 {
  margin: 0 0 20px;
  color: #222;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
}
.function_modal .function_modal_body img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16/9;
  object-fit: contain;
  margin-bottom: 22px;
  background: #f4efe7;
  border-radius: 18px;
}
.function_modal .function_modal_body p {
  margin: 0 0 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}
.function_modal .function_modal_body ul {
  padding: 20px;
  margin: 0;
  background: #faf9f6;
  border-radius: 18px;
  list-style: none;
}
.function_modal .function_modal_body ul li {
  position: relative;
  padding-left: 28px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.function_modal .function_modal_body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  color: #b68b4c;
  font-weight: 900;
}
.function_modal .function_modal_close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f4efe7;
  color: #8d6938;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .function_modal .function_modal_body {
    width: calc(100% - 28px);
    padding: 26px 20px;
  }
  .function_modal .function_modal_body h3 {
    font-size: 24px;
  }
}

.reason {
  position: relative;
  padding: 76px 0;
  background: #fff;
  overflow: hidden;
}
.reason .reason_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.reason .reason_head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.reason .reason_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.reason .reason_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.reason .reason_head p {
  max-width: 90%;
  margin: 16px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
.reason .reason_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(182, 139, 76, 0.2);
  border-bottom: 1px solid rgba(182, 139, 76, 0.2);
}
.reason .reason_item {
  padding: 42px 34px;
  text-align: center;
}
.reason .reason_item:not(:last-child) {
  border-right: 1px solid rgba(182, 139, 76, 0.2);
}
.reason .reason_item .reason_number {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0 auto 22px;
}
.reason .reason_item .reason_number img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reason .reason_item h3 {
  margin: 0 0 14px;
  color: #222;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.reason .reason_item p {
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .reason {
    padding: 68px 0;
  }
  .reason .reason_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .reason .reason_head h2 {
    font-size: 34px;
  }
  .reason .reason_item {
    padding: 36px 24px;
  }
  .reason .reason_item h3 {
    font-size: 18px;
  }
  .reason .reason_item .reason_number {
    width: 96px;
    height: 96px;
  }
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 64px 0;
  }
  .reason .reason_inner {
    padding: 0 14px;
  }
  .reason .reason_head {
    max-width: 520px;
    margin-bottom: 36px;
  }
  .reason .reason_head h2 {
    font-size: 28px;
  }
  .reason .reason_head p {
    font-size: 14px;
    text-align: left;
  }
  .reason .reason_list {
    display: block;
    max-width: 520px;
    border-top: 1px solid rgba(182, 139, 76, 0.2);
    border-bottom: 1px solid rgba(182, 139, 76, 0.2);
  }
  .reason .reason_item {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 18px;
    padding: 28px 0;
    text-align: left;
  }
  .reason .reason_item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(182, 139, 76, 0.2);
  }
  .reason .reason_item .reason_number {
    grid-row: 1/3;
    width: 80px;
    height: 80px;
    margin: 0;
  }
  .reason .reason_item h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }
  .reason .reason_item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .reason .reason_inner {
    padding: 0 12px;
  }
  .reason .reason_head,
  .reason .reason_list {
    max-width: 420px;
  }
  .reason .reason_head h2 {
    font-size: 25px;
  }
  .reason .reason_item {
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    padding: 24px 0;
  }
  .reason .reason_item .reason_number {
    width: 64px;
    height: 64px;
    font-size: 17px;
  }
  .reason .reason_item h3 {
    font-size: 17px;
  }
  .reason .reason_item p {
    font-size: 13px;
  }
}

.price {
  position: relative;
  padding: 76px 0;
  background: #fff;
  overflow: hidden;
}
.price::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(182, 139, 76, 0.08);
  border-radius: 50%;
}
.price .price_inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.price .price_head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.price .price_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.price .price_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.price .price_head p {
  max-width: 90%;
  margin: 16px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
.price .price_scroll_text {
  display: none;
  margin: 0 0 12px;
  color: #b68b4c;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}
.price .price_scroll {
  width: 100%;
}
.price .price_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price .price_card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 52px 28px 30px;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}
.price .price_card_recommend {
  border: 2px solid #b68b4c;
  box-shadow: 0 20px 44px rgba(182, 139, 76, 0.18);
}
@media (min-width: 1025px) {
  .price .price_card_recommend {
    transform: translateY(-18px);
  }
}
.price .price_badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  color: #fff;
  background: #b68b4c;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.price .price_card_head {
  text-align: center;
  margin-bottom: 28px;
}
.price .price_card_head .price_plan {
  display: block;
  margin-bottom: 18px;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.price .price_card_head h3 {
  margin: 0;
  color: #222;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.price .price_card_head p {
  margin: 12px 0 0;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.price .price_list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.price .price_list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}
.price .price_list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b68b4c;
  font-weight: 900;
}
.price .price_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  color: #8d6938;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.65);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition: 0.2s;
}
.price .price_btn:hover {
  transform: translateY(-3px);
  background: #f4efe7;
}
.price .price_btn_main {
  color: #fff;
  background: #b68b4c;
  border-color: #b68b4c;
}
.price .price_btn_main:hover {
  background: #8d6938;
}
@media screen and (max-width: 1024px) {
  .price {
    padding: 68px 0;
  }
  .price .price_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .price .price_head h2 {
    font-size: 34px;
  }
  .price .price_cards {
    gap: 18px;
  }
  .price .price_card {
    padding: 38px 22px 28px;
  }
  .price .price_card_head h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .price {
    padding: 64px 0;
  }
  .price .price_inner {
    padding: 0 14px;
  }
  .price .price_head {
    max-width: 520px;
    margin-bottom: 34px;
  }
  .price .price_head h2 {
    font-size: 28px;
  }
  .price .price_head p {
    font-size: 14px;
  }
  .price .price_scroll_text {
    display: block;
    max-width: 520px;
    margin: 0 auto 12px;
  }
  .price .price_scroll {
    max-width: 520px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .price .price_scroll::-webkit-scrollbar {
    height: 8px;
  }
  .price .price_scroll::-webkit-scrollbar-track {
    background: #f4efe7;
    border-radius: 999px;
  }
  .price .price_scroll::-webkit-scrollbar-thumb {
    background: #b68b4c;
    border-radius: 999px;
  }
  .price .price_cards {
    width: 900px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .price .price_card {
    min-height: 620px;
  }
}
@media screen and (max-width: 480px) {
  .price .price_inner {
    padding: 0 12px;
  }
  .price .price_inner .price_head {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .price .price_inner .price_head p {
    text-align: left;
  }
  .price .price_scroll,
  .price .price_scroll_text {
    max-width: 420px;
  }
  .price .price_cards {
    width: 840px;
  }
  .price .price_card {
    padding: 38px 16px 28px;
  }
  .price .price_card_head h3 {
    font-size: 24px;
  }
}

.step {
  position: relative;
  padding: 76px 0;
  background: #faf9f6;
  overflow: hidden;
}
.step .step_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.step .step_head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.step .step_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.step .step_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.step .step_head p {
  max-width: 90%;
  margin: 16px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
.step .step_list {
  max-width: 920px;
  margin: 0 auto;
}
.step .step_item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 120px 1fr;
  align-items: center;
  min-height: 126px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.055);
  overflow: hidden;
}
.step .step_item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 96px;
  background: linear-gradient(135deg, #b68b4c 0%, #8d6938 100%);
  clip-path: polygon(0 0, 74% 0, 100% 50%, 74% 100%, 0 100%);
}
.step .step_item:last-child {
  margin-bottom: 0;
}
.step .step_number {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.06em;
}
.step .step_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .step_icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.step .step_text {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px 32px 28px 0;
}
.step .step_text h3 {
  margin: 0;
  color: #222;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.step .step_text p {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}
.step .step_text p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 56px;
  background: rgba(182, 139, 76, 0.28);
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .step {
    padding: 68px 0;
  }
  .step .step_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .step .step_head h2 {
    font-size: 34px;
  }
  .step .step_list {
    max-width: 768px;
  }
  .step .step_item {
    grid-template-columns: 82px 96px 1fr;
  }
  .step .step_item::before {
    width: 82px;
  }
  .step .step_text {
    grid-template-columns: 170px 1fr;
    gap: 20px;
    padding-right: 24px;
  }
  .step .step_text h3 {
    font-size: 21px;
  }
  .step .step_text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .step {
    padding: 64px 0;
  }
  .step .step_inner {
    padding: 0 14px;
  }
  .step .step_head {
    max-width: 520px;
    margin-bottom: 34px;
  }
  .step .step_head h2 {
    font-size: 28px;
  }
  .step .step_head p {
    font-size: 14px;
    text-align: left;
  }
  .step .step_list {
    max-width: 520px;
  }
  .step .step_item {
    grid-template-columns: 70px 76px 1fr;
    min-height: 118px;
    border-radius: 18px;
  }
  .step .step_item::before {
    width: 70px;
  }
  .step .step_number {
    font-size: 20px;
  }
  .step .step_icon img {
    width: 42px;
    height: 42px;
  }
  .step .step_text {
    display: block;
    padding: 22px 18px 22px 0;
  }
  .step .step_text h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .step .step_text p {
    padding-left: 0;
    font-size: 13px;
    line-height: 1.75;
  }
  .step .step_text p::before {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .step .step_inner {
    padding: 0 12px;
  }
  .step .step_head,
  .step .step_list {
    max-width: 420px;
  }
  .step .step_head h2 {
    font-size: 25px;
  }
  .step .step_item {
    grid-template-columns: 58px 58px 1fr;
    min-height: 116px;
  }
  .step .step_item::before {
    width: 58px;
  }
  .step .step_number {
    font-size: 17px;
  }
  .step .step_icon img {
    width: 34px;
    height: 34px;
  }
  .step .step_text {
    padding: 20px 14px 20px 0;
  }
  .step .step_text h3 {
    font-size: 17px;
  }
  .step .step_text p {
    font-size: 12px;
  }
}

.sample {
  position: relative;
  padding: 76px 0;
  background: #fff;
  overflow: hidden;
}
.sample::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(182, 139, 76, 0.08);
  border-radius: 50%;
}
.sample .sample_inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.sample .sample_head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.sample .sample_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.sample .sample_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.sample .sample_head p {
  max-width: 90%;
  margin: 16px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
.sample .sample_scroll_text {
  margin: 0 0 14px;
  color: #b68b4c;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}
.sample .sample_scroll {
  overflow-x: auto;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.sample .sample_scroll::-webkit-scrollbar {
  height: 8px;
}
.sample .sample_scroll::-webkit-scrollbar-track {
  background: #f4efe7;
  border-radius: 999px;
}
.sample .sample_scroll::-webkit-scrollbar-thumb {
  background: #b68b4c;
  border-radius: 999px;
}
.sample .sample_list {
  display: flex;
  gap: 28px;
  width: max-content;
}
.sample .sample_item {
  width: 360px;
}
.sample .sample_image {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}
.sample .sample_image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  transition: 0.3s;
}
.sample .sample_image:hover img {
  transform: scale(1.04);
}
.sample .sample_body {
  padding: 22px 4px 0;
}
.sample .sample_body span {
  display: block;
  margin-bottom: 8px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sample .sample_body h3 {
  margin: 0 0 10px;
  color: #222;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}
.sample .sample_body p {
  margin: 0 0 6px;
  color: #666;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.sample .sample_body strong {
  display: block;
  margin-bottom: 14px;
  color: #222;
  font-size: 20px;
  font-weight: 900;
}
.sample .sample_link {
  display: inline-flex;
  align-items: center;
  color: #b68b4c;
  font-size: 14px;
  font-weight: 900;
  transition: 0.2s;
}
.sample .sample_link:hover {
  transform: translateX(4px);
}
@media screen and (max-width: 1024px) {
  .sample {
    padding: 68px 0;
  }
  .sample .sample_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .sample .sample_head h2 {
    font-size: 34px;
  }
  .sample .sample_item {
    width: 330px;
  }
}
@media screen and (max-width: 768px) {
  .sample {
    padding: 64px 0;
  }
  .sample .sample_inner {
    padding: 0 14px;
  }
  .sample .sample_head {
    max-width: 520px;
    margin-bottom: 34px;
  }
  .sample .sample_head h2 {
    font-size: 28px;
  }
  .sample .sample_head p {
    font-size: 14px;
    text-align: left;
  }
  .sample .sample_scroll_text,
  .sample .sample_scroll {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .sample .sample_list {
    gap: 22px;
  }
  .sample .sample_item {
    width: 300px;
  }
  .sample .sample_body h3 {
    font-size: 20px;
  }
  .sample .sample_body strong {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .sample .sample_inner {
    padding: 0 12px;
  }
  .sample .sample_head,
  .sample .sample_scroll_text,
  .sample .sample_scroll {
    max-width: 420px;
  }
  .sample .sample_head h2 {
    font-size: 25px;
  }
  .sample .sample_item {
    width: 280px;
  }
  .sample .sample_image {
    border-radius: 22px;
  }
}

.sample_detail {
  display: block;
  width: fit-content;
  margin: 36px auto 0;
  padding: 14px 30px;
  color: #111;
  background: #fff;
  border: 1px solid #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.25s;
}
.sample_detail:hover {
  color: #fff;
  background: #111;
}

/* ------------------------------------------------------------
sample modal
------------------------------------------------------------ */
.sample_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.sample_modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sample_modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.sample_modal-content {
  position: relative;
  width: min(100%, 980px);
  max-height: 86vh;
  padding: 46px 40px 40px;
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.sample_modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}
.sample_modal-close:hover {
  color: #fff;
  background: #111;
}

.sample_modal-label {
  margin: 0 0 10px;
  color: #8d6938;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sample_modal-content h3 {
  margin: 0;
  color: #111;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.sample_modal-lead {
  margin: 18px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

.sample_modal-table {
  margin-top: 34px;
  overflow-x: auto;
}
.sample_modal-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}
.sample_modal-table th,
.sample_modal-table td {
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #222;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
}
.sample_modal-table thead th {
  color: #fff;
  background: #111;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.sample_modal-table tbody th {
  width: 180px;
  color: #111;
  background: #f7f3ec;
  font-weight: 800;
  text-align: left;
}
.sample_modal-table tbody td {
  background: #fff;
}
.sample_modal-table tbody td.is-recommend {
  color: #8d6938;
  font-weight: 800;
  background: #fbf6ee;
}

.sample_modal-note {
  margin: 18px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .sample_detail {
    margin-top: 28px;
  }
  .sample_modal {
    padding: 16px;
  }
  .sample_modal-content {
    padding: 42px 20px 28px;
    border-radius: 18px;
  }
  .sample_modal-table {
    margin-top: 26px;
  }
  .sample_modal-table th,
  .sample_modal-table td {
    padding: 14px 12px;
    font-size: 13px;
  }
}
.faq {
  position: relative;
  padding: 96px 0;
  background: #faf9f6;
  overflow: hidden;
}
.faq .faq_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.faq .faq_head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.faq .faq_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.faq .faq_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.faq .faq_head p {
  max-width: 90%;
  margin: 16px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
.faq .faq_list {
  max-width: 820px;
  margin: 0 auto;
}
.faq .faq_item {
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
  overflow: hidden;
}
.faq .faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  color: #222;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}
.faq .faq_question span {
  position: relative;
  padding-left: 34px;
}
.faq .faq_question span::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: #b68b4c;
  font-size: 18px;
  font-weight: 900;
}
.faq .faq_question i {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #f4efe7;
  border-radius: 50%;
}
.faq .faq_question i::before, .faq .faq_question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #8d6938;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.faq .faq_question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq .faq_item.is-open .faq_question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faq .faq_answer {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
}
.faq .faq_answer p {
  position: relative;
  margin: 0;
  padding: 0 26px 24px 60px;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}
.faq .faq_answer p::before {
  content: "A";
  position: absolute;
  left: 26px;
  top: 0;
  color: #b68b4c;
  font-size: 18px;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .faq {
    padding: 80px 0;
  }
  .faq .faq_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .faq .faq_head h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 64px 0;
  }
  .faq .faq_inner {
    padding: 0 14px;
  }
  .faq .faq_head {
    max-width: 520px;
    margin-bottom: 34px;
  }
  .faq .faq_head h2 {
    font-size: 28px;
  }
  .faq .faq_head p {
    font-size: 14px;
    text-align: left;
  }
  .faq .faq_list {
    max-width: 520px;
  }
  .faq .faq_question {
    padding: 18px 18px;
    font-size: 15px;
  }
  .faq .faq_question span {
    padding-left: 30px;
  }
  .faq .faq_answer p {
    padding: 0 18px 20px 48px;
    font-size: 14px;
  }
  .faq .faq_answer p::before {
    left: 18px;
  }
}
@media screen and (max-width: 480px) {
  .faq .faq_inner {
    padding: 0 12px;
  }
  .faq .faq_head,
  .faq .faq_list {
    max-width: 420px;
  }
  .faq .faq_head h2 {
    font-size: 25px;
  }
  .faq .faq_question {
    font-size: 14px;
  }
  .faq .faq_answer p {
    font-size: 13px;
  }
}

.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #8d6938 0%, #b68b4c 100%);
}
.cta .cta_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.cta .cta_label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  color: #8d6938;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.cta h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4;
}
.cta p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 68px 0;
  }
  .cta .cta_inner {
    max-width: 520px;
    padding: 0 14px;
  }
  .cta h2 {
    font-size: 32px;
  }
  .cta p {
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .cta .cta_inner {
    padding: 0 12px;
  }
  .cta h2 {
    font-size: 26px;
  }
}

.footer {
  padding: 64px 0 30px;
  background: #222;
}
.footer .footer_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer .footer_logo {
  text-align: center;
}
.footer .footer_logo .footer_logo_link {
  display: inline-block;
  width: 190px;
  margin-bottom: 18px;
}
.footer .footer_logo .footer_logo_link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer .footer_logo .footer_service {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.footer .footer_logo .footer_target {
  display: inline-block;
  margin: 12px 0 0;
  padding: 6px 14px;
  color: #b68b4c;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(182, 139, 76, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.footer .footer_nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 38px 0 26px;
}
.footer .footer_nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
}
.footer .footer_nav a:hover {
  color: #b68b4c;
}
.footer .footer_legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-bottom: 24px;
}
.footer .footer_legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: 0.2s;
}
.footer .footer_legal a:hover {
  color: #fff;
}
.footer .footer_note {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}
.footer .footer_copy {
  text-align: center;
}
.footer .footer_copy small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer .footer_inner {
    max-width: 520px;
    padding: 0 14px;
  }
  .footer .footer_logo .footer_logo_link {
    width: 160px;
  }
  .footer .footer_logo .footer_service {
    font-size: 14px;
  }
  .footer .footer_nav,
  .footer .footer_legal {
    gap: 14px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 52px 0 26px;
  }
  .footer .footer_inner {
    padding: 0 12px;
  }
  .footer .footer_logo .footer_logo_link {
    width: 145px;
  }
  .footer .footer_logo .footer_target {
    font-size: 11px;
  }
  .footer .footer_nav,
  .footer .footer_legal {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer_note {
    text-align: left;
  }
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  position: sticky;
  top: 0;
  padding: 10px 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(182, 139, 76, 0.14);
}
.site-header .site-header_inner {
  max-width: 1180px;
  height: 82px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-header_logo {
  display: block;
  width: 190px;
  flex-shrink: 0;
}
.site-header .site-header_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header .site-header_nav ul {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 14px 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-header .site-header_nav a {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
  transition: 0.2s;
}
.site-header .site-header_nav a span {
  display: block;
  margin-top: 4px;
  color: #b68b4c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.site-header .site-header_nav a:hover {
  color: #8d6938;
}
.site-header .site-header_hamburger,
.site-header .site-header_close,
.site-header .site-header_overlay {
  display: none;
}
@media screen and (max-width: 1024px) {
  .site-header .site-header_inner {
    max-width: 768px;
    height: 78px;
    padding: 0 18px;
  }
  .site-header .site-header_logo {
    width: 160px;
  }
  .site-header .site-header_nav ul {
    gap: 12px 18px;
  }
  .site-header .site-header_nav a {
    font-size: 13px;
  }
  .site-header .site-header_nav a span {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header_inner {
    height: 70px;
    padding: 0 14px;
  }
  .site-header .site-header_logo {
    width: 145px;
  }
  .site-header .site-header_hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .site-header .site-header_hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto;
    background: #222;
    border-radius: 999px;
  }
  .site-header .site-header_nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1002;
    display: block;
    width: min(82vw, 330px);
    height: 100dvh;
    padding: 68px 26px 28px;
    background: #fff;
    box-shadow: -18px 0 38px rgba(0, 0, 0, 0.14);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: right 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .site-header .site-header_nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .site-header .site-header_nav a {
    padding: 10px 0;
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(182, 139, 76, 0.14);
  }
  .site-header .site-header_nav a span {
    margin-top: 5px;
    font-size: 12px;
  }
  .site-header .site-header_nav.is-open {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .site-header .site-header_close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #8d6938;
    background: #f4efe7;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  .site-header .site-header_overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .site-header .site-header_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 480px) {
  .site-header .site-header_inner {
    padding: 0 12px;
  }
  .site-header .site-header_logo {
    width: 132px;
  }
  .site-header .site-header_nav {
    width: min(86vw, 320px);
    padding: 62px 22px 24px;
  }
  .site-header .site-header_nav ul {
    gap: 8px;
  }
  .site-header .site-header_nav a {
    padding: 9px 0;
    font-size: 17px;
  }
  .site-header .site-header_nav a span {
    font-size: 11px;
  }
}

.common_cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: min(760px, 100%);
  margin: 40px auto 0;
}
.common_cta .common_cta_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 22px 48px 16px 28px;
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.14), 0 16px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.common_cta .common_cta_btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.14), 0 20px 34px rgba(0, 0, 0, 0.18);
}
.common_cta .common_cta_badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  padding: 7px 14px;
  color: #222;
  background: #f2c23a;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.common_cta .common_cta_text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.common_cta .common_cta_arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
}
.common_cta .common_cta_btn_contact {
  color: #8d6938;
  background: #fff;
  border: 2px solid #c9a86a;
  box-shadow: 0 6px 0 rgba(141, 105, 56, 0.18), 0 16px 28px rgba(141, 105, 56, 0.16);
}
.common_cta .common_cta_btn_contact .common_cta_badge {
  color: #fff;
  background: #b68b4c;
}
.common_cta .common_cta_btn_contact:hover {
  box-shadow: 0 8px 0 rgba(141, 105, 56, 0.18), 0 20px 34px rgba(141, 105, 56, 0.22);
}
.common_cta .common_cta_btn_apply {
  background: linear-gradient(135deg, #b68b4c 0%, #8d6938 100%);
}
.common_cta .common_cta_btn_apply .common_cta_badge {
  color: #4a3418;
  background: #f2c23a;
}
@media screen and (max-width: 768px) {
  .common_cta {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .common_cta .common_cta_text {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .common_cta .common_cta_btn {
    min-height: 66px;
    padding: 20px 44px 14px 24px;
  }
  .common_cta .common_cta_badge {
    min-width: 190px;
    font-size: 11px;
  }
  .common_cta .common_cta_text {
    font-size: 16px;
  }
  .common_cta .common_cta_arrow {
    font-size: 28px;
  }
}

.cta .common_cta_btn_apply {
  background: linear-gradient(135deg, #5a4020 0%, #3f2d16 100%);
}

.middle_cta {
  padding: 56px 0 72px;
  background: #fff;
}
.middle_cta .middle_cta_inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}
.middle_cta .middle_cta_label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 16px;
  color: #8d6938;
  background: #f4efe7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.middle_cta h2 {
  margin: 0;
  color: #222;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.55;
}
.middle_cta .middle_cta_text {
  margin: 16px auto 0;
  color: #666;
  font-size: 15px;
  line-height: 1.9;
}
.middle_cta .common_cta {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .middle_cta {
    padding: 56px 14px 72px;
  }
  .middle_cta .middle_cta_text {
    text-align: left;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.fixed_cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .fixed_cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .fixed_cta.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .fixed_cta_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.16), 0 12px 24px rgba(0, 0, 0, 0.18);
  }
  .fixed_cta_contact {
    color: #8d6938;
    background: #fff;
    border: 2px solid #c9a86a;
  }
  .fixed_cta_apply {
    background: linear-gradient(135deg, #b68b4c 0%, #8d6938 100%);
  }
  body {
    padding-bottom: 78px;
  }
}
.comparison {
  position: relative;
  padding: 76px 0;
  background: #fff;
  overflow: hidden;
}
.comparison .comparison_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.comparison .comparison_head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.comparison .comparison_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.comparison .comparison_head h2 {
  margin: 0;
  color: #222;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.comparison .comparison_head p {
  max-width: 90%;
  margin: 16px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}
.comparison .comparison_scroll_text {
  margin: 0 0 14px;
  color: #b68b4c;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}
.comparison .comparison_scroll {
  overflow-x: auto;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.comparison .comparison_scroll::-webkit-scrollbar {
  height: 8px;
}
.comparison .comparison_scroll::-webkit-scrollbar-track {
  background: #f4efe7;
  border-radius: 999px;
}
.comparison .comparison_scroll::-webkit-scrollbar-thumb {
  background: #b68b4c;
  border-radius: 999px;
}
.comparison .comparison_table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  background: #fff;
  border-top: 1px solid rgba(182, 139, 76, 0.22);
  border-bottom: 1px solid rgba(182, 139, 76, 0.22);
}
.comparison .comparison_table th,
.comparison .comparison_table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(182, 139, 76, 0.16);
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}
.comparison .comparison_table thead th {
  color: #fff;
  background: #8d6938;
  font-size: 14px;
  font-weight: 900;
}
.comparison .comparison_table thead th:first-child {
  border-radius: 16px 0 0 0;
}
.comparison .comparison_table thead th:last-child {
  border-radius: 0 16px 0 0;
}
.comparison .comparison_table tbody th {
  color: #222;
  background: #faf9f6;
  text-align: left;
  font-weight: 900;
}
.comparison .comparison_table tbody tr:last-child th,
.comparison .comparison_table tbody tr:last-child td {
  border-bottom: none;
}
.comparison .comparison_table .comparison_suns {
  color: #8d6938;
  background: rgba(182, 139, 76, 0.08);
  font-size: 15px;
  font-weight: 900;
}
.comparison .comparison_note {
  max-width: 880px;
  margin: 18px auto 0;
  color: #777;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .comparison {
    padding: 68px 0;
  }
  .comparison .comparison_inner {
    max-width: 768px;
    padding: 0 18px;
  }
  .comparison .comparison_head h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .comparison {
    padding: 64px 0;
  }
  .comparison .comparison_inner {
    padding: 0 14px;
  }
  .comparison .comparison_head {
    max-width: 520px;
    margin-bottom: 34px;
  }
  .comparison .comparison_head h2 {
    font-size: 28px;
  }
  .comparison .comparison_head p {
    font-size: 14px;
    text-align: left;
  }
  .comparison .comparison_scroll_text,
  .comparison .comparison_scroll,
  .comparison .comparison_note {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .comparison .comparison_table {
    min-width: 760px;
  }
  .comparison .comparison_table th,
  .comparison .comparison_table td {
    padding: 16px 18px;
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .comparison .comparison_inner {
    padding: 0 12px;
  }
  .comparison .comparison_head,
  .comparison .comparison_scroll_text,
  .comparison .comparison_scroll,
  .comparison .comparison_note {
    max-width: 420px;
  }
  .comparison .comparison_head h2 {
    font-size: 25px;
  }
  .comparison .comparison_table {
    min-width: 720px;
  }
}

.legal-page {
  background: #faf9f6;
  color: #222;
}

.legal-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #8d6938;
  background: #f4efe7;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.legal {
  padding: 96px 0;
}
.legal .legal_inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal .legal_head {
  margin-bottom: 38px;
  text-align: center;
}
.legal .legal_head span {
  display: block;
  margin-bottom: 10px;
  color: #b68b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.legal .legal_head h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.legal .legal_head p {
  margin: 18px auto 0;
  max-width: 640px;
  color: #666;
  font-size: 15px;
  line-height: 1.9;
}
.legal .legal_nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
}
.legal .legal_nav a {
  padding: 10px 18px;
  color: #8d6938;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.legal .legal_section {
  padding: 42px;
  margin-bottom: 34px;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}
.legal .legal_section h2 {
  margin: 0 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(182, 139, 76, 0.18);
  font-size: 28px;
  font-weight: 900;
}
.legal .legal_section h3 {
  margin: 30px 0 10px;
  color: #8d6938;
  font-size: 18px;
  font-weight: 900;
}
.legal .legal_section p,
.legal .legal_section li,
.legal .legal_section dd {
  color: #444;
  font-size: 14px;
  line-height: 1.9;
}
.legal .legal_section ul {
  padding-left: 1.2em;
  margin: 12px 0 0;
}
.legal .legal_section li {
  margin-bottom: 6px;
}
.legal .legal_table div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(182, 139, 76, 0.14);
}
.legal .legal_table div:last-child {
  border-bottom: none;
}
.legal .legal_table dt {
  color: #8d6938;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}
.legal .legal_table dd {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .legal {
    padding: 78px 0;
  }
  .legal .legal_inner {
    padding: 0 14px;
  }
  .legal .legal_head h1 {
    font-size: 32px;
  }
  .legal .legal_section {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .legal .legal_section h2 {
    font-size: 24px;
  }
  .legal .legal_table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
@media screen and (max-width: 480px) {
  .legal .legal_section {
    padding: 26px 18px;
  }
  .legal .legal_nav {
    flex-direction: column;
  }
  .legal .legal_nav a {
    text-align: center;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background: #faf9f6;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}
.site-header .site-header_inner {
  width: min(1120px, 100% - 32px);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-header_logo {
  display: flex;
  align-items: center;
  width: 150px;
  text-decoration: none;
}
.site-header .site-header_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header .site-header_logo .site-header_logo_sub {
  margin-top: 4px;
  color: #8d6938;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .site-header .site-header_inner {
    height: 76px;
  }
  .site-header .site-header_logo {
    width: 118px;
  }
  .site-header .site-header_logo .site-header_logo_sub {
    font-size: 8px;
    line-height: 1.3;
    margin-left: -10px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header_logo .site-header_logo_sub {
    margin-left: -20px;
  }
}

.fv {
  background: linear-gradient(180deg, #faf9f6 0%, #fff 100%);
  overflow: hidden;
  position: relative;
}
.fv::before {
  content: "";
  position: absolute;
  top: 90px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: rgba(182, 139, 76, 0.08);
  border-radius: 50%;
}
.fv::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: 40px;
  width: 420px;
  height: 420px;
  background: rgba(182, 139, 76, 0.1);
  border-radius: 50%;
}
.fv .fv_inner {
  max-width: 1080px;
  margin: 48px auto 64px;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.fv .fv_label_main {
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto 16px;
  background: #f4efe7;
  border-radius: 9999px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(182, 139, 76, 0.25);
  box-shadow: 0 6px 18px rgba(182, 139, 76, 0.08);
}
.fv .fv_label_main span {
  display: block;
  margin-top: 4px;
  color: #b68b4c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.fv .fv_label_main::before {
  content: "";
  position: absolute;
  top: -42px;
  right: -32px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(182, 139, 76, 0.18);
  border-radius: 50%;
}
.fv .fv_label_main::after {
  content: "";
  position: absolute;
  top: -18px;
  right: 32px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(182, 139, 76, 0.12);
  border-radius: 50%;
}
.fv .fv_label_main p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 28px 14px 28px;
  color: #8d6938;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
.fv .fv_label_sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.fv .fv_label_sub span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 30px;
  color: #5f4526;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.7);
  border-radius: 9999px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.fv .fv_label_sub span::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.fv .fv_label_sub span:first-child::before {
  background-image: url("../images/fv_label_sub_icon.webp");
}
.fv .fv_label_sub span:last-child::before {
  background-image: url("../images/fv_label_sub_icon-2.webp");
}
.fv .fv_main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.fv .fv_main .fv_main_left {
  min-width: 350px;
  flex: 1;
}
.fv .fv_main .fv_main_left .fv_title {
  margin: 0;
  color: #1f1f1f;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.fv .fv_main .fv_main_left .fv_title .fv_title_br_sp {
  display: none;
}
.fv .fv_main .fv_main_left .fv_title .fv_title_span {
  color: #b68b4c;
  position: relative;
  display: inline-block;
}
.fv .fv_main .fv_main_left .fv_title .fv_title_span::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -2px;
  z-index: -1;
  width: 110%;
  height: 2px;
  background: rgba(182, 139, 76, 0.22);
  border-radius: 999px;
}
.fv .fv_main .fv_main_left .fv_lead {
  margin: 22px 0 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.fv .fv_main .fv_main_right {
  flex: 1.05;
  text-align: right;
}
.fv .fv_main .fv_main_right img {
  display: inline-block;
  max-height: 350px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.14));
}
.fv .fv_badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.fv .fv_badges span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 14px 10px;
  color: #222;
  background: #fff;
  border: 1px solid rgba(182, 139, 76, 0.45);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}
.fv .fv_badges span::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 0 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.fv .fv_badges span:first-child::before {
  background-image: url("../images/fv_seo.webp");
}
.fv .fv_badges span:nth-child(2)::before {
  background-image: url("../images/fv_map.webp");
}
.fv .fv_badges span:nth-child(3)::before {
  background-image: url("../images/fv_sp.webp");
}
.fv .fv_badges span:last-child::before {
  background-image: url("../images/fv_recruit.webp");
}
@media screen and (max-width: 1024px) {
  .fv .fv_inner {
    max-width: 768px;
    margin: 40px auto 56px;
    padding: 0 18px;
  }
  .fv .fv_label_main p {
    font-size: 24px;
  }
  .fv .fv_main {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .fv .fv_main .fv_main_left {
    min-width: 0;
  }
  .fv .fv_main .fv_main_left .fv_lead .fv_lead_br {
    display: block;
  }
  .fv .fv_main .fv_main_left .fv_title {
    font-size: 42px;
    line-height: 1.25;
  }
  .fv .fv_main .fv_main_left .fv_title .fv_title_br {
    display: none;
  }
  .fv .fv_main .fv_main_left .fv_title .fv_title_br_sp {
    display: inline;
  }
  .fv .fv_main .fv_main_left .fv_title .fv_title_span {
    font-size: 56px;
  }
  .fv .fv_main .fv_main_right {
    text-align: center;
  }
  .fv .fv_main .fv_main_right img {
    max-height: 270px;
  }
  .fv .fv_badges {
    grid-template-columns: repeat(2, 1fr);
    width: min(620px, 100%);
    margin: 30px auto 0;
  }
  .fv .fv_cta {
    margin: 44px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .fv .fv_inner {
    margin: 32px auto 48px;
    padding: 0 14px;
  }
  .fv .fv_label_main {
    width: min(520px, 100%);
  }
  .fv .fv_label_main p {
    padding: 0 18px 12px 18px;
    font-size: 19px;
    letter-spacing: 0.04em;
  }
  .fv .fv_label_sub {
    gap: 10px;
    margin-bottom: 28px;
  }
  .fv .fv_label_sub span {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 13px;
    letter-spacing: 0.03em;
  }
  .fv .fv_main .fv_main_left .fv_title {
    font-size: 31px;
    line-height: 1.35;
  }
  .fv .fv_main .fv_main_left .fv_title .fv_title_span {
    display: inline-block;
    font-size: 42px;
    line-height: 1.25;
  }
  .fv .fv_main .fv_main_left .fv_lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }
  .fv .fv_main .fv_main_right img {
    max-height: 240px;
  }
  .fv .fv_badges {
    gap: 12px;
    width: 100%;
  }
  .fv .fv_badges span {
    min-height: 86px;
    padding: 12px 8px;
    border-radius: 18px;
    font-size: 15px;
    white-space: normal;
  }
  .fv .fv_badges span::before {
    width: 28px;
    height: 28px;
  }
  .fv .fv_cta {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(420px, 100%);
    margin-top: 42px;
  }
}
@media screen and (max-width: 480px) {
  .fv .fv_inner {
    padding: 0 10px;
  }
  .fv .fv_label_main p {
    font-size: 15px;
    padding: 0 14px 10px 14px;
  }
  .fv .fv_label_sub span {
    font-size: 12px;
    padding: 8px 12px;
  }
  .fv .fv_main .fv_main_left .fv_title {
    font-size: 24px;
  }
  .fv .fv_main .fv_main_left .fv_title .fv_title_span {
    font-size: 32px;
  }
  .fv .fv_main .fv_main_left .fv_lead {
    font-size: 15px;
  }
  .fv .fv_badges span {
    min-height: 78px;
    font-size: 16px;
  }
  .fv .fv_cta .fv_cta_text {
    font-size: 18px;
  }
}

.problem .problem_head h2,
.why .why_head h2,
.function .function_head h2,
.comparison .comparison_head h2,
.reason .reason_head h2,
.price .price_head h2,
.step .step_head h2,
.sample .sample_head h2,
.faq .faq_head h2 {
  font-size: 50px;
}

@media screen and (max-width: 768px) {
  .problem .problem_head h2,
  .why .why_head h2,
  .function .function_head h2,
  .comparison .comparison_head h2,
  .reason .reason_head h2,
  .price .price_head h2,
  .step .step_head h2,
  .sample .sample_head h2,
  .faq .faq_head h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .problem .problem_head h2,
  .why .why_head h2,
  .function .function_head h2,
  .comparison .comparison_head h2,
  .reason .reason_head h2,
  .price .price_head h2,
  .step .step_head h2,
  .sample .sample_head h2,
  .faq .faq_head h2 {
    font-size: 34px;
  }
}
