/* Luum — luum-tokushoho.css */

:root {
  --beige: #F5EDE3;
  --beige-dark: #EAD9C8;
  --blush-light: #F2DDD6;
  --warm-white: #FDFAF7;
  --brown: #7A6050;
  --brown-light: #B89A88;
  --text-dark: #2E2219;
  --text-mid: #6B5A4E;
  --text-light: #A89080;
  --accent-warm: #B07860;
  --accent-deep: #8C5A72;
  --night-bg: #1E1612;
  --section-bg: #FAF5F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1;
}

/* ====== HEADER ====== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 250, 247, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 150, 130, 0.18);
  padding: 14px 5%;
  display: flex; align-items: center; justify-content: space-between;
}

.header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
  }

.logo-link { text-decoration: none; }

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--brown);
  letter-spacing: 0.18em;
  font-style: italic;
  line-height: 1;
  display: block;
}

.logo-sub {
  font-size: 0.55rem;
  color: var(--text-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.06em;
}
.header-back:hover { color: var(--accent-warm); }
.header-back::before { content: '←'; font-size: 0.9rem; }

/* ロゴ画像のサイズ調整 */
.logo img {
    height: 60px; /* ロゴの高さに合わせて調整 */
    width: auto;
}
/* ====== HERO ====== */
.hero {
  padding: 120px 5% 70px;
  background: var(--night-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(176, 120, 96, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 30%, rgba(140, 90, 114, 0.11) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: rgba(176, 120, 96, 0.7);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  padding-top: 40px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block; width: 30px; height: 1px;
  background: rgba(176, 120, 96, 0.4);
}

.hero-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(176, 120, 96, 0.4));
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 14px;
  font-weight: 500;
}

.hero-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

/* ====== MAIN LAYOUT ====== */
.page-layout {
   display: block; /* flexやgridを解除 */
    max-width: 800px; /* 読みやすい横幅に制限（お好みで） */
    margin: 0 auto; /* 中央に配置 */
    padding: 40px 20px;
}

main {
    width: 100%; /* 横幅いっぱいにする */
}

/* ====== TABLE ====== */
.table-section { margin-bottom: 16px; }

.table-section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--accent-warm);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.table-section-title::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(176, 120, 96, 0.18);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 18px rgba(120, 90, 70, 0.07);
  border: 1px solid rgba(120, 90, 70, 0.07);
  margin-bottom: 32px;
}

.info-table tr {
  border-bottom: 1px solid rgba(120, 90, 70, 0.07);
}
.info-table tr:last-child { border-bottom: none; }

.info-table tr:hover td { background: rgba(245, 237, 227, 0.35); }

.info-table th {
  width: 36%;
  padding: 18px 20px;
  background: var(--section-bg);
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  border-right: 1px solid rgba(120, 90, 70, 0.07);
}

.th-inner {
  display: flex; align-items: flex-start; gap: 9px;
}

.th-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.85;
}

.info-table td {
  padding: 18px 20px;
  font-size: 0.86rem;
  color: var(--text-dark);
  line-height: 1.85;
  vertical-align: top;
}

/* Price highlight */
.td-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #B07860, #8C5A72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  display: block;
  margin-bottom: 3px;
}

.td-price-note {
  font-size: 0.74rem;
  color: var(--text-light);
  -webkit-text-fill-color: var(--text-light);
}

/* Warning / notice blocks inside td */
.td-note {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(120, 90, 70, 0.12);
}

.td-alert {
  display: inline-flex; align-items: flex-start; gap: 6px;
  background: rgba(214, 69, 69, 0.05);
  border: 1px solid rgba(214, 69, 69, 0.14);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 8px;
  width: 100%;
}
.td-alert::before { content: '⚠'; flex-shrink: 0; opacity: 0.6; margin-top: 1px; }

.td-safe {
  display: inline-flex; align-items: flex-start; gap: 6px;
  background: rgba(90, 138, 106, 0.06);
  border: 1px solid rgba(90, 138, 106, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 8px;
  width: 100%;
}

.td-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 5px;
  margin-top: 4px;
}
.td-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.84rem; color: var(--text-dark); line-height: 1.7;
}
.td-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg, #B07860, #8C5A72);
  flex-shrink: 0; margin-top: 8px;
}

/* ====== CONTACT BLOCK ====== */
.contact-block {
  background: white;
  border: 1px solid rgba(120, 90, 70, 0.1);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(120, 90, 70, 0.06);
  margin-top: 8px;
}

.contact-icon { font-size: 2rem; display: block; margin-bottom: 10px; }

.contact-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.contact-email {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--beige);
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
  letter-spacing: 0.04em;
}
.contact-email:hover { background: var(--beige-dark); }

/* ====== FOOTER ====== */
footer {
  background: var(--night-bg);
  padding: 48px 5% 28px;
}

.footer-inner {
  max-width: 1020px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
}

.footer-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-copy {
  width: 100%;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  padding-top: 20px; margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.08em;
}

.pp-footer-logo img {
    height: 40px; width: auto; display: block;
  }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .page-layout {
    grid-template-columns: 1fr;
    padding: 50px 5% 80px;
  }

  .toc { position: relative; top: 0; order: -1; }

  .info-table th { width: 42%; padding: 14px 14px; font-size: 0.78rem; }
  .info-table td { padding: 14px 14px; font-size: 0.82rem; }

  .hero { padding: 100px 5% 50px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .info-table, .info-table tbody, .info-table tr,
  .info-table th, .info-table td {
    display: block; width: 100%;
  }

  .info-table th {
    background: var(--beige);
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    padding: 12px 16px 8px;
  }

  .info-table td {
    padding: 8px 16px 16px;
  }

  .info-table tr { border-bottom: 1px solid rgba(120, 90, 70, 0.1); }
}
