/* ==============================
   CSS Variables (章10.1)
   ============================== */
:root {
  --color-primary: #2DB87A;
  --color-secondary: #E0E0E0;
  --color-accent: #C8A45C;
  --color-text: #333333;
  --color-bg: #FFFFFF;
  --color-cta-line: #06C755;
  --color-bg-dark: #1A1A1A;

  --content-width: 960px;

  --font-heading: 'Zen Kaku Gothic New', sans-serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
  --font-english: 'Nunito', sans-serif;

  --font-size-base: 16px;
  --font-size-h1: 32px;
  --font-size-h1-en: 24px;
  --font-size-card-title: 20px;
  --font-size-small: 12px;
  --fv-font-size-keyword: 48px;
  --fv-font-size-heading: 37px;
  --fv-font-size-particle: 11px;
  --about-font-size-sub: 19px;
  --trust-number-size: 48px;

  --line-height-heading: 1.3;
  --line-height-body: 1.8;

  --radius: 8px;
  --radius-button: 8px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

  --section-gap: 80px;
  --card-padding: 24px 20px;
}

/* ==============================
   Global Reset
   ============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ==============================
   Fade-in Animation
   ============================== */
/* --- Base fade-in --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* --- FV entrance sequence --- */
.fv__photos {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fv__photos.is-entered {
  opacity: 1;
  transform: scale(1);
}

.fv__line1,
.fv__line2,
.fv__badge,
.fv__microcopy,
.fv__cta {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fv__line1.is-entered,
.fv__line2.is-entered,
.fv__badge.is-entered,
.fv__microcopy.is-entered,
.fv__cta.is-entered {
  opacity: 1;
  transform: translateY(0);
}

/* --- Stagger: default (fade up) --- */
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-child.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* --- About: slide from left (reading direction) --- */
.about.fade-in {
  opacity: 0;
  transform: translateX(-30px);
}

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

/* --- Trust cards: drop from above --- */
.about__trust-card {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__trust-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Reasons: alternate left/right slide --- */
.reasons__inner .stagger-child {
  opacity: 0;
  transform: translateX(-24px);
}

.reasons__inner .stagger-child:nth-child(even) {
  transform: translateX(24px);
}

.reasons__inner .stagger-child.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Services: scale up from background --- */
.services__featured .stagger-child,
.services__others .stagger-child {
  opacity: 0;
  transform: scale(0.92);
}

.services__featured .stagger-child.is-visible,
.services__others .stagger-child.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Lawyers: quiet fade only (dignity) --- */
.lawyers__inner .stagger-child {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.lawyers__inner .stagger-child.is-visible {
  opacity: 1;
}

/* --- Flow: slide from left (timeline progress) --- */
.flow__inner .stagger-child {
  opacity: 0;
  transform: translateX(-20px);
}

.flow__inner .stagger-child.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Section heading underline grow --- */
.fade-in.is-visible .reasons__heading::after,
.fade-in.is-visible .services__heading::after,
.fade-in.is-visible .lawyers__heading::after,
.fade-in.is-visible .flow__heading::after,
.fade-in.is-visible .about__heading::after {
  animation: underline-grow 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.reasons__heading::after,
.services__heading::after,
.lawyers__heading::after,
.flow__heading::after,
.about__heading::after {
  transform: scaleX(0);
  transform-origin: center;
}

@keyframes underline-grow {
  to { transform: scaleX(1); }
}

/* --- CTA band: clip-path reveal + background zoom --- */
.cta-band.fade-in {
  opacity: 0;
  transform: none;
  clip-path: inset(8% 4% 8% 4%);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              background-size 6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-band.fade-in.is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0% 0% 0% 0%);
  background-size: 110%;
}

/* ==============================
   [1] Header
   ============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.header__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 4px;
}

.header__logo a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  white-space: nowrap;
  padding-left: 14px;
  border-left: 3px solid var(--color-primary);
}

.header__sample-badge {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  margin-left: 4px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.header__phone-icon {
  font-size: 18px;
  color: var(--color-primary);
}

.header__phone-number {
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.header__phone-hours {
  font-size: 11px;
  color: #888;
  margin-left: 4px;
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  border-radius: var(--radius-button);
  transition: opacity 0.3s, box-shadow 0.3s;
  margin-left: auto;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.header__cta-btn:hover {
  opacity: 0.9;
  box-shadow: 0 4px 20px rgba(45, 184, 122, 0.3);
}

.header__line-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-cta-line);
  text-decoration: none;
  margin-left: 16px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.header__line-link:hover {
  opacity: 0.7;
}

.header__nav {
  padding: 3px 0 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex-wrap: wrap;
}

.header__nav-item a,
.header__nav-item > span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  padding: 6px 10px;
  transition: color 0.3s;
  position: relative;
}

.header__nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.header__nav-item a:hover {
  color: var(--color-primary);
}

.header__nav-item a:hover::after {
  transform: scaleX(1);
}

.header__nav-item--active a {
  color: var(--color-primary);
  font-weight: 500;
}

.header__nav-item--active a::after {
  transform: scaleX(1);
}

.header__nav-sep {
  display: none;
}

/* --- Dropdown (PC) --- */
.header__nav-item--dropdown {
  position: relative;
}

.header__nav-item--dropdown > a,
.header__nav-item--dropdown > span {
  padding-bottom: 18px;
  margin-bottom: -12px;
  cursor: pointer;
}

.header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 220px;
  z-index: 1100;
  list-style: none;
  padding-top: 12px;
}

.header__nav-item--dropdown:hover .header__dropdown,
.header__nav-item--dropdown.is-dropdown-open .header__dropdown {
  display: block;
}

.header__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.header__dropdown li a:hover {
  background: rgba(45, 184, 122, 0.06);
  color: var(--color-primary);
}

.header__dropdown li a::after {
  display: none;
}

/* --- SP Subnav --- */
.header__sp-subnav {
  padding-left: 16px;
  list-style: none;
}

.header__sp-subnav li a {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* SP Logo (hidden on PC) */
.header__sp-logo {
  display: none;
}

/* Hamburger (hidden on PC) */
.header__hamburger {
  display: none;
  position: fixed;
  top: 10px;
  right: 12px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* SP Menu (hidden on PC) */
.header__sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  z-index: 1050;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.header__sp-menu.is-open {
  display: block;
}

.header__sp-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header__sp-nav-list li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__sp-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header__sp-phone {
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
}

.header__sp-cta {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-button);
  font-weight: 500;
}

.header__sp-cta--line {
  background: var(--color-cta-line);
  margin-top: 8px;
}

/* ==============================
   [2] FV (First View)
   ============================== */
.fv {
  margin-top: 105px; /* header actual height */
  background: var(--color-bg);
  height: calc(100vh - 105px);
  display: flex;
  align-items: center;
}

html, body {
  overflow-x: hidden;
}

.fv__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.fv__text {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: calc((100vh - 105px) * 0.10);
}

.fv__headline {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.5;
  margin-top: auto;
  margin-bottom: auto;
}

.fv__line1 {
  display: block;
  font-size: 37px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.fv__line2 {
  display: block;
  margin-top: 14px;
  white-space: nowrap;
}

.fv__particle {
  font-size: 30px;
  font-weight: 400;
  color: #aaaaaa;
}

.fv__keyword {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-primary);
}

.fv__keyword-suffix {
  font-size: 28px;
  font-weight: 400;
  color: #666;
}

.fv__badge {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  margin-top: 0;
  letter-spacing: 0.02em;
}

.fv__badge strong {
  font-family: var(--font-english);
  font-weight: 400;
  color: inherit;
}

.fv__microcopy {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.fv__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fv__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-button);
  transition: opacity 0.3s, box-shadow 0.3s;
}

.fv__cta-primary:hover {
  opacity: 0.9;
  box-shadow: 0 4px 20px rgba(45, 184, 122, 0.3);
}

.fv__cta-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fv__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta-line);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 24px;
  border: none;
  border-radius: var(--radius-button);
  transition: background 0.3s;
}

.fv__cta-secondary:hover {
  opacity: 0.9;
}

.fv__cta-secondary:focus-visible {
  outline: 2px solid var(--color-cta-line);
  outline-offset: 2px;
}

/* FV Photos - デザイン画像準拠の非対称コラージュ配置
   写真を意図的にずらして配置し、白い余白（ボイド）で抜け感を作る */
.fv__photos {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  height: calc(100vh - 145px);
}

.fv__photo {
  position: absolute;
}

.fv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* 河川敷（大）: 右上、主役写真 — 大きく取って存在感を出す */
.fv__photo--large {
  top: 0;
  right: 0;
  left: auto;
  width: 75%;
  height: 56%;
  z-index: 1;
}

/* 並木道（小）: 主役写真の左下にオーバーラップ */
.fv__photo--small1 {
  top: 44%;
  left: 14%;
  width: 28%;
  height: 20%;
  z-index: 3;
}

/* ビル（中）: 右寄り — 直線配置を崩して三角形に */
.fv__photo--medium {
  top: 62%;
  left: 36%;
  width: 42%;
  height: 22%;
  z-index: 2;
}

/* カフェ（小）: 左下 — 並木道・ビルと重なりを持つ */
.fv__photo--small2 {
  top: 74%;
  left: 4%;
  width: 34%;
  height: 18%;
  z-index: 1;
}


/* ==============================
   Responsive - Tablet (max-width: 1024px)
   ============================== */
@media (max-width: 1024px) {
  .fv__inner {
    gap: 24px;
    padding: 32px 20px 48px;
  }

  .fv__text {
    flex: 0 0 62%;
    max-width: 62%;
  }

  .fv__photos {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .fv__headline {
    white-space: normal;
  }

  .fv__line1 {
    font-size: 28px;
    white-space: normal;
  }

  .fv__line2 {
    white-space: normal;
  }

  .fv__keyword-suffix {
    font-size: 22px;
  }

  .fv__keyword {
    font-size: 36px;
  }

  .fv__particle {
    font-size: 20px;
  }

  .header__line-link {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .header__cta-btn {
    font-size: 12px;
    padding: 8px 14px;
    margin-left: 4px;
  }

  .header__nav-item a {
    font-size: 12px;
    padding: 4px 5px;
  }

  .header__nav-sep {
    font-size: 10px;
    padding: 0;
  }

  .header__nav {
    gap: 8px;
  }

  .fv__photo--large {
    width: 70%;
    height: 54%;
    right: 2%;
  }

  .fv__photo--small1 {
    left: 18%;
    width: 24%;
    height: 18%;
  }

  .fv__photo--medium {
    left: 40%;
    width: 38%;
    height: 20%;
  }

  .fv__photo--small2 {
    left: 10%;
    width: 28%;
    height: 16%;
  }
}

/* ==============================
   Responsive - SP (max-width: 768px)
   ============================== */
@media (max-width: 768px) {
  .header__inner {
    display: none;
  }

  .header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header::before {
    display: none;
  }

  .header__sp-logo {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-text);
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav-sep {
    display: none;
  }

  .fv {
    margin-top: 54px;
    height: auto;
    min-height: 0;
    padding-top: 0;
    display: block;
  }

  .fv__inner {
    flex-direction: column;
    padding: 0 16px 32px;
    gap: 16px;
    height: auto;
  }

  .fv__text {
    flex: none;
    width: 100%;
    max-width: 100%;
    order: 2;
    height: auto;
    padding-bottom: 0;
  }

  .fv__photos {
    flex: none;
    width: 100%;
    max-width: 100%;
    order: 1;
    position: relative;
    height: 200px;
    overflow: visible;
    margin-bottom: 56px;
  }

  .fv__photo--large {
    position: absolute;
    top: 0;
    left: -16px;
    width: 100vw;
    height: 200px;
    z-index: 1;
  }

  .fv__photo--large img {
    border-radius: 0;
  }

  .fv__photo--small1 {
    position: absolute;
    top: 150px;
    left: calc(100vw - 16px - 35vw);
    width: 35vw;
    height: 90px;
    z-index: 2;
  }

  .fv__photo--small1 img {
    border: 3px solid #fff;
  }

  .fv__photo--medium,
  .fv__photo--small2 {
    display: none;
  }

  .fv__line1 {
    font-size: 24px;
  }

  .fv__line2 {
    margin-top: 2px;
  }

  .fv__keyword-suffix {
    font-size: 18px;
  }

  .fv__keyword {
    font-size: 29px;
  }

  .fv__particle {
    font-size: 17px;
  }

  .fv__headline {
    margin-top: 0;
    margin-bottom: 48px;
    white-space: normal;
    line-height: 1.4;
  }

  .fv__badge {
    font-size: 13px;
  }

  .fv__microcopy {
    font-size: 12px;
    margin-top: 6px;
  }

  .fv__cta {
    flex-direction: column;
    margin-top: 20px;
  }

  .fv__cta-primary {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 14px 24px;
  }

  .fv__cta-secondary {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 12px 24px;
  }
}

/* ==============================
   [3] About (当事務所について)
   ============================== */
.about {
  background: var(--color-secondary);
  padding: 100px 0 0;
}

.about__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.about__text {
  flex: 0 0 50%;
  max-width: 50%;
}

.about__en {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 40px;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.about__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-h1);
  color: var(--color-text);
  line-height: var(--line-height-heading);
  margin-bottom: 24px;
}

.about__heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 16px;
}

.about__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
  line-height: var(--line-height-body);
  margin-bottom: 22px;
}

.about__body--lead {
  font-size: var(--about-font-size-sub);
  color: #222;
  line-height: 1.7;
}

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

.about__photo {
  flex: 1;
  margin-top: 12px;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Trust Numbers Cards */
.about__trust {
  max-width: var(--content-width);
  margin: 48px auto 0;
  padding: 0 20px 100px;
}

.about__trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about__trust-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  text-align: center;
  border-top: 3px solid var(--color-primary);
}

.about__trust-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.about__trust-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
}

.about__trust-number {
  font-family: var(--font-english);
  font-weight: 700;
  font-size: var(--trust-number-size);
  color: var(--color-primary);
  line-height: 1.0;
}

.about__trust-number--small {
  font-size: 40px;
}

.about__trust-unit {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

/* About Responsive - Tablet */
@media (max-width: 1024px) {
  .about__inner {
    gap: 24px;
  }

  .about__en {
    font-size: 32px;
  }

  .about__body {
    font-size: 16px;
  }

  .about__trust-number {
    font-size: 36px;
  }
}

/* About Responsive - SP */
@media (max-width: 768px) {
  .about {
    padding: 40px 0 0;
  }

  .about__inner {
    flex-direction: column;
    gap: 24px;
  }

  .about__text {
    flex: none;
    max-width: 100%;
  }

  .about__photo {
    display: none;
  }

  .about__trust {
    margin-top: 24px;
    padding-bottom: 40px;
  }

  .about__trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about__trust-number {
    font-size: 36px;
  }

  .about__en {
    font-size: 28px;
  }

  .about__heading {
    font-size: 26px;
  }

  .about__body--lead {
    font-size: 15px;
  }

  .about__body {
    font-size: 14px;
  }
}

/* ==============================
   [4] Reasons (選ばれる理由)
   ============================== */
.reasons {
  background: var(--color-bg);
  padding: 80px 0;
}

.reasons__header {
  text-align: center;
  margin-bottom: 48px;
}

.reasons__en {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 40px;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.reasons__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-h1);
  color: var(--color-text);
  line-height: var(--line-height-heading);
}

.reasons__heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 16px auto 0;
}

.reasons__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reasons__card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.reasons__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.reasons__card-text {
  flex: 1;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
}


.reasons__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50%;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45, 184, 122, 0.3);
}

.reasons__card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-card-title);
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 10px;
}

.reasons__card-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-top: auto;
}

.reasons__keyword {
  color: var(--color-primary);
}

.reasons__card-photo {
  flex: 0 0 35%;
  max-width: 35%;
}

.reasons__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}

.reasons__card .reasons__card-text + .reasons__card-photo img {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Reasons Responsive - Tablet */
@media (max-width: 1024px) {
  .reasons__en {
    font-size: 32px;
  }

  .reasons__card-title {
    font-size: 16px;
  }

  .reasons__card-photo {
    flex: 0 0 35%;
    max-width: 35%;
  }
}

/* Reasons Responsive - SP */
@media (max-width: 768px) {
  .reasons {
    padding: 60px 0;
  }

  .reasons__inner {
    grid-template-columns: 1fr;
  }

  .reasons__card {
    flex-direction: row;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    background: #1a3a2a;
  }

  .reasons__card:hover {
    transform: none;
  }

  .reasons__card-photo {
    position: absolute;
    inset: 0;
    flex: none;
    max-width: none;
    width: 100%;
    height: 100%;
    order: 0;
    z-index: 0;
    opacity: 0.18;
  }

  .reasons__card-photo img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reasons__card .reasons__card-text + .reasons__card-photo img {
    border-radius: 0;
  }

  .reasons__card-text {
    position: relative;
    z-index: 1;
    padding: 24px 20px;
    flex: 1;
  }

  .reasons__number {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 12px;
    background: #fff;
    color: var(--color-primary);
    box-shadow: none;
  }

  .reasons__card-title {
    font-size: 22px;
    color: #fff;
  }

  .reasons__keyword {
    color: #8CF0BD;
  }

  .reasons__card-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
  }

  .reasons__en {
    font-size: 28px;
  }

  .reasons__heading {
    font-size: 24px;
  }

  .reasons__header {
    margin-bottom: 32px;
  }
}

/* ==============================
   [5] Services (取扱分野)
   ============================== */
/* 改善1: 斜めグラデーション + 微細ドットパターンで奥行き */
.services {
  background: linear-gradient(135deg, #2DB87A 0%, #25A06C 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  display: none;
}

.services__header,
.services__inner {
  position: relative;
  z-index: 1;
}

.services__header {
  text-align: center;
  margin-bottom: 48px;
}

.services__en {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.services__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-h1);
  color: #fff;
  line-height: var(--line-height-heading);
}

.services__heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #fff;
  margin: 16px auto 0;
}

.services__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Featured Banner Cards (前面分野) --- */
.services__featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* 改善3: 上部グリーングラデーション帯で重みを付加 */
.services__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  gap: 16px;
}

.services__banner::before {
  display: none;
}

.services__banner:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.services__banner:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.services__banner-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.services__banner-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.services__banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services__banner-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-text);
  line-height: 1.3;
  white-space: nowrap;
}

.services__banner-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-top: 4px;
}

.services__banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.services__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(45, 184, 122, 0.08);
  border: 1px solid rgba(45, 184, 122, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.services__banner:hover .services__tag,
.services__card:hover .services__tag {
  background: rgba(45, 184, 122, 0.14);
}

/* --- Compact Cards (対応分野) --- */
/* 改善4: 中央カードをスタガード配置 */
.services__others {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.services__others .services__card:nth-child(2) {
  margin-top: 0;
}

.services__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  justify-content: center;
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  gap: 14px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.services__card:hover {
  background: #fff;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.services__card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.services__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.services__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services__card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.services__card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.services__card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.services__card-body {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Services Responsive - Tablet */
@media (max-width: 1024px) {
  .services__en {
    font-size: 32px;
  }

  .services__banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .services__banner-tags {
    justify-content: flex-start;
  }

  .services__banner-title {
    font-size: 20px;
  }
}

/* Services Responsive - SP */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services__en {
    font-size: 28px;
  }

  .services__heading {
    font-size: 24px;
  }

  .services__header {
    margin-bottom: 32px;
  }

  .services__banner {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }

  .services__banner-main {
    gap: 14px;
  }

  .services__banner-icon {
    width: 44px;
    height: 44px;
  }

  .services__banner-title {
    font-size: 22px;
  }

  .services__banner-tags {
    justify-content: center;
  }

  .services__card-title {
    font-size: 20px;
  }

  .services__tag {
    font-size: 11px;
    padding: 4px 10px;
  }

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

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

  .services__others .services__card:nth-child(2) {
    margin-top: 0;
  }

  .services__card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
  }

  .services__card-tags {
    justify-content: center;
  }

  .services__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .services__card-title {
    margin-bottom: 2px;
  }
}

/* ==============================
   [6] Lawyers (弁護士紹介)
   ============================== */
.lawyers {
  background: var(--color-secondary);
  padding: 80px 0;
}

.lawyers__header {
  text-align: center;
  margin-bottom: 48px;
}

.lawyers__en {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 40px;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.lawyers__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-h1);
  color: var(--color-text);
  line-height: var(--line-height-heading);
}

.lawyers__heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 16px auto 0;
}

.lawyers__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lawyers__card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 24px 28px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.lawyers__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.lawyers__photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.lawyers__card:first-child .lawyers__photo {
  width: 200px;
  height: 200px;
}

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

.lawyers__info {
  margin-bottom: 16px;
}

.lawyers__role {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(45, 184, 122, 0.08);
  border-radius: 20px;
  padding: 3px 14px;
  margin-bottom: 8px;
}

.lawyers__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.4;
}

.lawyers__name-kana {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
}

.lawyers__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.lawyers__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(45, 184, 122, 0.08);
  border: 1px solid rgba(45, 184, 122, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
}

.lawyers__cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.lawyers__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-primary);
  transition: opacity 0.3s;
}

.lawyers__cta:hover {
  opacity: 0.7;
}

.lawyers__cta-arrow {
  transition: transform 0.3s;
}

.lawyers__cta:hover .lawyers__cta-arrow {
  transform: translateX(4px);
}

/* Lawyers Responsive - Tablet */
@media (max-width: 1024px) {
  .lawyers__en {
    font-size: 32px;
  }

  .lawyers__inner {
    gap: 20px;
  }

  .lawyers__card {
    padding: 28px 16px 24px;
  }

  .lawyers__photo {
    width: 130px;
    height: 130px;
  }
}

/* Lawyers Responsive - SP */
@media (max-width: 768px) {
  .lawyers {
    padding: 60px 0;
  }

  .lawyers__en {
    font-size: 28px;
  }

  .lawyers__heading {
    font-size: 24px;
  }

  .lawyers__header {
    margin-bottom: 32px;
  }

  .lawyers__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .lawyers__photo {
    width: 140px;
    height: 140px;
  }

  .lawyers__card:first-child .lawyers__photo {
    width: 160px;
    height: 160px;
  }

  .lawyers__name {
    font-size: 18px;
  }

  .lawyers__card {
    padding: 20px;
    text-align: left;
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    align-items: center;
  }

  .lawyers__photo {
    width: 90px;
    height: 90px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .lawyers__card:first-child .lawyers__photo {
    width: 90px;
    height: 90px;
  }

  .lawyers__info {
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .lawyers__name {
    font-size: 22px;
    white-space: nowrap;
  }

  .lawyers__tags {
    justify-content: flex-start;
    grid-column: 2;
    grid-row: 2;
  }
}

/* ==============================
   [7] Flow (相談の流れ)
   ============================== */
.flow {
  background: var(--color-bg);
  padding: 80px 0;
}

.flow__header {
  text-align: center;
  margin-bottom: 48px;
}

.flow__en {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 40px;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.flow__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-h1);
  color: var(--color-text);
  line-height: var(--line-height-heading);
}

.flow__heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 16px auto 0;
}

.flow__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 0 40px;
  position: relative;
}

/* タイムライン縦ライン */
.flow__inner::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 59px;
  width: 2px;
  background: rgba(45, 184, 122, 0.18);
}

.flow__step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 36px;
  position: relative;
}

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

/* マーカー（番号を包む縦ライン上の要素） */
.flow__marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50%;
}

.flow__step--highlight .flow__number {
  width: 40px;
  height: 40px;
  font-size: 15px;
}

.flow__content {
  flex: 1;
  padding-top: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.flow__step:last-child .flow__content {
  border-bottom: none;
  padding-bottom: 0;
}

.flow__step-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 19px;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 6px;
}

.flow__step--highlight .flow__step-title {
  color: var(--color-primary);
  font-weight: 700;
}

.flow__step-note {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-left: 8px;
}

.flow__step-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.flow__more {
  text-align: center;
  margin-top: 32px;
}

.flow__more-link {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.flow__more-link:hover {
  opacity: 0.7;
}

/* ==============================
   [7.5] Fee
   ============================== */
.fee {
  background: var(--color-bg);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fee__inner {
  max-width: 560px;
  margin: 0 auto;
}

.fee__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.fee__sep {
  display: inline-block;
  width: 2em;
}

.fee__tax {
  font-size: 14px;
  color: #888;
}

.fee__includes {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-bottom: 16px;
}

.fee__includes-item {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  padding-left: 18px;
  position: relative;
}

.fee__includes-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

.fee__note {
  font-size: 13px;
  color: #aaa;
}

/* Fee Responsive - SP */
@media (max-width: 768px) {
  .fee {
    padding: 32px 20px;
  }

  .fee__heading {
    font-size: 20px;
    text-align: center;
  }

  .fee__includes-item {
    font-size: 13px;
  }

  .fee__note {
    font-size: 12px;
    text-align: left;
  }

  .fee__includes {
    display: block;
    text-align: left;
  }

  .fee__price {
    font-size: 18px;
  }
}

/* ==============================
   [8] News
   ============================== */
.news {
  background: var(--color-secondary);
  padding: 48px 0;
}

.news__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.news__header {
  flex-shrink: 0;
  min-width: 160px;
}

.news__en {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.news__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  line-height: var(--line-height-heading);
  margin-bottom: 12px;
}

.news__more-link {
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.news__more-link:hover {
  opacity: 0.7;
}

.news__body {
  flex: 1;
  min-width: 0;
}

.news__list {
  list-style: none;
}

.news__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news__item:last-child {
  border-bottom: none;
}

.news__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s;
}

.news__link:hover {
  opacity: 0.7;
}

.news__date {
  font-family: var(--font-english);
  font-size: 13px;
  color: #888;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.news__category {
  font-size: 11px;
  color: #fff;
  background: var(--color-primary);
  padding: 2px 8px;
  border-radius: 3px;
  flex-shrink: 0;
  line-height: 1.6;
}

.news__title {
  font-size: 14px;
  line-height: 1.5;
}

/* News Responsive - Tablet */
@media (max-width: 1024px) {
  .news__inner {
    gap: 32px;
  }
}

/* News Responsive - SP */
@media (max-width: 768px) {
  .news {
    padding: 36px 0;
  }

  .news__inner {
    flex-direction: column;
    gap: 20px;
  }

  .news__header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-width: auto;
  }

  .news__en {
    font-size: 24px;
  }

  .news__heading {
    font-size: 17px;
    margin-bottom: 0;
  }

  .news__more-link {
    margin-left: auto;
  }

  .news__link {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
  }

  .news__title {
    width: 100%;
    font-size: 13px;
  }
}

/* ==============================
   [9] CTA Band
   ============================== */
.cta-band {
  position: relative;
  background: url('/images/cta-office.png') center / cover no-repeat;
  padding: 88px 20px;
  text-align: center;
  overflow: hidden;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 40, 28, 0.7) 0%, rgba(10, 25, 18, 0.85) 100%);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-band__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cta-band__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-band__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-button);
  transition: opacity 0.2s, transform 0.2s;
}

.cta-band__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cta-band__btn--primary {
  background: var(--color-primary);
  color: #fff;
  font-size: 17px;
  padding: 18px 48px;
  min-width: 260px;
}

.cta-band__btn--line {
  background: var(--color-cta-line);
  color: #fff;
  font-size: 14px;
  padding: 13px 28px;
}

.cta-band__divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 20px;
}

.cta-band__phone {
  text-align: center;
}

.cta-band__phone-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.cta-band__phone-icon {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-band__phone-number {
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.cta-band__phone-hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 12px;
}

/* CTA Band Responsive - SP */
@media (max-width: 768px) {
  .cta-band {
    padding: 56px 20px;
    text-align: left;
  }

  .cta-band__heading {
    font-size: 21px;
  }

  .cta-band__sub {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .cta-band__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  .cta-band__btn--primary {
    width: 100%;
    max-width: none;
    font-size: 16px;
    padding: 16px 32px;
  }

  .cta-band__btn--line {
    width: 100%;
    max-width: none;
  }

  .cta-band__divider {
    margin-left: 0;
  }

  .cta-band__phone-row {
    justify-content: flex-start;
  }

  .cta-band__phone-number {
    font-size: 20px;
  }
}

/* ==============================
   [10] Footer
   ============================== */
.footer {
  background: var(--color-bg-dark);
  padding: 64px 20px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.8;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--color-primary);
}

.footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__info {
  flex-shrink: 0;
  min-width: 280px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
}

.footer__address {
  font-style: normal;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.footer__tel {
  color: rgba(255, 255, 255, 0.6);
}

.footer__nav {
  display: flex;
  gap: 48px;
  flex: 1;
}

.footer__nav-group {
  flex: 1;
}

.footer__nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.footer__nav-list {
  list-style: none;
}

.footer__nav-list li {
  margin-bottom: 8px;
}

.footer__nav-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__nav-list a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* Footer Responsive - Tablet */
@media (max-width: 1024px) {
  .footer__inner {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer__info {
    width: 100%;
    min-width: auto;
  }

  .footer__nav {
    width: 100%;
  }
}

/* Footer Responsive - SP */
@media (max-width: 768px) {
  .footer {
    padding: 48px 20px 0;
  }

  .footer__nav {
    flex-direction: column;
    gap: 28px;
  }

  .footer__nav-title {
    margin-bottom: 10px;
  }

  .footer__nav-list li {
    margin-bottom: 4px;
  }

  .footer__nav-list a {
    display: inline-block;
    padding: 6px 0;
  }

  .footer__bottom {
    padding: 16px 0;
  }
}

/* Flow Responsive - Tablet */
@media (max-width: 1024px) {
  .flow__en {
    font-size: 32px;
  }

  .flow__inner {
    padding-left: 20px;
  }

  .flow__inner::before {
    left: 39px;
  }
}

/* Flow Responsive - SP */
@media (max-width: 768px) {
  .flow {
    padding: 60px 0;
  }

  .flow__en {
    font-size: 28px;
  }

  .flow__heading {
    font-size: 24px;
  }

  .flow__header {
    margin-bottom: 32px;
  }

  .flow__inner {
    padding-left: 16px;
  }

  .flow__inner::before {
    left: 33px;
  }

  .flow__step {
    gap: 20px;
    padding-bottom: 28px;
  }

  .flow__number {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .flow__step--highlight .flow__number {
    width: 36px;
    height: 36px;
  }

  .flow__step-title {
    font-size: 22px;
  }

  .flow__step-body {
    font-size: 14px;
  }

  .flow__step-note {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  .flow__step-body {
    font-size: 14px;
  }
}

/* ==============================
   SP Floating CTA
   ============================== */
.sp-float-cta {
  display: none;
}

@media (max-width: 768px) {
  .sp-float-cta {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 900;
    flex-direction: column;
    gap: 10px;
  }

  .sp-float-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .sp-float-cta__btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  }

  .sp-float-cta__btn--mail {
    background: var(--color-primary);
    color: #fff;
  }

  .sp-float-cta__btn--line {
    background: var(--color-cta-line);
    color: #fff;
  }
}
