*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-ink: #141414;
  --color-text: #294448;
  --color-muted: #688084;
  --color-paper: #fbffff;
  --color-sand: #e8f7f4;
  --color-clay: #62b7c3;
  --color-clay-dark: #2f7f8e;
  --color-gold: #98ddd0;
  --color-gold-soft: #f7ece7;
  --color-orange-soft: #fcf6f3;
  --color-blush: #f4e6df;
  --color-line: rgba(20, 20, 20, 0.1);
  --color-white: #ffffff;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --shadow-sm: 0 10px 24px rgba(20, 20, 20, 0.05);
  --shadow-md: 0 18px 40px rgba(20, 20, 20, 0.08);
  --shadow-lg: 0 24px 56px rgba(20, 20, 20, 0.1);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(98, 183, 195, 0.18), transparent 26%),
    radial-gradient(circle at top left, rgba(152, 221, 208, 0.16), transparent 20%),
    radial-gradient(circle at bottom left, rgba(244, 230, 223, 0.14), transparent 24%),
    linear-gradient(180deg, #fbffff 0%, #f1fbfb 100%);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 0 0 92px;
}


.section-head {
  margin-bottom: 42px;
}

.section-head-inline {
  margin-top: 42px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  color: var(--color-clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--color-ink);
}

.section-lead {
  margin-top: 16px;
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.95;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-clay), var(--color-clay-dark));
  color: var(--color-white);
  box-shadow: 0 18px 36px rgba(124, 55, 44, 0.2);
}

.btn-outline {
  background: rgba(255, 253, 249, 0.72);
  color: var(--color-clay-dark);
  border-color: rgba(124, 55, 44, 0.24);
}

.btn-outline:hover {
  background: var(--color-clay-dark);
  color: var(--color-white);
}


.btn-lg {
  min-height: 58px;
  padding: 16px 34px;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(86, 55, 48, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  background: rgba(251, 247, 241, 0.92);
  box-shadow: 0 12px 28px rgba(36, 26, 23, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--color-clay-dark);
  letter-spacing: 0.06em;
}

@keyframes logo-hop {
  0%   { transform: translateY(0)    rotate(0deg); }
  25%  { transform: translateY(-12px) rotate(-8deg); }
  50%  { transform: translateY(-7px)  rotate(5deg); }
  70%  { transform: translateY(-3px)  rotate(-2deg); }
  100% { transform: translateY(0)    rotate(0deg); }
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(212, 111, 45, 0.18));
  transform-origin: center bottom;
}

.nav-logo:hover .nav-logo-icon {
  animation: logo-hop 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-clay-dark);
}

.nav-cta {
  background: rgba(255, 253, 249, 0.82);
  border-color: rgba(124, 55, 44, 0.22);
  color: var(--color-clay-dark);
  text-shadow: none;
  box-shadow: none;
}

.nav-links .nav-cta {
  background: rgba(255, 253, 249, 0.82);
  border-color: rgba(124, 55, 44, 0.22);
  color: var(--color-clay-dark);
  box-shadow: none;
}

.nav-cta:hover,
.nav-links .nav-cta:hover {
  background: var(--color-clay-dark);
  border-color: var(--color-clay-dark);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(47, 127, 142, 0.25);
}

.nav-links a[aria-current="page"] {
  color: var(--color-clay-dark);
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-clay);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-clay-dark);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 700;
  color: var(--color-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s;
}

.nav-dropdown-trigger:hover {
  color: var(--color-clay);
}

.nav-dropdown-caret {
  font-size: 0.7rem;
  line-height: 1;
  transition: transform 0.2s;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(36, 26, 23, 0.1);
  padding: 6px 0;
  list-style: none;
  z-index: 200;
}

.nav-dropdown.is-hover-open .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.is-hover-open .nav-dropdown-caret,
.nav-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
  color: var(--color-text);
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
  border-bottom: 0;
}

.nav-dropdown-menu a:hover {
  background: rgba(212, 111, 45, 0.07);
  color: var(--color-clay);
}

.nav-dropdown.is-current-section > .nav-dropdown-trigger {
  color: var(--color-clay);
}



.footer {
  padding: 54px 0 26px;
  background:
    radial-gradient(circle at top left, rgba(152, 221, 208, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(244, 230, 223, 0.16), transparent 24%),
    linear-gradient(180deg, #f2fcfb 0%, #e4f6f4 100%);
  color: var(--color-muted);
}

.footer-inner {
  display: grid;
  gap: 28px;
}

.footer-member-banner {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.footer-member-banner img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.footer-member-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(80, 16, 24, .14);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(98, 183, 195, 0.16);
}
.footer-brand-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin: 0;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(98, 183, 195, 0.12);
  color: var(--color-clay-dark);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-icon:hover {
  background: var(--color-clay-dark);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-icon--youtube { background: rgba(204,0,0,.1); color: #cc0000; }
.footer-social-icon--youtube:hover { background: #cc0000; color: #fff; }
.footer-social-icon--x { background: rgba(0,0,0,.07); color: #000; }
.footer-social-icon--x:hover { background: #000; color: #fff; }
.footer-social-icon--tiktok { background: rgba(0,0,0,.07); color: #010101; }
.footer-social-icon--tiktok:hover { background: #010101; color: #fff; }

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--color-clay-dark);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-brand-name:hover {
  opacity: 0.75;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transform-origin: center bottom;
}

.footer-brand-name:hover .footer-brand-icon {
  animation: logo-hop 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.footer-tagline {
  max-width: 560px;
  font-size: 0.84rem;
  line-height: 1.8;
  text-align: right;
}


.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-col {
  padding: 18px 20px;
  border: 1px solid rgba(98, 183, 195, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.footer-col h4,
.footer-col-heading {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-clay);
  letter-spacing: 0.12em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px 12px 0;
  border-bottom: 1px solid rgba(98, 183, 195, 0.14);
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: padding-left var(--transition), color var(--transition);
}

.footer-col a:hover {
  padding-left: 10px;
  color: var(--color-clay);
}

.footer-col a::after {
  content: "/";
  color: var(--color-clay);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(98, 183, 195, 0.12);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
}

.footer-bottom p + p {
  margin-top: 6px;
}

.footer-privacy-link {
  color: var(--color-muted);
  text-decoration: none;
}

.footer-privacy-link:hover {
  color: var(--color-clay);
  text-decoration: underline;
}

.footer-bottom-sep {
  margin: 0 8px;
  color: rgba(98, 183, 195, 0.3);
}

/* FAQ page */

.faq-intro {
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(98, 183, 195, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-ink);
  line-height: 1.6;
  user-select: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(98, 183, 195, 0.14);
  color: var(--color-clay);
  font-size: 1.1rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.faq-item[open] > summary::after {
  content: '\2212';
  background: var(--color-clay);
  color: #fff;
}

.faq-item summary:hover {
  color: var(--color-clay-dark);
}

.faq-item--female {
  border-color: rgba(217, 98, 106, 0.25);
  background: #fdf0f0;
}

.faq-item--female[open] > summary::after {
  background: #d9626a;
}

.faq-item--female summary:hover {
  color: #b84e55;
}

.faq-item--male {
  border-color: rgba(74, 144, 210, 0.25);
  background: #f0f5fd;
}

.faq-item--male[open] > summary::after {
  background: #4a90d2;
}

.faq-item--male summary:hover {
  color: #2f6faa;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.faq-answer p + p {
  margin-top: 6px;
}

.faq-note {
  font-size: 0.85rem;
  color: var(--color-clay);
  margin-top: 4px;
}

.faq-advice {
  margin-top: 12px;
  padding: 12px 16px;
  border-left: 3px solid var(--color-clay);
  background: rgba(98, 183, 195, 0.06);
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.faq-list-inner {
  margin: 10px 0 4px 16px;
  display: grid;
  gap: 8px;
  font-size: 0.93rem;
  line-height: 1.8;
}

.faq-contact-cta {
  margin-top: 40px;
  text-align: center;
}

.faq-contact-cta p {
  margin-bottom: 16px;
  color: var(--color-muted);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(124, 55, 44, 0.92);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 30px rgba(36, 26, 23, 0.22);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: #5f2920;
  box-shadow: 0 20px 34px rgba(36, 26, 23, 0.28);
}

body.top-page .header {
  background: rgba(251, 247, 241, 0.88);
}


.top-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 72px;
}

.top-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 246, 240, 0.72) 0%, rgba(250, 246, 240, 0.52) 44%, rgba(250, 246, 240, 0.14) 100%),
    url("../images/top.webp") center/cover no-repeat;
}

.top-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(242, 154, 46, 0.1), transparent 20%);
  pointer-events: none;
}

.top-hero-shell {
  position: relative;
  z-index: 1;
}

.top-copy {
  max-width: 780px;
  padding: 34px 0 18px;
}


.top-statement {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: 2.75em;
  line-height: 1.32;
  font-feature-settings: "palt";
  background: linear-gradient(135deg, #7c3d34 0%, #2c6e7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.top-summary {
  max-width: 720px;
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 4px solid rgba(124, 55, 44, 0.4);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 253, 249, 0.68);
  color: #2d1f1b;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 2;
  box-shadow: 0 18px 38px rgba(73, 40, 26, 0.08);
}

.top-summary strong {
  color: var(--color-clay-dark);
  font-weight: 700;
}

.top-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.top-slider-band {
  padding: 0 0 26px;
}

#st-header-under-widgets-box-wrap {
  padding-right: 15px;
  padding-left: 15px;
}

#st-header-under-widgets-box {
  margin: 0 auto 10px;
  padding-top: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(232, 247, 244, 0.72), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(98, 183, 195, 0.12);
  box-shadow: 0 10px 28px rgba(47, 127, 142, 0.08);
}

.top-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 3fr);
  gap: 28px;
  align-items: start;
}

.top-main-column,
.top-side-column {
  min-width: 0;
}

.article-slider {
  --visible-cards: 5;
  --slider-gap: 12px;
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

.article-slider-window {
  overflow: hidden;
  min-height: 0;
  padding: 16px 0 12px;
}

.article-slider-track {
  display: flex;
  gap: var(--slider-gap);
  will-change: transform;
}

.slider-link-card {
  flex: 0 0 calc((100% - (var(--slider-gap) * (var(--visible-cards) - 1))) / var(--visible-cards));
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(98, 183, 195, 0.14);
  box-shadow: 0 12px 24px rgba(47, 127, 142, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  color: inherit;
  text-decoration: none;
}

.slider-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(47, 127, 142, 0.14);
  border-color: rgba(98, 183, 195, 0.28);
}

.slider-link-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(232, 247, 244, 1), rgba(244, 252, 253, 1));
  overflow: hidden;
}

.slider-link-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.slider-link-body {
  display: block;
  padding: 12px 12px 14px;
  background: rgba(255, 255, 255, 0.98);
}

.slider-link-label {
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}


.article-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 0;
  padding: 0 0 16px;
}

.article-slider-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid rgba(124, 55, 44, 0.12);
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.92);
  color: var(--color-clay-dark);
  font-size: 1.3rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.article-slider-button:hover {
  transform: translateY(-2px);
  background: var(--color-clay-dark);
  color: var(--color-white);
}

.article-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.article-slider-dot {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.article-slider-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(98, 183, 195, 0.4);
  transition: background var(--transition), transform var(--transition);
}

.article-slider-dot.is-active::before {
  background: var(--color-clay-dark);
  transform: scale(1.3);
}

.ponde-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.ponde-post-grid-news {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 18px;
}

.news-panel {
  padding: 20px 22px 22px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.about-panel {
  margin-bottom: 22px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

#about-ease.section-head-inline {
  margin-top: 0;
  margin-bottom: 18px;
  padding: 0;
}

#about-ease .section-title {
  margin-top: 6px;
  color: var(--color-ink);
  font-size: 1.5rem;
  line-height: 1.45;
}

.about-copy p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 2;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.about-media-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-media-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-subhead {
  margin: 24px 0 6px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-clay-dark);
}

.about-seikatsu-hook {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-clay);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.seikatsu-main-copy {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-clay-dark);
  text-align: center;
  padding: 8px 0;
}

.seikatsu-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seikatsu-list li {
  padding: 16px 20px;
  background: rgba(98, 183, 195, 0.08);
  border-left: 3px solid var(--color-clay);
  border-radius: 0 10px 10px 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.seikatsu-voices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.seikatsu-voices blockquote {
  margin: 0;
  padding: 14px 20px;
  background: rgba(232, 247, 244, 0.8);
  border-left: 3px solid var(--color-clay);
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-ink);
}

.news-panel .ponde-post-card {
  border-color: rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.news-panel .ponde-post-card:hover {
  transform: none;
  box-shadow: none;
}

.ponde-post-card {
  padding: 24px 22px;
  border: 1px solid rgba(86, 55, 48, 0.08);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ponde-post-card:hover,
.sidebar-profile:hover,
.sidebar-menu:hover,
.sidebar-social:hover,
.sidebar-menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ponde-post-card h3 {
  margin-top: 12px;
  color: var(--color-ink);
  font-size: 1.14rem;
  line-height: 1.7;
}

.ponde-post-card p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}


.ponde-news-post {
  display: grid;
  grid-template-columns: minmax(220px, 384px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
}

.ponde-post-grid-news .ponde-news-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ponde-news-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 384px;
  max-height: 256px;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  background: rgba(232, 247, 244, 0.92);
}

.ponde-news-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ponde-news-body {
  min-width: 0;
  padding: 8px 16px 8px 0;
}

.ponde-news-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.ponde-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ponde-news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--color-gold-soft);
  color: var(--color-clay-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ponde-news-tag--category {
  background: rgba(98, 183, 195, 0.18);
  color: var(--color-clay);
}

.ponde-post-grid-news .ponde-news-post h3 {
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.ponde-post-grid-news .ponde-news-post p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.9;
}

.news-action {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  margin-top: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-clay-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-decoration: none;
}

.news-action::after {
  content: "→";
  margin-left: 8px;
  font-size: 0.95em;
  transition: transform var(--transition);
}

.news-action:hover {
  color: var(--color-clay);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.news-action:hover::after {
  transform: translateX(4px);
}

#news.section-head-inline {
  margin-top: 0;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#news .section-title {
  margin-top: 0;
  color: var(--color-clay);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

#news .section-label {
  margin-bottom: 10px;
}

.sidebar-profile,
.sidebar-menu {
  border: 1px solid rgba(98, 183, 195, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(232, 247, 244, 0.34), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sidebar-profile,
.sidebar-menu {
  padding: 24px 22px;
}

.sidebar-profile {
  position: sticky;
  top: 104px;
}

.sidebar-profile-label {
  display: inline-block;
  font-family: var(--font-serif);
  color: var(--color-clay);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.sidebar-profile-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--color-clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sidebar-profile-link:hover {
  color: var(--color-clay-dark);
}

.sidebar-profile h2,
.sidebar-title {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--color-ink);
}

#menu .sidebar-title,
#ease-services .sidebar-title,
#consultation .sidebar-title,
#recommend .sidebar-title {
  margin-top: 0;
  color: var(--color-clay);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.sidebar-profile h3 {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--color-ink);
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: relative;
  font-feature-settings: "palt";
}

.sidebar-profile p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.9;
  text-align: left;
}


.sidebar-menu {
  margin-top: 18px;
}

.sidebar-profile-inline {
  position: static;
  margin-top: 0;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(232, 247, 244, 0.34), rgba(255, 255, 255, 0.98));
}

.sidebar-menu {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(232, 247, 244, 0.34), rgba(255, 255, 255, 0.98));
}

.sidebar-profile-logo {
  display: block;
  width: 148px;
  height: 148px;
  margin-top: 14px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(232, 247, 244, 0.92);
  border: 0;
  object-fit: cover;
  box-shadow: none;
  transition: transform 0.45s ease;
}

.slider-link-card:hover .slider-link-thumb img,
.slider-link-card:focus-visible .slider-link-thumb img,
.ponde-news-post:hover .ponde-news-thumb img,
.ponde-news-post:focus-visible .ponde-news-thumb img,
@keyframes logo-bounce {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-12px); }
  40%  { transform: translateY(0); }
  60%  { transform: translateY(-6px); }
  80%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.sidebar-profile:hover .sidebar-profile-logo,
.sidebar-profile:focus-within .sidebar-profile-logo {
  animation: logo-bounce 0.6s ease;
}

.sidebar-menu-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 2px 15px 0;
  border-bottom: 1px solid rgba(98, 183, 195, 0.14);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: padding-left var(--transition), color var(--transition), border-color var(--transition);
  color: inherit;
  text-decoration: none;
}

.sidebar-menu-item strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}

.sidebar-menu-item:hover {
  padding-left: 10px;
  border-color: rgba(98, 183, 195, 0.26);
}

.sidebar-menu-item::after {
  content: "/";
  color: var(--color-clay);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}


.sidebar-recommend {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(98, 183, 195, 0.12);
  box-shadow: var(--shadow-sm);
}

.sidebar-recommend-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 0;
}

.sidebar-recommend-list li {
  border-bottom: 1px solid rgba(98, 183, 195, 0.1);
}

.sidebar-recommend-list li:last-child {
  border-bottom: none;
}

.sidebar-recommend-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.sidebar-recommend-list a::after {
  content: "/";
  color: var(--color-clay);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-recommend-list a:hover {
  color: var(--color-clay-dark);
  padding-left: 6px;
}

.content-panel {
  margin-top: 28px;
}

.content-panel .section-head-inline {
  margin-top: 0;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.content-panel .section-title {
  margin-top: 6px;
  font-size: 1.5rem;
  line-height: 1.45;
}

.content-panel-body p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.9;
}

.content-panel-body p + p {
  margin-top: 14px;
}

.yt-embed-wrapper {
  position: relative;
  width: 50%;
  min-width: 280px;
  aspect-ratio: 16 / 9;
  margin-top: 5px;
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.yt-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-panel-media {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(98, 183, 195, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.content-panel-media--80 {
  max-width: 50%;
}

.content-panel-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.content-panel-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.content-panel-embed {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(98, 183, 195, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.content-panel-embed .twitter-timeline {
  margin-top: 0;
}

/* note 一覧：1列・画像左 */
.note-post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* TOP：1列横並び（画像左・テキスト右） */
.note-post-list--home {
  grid-template-columns: 1fr;
  gap: 16px;
}

.note-post-card {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(98, 183, 195, 0.14);
  box-shadow: 0 2px 14px rgba(36, 26, 23, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.note-post-card:hover {
  box-shadow: 0 10px 32px rgba(36, 26, 23, 0.13);
  transform: translateY(-3px);
}

/* 一覧：横並び（画像左・テキスト右） */
.note-post-link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
  color: inherit;
  text-decoration: none;
  min-height: 148px;
}

/* TOP：横並びリンク（画像あり） */
.note-post-list--home .note-post-link {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  height: auto;
  min-height: 110px;
}

/* TOP：画像なし時はフル幅 */
.note-post-list--home .note-post-link:not(:has(.note-post-thumb)) {
  grid-template-columns: 1fr;
  min-height: unset;
}

/* 一覧サムネイル：カード全高を埋める */
.note-post-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(98, 183, 195, 0.18) 0%, rgba(232, 247, 244, 0.95) 100%);
}

/* TOP サムネイル：横並び固定高 */
.note-post-list--home .note-post-thumb {
  height: 100%;
  aspect-ratio: unset;
}

.note-post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.note-post-link:hover .note-post-thumb img,
.note-post-link:focus-visible .note-post-thumb img {
  transform: scale(1.07);
}

/* 一覧テキスト：上下中央寄せ */
.note-post-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  justify-content: center;
}

/* TOP テキスト：上寄せ */
.note-post-list--home .note-post-body {
  padding: 12px 16px;
  justify-content: flex-start;
}

.note-post-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.note-post-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-clay-dark);
  margin-bottom: 2px;
}
.note-post-author-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.note-post-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.note-post-meta::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--color-clay);
  border-radius: 999px;
  flex-shrink: 0;
}

.note-post-body strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
}

/* note ページイントロ */
.note-page-intro {
  margin-bottom: 36px;
  padding: 20px 24px;
  background: rgba(232, 247, 244, 0.6);
  border-radius: 16px;
  border-left: 3px solid var(--color-clay);
}
.note-page-intro p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin: 0;
}
.note-page-intro p + p {
  margin-top: 10px;
}

/* note 著者セクション */
.note-author-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border, #e8e0d8);
}
.note-author-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.note-author-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.note-author-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-border, #e8e0d8);
}
.note-author-info {
  flex: 1;
  min-width: 0;
}
.note-author-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.note-author-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.topic-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--color-clay-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.content-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 6px;
}

/* ===== Content accordion ===== */
.content-accordion-text {
  position: relative;
  max-height: 9em;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.content-accordion-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.5em;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.98));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.content-accordion-text.is-open {
  max-height: 3000px;
}

.content-accordion-text.is-open::after {
  opacity: 0;
}

.content-accordion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 16px;
  background: none;
  border: 1.5px solid var(--color-clay);
  border-radius: 20px;
  color: var(--color-clay-dark);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.content-accordion-toggle:hover {
  background: var(--color-sand);
}

.content-accordion-toggle .accordion-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-style: normal;
}

.content-accordion-toggle.is-open .accordion-arrow {
  transform: rotate(180deg);
}

.content-accordion-toggle + .topic-link {
  margin-top: 28px;
}

.content-panel-links .topic-link {
  margin-top: 0;
}

.topic-link.is-muted {
  color: var(--color-muted);
}

.about-voice-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--color-sand);
  border-left: 4px solid var(--color-clay);
  border-radius: 8px;
}

.about-voice-banner-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
}


@media (max-width: 600px) {
  .about-voice-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1080px) {
  .top-hero-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-layout {
    grid-template-columns: 1fr;
  }

  .article-slider {
    --visible-cards: 4;
  }

  .ponde-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-profile {
    position: static;
  }

  .sidebar-menu {
    position: static;
  }

  .hero-shell,
  .social-layout,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hub-sub-grid,
  .news-grid,
  .value-grid,
  .content-grid,
  .social-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-social {
    align-items: flex-start;
  }
  .footer-col-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-tagline {
    text-align: left;
  }
}

@media (max-width: 920px) {
  .article-slider {
    --visible-cards: 3;
  }
}

@media (max-width: 760px) {
  .top-hero {
    padding-top: 118px;
  }

  .top-statement {
    font-size: 2.2em;
  }

  .article-slider-window {
    min-height: 0;
  }

  .article-slider-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .article-slider {
    --visible-cards: 2;
    --slider-gap: 10px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .note-post-list,
  .note-post-list--home {
    grid-template-columns: 1fr;
  }

  .about-media-row {
    grid-template-columns: 1fr;
  }

  .note-post-link {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }

  .note-post-list--home .note-post-link {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
  }

  .note-post-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .note-post-list--home .note-post-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .ponde-news-post {
    grid-template-columns: 1fr;
  }

  .ponde-news-body {
    padding: 4px 4px 8px 4px;
  }

  .content-panel-media-grid {
    grid-template-columns: 1fr;
  }

  .ponde-news-thumb {
    max-width: 100%;
    max-height: 256px;
  }

  .ponde-news-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ponde-post-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 0 0 72px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 18px;
    background: rgba(251, 247, 241, 0.98);
    border-bottom: 1px solid rgba(86, 55, 48, 0.08);
    box-shadow: 0 16px 28px rgba(36, 26, 23, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: none;
    background: transparent;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 12px 16px 12px 24px;
    font-size: 0.88rem;
    color: var(--color-muted);
    border-bottom: 1px solid rgba(86, 55, 48, 0.06);
  }

  .nav-dropdown-trigger {
    width: 100%;
    padding: 14px 6px;
    border-bottom: 1px solid rgba(86, 55, 48, 0.06);
    justify-content: space-between;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 6px;
    border-bottom: 1px solid rgba(86, 55, 48, 0.06);
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links .btn.nav-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    margin-top: 10px;
    padding: 13px 16px;
    background: linear-gradient(135deg, var(--color-clay), var(--color-clay-dark));
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(47, 127, 142, 0.25);
    font-weight: 700;
  }

  .nav-links .btn.nav-cta:hover {
    background: var(--color-clay-dark);
    color: var(--color-white);
  }

  .hero {
    padding-top: 118px;
  }

  .footer-links,
  .footer-sub-links {
    flex-direction: column;
    gap: 12px;
  }

  .section-head-inline {
    margin-top: 36px;
  }
}

/* ============================================================
   Subpage Layout
   ============================================================ */
.sub-page-main {
  padding-top: 78px;
}

.page-hero {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--color-line);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.page-breadcrumb a {
  color: var(--color-clay);
  transition: opacity var(--transition);
}

.page-breadcrumb a:hover { opacity: 0.7; }

.page-breadcrumb-sep { opacity: 0.4; }

.page-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
}

.page-body {
  padding: 56px 0 100px;
}

/* Contact */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 48px;
}

.contact-method {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-method-label {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-clay);
  margin-bottom: 10px;
}

.contact-method-label--female {
  color: #d9626a;
}

.contact-method-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-ink);
}

.contact-method-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 40px;
  margin-bottom: 8px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(98, 183, 195, 0.3);
  background: #fff;
  color: var(--color-clay-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.pagination-btn:hover {
  background: var(--color-gold-soft);
  border-color: var(--color-clay);
  color: var(--color-clay-dark);
}

.pagination-btn.is-current {
  background: var(--color-clay);
  color: #fff;
  border-color: var(--color-clay);
  font-weight: 700;
  pointer-events: none;
}

/* Contact form */
.contact-sent {
  background: #f0faf4;
  border: 1px solid #7dc9a0;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 40px;
  color: #2a7a50;
  line-height: 1.8;
}

.contact-error {
  background: #fff4f4;
  border: 1px solid #f0a0a0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #c0392b;
  font-size: 0.9rem;
}

.contact-form {
  margin-bottom: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-required {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb, 180,120,100), 0.12);
}

.form-group textarea {
  resize: vertical;
  line-height: 1.7;
}

.contact-submit {
  margin-top: 8px;
  min-width: 160px;
}

/* Join gender tabs */
.join-gender-tabs {
  margin-top: 32px;
}

.join-tab-nav {
  display: flex;
  gap: 8px;
  background: rgba(98, 183, 195, 0.1);
  border-radius: 50px;
  padding: 6px;
  margin-bottom: 28px;
}

.join-tab-btn {
  flex: 1;
  padding: 13px 24px;
  background: none;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.04em;
}

.join-tab-btn.is-active {
  background: var(--color-clay);
  color: #fff;
  box-shadow: 0 4px 16px rgba(98, 183, 195, 0.4);
}

.join-tab-btn:hover:not(.is-active) {
  color: var(--color-clay-dark);
  background: rgba(98, 183, 195, 0.15);
}

.join-tab-btn[data-tab="female"].is-active {
  background: #d9626a;
  border-color: #d9626a;
  box-shadow: 0 4px 16px rgba(217, 98, 106, 0.3);
}

.join-tab-btn[data-tab="female"]:hover:not(.is-active) {
  color: #d9626a;
  background: rgba(217, 98, 106, 0.08);
}

.join-tab-btn[data-tab="male"].is-active {
  background: #4a90d2;
  border-color: #4a90d2;
  box-shadow: 0 4px 16px rgba(74, 144, 210, 0.3);
}

.join-tab-btn[data-tab="male"]:hover:not(.is-active) {
  color: #4a90d2;
  background: rgba(74, 144, 210, 0.08);
}

.join-tab-panel {
  animation: tabFadeIn 0.25s ease;
}

.join-tab-panel.is-hidden {
  display: none;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.join-tab-note {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.join-tab-note--female {
  background: rgba(232, 200, 210, 0.18);
  border-left: 3px solid #d4919b;
}

.join-tab-note--male {
  background: rgba(98, 183, 195, 0.1);
  border-left: 3px solid var(--color-clay);
}

.join-tab-cta {
  text-align: center;
  padding: 8px 0 12px;
}

.join-cta-btn {
  min-width: 260px;
}

/* Contents article detail */
.contents-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contents-article-thumb {
  margin: 0 auto 28px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 640px;
  text-align: center;
}

.contents-article-thumb img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.contents-article-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-muted);
  border-left: 3px solid var(--color-clay);
  padding: 12px 20px;
  background: rgba(98, 183, 195, 0.06);
  border-radius: 0 10px 10px 0;
  margin-bottom: 32px;
}

.contents-article-body {
  margin-top: 8px;
}

.contents-article-body p {
  line-height: 1.95;
  margin-bottom: 16px;
}

.contents-article-footer {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(98, 183, 195, 0.2);
}

/* Join steps */
.join-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0 48px;
}

.join-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.join-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-clay);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
}

.join-step-body h3 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.join-step-body p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

/* YouTube section headings */
.yt-section {
  margin-top: 48px;
}

.yt-section:first-child {
  margin-top: 32px;
}

.yt-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-clay);
}

.yt-section-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0;
}

/* YouTube grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.yt-grid-shorts {
  grid-template-columns: repeat(4, 1fr);
}

.yt-grid-shorts .yt-card-thumb img {
  aspect-ratio: 9 / 16;
}

.yt-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
  color: inherit;
}

.yt-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.yt-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.yt-card-body {
  padding: 14px 16px 18px;
}

.yt-card-meta {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.yt-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-ink);
}

/* easeTV */
.easetv-group {
  margin-bottom: 40px;
}

.easetv-group-thumb {
  margin-bottom: 12px;
  text-align: center;
}

.easetv-group-thumb img {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  display: inline-block;
}

.easetv-participated {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(183, 140, 98, 0.15);
  color: var(--color-accent, #b78c62);
  border: 1px solid rgba(183, 140, 98, 0.35);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
  flex-shrink: 0;
}

.easetv-card--no-link {
  cursor: default;
}

.easetv-group-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.easetv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.easetv-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}

.easetv-card:hover {
  background: rgba(98, 183, 195, 0.07);
  border-color: var(--color-clay);
}

.easetv-card-icon {
  font-size: 0.85rem;
  color: var(--color-clay);
  flex-shrink: 0;
}

.easetv-card-body {
  flex: 1;
  min-width: 0;
}

.easetv-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.5;
}

.easetv-card-meta {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 2px;
  display: flex;
  gap: 10px;
}

.easetv-card-arrow {
  font-size: 0.85rem;
  color: var(--color-muted);
  flex-shrink: 0;
}

/* easeTV index grid (list page) */
.easetv-index-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.easetv-index-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: box-shadow 0.18s, border-color 0.18s;
}

.easetv-index-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--color-clay, #c8a882);
}

.easetv-index-card-thumb {
  flex-shrink: 0;
  width: 120px;
}

.easetv-index-card-thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.easetv-index-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.easetv-index-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}

.easetv-index-card-count {
  font-size: 0.82rem;
  color: var(--color-muted);
}

@media (max-width: 480px) {
  .easetv-index-card-thumb {
    width: 80px;
  }
}

/* Voice */
.voice-tabs {
  display: flex;
  gap: 8px;
  margin: 24px 0 28px;
}

.voice-tab-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--color-line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-muted);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.voice-tab-btn.is-active {
  background: var(--color-clay);
  border-color: var(--color-clay);
  color: #fff;
}

.voice-tab-btn:not(.is-active):hover {
  border-color: var(--color-clay);
  color: var(--color-clay);
}

.voice-tab-btn--female.is-active {
  background: #d9626a;
  border-color: #d9626a;
  color: #fff;
}

.voice-tab-btn--female:not(.is-active):hover {
  border-color: #d9626a;
  color: #d9626a;
}

.voice-tab-btn--male.is-active {
  background: #4a90d2;
  border-color: #4a90d2;
  color: #fff;
}

.voice-tab-btn--male:not(.is-active):hover {
  border-color: #4a90d2;
  color: #4a90d2;
}

.voice-card.voice-card--female {
  border-color: rgba(217, 98, 106, 0.25);
  border-left-color: #d9626a;
  background: #fdf0f0;
}

.voice-card.voice-card--female .voice-card-icon {
  color: #d9626a;
}

.voice-card.voice-card--male {
  border-color: rgba(74, 144, 210, 0.25);
  border-left-color: #4a90d2;
  background: #f0f5fd;
}

.voice-card.voice-card--male .voice-card-icon {
  color: #4a90d2;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-clay);
  border-radius: 8px;
}

.voice-card-icon {
  font-size: 1.1rem;
  color: var(--color-clay);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.voice-card-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--color-text);
  white-space: pre-wrap;
  word-break: break-word;
}

/* easeTV home grid (TOP page) */
.easetv-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0 24px;
}

.easetv-home-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--color-line);
  overflow: hidden;
  text-decoration: none;
  background: var(--color-white);
  transition: box-shadow 0.2s, transform 0.2s;
}

.easetv-home-card:hover {
  box-shadow: 0 6px 20px rgba(36, 26, 23, 0.1);
  transform: translateY(-2px);
}

.easetv-home-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface);
}

.easetv-home-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.easetv-home-body {
  padding: 12px 14px;
}

.easetv-home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.easetv-home-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.5;
}

/* 404 */
.not-found-shell {
  max-width: 560px;
  margin: 60px auto 80px;
  text-align: center;
}

.not-found-code {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-clay);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.25;
}

.not-found-message {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.not-found-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.not-found-nav p {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.not-found-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.not-found-nav a {
  font-size: 0.85rem;
  padding: 6px 14px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  color: var(--color-text);
  transition: border-color 0.15s, color 0.15s;
}

.not-found-nav a:hover {
  border-color: var(--color-clay);
  color: var(--color-clay);
}

/* Privacy */
.privacy-body {
  max-width: 720px;
}

.privacy-body h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-line);
}

.privacy-body p,
.privacy-body li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--color-text);
}

.privacy-body p { margin-bottom: 10px; }

.privacy-body ul {
  padding-left: 1.4em;
  margin-bottom: 14px;
}

@media (max-width: 760px) {
  .contact-methods { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
  .yt-grid-shorts { grid-template-columns: repeat(2, 1fr); }
  .page-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .yt-grid { grid-template-columns: 1fr; }
  .yt-grid-shorts { grid-template-columns: repeat(2, 1fr); }
}

.btn-gender {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-gender:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn-gender--female {
  background: linear-gradient(135deg, #e07a80, #d9626a);
  box-shadow: 0 8px 24px rgba(217, 98, 106, 0.35);
}

.btn-gender--male {
  background: linear-gradient(135deg, #5fa3e0, #4a90d2);
  box-shadow: 0 8px 24px rgba(74, 144, 210, 0.35);
}

.contents-article-ended {
  color: var(--color-muted);
  font-size: 0.88rem;
  margin: 0 !important;
}

/* ===== Profile Page ===== */
.profile-hero-section {
  margin-bottom: 32px;
}

.profile-hero-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: var(--color-surface);
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.profile-hero-image img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-clay);
}

.profile-hero-info {
  flex: 1;
}

.profile-name {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--color-ink);
  margin: 0 0 4px;
}

.profile-title {
  font-size: 0.95rem;
  color: var(--color-clay);
  font-weight: 600;
  margin: 0 0 4px;
}

.profile-location {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0 0 20px;
}

.profile-sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-sns-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.profile-sns-item:hover {
  border-color: var(--color-clay);
  color: var(--color-clay);
  background: rgba(98, 183, 195, 0.07);
}
.profile-sns-item--youtube { border-color: rgba(204,0,0,.3); color: #cc0000; }
.profile-sns-item--youtube:hover { border-color: #cc0000; background: rgba(204,0,0,.07); color: #cc0000; }
.profile-sns-item--x { border-color: rgba(0,0,0,.2); color: #000; }
.profile-sns-item--x:hover { border-color: #000; background: rgba(0,0,0,.05); color: #000; }
.profile-sns-item--tiktok { border-color: rgba(0,0,0,.2); color: #010101; }
.profile-sns-item--tiktok:hover { border-color: #010101; background: rgba(0,0,0,.05); color: #010101; }

.profile-activity-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.profile-activity-item:last-child {
  border-bottom: none;
}

.profile-activity-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-clay);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.profile-activity-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-ink);
}

.profile-activity-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-body);
}

.profile-activity-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-activity-link:hover {
  color: var(--color-clay-dark);
}


.profile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.profile-cta-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.profile-cta-card:hover {
  border-color: var(--color-clay);
  box-shadow: 0 4px 16px rgba(98, 183, 195, 0.15);
  transform: translateY(-2px);
}

.profile-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-clay);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-ink);
}

.profile-cta-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
  flex: 1;
}

.profile-cta-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-clay);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .profile-cta-grid {
    grid-template-columns: 1fr;
  }
}
  .profile-hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .profile-sns-list {
    justify-content: center;
  }

  .profile-activity-item {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== Planner Page ===== */
.planner-female-banner {
  margin: 24px 0 8px;
  padding: 16px 20px;
  background: rgba(217, 98, 106, 0.08);
  border-left: 4px solid #d9626a;
  border-radius: 0 8px 8px 0;
}

.planner-female-banner p {
  margin: 0;
  color: #c0454e;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
}

/* ===== Gaming Page ===== */

.gaming-hero {
  background:
    radial-gradient(circle at top right, rgba(47, 127, 142, 0.22), transparent 40%),
    radial-gradient(circle at bottom left, rgba(98, 183, 195, 0.18), transparent 40%),
    linear-gradient(135deg, #0e1a2b 0%, #162438 60%, #1a2e3f 100%);
}

.gaming-hero .page-breadcrumb a,
.gaming-hero .page-breadcrumb,
.gaming-hero .page-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.55);
}

.gaming-hero .section-label {
  color: var(--color-clay);
}

.gaming-hero .page-title {
  color: #ffffff;
}

.gaming-hero-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* Tags */
.gaming-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.gaming-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(98, 183, 195, 0.12);
  border: 1px solid rgba(98, 183, 195, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--color-clay-dark);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Style grid */
.gaming-style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.gaming-style-card {
  background: var(--color-sand);
  border-radius: var(--radius-sm);
  padding: 24px 18px;
  text-align: center;
}

.gaming-style-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gaming-style-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-ink);
}

.gaming-style-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0 !important;
}

/* Members grid */
.gaming-members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
  justify-items: center;
}

.gaming-member-card {
  text-align: center;
}

.gaming-member-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  max-width: 120px;
}

.gaming-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gaming-member-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 !important;
}

.gaming-member-meta {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin: 2px 0 0 !important;
}

/* Watch banner */
.gaming-watch-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #0e1a2b 0%, #1a2e3f 100%);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 16px;
}

.gaming-watch-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gaming-watch-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ff0000;
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.gaming-watch-label {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 4px !important;
  letter-spacing: 0.03em;
}
.gaming-watch-sublabel {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.gaming-conditions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 24px;
}
.gaming-condition-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(14,26,43,0.06), rgba(26,46,63,0.06));
  border: 1px solid rgba(47,127,142,0.2);
  border-left: 4px solid var(--color-clay-dark);
  border-radius: 0 10px 10px 0;
}
.gaming-condition-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.gaming-condition-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 4px;
}
.gaming-condition-body p {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}


.gaming-watch-btn {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .gaming-style-grid { grid-template-columns: 1fr 1fr; }
  .gaming-members-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .gaming-style-grid { grid-template-columns: 1fr; }
  .gaming-members-grid { grid-template-columns: repeat(2, 1fr); }
  .gaming-watch-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .gaming-watch-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .gaming-members-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================
   LP Page
   ======================== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 2px 12px rgba(20,20,20,0.06);
}

.lp-header-inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-ink);
}

.lp-logo img {
  width: 36px;
  height: 36px;
}

.lp-header-cta {
  display: inline-block;
  padding: 9px 22px;
  background: linear-gradient(135deg, #e8768a 0%, #c9435c 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(232,118,138,0.3);
}

.lp-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232,118,138,0.4);
}

.lp-anchor-nav {
  border-top: 1px solid var(--color-line);
  background: rgba(251,255,255,0.96);
}

.lp-anchor-nav-inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.lp-anchor-nav-inner::-webkit-scrollbar { display: none; }

.lp-anchor-nav-inner a {
  flex-shrink: 0;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.lp-anchor-nav-inner a:hover {
  color: var(--color-clay-dark);
  border-bottom-color: var(--color-clay);
}

.lp-hero {
  padding: 80px 0 72px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(98,183,195,0.22), transparent 36%),
    radial-gradient(circle at bottom left, rgba(244,230,223,0.18), transparent 36%),
    linear-gradient(180deg, #fbffff 0%, #f1fbfb 100%);
}

.lp-hero-inner {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-hero-label {
  display: inline-block;
  font-family: var(--font-serif);
  color: var(--color-clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lp-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.45;
  color: var(--color-ink);
  margin-bottom: 24px;
}

.lp-hero-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.95;
  margin-bottom: 44px;
}

.lp-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lp-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-cta-btn {
  display: inline-block;
  padding: 18px 44px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}

.lp-cta-btn--female {
  background: linear-gradient(135deg, #e8768a 0%, #c9435c 100%);
  box-shadow: 0 10px 28px rgba(232,118,138,0.38);
}

.lp-cta-btn--female:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(232,118,138,0.48);
}

.lp-cta-btn--male {
  background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-clay-dark) 100%);
  box-shadow: 0 10px 28px rgba(98,183,195,0.35);
}

.lp-cta-btn--male:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(98,183,195,0.45);
}

.lp-cta-note {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.lp-section {
  padding: 72px 0;
}

.lp-section--alt {
  background: var(--color-sand);
}

.lp-section-inner {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-section-label {
  display: inline-block;
  font-family: var(--font-serif);
  color: var(--color-clay);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lp-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--color-ink);
  line-height: 1.45;
  margin-bottom: 32px;
}

.lp-section-lead {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.95;
  margin-bottom: 36px;
}

.lp-pain-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

.lp-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.lp-pain-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-pain-body strong {
  display: block;
  font-size: 1rem;
  color: var(--color-ink);
  margin-bottom: 4px;
  font-weight: 700;
}

.lp-pain-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.lp-quote {
  border-left: 4px solid var(--color-clay);
  padding: 18px 22px;
  background: var(--color-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-ink);
  line-height: 1.85;
  margin: 28px 0;
}

.lp-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.95;
  margin-bottom: 20px;
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.lp-feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--color-line);
}

.lp-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.lp-feature-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-ink);
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-feature-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.lp-voices {
  display: grid;
  gap: 18px;
}

.lp-voice-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--color-line);
}

.lp-voice-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 700;
}

.lp-voice-icon--female {
  background: #fde8ed;
  color: #c9435c;
}

.lp-voice-icon--male {
  background: #e3f4f7;
  color: #2f7f8e;
}

.lp-voice-meta {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.lp-voice-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text);
}

.lp-cta-section {
  padding: 88px 0;
  text-align: center;
  background: linear-gradient(135deg, #e8f7f4 0%, #fbffff 50%, #fde8ed 100%);
}

.lp-cta-section-inner {
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-cta-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--color-ink);
  line-height: 1.5;
  margin-bottom: 16px;
}

.lp-cta-section-sub {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 44px;
  line-height: 1.95;
}

.lp-footer {
  padding: 28px 0;
  border-top: 1px solid var(--color-line);
  text-align: center;
  background: var(--color-paper);
}

.lp-footer-inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.lp-footer-links a {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-footer-copy {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.lp-divider {
  width: 48px;
  height: 3px;
  background: var(--color-clay);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.lp-step-list {
  list-style: none;
  display: grid;
  gap: 20px;
  counter-reset: lp-step;
}

.lp-step-item {
  counter-increment: lp-step;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}

.lp-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-clay), var(--color-clay-dark));
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-step-body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.lp-step-body p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.lp-hero, .lp-section, .lp-cta-section {
  scroll-margin-top: 90px;
}

.lp-flow-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--color-line);
}

.lp-flow-tab {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: var(--color-muted);
  transition: color var(--transition), border-color var(--transition);
}

.lp-flow-tab--female.is-active {
  color: #c9435c;
  border-bottom-color: #c9435c;
}

.lp-flow-tab--male.is-active {
  color: var(--color-clay-dark);
  border-bottom-color: var(--color-clay-dark);
}

.lp-flow-panel.is-hidden { display: none; }

.lp-flow-note {
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.lp-flow-note--female {
  background: #fde8ed;
  color: #7a2035;
  border-left: 4px solid #e8768a;
}

.lp-flow-note--male {
  background: #e3f4f7;
  color: #1a4f58;
  border-left: 4px solid var(--color-clay);
}

@media (max-width: 700px) {
  .lp-features { grid-template-columns: 1fr; }
  .lp-hero { padding: 56px 0 52px; }
  .lp-cta-btn { padding: 16px 32px; font-size: 0.95rem; }
  .lp-section { padding: 56px 0; }
  .lp-voice-card { flex-direction: column; gap: 10px; }
  .lp-header-cta { display: none; }
  .lp-anchor-nav-inner { gap: 0; }
  .lp-anchor-nav-inner a { padding: 8px 12px; font-size: 0.72rem; }
}

/* ===== YouTube facade ===== */
.yt-facade {
  cursor: pointer;
}
.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-facade-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.yt-facade-play::before {
  content: '';
  display: block;
  width: 68px;
  height: 48px;
  background: rgba(212, 0, 0, 0.88);
  border-radius: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  transition: background-color 0.2s;
}
.yt-facade:hover .yt-facade-play::before {
  background-color: rgba(212, 0, 0, 1);
}
