/* ============================================
   CSS変数
============================================= */
:root {
  /* Colors */
  --color-navy: #1a2e50;
  --color-navy-deep: #08254f;
  --color-navy-dark: #0f1d33;
  --color-navy-light: #2a4470;
  --color-orange: #e8880c;
  --color-orange-dark: #cc7509;
  --color-orange-light: #f5a623;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #111111;

  --color-gray-50: #f8f9fa;
  --color-gray-100: #f0f2f5;
  --color-gray-200: #e2e6ea;
  --color-gray-300: #ced4da;
  --color-gray-600: #6c757d;
  --color-gray-800: #343a40;

  --color-gold-1: #fff7d3;
  --color-gold-2: #f4d781;
  --color-gold-3: #d8a943;
  --color-gold-4: #bf8726;

  --color-orange-1: #ffbe2f;
  --color-orange-2: #ff9700;
  --color-orange-3: #f07b00;
  --color-orange-shadow: #c45d00;

  /* Font */
  --font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "游ゴシック",
    "Hiragino Kaku Gothic ProN",
    sans-serif;

  /* Layout */
  --header-height: 80px;
  --container-width: 1100px;
  --content-width: 1400px;
  --section-padding: 96px 0;
  --section-padding-sp: 56px 0;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

  /* Motion */
  --transition: all 0.3s ease;
}

/* ============================================
   Reset / Base
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  line-height: 1.8;
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  font: inherit;
}

.lp {
  overflow: hidden;
}

.only-pc {
  display: inline;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

/* ============================================
   Common
============================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.section-title--navy {
  color: var(--color-navy);
}

.text-orange {
  color: var(--color-orange);
}

.text-navy {
  color: var(--color-navy);
}

.sp-only {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 画面には見せず、検索や読み上げ用に残す */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   Button
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn--header {
  padding: 10px 24px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.875rem;
}

.btn--header:hover {
  background: var(--color-orange-dark);
}

/* ============================================
   Header
============================================= */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo a {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-navy);
}

.header__logo img {
  max-width: 270px;
}

.header__nav-list {
  display: flex;
  gap: 24px;
}

.header__nav-list a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  color: var(--color-gray-800);
  font-size: 0.875rem;
  font-weight: 500;
}

.header__nav-list a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: var(--transition);
}

.header__nav-list a:hover {
  color: var(--color-orange);
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__contact {
  display: flex;
  align-items: center;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__contact {
/*    display: none;*/
  }

  .header__nav.is-open {
    position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;                          /* ← 明示的に指定 */
  height: calc(100vh - var(--header-height)); /* ← 念のため高さも指定 */
  overflow-y: auto;                   /* ← メニュー項目が多い時のスクロール対応 */
  display: block;
  z-index: 999;
  padding: 32px 20px;
  animation: slideDown 0.3s ease;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .header__nav.is-open .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav.is-open .header__nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-gray-200);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-padding: var(--section-padding-sp);
  }
	
	.header__logo img {
  max-width: 150px;
		width: 100%;
}

  .only-pc {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .section-title {
    margin-bottom: 32px;
    font-size: 1.7rem;
  }

  .btn--header {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* ============================================
   Hero
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  background: #eef1f5;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/fv_bg.jpg") center center / cover no-repeat;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 36px 48px 40px;
}

.hero__content {
  width: min(100%, 860px);
}

/* 文字画像 */
.hero__title-image {
  margin: 0 0 28px;
}

.hero__title-image img {
  display: block;
  width: min(100%, 1000px);
  height: auto;
}

/* CTA */
.hero__cta {
  margin-top: 0;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 20px 48px;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      var(--color-orange-1) 0%,
      var(--color-orange-2) 58%,
      var(--color-orange-3) 100%
    );
  color: #fff8ef;
  font-size: clamp(1.3rem, 2vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
  box-shadow:
    0 10px 0 var(--color-orange-shadow),
    0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(2px);
  box-shadow:
    0 8px 0 var(--color-orange-shadow),
    0 14px 26px rgba(0, 0, 0, 0.16);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* 注記 */
.hero__note {
  max-width: 850px;
  margin: 24px 0 0;
  color: var(--color-black);
  font-size: clamp(0.96rem, 1vw, 1.3rem);
  line-height: 1.65;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero__note strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.08rem, 1.45vw, 1.55rem);
  font-weight: 900;
}

@media (max-width: 1200px) {
  .hero__inner {
    padding: 28px 28px 32px;
    min-height: auto;
  }

  .hero__content {
    width: min(100%, 760px);
  }

  .hero__title-image {
    margin-bottom: 24px;
  }

  .hero__title-image img {
    width: min(100%, 720px);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    background-position: center right;
  }

  .hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7); /* 白の濃さ */
    pointer-events: none;
  }

  .hero__inner {
    display: block;
    padding: 24px 16px 18px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__title-image {
    margin-bottom: 18px;
  }

  .hero__title-image img {
    width: 100%;
    max-width: 100%;
  }

  .cta-button {
    width: 100%;
    min-height: 82px;
    padding: 16px 18px;
    font-size: 1.2rem;
    box-shadow:
      0 8px 0 var(--color-orange-shadow),
      0 14px 24px rgba(0, 0, 0, 0.16);
  }

  .cta-button::after {
    top: 10px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .hero__note {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: center;
  }

  .hero__note strong {
    margin-bottom: 4px;
    font-size: 1.05rem;
  }
}

/* ============================================
   Problem Section
============================================= */
.problem-section {
  position: relative;
  padding: 110px 20px 96px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 252, 0.97) 44%, #eef2f5 100%);
  overflow: hidden;
}

.problem-section__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.problem-section__heading {
  margin-bottom: 18px;
  text-align: center;
}

.problem-section__title {
  margin: 0;
  color: #0a2f67;
  font-size: clamp(2.6rem, 3.5vw, 5rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.problem-section__illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-section__illustration img {
  width: min(100%, 550px);
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.06));
}

.problem-list {
  max-width: 980px;
  margin: 0 auto;
}

.problem-list__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.problem-list__item + .problem-list__item {
  margin-top: 14px;
}

.problem-list__icon {
  flex-shrink: 0;
  width: 52px;
  color: #0a2f67;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  font-weight: 900;
  transform: translateY(-2px);
}

.problem-list__text {
  color: var(--color-black);
  font-size: clamp(1.45rem, 1.8vw, 2.2rem);
  line-height: 1.5;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.problem-section__arrow {
  margin: 24px 0 8px;
  color: #0a2f67;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 1;
  text-align: center;
  font-weight: 900;
}

.problem-section__solution {
  text-align: center;
}

.problem-section__solution-title {
  margin: 0;
  color: #0a2f67;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.problem-section__solution-text {
  max-width: 1080px;
  margin: 20px auto 0;
  color: var(--color-black);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.7;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.problem-section__sparkle {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 58px;
  height: 58px;
  opacity: 0.38;
  pointer-events: none;
}

.problem-section__sparkle::before,
.problem-section__sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}

.problem-section__sparkle::after {
  opacity: 0.9;
  transform: scale(0.52) translate(36px, -24px);
}

@media (max-width: 1200px) {
  .problem-section {
    padding: 92px 20px 78px;
  }

  .problem-list {
    max-width: 900px;
  }

  .problem-list__icon {
    width: 46px;
    font-size: 2.6rem;
  }
}

@media (max-width: 767px) {
  .problem-section {
    padding: 72px 16px 58px;
  }

  .problem-section__heading {
    margin-bottom: 10px;
  }

  .problem-section__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
  }

  .problem-section__illustration {
    margin-bottom: 14px;
  }

  .problem-section__illustration img {
    width: min(100%, 330px);
  }

  .problem-list__item {
    gap: 12px;
  }

  .problem-list__item + .problem-list__item {
    margin-top: 12px;
  }

  .problem-list__icon {
    width: 28px;
    font-size: 1.9rem;
    transform: translateY(1px);
  }

  .problem-list__text {
    font-size: 1.12rem;
    line-height: 1.65;
  }

  .problem-section__arrow {
    margin: 18px 0 6px;
    font-size: 3.4rem;
  }

  .problem-section__solution-title {
    font-size: clamp(1.8rem, 7.5vw, 3rem);
    line-height: 1.2;
  }

  .problem-section__solution-text {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .problem-section__sparkle {
    right: 2px;
    bottom: 0;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   Stats Section
============================================= */
.stats-section {
  position: relative;
  padding: 72px 20px 54px;
  background:
    radial-gradient(circle at 50% 22%, rgba(18, 58, 112, 0.52) 0%, rgba(10, 45, 92, 0.88) 36%, #082e63 100%);
  overflow: hidden;
}

.stats-section__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
}

.stats-section__heading {
  margin-bottom: 38px;
  text-align: center;
}

.stats-section__title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
}

.stats-card {
  position: relative;
  padding: 28px 28px 26px;
  background:
    radial-gradient(circle at 50% 24%, rgba(0, 73, 154, 0.22) 0%, rgba(8, 39, 85, 0.92) 46%, rgba(6, 31, 69, 1) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.12);
}

.stats-card__top-number {
  gap: 8px;
  margin-bottom: 18px;
  line-height: 1;
	text-align: center;
}

.stats-card__number {
  display: inline-block;
  font-size: clamp(5rem, 8vw, 9.5rem);
  line-height: 0.9;
  font-weight: 900;
  background: linear-gradient(180deg, #fff0ad 0%, #f4d66d 30%, #d6a83d 75%, #b88422 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.06));
}

.stats-card__unit {
  padding-bottom: 10px;
  color: var(--color-white);
  font-size: clamp(2.1rem, 2.5vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.stats-card__headline {
  margin: 0 0 18px;
  color: var(--color-white);
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
  font-weight: 900;
	text-align: center;
}

.stats-card__headline--gold {
  color: #f0cf70;
  font-size: clamp(2.15rem, 4.5vw, 3.5rem);
  line-height: 1.12;
}

.stats-card__text {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.15rem, 1.3vw, 1.55rem);
  line-height: 1.65;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.stats-card__icon {
  position: absolute;
  right: 26px;
  bottom: 22px;
  font-size: 4.5rem;
  line-height: 1;
  opacity: 0.95;
  filter: saturate(0.9);
}

.stats-card__icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 18px 0;
  color: #f0cf70;
  font-size: 3.4rem;
  line-height: 1;
}

.stats-card__icon-row--bottom {
  margin-top: 18px;
}

.stats-card__map {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

.stats-card__map-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #f0cf70;
  font-size: 2.9rem;
  line-height: 1;
}

.stats-card__map-shape {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 170px;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.stats-section__note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.8;
  letter-spacing: -0.02em;
  text-align: right;
  font-weight: 500;
}

.stats-section__sparkle {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 58px;
  height: 58px;
  opacity: 0.72;
  pointer-events: none;
}

.stats-section__sparkle::before,
.stats-section__sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}

.stats-section__sparkle::after {
  opacity: 0.9;
  transform: scale(0.52) translate(36px, -24px);
}

@media (max-width: 1200px) {
  .stats-section {
    padding: 64px 20px 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .stats-card {
    min-height: 460px;
  }

  .stats-card__map-shape {
    min-height: 140px;
  }

  .stats-section__note {
    margin-top: 18px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .stats-section {
    padding: 54px 16px 44px;
  }

  .stats-section__heading {
    margin-bottom: 24px;
  }

  .stats-section__title {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1.2;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .stats-card__top-number {
    margin-bottom: 12px;
  }

  .stats-card__number {
    font-size: clamp(4rem, 18vw, 6.5rem);
  }

  .stats-card__unit {
    padding-bottom: 8px;
    font-size: 1.9rem;
  }

  .stats-card__headline {
    margin-bottom: 14px;
    font-size: 2rem;
  }

  .stats-card__headline--gold {
    font-size: 2.2rem;
  }

  .stats-card__text {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .stats-card__icon {
    position: static;
    margin-top: 16px;
    font-size: 3.4rem;
    text-align: right;
  }

  .stats-card__icon-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    margin: 14px 0;
    font-size: 2.45rem;
  }

  .stats-card__map {
    align-items: center;
    margin-top: 18px;
  }

  .stats-card__map-icons {
    gap: 8px;
    font-size: 2rem;
  }

  .stats-card__map-shape {
    min-height: 110px;
    font-size: 0.92rem;
  }

  .stats-section__note {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
  }

  .stats-section__sparkle {
    right: 2px;
    bottom: 0;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   Reasons Section
============================================= */
.reasons {
  padding: var(--section-padding);
  background: var(--color-gray-50);
}

.reason {
  position: relative;
  margin-bottom: 60px;
}

.reason:last-child {
  margin-bottom: 0;
}

.reason__number {
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
}

.reason__num-bg {
  display: block;
  color: rgba(26, 46, 80, 0.06);
  font-size: 6rem;
  line-height: 1;
  font-weight: 900;
}

.reason__body {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.reason--reverse .reason__body {
  flex-direction: row-reverse;
}

.reason__text {
  flex: 1;
}

.reason__title {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 16px;
  color: var(--color-navy);
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 900;
}

.reason__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--color-orange);
}

.reason__desc {
  color: var(--color-gray-800);
  font-size: 1.3rem;
  line-height: 2;
}

.reason__image {
  flex: 0 0 320px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.reason__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

.reason__image:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .reason__body {
    flex-direction: column !important;
    gap: 28px;
    padding: 28px;
  }

  .reason__image {
    flex: none;
    width: 100%;
  }

  .reason__image img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .reason__num-bg {
    font-size: 4rem;
  }

  .reason__body {
    gap: 24px;
    padding: 24px;
  }

  .reason__title {
    font-size: 1.25rem;
  }

  .reason__desc {
    font-size: 0.95rem;
  }
}

/* ============================================
   Service Construction
============================================= */
.service-construction {
  position: relative;
  padding: 110px 20px 90px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.96) 44%, #eef2f6 100%);
}

.service-construction__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.service-construction__heading {
  margin-bottom: 44px;
  text-align: center;
}

.service-construction__sub {
  margin: 0 0 8px;
  color: #2a446d;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  font-weight: 700;
}

.service-construction__title {
  margin: 0;
  color: #0a2f67;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.service-construction__lead {
  max-width: 1100px;
  margin: 22px auto 0;
  color: var(--color-black);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.6;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.service-construction__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 46px;
}

.service-card {
  padding: 34px 28px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 8px 28px rgba(16, 34, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
}

.service-card__icon {
}

.service-card__icon img {
  width: 200px;
  height: 200px;
	margin: 0 auto;
}

.service-card__title {
  margin: 6px 0 18px;
  color: var(--color-black);
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
  font-weight: 900;
	text-align: center;
}

.service-card__text {
  margin: 0;
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.service-construction__notice {
  margin: 30px auto 0;
  padding: 24px 28px 18px;
  border: 2px solid rgba(27, 48, 79, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-construction__notice-main {
  margin: 0;
  color: var(--color-black);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.service-construction__notice-icon {
  display: inline-block;
  margin-right: 8px;
  transform: translateY(-1px);
}

.service-construction__notice-sub {
  margin: 8px 0 0;
  color: var(--color-black);
  font-size: clamp(0.95rem, 1.05vw, 1.15rem);
  line-height: 1.7;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.service-construction__sparkle {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 56px;
  height: 56px;
  opacity: 0.42;
  pointer-events: none;
}

.service-construction__sparkle::before,
.service-construction__sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  filter: blur(0.4px);
}

.service-construction__sparkle::after {
  opacity: 0.9;
  transform: scale(0.52) translate(34px, -22px);
}

@media (max-width: 1200px) {
  .service-construction {
    padding: 90px 20px 76px;
  }

  .service-construction__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .service-construction {
    padding: 72px 16px 58px;
  }

  .service-construction__heading {
    margin-bottom: 32px;
  }

  .service-construction__sub {
    margin-bottom: 6px;
    font-size: 0.98rem;
  }

  .service-construction__title {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .service-construction__lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .service-construction__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .service-card {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .service-card__icon {
  }

  .service-card__icon svg {
    width: 86px;
    height: 86px;
  }

  .service-card__title {
    margin: 4px 0 14px;
    font-size: 1.65rem;
    text-align: center;
  }

  .service-card__text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .service-construction__notice {
    margin-top: 20px;
    padding: 18px 16px 14px;
  }

  .service-construction__notice-main {
    font-size: 1.2rem;
    line-height: 1.55;
  }

  .service-construction__notice-sub {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .service-construction__sparkle {
    right: 4px;
    bottom: 0;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   施工事例一覧セクション
============================================= */
.case-list {
  position: relative;
  padding: 110px 20px 96px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.94) 0%, rgba(245, 248, 252, 0.97) 44%, #edf1f5 100%);
}

.case-list__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
}

.case-list__heading {
  margin-bottom: 42px;
  text-align: center;
}

.case-list__title {
  margin: 0;
  color: #0a2f67;
  font-size: clamp(2.5rem, 4.8vw, 4.3rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.case-list__lead {
  max-width: 1080px;
  margin: 24px auto 0;
  color: var(--color-black);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.6;
  letter-spacing: -0.03em;
  font-weight: 900;
}

/* 一覧グリッド：PCは4列 */
.case-list__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

/* カード */
.case-item {
  display: flex;
  flex-direction: column;
}

.case-item__image {
  overflow: hidden;
  aspect-ratio: 1.15 / 1;
  border-radius: 18px 18px 0 0;
  background: #dfe5ea;
  box-shadow: 0 10px 28px rgba(14, 31, 57, 0.1);
}

.case-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-item__body {
  flex: 1;
  padding: 18px 18px 20px;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(14, 31, 57, 0.1);
}

.case-item__title {
  margin: 0 0 8px;
  color: #122a55;
  font-size: clamp(1.05rem, 1.15vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.case-item__meta {
  margin: 0;
  color: var(--color-black);
  font-size: clamp(0.88rem, 0.92vw, 1rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.case-item__meta + .case-item__meta {
  margin-top: 2px;
}

.case-list__note {
  margin: 24px 0 0;
  color: #333333;
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.7;
  letter-spacing: -0.02em;
  text-align: center;
  font-weight: 700;
}

.case-list__cta {
  margin-top: 24px;
  text-align: center;
}

.case-list__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 470px;
  min-height: 98px;
  padding: 18px 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffb000 0%, #ff9800 52%, #f28a00 100%);
  color: var(--color-white);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-list__button:hover {
  transform: translateY(2px);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* ============================================
   Tablet
============================================= */
@media (max-width: 1200px) {
  .case-list {
    padding: 90px 20px 78px;
  }

  .case-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .case-item__title {
    font-size: 1.2rem;
  }

  .case-item__meta {
    font-size: 0.95rem;
  }

  .case-list__button {
    min-width: 360px;
    min-height: 82px;
  }
}

/* ============================================
   SP
============================================= */
@media (max-width: 767px) {
  .case-list {
    padding: 72px 16px 56px;
  }

  .case-list__heading {
    margin-bottom: 28px;
  }

  .case-list__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.2;
  }

  .case-list__lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .case-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .case-item__image {
    border-radius: 14px 14px 0 0;
  }

  .case-item__body {
    padding: 14px 12px 16px;
    border-radius: 0 0 14px 14px;
  }

  .case-item__title {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .case-item__meta {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .case-list__note {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .case-list__button {
    width: 100%;
    min-width: 0;
    min-height: 74px;
    padding: 16px 18px;
    font-size: 1.2rem;
    border-radius: 12px;
  }
}

/* 極小端末 */
@media (max-width: 420px) {
  .case-list__grid {
    grid-template-columns: 1fr;
  }

  .case-item__title {
    font-size: 1.1rem;
  }

  .case-item__meta {
    font-size: 0.9rem;
  }
}

/* ============================================
   Flow
============================================= */
.flow {
  padding: var(--section-padding);
  background: var(--color-white);
}

.flow__steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.flow__steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 44px;
  width: 3px;
  background: var(--color-gray-200);
}

.flow__step {
  position: relative;
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.flow__step:last-child {
  margin-bottom: 0;
}

.flow__step-num {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.flow__step-num span {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
}

.flow__step-content {
  flex: 1;
  padding-top: 16px;
}

.flow__step-content h3 {
  margin: 0 0 8px;
  color: var(--color-navy);
  font-size: 1.25rem;
  font-weight: 700;
}

.flow__step-content p {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .flow__steps::before {
    left: 30px;
  }

  .flow__step {
    gap: 20px;
  }

  .flow__step-num {
    width: 62px;
    height: 62px;
    font-size: 0.55rem;
  }

  .flow__step-num span {
    font-size: 1.2rem;
  }

  .flow__step-content {
    padding-top: 8px;
  }

  .flow__step-content h3 {
    font-size: 1.05rem;
  }

  .flow__step-content p {
    font-size: 0.95rem;
  }
}

/* ============================================
   現場担当者からのメッセージ
============================================= */
.message {
  padding: 100px 20px 90px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 250, 0.98) 44%, #eef2f5 100%);
}

.message__inner {
  max-width: 1560px;
  margin: 0 auto;
}

.message__heading {
  text-align: center;
  margin-bottom: 36px;
}

.message__section-title {
  margin: 0;
  color: #0a2f67;
  font-size: clamp(2.4rem, 3vw, 4.8rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 900;
}

/* メインカード */
.message-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 12px 34px rgba(20, 34, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* 左写真 */
.message-card__photo {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(247,248,250,0.98) 100%);
}

.message-card__photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
}

/* 右本文 */
.message-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 58px 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(250,250,250,0.95) 100%);
}

.message-card__title {
  margin: 0 0 34px;
  color: #111111;
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: clamp(2.3rem, 3vw, 4.4rem);
  line-height: 1.33;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.message-card__body p {
  margin: 0;
  color: #111111;
  font-size: clamp(1.1rem, 1.45vw, 1.55rem);
  line-height: 1.9;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.message-card__body p + p {
  margin-top: 14px;
}

.message-card__signature {
  margin: 30px 10px 0 auto;
  color: #111111;
  font-family:
    "Times New Roman",
    "Georgia",
    serif;
  font-style: italic;
  font-size: clamp(2.5rem, 3.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  transform: rotate(-5deg);
  opacity: 0.95;
}

@media (max-width: 1200px) {
  .message {
    padding: 84px 20px 76px;
  }

  .message-card {
    grid-template-columns: 1fr;
  }

  .message-card__photo img {
    min-height: 520px;
    max-height: 680px;
    object-position: center top;
  }

  .message-card__content {
    padding: 40px 34px 34px;
  }

  .message-card__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 1024px) {
  .message__body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .message__image {
    flex: none;
  }
}

@media (max-width: 767px) {
  .message {
    padding: 72px 16px 58px;
  }

  .message__heading {
    margin-bottom: 24px;
  }

  .message__section-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.2;
  }

  .message-card {
    border-radius: 18px;
  }

  .message-card__photo img {
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .message-card__content {
    padding: 26px 20px 24px;
  }

  .message-card__title {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.4;
  }

  .message-card__body p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .message-card__body p + p {
    margin-top: 10px;
  }

  .message-card__signature {
    margin-top: 20px;
    margin-right: 0;
    font-size: 1.8rem;
  }

  .message__image {
    width: 200px;
  }

  .message__image img {
    height: 250px;
  }

  .message__text p {
    font-size: 0.95rem;
  }

  .message__text p:first-child {
    font-size: 1.15rem;
  }
}

/* ============================================
   FAQ
============================================= */
.faq {
  padding: var(--section-padding);
  background: var(--color-white);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.faq__item:hover {
  border-color: var(--color-orange);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: var(--color-gray-50);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq__question:hover {
  background: var(--color-gray-100);
}

.faq__q-label,
.faq__a-label {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 900;
}

.faq__q-label {
  background: var(--color-navy);
}

.faq__a-label {
  background: var(--color-orange);
}

.faq__q-text {
  flex: 1;
  color: var(--color-gray-800);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq__toggle {
  flex-shrink: 0;
  color: var(--color-orange);
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 24px;
}

.faq__item.is-open .faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq__answer p {
  margin: 0;
  padding-top: 6px;
  color: var(--color-gray-800);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .faq__question {
    gap: 12px;
    padding: 16px;
  }

  .faq__q-text {
    font-size: 0.9rem;
  }

  .faq__answer {
  }
}

/* ============================================
   Company
============================================= */
.company {
  padding: var(--section-padding);
  background: var(--color-gray-100);
}

.company .section-title span {
  color: var(--color-orange);
}

.divider {
  width: 72px;
  height: 4px;
  margin: -20px auto 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-orange-light) 0%, var(--color-orange) 100%);
}

.company-table {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
}

.company-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.92);
}

.company-table th,
.company-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #dde4ef;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 130px;
  color: var(--color-navy);
  font-weight: 700;
  background: rgba(13, 44, 94, 0.06);
}

@media (max-width: 767px) {
  .company-table {
    font-size: 0.9rem;
  }

  .company-table th,
  .company-table td {
    padding: 12px 12px;
  }
}

@media (max-width: 480px) {
  .company-table th {
    width: 100px;
  }
}

/* ============================================
   Contact Section
============================================= */
.contact-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(90deg, #0a3167 0%, #0b346b 38%, #0e376f 100%);
  overflow: hidden;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 54px;
  max-width: 1480px;
  margin: 0 auto;
}

.contact-section__content {
  padding: 8px 0;
  color: var(--color-white);
}

.contact-section__eyebrow {
  margin: 0 0 10px;
  color: #cfa45f;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.contact-section__title {
  margin: 0;
  font-size: clamp(2.4rem, 3vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.contact-section__line {
  display: block;
  width: 70px;
  height: 5px;
  margin: 28px 0 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7a85c 0%, #c98e35 100%);
}

.contact-section__lead {
  margin-bottom: 28px;
}

.contact-section__lead p,
.contact-section__message p {
  margin: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1.8;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.contact-section__message {
  margin-bottom: 34px;
}

.contact-section__info-box {
  max-width: 620px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.contact-section__info-box p {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: var(--color-white);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.75;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.contact-section__info-box p:first-child::before {
  content: "◷";
  position: absolute;
  top: 0.05em;
  left: 0;
  color: #d7a85c;
  font-size: 1.15em;
  line-height: 1;
}

.contact-section__info-box p + p {
  margin-top: 6px;
}

.contact-section__notes {
  margin-top: 32px;
}

.contact-section__notes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.8;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.contact-section__form-wrap {
  display: flex;
  justify-content: flex-end;
}

.contact-form {
  width: 100%;
  max-width: 930px;
  padding: 42px 42px 34px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-form__grid {
  display: grid;
  gap: 24px;
}

.contact-form__grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__grid--align-start {
  align-items: start;
}

.contact-form__group {
  margin-bottom: 26px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #21584d;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.contact-form__label--radio {
  margin: 0 0 14px;
}

.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 800;
}

.contact-form__badge--required {
  color: var(--color-white);
  background: linear-gradient(180deg, #d4553d 0%, #c53c2c 100%);
}

.contact-form__badge--optional {
  color: var(--color-white);
  background: linear-gradient(180deg, #b7b8be 0%, #9fa1a7 100%);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  border: 1px solid #d3d4d7;
  border-radius: 8px;
  background: var(--color-white);
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input,
.contact-form__select {
  height: 68px;
  padding: 0 18px;
}

.contact-form__textarea {
  min-height: 170px;
  padding: 18px;
  resize: vertical;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #9b9b9b;
}

.contact-form__select {
  appearance: none;
  padding-right: 46px;
  color: #21584d;
  font-weight: 700;
  background-image:
    linear-gradient(45deg, transparent 50%, #4c6a66 50%),
    linear-gradient(135deg, #4c6a66 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 16px) calc(50% - 4px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #c98e35;
  box-shadow: 0 0 0 4px rgba(201, 142, 53, 0.14);
}

.contact-form__radio-list {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 68px;
  padding: 0 4px;
}

.contact-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #21584d;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
  font-weight: 700;
}

.contact-form__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__radio-mark {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #96989d;
  border-radius: 50%;
  background: #fff;
}

.contact-form__radio-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #c98e35;
  transform: scale(0);
  transition: transform 0.18s ease;
}

.contact-form__radio input:checked + .contact-form__radio-mark::after {
  transform: scale(1);
}

.contact-form__help {
  margin: 10px 0 0;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.contact-form__submit {
  margin-top: 6px;
  text-align: center;
}

.contact-form__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 690px);
  min-height: 78px;
  padding: 18px 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff9f2d 0%, #f3861a 55%, #e6780c 100%);
  color: #fff7ef;
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
  cursor: pointer;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  font-weight: 900;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__button:hover {
  transform: translateY(2px);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.contact-form__policy {
  margin: 18px 0 0;
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .contact-section {
    padding: 84px 20px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-section__form-wrap {
    justify-content: center;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 64px 16px;
  }

  .contact-section__inner {
    gap: 28px;
  }

  .contact-section__eyebrow {
    font-size: 1rem;
  }

  .contact-section__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-section__line {
    width: 56px;
    height: 4px;
    margin: 20px 0 24px;
  }

  .contact-section__lead p,
  .contact-section__message p {
    font-size: 1.04rem;
    line-height: 1.8;
  }

  .contact-section__message {
    margin-bottom: 24px;
  }

  .contact-section__info-box {
    padding: 20px 18px;
    border-radius: 12px;
  }

  .contact-section__info-box p {
    padding-left: 24px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .contact-section__notes {
    margin-top: 22px;
  }

  .contact-section__notes p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .contact-form {
    padding: 24px 18px 22px;
    border-radius: 14px;
  }

  .contact-form__grid--2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__group {
    margin-bottom: 18px;
  }

  .contact-form__label {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .contact-form__badge {
    min-width: 40px;
    height: 24px;
    padding: 0 8px;
    border-radius: 6px;
    font-size: 0.82rem;
  }

  .contact-form__input,
  .contact-form__select {
    height: 56px;
    padding: 0 14px;
    font-size: 1rem;
  }

  .contact-form__textarea {
    min-height: 140px;
    padding: 14px;
    font-size: 1rem;
  }

  .contact-form__radio-list {
    gap: 22px;
    min-height: auto;
    padding: 6px 0 0;
  }

  .contact-form__radio {
    gap: 10px;
    font-size: 1rem;
  }

  .contact-form__radio-mark {
    width: 24px;
    height: 24px;
  }

  .contact-form__radio-mark::after {
    inset: 4px;
  }

  .contact-form__help {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .contact-form__button {
    width: 100%;
    min-height: 64px;
    padding: 16px 14px;
    font-size: 1.08rem;
    border-radius: 8px;
  }

  .contact-form__policy {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.7;
  }
}

/* ============================================
   Contact Form 7 調整
============================================= */
.contact-form--cf7 .wpcf7 {
  width: 100%;
}

.contact-form--cf7 .wpcf7 form {
  margin: 0;
}

.contact-form--cf7 .wpcf7-form p {
  margin: 0;
}

.contact-form--cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form--cf7 .contact-form__input,
.contact-form--cf7 .contact-form__select,
.contact-form--cf7 .contact-form__textarea {
  width: 100%;
}

.contact-form--cf7 input.contact-form__input,
.contact-form--cf7 input.contact-form__select,
.contact-form--cf7 select.contact-form__select,
.contact-form--cf7 textarea.contact-form__textarea {
  appearance: none;
}

.contact-form--cf7 input.contact-form__button {
  appearance: none;
  -webkit-appearance: none;
}

.contact-form--cf7 .contact-form__radio-group {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 68px;
  padding: 0 4px;
}

.contact-form--cf7 .contact-form__radio-group .wpcf7-list-item {
  margin: 0;
}

.contact-form--cf7 .contact-form__radio-group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #21584d;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
}

.contact-form--cf7 .contact-form__radio-group input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #c98e35;
}

.contact-form--cf7 .wpcf7-not-valid {
  border-color: #d4553d !important;
}

.contact-form--cf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #d4553d;
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 700;
}

.contact-form--cf7 .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-form--cf7 .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

@media (max-width: 767px) {
  .contact-form--cf7 .contact-form__radio-group {
    gap: 22px;
    min-height: auto;
    padding: 6px 0 0;
  }

  .contact-form--cf7 .contact-form__radio-group .wpcf7-list-item label {
    font-size: 1rem;
  }

  .contact-form--cf7 .contact-form__radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   Footer
============================================= */
.footer {
  padding: 32px 0 24px;
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .footer__copy {
    font-size: 0.8rem;
  }
}

/* ============================================
   Thanks Page
============================================= */
.thanks-page {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 250, 0.98) 44%, #eef2f5 100%);
}

.thanks-page__section {
  padding: calc(var(--header-height) + 60px) 20px 100px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.thanks-page__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.thanks-card {
  position: relative;
  padding: 64px 56px 56px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow:
    0 18px 40px rgba(20, 34, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.thanks-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1d437e 0%, #0a2f67 100%);
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10, 47, 103, 0.18);
}

.thanks-card__eyebrow {
  margin: 0 0 14px;
  color: var(--color-orange);
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.thanks-card__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2.2rem, 4.8vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.thanks-card__lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--color-black);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.9;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.thanks-card__info {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 24px 24px;
  border: 1px solid rgba(26, 46, 80, 0.12);
  border-radius: 16px;
  background: rgba(248, 249, 252, 0.95);
}

.thanks-card__info p {
  margin: 0;
  color: var(--color-gray-800);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
}

.thanks-card__info p + p {
  margin-top: 6px;
}

.thanks-card__actions {
  margin-top: 34px;
}

.thanks-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 68px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb000 0%, #ff9800 52%, #f28a00 100%);
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 900;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thanks-card__button:hover {
  transform: translateY(2px);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@media (max-width: 767px) {
  .thanks-page__section {
    padding: calc(var(--header-height) + 36px) 16px 64px;
    min-height: auto;
  }

  .thanks-card {
    padding: 38px 20px 28px;
    border-radius: 20px;
  }

  .thanks-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    font-size: 2rem;
  }

  .thanks-card__eyebrow {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .thanks-card__title {
    font-size: clamp(1.8rem, 9vw, 2rem);
    line-height: 1.35;
  }

  .thanks-card__lead {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .thanks-card__info {
    margin-top: 22px;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .thanks-card__info p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .thanks-card__actions {
    margin-top: 24px;
  }

  .thanks-card__button {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 1rem;
  }
}
