/* ============================================================
   tsukururu.jp — lp.css
   LP固有スタイル（index.php専用）
   ============================================================ */

/* ===== セクション共通 ===== */
section { padding: 96px 40px; }
.inner { max-width: 1160px; margin: 0 auto; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-line);
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 200;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: .06em;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.5;
}
.section-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 2;
  max-width: 560px;
}

/* ===== ヒーロー ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200,169,110,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,26,46,.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(26,46,26,.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  max-width: 780px;
  text-align: center;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.hero-badge::before,
.hero-badge::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold-line);
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 200;
  font-size: clamp(32px, 5.5vw, 62px);
  line-height: 1.45;
  letter-spacing: .06em;
  color: var(--text-main);
  margin-bottom: 28px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--text-sub);
  line-height: 2;
  max-width: 560px;
  margin: 0 auto 48px;
}
.hero-sub strong { color: var(--text-main); font-weight: 400; }
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: .06em;
}
.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-note span::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
}
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-line));
  animation: scrollPulse 2s infinite;
}
.scroll-hint-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ===== サービス紹介 ===== */
.services { background: var(--bg-2); }
.services-head { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  background: var(--bg-3);
  padding: 40px 36px 44px;
  overflow: hidden;
  display: block;
  color: inherit;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.service-card.kiyaku::before  { background: var(--kiyaku-acc); }
.service-card.guide::before   { background: var(--guide-acc); }
.service-card.pp::before      { background: var(--pp-acc); }

.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-card.kiyaku .service-icon { background: rgba(26,26,46,.6); border: 1px solid rgba(144,144,216,.2); }
.service-card.guide  .service-icon { background: rgba(26,46,26,.6); border: 1px solid rgba(128,200,128,.2); }
.service-card.pp     .service-icon { background: rgba(46,26,26,.6); border: 1px solid rgba(216,128,128,.2); }

.service-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card.kiyaku .service-icon svg { stroke: var(--kiyaku-acc); }
.service-card.guide  .service-icon svg { stroke: var(--guide-acc); }
.service-card.pp     .service-icon svg { stroke: var(--pp-acc); }

.service-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card.kiyaku .service-label { color: var(--kiyaku-acc); }
.service-card.guide  .service-label { color: var(--guide-acc); }
.service-card.pp     .service-label { color: var(--pp-acc); }

.service-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--text-main);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 28px;
}
.service-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--text-dim);
}
.service-url svg {
  width: 12px; height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-bg {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 96px; height: 96px;
  border-radius: 50%;
  opacity: .06;
  pointer-events: none;
}
.service-card.kiyaku .service-card-bg { background: var(--kiyaku-acc); }
.service-card.guide  .service-card-bg { background: var(--guide-acc); }
.service-card.pp     .service-card-bg { background: var(--pp-acc); }

/* ===== 特徴 ===== */
.features { background: var(--bg); }
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.feature-item {
  padding: 24px 28px;
  background: var(--bg-2);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: default;
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--text-main);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.85;
}
/* 法制度ボックス */
.law-box {
  background: linear-gradient(135deg, #0e0d0a 0%, #14120e 100%);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.law-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.12) 0%, transparent 70%);
  pointer-events: none;
}
.law-box-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 4px 12px;
  margin-bottom: 22px;
}
.law-box-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.law-box-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--text-main);
  margin-bottom: 18px;
  line-height: 1.5;
}
.law-box-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 28px;
}
.law-box-desc strong { color: var(--gold); font-weight: 400; }
.law-box-points { display: flex; flex-direction: column; gap: 12px; }
.law-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}
.law-point::before {
  content: '✓';
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== ジャンル ===== */
.genres { background: var(--bg-2); }
.genres-head { margin-bottom: 48px; }
.genre-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 2px;
}
.genre-card {
  background: var(--bg-3);
  padding: 24px 8px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.genre-card--more {
  background: transparent;
  border: 1.5px dashed var(--gold-line);
}
.genre-card--more .genre-icon svg { stroke: var(--gold); opacity: .6; }
.genre-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.genre-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .7;
}
.genre-name {
  font-size: 10.5px;
  color: var(--text-sub);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .02em;
}

/* ===== ご利用の流れ ===== */
.howto { background: var(--bg); }
.steps-head { margin-bottom: 56px; }
.steps-flow {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  align-items: start;
}
.step-card { padding: 0 8px; }
.step-num-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--text-main);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
}
.step-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
}
.step-arrow svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--border-mid);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== FAQ ===== */
.faq { background: var(--bg-2); }
.faq-head { margin-bottom: 48px; }
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-item.open { border-color: var(--gold-line); }
.faq-q {
  display: flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
  user-select: none;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
}
.faq-q-mark {
  flex-shrink: 0;
  width: 52px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border-right: 1px solid var(--border);
}
.faq-q-text {
  flex: 1;
  padding: 20px 20px 20px 22px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.6;
}
.faq-toggle {
  flex-shrink: 0;
  width: 52px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after  { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle::after  { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-toggle::before { background: var(--gold); }
.faq-a {
  display: none;
  padding: 20px 24px 24px 76px;
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 2;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ===== ベータ案内 ===== */
.beta-section { background: var(--bg); text-align: center; }
.beta-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(135deg, #0e0d0a 0%, #14120e 100%);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.beta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,110,.07) 0%, transparent 70%);
  pointer-events: none;
}
.beta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}
.beta-title {
  font-family: var(--font-serif);
  font-weight: 200;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: .06em;
  color: var(--text-main);
  margin-bottom: 18px;
  position: relative;
  line-height: 1.5;
}
.beta-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 36px;
  position: relative;
}
.beta-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
}
.beta-step-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-sub);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 6px 14px;
}
.beta-step-tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-dim);
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
}
.beta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}
.beta-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: .04em;
  position: relative;
}

/* ===== 作成中モーダル ===== */
.wip-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wip-overlay.active { display: flex; }
.wip-modal {
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 40px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.wip-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.wip-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.wip-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--text-main);
  margin-bottom: 10px;
}
.wip-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 28px;
}
.wip-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-sub);
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 9px 24px;
  cursor: pointer;
}

/* ===== LP レスポンシブ ===== */
@media (max-width: 1200px) {
  .genre-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px) {
  section { padding: 72px 28px; }
  .hero { padding: 100px 28px 72px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .steps-flow { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .genre-grid { grid-template-columns: repeat(5, 1fr); }
  .law-box { padding: 28px 24px; }
}
@media (max-width: 680px) {
  .hero-title { font-size: clamp(26px, 8vw, 42px); }
  .genre-grid { grid-template-columns: repeat(3, 1fr); }
  .beta-box { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 28px 24px 32px; }
}
