@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'ヒラギノ角ゴシック', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* === CSS Custom Properties === */
:root {
  --color-primary: #0071BC;
  --color-primary-dark: #006CAB;
  --color-primary-light: #3FA9F5;
  --color-accent: #305780;
  --color-bg: #ffffff;
  --color-bg-alt: #EAF4FB;
  --color-bg-dark: #10162C;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-inverse: #ffffff;
  --color-border: #e0e4e8;
  --color-border-light: #eef1f4;

  --font-heading-en: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  --font-heading-nav: 'Montserrat', sans-serif;
  --font-body: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'ヒラギノ角ゴシック', sans-serif;

  --font-size-hero: 48px;
  --font-size-h1: 40px;
  --font-size-h2: 28px;
  --font-size-h3: 20px;
  --font-size-body: 15px;
  --font-size-small: 13px;
  --font-size-xs: 11px;
  --line-height-heading: 1.4;
  --line-height-body: 1.9;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-section: 100px;

  --content-width: 1100px;
  --content-padding: 40px;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-full: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition-base: 0.3s ease;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

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

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 40px;
}

.header.is-scrolled .header__logo-icon,
.header.is-scrolled .header__logo-text {
  color: #000000;
}

.header.is-scrolled .header__nav-link {
  color: var(--color-text);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.header__logo-icon {
  font-size: 22px;
  color: #fff;
  transition: color 0.4s ease;
}

.header__logo-icon img {
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.header.is-scrolled .header__logo-icon img {
  filter: none;
}

.header__logo-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header__logo-text {
  font-family: var(--font-heading-nav);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  transition: color 0.4s ease;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  font-family: var(--font-heading-nav);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-base);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary-light);
  transition: width var(--transition-base);
}

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

.is-scrolled .header__nav-link:hover {
  color: var(--color-primary);
}

.header__contact-btn {
  font-family: var(--font-heading-nav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.header__contact-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Fallback background color/image if video fails */
  background: #10162C;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay for better text readability over video */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 30, 65, 0.3) 0%,
      rgba(13, 59, 122, 0.4) 40%,
      rgba(10, 40, 90, 0.6) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__monogram {
  width: 180px;
  height: 180px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInScale 1s ease 0.3s forwards;
}

.hero__monogram svg {
  width: 100%;
  height: 100%;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero__btn {
  font-family: var(--font-heading-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  transition: all var(--transition-base);
}

.hero__btn:first-child {
  background: #fff;
  color: #305780;
}

.hero__btn:first-child:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero__btn:last-child {
  background: rgba(48, 87, 128, 0.7);
  color: #fff;
  border: 1.5px solid #fff;
}

.hero__btn:last-child:hover {
  background: rgba(48, 87, 128, 0.85);
}

/* === Mission Section === */
.section-mission {
  padding: 100px 0 80px;
}

.mission__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}

.mission__heading-area {
  padding-top: 8px;
}

.mission__heading-en {
  font-family: var(--font-heading-en);
  font-size: 68px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-primary-dark);
  line-height: 1.1;
}

.mission__heading-ja {
  font-size: var(--font-size-small);
  color: var(--color-primary);
  margin-top: 6px;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.mission__catchcopy {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 20px;
}

.mission__text {
  font-size: var(--font-size-body);
  line-height: 2;
  color: var(--color-text);
  padding-top: 16px;
}

.mission__text p+p {
  margin-top: 16px;
}

/* === 3つの強み Section === */
.section-strengths {
  background: #003C6E;
  padding: 90px 0;
  color: #fff;
}

.strengths__heading {
  text-align: center;
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.strengths__subheading {
  text-align: center;
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 56px;
}

.strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.strength-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  overflow: hidden;
  color: var(--color-text);
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.strength-card__icon {
  width: 100%;
  height: 180px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  border-radius: 0;
}

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

.strength-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strength-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  padding: 20px 20px 0;
  text-align: center;
}

.strength-card__text {
  font-size: var(--font-size-small);
  color: var(--color-text-light);
  line-height: 1.8;
  padding: 0 20px 28px;
}

/* === Servise (事業概要) Section === */
.section-service {
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.section-service::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../images/top/bill-back-img.jpg') center bottom / 100% auto no-repeat;
  z-index: 0;
}

.section-service > .container {
  position: relative;
  z-index: 1;
}

.service__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.service__heading-group {
  /* 見出し＋日本語ラベルのグループ */
}

.service__heading-en {
  font-family: var(--font-heading-en);
  font-size: 68px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-primary-dark);
  line-height: 1;
  position: relative;
  display: inline-block;
}

.service__heading-en::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
}

.service__heading-ja {
  font-size: var(--font-size-small);
  color: var(--color-primary);
  margin-top: 4px;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.service__intro {
  margin-top: 0;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text);
  max-width: 600px;
}

/* --- Service Detail Block --- */
.service-block {
  padding: 60px 0;
}

.service-block__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-block__layout--reverse {
  direction: rtl;
}

.service-block__layout--reverse>* {
  direction: ltr;
}

.service-block__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.service-block__content {
  padding: 8px 0;
}

.service-block__badge {
  display: inline-block;
  font-family: var(--font-heading-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--color-primary);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.service-block__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.service-block__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.service-block__list {
  margin-bottom: 24px;
}

.service-block__list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  padding-left: 16px;
  position: relative;
}

.service-block__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.service-block__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  letter-spacing: 0.04em;
}

.service-block__link:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 59, 122, 0.3);
}

.service-block__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* === サービスの流れ Section === */
.section-flow {
  background: #EAF4FB;
  padding: 100px 0;
}

.flow__heading {
  text-align: center;
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.flow__subheading {
  text-align: center;
  font-size: var(--font-size-small);
  color: var(--color-text-light);
  margin-bottom: 60px;
  line-height: 1.8;
}

.flow__list {
  max-width: 820px;
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 44px;
  position: relative;
}

.flow-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.flow-item__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-nav);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-item__content {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.flow-item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.flow-item__text {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* === 代表挨拶 Section === */
.section-greeting {
  background: #EAF4FB;
  padding: 100px 0;
  color: var(--color-text);
}

.greeting__layout {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Photo removed per request */
.greeting__photo {
  display: none;
}

.greeting__content {
  padding-top: 0;
}

.greeting__role {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.greeting__name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.greeting__name-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.greeting__text {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.greeting__text p+p {
  margin-top: 16px;
}

/* === 未公開土地情報 CTA Section === */
.section-land-cta {
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  background-color: var(--color-bg-dark);
  overflow: hidden;
  color: #fff;
}

.section-land-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../images/top/cta-back-img.jpg') center/cover no-repeat;
  z-index: 0;
}

.section-land-cta>.container {
  position: relative;
  z-index: 1;
}

.land-cta__heading {
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.land-cta__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.land-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 14px 40px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  background: white;
}

.land-cta__btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* === 無料相談受付中 Section === */
.section-contact {
  padding: 80px 0 90px;
  text-align: center;
}

.contact__heading {
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.contact__text {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 48px;
  line-height: 1.8;
}

.contact__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  background: #fff;
  transition: all var(--transition-base);
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-method__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Original SVG styles kept for fallback or reference, but mostly unused if IMG is replaced */
.contact-method__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method__icon--mail svg {
  stroke: #2eaa5e;
  fill: none;
}

.contact-method__icon--line svg {
  stroke: none;
  fill: #06C755;
}

.contact-method__icon--instagram svg {
  stroke: none;
  fill: url(#igGrad);
}

.contact-method__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-method__sub {
  font-size: var(--font-size-small);
  color: var(--color-text-light);
  line-height: 1.6;
  text-align: center;
}

.contact-method__btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-top: 4px;
  transition: all var(--transition-base);
}

.contact-method__btn:hover {
  background: var(--color-primary-light);
}

.contact-method__btn--text {
  background: none;
  color: var(--color-primary);
  font-weight: 600;
  padding: 8px 0;
}

.contact-method__btn--text:hover {
  background: none;
  color: var(--color-primary-light);
}

.contact__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  padding: 14px 40px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.06em;
}

.contact__cta-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(13, 59, 122, 0.3);
}

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

.footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo-icon {
  color: rgba(255, 255, 255, 0.8);
}

.footer__logo-icon img {
  filter: brightness(0) invert(1);
}

.footer__logo-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__logo-text {
  font-family: var(--font-heading-nav);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.footer__nav {
  display: flex;
  gap: 40px;
}

.footer__nav-group-title {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer__nav-link {
  display: block;
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  transition: color var(--transition-base);
}

.footer__nav-link:hover {
  color: #fff;
}

.footer__contact-info {
  text-align: left;
}

.footer__nav-group-title--contact {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  transition: color var(--transition-base);
}

.footer__contact-item:hover {
  color: #fff;
}

.footer__contact-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer__copyright {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* === Page Hero (共通サブページヒーロー) === */
.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 60, 110, 0.55) 0%,
      rgba(48, 87, 128, 0.50) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 40px;
}

.page-hero__title {
  font-size: 43px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.page-hero__subtitle {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

/* === 代表挨拶 Section (About) === */
.section-about-greeting {
  padding: 80px 0 60px;
  background: #fff;
}

.about-greeting__section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  color: var(--color-text);
}

.about-greeting__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}

.about-greeting__left {
  text-align: left;
}

.about-greeting__role {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.about-greeting__name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  color: var(--color-text);
}

.about-greeting__name-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.about-greeting__bio {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text);
}

.about-greeting__bio p + p {
  margin-top: 20px;
}

.about-greeting__right {
  background: #F5FBFE;
  padding: 40px 40px;
}

.about-greeting__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text);
}

.about-greeting__text p + p {
  margin-top: 20px;
}

/* === Mission Section (About) === */
.section-about-mission {
  position: relative;
  overflow: hidden;
  background: url('../../images/about/about-back-img.jpg') center / cover no-repeat;
}

/* overlay removed – image has blue tint baked in */

.about-mission__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 60px;
}

.about-mission__heading-en {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading-en);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.1;
  flex-shrink: 0;
}

.about-mission__text-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 30px;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text);
}

.about-mission__catchcopy {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 20px;
}

.about-mission__text-box p + p {
  margin-top: 10px;
}

/* === 会社情報 Section === */
.section-company-info {
  padding: 80px 0 100px;
  background: var(--color-bg-alt);
}

.company-info__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 44px;
  color: var(--color-text);
}

.company-info__image {
  max-width: 860px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 180px;
}

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

.company-info__table {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.company-info__list {
  width: 100%;
}

.company-info__row {
  display: grid;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid #E6E6E6;
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__row dt {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  padding: 22px 24px;
  background: #EFF5FB;
  letter-spacing: 0.06em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-info__row dd {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  padding: 22px 36px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  background: #FEFEFF;
}

.company-info__row dd a {
  color: #29ABE2;
  transition: color var(--transition-base);
}

.company-info__row dd a:hover {
  color: var(--color-primary-light);
}

/* === アクセス Section === */
.section-access {
  padding: 80px 0;
}

.access__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  color: var(--color-text);
}

.access__map {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.access__map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.access__info {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 2;
}

/* === Divider === */
.section-divider {
  border: none;
  height: 1px;
  background: var(--color-border-light);
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ============================================
   Service Page Styles
   ============================================ */

/* === Breadcrumb === */
.breadcrumb {
  background: #EAF4FB;
  padding: 60px 0 0;
}

.breadcrumb .container {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: var(--font-size-small);
  color: var(--color-text-light);
}

.breadcrumb__link {
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

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

.breadcrumb__separator {
  margin: 0 8px;
  color: var(--color-border);
}

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

/* === Service Detail Block === */
.section-sv-detail {
  padding: 48px 0;
  background: #fff;
}

.section-sv-detail--hero-bg {
  background: var(--color-bg-alt);
}

.section-sv-detail--alt {
  background: #fff;
}

.sv-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sv-detail__layout--reverse {
  direction: rtl;
}

.sv-detail__layout--reverse > * {
  direction: ltr;
}

.sv-detail__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.sv-detail__content {
  padding: 8px 0;
}

.sv-detail__badge {
  display: inline-block;
  font-family: var(--font-heading-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--color-primary);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.sv-detail__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.sv-detail__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* === Service Hero Block (Service 02/03 full-width bg image) === */
.section-sv-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.sv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.sv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(16, 22, 44, 0.85) 0%,
      rgba(16, 22, 44, 0.5) 60%,
      rgba(16, 22, 44, 0.3) 100%);
}

.section-sv-hero > .container {
  position: relative;
  z-index: 1;
}

.sv-hero__content {
  max-width: 480px;
}

.sv-hero__content--right {
  margin-left: auto;
}

.sv-hero__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  color: #fff;
}

.sv-hero__text {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* === Service Features Grid === */
.section-sv-features {
  padding: 40px 0 80px;
  background: var(--color-bg-alt);
}

.sv-features__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  color: var(--color-text);
}

.sv-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sv-features__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.sv-features__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sv-features__number {
  font-family: var(--font-heading-en);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.sv-features__item-content {
  flex: 1;
}

.sv-features__item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.sv-features__item-text {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* === Service Contents Section === */
.section-sv-contents {
  padding: 80px 0;
  background: url('../../images/bill-back-img.jpg') center bottom / cover no-repeat;
}

.sv-contents__wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
}

.sv-contents__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  color: var(--color-text);
}

.sv-contents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sv-contents__card {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.sv-contents__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.sv-contents__card-image {
  margin: 16px 16px 0;
  border-radius: 10px;
  overflow: hidden;
}

.sv-contents__card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sv-contents__card-title {
  font-size: 14px;
  font-weight: 600;
  padding: 16px 20px 8px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.03em;
}

.sv-contents__card-text {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 20px 24px;
  text-align: center;
}

.sv-contents__recommend {
  margin-top: 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.sv-contents__recommend-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.04em;
}

.sv-contents__recommend-list {
  list-style: none;
}

.sv-contents__recommend-list li {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
}

.sv-contents__recommend-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
}

/* === Service Strengths === */
.section-sv-strengths {
  padding: 80px 0;
  background: #fff;
}

.section-sv-strengths > .container {
  background: var(--color-bg-alt);
  border-radius: 20px;
  padding: 48px 40px;
}

.sv-strengths__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  color: var(--color-text);
}

.sv-strengths__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sv-strengths__item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.sv-strengths__image {
  flex: 0 0 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.sv-strengths__item-content {
  flex: 1;
  padding-top: 4px;
}

.sv-strengths__item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.sv-strengths__item-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* ============================================
   House Maker (ハウスメーカー紹介) Page
   ============================================ */

/* === Section Title (共通) === */
.hm-section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* === Hero title override === */
.hm-hero__title {
  font-size: 43px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* === Matching Service === */
.section-hm-matching {
  background: #ffffff;
  padding: 64px 0 80px;
}

.hm-matching__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  text-align: center;
  line-height: 1.9;
  margin-bottom: 48px;
}

.hm-matching__cards {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.hm-matching__card {
  width: 256px;
  text-align: center;
  background: #EAF4FB;
  border-radius: 8px;
  padding: 19px 13px 27px;
}

.hm-matching__card-img {
  width: 230px;
  height: 121.5px;
  background: #CFD0D0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

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

.hm-matching__card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.hm-matching__card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.55;
}

/* === Works (施工事例) === */
.section-hm-works {
  background: #F5FBFE;
  padding: 64px 0 80px;
}

.hm-works__desc {
  font-size: 16px;
  font-weight: 200;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 40px;
}

/* Instagram embed card */
.hm-instagram {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hm-instagram__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.hm-instagram__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #CFD0D0;
  flex-shrink: 0;
}

.hm-instagram__info {
  flex: 1;
}

.hm-instagram__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.hm-instagram__bio {
  font-size: 14px;
  font-weight: 200;
  color: var(--color-text);
  line-height: 1.6;
}

.hm-instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.hm-instagram__item {
  aspect-ratio: 1;
  background: #CFD0D0;
  border-radius: 2px;
}

.hm-instagram__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hm-instagram__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  color: #ffffff;
  transition: opacity var(--transition-base);
}

.hm-instagram__btn:hover {
  opacity: 0.85;
}

.hm-instagram__btn--load {
  background: #333333;
  font-weight: 200;
}

.hm-instagram__btn--follow {
  background: #333333;
  font-weight: 300;
}

.hm-instagram__btn--follow svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  fill: none;
}

/* === Flow (サービスの流れ) === */
.section-hm-flow {
  background: #ffffff;
  padding: 80px 0;
}

.hm-flow__steps {
  max-width: 660px;
  margin: 40px auto 0;
  position: relative;
}

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

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

.hm-flow__step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hm-flow__step-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hm-flow__step-num {
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* 縦線: 円の下端から次ステップの円の上端まで貫通 */
.hm-flow__step-line {
  display: none;
}

.hm-flow__step:not(.hm-flow__step--last)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 58px;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
}

.hm-flow__step-content {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 28px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hm-flow__step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.hm-flow__step-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.65;
}

/* === FAQ === */
.section-hm-faq {
  padding: 80px 0 100px;
  background: url('../../images/bill-back-img.jpg') center / cover no-repeat;
  position: relative;
}

.section-hm-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.section-hm-faq > .container {
  position: relative;
  z-index: 1;
}

.hm-faq__list {
  max-width: 660px;
  margin: 40px auto 0;
}

.hm-faq__item {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-base);
}

.hm-faq__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hm-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}

.hm-faq__q-mark {
  width: 34.6px;
  height: 34.6px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hm-faq__q-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.hm-faq__answer {
  display: none;
  padding: 0 24px 18px;
  padding-left: 74px;
  align-items: flex-start;
  gap: 12px;
}

.hm-faq__item--open .hm-faq__answer {
  display: flex;
}

.hm-faq__a-mark {
  width: 24.86px;
  height: 24.86px;
  border-radius: 50%;
  background: #CFD0D0;
  color: #ffffff;
  font-size: 12.93px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hm-faq__a-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.6;
}

/* === CTA === */
.section-hm-cta {
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  background-color: var(--color-bg-dark);
  overflow: hidden;
  color: #fff;
}

.section-hm-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../images/top/cta-back-img.jpg') center/cover no-repeat;
  z-index: 0;
}

.section-hm-cta > .container {
  position: relative;
  z-index: 1;
}

.hm-cta__title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hm-cta__text {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.85;
  margin-bottom: 28px;
}

.hm-cta__btn {
  display: inline-block;
  font-size: 11.7px;
  font-weight: 400;
  color: #305780;
  background: #ffffff;
  padding: 10px 28px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
}

.hm-cta__btn:hover {
  background: transparent;
  color: #ffffff;
}

/* ============================================
   Contact (お問い合わせ) Page
   ============================================ */

/* === Section Heading === */
.ct-section-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

/* === Contact Methods === */
.section-ct-methods {
  padding: 72px 0 80px;
  background: #ffffff;
}

.ct-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.ct-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px 32px;
  background: #EAF4FB;
  border-radius: 12.48px;
  transition: all var(--transition-base);
}

.ct-method-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.ct-method-card__icon {
  width: 80px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ct-method-card__icon-mail {
  width: 56px;
  height: 42px;
}

.ct-method-card__icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
}

.ct-method-card__icon-circle svg {
  width: 100%;
  height: 100%;
}

.ct-method-card__label {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.ct-method-card__desc {
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.77;
  margin-bottom: 16px;
}

.ct-method-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.15px;
  font-weight: 600;
  color: #ffffff;
  background: var(--color-primary);
  padding: 8px 24px;
  border-radius: 50px;
  transition: all var(--transition-base);
}

.ct-method-card__btn:hover {
  opacity: 0.85;
}

.ct-method-card__link {
  font-size: 12.15px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  transition: opacity var(--transition-base);
}

.ct-method-card__link:hover {
  opacity: 0.7;
}

/* === Contact Form === */
.section-ct-form {
  padding: 72px 0 100px;
  background: #ffffff;
}

.ct-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 48px 56px 56px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ct-form-group {
  display: flex;
  flex-direction: column;
}

.ct-form-group--full {
  width: 100%;
}

.ct-form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.ct-required {
  color: #ED4C5C;
  margin-left: 2px;
}

.ct-form-input,
.ct-form-select,
.ct-form-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 12px 16px;
  transition: border-color var(--transition-base);
  outline: none;
}

.ct-form-input::placeholder,
.ct-form-select::placeholder,
.ct-form-textarea::placeholder {
  color: #999999;
}

.ct-form-input:focus,
.ct-form-select:focus,
.ct-form-textarea:focus {
  border-color: var(--color-primary);
}

.ct-select-wrapper {
  position: relative;
}

.ct-select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #999999;
  pointer-events: none;
}

.ct-form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.ct-form-select:invalid {
  color: #999999;
}

.ct-form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.ct-form-submit {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #10162C;
  padding: 14px 52px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  transition: all var(--transition-base);
  cursor: pointer;
}

.ct-submit-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ============================================
   Consulting (収益物件コンサルティング) Page
   ============================================ */

/* === Section Title === */
.iv-section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 20px;
}

.iv-section-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  text-align: center;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 50px;
}

/* === Overview (資産コンサル事業) === */
.section-iv-overview {
  padding: 80px 0;
  background: #ffffff;
}

.iv-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.iv-stat-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.iv-stat-card__text {
  flex: 1;
}

.iv-stat-card__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iv-stat-card__circle svg {
  width: 32px;
  height: 32px;
}

.iv-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.iv-stat-label {
  font-size: 18px;
  font-weight: 800;
  color: #231815;
  margin-top: 4px;
}

.iv-stat-desc {
  font-size: 14px;
  font-weight: 300;
  color: #231815;
  line-height: 1.4;
  margin-top: 6px;
}

/* === Strengths (強み) === */
.section-iv-strengths {
  padding: 80px 0;
  background: #F9F9F9;
}

.section-iv-strengths .iv-section-title {
  margin-bottom: 50px;
}

.iv-strength-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.iv-strength-item--reverse {
  flex-direction: row-reverse;
}

.iv-strength-image {
  flex: 0 0 48%;
}

.iv-strength-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #E6EEF3;
}

.iv-strength-content {
  flex: 1;
}

.iv-strength-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.iv-strength-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.iv-strength-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--color-text);
}

.iv-strength-text {
  font-size: 16px;
  font-weight: 200;
  color: var(--color-text);
  line-height: 1.6;
}

/* === Flow (サービスの流れ) === */
.section-iv-flow {
  padding: 80px 0;
  background: #ffffff;
}

.section-iv-flow .iv-section-title {
  margin-bottom: 40px;
}

.iv-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.iv-flow-card {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 28px 24px;
}

.iv-flow-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.iv-flow-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.iv-flow-number {
  display: block;
  font-size: 33px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.iv-flow-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 4px;
}

.iv-flow-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 8px;
}

/* === Simulation (投資シミュレーション) === */
.section-iv-simulation {
  padding: 80px 0;
  background: #F5FBFE;
}

.iv-sim-card {
  border-radius: 12px;
  padding: 40px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.iv-sim-card--white {
  background: #ffffff;
  margin-bottom: 24px;
}

.iv-sim-card--blue {
  background: var(--color-bg-alt);
}

.iv-sim-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 32px;
}

.iv-sim-columns {
  display: flex;
  gap: 48px;
}

.iv-sim-column {
  flex: 1;
}

.iv-sim-column__heading {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 16px;
}

.iv-sim-table {
  width: 100%;
  border-collapse: collapse;
}

.iv-sim-table td {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  border-bottom: 1px solid #D0D0D0;
}

.iv-sim-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.iv-sim-table__total td {
  border-bottom: 2px solid var(--color-primary);
  font-weight: 800;
}

.iv-sim-table__total td:last-child {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 16px;
}

.iv-sim-table--cashflow td:first-child {
  width: 30%;
}

.iv-sim-table--cashflow .iv-sim-table__formula {
  text-align: right;
  font-weight: 300;
  color: #666;
}

.iv-sim-table--cashflow td:last-child {
  width: 20%;
  text-align: right;
  font-weight: 600;
}

.iv-sim-yield {
  text-align: center;
  margin-top: 28px;
}

.iv-sim-yield__value {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
}

.iv-sim-yield__note {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  margin-top: 6px;
}

/* === FAQ === */
.section-iv-faq {
  padding: 80px 0;
  background: url('../../images/bill-back-img.jpg') center / cover no-repeat;
  position: relative;
}

.section-iv-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.section-iv-faq > .container {
  position: relative;
  z-index: 1;
}

.section-iv-faq .iv-section-title {
  margin-bottom: 40px;
}

.iv-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.iv-faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-base);
}

.iv-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.iv-faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
}

.iv-faq-q-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iv-faq-q-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.iv-faq-answer {
  display: none;
  padding: 0 24px 20px;
  padding-left: 68px;
  align-items: flex-start;
  gap: 12px;
}

.iv-faq-item--open .iv-faq-answer {
  display: flex;
}

.iv-faq-a-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #CFD0D0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iv-faq-a-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.7;
}

/* === CTA (共通 section-land-cta を使用) === */

/* ============================================
   未公開土地情報ページ (.ld-)
   ============================================ */

/* --- セクションタイトル --- */
.ld-section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* --- 未公開土地情報とは? --- */
.section-ld-about {
  padding: var(--space-section) 0;
  background: #FFFFFF;
}

.ld-about__desc {
  font-size: 16px;
  font-weight: 200;
  color: var(--color-text);
  text-align: center;
  line-height: 1.575;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* --- 3カラム特徴カード --- */
.ld-features {
  display: grid;
  grid-template-columns: repeat(3, 256px);
  gap: 45px;
  justify-content: center;
}

.ld-features__card {
  background: #FFFFFF;
  border: 1px solid #EAF4FB;
  border-radius: 8px;
  overflow: hidden;
  padding: 19px 13px 27px;
  box-shadow: 9px 8px 0 0 #EAF4FB;
}

.ld-features__card-img {
  width: 230px;
  height: 121px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #CFD0D0;
}

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

.ld-features__card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  margin-bottom: 8px;
  padding: 0 3px;
}

.ld-features__card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  text-align: left;
  line-height: 1.31;
  padding: 0 3px;
}

/* --- 現在公開中の土地情報 --- */
.section-ld-listings {
  padding: var(--space-section) 0;
  background: #F9F9F9;
  position: relative;
  overflow: hidden;
}

.section-ld-listings::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../images/top/bill-back-img.jpg') center bottom / 100% auto no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.5;
  z-index: 0;
}

.section-ld-listings > .container {
  position: relative;
  z-index: 1;
}

.ld-listings__note {
  font-size: 16px;
  font-weight: 200;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 40px;
}

.ld-listings__grid {
  display: grid;
  grid-template-columns: repeat(3, 244px);
  gap: 45px 50px;
  justify-content: center;
}

/* --- 物件カード --- */
.ld-card {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 8.29px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ld-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 8px;
}

.ld-card__number {
  font-size: 10px;
  font-weight: 300;
  color: var(--color-primary);
}

.ld-card__badge {
  font-size: 7.47px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--color-primary);
  padding: 2px 8px;
  border-radius: 10px;
}

.ld-card__img {
  width: 100%;
  height: 147px;
  background: #CFD0D0;
  overflow: hidden;
}

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

.ld-card__body {
  padding: 12px 16px 10px;
  flex: 1;
}

.ld-card__area {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.ld-card__details {
  margin-bottom: 6px;
}

.ld-card__detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.ld-card__detail-label {
  font-size: 10px;
  font-weight: 300;
  color: #4D4D4D;
  min-width: 48px;
}

.ld-card__detail-value {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text);
}

.ld-card__feature {
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.5;
}

.ld-card__feature-label {
  font-weight: 600;
}

.ld-card__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 12px;
  border-top: 1px dashed #CCCCCC;
  margin: 0 8px 8px;
}

.ld-card__cta-icon {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #00B900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ld-card__cta-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.37;
}

/* --- LINE CTA セクション --- */
.section-ld-line-cta {
  padding: var(--space-xl) 0;
  position: relative;
  background-color: var(--color-bg-dark);
  overflow: hidden;
  color: #fff;
}

.section-ld-line-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../images/top/cta-back-img.jpg') center/cover no-repeat;
  z-index: 0;
}

.section-ld-line-cta > .container {
  position: relative;
  z-index: 1;
}

.ld-line-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ld-line-cta__left {
}

.ld-line-cta__title {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.ld-line-cta__desc {
  font-size: 12px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.533;
  margin-bottom: 16px;
}

.ld-line-cta__checks {
  margin-bottom: 28px;
}

.ld-line-cta__checks li {
  font-size: 10px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.84;
}

.ld-line-cta__checks li::before {
  content: '\2713  ';
}

.ld-line-cta__btn {
  display: inline-block;
  font-size: 11.7px;
  font-weight: 600;
  color: #305780;
  background: #FFFFFF;
  padding: 10px 28px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
}

.ld-line-cta__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.ld-line-cta__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 28px 24px;
  width: 300px;
}

.ld-line-cta__qr {
  width: 180px;
  height: 180px;
  overflow: hidden;
}

.ld-line-cta__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ld-line-cta__qr-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
}

/* --- メール問い合わせ --- */
.section-ld-mail-cta {
  padding: var(--space-xl) 0;
  background: #FFFFFF;
  text-align: center;
}

.ld-mail-cta__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.ld-mail-cta__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 28px;
}

.ld-mail-cta__btn {
  display: inline-block;
  font-size: 11.7px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--color-primary);
  padding: 10px 28px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
}

.ld-mail-cta__btn:hover {
  background: transparent;
  color: var(--color-primary);
}

/* ============================================
   Responsive — Tablet (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

  /* --- Base --- */
  :root {
    --content-padding: 20px;
  }

  /* --- Header --- */
  .header {
    padding: 14px 16px;
  }

  .header.is-scrolled {
    padding: 10px 16px;
  }

  /* --- Hamburger Button --- */
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }

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

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

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

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

  /* --- Mobile Nav Overlay --- */
  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav .header__nav-link {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .header__nav .header__contact-btn {
    margin-top: 8px;
    font-size: 14px;
    padding: 12px 40px;
  }

  body.no-scroll {
    overflow: hidden;
  }

  /* --- TOP: Hero --- */
  .hero {
    min-height: 500px;
  }

  .hero__monogram {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero__btn {
    font-size: 12px;
    padding: 12px 32px;
  }

  /* --- TOP: Mission --- */
  .section-mission {
    padding: 60px 0 50px;
  }

  .mission__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission__heading-en {
    font-size: 40px;
  }

  .mission__text {
    padding-top: 0;
  }

  /* --- TOP: 3つの強み --- */
  .section-strengths {
    padding: 60px 0;
  }

  .strengths__heading {
    font-size: 22px;
  }

  .strengths__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* --- TOP: Servise (事業概要) --- */
  .section-service {
    padding: 60px 0 30px;
  }

  .service__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .service__heading-en {
    font-size: 40px;
  }

  .service__heading-en::before {
    left: -12px;
    width: 3px;
  }

  .service__intro {
    font-size: 15px;
    max-width: 100%;
  }

  .service-block {
    padding: 40px 0;
  }

  .service-block__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-block__layout--reverse {
    direction: ltr;
  }

  .service-block__title {
    font-size: 20px;
  }

  /* --- TOP: サービスの流れ --- */
  .section-flow {
    padding: 60px 0;
  }

  .flow__heading {
    font-size: 22px;
  }

  .flow__subheading {
    margin-bottom: 40px;
  }

  .flow-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding-bottom: 32px;
  }

  .flow-item__number {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .flow-item:not(:last-child)::before {
    left: 22px;
    top: 44px;
  }

  .flow-item__title {
    font-size: 15px;
  }

  .flow-item__text {
    font-size: 12px;
  }

  /* --- TOP: 代表挨拶 --- */
  .section-greeting {
    padding: 60px 0;
  }

  .greeting__name {
    font-size: 22px;
  }

  /* --- TOP: 未公開土地情報CTA --- */
  .section-land-cta {
    padding: 60px 0 50px;
  }

  .land-cta__heading {
    font-size: 22px;
  }

  .land-cta__text {
    font-size: 13px;
  }

  .land-cta__btn {
    font-size: 13px;
    padding: 12px 32px;
  }

  /* --- TOP: 無料相談 --- */
  .section-contact {
    padding: 60px 0;
  }

  .contact__heading {
    font-size: 22px;
  }

  .contact__methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 20px 24px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

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

  /* --- Divider --- */
  .section-divider {
    margin: 0 20px;
  }

  /* ============================================
     About Us Page — SP
     ============================================ */

  /* --- Breadcrumb --- */
  .breadcrumb {
    padding: 56px 0 0;
  }

  .breadcrumb .container {
    font-size: 11px;
  }

  /* --- Page Hero --- */
  .page-hero {
    height: 220px;
  }

  .page-hero__content {
    padding-top: 24px;
  }

  .page-hero__title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .page-hero__subtitle {
    font-size: 13px;
  }

  /* --- About: 代表挨拶 --- */
  .section-about-greeting {
    padding: 48px 0 40px;
  }

  .about-greeting__section-heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .about-greeting__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-greeting__name {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .about-greeting__bio {
    font-size: 14px;
  }

  .about-greeting__right {
    padding: 28px 20px;
  }

  .about-greeting__text {
    font-size: 14px;
  }

  /* --- About: Mission --- */
  .about-mission__inner {
    flex-direction: column;
    gap: 20px;
    padding: 32px 20px;
  }

  .about-mission__heading-en {
    font-size: 32px;
  }

  .about-mission__text-box {
    font-size: 14px;
    padding: 20px 20px;
  }

  /* --- About: 会社情報 --- */
  .section-company-info {
    padding: 60px 0;
  }

  .company-info__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .company-info__image {
    margin-bottom: 32px;
    max-height: 140px;
  }

  .company-info__row {
    grid-template-columns: 1fr;
  }

  .company-info__row dt {
    font-size: 14px;
    padding: 14px 20px;
    text-align: left;
    justify-content: flex-start;
  }

  .company-info__row dd {
    font-size: 14px;
    padding: 14px 20px;
  }

  /* --- About: アクセス --- */
  .section-access {
    padding: 60px 0;
  }

  .access__heading {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .access__map iframe {
    height: 280px;
  }

  /* ============================================
     Service Page — SP
     ============================================ */

  /* --- Service Detail --- */
  .section-sv-detail {
    padding: 48px 0;
  }

  .sv-detail__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sv-detail__layout--reverse {
    direction: ltr;
  }

  .sv-detail__title {
    font-size: 20px;
  }

  .sv-detail__text {
    font-size: 14px;
  }

  /* --- Service Hero (02/03) --- */
  .section-sv-hero {
    padding: 48px 0;
    min-height: 260px;
  }

  .sv-hero__overlay {
    background: linear-gradient(180deg,
        rgba(16, 22, 44, 0.8) 0%,
        rgba(16, 22, 44, 0.6) 100%);
  }

  .sv-hero__content,
  .sv-hero__content--right {
    max-width: 100%;
    margin-left: 0;
  }

  .sv-hero__title {
    font-size: 20px;
  }

  /* --- Service Features --- */
  .section-sv-features {
    padding: 48px 0;
  }

  .sv-features__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .sv-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sv-features__item {
    padding: 20px;
  }

  /* --- Service Contents --- */
  .section-sv-contents {
    padding: 48px 0;
  }

  .sv-contents__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .sv-contents__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sv-contents__recommend {
    padding: 24px 20px;
  }

  .sv-contents__recommend-list li {
    font-size: 13px;
  }

  /* --- Service Strengths --- */
  .section-sv-strengths {
    padding: 48px 0;
  }

  .sv-strengths__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .sv-strengths__item {
    flex-direction: column;
    gap: 16px;
  }

  .sv-strengths__image {
    flex: none;
    width: 100%;
  }

  .sv-strengths__item-title {
    font-size: 16px;
  }

  .sv-strengths__item-text {
    font-size: 13px;
  }

  /* ============================================
     House Maker Page — SP
     ============================================ */

  /* --- Hero title --- */
  .hm-hero__title {
    font-size: 24px;
  }

  /* --- Matching --- */
  .section-hm-matching {
    padding: 48px 0 60px;
  }

  .hm-section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .hm-matching__desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .hm-matching__cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .hm-matching__card {
    width: 100%;
    max-width: 300px;
  }

  .hm-matching__card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 230 / 121.5;
  }

  .hm-matching__card-title {
    font-size: 16px;
  }

  .hm-matching__card-text {
    font-size: 13px;
  }

  /* --- Works --- */
  .section-hm-works {
    padding: 48px 0 60px;
  }

  .hm-works__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hm-instagram {
    padding: 20px;
  }

  .hm-instagram__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .hm-instagram__avatar {
    width: 60px;
    height: 60px;
  }

  .hm-instagram__name {
    font-size: 16px;
  }

  .hm-instagram__bio {
    font-size: 13px;
  }

  .hm-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .hm-instagram__actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hm-instagram__btn {
    font-size: 13px;
    padding: 8px 16px;
    width: 100%;
    justify-content: center;
  }

  /* --- Flow --- */
  .section-hm-flow {
    padding: 48px 0 60px;
  }

  .hm-flow__steps {
    margin-top: 28px;
  }

  .hm-flow__step {
    gap: 16px;
  }

  .hm-flow__step-circle {
    width: 44px;
    height: 44px;
  }

  .hm-flow__step-num {
    font-size: 16px;
  }

  .hm-flow__step:not(.hm-flow__step--last)::after {
    left: 22px;
    top: 44px;
  }

  .hm-flow__step-content {
    padding: 18px 20px;
  }

  .hm-flow__step-title {
    font-size: 16px;
  }

  .hm-flow__step-text {
    font-size: 13px;
  }

  /* --- FAQ --- */
  .section-hm-faq {
    padding: 48px 0 60px;
  }

  .hm-faq__list {
    margin-top: 28px;
  }

  .hm-faq__question {
    padding: 12px 16px;
    gap: 12px;
  }

  .hm-faq__q-mark {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .hm-faq__q-text {
    font-size: 15px;
  }

  .hm-faq__answer {
    padding-left: 58px;
    padding-right: 16px;
  }

  .hm-faq__a-text {
    font-size: 13px;
  }

  /* --- CTA --- */
  .section-hm-cta {
    padding: 48px 0;
  }

  .hm-cta__title {
    font-size: 20px;
  }

  .hm-cta__text {
    font-size: 13px;
    margin-bottom: 24px;
  }

  /* ============================================
     Contact Page — SP
     ============================================ */

  /* --- Methods --- */
  .section-ct-methods {
    padding: 48px 0 60px;
  }

  .ct-section-heading {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .ct-methods {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .ct-method-card {
    padding: 28px 20px 24px;
  }

  .ct-method-card__label {
    font-size: 16px;
  }

  .ct-method-card__desc {
    font-size: 11px;
  }

  /* --- Form --- */
  .section-ct-form {
    padding: 48px 0 60px;
  }

  .ct-form-wrapper {
    padding: 28px 20px 32px;
  }

  .ct-form {
    gap: 20px;
  }

  .ct-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ct-form-label {
    font-size: 13px;
  }

  .ct-form-input,
  .ct-form-select,
  .ct-form-textarea {
    font-size: 14px;
    padding: 10px 14px;
  }

  .ct-submit-btn {
    font-size: 14px;
    padding: 12px 40px;
  }

  /* ============================================
     Consulting Page — SP
     ============================================ */

  /* --- Overview --- */
  .section-iv-overview {
    padding: 48px 0 60px;
  }

  .iv-section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .iv-section-desc {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .iv-stat-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .iv-stat-number {
    font-size: 28px;
  }

  .iv-stat-label {
    font-size: 16px;
  }

  .iv-stat-desc {
    font-size: 13px;
  }

  /* --- Strengths --- */
  .section-iv-strengths {
    padding: 48px 0 60px;
  }

  .iv-strength-item,
  .iv-strength-item--reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .iv-strength-image {
    flex: none;
    width: 100%;
  }

  .iv-strength-name {
    font-size: 18px;
  }

  .iv-strength-text {
    font-size: 14px;
  }

  /* --- Flow --- */
  .section-iv-flow {
    padding: 48px 0 60px;
  }

  .iv-flow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .iv-flow-number {
    font-size: 24px;
  }

  .iv-flow-name {
    font-size: 17px;
  }

  .iv-flow-desc {
    font-size: 14px;
  }

  /* --- Simulation --- */
  .section-iv-simulation {
    padding: 48px 0 60px;
  }

  .iv-sim-card {
    padding: 24px 16px;
  }

  .iv-sim-card__title {
    font-size: 18px;
  }

  .iv-sim-columns {
    flex-direction: column;
    gap: 32px;
  }

  .iv-sim-table td {
    font-size: 13px;
  }

  .iv-sim-yield__value {
    font-size: 22px;
  }

  /* --- FAQ --- */
  .section-iv-faq {
    padding: 48px 0 60px;
  }

  .iv-faq-question {
    padding: 14px 16px;
  }

  .iv-faq-q-mark {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .iv-faq-q-text {
    font-size: 15px;
  }

  .iv-faq-answer {
    padding-left: 56px;
    padding-right: 16px;
  }

  .iv-faq-a-text {
    font-size: 13px;
  }

  /* --- CTA (共通 section-land-cta を使用) --- */

  /* ============================================
     未公開土地情報ページ SP (.ld-)
     ============================================ */

  /* --- About --- */
  .section-ld-about {
    padding: 48px 0 60px;
  }

  .ld-section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .ld-about__desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .ld-features {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
  }

  .ld-features__card {
    width: 100%;
  }

  .ld-features__card-img {
    width: calc(100% - 26px);
    height: auto;
    aspect-ratio: 230 / 121;
  }

  /* --- Listings --- */
  .section-ld-listings {
    padding: 48px 0 60px;
  }

  .ld-listings__note {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .ld-listings__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
  }

  /* --- LINE CTA --- */
  .section-ld-line-cta {
    padding: 48px 0;
  }

  .ld-line-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }

  .ld-line-cta__title {
    font-size: 24px;
    text-align: center;
  }

  .ld-line-cta__desc {
    text-align: center;
  }

  .ld-line-cta__checks {
    text-align: center;
  }

  .ld-line-cta__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ld-line-cta__right {
    width: 100%;
    max-width: 300px;
    padding: 20px 24px 16px;
  }

  .ld-line-cta__qr {
    width: 140px;
    height: 140px;
  }

  /* --- Mail CTA --- */
  .section-ld-mail-cta {
    padding: 48px 0;
  }

  .ld-mail-cta__title {
    font-size: 20px;
  }

  .ld-mail-cta__desc {
    font-size: 13px;
  }

}