/* ============================================================
   Design Tokens
============================================================ */
:root {
  --ivory: #faf7f1;
  --stone: #f0e8dd;
  --stone-dark: #d7c8b6;
  --navy: #27343a;
  --navy-mid: #3f5f66;
  --rust: #a66a3f;
  --rust-light: #f3e6da;
  --ink: #20201e;
  --ink-mid: #4d4842;
  --ink-light: #7b7168;
  --border: #d9cdbd;
  --white: #ffffff;
  --line-green: #2f6f4e;
  --line-dark: #25583e;
  --line-official: #06c755;
  --line-official-dark: #05a647;

  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;

  --sp-xs: 0.625rem;
  --sp-sm: 1.15rem;
  --sp-md: 1.75rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;
  --sp-2xl: 7.5rem;

  --max-w: 1120px;
  --px: clamp(1.4rem, 4vw, 3rem);
  --section-py: clamp(5.5rem, 9vw, 7.5rem);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;

  --sh-sm: 0 1px 8px rgba(39, 52, 58, 0.08);
  --sh-md: 0 8px 28px rgba(39, 52, 58, 0.1);
  --sh-lg: 0 16px 48px rgba(39, 52, 58, 0.14);

  --ease: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 175%;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
address {
  font-style: normal;
}

/* ============================================================
   Utility
============================================================ */
.sp-hide {
  display: none;
}
@media (min-width: 768px) {
  .sp-hide {
    display: inline;
  }
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--ease),
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.btn--line {
  background: var(--line-official);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.26);
}
.btn--line:hover {
  background: var(--line-official-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn--line svg {
  flex-shrink: 0;
}

.btn--ghost {
  background: transparent;
  color: var(--navy-mid);
  border-color: var(--navy-mid);
}
.btn--ghost:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1.08rem 2.2rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .btn {
    font-size: 1rem;
  }
  .btn--sm {
    font-size: 1rem;
  }
}

/* CTAボタン直上のマイクロコピー（安心フレーズ） */
.cta-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--line-green);
  animation: cta-microcopy-bounce 2.2s ease-in-out infinite;
}
.cta-microcopy--light {
  color: var(--white);
  opacity: 0.92;
}
@keyframes cta-microcopy-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-microcopy {
    animation: none;
  }
}
@media (min-width: 768px) {
  .cta-microcopy {
    font-size: 1rem;
  }
}

/* ============================================================
   Section共通
============================================================ */
.section-wrap {
  padding: var(--section-py) var(--px);
}
.section-wrap--dark {
  background: var(--navy);
}
.section-wrap--stone {
  background: var(--stone);
}

.section-header {
  position: relative;
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-header::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 1.25rem auto 0;
  background: var(--border);
}

.section-eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .section-eyebrow {
    font-size: 1rem;
  }
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 0.5rem;
  opacity: 0.5;
}
.section-eyebrow--light {
  color: var(--rust);
}

.section-title {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy-mid);
  font-feature-settings: "palt" 1;
  letter-spacing: 0;
}
.section-title--light {
  color: var(--white);
}

.section-lead {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--ink-light);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .section-lead {
    font-size: 1rem;
  }
}

.section-cta {
  text-align: center;
  margin-top: var(--sp-xl);
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.header--scrolled {
  box-shadow: var(--sh-md);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--px);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__logo {
  display: flex;
  align-items: center;
  width: 160px;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-badge {
  background: var(--rust);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.header__logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-mid);
  letter-spacing: 0;
}

.header__nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 900px) {
  .header__nav {
    display: block;
  }
  .header__nav ul {
    display: flex;
    gap: 1.75rem;
  }
  .header__nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-mid);
    transition: color var(--ease);
  }
  .header__nav a:hover {
    color: var(--navy-mid);
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
@media (min-width: 900px) {
  .header__actions {
    margin-left: 0;
    padding-left: 1.25rem;
    border-left: 1px solid var(--border);
    gap: 1rem;
  }
}

.header__tel {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-mid);
  transition: color var(--ease);
  white-space: nowrap;
}
.header__tel:hover {
  color: var(--rust);
}
.header__tel svg {
  color: var(--rust);
}
@media (min-width: 640px) {
  .header__tel {
    display: flex;
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(39, 52, 58, 0.92) 0%,
      rgba(63, 95, 102, 0.72) 46%,
      rgba(47, 111, 78, 0.24) 100%
    ),
    linear-gradient(
      180deg,
      rgba(39, 52, 58, 0.08) 0%,
      rgba(39, 52, 58, 0.68) 100%
    );
  z-index: 1;
}

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

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 78%;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  padding: calc(var(--sp-xl) + 4rem) var(--px) calc(var(--sp-xl) + 1rem);
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--stone-dark);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--stone-dark);
  border-radius: 1px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(166, 106, 63, 0.22);
  border: 1px solid rgba(166, 106, 63, 0.42);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}
.hero__badge svg {
  flex-shrink: 0;
}

.hero__title {
  max-width: 760px;
  font-size: clamp(2.35rem, 7vw, 4.45rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--white);
  font-feature-settings: "palt" 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.32);
}
.hero__title-em {
  font-style: normal;
  color: var(--ivory);
  text-decoration: underline;
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.12em;
  text-decoration-color: rgba(245, 239, 230, 0.42);
}

.hero__catch {
  max-width: 660px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.hero__trust li svg {
  color: var(--line-green);
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 480px) {
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero__proof {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
  max-width: 740px;
}
.hero__proof div {
  padding: 1.25rem;
  background: rgb(255 255 255 / 16%);
  border: 1px solid rgb(255 255 255 / 24%);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
.hero__proof span {
  display: block;
  font-size: 1.16rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.hero__proof p {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
@media (min-width: 640px) {
  .hero__proof {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .hero__eyebrow,
  .hero__badge,
  .hero__trust li,
  .hero__proof p {
    font-size: 1rem;
  }
}



/* ============================================================
   SYMPTOM — Interest rail
============================================================ */
.symptom {
  padding: var(--sp-xl) var(--px);
  background: var(--stone);
}

.symptom__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.symptom__intro {
  display: grid;
  gap: 19px 3rem;
  margin-bottom: var(--sp-lg);
}
@media (min-width: 820px) {
  .symptom__intro {
    grid-template-columns: minmax(0, 19fr) minmax(0, 21fr);
    align-items: end;
  }
  .symptom__intro .section-eyebrow {
    grid-column: 1 / -1;
  }
}

.symptom__title {
  color: var(--navy);
  font-size: clamp(27px, 4vw, 43px);
  font-weight: 900;
  line-height: 132%;
  font-feature-settings: "palt" 1;
}

.symptom__lead {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .symptom__lead {
    font-size: 16px;
  }
}

.symptom__rail {
  display: grid;
  gap: 1rem;
}
@media (min-width: 680px) {
  .symptom__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.symptom-card {
  position: relative;
  display: grid;
  min-height: 21rem;
  align-content: end;
  overflow: hidden;
  border-radius: var(--r-md);
  padding: 20px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--sh-sm);
  isolation: isolate;
  transition: transform var(--ease), box-shadow var(--ease);
}
.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.symptom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(39 52 58 / 4%) 0%, rgb(39 52 58 / 30%) 38%, rgb(39 52 58 / 92%) 100%);
}
.symptom-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}
.symptom-card:hover img {
  transform: scale(104%);
}
.symptom-card__label {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgb(255 255 255 / 16%);
  border: 1px solid rgb(255 255 255 / 22%);
  font-size: 14px;
  font-weight: 900;
}
.symptom-card h3 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 145%;
  font-weight: 900;
}
.symptom-card p {
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  line-height: 175%;
}
@media (min-width: 768px) {
  .symptom-card__label,
  .symptom-card p {
    font-size: 16px;
  }
}


/* ============================================================
   EMOTION — Visual worry cards
============================================================ */
.emotion {
  background: var(--ivory);
  padding: calc(var(--section-py) + 1.5rem) var(--px);
}

.emotion__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.emotion__heading {
  display: grid;
  gap: 1.3rem 3.25rem;
  margin-bottom: var(--sp-xl);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .emotion__heading {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .emotion__heading .section-eyebrow {
    grid-column: 1 / -1;
  }
}

.emotion__title {
  font-size: clamp(1.8rem, 4.8vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy-mid);
  font-feature-settings: "palt" 1;
  letter-spacing: 0;
}
.emotion__title span {
  color: var(--rust);
}

.emotion__lead {
  font-size: 0.98rem;
  color: var(--ink-mid);
  line-height: 1.9;
  max-width: 32rem;
}
@media (min-width: 768px) {
  .emotion__lead {
    font-size: 1rem;
  }
}

.emotion__cards {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 720px) {
  .emotion__cards {
    grid-template-columns: 23fr 19fr 19fr;
    align-items: stretch;
  }
  .emotion-card:first-child {
    min-height: 28rem;
  }
}

.emotion-card {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--navy);
  box-shadow: var(--sh-md);
  border: 1px solid rgba(39, 52, 58, 0.12);
}

.emotion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(39, 52, 58, 0.08) 0%,
    rgba(39, 52, 58, 0.24) 36%,
    rgba(39, 52, 58, 0.9) 100%
  );
}

.emotion-card img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.emotion-card:hover img {
  transform: scale(104%);
}

.emotion-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.75rem;
  color: var(--white);
}

.emotion-card__body span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.14);
  color: var(--ivory);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.emotion-card__body h3 {
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 145%;
  margin-bottom: 0.45rem;
}

.emotion-card__body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 175%;
}
@media (min-width: 768px) {
  .emotion-card__body span,
  .emotion-card__body p {
    font-size: 1rem;
  }
}

/* ============================================================
   WORRY — Dark editorial list
============================================================ */
.worry {
  background: var(--navy);
  padding: var(--section-py) var(--px);
}

.worry__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--sp-2xl);
}
@media (min-width: 900px) {
  .worry__inner {
    grid-template-columns: 2fr 3fr;
    align-items: start;
    gap: var(--sp-2xl);
  }
  .worry__heading {
    position: sticky;
    top: 5rem;
  }
}

.worry__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  font-feature-settings: "palt" 1;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.worry__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .worry__subtitle {
    font-size: 1rem;
  }
}

.worry__list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.worry__list li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    padding-left var(--ease),
    border-bottom-color var(--ease);
}
.worry__list li:hover {
  padding-left: 0.5rem;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.worry__num {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--rust);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .worry__num {
    font-size: 1rem;
  }
}

.worry__text {
  font-size: 1.02rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.worry__list--compact li {
  padding-inline: 0.85rem;
  border-radius: var(--r-sm);
}
.worry__list--compact li:hover {
  background: rgba(255, 255, 255, 0.05);
}

.worry__cta {
  max-width: var(--max-w);
  margin: var(--sp-xl) auto 0;
  text-align: center;
  padding: clamp(1.5rem, 5vw, var(--sp-xl));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
}
.worry__cta p {
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}
.worry__cta .btn {
  max-width: 100%;
}
@media (min-width: 768px) {
  .worry__cta p {
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .worry__cta {
    margin-top: var(--sp-lg);
    padding: 1.5rem 1rem;
    border-radius: var(--r-md);
  }
  .worry__cta p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-align: left;
  }
  .worry__cta .btn {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    white-space: normal;
    line-height: 1.45;
  }
}

/* ============================================================
   CHAT PREVIEW — LINE風やり取りモックアップ
============================================================ */
.chat-preview {
  background: var(--stone);
}
.chat-preview__inner {
  max-width: 640px;
  margin: 0 auto;
}
.chat-preview__phone {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #e6ede3;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(63, 95, 102, 0.14);
}
.chat-preview__bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  background: var(--line-official);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}
.chat-preview__bar-icon {
  display: inline-flex;
  flex-shrink: 0;
}
.chat-preview__bar-note {
  margin-left: auto;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.875rem;
  font-weight: 700;
}
.chat-preview__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.15rem;
}
.chat-bubble {
  position: relative;
  max-width: 78%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(39, 52, 58, 0.08);
}
.chat-bubble__photo {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
  margin-bottom: 0.6rem;
}
.chat-bubble__time {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--ink-light);
  opacity: 0.75;
}
.chat-bubble--user {
  align-self: flex-end;
  background: #b7ecae;
  border-bottom-right-radius: 4px;
}
.chat-bubble--staff {
  align-self: flex-start;
  background: var(--white);
  border-bottom-left-radius: 4px;
}
.chat-preview__note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--line-green);
}
.chat-preview__note span {
  opacity: 0.5;
}
@media (max-width: 480px) {
  .chat-bubble {
    max-width: 88%;
  }
}
@media (min-width: 768px) {
  .chat-preview__bar,
  .chat-preview__bar-note,
  .chat-bubble,
  .chat-bubble__time,
  .chat-preview__note {
    font-size: 1rem;
  }
}

/* ============================================================
   RISK — Large numbered editorial
============================================================ */
.risk__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.risk__list {
  margin-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}

.risk__item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem 2rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
@media (min-width: 768px) {
  .risk__item {
    grid-template-columns: 4.5rem 1fr;
  }
}

.risk__num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--stone-dark);
  line-height: 1;
  padding-top: 0.25rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .risk__num {
    font-size: 2.5rem;
  }
}

.risk__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.risk__text {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .risk__text {
    font-size: 1rem;
  }
}

/* ============================================================
   INSPECT — On-site inspection
============================================================ */
.inspect__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--sp-2xl);
}
@media (min-width: 900px) {
  .inspect__inner {
    grid-template-columns: minmax(18rem, 4fr) minmax(0, 6fr);
    align-items: center;
    gap: var(--sp-2xl);
  }
  .inspect__statement {
    position: sticky;
    top: 5rem;
  }
}

.inspect__heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  font-feature-settings: "palt" 1;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.inspect__lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .inspect__lead {
    font-size: 1rem;
  }
}

.inspect__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.inspect__tags li {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 16%);
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  font-weight: 800;
}

.inspect__credential {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(166, 106, 63, 0.14);
  border: 1px solid rgba(166, 106, 63, 0.32);
  border-radius: var(--r-md);
  padding: 1.25rem 1.45rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.inspect__credential svg {
  color: var(--stone-dark);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.inspect__credential strong {
  color: var(--white);
}

.inspect__second-opinion {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  padding: 1.25rem 1.45rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.inspect__second-opinion svg {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.inspect__second-opinion strong {
  color: var(--white);
}
@media (min-width: 768px) {
  .inspect__tags li,
  .inspect__credential,
  .inspect__second-opinion {
    font-size: 1rem;
  }
}

.inspect__panel {
  display: grid;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgb(255 255 255 / 20%);
  box-shadow: 0 24px 60px rgb(0 0 0 / 18%);
}
@media (min-width: 720px) {
  .inspect__panel {
    grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  }
}

.inspect__photo {
  position: relative;
  min-height: 18rem;
  background: var(--navy-mid);
}
.inspect__photo > img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  opacity: 92%;
}
.inspect__inspector {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  border-radius: var(--r-md);
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--sh-sm);
}
.inspect__inspector img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
  flex-shrink: 0;
}
.inspect__inspector p {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-mid);
}
@media (min-width: 768px) {
  .inspect__inspector p {
    font-size: 1rem;
  }
}

.inspect__photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: var(--r-sm);
  background: rgb(19 38 42 / 82%);
  color: rgb(255 255 255 / 86%);
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .inspect__photo figcaption {
    font-size: 16px;
  }
}

.inspect__notes {
  padding: clamp(1rem, 3vw, 2rem);
}

.inspect__notes-title {
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--stone-dark);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 145%;
}

.inspect__notes ul {
  display: grid;
  gap: 0;
}

.inspect__notes li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 420px) {
  .inspect__notes li {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

.inspect__notes span {
  width: fit-content;
  height: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--rust-light);
  color: var(--rust);
  font-size: 14px;
  font-weight: 900;
}

.inspect__notes p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 180%;
}
@media (min-width: 768px) {
  .inspect__notes span,
  .inspect__notes p {
    font-size: 16px;
  }
}

/* ============================================================
   REASON — Open list
============================================================ */
.reason__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.reason__list {
  margin-top: var(--sp-xl);
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .reason__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.reason__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: transparent;
  align-items: flex-start;
}

.reason__item:last-child {
  border-bottom: 1px solid var(--border);
}

.reason__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.reason__content h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy-mid);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.reason__content p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .reason__content p {
    font-size: 1rem;
  }
}

/* ============================================================
   SERVICE
============================================================ */
.service__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.service__grid {
  display: grid;
  gap: 1.65rem;
  margin-top: var(--sp-xl);
}
@media (min-width: 640px) {
  .service__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition:
    box-shadow var(--ease),
    transform var(--ease);
}
.service-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.service-card__fig {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__fig img {
  transform: scale(104%);
}

.service-card__body {
  padding: 1.9rem;
}

.service-card__title {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .service-card__text {
    font-size: 1rem;
  }
}

/* フィーチャーカード（陸屋根） */
.service-card--feature {
  display: grid;
  margin: 1.75rem 0;
  position: relative;
}
@media (min-width: 640px) {
  .service-card--feature {
    grid-template-columns: 6fr 5fr;
  }
  .service-card--feature .service-card__fig {
    aspect-ratio: auto;
  }
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 1;
}
@media (min-width: 768px) {
  .service-card__badge {
    font-size: 1rem;
  }
}

.service-card--feature .service-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.service-card__tags li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-mid);
  background: var(--stone);
  padding: 5px 10px;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .service-card__tags li {
    font-size: 1rem;
  }
}

.service__sub {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 640px) {
  .service__sub {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-sub-card {
  background: var(--white);
  padding: 2.15rem;
  transition: background var(--ease);
}
.service-sub-card:hover {
  background: var(--ivory);
}

.service-sub-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
}

.service-sub-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .service-sub-card p {
    font-size: 1rem;
  }
}

/* ============================================================
   FLOW
============================================================ */
.flow__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.flow__steps {
  margin-top: var(--sp-xl);
  display: grid;
  gap: 1.65rem;
}
@media (min-width: 768px) {
  .flow__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flow__step {
  padding: 1.6rem 0 1.8rem;
  background: transparent;
  border-top: 1px solid var(--border);
}

.flow__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.flow__step h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy-mid);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.flow__step p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.8;
}

.flow__notice {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.9;
}
@media (min-width: 768px) {
  .flow__step-num,
  .flow__step p,
  .flow__notice {
    font-size: 1rem;
  }
}

/* ============================================================
   VOICE
============================================================ */
.voice {
  background: var(--white);
}

.voice__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--sp-xl);
}
@media (min-width: 860px) {
  .voice__inner {
    grid-template-columns: 2fr 3fr;
    align-items: center;
  }
}

.voice__summary {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--stone) 100%);
  border: 1px solid rgba(63, 95, 102, 0.16);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.voice__summary-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-mid);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .voice__summary-label {
    font-size: 1rem;
  }
}

.voice__summary-label::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--line-green);
}

.voice__summary-mark {
  display: none;
}

.voice__summary-text {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.85;
  color: var(--navy);
}

.voice__summary-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.voice__summary-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-mid);
}
@media (min-width: 768px) {
  .voice__summary-list li {
    font-size: 1rem;
  }
}

.voice__summary-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--line-green);
  flex-shrink: 0;
}

.voice__header {
  text-align: left;
  margin-bottom: 2rem;
}
.voice__header .section-lead {
  margin-inline: 0;
}

.voice__list {
  display: grid;
  gap: 1.1rem;
}

.voice-card {
  position: relative;
  padding: 1.45rem 1.65rem;
  border-left: 5px solid var(--line-green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--ivory);
  box-shadow: var(--sh-sm);
}


.voice-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}

.voice-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(47, 111, 78, 0.12);
  color: var(--line-green);
}

.voice-card__type {
  color: var(--navy-mid);
  font-size: 0.875rem;
  font-weight: 900;
}

.voice-card__stars {
  margin-left: auto;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: #dba434;
}

.voice-card__area {
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-light);
  font-size: 0.875rem;
  font-weight: 700;
}

.voice-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink-mid);
}
@media (min-width: 768px) {
  .voice-card__type,
  .voice-card__stars,
  .voice-card__area,
  .voice-card p {
    font-size: 1rem;
  }
}


/* ============================================================
   FAQ
============================================================ */
.faq-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq {
  margin-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-align: left;
  transition: color var(--ease);
}
.faq__q:hover {
  color: var(--rust);
}
.faq__q[aria-expanded="true"] {
  color: var(--rust);
}
.faq__q:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--rust);
  transition: transform 0.25s ease;
}
.faq__q[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 0 1.55rem;
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.85;
}
@media (min-width: 768px) {
  .faq__q,
  .faq__a {
    font-size: 1rem;
  }
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  background:
    linear-gradient(
      135deg,
      rgba(39, 52, 58, 0.96) 0%,
      rgba(63, 95, 102, 0.88) 100%
    ),
    url("../images/flat-roof-waterproofing-completed.jpg") center/cover
      no-repeat;
  padding: var(--section-py) var(--px);
  text-align: center;
}

.final-cta__inner {
  max-width: 740px;
  margin: 0 auto;
}

.final-cta__eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-dark);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .final-cta__eyebrow {
    font-size: 1rem;
  }
}

.final-cta__title {
  font-size: clamp(1.75rem, 4.8vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  font-feature-settings: "palt" 1;
}

.final-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.final-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.75rem;
  margin-bottom: 3rem;
}
.final-cta__trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}
@media (min-width: 768px) {
  .final-cta__trust li {
    font-size: 1rem;
  }
}
.final-cta__trust svg {
  color: var(--line-green);
}

.final-cta__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) {
  .final-cta__btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ============================================================
   COMPANY
============================================================ */
.company__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.company__wrap {
  display: grid;
  gap: 2rem;
  margin-top: var(--sp-xl);
}
@media (min-width: 768px) {
  .company__wrap {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 2rem;
  }
}

.company__map {
  min-height: 23rem;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  background: var(--stone);
}

.company__map iframe {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  display: block;
  border: 0;
}

@media (min-width: 768px) {
  .company__map {
    height: 100%;
    min-height: 0;
  }
  .company__map iframe {
    min-height: 0;
  }
}

.company__table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .company__table {
    font-size: 1rem;
  }
}
.company__table tr {
  border-bottom: 1px solid var(--border);
}
.company__table tr:first-child {
  border-top: 1px solid var(--border);
}
.company__table th {
  padding: 1.2rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--navy-mid);
  white-space: nowrap;
  width: 7rem;
  vertical-align: top;
  background: var(--stone);
}
.company__table td {
  padding: 1.2rem 1rem;
  color: var(--ink-mid);
  vertical-align: top;
  line-height: 1.7;
}
.company__table a {
  color: var(--navy-mid);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  padding: var(--sp-xl) var(--px) var(--sp-lg);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  gap: 2rem 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: minmax(16rem, 9fr) minmax(18rem, 11fr);
    align-items: center;
  }
}

.footer__company {
  display: grid;
  gap: 1rem;
}

.footer__brand a {
  display: inline-flex;
  width: min(12rem, 70vw);
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  align-items: center;
  box-shadow: 0 16px 34px rgb(0 0 0 / 16%);
}

.footer__brand img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__address {
  font-size: 14px;
  color: rgb(255 255 255 / 52%);
  line-height: 190%;
  font-style: normal;
}
@media (min-width: 768px) {
  .footer__address {
    font-size: 16px;
  }
}
.footer__address a {
  color: rgb(255 255 255 / 72%);
  font-weight: 600;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 22px;
}
@media (min-width: 640px) {
  .footer__nav {
    justify-content: flex-end;
  }
}
.footer__nav a {
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
  line-height: 160%;
  transition: color var(--ease);
}
@media (min-width: 768px) {
  .footer__nav a {
    font-size: 16px;
  }
}
.footer__nav a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 12px;
  color: rgb(255 255 255 / 28%);
  text-align: left;
}
@media (min-width: 640px) {
  .footer__copy {
    text-align: right;
  }
}

/* ============================================================
   固定LINE CTA（スマホ専用）
============================================================ */
.line-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
}

.line-bar__badge {
  position: absolute;
  top: -1.55rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--sh-sm);
}
.line-bar__badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: var(--navy);
  transform: translateX(-50%) rotate(45deg);
}

.line-bar__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--line-official);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.95rem 1rem;
  transition: background var(--ease);
}
.line-bar__line:hover {
  background: var(--line-official-dark);
}
.line-bar__line svg {
  flex-shrink: 0;
}

.line-bar__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.95rem 1.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  transition: background var(--ease);
}
.line-bar__tel:hover {
  background: var(--navy);
}

@media (min-width: 768px) {
  .line-bar {
    display: none;
  }
}
@media (max-width: 767px) {
  body {
    padding-bottom: 3.75rem;
  }
}

/* ============================================================
   GSAP アニメーション初期状態
============================================================ */
.js-fade-up {
  opacity: 0;
  transform: translateY(28px);
}
.js-fade-in {
  opacity: 0;
}
.js-stagger > * {
  opacity: 0;
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-up,
  .js-fade-in,
  .js-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
