/* =========================================================
   WALL REVIVE - One-page LP Styles
   ========================================================= */

/* ----- PC/SP helpers ----- */
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 680px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: 80px 0 60px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 12% 8%, rgba(110,193,228,.32), transparent 60%),
    radial-gradient(700px 500px at 88% 90%, rgba(217,181,102,.18), transparent 60%),
    linear-gradient(155deg, #06192e 0%, #0a2540 45%, #103862 100%);
}
.hero__water {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.07) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,.05) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.06) 0 1px, transparent 2px);
  background-size: 80px 80px, 110px 110px, 60px 60px;
  opacity: .8;
  animation: drift 24s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0, 0 0, 0 0; }
  to   { background-position: 80px 80px, -110px 60px, 60px -60px; }
}
.hero__shine {
  position: absolute; inset: -20%;
  background: conic-gradient(from 220deg at 80% 20%, transparent, rgba(217,181,102,.18), transparent 40%);
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
}

.hero__tate {
  position: absolute; right: 28px; top: 20%;
  writing-mode: vertical-rl;
  font-family: var(--font-serif); font-weight: 500;
  letter-spacing: .6em;
  color: rgba(255,255,255,.18);
  font-size: 13px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero__copy .eyebrow { color: var(--gold-500); }
.hero__copy .eyebrow::before, .hero__copy .eyebrow::after { background: var(--gold-500); }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.32;
  letter-spacing: .04em;
  margin-top: 22px;
}
.hero__title-line { display: block; }
.hero__title-accent {
  position: relative;
  color: var(--gold-500);
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title-accent::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 6px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  opacity: .6;
}

.hero__lead {
  margin-top: 28px;
  color: rgba(255,255,255,.86);
  font-size: 16px; line-height: 2;
}
.hero__lead em {
  font-style: normal; color: var(--gold-500); font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(217,181,102,.25) 60%);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__points {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px;
  color: rgba(255,255,255,.86);
}
.hero__points li { display: flex; align-items: center; gap: 10px; }
.hero__points li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--gold-500); color: var(--gold-500);
  font-family: var(--font-en); font-style: italic; font-size: 13px;
}

.hero__visual { position: relative; perspective: 1200px; }
.hero__visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 80px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-1deg);
  background: var(--navy-800);
}
.hero__visual-before, .hero__visual-after {
  position: relative;
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden;
}
.hero__visual-before img, .hero__visual-after img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-after {
  border-top: 2px solid var(--gold-500);
  filter: saturate(1.1) contrast(1.05);
}
.hero__visual-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(6,19,46,.78); color: var(--white);
  font-family: var(--font-en); font-style: italic; letter-spacing: .2em;
  padding: 6px 14px; border-radius: 999px; font-size: 12px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero__visual-tag.is-gold { background: var(--gold-600); border-color: var(--gold-500); }
.hero__visual-deco {
  position: absolute; left: -24px; top: -24px; width: 70px; height: 70px;
  border: 1px solid var(--gold-500); border-radius: 50%; opacity: .6;
}
.hero__visual-deco::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 70px; height: 70px;
  border: 1px solid var(--gold-500); border-radius: 50%; opacity: .35;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: inline-flex; align-items: center; flex-direction: column; gap: 12px;
  color: rgba(255,255,255,.7);
}
.hero__scroll .font-en { font-size: 11px; letter-spacing: .34em; }
.hero__scroll-line {
  width: 1px; height: 56px; background: linear-gradient(180deg, transparent, var(--gold-500));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -50%; } 100% { top: 150%; } }

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 70px 0 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__tate { display: none; }
  .hero__visual-frame { transform: none; }
  .hero__scroll { display: none; }
}
@media (max-width: 560px) {
  .hero__lead br { display: none; }
  .hero__points { gap: 14px; }
  .hero__points li { width: calc(50% - 7px); font-size: 12.5px; }
}

/* =========================================================
   Badge Strip
   ========================================================= */
.badge-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative; z-index: 1; margin-top: -1px;
}
.badge-strip__list { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 30px; }
.badge-strip__list li {
  display: flex; align-items: center; gap: 18px;
  padding: 10px 0;
  border-right: 1px solid var(--line-soft);
  padding-right: 30px;
}
.badge-strip__list li:last-child { border-right: 0; }
.badge-strip__en {
  font-family: var(--font-en); font-style: italic;
  font-size: 38px; color: var(--gold-600); line-height: 1; letter-spacing: .02em;
}
.badge-strip__en small { font-size: 14px; margin-left: 2px; color: var(--navy-800); }
.badge-strip__en--multi {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: .08em;
  color: var(--navy-800);
}
.badge-strip__ja { font-size: 13px; color: var(--navy-800); font-weight: 600; line-height: 1.6; }
@media (max-width: 860px) {
  .badge-strip__list { grid-template-columns: 1fr 1fr; gap: 18px; }
  .badge-strip__list li { padding-right: 0; border-right: 0; border-bottom: 1px dashed var(--line-soft); padding-bottom: 14px; }
  .badge-strip__list li:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}

/* =========================================================
   Worries
   ========================================================= */
.worries__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.worries__item {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid rgba(15,56,98,.06);
}
.worries__item::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--sky-400));
  opacity: 0; transition: opacity .35s var(--ease);
}
.worries__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.worries__item:hover::before { opacity: 1; }
.worries__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sky-100); color: var(--blue-600);
  border-radius: 14px; margin-bottom: 22px;
}
.worries__icon svg { width: 32px; height: 32px; }
.worries__item h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 18.5px; color: var(--navy-800); line-height: 1.6; margin-bottom: 14px;
}
.worries__item h3 em {
  font-style: normal; color: var(--blue-600);
  background: linear-gradient(transparent 65%, rgba(110,193,228,.4) 65%);
}
.worries__item p { font-size: 14px; color: var(--text-500); line-height: 1.9; }
@media (max-width: 860px) { .worries__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .worries__list { grid-template-columns: 1fr; } }

/* =========================================================
   Strengths
   ========================================================= */
.strengths__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.strengths__card {
  background: var(--white);
  padding: 42px 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  border: 1px solid rgba(15,56,98,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.strengths__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.strengths__card--feature {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 56px 46px;
}
.strengths__card--feature::before {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(217,181,102,.28), transparent 70%);
}
.strengths__card--feature .strengths__title { color: var(--white); font-size: 28px; }
.strengths__card--feature .strengths__title em { color: var(--gold-500); }
.strengths__card--feature .strengths__num .num-chip { color: var(--gold-500); }
.strengths__card--feature .strengths__num .num-chip::before { color: var(--gold-300); }
.strengths__card--feature p { color: rgba(255,255,255,.78); }
.strengths__card--feature .strengths__deco {
  position: absolute; right: 30px; top: 30px; width: 60px; height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M32 4 L36 26 L58 30 L36 34 L32 60 L28 34 L6 30 L28 26 Z' fill='%23d9b566'/></svg>") no-repeat center / contain;
  opacity: .85;
}
.strengths__num { margin-bottom: 18px; }
.strengths__title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 22px; color: var(--navy-800); line-height: 1.5; margin-bottom: 16px;
}
.strengths__title em { font-style: normal; color: var(--gold-600); }
.strengths__card p { font-size: 14.5px; line-height: 2; color: var(--text-500); }

@media (max-width: 980px) {
  .strengths__grid { grid-template-columns: 1fr 1fr; }
  .strengths__card--feature { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 580px) {
  .strengths__grid { grid-template-columns: 1fr; }
  .strengths__card--feature { grid-column: auto; padding: 42px 32px; }
  .strengths__card--feature .strengths__title { font-size: 24px; }
}

/* =========================================================
   Flow
   ========================================================= */
.flow__list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; counter-reset: step;
  position: relative;
}
.flow__step {
  position: relative;
  background: var(--white);
  padding: 40px 28px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,56,98,.06);
  transition: transform .35s var(--ease);
}
.flow__step:hover { transform: translateY(-4px); }
.flow__step:not(:last-child)::after {
  content: ""; position: absolute; right: -14px; top: 50%;
  width: 14px; height: 14px;
  border-top: 2px solid var(--gold-500);
  border-right: 2px solid var(--gold-500);
  transform: translateY(-50%) rotate(45deg);
}
.flow__num {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-en); font-style: italic;
  color: var(--gold-600); font-size: 12px; letter-spacing: .22em;
}
.flow__num em {
  font-style: normal; font-family: var(--font-en);
  font-size: 32px; line-height: 1; color: var(--gold-600); font-weight: 500;
}
.flow__step h3 {
  font-family: var(--font-serif); font-weight: 600;
  margin-top: 16px; font-size: 18px; color: var(--navy-800);
}
.flow__step p { font-size: 13.5px; line-height: 1.9; color: var(--text-500); margin-top: 10px; }
@media (max-width: 860px) {
  .flow__list { grid-template-columns: 1fr 1fr; }
  .flow__step:not(:last-child)::after { display: none; }
}
@media (max-width: 520px) { .flow__list { grid-template-columns: 1fr; } }

/* =========================================================
   Works (Before/After Slider + Gallery + Filter)
   ========================================================= */
.works__slider {
  position: relative;
  width: 100%; aspect-ratio: 16/9;
  max-width: 980px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-800);
  user-select: none;
}
.works__pane { position: absolute; inset: 0; }
.works__pane img { width: 100%; height: 100%; object-fit: cover; }
.works__pane--after { clip-path: inset(0 50% 0 0); }
.works__tag {
  position: absolute; top: 18px;
  background: rgba(6,19,46,.8); color: var(--white);
  padding: 8px 18px; border-radius: 999px;
  font-family: var(--font-en); letter-spacing: .22em; font-size: 12px;
  border: 1px solid rgba(255,255,255,.16);
}
.works__pane--before .works__tag { left: 24px; }
.works__pane--after .works__tag { right: 24px; background: var(--gold-600); border-color: var(--gold-500); }
.works__handle {
  position: absolute; top: 0; left: 50%; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  cursor: ew-resize; z-index: 4; transform: translateX(-50%);
}
.works__handle-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-600); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  border: 3px solid #fff;
}
.works__handle-circle svg { width: 22px; height: 22px; }

.works-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin: 70px 0 36px;
}
.works-filter button {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--white);
  font-size: 13px; letter-spacing: .12em; font-weight: 600;
  color: var(--navy-800);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.works-filter button:hover { border-color: var(--gold-500); }
.works-filter button.is-active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.work-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-card.is-hidden { display: none; }

.work-card__ba {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--navy-800);
}
.work-card__img { position: absolute; inset: 0; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; }
.work-card__img.is-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path .55s var(--ease);
}
.work-card:hover .work-card__img.is-after { clip-path: inset(0 0 0 0%); }
.work-card__ba::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-500), transparent);
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.work-card:hover .work-card__ba::after { opacity: 0; }
.work-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(6,19,46,.78); color: var(--white);
  font-family: var(--font-en); font-style: italic; letter-spacing: .2em;
  font-size: 11px; padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
}
.work-card__tag.is-gold {
  left: auto; right: 14px;
  background: var(--gold-600); border-color: var(--gold-500);
}
.work-card__body { padding: 28px 30px 30px; }
.work-card__cat {
  display: inline-block;
  font-family: var(--font-en); font-style: italic;
  letter-spacing: .2em; font-size: 11.5px; color: var(--blue-600);
  background: var(--sky-100);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.work-card__body h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 19px; color: var(--navy-800); line-height: 1.55;
  margin-bottom: 12px;
}
.work-card__body p { font-size: 14px; color: var(--text-500); line-height: 1.9; }
.work-card__meta {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px dashed var(--line-soft);
  display: flex; gap: 24px;
  font-size: 12.5px; color: var(--text-700);
}
.work-card__meta li span {
  display: inline-block;
  font-size: 10.5px; letter-spacing: .14em;
  color: var(--gold-700);
  margin-right: 8px;
}

.works-list__note {
  text-align: center; margin-top: 40px;
  font-size: 12.5px; color: var(--text-500);
}

@media (max-width: 760px) {
  .works__handle-circle { width: 44px; height: 44px; }
  .works-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Pricing
   ========================================================= */
.price-promise {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 50px;
}
.price-promise li {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  font-size: 15px; color: var(--navy-800); font-weight: 600;
  display: flex; align-items: center; gap: 18px;
  box-shadow: var(--shadow-sm);
}
.price-promise .font-en {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  background: var(--navy-800); color: var(--gold-500);
  border-radius: 50%;
  font-size: 18px; letter-spacing: .02em;
}
.price-promise li em {
  font-style: normal; color: var(--gold-700);
  border-bottom: 2px solid var(--gold-500);
}
@media (max-width: 760px) { .price-promise { grid-template-columns: 1fr; } }

.price-table__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .35s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card__tag {
  display: inline-block;
  font-family: var(--font-en); font-style: italic;
  letter-spacing: .24em; font-size: 12px;
  color: var(--blue-600); background: var(--sky-100);
  padding: 5px 14px; border-radius: 999px;
}
.price-card__tag.is-gold { color: var(--gold-700); background: rgba(217,181,102,.18); }
.price-card__head h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 24px; color: var(--navy-800); margin-top: 14px; margin-bottom: 12px;
}
.price-card__head p { font-size: 14.5px; color: var(--text-500); line-height: 1.9; }
.price-card__amount {
  display: flex; align-items: baseline; gap: 12px;
  padding: 22px 0;
  border-top: 1px dashed var(--line-soft);
  border-bottom: 1px dashed var(--line-soft);
  margin: 22px 0 24px;
}
.price-card__amount .from { font-size: 12px; color: var(--text-400); letter-spacing: .12em; }
.price-card__amount .num {
  font-family: var(--font-serif); font-weight: 600;
  color: var(--navy-800); font-size: 18px;
}
.price-card__amount .num em {
  font-style: normal; font-family: var(--font-en); font-size: 40px;
  letter-spacing: .02em; margin: 0 2px;
}
.price-card__example {
  font-size: 15px; font-weight: 700; color: var(--navy-800);
  margin: -14px 0 6px;
}
.price-card__note { font-size: 12px; color: var(--text-500); margin-bottom: 16px; }
.price-card--feature .price-card__example { color: var(--gold-300); }
.price-card--feature .price-card__note { color: rgba(255,255,255,.7); }
.price-card__list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-700); }
.price-card__list li { position: relative; padding-left: 22px; }
.price-card__list li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6 L5 9 L10 3' stroke='%23c9a14b' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.price-card--feature {
  background:
    radial-gradient(circle 110px at calc(100% - 70px) 70px, rgba(217,181,102,.18), transparent 70%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-color: transparent;
  position: relative;
}
.price-card--feature .price-card__head h3 { color: var(--white); }
.price-card--feature .price-card__head p { color: rgba(255,255,255,.78); }
.price-card--feature .price-card__amount {
  border-top-color: rgba(255,255,255,.15); border-bottom-color: rgba(255,255,255,.15);
}
.price-card--feature .from { color: var(--gold-300); }
.price-card--feature .num { color: var(--white); }
.price-card--feature .num em { color: var(--gold-500); }
.price-card--feature .price-card__list { color: rgba(255,255,255,.86); }
.price-card__pop {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold-600); color: var(--white);
  font-family: var(--font-en); font-style: italic; letter-spacing: .24em;
  font-size: 11px; padding: 6px 18px; border-radius: 999px;
  box-shadow: 0 8px 16px rgba(156,122,44,.4);
}
.pricing__note { text-align: center; margin-top: 36px; font-size: 13px; color: var(--text-500); }
.pricing__cta { text-align: center; margin-top: 36px; }

@media (max-width: 760px) { .price-table__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Area
   ========================================================= */
.area .section-lead em { font-style: normal; color: var(--blue-600); font-weight: 700; }
.area__list {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.area__list li {
  background: var(--sky-50);
  color: var(--navy-800);
  text-align: center;
  padding: 18px 6px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.area__list li:hover {
  background: var(--white);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
.area__note {
  margin-top: 30px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-500);
}
@media (max-width: 860px) {
  .area__list { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}
@media (max-width: 520px) {
  .area__list { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   Contact CTA section
   ========================================================= */
.contact-section { padding: 100px 0 110px; }
.channel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.channel-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 44px 32px 32px;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
  align-items: flex-start;
  color: var(--text-900);
  text-align: left;
}
.channel-card:hover { transform: translateY(-4px); }
.channel-card__rank {
  position: absolute; top: -14px; left: 30px;
  background: var(--gold-600); color: var(--white);
  padding: 5px 16px;
  font-family: var(--font-en); font-style: italic; letter-spacing: .26em;
  font-size: 11px; border-radius: 999px;
  box-shadow: 0 8px 16px rgba(156,122,44,.4);
}
.channel-card__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--sky-100);
  color: var(--blue-600);
  margin-bottom: 20px;
}
.channel-card__icon svg { width: 28px; height: 28px; }
.channel-card--line .channel-card__icon { background: rgba(6,199,85,.12); color: #06c755; }
.channel-card--insta .channel-card__icon {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
  color: var(--white);
}
.channel-card h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 20px; color: var(--navy-800); margin-bottom: 10px;
}
.channel-card p { font-size: 13.5px; color: var(--text-500); line-height: 1.9; }
.channel-card__main {
  margin: 22px 0;
  padding: 18px 0; width: 100%;
  border-top: 1px dashed var(--line-soft);
  border-bottom: 1px dashed var(--line-soft);
  display: flex; flex-direction: column; gap: 2px;
}
.channel-card__label {
  font-family: var(--font-en); font-style: italic;
  letter-spacing: .22em; font-size: 11px; color: var(--gold-700);
}
.channel-card__tel {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 26px; color: var(--navy-800); letter-spacing: .04em;
}
.channel-card__id {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 20px; color: var(--navy-800); letter-spacing: .04em;
}
.channel-card__hours { font-size: 11.5px; color: var(--text-500); margin-top: 6px; }
.channel-card .btn { width: 100%; }
.btn--ghost-light {
  background: transparent;
  color: var(--text-500);
  border: 1px solid var(--line-soft);
  cursor: not-allowed;
}
@media (max-width: 900px) { .channel-grid { grid-template-columns: 1fr; } }

.contact-priority {
  margin-top: 50px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.78);
}
.contact-priority em {
  font-style: normal;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  padding: 6px 18px; border-radius: 999px;
  font-weight: 600;
}
.contact-priority .arrow { color: var(--gold-500); font-size: 18px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-cat { margin-bottom: 50px; }
.faq-cat:last-child { margin-bottom: 0; }
.faq-cat__head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.faq-cat__head h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 20px; color: var(--navy-800); letter-spacing: .08em;
}

.faq__list {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq__item:hover { box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  padding: 22px 18px;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  color: var(--navy-800);
  font-size: 15.5px;
  gap: 16px;
}
.faq__q-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--blue-600); color: var(--white);
  border-radius: 50%;
  font-family: var(--font-en); font-style: italic; font-size: 18px;
}
.faq__toggle {
  position: relative; width: 18px; height: 18px;
  display: inline-block; margin: 0 auto;
}
.faq__toggle::before, .faq__toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--navy-800);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq__toggle::before { width: 14px; height: 2px; }
.faq__toggle::after  { width: 2px; height: 14px; }
.faq__item.is-open .faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq__item.is-open .faq__a { max-height: 500px; padding: 0 18px 26px; }
.faq__a-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--gold-600); color: var(--white);
  border-radius: 50%;
  font-family: var(--font-en); font-style: italic; font-size: 18px;
}
.faq__a p { color: var(--text-500); font-size: 14.5px; line-height: 2; }

@media (max-width: 560px) {
  .faq__q { grid-template-columns: 44px 1fr 30px; padding: 18px 14px; font-size: 14.5px; }
  .faq__q-mark, .faq__a-mark { width: 32px; height: 32px; font-size: 15px; }
  .faq__a { grid-template-columns: 44px 1fr; padding: 0 14px; }
  .faq__item.is-open .faq__a { padding: 0 14px 22px; }
}

/* =========================================================
   Company / About
   ========================================================= */
.company__message {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 80px; align-items: center;
  margin-bottom: 80px;
}
.company__message-copy p {
  font-size: 15.5px; line-height: 2.1; color: var(--text-700); margin-top: 22px;
}
.company__message-copy p:first-child { margin-top: 0; }
.company__sign {
  margin-top: 36px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-serif);
  font-size: 14px; letter-spacing: .14em; color: var(--text-500);
}
.company__sign strong {
  font-size: 24px; color: var(--navy-800); margin-left: 14px; letter-spacing: .18em;
}
.company__sign small { font-size: 12px; }

.company__message-visual { position: relative; }
.company__message-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.company__message-img img { width: 100%; height: 480px; object-fit: cover; }
.company__message-badge {
  position: absolute; bottom: -28px; right: -28px;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--gold-600); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1.3;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold-300);
}
.company__message-badge .font-en { font-size: 11px; letter-spacing: .3em; }
.company__message-badge strong { font-family: var(--font-serif); font-size: 14px; letter-spacing: .14em; }

@media (max-width: 980px) {
  .company__message { grid-template-columns: 1fr; gap: 50px; }
  .company__message-img img { height: 360px; }
  .company__message-badge { right: 14px; bottom: -24px; width: 110px; height: 110px; }
}

.company__philosophy {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 70px;
}
.company__philosophy-card {
  background: var(--sky-50);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.company__philosophy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.company__philosophy-card .num-chip { display: block; margin-bottom: 16px; }
.company__philosophy-card h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 20px; color: var(--navy-800); margin-bottom: 12px;
}
.company__philosophy-card p { font-size: 14.5px; line-height: 2; color: var(--text-500); }
@media (max-width: 860px) { .company__philosophy { grid-template-columns: 1fr; } }

.company__list {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 28px 44px;
  box-shadow: var(--shadow-sm);
  max-width: 920px;
  margin: 0 auto;
}
.company__list > div {
  display: grid; grid-template-columns: 200px 1fr; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 14.5px;
}
.company__list > div:last-child { border-bottom: 0; }
.company__list dt {
  font-family: var(--font-serif); font-weight: 600;
  color: var(--gold-700);
  letter-spacing: .12em;
}
.company__list dd { color: var(--text-700); line-height: 1.9; }
.company__list dd a { color: var(--blue-600); text-decoration: underline; }

@media (max-width: 680px) {
  .company__list { padding: 16px 24px; }
  .company__list > div { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
}
