@charset "UTF-8";
/* =========================================================
   Sass Settings
========================================================= */
/* Breakpoints */
/* Media Query */
/* =========================================================
   Design System (CSS Variables)
========================================================= */
:root {
  /* 画像（温かみのある春の窓辺）から抽出した配色 */
  --bg: #FDFAF6;               /* 温かみのあるオフホワイト */
  --bg-soft: #F5EFE6;          /* ベージュクリーム（ソファ・カーディガンの色） */
  --surface: #FFFFFF;

  --primary: #6B9E7A;          /* 春らしいセージグリーン（桜×青空の中間） */
  --primary-2: #3D6B52;        /* 深みのあるグリーン */
  --accent: #87BCCE;           /* スカイブルー（窓の空の色） */
  --accent-warm: #D4956A;      /* 木枠の温かみのあるテラコッタ */

  --text: #2C2018;             /* 温かみのある濃いブラウン */
  --text-muted: rgba(44,32,24,.65);
  --line: #06C755;
  --border: rgba(44,32,24,.09);
  --shadow: 0 12px 32px rgba(44,32,24,.07);

  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
}

/* =========================================================
   Base
========================================================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
}

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

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

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

/* =========================================================
   Layout
========================================================= */
.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-section {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 120px 0;
  }
}
.l-section--soft {
  background: var(--bg-soft);
}

/* =========================================================
   Header
========================================================= */
.l-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 250, 246, 0.94); /* --bg に合わせた温かみのある白 */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 149, 106, 0.12); /* テラコッタの薄いボーダー */
}

.l-header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo {
  font-size: 20px;
  font-weight: 800;
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

.l-header__link {
  font-weight: 700;
  color: var(--text-muted);
}
.l-header__link:hover {
  color: var(--text);
}

/* =========================================================
   Burger
========================================================= */
.c-burger {
  position: relative;
  z-index: 1000;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
}
@media screen and (min-width: 768px) {
  .c-burger {
    display: none;
  }
}
.c-burger span {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
}
.c-burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.c-burger span + span {
  margin-top: 6px;
}

/* =========================================================
   Drawer
========================================================= */
.c-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 200;
}
.c-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.c-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(86vw, 340px);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
  z-index: 300;
}
.c-drawer.is-open {
  right: 0;
}

.c-drawer__inner {
  padding: 86px 20px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.c-drawer__menu {
  display: grid;
  gap: 10px;
}
.c-drawer__menu a {
  display: block;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid var(--border);
}

.c-drawer__sns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

li a img {
  width: 40px;
  height: 40px;
}

body.is-fixed {
  overflow: hidden;
}

/* =========================================================
   Button
========================================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}
.c-btn:hover {
  transform: translateY(-1px);
}
.c-btn--line {
  background: var(--line);
  color: #fff;
  box-shadow: 0 14px 26px rgba(6, 199, 85, 0.25);
}
.c-btn--lg {
  padding: 18px 28px;
}
.c-btn--block {
  width: 100%;
}

/* =========================================================
   Grid & Card
========================================================= */
.c-badge {
  font-size: 26px;
  font-weight: 900;
}

.c-grid {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}
.c-card--border {
  box-shadow: none;
  border: 1px solid var(--border);
}

.reasons__image {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__title {
  font-size: 18px;
  margin-block: 12px;
  font-weight: 900;
  text-decoration-line: underline;
}

/* =========================================================
   Checklist
========================================================= */
.c-checklist {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.c-checklist li {
  background: var(--bg-soft);
  padding: 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  font-weight: 700;
  list-style: none;
}

/* =========================================================
   Tag Navigation (KATARiBA style)
========================================================= */
.c-tagNav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 40px;
}

.c-tagNav__item {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.c-tagNav__item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fdf4;
}

.c-tagNav__item--line {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fdf4;
}

.c-tagNav__item--line:hover {
  background: var(--primary);
  color: #fff;
}

/* =========================================================
   Service Card Grid (KATARiBA style)
========================================================= */
.p-services__grid {
  display: grid;
  gap: 28px;
}

@media screen and (min-width: 768px) {
  .p-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .p-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-serviceCard {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}

.c-serviceCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.c-serviceCard__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.c-serviceCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.c-serviceCard:hover .c-serviceCard__media img {
  transform: scale(1.04);
}

.c-serviceCard__overlay {
  position: absolute;
  top: 14px;
  left: 14px;
}

.c-serviceCard__category {
  display: inline-block;
  background: rgba(255,255,255,.92);
  color: var(--primary-2);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.c-serviceCard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-serviceCard__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.c-serviceCard__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.c-serviceCard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.c-serviceCard__tag {
  font-size: 12px;
  color: var(--primary-2);
  font-weight: 600;
}

.c-serviceCard__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-2);
  text-decoration: none;
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .2s, border-color .2s;
}

.c-serviceCard__link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* =========================================================
   Feature (legacy — kept for compatibility)
========================================================= */
.c-feature {
  display: grid;
  gap: 16px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-feature {
    grid-template-columns: 1.1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .c-feature--reverse {
    grid-template-columns: 1fr 1.1fr;
  }
  .c-feature--reverse .c-feature__media {
    order: 2;
  }
}

.c-feature__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-services__stack {
  display: grid;
  gap: 20px;
}

.c-feature__title {
  font-size: 24px;
  font-weight: 900;
}

/* =========================================================
   Steps
========================================================= */
.c-steps {
  display: grid;
  gap: 16px;
}

.c-step {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.c-step__num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(95, 132, 114, 0.14);
  font-weight: 900;
}

/* =========================================================
   Accordion
========================================================= */
.c-accordion {
  display: grid;
  gap: 12px;
}

.c-accordion details {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 14px 16px;
}

.c-accordion summary {
  font-weight: 800;
  cursor: pointer;
}

/* =========================================================
   FV
========================================================= */
.p-fv {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
}

.p-fv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-fv__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.p-fv__card {
  position: relative;
  z-index: 2;
  border-radius: var(--r-lg);
  padding-top: 67%;
  color: #fff;
}

.c-ctaRow__note {
  font-size: 13px;
}

.p-fv__title {
  font-size: clamp(25px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  margin: 12px 0;
}

.p-fv__lead {
  color: #fff;
}

/* =========================================================
   Final CTA
========================================================= */
.p-finalCta {
  background: var(--primary-2);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.p-finalCta__title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  margin-bottom: 14px;
}

.p-finalCta__text {
  margin-bottom: 14px;
}

/* ==========================================
   Voice Upgrade
========================================== */
/* ==========================================
   Voice – New Design
========================================== */
.p-voice {
  background: #F3EFF8;
}

.voice__subtitle {
  font-style: italic;
  font-size: 18px;
  color: #A89CC8;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 0;
  letter-spacing: 0.08em;
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.voice {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(100, 80, 160, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.voice:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(100, 80, 160, 0.12);
}

/* ===== アバター ===== */
.voice__avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #EDE8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A089C8;
  border: 3px solid #DDD5EF;
}

.voice__avatar svg {
  width: 52px;
  height: 52px;
}

/* ===== 本文エリア ===== */
.voice__body {
  flex: 1;
  min-width: 0;
}

.voice__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.voice__meta {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* ===== バッジ ===== */
.voice__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.voice__badge--green {
  background: #E8F2EB;
  color: #3D6B52;
}

.voice__badge--warm {
  background: #FAF0E6;
  color: #B06030;
}

.voice__badge--blue {
  background: #E6EFF8;
  color: #2E6090;
}

/* ===== 引用テキスト ===== */
.voice__highlight {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-2);
  line-height: 1.75;
  margin-bottom: 8px;
}

.voice__text {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

/* ===== モバイル ===== */
@media screen and (max-width: 600px) {
  .voice {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .voice__header {
    justify-content: center;
  }
}

.pricing__grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}

.pricing-card--free {
  border: 2px solid #06C755;
}

.pricing-card__price {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
}

.pricing-card__list {
  text-align: left;
  margin-top: 16px;
}

.pricing__lead {
  text-align: left;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.pricing__note {
  text-align: left;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.l-footer__copy {
  text-align: center;
}

.c-kicker {
  font-size: clamp(32px, 4vw, 44px);
}

.c-sectionTitle {
  font-size: clamp(24px, 4vw, 44px);
}

.sns-fixed {
  display: none;
}
@media screen and (min-width: 1280px) {
  .sns-fixed {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }
}

@media screen and (min-width: 1280px) {
  .sns-fixed a {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
}

@media screen and (min-width: 1280px) {
  .sns-fixed a:hover {
    transform: translateY(-4px);
  }
}

/* =========================================================
   Button Icon
========================================================= */
.c-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 8px;
}

/* =========================================================
   LINE Button – Pulse Animation
========================================================= */
.c-btn--line {
  position: relative;
}
.c-btn--line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.5);
  animation: linePulse 2.4s ease-out infinite;
}
@keyframes linePulse {
  0%   { box-shadow: 0 0 0 0   rgba(6,199,85,.45); }
  60%  { box-shadow: 0 0 0 12px rgba(6,199,85,0);  }
  100% { box-shadow: 0 0 0 0   rgba(6,199,85,0);   }
}

/* =========================================================
   Checklist Icon
========================================================= */
.c-checklist__icon {
  margin-right: 8px;
  font-size: 1.1em;
  flex-shrink: 0;
}
.c-checklist li {
  display: flex;
  align-items: center;
}

/* =========================================================
   Concept – Warm Gradient
========================================================= */
.p-concept {
  background: linear-gradient(160deg, #fdf8f0 0%, #f3ede1 100%);
}

/* =========================================================
   Note Box – Warmer
========================================================= */
.c-noteBox {
  background: linear-gradient(135deg, #fff8ec 0%, #fff3e0 100%);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.9;
}

/* =========================================================
   Sticky LINE Bar (Mobile only)
========================================================= */
.c-stickyLine {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 10px 16px 16px;
  background: linear-gradient(to top, rgba(255,255,255,1) 60%, rgba(255,255,255,0));
}
@media screen and (min-width: 768px) {
  .c-stickyLine {
    display: none;
  }
}

.c-stickyLine__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--line);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-stickyLine__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.5);
}

.c-stickyLine__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.c-stickyLine__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.c-stickyLine__main {
  font-size: 15px;
  font-weight: 800;
}

.c-stickyLine__sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.88;
}

/* スティッキーバー分の余白確保（mobile） */
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 80px;
  }
}

/* =========================================================
   FV Card – Warm Glass
========================================================= */
.p-fv__card {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =========================================================
   CTA Note – Spacing dots
========================================================= */
.c-ctaRow__note {
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.03em;
}

/* =========================================================
   Step Num – Accent color
========================================================= */
.c-step__num {
  color: var(--primary);
  font-size: 16px;
}

/* =========================================================
   Header – Updated
========================================================= */
.l-header__logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-2);
}
.l-header__logoIcon {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.c-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.c-btn--primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

/* =========================================================
   FV – Fullbleed photo with warm overlay
========================================================= */
.p-fv {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 背景画像 */
.p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* オーバーレイ：右から左へフェード（テキストを読みやすく、画像の人物は右側に活きる） */
.p-fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(44, 32, 18, 0.62) 0%,
    rgba(44, 32, 18, 0.40) 50%,
    rgba(44, 32, 18, 0.08) 100%
  );
}

/* コンテンツ */
.p-fv .l-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.p-fv__inner {
  display: grid;
  gap: 0;
  padding: 100px 0 80px;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    grid-template-columns: 1fr 1fr;
    padding: 120px 0 100px;
  }
}

.p-fv__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-fv__badge {
  display: inline-block;
  background: rgba(135, 188, 206, 0.25);
  color: #D8EEF5;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(135, 188, 206, 0.4);
  width: fit-content;
}

.p-fv__title {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.p-fv__title--accent {
  color: #A8D4BD; /* 画像の緑と調和する薄いセージ */
}

.p-fv__lead {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
}

.p-fv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.p-fv__note {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

/* 白枠のゴーストボタン（FV用） */
.c-btn--ghost-light {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  background: transparent;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.c-btn--ghost-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* 旧スタイル非表示 */
.p-fv__media { display: none; }
.p-fv__card { all: unset; }
.p-fv__scroll { display: none; }
.p-fv__visual { display: none; }
.p-fv__visualCard { display: none; }

/* =========================================================
   Section Title – Centered variant
========================================================= */
.c-sectionTitle--center {
  text-align: center;
}

/* =========================================================
   Worry Cards (Empathy section)
========================================================= */
.p-empathy {
  background: #fff;
}

.p-empathy__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}
@media screen and (min-width: 600px) {
  .p-empathy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .p-empathy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-worryCard {
  background: #f8fbf8;
  border: 1px solid rgba(95,132,114,.15);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.c-worryCard:hover {
  box-shadow: 0 8px 24px rgba(95,132,114,.12);
  transform: translateY(-2px);
}

.c-worryCard__icon {
  width: 48px;
  height: 48px;
  background: rgba(95,132,114,.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.c-worryCard__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.c-worryCard__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.c-worryCard__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.c-worryCard--note {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.c-worryCard__noteText {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: #fff;
}

/* =========================================================
   Reason Cards
========================================================= */
.p-reasons__grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-reasonCard {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.c-reasonCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.09);
}

.c-reasonCard__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.c-reasonCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.c-reasonCard:hover .c-reasonCard__media img {
  transform: scale(1.04);
}

.c-reasonCard__num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
}

.c-reasonCard__body {
  padding: 20px;
}

.c-reasonCard__title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.c-reasonCard__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================================
   Services – Alternating layout (Pinterest style)
========================================================= */
.p-services__alt {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 64px;
}

.p-services__altItem {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-services__altItem {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .p-services__altItem--rev .p-services__altMedia {
    order: 2;
  }
  .p-services__altItem--rev .p-services__altBody {
    order: 1;
  }
}

.p-services__altMedia {
  position: relative;
}
.p-services__altMedia img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.p-services__altNum {
  position: absolute;
  bottom: -24px;
  left: -16px;
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 900;
  color: var(--primary);
  opacity: .18;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .p-services__altItem--rev .p-services__altNum {
    left: auto;
    right: -16px;
  }
}

.p-services__altBody {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-services__altTitle {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text);
}

.p-services__altText {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}

.p-services__altLink {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px;
  width: fit-content;
  text-decoration: none;
  transition: opacity .2s;
}
.p-services__altLink:hover { opacity: .7; }

/* =========================================================
   Icon Service Grid (legacy)
========================================================= */
.p-services__iconGrid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}
@media screen and (min-width: 600px) {
  .p-services__iconGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-iconService {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.c-iconService:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.p-services__iconGrid--3 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-services__iconGrid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-iconService__num {
  font-size: 12px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .08em;
}

.c-iconService__icon {
  width: 52px;
  height: 52px;
  background: rgba(95,132,114,.12);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.c-iconService__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.c-iconService__title {
  font-size: 17px;
  font-weight: 800;
}

.c-iconService__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================================
   Footer – Dark Multi-Column
========================================================= */
.l-footer {
  background: #1a2b24;
  color: rgba(255,255,255,.8);
  padding: 64px 0 0 !important;
}

.l-footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media screen and (min-width: 768px) {
  .l-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.l-footer__logoIcon {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.l-footer__desc {
  font-size: 13px;
  line-height: 1.8;
  opacity: .7;
  margin-bottom: 20px;
}

.l-footer__sns {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__sns a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background .2s;
}
.l-footer__sns a:hover { background: var(--primary); }
.l-footer__sns img { width: 18px; height: 18px; filter: invert(1) brightness(2); }

.l-footer__navTitle {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.l-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__nav a {
  font-size: 13px;
  opacity: .7;
  transition: opacity .2s;
}
.l-footer__nav a:hover { opacity: 1; color: #fff; }

.l-footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.l-footer__copy {
  font-size: 12px;
  opacity: .5;
}

/*# sourceMappingURL=style.css.map */