/* =========================================================
   HOME RECORD
   Common Stylesheet
========================================================= */


/* =========================================================
   01. RESET / BASE
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #333638;
  background: #f7f5f0;
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #25282a;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.03em;
}


/* =========================================================
   02. COMMON LAYOUT
========================================================= */

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.container.narrow {
  width: min(820px, calc(100% - 48px));
}

.section {
  padding: 110px 0;
}

.section-label,
.eyebrow {
  margin-bottom: 20px;
  color: #a58a5a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 28px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 52px;
  color: #6b6e70;
  font-size: 17px;
}

.large-copy {
  font-size: 20px;
  line-height: 1.9;
}

.brand-message {
  margin: 56px 0 0;
  padding: 30px 34px;
  border-left: 2px solid #a58a5a;
  color: #25282a;
  background: rgba(255, 255, 255, 0.42);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.75;
}


/* =========================================================
   03. BUTTON
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: #25282a;
}

.button-primary:hover {
  background: #3a3d3f;
}

.button-secondary {
  color: #25282a;
  border-color: #b9b7b0;
  background: transparent;
}

.button-secondary:hover {
  border-color: #25282a;
  background: #ffffff;
}

.button-large {
  min-height: 60px;
  padding-inline: 34px;
}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(37, 40, 42, 0.08);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 82px;
  margin-inline: auto;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.brand-main {
  color: #25282a;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.14em;
}

.brand-sub {
  margin-top: 7px;
  color: #777a7c;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 26px;
}

.header-nav a {
  position: relative;
  color: #55595b;
  font-size: 13px;
  font-weight: 500;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  background: #a58a5a;
  content: "";
  transition: width 0.25s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav .language-link {
  color: #a58a5a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-cta {
  flex-shrink: 0;
  padding: 11px 19px;
  border-radius: 4px;
  color: #ffffff;
  background: #25282a;
  font-size: 13px;
  font-weight: 600;
}


/* =========================================================
   05. HERO
========================================================= */

.hero {
  padding: 70px 0 88px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  gap: 72px;
}

.hero-copy {
  padding: 36px 0;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 1.45;
}

.hero-lead {
  margin-bottom: 24px;
  color: #44484a;
  font-size: 18px;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  color: #6b6e70;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-price {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  padding-left: 18px;
  border-left: 2px solid #a58a5a;
}

.hero-price span {
  color: #777a7c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-price strong {
  margin-top: 4px;
  color: #25282a;
  font-size: 18px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  min-height: 0;
  overflow: hidden;
  border-radius: 2px;
  background:
    linear-gradient(
      135deg,
      #e8e4dc,
      #d5d2ca
    );
}

.hero-visual::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 90px;
  height: 90px;
  border-right: 1px solid rgba(165, 138, 90, 0.5);
  border-bottom: 1px solid rgba(165, 138, 90, 0.5);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

/* =========================================================
   06. PROBLEMS
========================================================= */

.section-problems {
  background: #eceae5;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.problem-card {
  min-height: 250px;
  padding: 36px;
  border: 1px solid rgba(37, 40, 42, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.card-number {
  display: block;
  margin-bottom: 28px;
  color: #a58a5a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.problem-card h3 {
  margin-bottom: 15px;
  font-size: 21px;
}

.problem-card p {
  margin-bottom: 0;
  color: #6b6e70;
}


/* =========================================================
   07. ABOUT
========================================================= */

.section-about {
  text-align: center;
}

.section-about .brand-message {
  text-align: left;
}

.three-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid #cfccc4;
  border-bottom: 1px solid #cfccc4;
}

.step-item {
  padding: 38px 24px;
}

.step-item + .step-item {
  border-left: 1px solid #cfccc4;
}

.step-item span {
  display: block;
  margin-bottom: 13px;
  color: #a58a5a;
  font-size: 11px;
  font-weight: 700;
}

.step-item strong {
  display: block;
  margin-bottom: 12px;
  color: #25282a;
  font-size: 18px;
}

.step-item p {
  margin-bottom: 0;
  color: #6b6e70;
  font-size: 14px;
}


/* =========================================================
   08. SERVICE
========================================================= */

.section-service {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #ddd9d1;
  border-left: 1px solid #ddd9d1;
}

.service-card {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid #ddd9d1;
  border-bottom: 1px solid #ddd9d1;
  background: #ffffff;
}

.service-card::before {
  display: block;
  width: 32px;
  height: 1px;
  margin-bottom: 28px;
  background: #a58a5a;
  content: "";
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 19px;
}

.service-card p {
  margin-bottom: 0;
  color: #6b6e70;
  font-size: 14px;
}

.service-note {
  margin: 26px 0 0;
  color: #777a7c;
  font-size: 12px;
}


/* =========================================================
   09. PRICE
========================================================= */

.section-price {
  background: #25282a;
}

.price-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.section-price .section-label {
  color: #c6a96f;
}

.price-main h2 {
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 44px);
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 0;
  color: #ffffff;
}

.price strong {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.price span {
  color: #d7d5d0;
  font-size: 15px;
}

.price-detail {
  padding: 34px 0 34px 52px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.price-detail p {
  color: #cfcdca;
}

.price-detail strong {
  display: block;
  margin-top: 24px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
}


/* =========================================================
   10. QUALITY
========================================================= */

.section-quality {
  background: #f7f5f0;
}

.quality-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 58px;
}

.quality-item {
  min-height: 240px;
  padding: 34px;
  border-top: 1px solid #bbb8b0;
}

.quality-item span {
  display: block;
  margin-bottom: 32px;
  color: #a58a5a;
  font-size: 11px;
  font-weight: 700;
}

.quality-item h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.quality-item p {
  margin-bottom: 0;
  color: #6b6e70;
  font-size: 14px;
}

.quality-arrow {
  padding: 0 8px;
  color: #a58a5a;
}

.quality-message {
  margin: 54px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid #d5d2cb;
  color: #25282a;
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 500;
}


/* =========================================================
   11. RECORD
========================================================= */

.section-record {
  background: #eceae5;
}

.record-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.record-copy p {
  color: #5f6365;
}

.record-example {
  padding: 42px;
  background: #f7f5f0;
}

.record-visit {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  column-gap: 18px;
}

.record-visit span {
  color: #a58a5a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.record-visit strong {
  color: #25282a;
  font-size: 17px;
  letter-spacing: 0.06em;
}

.record-visit p {
  grid-column: 2;
  margin: 5px 0 0;
  color: #777a7c;
  font-size: 13px;
}

.record-line {
  width: 1px;
  height: 48px;
  margin: 10px 0 10px 49px;
  background: #b9a780;
}


/* =========================================================
   12. FLOW
========================================================= */

.section-flow {
  background: #ffffff;
}

.flow-list {
  margin-top: 56px;
  border-top: 1px solid #d9d6cf;
}

.flow-item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 25px;
  padding: 32px 0;
  border-bottom: 1px solid #d9d6cf;
}

.flow-number {
  color: #a58a5a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flow-item h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.flow-item p {
  margin-bottom: 0;
  color: #6b6e70;
}


/* =========================================================
   13. FAQ
========================================================= */

.section-faq {
  background: #f7f5f0;
}

.faq-list {
  margin-top: 52px;
  border-top: 1px solid #ccc9c2;
}

.faq-list details {
  border-bottom: 1px solid #ccc9c2;
}

.faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  color: #25282a;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: #a58a5a;
  content: "＋";
  font-size: 24px;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 44px 28px 0;
  color: #6b6e70;
}


/* =========================================================
   14. FUTURE
========================================================= */

.section-future {
  text-align: center;
  background: #eceae5;
}

.future-note {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #c9c6be;
  color: #55595b;
  font-weight: 600;
}


/* =========================================================
   15. FINAL CTA
========================================================= */

.section-final-cta {
  text-align: center;
  background: #f7f5f0;
}

.section-final-cta h2 {
  font-size: clamp(36px, 5vw, 58px);
}

.section-final-cta .button {
  margin-top: 24px;
}

.section-final-cta small {
  display: block;
  margin-top: 18px;
  color: #777a7c;
  font-size: 12px;
}


/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
  padding: 66px 0 32px;
  color: #d5d3cf;
  background: #202325;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.footer-brand span {
  margin-top: 8px;
  color: #909395;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
}

.footer-links a {
  color: #b8babc;
  font-size: 12px;
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #777a7c;
  font-size: 10px;
}


/* =========================================================
   17. TABLET
========================================================= */

@media (max-width: 960px) {

  .header-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

.hero-visual {
  height: 460px;
}

.hero-visual img {
  min-height: 0;
}

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-box {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .price-detail {
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .quality-flow {
    grid-template-columns: 1fr;
  }

  .quality-arrow {
    display: none;
  }

  .quality-item {
    min-height: 0;
  }

  .record-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

}


/* =========================================================
   18. MOBILE
========================================================= */

@media (max-width: 680px) {

  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .container,
  .container.narrow,
  .header-inner,
  .hero-inner {
    width: min(100% - 32px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

  .section h2 {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .section-label,
  .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand-main {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 6px;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.5;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-price {
    margin-top: 28px;
  }

.hero-visual {
  height: 340px;
}

.hero-visual img {
  min-height: 0;
}
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .three-steps {
    grid-template-columns: 1fr;
  }

  .step-item + .step-item {
    border-top: 1px solid #cfccc4;
    border-left: 0;
  }

  .brand-message {
    padding: 24px 22px;
    font-size: 19px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .price strong {
    font-size: 44px;
  }

  .quality-item {
    padding: 28px 12px;
  }

  .record-example {
    padding: 28px 22px;
  }

  .record-visit {
    grid-template-columns: 82px 1fr;
  }

  .record-line {
    margin-left: 40px;
  }

  .flow-item {
    grid-template-columns: 55px 1fr;
    gap: 15px;
  }

  .faq-list summary {
    padding: 24px 42px 24px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }

  .copyright {
    margin-top: 6px;
  }

}

/* =========================================================
19. MOBILE MENU
========================================================= */

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: #25282a;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


/* 通常時は非表示 */
.mobile-menu {
  display: none;
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 960px) {

  .menu-button {
    display: block;
    flex-shrink: 0;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;

    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 999;

    display: flex;
    flex-direction: column;

    padding: 28px 24px 40px;

    background: #f7f5f0;

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    pointer-events: none;

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }


  /* メニューを開いた状態 */
  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    pointer-events: auto;
  }


  /* 通常リンク */
  .mobile-menu > a {
    display: block;

    padding: 17px 0;

    border-bottom: 1px solid #d8d5ce;

    color: #25282a;

    font-size: 16px;
    font-weight: 500;
  }


  /* 日本語 / INTERNATIONAL */
  .mobile-menu .mobile-language-link {
    margin-top: 18px;

    color: #a58a5a;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }


  /* 相談する / Contact */
  .mobile-menu .mobile-contact-link {
    margin-top: 28px;

    padding: 15px 20px;

    border: 0;
    border-radius: 5px;

    color: #ffffff;
    background: #25282a;

    text-align: center;
  }


  /* メニュー表示中はページを固定 */
  body.menu-open {
    overflow: hidden;
  }


  /* 三本線 → × */
  .menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 680px) {

  .mobile-menu {
    top: 70px;
  }


  /* トップページではヘッダー右CTAを消す */
  .site-header:has(.menu-button) .header-cta {
    display: none;
  }


  /* 下層ページでは「トップへ戻る」を表示 */
  .site-header:not(:has(.menu-button)) .header-cta {
    display: inline-flex;
    margin-left: auto;
  }

}
/* =========================================================
   20. CONTACT PAGE
========================================================= */

.contact-hero {
  padding: 100px 0 70px;
  background: #eceae5;
}

.contact-hero h1 {
  margin-bottom: 28px;
  color: #25282a;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.5;
}

.contact-lead {
  margin-bottom: 12px;
  color: #25282a;
  font-size: 20px;
  font-weight: 600;
}

.contact-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid #a58a5a;
  color: #55595b;
}

.contact-section {
  background: #f7f5f0;
}

.contact-form {
  padding: 52px;
  background: #ffffff;
  border: 1px solid #dedbd4;
}

.form-group {
  margin-bottom: 34px;
}

.form-group label,
.form-group legend {
  display: block;
  margin-bottom: 10px;
  color: #25282a;
  font-size: 14px;
  font-weight: 600;
}

.required,
.optional {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 600;
}

.required {
  color: #a58a5a;
}

.optional {
  color: #888b8d;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #c9c6be;
  border-radius: 3px;
  color: #333638;
  background: #ffffff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #a58a5a;
  box-shadow: 0 0 0 3px rgba(165, 138, 90, 0.1);
}

.form-help {
  margin: 8px 0 0;
  color: #777a7c;
  font-size: 12px;
}

.form-divider {
  margin: 55px 0 34px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cfcac1;
}

.form-divider span {
  color: #a58a5a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.checkbox-group {
  padding: 0;
  border: 0;
}

.check-item {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 12px !important;
  cursor: pointer;
}

.check-item input {
  width: 17px;
  height: 17px;
  margin-top: 6px;
  accent-color: #25282a;
}

.check-item span {
  color: #55595b;
  font-weight: 400;
}

.form-privacy {
  margin-top: 50px;
  padding: 22px;
  background: #f2f0eb;
}

.form-privacy a {
  text-decoration: underline;
}

.form-submit {
  margin-top: 38px;
  text-align: center;
}

.form-submit p {
  margin: 15px 0 0;
  color: #777a7c;
  font-size: 12px;
}

@media (max-width: 680px) {

  .contact-hero {
    padding: 72px 0 52px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-submit .button {
    width: 100%;
  }

}

/* =========================================================
   21. LEGAL PAGES
========================================================= */

.legal-content {
  padding: 52px;
  border: 1px solid #dedbd4;
  background: #ffffff;
}

.legal-block {
  margin-bottom: 52px;
}

.legal-block:last-of-type {
  margin-bottom: 0;
}

.legal-block h2 {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dedbd4;
  font-size: 21px;
}

.legal-block p {
  color: #55595b;
}

.legal-block ul {
  margin: 18px 0;
  padding-left: 24px;
  color: #55595b;
}

.legal-block li {
  margin-bottom: 7px;
}

.legal-block a {
  color: #25282a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #dedbd4;
  color: #777a7c;
  font-size: 12px;
}

@media (max-width: 680px) {

  .legal-content {
    padding: 30px 20px;
  }

  .legal-block {
    margin-bottom: 42px;
  }

  .legal-block h2 {
    font-size: 18px;
  }

}
/* =========================================================
   22. INTERNATIONAL PRICING / CUSTOMER INFORMATION
========================================================= */

.price-small {
  max-width: 420px;
  margin-top: 26px;
  color: #cfcdca;
  font-size: 13px;
}

.price-detail h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
}

.price-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.price-includes li {
  position: relative;
  padding-left: 19px;
  color: #d7d5d0;
  font-size: 13px;
}

.price-includes li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #c6a96f;
  content: "—";
}

.price-promise {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.price-promise strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 16px;
}

.price-promise p {
  margin-bottom: 0;
}

.price-actions {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.price-actions p {
  max-width: 520px;
  margin: 17px auto 0;
  color: #c9c7c3;
  font-size: 12px;
}


/* CUSTOMER INFORMATION */

.customer-information {
  padding: 90px 0;
  background: #eceae5;
}

.customer-information-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.customer-information h2 {
  margin-bottom: 22px;
  color: #25282a;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.5;
}

.customer-information p {
  color: #626668;
}

.policy-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbc8c0;
  border-left: 1px solid #cbc8c0;
}

.policy-link-grid a {
  min-height: 170px;
  padding: 27px;
  border-right: 1px solid #cbc8c0;
  border-bottom: 1px solid #cbc8c0;
  background: rgba(255, 255, 255, 0.35);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.policy-link-grid a:hover {
  background: #ffffff;
}

.policy-link-grid span {
  display: block;
  margin-bottom: 23px;
  color: #a58a5a;
  font-size: 10px;
  font-weight: 700;
}

.policy-link-grid strong {
  display: block;
  margin-bottom: 7px;
  color: #25282a;
  font-size: 15px;
}

.policy-link-grid small {
  color: #777a7c;
  font-size: 11px;
  line-height: 1.6;
}


@media (max-width: 800px) {

  .customer-information-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

}


@media (max-width: 680px) {

  .price-includes {
    grid-template-columns: 1fr;
  }

  .policy-link-grid {
    grid-template-columns: 1fr;
  }

  .policy-link-grid a {
    min-height: 0;
  }

  .customer-information {
    padding: 72px 0;
  }

}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* =========================================================
   23. CONFIRM PAGE
========================================================= */

.confirm-box {
  padding: 52px;
  border: 1px solid #dedbd4;
  background: #ffffff;
}

.confirm-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #ece9e2;
}

.confirm-label {
  color: #777a7c;
  font-size: 13px;
  font-weight: 600;
}

.confirm-value {
  color: #25282a;
  font-size: 15px;
  word-break: break-word;
}

.confirm-message {
  white-space: normal;
  line-height: 1.9;
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}

.confirm-note {
  margin: 20px 0 0;
  color: #777a7c;
  font-size: 12px;
  text-align: center;
}


@media (max-width: 680px) {

  .confirm-box {
    padding: 30px 20px;
  }

  .confirm-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 18px 0;
  }

  .confirm-actions {
    flex-direction: column-reverse;
  }

  .confirm-actions .button {
    width: 100%;
  }

}


/* ==========================================
HERO FINAL POSITION ADJUSTMENT
========================================== */

@media (min-width: 961px) {

  .hero-visual {
    transform: translateY(-36px);
  }

}

/* ==========================================
JAPANESE MOBILE HERO TITLE FIX
========================================== */

@media (max-width: 680px) {

  html[lang="ja"] .hero h1 {
    font-size: 28px;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }

}

@media (max-width: 680px) {

  .legal-block a[href^="mailto:"] {
    overflow-wrap: anywhere;
  }

}