/*
Theme Name: 楽女FES '26
Theme URI: https://rakujo-fes.satoru-h.com/2026
Author: ONE Point.
Author URI: https://www.1pnt.jp
Description: 楽女FES '26（らくじょフェス）の特設サイトテーマ。Podcast「ひうら芳麗の楽女なニュース」から派生した大人のためのウェルエイジング文化祭。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: All Rights Reserved
Text Domain: rakujo
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #E0E0E0;
  background: #1A1A2E;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s, border-color 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; color: inherit; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.12);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}
.nav-logo-text span { color: #2DD4BF; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.nav-links a:hover { color: #2DD4BF; }
.nav-cta {
  background: #E8688E;
  color: #fff !important;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transition: background 0.3s;
}
.nav-cta:hover { background: #d45a7e; }
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2DD4BF;
  transition: transform 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #1A1A2E;
  padding-top: 64px;
  overflow: hidden;
}
.hero-kv {
  display: block;
  width: 100%;
}
.hero-kv img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-kv img { animation: none !important; }
}

/* Hero KV: 静かに広がる ken-burns 風（軽量、CSSのみ） */
@keyframes rakujoKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero-kv img {
  animation: rakujoKenBurns 14s ease-out both;
  transform-origin: center center;
}

/* リンク・ボタンのトランジション微調整（既存より少しなめらかに） */
.podcast-link, .btn-primary, .btn-outline, .nav-cta {
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* ゲスト写真のホバーで微ズーム */
.guest-card .guest-photo img {
  transition: transform 0.6s ease;
}
.guest-card:hover .guest-photo img {
  transform: scale(1.05);
}

/* ===== INNER PAGES (お知らせ一覧 / 記事) ===== */
.page-header {
  background: #1A1A2E;
  color: #fff;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232,104,142,0.08), transparent 40%),
    radial-gradient(circle at 20% 90%, rgba(45,212,191,0.06), transparent 40%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-eyebrow {
  margin-bottom: 18px;
  letter-spacing: 0.3em;
}
.page-header-eyebrow a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.3s;
}
.page-header-eyebrow a:hover { opacity: 0.6; }
.page-header-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 14px;
}
.page-header-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.archive-section { padding: 80px 0 120px; }
.single-section { padding: 80px 0 120px; }

/* news-list--archive (link付きカードスタイル) */
.news-list--archive { margin-top: 0; }
.news-item--linked {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 12px;
  border-bottom: 1px solid rgba(26,26,46,0.08);
  color: inherit;
  text-decoration: none;
  transition: background 0.3s, padding-left 0.3s;
}
.news-item--linked:first-child {
  border-top: 1px solid rgba(26,26,46,0.08);
}
.news-item--linked:hover {
  background: rgba(255,255,255,0.55);
  padding-left: 18px;
}
.news-item--linked .news-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
}
.news-item--linked .news-arrow {
  color: #E8688E;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}
.news-item--linked:hover .news-arrow { transform: translateX(4px); }
.news-external-mark {
  font-size: 12px;
  color: #20B2AA;
  margin-left: 4px;
}

/* Pagination */
.pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1A1A2E;
  background: #fff;
  border: 1px solid rgba(26,26,46,0.12);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s;
}
.pagination .page-numbers:hover { background: #1A1A2E; color: #fff; border-color: #1A1A2E; }
.pagination .page-numbers.current { background: #E8688E; color: #fff; border-color: #E8688E; }
.pagination .page-numbers.dots { background: none; border: none; }

/* Single article */
.single-article {
  background: #fff;
  border-radius: 18px;
  padding: 56px 64px;
  box-shadow: 0 8px 32px rgba(26,26,46,0.04);
}
.single-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26,26,46,0.08);
}
.single-date {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #E8688E;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.single-title {
  font-size: 28px;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.single-body {
  font-size: 15px;
  line-height: 2.1;
  color: #2a2a40;
  letter-spacing: 0.03em;
}
.single-body p { margin-bottom: 1.4em; }
.single-body p:last-child { margin-bottom: 0; }
.single-body a {
  color: #E8688E;
  border-bottom: 1px solid rgba(232,104,142,0.4);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}
.single-body a:hover { border-bottom-color: #E8688E; }
.single-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0; }
.single-body h2, .single-body h3 {
  font-weight: 800;
  color: #1A1A2E;
  margin: 1.6em 0 0.6em;
  line-height: 1.5;
}
.single-body h2 { font-size: 22px; }
.single-body h3 { font-size: 18px; }
.single-body ul, .single-body ol { margin: 0 0 1.4em 1.6em; }
.single-body ul li { list-style: disc; }
.single-body ol li { list-style: decimal; }
.single-body blockquote {
  border-left: 3px solid #E8688E;
  padding: 0.4em 0 0.4em 20px;
  margin: 1em 0;
  color: rgba(26,26,46,0.7);
}
.single-external {
  margin-top: 36px;
  text-align: center;
}

/* Single navigation (prev/next) */
.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}
.single-nav-prev a, .single-nav-next a {
  display: block;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(26,26,46,0.08);
  border-radius: 12px;
  color: #1A1A2E;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.single-nav-next a { text-align: right; }
.single-nav-prev a:hover, .single-nav-next a:hover {
  border-color: #E8688E;
  transform: translateY(-2px);
}
.single-nav-direction {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #E8688E;
  margin-bottom: 6px;
}
.single-nav-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
  line-height: 1.6;
}
.single-nav > div:empty { display: none; }

/* Back to top button (light theme variant) */
.btn-outline.btn-outline--dark {
  color: #1A1A2E;
  border-color: rgba(26, 26, 46, 0.4);
  background: rgba(255, 255, 255, 0.4);
}
.btn-outline.btn-outline--dark:hover {
  border-color: #E8688E;
  color: #E8688E;
  background: #fff;
}

.archive-back {
  margin-top: 56px;
  text-align: center;
}
.archive-empty {
  text-align: center;
  font-size: 15px;
  color: rgba(26,26,46,0.55);
  padding: 56px 0;
}

/* News section: 一覧を見る ボタン */
.news-archive-link {
  margin-top: 36px;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .page-header { padding: 120px 0 60px; }
  .page-header-title { font-size: 28px; }
  .container--narrow { padding: 0 20px; }
  .archive-section, .single-section { padding: 56px 0 80px; }

  .news-item--linked {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 8px;
  }
  .news-item--linked .news-arrow { display: none; }

  .single-article {
    padding: 32px 24px;
    border-radius: 14px;
  }
  .single-title { font-size: 21px; }
  .single-body { font-size: 14px; }

  .single-nav { grid-template-columns: 1fr; }
  .single-nav-next a { text-align: left; }
}

/* ===== SECTION COMMON ===== */
.section-dark { background: #1A1A2E; padding: 120px 0; }
.section-light { background: #F5F3F0; color: #1A1A2E; padding: 120px 0; }
.section-offwhite { background: #FAF8F5; color: #1A1A2E; padding: 120px 0; }
.section-pink { background: #E8688E; color: #fff; padding: 120px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #2DD4BF;
  margin-bottom: 12px;
}
.section-eyebrow--dark { color: #20B2AA; }
.section-eyebrow--onpink { color: rgba(255,255,255,0.65); }

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.section-title--light { color: #1A1A2E; }
.section-title--white { color: #fff; }

.section-sub-en {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 56px;
}
.section-sub-en--dim { color: rgba(255,255,255,0.3); }
.section-sub-en--dim-dark { color: rgba(26,26,46,0.3); }

/* ===== CONCEPT ===== */
.concept-heading {
  font-size: 30px;
  font-weight: 800;
  color: #1A1A2E;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 64px;
  line-height: 1.6;
}
.concept-catch-block {
  text-align: center;
  margin-bottom: 72px;
}
.concept-catch-headline {
  font-size: 42px;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 18px;
}
.concept-catch-headline .pink { color: #E8688E; }
.concept-catch-sub {
  font-size: 42px;
  font-weight: 900;
  color: #1A1A2E;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.concept-define {
  text-align: center;
  margin-bottom: 64px;
}
.concept-define-label {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.concept-define-text {
  font-size: 16px;
  line-height: 2.1;
  color: rgba(26,26,46,0.85);
  letter-spacing: 0.06em;
}
.concept-body-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.concept-body-text {
  font-size: 16px;
  line-height: 2.4;
  color: rgba(26,26,46,0.78);
  letter-spacing: 0.06em;
}
.concept-body-text + .concept-body-text {
  margin-top: 22px;
}
.concept-body-text .accent {
  color: #E8688E;
  font-weight: 700;
}
.concept-body-text .quote {
  color: #1A1A2E;
  font-weight: 700;
}

/* ===== SPEAKERS ===== */
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 780px;
  margin: 0 auto;
}
.speaker-card {
  background: #252540;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.35s;
  display: flex;
  flex-direction: column;
}
.speaker-card .speaker-info { flex: 1; display: flex; flex-direction: column; }
.speaker-card:hover { transform: translateY(-6px); }
.speaker-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #20203A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.18);
  position: relative;
}
.speaker-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #E8688E;
}
.speaker-info { padding: 28px 28px 32px; }
.speaker-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
  color: #F4A0B8;
}
.speaker-name-ja {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.speaker-name-en {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.speaker-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 2.0;
}
.speaker-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: auto 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.speaker-sns-item { line-height: 1; }
.speaker-sns-item a {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.speaker-sns-item a:hover,
.speaker-sns-item a:focus-visible {
  color: #F4A0B8;
  border-bottom-color: rgba(244, 160, 184, 0.45);
}
.speaker-sns-item a:focus-visible {
  outline: 2px solid rgba(244, 160, 184, 0.5);
  outline-offset: 3px;
}
.speakers-cross {
  text-align: center;
  font-size: 44px;
  font-weight: 200;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0;
  padding: 0 18px;
  align-self: center;
}

/* ===== SPECIAL GUEST ===== */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
  margin-top: 56px;
}
.guest-card {
  display: flex;
  flex-direction: column;
  background: #252540;
  border: 1px solid rgba(244, 160, 184, 0.1);
  overflow: hidden;
  border-radius: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.guest-card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-4px);
}
.guest-photo {
  width: 100%;
  aspect-ratio: 1;
  background: #1A1A2E;
  overflow: hidden;
  border-radius: 0;
}
.guest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
}
.guest-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 24px;
}
.guest-name {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}
.guest-role {
  font-size: 13px;
  font-weight: 600;
  color: #2DD4BF;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.guest-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.guest-desc a {
  color: #2DD4BF;
  border-bottom: 1px solid rgba(45, 212, 191, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
  word-break: break-all;
}
.guest-desc a:hover,
.guest-desc a:focus-visible {
  color: #5feed6;
  border-bottom-color: rgba(95, 238, 214, 0.7);
}
.guest-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: auto 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.guest-sns-item { line-height: 1; }
.guest-sns-item a {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.guest-sns-item a:hover,
.guest-sns-item a:focus-visible {
  color: #2DD4BF;
  border-bottom-color: rgba(45, 212, 191, 0.45);
}
.guest-sns-item a:focus-visible {
  outline: 2px solid rgba(45, 212, 191, 0.5);
  outline-offset: 3px;
}
.guest-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.guest-and-more {
  text-align: center;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #F4A0B8;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.14em;
  line-height: 1;
}
.guest-and-more::before,
.guest-and-more::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: linear-gradient(to right, rgba(244,160,184,0), rgba(244,160,184,0.45));
}
.guest-and-more::after {
  background: linear-gradient(to right, rgba(244,160,184,0.45), rgba(244,160,184,0));
}
.guest-and-more span { display: inline-block; transform: translateY(-2px); }
@media (max-width: 768px) {
  .guest-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    max-width: 320px;
    margin: 40px auto 0;
  }
  .guest-and-more {
    margin-top: 48px;
    font-size: 18px;
    gap: 14px;
    letter-spacing: 0.1em;
  }
  .guest-and-more::before,
  .guest-and-more::after { flex-basis: 32px; }
}

/* ===== SCHEDULE ===== */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.sched-day {
  background: #252540;
  border-radius: 16px;
  overflow: hidden;
}
.sched-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 36px;
  color: #fff;
}
.sched-day:nth-child(1) .sched-day-head { background: #E8688E; }
.sched-day:nth-child(2) .sched-day-head { background: #2DD4BF; color: #1A1A2E; }
.sched-day:nth-child(3) .sched-day-head { background: #F4A0B8; color: #1A1A2E; }
.sched-day-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}
.sched-day-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.85;
}
.sched-day-body {
  padding: 32px 36px 36px;
}
.sched-coming {
  display: block;
  text-align: center;
  padding: 28px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.22);
}

/* タイムスロット（コンテンツが入った時用）*/
.sched-slots { display: flex; flex-direction: column; gap: 14px; }
.sched-slot {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.sched-slot--has-body:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.sched-slot-head {
  position: relative;
  padding: 22px 60px 22px 26px;
}
.sched-slot-time {
  font-size: 15px;
  font-weight: 800;
  color: #2DD4BF;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.sched-day:nth-child(1) .sched-slot-time { color: #F4A0B8; }
.sched-day:nth-child(3) .sched-slot-time { color: #2DD4BF; }
.sched-slot-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 6px;
}
.sched-slot-with {
  font-size: 16px;
  font-weight: 700;
  color: #F4A0B8;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
}
.sched-day:nth-child(2) .sched-slot-with { color: #2DD4BF; }
.sched-day:nth-child(3) .sched-slot-with { color: #F4A0B8; }
.sched-slot-with-prefix {
  display: inline-block;
  margin-right: 4px;
  font-style: italic;
  font-weight: 600;
  opacity: 0.85;
}

/* アコーディオン トグルボタン */
.sched-slot-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font: inherit;
}
.sched-slot-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.32);
}
.sched-slot-toggle:focus-visible {
  outline: 2px solid #F4A0B8;
  outline-offset: 2px;
}
.sched-slot-toggle-icon {
  position: relative;
  width: 12px;
  height: 12px;
}
.sched-slot-toggle-icon::before,
.sched-slot-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sched-slot-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sched-slot-toggle[aria-expanded="true"] .sched-slot-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/* アコーディオン本体（折りたたみ） */
.sched-slot-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.sched-slot.is-open .sched-slot-body {
  grid-template-rows: 1fr;
}
.sched-slot-body-inner {
  overflow: hidden;
  min-height: 0;
}
.sched-slot.is-open .sched-slot-body-inner {
  padding: 4px 26px 24px;
}
.sched-slot-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 2;
}
.sched-slot-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 18px 0;
}
.sched-slot-guest {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sched-slot-guest-photo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.sched-slot-guest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sched-slot-guest-profile {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.95;
  letter-spacing: 0.02em;
  margin: 0;
  padding-top: 4px;
}

/* ===== TICKETS ===== */
.ticket-list {
  display: grid;
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 48px;
}
.ticket-card {
  background: #fff;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid #E8688E;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ticket-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,26,46,0.07);
}
.ticket-card:nth-child(2) { border-left-color: #2DD4BF; }
.ticket-name {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 4px;
}
.ticket-detail {
  font-size: 13px;
  color: rgba(26,26,46,0.48);
  line-height: 1.9;
}
.ticket-price {
  font-size: 14px;
  font-weight: 700;
  color: #E8688E;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-left: 32px;
}
.ticket-notice {
  text-align: center;
  font-size: 14px;
  color: rgba(26,26,46,0.45);
  margin-bottom: 48px;
}
.ticket-cta-box {
  background: #1A1A2E;
  padding: 56px 48px;
  text-align: center;
  border-radius: 16px;
}
.ticket-cta-text {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 2.2;
  max-width: 620px;
  margin: 0 auto 14px;
}
.ticket-cta-sub {
  font-size: 13px;
  color: #F4A0B8;
  font-weight: 600;
  margin-bottom: 36px;
}
.ticket-cta-sponsor {
  margin: 32px auto 0;
  max-width: 620px;
  font-size: 14px;
  color: #F4A0B8;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #E8688E;
  color: #fff;
  padding: 18px 60px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Sans', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #d45a7e; transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  padding: 16px 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  transition: all 0.3s;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', 'Hiragino Sans', sans-serif;
  background: none;
  cursor: pointer;
}
.btn-outline:hover { border-color: #2DD4BF; color: #2DD4BF; }

/* ===== SIX POINTS ===== */
.six-points-heading {
  font-size: 34px;
  font-weight: 900;
  color: #1A1A2E;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.six-points-heading .pink { color: #E8688E; }
.six-points-sub {
  font-size: 17px;
  font-weight: 500;
  color: rgba(26,26,46,0.65);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin-bottom: 40px;
}
.six-points-lead {
  font-size: 15px;
  color: rgba(26,26,46,0.78);
  text-align: center;
  line-height: 2.2;
  max-width: 760px;
  margin: 0 auto 72px;
  letter-spacing: 0.04em;
}
.six-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.point-card {
  background: #fff;
  border: 1px solid rgba(26,26,46,0.06);
  border-radius: 18px;
  padding: 40px 38px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26,26,46,0.06);
}
.point-num {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  color: #E8688E;
}
.point-card:nth-child(even) .point-num { color: #20B2AA; }
.point-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.point-title {
  font-size: 22px;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.point-tagline {
  font-size: 16px;
  font-weight: 700;
  color: #E8688E;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.point-card:nth-child(even) .point-tagline { color: #20B2AA; }
.point-desc {
  font-size: 14px;
  color: rgba(26,26,46,0.72);
  line-height: 2.1;
  letter-spacing: 0.04em;
}

/* ===== GOODS ===== */
.goods-inner { text-align: center; }
.goods-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 56px;
}
.goods-item {
  background: #fff;
  color: #1A1A2E;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.goods-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,26,46,0.14);
}
.goods-item-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(26,26,46,0.06);
}
.goods-item-photo > img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.goods-item-photo-multi {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.goods-item-photo-multi > img {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  align-self: center;
}
.goods-item-photo-multi > img + img {
  border-left: 1px solid rgba(26,26,46,0.08);
  padding-left: 18px;
  margin-left: 18px;
}
.goods-item-photo-placeholder {
  font-size: 12px;
  color: rgba(26,26,46,0.3);
  letter-spacing: 0.12em;
  font-weight: 600;
}
.goods-item-info {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.goods-item-name {
  font-size: 17px;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}
.goods-item-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #E8688E;
  line-height: 1.5;
}
.goods-item-price-tier .tier-label {
  color: rgba(26,26,46,0.55);
  font-weight: 500;
  margin-right: 6px;
  font-size: 12px;
}
.goods-note {
  text-align: center;
  margin: -32px auto 48px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.goods-announcement {
  max-width: 620px;
  margin: 0 auto;
  padding: 32px 40px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  text-align: center;
}
.goods-announcement-main {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.goods-announcement-main .date {
  display: inline-block;
  padding: 4px 14px;
  background: #fff;
  color: #E8688E;
  border-radius: 999px;
  margin-right: 12px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.goods-announcement-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  line-height: 1.9;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 36px 0;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.faq-q-mark {
  font-size: 20px;
  font-weight: 900;
  color: #E8688E;
  flex-shrink: 0;
  width: 36px;
}
.faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.9;
}
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.faq-a-mark {
  font-size: 20px;
  font-weight: 900;
  color: #2DD4BF;
  flex-shrink: 0;
  width: 36px;
}
.faq-a-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2.1;
}

/* ===== PODCAST ===== */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.podcast-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,26,46,0.12);
  background: #fff;
}
.podcast-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-show-name {
  font-size: 26px;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 28px;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.podcast-desc {
  font-size: 15px;
  color: rgba(26,26,46,0.72);
  line-height: 2.3;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
.podcast-desc .catch {
  color: #E8688E;
  font-weight: 700;
}
.podcast-links-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(26,26,46,0.4);
  margin-bottom: 16px;
}
.podcast-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.podcast-link {
  display: inline-block;
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(26,26,46,0.14);
  color: #1A1A2E;
  background: #fff;
  border-radius: 999px;
  transition: all 0.3s;
}
.podcast-link:hover {
  background: #1A1A2E;
  color: #fff;
  border-color: #1A1A2E;
}

/* ===== PODCAST PROFILES ===== */
.podcast-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 96px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.podcast-profile-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}
.podcast-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,26,46,0.08);
}
.podcast-profile-photo {
  width: 108px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #f0ece9;
}
.podcast-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-profile-info { flex: 1; min-width: 0; }
.podcast-profile-name {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.podcast-profile-name .reading {
  font-size: 12px;
  color: rgba(26,26,46,0.45);
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.podcast-profile-role {
  font-size: 12px;
  color: #E8688E;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.podcast-profile-card:nth-child(2) .podcast-profile-role { color: #20B2AA; }
.podcast-profile-bio {
  font-size: 13px;
  color: rgba(26,26,46,0.72);
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.podcast-voicy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1A1A2E;
  border-bottom: 2px solid #E8688E;
  padding-bottom: 3px;
  letter-spacing: 0.04em;
  transition: color 0.3s, border-color 0.3s;
}
.podcast-profile-card:nth-child(2) .podcast-voicy-link { border-bottom-color: #20B2AA; }
.podcast-voicy-link:hover {
  color: #E8688E;
}
.podcast-profile-card:nth-child(2) .podcast-voicy-link:hover { color: #20B2AA; }

.podcast-voicy-note {
  position: relative;
  max-width: 620px;
  margin: 44px auto 0;
  background: #E8688E;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 22px 32px;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 0.06em;
}
.podcast-voicy-note::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #E8688E;
}

/* ===== NEWS ===== */
.news-list { margin-top: 56px; max-width: 800px; margin-left: auto; margin-right: auto; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(26,26,46,0.08);
}
.news-item:first-child { border-top: 1px solid rgba(26,26,46,0.08); }
.news-date {
  font-size: 14px;
  font-weight: 700;
  color: #E8688E;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.news-text {
  font-size: 15px;
  font-weight: 500;
  color: #1A1A2E;
  line-height: 1.8;
}
.news-text a {
  color: #1A1A2E;
  border-bottom: 1px solid rgba(26,26,46,0.25);
  padding-bottom: 1px;
  margin-left: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.news-text a:hover {
  color: #E8688E;
  border-bottom-color: #E8688E;
}
.news-text a {
  color: #E8688E;
  border-bottom: 1px solid transparent;
}
.news-text a:hover { border-bottom-color: #E8688E; }

/* ===== CONTACT ===== */
.contact-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.contact-text {
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 44px;
  line-height: 2.1;
}
.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #111124;
  padding: 64px 0 36px;
  border-top: 1px solid rgba(45, 212, 191, 0.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 44px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #F4A0B8;
}
.footer-logo span { color: #2DD4BF; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
}
.footer-links a:hover { color: #2DD4BF; }
.footer-copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.08em;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .nav { padding: 0 20px; }
  .container { padding: 0 20px; }
  .section-dark, .section-light, .section-offwhite, .section-pink { padding: 80px 0; }

  .section-title { font-size: 24px; }
  .concept-heading { font-size: 22px; margin-bottom: 48px; }
  .concept-catch-block { margin-bottom: 48px; }
  .concept-catch-headline { font-size: 26px; line-height: 1.6; }
  .concept-catch-sub { font-size: 26px; line-height: 1.6; letter-spacing: 0.04em; }
  .concept-define { margin-bottom: 48px; }
  .concept-define-label { font-size: 15px; letter-spacing: 0.06em; }
  .concept-define-text { font-size: 14px; line-height: 2; text-align: left; }
  .concept-body-text { font-size: 14px; line-height: 2.2; text-align: left; }
  .concept-body-text br { display: none; }

  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 320px;
    margin: 0 auto;
  }
  .speakers-cross { font-size: 36px; padding: 12px 0; }
  .speaker-info { padding: 22px 24px 26px; }
  .speaker-name-ja { font-size: 22px; }
  .speaker-name-en { margin-bottom: 16px; }
  .speaker-desc { font-size: 13px; line-height: 2; }

  .guest-box { padding: 48px 24px; }
  .guest-num { font-size: 56px; }

  .schedule-list { gap: 24px; }
  .sched-day-head { padding: 22px 22px; }
  .sched-day-num { font-size: 18px; }
  .sched-day-date { font-size: 12px; }
  .sched-day-body { padding: 24px 22px 28px; }
  .sched-slot-head { padding: 18px 52px 18px 20px; }
  .sched-slot-title { font-size: 15px; margin-bottom: 4px; }
  .sched-slot-with { font-size: 14px; }
  .sched-slot-toggle { top: 14px; right: 14px; width: 30px; height: 30px; }
  .sched-slot-toggle-icon { width: 10px; height: 10px; }
  .sched-slot-toggle-icon::before,
  .sched-slot-toggle-icon::after { width: 10px; }
  .sched-slot.is-open .sched-slot-body-inner { padding: 2px 20px 22px; }
  .sched-slot-desc { font-size: 13px; line-height: 1.9; }
  .sched-slot-divider { margin: 14px 0; }
  .sched-slot-guest { gap: 14px; }
  .sched-slot-guest-photo { flex: 0 0 56px; width: 56px; height: 56px; }
  .sched-slot-guest-profile { font-size: 12px; line-height: 1.85; padding-top: 2px; }

  .ticket-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 28px;
  }
  .ticket-price { margin-left: 0; }
  .ticket-cta-box { padding: 36px 20px; }
  .ticket-cta-sponsor { font-size: 13px; line-height: 1.9; margin-top: 28px; }
  .ticket-cta-sponsor br { display: none; }

  .podcast-grid { grid-template-columns: 1fr; gap: 40px; }
  .podcast-cover { max-width: 320px; margin: 0 auto; border-radius: 18px; }
  .podcast-show-name { font-size: 20px; text-align: center; margin-bottom: 24px; }
  .podcast-desc { font-size: 14px; line-height: 2.2; }
  .podcast-links { justify-content: center; }
  .podcast-links-label { text-align: center; }

  .podcast-profiles { grid-template-columns: 1fr; gap: 20px; margin-top: 64px; }
  .podcast-profile-card { padding: 28px 24px; gap: 20px; flex-direction: column; align-items: center; text-align: center; }
  .podcast-profile-photo { width: 96px; }
  .podcast-profile-name { font-size: 18px; }
  .podcast-profile-bio { font-size: 13px; text-align: left; }
  .podcast-voicy-note { font-size: 13px; padding: 18px 24px; margin-top: 36px; line-height: 1.7; border-radius: 20px; }

  .news-item { flex-direction: column; gap: 8px; }

  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .contact-buttons { flex-direction: column; align-items: center; }

  .six-points-heading { font-size: 24px; margin-bottom: 16px; }
  .six-points-sub { font-size: 14px; letter-spacing: 0.04em; margin-bottom: 32px; line-height: 1.8; }
  .six-points-lead { font-size: 14px; line-height: 2; margin-bottom: 48px; text-align: left; }
  .six-points-grid { grid-template-columns: 1fr; gap: 16px; }
  .point-card { padding: 32px 24px; border-radius: 14px; }
  .point-num { font-size: 34px; margin-bottom: 14px; }
  .point-icon { width: 60px; height: 60px; margin-bottom: 14px; }
  .point-title { font-size: 19px; }
  .point-tagline { font-size: 14px; }
  .point-desc { font-size: 13px; line-height: 2; }

  .goods-list { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .goods-item-info { padding: 16px 20px 20px; }
  .goods-item-name { font-size: 16px; }
  .goods-announcement { padding: 28px 24px; border-radius: 14px; }
  .goods-announcement-main { font-size: 16px; line-height: 1.8; }
  .goods-announcement-main .date { font-size: 15px; display: block; margin: 0 0 8px; }
  .goods-announcement-sub { font-size: 13px; }
}
