/* ダリブランドサイト 共通スタイル
   世界観: 本来の自分へ戻る / 無理に変わるのではなく思い出す / 自然・余白・静けさ */

:root {
  --bg: #faf6f0;
  --bg-soft: #f2eae0;
  --paper: #fffdfa;
  --text: #332e29;
  --text-soft: #6b6258;
  --accent: #8a6d55;
  --accent-deep: #5c4a3a;
  --accent-green: #5c6e51;
  --border: #e6dccb;
  --max-width: 760px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

body {
  padding: 0 20px 80px;
}

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

/* ナビゲーション */
.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.site-nav a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.site-nav a:hover { opacity: 0.7; }

/* ヒーロー */
.hero {
  text-align: center;
  padding: 56px 0 40px;
}

.hero .eyebrow {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 20px;
  color: var(--accent-deep);
}

.hero p.sub {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0 0 32px;
}

/* ボタン */
.btn {
  display: inline-block;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.95rem;
  background: var(--accent-deep);
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.85; }

.btn.secondary {
  background: transparent;
  color: var(--accent-deep);
  border: 1px solid var(--accent);
  padding: 13px 33px;
}

.link-quiet {
  display: block;
  margin-top: 18px;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.88rem;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  display: inline-block;
}

/* セクション */
section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

section:first-of-type { border-top: none; }

section h2 {
  font-size: 1.35rem;
  color: var(--accent-deep);
  margin: 0 0 18px;
  font-weight: 600;
}

section p {
  margin: 0 0 16px;
}

section ul {
  padding-left: 1.3em;
  margin: 0 0 16px;
}

section li { margin-bottom: 8px; }

.card-note {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 20px 0;
}

/* 4LPカードグリッド(TOPページ用) */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0 10px;
}

@media (max-width: 600px) {
  .lp-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
}

.lp-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(90, 70, 50, 0.12);
}

.lp-card .tag {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.lp-card h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: var(--accent-deep);
}

.lp-card p {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.86rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.7;
}

/* 価格・所要時間テーブル */
table.info {
  width: 100%;
  border-collapse: collapse;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.9rem;
  margin: 20px 0;
}

table.info th, table.info td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

table.info th {
  color: var(--text-soft);
  font-weight: 500;
  width: 35%;
}

/* CTA 中央配置 */
.cta-block {
  text-align: center;
  padding: 40px 0;
}

.cta-block p.lead {
  font-size: 1.05rem;
  color: var(--accent-deep);
  margin-bottom: 22px;
}

/* フッター */
.site-footer {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

.site-footer a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.gentle-note {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.88rem;
  color: var(--text-soft);
  background: var(--bg-soft, #f2eae0);
  border-radius: var(--radius);
  padding: 18px 22px;
}
