/* ══════════════════════════════════════════
   LITSLY 鹿児島 — style.css  v2
══════════════════════════════════════════ */

:root {
  --sand:     #F5F5F0;
  --lava:     #2A2420;
  --lava-mid: #5C5248;
  --lava-lt:  #9A8E86;
  --rule:     #D8D0C4;
  --navy:     #001F3F;
  --navy-lt:  #E8EDF4;
  --red:      #B22222;
  --red-lt:   #F0DADA;
  --white:    #FEFDF9;
  --f-jp:     'Shippori Mincho B1', serif;
  --f-sans:   'Noto Sans JP', sans-serif;
  --f-lat:    'Cormorant Garamond', serif;
  --side:     clamp(1.4rem, 6vw, 5rem);
  --max:      1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  background: var(--sand);
  color: var(--lava);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ── HEADER ── */
#hd {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--side);
  transition: background .45s, border-color .45s, box-shadow .45s;
  border-bottom: 1px solid transparent;
}
#hd.scrolled {
  background: rgba(245,245,240,.96);
  backdrop-filter: blur(14px) saturate(1.3);
  border-color: var(--rule);
  box-shadow: 0 1px 24px rgba(42,36,32,.06);
}
.hd-logo { display: flex; flex-direction: column; line-height: 1.25; }
.hd-logo-main { font-family: var(--f-jp); font-size: 1rem; font-weight: 700; color: var(--lava); letter-spacing: .06em; }
.hd-logo-sub  { font-family: var(--f-lat); font-style: italic; font-size: .65rem; color: var(--lava-lt); letter-spacing: .16em; }
.hd-right { display: flex; align-items: center; gap: 2rem; }
.hd-nav { display: flex; gap: 2rem; }
.hd-nav a {
  font-size: .72rem; letter-spacing: .12em; color: var(--lava-mid);
  position: relative; padding-bottom: 3px; transition: color .25s;
}
.hd-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.hd-nav a:hover { color: var(--red); }
.hd-nav a:hover::after { transform: scaleX(1); }
.hd-cta {
  font-family: var(--f-jp); font-size: .72rem; letter-spacing: .1em;
  padding: .52rem 1.4rem;
  background: var(--navy); color: var(--white);
  transition: background .25s, transform .2s;
}
.hd-cta:hover { background: #003366; transform: translateY(-1px); }
.hd-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hd-burger span { display: block; width: 22px; height: 1.5px; background: var(--lava); transition: .3s; }

/* ── DRAWER ── */
.drawer {
  position: fixed; inset: 0; z-index: 800;
  background: var(--sand);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.drawer.open { opacity: 1; pointer-events: all; }
.drawer-close {
  position: absolute; top: 1.4rem; right: var(--side);
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--lava-lt); line-height: 1;
}
.drawer a {
  font-family: var(--f-jp); font-size: 1.3rem; color: var(--lava);
  letter-spacing: .08em; text-align: center;
  position: relative; padding-bottom: 4px;
}
.drawer a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.drawer a:hover::after { transform: scaleX(1); }
.drawer a small {
  display: block; font-family: var(--f-lat); font-style: italic;
  font-size: .65rem; color: var(--lava-lt); letter-spacing: .2em; margin-top: .2rem; text-align: center;
}

/* ── HERO ── */
.hero {
  height: 100svh; min-height: 680px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  animation: heroZoom 16s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,36,32,.25) 0%,
    rgba(42,36,32,.15) 40%,
    rgba(245,245,240,.6) 85%,
    var(--sand) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 var(--side);
  opacity: 0; animation: fadeUp 1.1s .6s forwards;
}
.hero-kicker {
  font-family: var(--f-lat); font-style: italic; font-size: .82rem;
  color: rgba(254,253,249,.65); letter-spacing: .25em;
  display: block; margin-bottom: 1.6rem;
}
.hero-h1 {
  font-family: var(--f-jp); font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.5; color: var(--white);
  text-shadow: 0 2px 28px rgba(42,36,32,.4);
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: clamp(.82rem, 1.8vw, 1rem);
  color: rgba(254,253,249,.72); line-height: 1.9;
  max-width: 560px; margin: 0 auto; font-weight: 300;
}

/* ── SHARED ── */
.sec {
  padding: clamp(5rem,10vw,9rem) var(--side);
  max-width: var(--max); margin: 0 auto;
}
.sec-center { text-align: center; }
.sec-en {
  font-family: var(--f-lat); font-style: italic; font-size: .8rem;
  letter-spacing: .28em; color: var(--lava-lt);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1rem;
}
.sec-en::before, .sec-en::after { content: ''; flex: 1; max-width: 56px; height: 1px; background: var(--rule); }
.sec-en.left { justify-content: flex-start; }
.sec-en.left::before { display: none; }
.sec-en.left::after  { max-width: 80px; }
.sec-h { font-family: var(--f-jp); font-size: clamp(1.7rem,3.5vw,2.8rem); font-weight: 700; line-height: 1.6; color: var(--lava); }
.sec-rule { width: 36px; height: 1.5px; background: var(--red); margin: 1.4rem auto; }
.sec-rule.left { margin-left: 0; }
.sec-body { font-size: .88rem; line-height: 2.4; color: var(--lava-mid); font-weight: 300; max-width: 580px; }
.sec-body.center { margin: 0 auto; }

/* ── STORY（1カラム） ── */
.story-bg { background: var(--white); }
.story-single {
  max-width: 760px; margin: 0 auto;
}
.story-quote {
  font-family: var(--f-jp);
  font-size: clamp(1rem,2vw,1.3rem);
  line-height: 2; color: var(--lava);
  border-left: 2px solid var(--red);
  padding-left: 1.4rem;
  margin: 2rem 0 2.2rem;
}
.story-prose { font-size: .86rem; line-height: 2.5; color: var(--lava-mid); font-weight: 300; }
.story-prose p { margin-bottom: 1.2rem; }
.story-prose p:last-child { margin-bottom: 0; }
.story-name {
  margin-top: 2.8rem; padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 1rem;
}
.story-name-title { font-family: var(--f-jp); font-size: .9rem; font-weight: 700; color: var(--lava); }
.story-name-role  { font-size: .67rem; letter-spacing: .1em; color: var(--lava-lt); margin-top: .2rem; }

/* ── CASES ── */
.cases-bg { background: var(--navy); }
.cases-h   { color: var(--white) !important; }
.cases-en  { color: rgba(254,253,249,.35) !important; }
.cases-en::before, .cases-en::after { background: rgba(254,253,249,.12) !important; }
.cases-rule { background: rgba(178,34,34,.8) !important; }
.cases-sub  { color: rgba(254,253,249,.5) !important; }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(254,253,249,.07); margin-top: 3.5rem; }
.case-card {
  background: var(--navy); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: background .35s;
}
.case-card:hover { background: #002855; }
.case-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .45s;
}
.case-card:hover::before { transform: scaleX(1); }
.case-num  { font-family: var(--f-lat); font-weight: 300; font-size: 3.5rem; color: rgba(254,253,249,.1); line-height: 1; margin-bottom: 1.2rem; }
.case-tag  { font-size: .62rem; letter-spacing: .2em; color: rgba(178,34,34,.8); margin-bottom: .7rem; display: flex; align-items: center; gap: .5rem; }
.case-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.case-title { font-family: var(--f-jp); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.65; margin-bottom: 1rem; }
.case-body  { font-size: .8rem; line-height: 2; color: rgba(254,253,249,.5); font-weight: 300; }

/* ── PLANS（5プラン: 3+2） ── */
.plans-bg { background: var(--sand); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); margin-top: 3.5rem;
}
/* 4枚目・5枚目を2カラムで中央揃え */
.plans-grid .plan-card:nth-child(4),
.plans-grid .plan-card:nth-child(5) {
  grid-column: span 1;
}
.plans-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule);
  max-width: calc(66.666% + 1px);
  margin: 3rem auto 0;
}
.plan-card {
  background: var(--white); padding: 3rem 2rem 3rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(42,36,32,.1); z-index: 1; }
.plan-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .45s;
}
.plan-card.p1::after { background: var(--red); }
.plan-card.p2::after { background: var(--navy); }
.plan-card.p3::after { background: #4A7A58; }
.plan-card.p4::after { background: #6B4C9A; }
.plan-card.p5::after { background: #C47E1A; }
.plan-card:hover::after { transform: scaleX(1); }
.plan-icon   { font-size: 2.5rem; margin-bottom: 1.2rem; line-height: 1; }
.plan-bignum {
  font-family: var(--f-lat); font-weight: 300; font-size: 4rem;
  color: var(--rule); line-height: 1;
  position: absolute; top: 1.5rem; right: 1.5rem;
}
.plan-cat   { font-size: .63rem; letter-spacing: .2em; color: var(--lava-lt); margin-bottom: .6rem; font-weight: 400; }
.plan-title { font-family: var(--f-jp); font-size: 1.15rem; font-weight: 700; color: var(--lava); line-height: 1.7; margin-bottom: 1rem; }
.plan-desc  { font-size: .82rem; line-height: 2.1; color: var(--lava-mid); font-weight: 300; margin-bottom: 1.6rem; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.8rem; }
.plan-feats li {
  font-size: .76rem; color: var(--lava-mid);
  display: flex; align-items: baseline; gap: .6rem; line-height: 1.65; font-weight: 300;
}
.plan-feats li::before { content: '—'; color: var(--red); font-size: .65rem; flex-shrink: 0; }
.plan-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; }
.plan-tag  { font-size: .63rem; border: 1px solid var(--rule); color: var(--lava-lt); padding: .18rem .65rem; letter-spacing: .05em; }

/* ── CTA ── */
.cta-bg {
  background: linear-gradient(135deg, var(--lava) 0%, #3A2E28 100%);
  position: relative; overflow: hidden;
}
.cta-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(254,253,249,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,253,249,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-inner {
  position: relative; z-index: 1;
  padding: clamp(5rem,9vw,8rem) var(--side);
  max-width: 760px; margin: 0 auto; text-align: center;
}
.cta-kicker {
  font-family: var(--f-lat); font-style: italic; font-size: .78rem;
  color: rgba(254,253,249,.35); letter-spacing: .28em;
  display: block; margin-bottom: 1.8rem;
}
.cta-h {
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(1.8rem,3.5vw,2.6rem);  /* ← サイズ調整 */
  color: var(--white); line-height: 1.6; margin-bottom: 1.5rem;
}
.cta-p {
  font-size: .88rem; line-height: 2.1;     /* ← 行間はそのまま */
  color: rgba(254,253,249,.55); font-weight: 300;
  max-width: 460px; margin: 0 auto 3rem;
}

/* ── お問い合わせフォーム ── */
.contact-form {
  background: rgba(254,253,249,.06);
  border: 1px solid rgba(254,253,249,.12);
  padding: 2.8rem;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.form-row { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.form-row:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: .72rem; letter-spacing: .1em; color: rgba(254,253,249,.6);
  font-weight: 400;
}
.form-label .req {
  background: var(--red); color: #fff;
  font-size: .58rem; padding: .1rem .4rem;
  margin-left: .4rem; letter-spacing: .05em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(254,253,249,.08);
  border: 1px solid rgba(254,253,249,.15);
  color: var(--white);
  font-family: var(--f-sans); font-size: .85rem;
  padding: .75rem 1rem;
  transition: border-color .25s, background .25s;
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(254,253,249,.3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(254,253,249,.45);
  background: rgba(254,253,249,.12);
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(254,253,249,.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-select option { background: var(--lava); color: var(--white); }
.form-textarea { height: 140px; resize: vertical; line-height: 1.7; }
/* ハニーポット */
.form-honey { display: none !important; }
.form-submit-row { margin-top: 2rem; text-align: center; }
.form-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  background: transparent;
  border: 1.5px solid rgba(254,253,249,.45);
  color: var(--white);
  font-family: var(--f-jp); font-size: .88rem; letter-spacing: .14em; font-weight: 500;
  padding: 1rem 2.8rem;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: border-color .3s, color .3s;
}
/* 塗りつぶしアニメーション */
.form-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}
.form-btn:hover { border-color: var(--white); color: var(--red); }
.form-btn:hover::before { transform: scaleX(1); }
.form-btn span { position: relative; z-index: 1; }
.form-btn .btn-arrow {
  position: relative; z-index: 1;
  display: inline-block; font-size: 1rem; line-height: 1;
  transition: transform .3s;
}
.form-btn:hover .btn-arrow { transform: translateX(4px); }
.form-btn:disabled { opacity: .45; cursor: not-allowed; }
.form-btn:disabled::before { display: none; }
.form-msg { margin-top: 1.2rem; font-size: .8rem; min-height: 1.4rem; }
.form-msg.ok  { color: #7EC98A; }
.form-msg.err { color: #F4A4A4; }
.cta-note { font-size: .7rem; color: rgba(254,253,249,.28); margin-top: 1.6rem; line-height: 1.9; }

/* ── INFO ── */
.info-bg { background: var(--sand); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

/* 新レイアウト：住所全幅 + 2列 */
.info-block {
  max-width: 680px; margin: 2.8rem auto 0;
  border: 1px solid var(--rule);
  background: var(--white);
  overflow: hidden;
}
.info-cell-full {
  background: var(--white); padding: 1.6rem 2rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}
.info-row2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
}
.info-row2 .info-cell {
  background: var(--white); padding: 1.6rem 2rem; text-align: center;
}
.info-label { font-family: var(--f-lat); font-style: italic; font-size: .65rem; letter-spacing: .2em; color: var(--lava-lt); display: block; margin-bottom: .5rem; }
.info-val   { font-family: var(--f-jp); font-size: .85rem; color: var(--lava); line-height: 1.8; }
.info-val a { color: var(--red); }
.info-badge-wrap { text-align: center; margin-top: 2.5rem; }
.info-badge {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-family: var(--f-jp); font-size: .82rem; letter-spacing: .1em;
  padding: .85rem 2.8rem;
  cursor: pointer; border: none;
  transition: background .25s, transform .2s;
}
.info-badge:hover { background: #8B1818; transform: translateY(-1px); }

/* ── FAQ ── */
.faq-bg { background: var(--white); }
.faq-wrap { max-width: 680px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; gap: 1rem; }
.faq-q-t { font-family: var(--f-jp); font-size: .9rem; font-weight: 700; color: var(--lava); line-height: 1.6; }
.faq-q-t::before { content: 'Q. '; color: var(--red); }
.faq-tog { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--lava-lt); font-size: 1.2rem; transition: transform .3s, color .3s; }
.faq-item.on .faq-tog { transform: rotate(45deg); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-a-in {
  padding: .8rem 1rem 1.8rem 1.6rem;
  font-size: .83rem; line-height: 2.4; color: var(--lava-mid); font-weight: 300;
  border-left: 1.5px solid var(--red-lt); margin-left: .3rem;
}
.faq-a-in br { display: block; content: ''; margin-top: .3rem; }
.faq-item.on .faq-a { max-height: 320px; }

/* ── FOOTER ── */
footer { background: var(--lava); }
.ft-top {
  max-width: var(--max); margin: 0 auto;
  padding: 5rem var(--side) 4rem;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem; border-bottom: 1px solid rgba(254,253,249,.06);
}
.ft-logo-main { font-family: var(--f-jp); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.ft-logo-main em { font-style: normal; color: var(--red); }
.ft-logo-url  { font-family: var(--f-lat); font-style: italic; font-size: .65rem; color: rgba(254,253,249,.3); letter-spacing: .12em; }
.ft-tagline   { font-size: .74rem; color: rgba(254,253,249,.28); margin-top: .9rem; line-height: 1.9; max-width: 200px; font-weight: 300; }
.ft-address   { font-size: .72rem; color: rgba(254,253,249,.25); margin-top: .8rem; line-height: 1.8; font-weight: 300; }
.ft-col-h { font-size: .58rem; letter-spacing: .24em; color: rgba(254,253,249,.22); margin-bottom: 1.1rem; font-weight: 400; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.ft-col a  { font-size: .76rem; color: rgba(254,253,249,.38); transition: color .25s; font-weight: 300; }
.ft-col a:hover { color: var(--white); }
.ft-bot {
  max-width: var(--max); margin: 0 auto;
  padding: 1.5rem var(--side);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.ft-pol a  { font-size: .65rem; color: rgba(254,253,249,.22); margin-right: 1.4rem; transition: color .25s; }
.ft-pol a:hover { color: rgba(254,253,249,.6); }
.ft-copy { font-size: .63rem; color: rgba(254,253,249,.14); }

/* ── REVEAL ── */
.rv  { opacity:0; transform:translateY(22px);  transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1); }
.rvl { opacity:0; transform:translateX(-20px); transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1); }
.rvr { opacity:0; transform:translateX(20px);  transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1); }
.rv.vis,.rvl.vis,.rvr.vis { opacity:1; transform:none; }

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hd-nav, .hd-cta { display: none; }
  .hd-burger { display: flex; }
  .cases-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plans-row2 { grid-template-columns: 1fr; max-width: 100%; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 620px) {
  .info-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.9rem; }
  .contact-form { padding: 1.8rem 1.2rem; }
}
