/* ============================================
   ひだまりベース - Landing Page Styles
   Color Palette:
   - Primary Beige: #F5F0E8
   - Warm Beige: #E8DFD0
   - Primary Green: #6B8F71
   - Light Green: #A4C3A2
   - Accent Orange: #E8A87C
   - Dark Text: #3D3D3D
   - Muted Text: #6B6B6B
   - White: #FFFFFF
   ============================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #3D3D3D;
  background-color: #FDFBF7;
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp-only {
  display: none;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.35s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #6B8F71, #7DA882);
  color: #fff;
  border-color: #6B8F71;
  box-shadow: 0 4px 16px rgba(107, 143, 113, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5A7D60, #6B8F71);
  box-shadow: 0 6px 24px rgba(107, 143, 113, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #6B8F71;
  border-color: #6B8F71;
}

.btn-outline:hover {
  background: #6B8F71;
  color: #fff;
  transform: translateY(-2px);
}

.btn-line {
  background: #06C755;
  color: #fff;
  border-color: #06C755;
}

.btn-line:hover {
  background: #05B34C;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #3D3D3D;
}

.section-title.center {
  text-align: center;
}

.section-title-en {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #A4C3A2;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #6B6B6B;
  font-size: 0.95rem;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FDFBF7;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: #E8DFD0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #3D3D3D;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.logo-icon {
  color: #E8A87C;
  font-size: 1.3rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6B6B6B;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #6B8F71;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #6B8F71;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.header-cta-btn {
  display: none;
  padding: 10px 24px;
  background: #6B8F71;
  color: #fff;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.header-cta-btn:hover {
  background: #5A7D60;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3D3D3D;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 20px;
  background: rgba(253, 251, 247, 0.98);
  border-top: 1px solid #E8DFD0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3D3D3D;
  border-bottom: 1px solid #F0EBE3;
}

.mobile-nav-cta {
  margin-top: 16px;
  padding: 14px;
  background: #6B8F71;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 251, 247, 0.65) 0%,
    rgba(253, 251, 247, 0.80) 40%,
    rgba(253, 251, 247, 0.90) 70%,
    rgba(253, 251, 247, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 700px;
}

.hero-concept {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6B8F71;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  padding: 8px 20px;
  display: inline-block;
  border: 1px solid #A4C3A2;
  border-radius: 50px;
  background: rgba(164, 195, 162, 0.1);
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #3D3D3D;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.hero-sub {
  font-size: 1rem;
  color: #6B6B6B;
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: #6B8F71;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.75);
  border: 1px solid #E8DFD0;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4A4A4A;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trust-badge i {
  color: #6B8F71;
  font-size: 0.8rem;
}

/* Pulse animation for CTA */
.btn-pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(107, 143, 113, 0.25); }
  50% { box-shadow: 0 4px 28px rgba(107, 143, 113, 0.50), 0 0 0 8px rgba(107, 143, 113, 0.08); }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #9B8E7E;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: #9B8E7E;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6B8F71;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ===== EMPATHY ===== */
.empathy {
  padding: 80px 0 60px;
  background: #FDFBF7;
}

.empathy-lead {
  text-align: center;
  margin-bottom: 48px;
}

.empathy-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3D3D3D;
  position: relative;
  display: inline-block;
}

.empathy-question::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #E8A87C;
  margin: 16px auto 0;
  border-radius: 2px;
}

.empathy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.empathy-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #F0EBE3;
  transition: all 0.3s ease;
}

.empathy-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.empathy-icon {
  font-size: 2rem;
  color: #E8A87C;
  margin-bottom: 16px;
}

.empathy-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 12px;
  line-height: 1.7;
}

.empathy-desc {
  font-size: 0.88rem;
  color: #6B6B6B;
  line-height: 1.8;
}

/* Empathy Stat */
.empathy-stat {
  text-align: center;
  margin-bottom: 28px;
}

.empathy-stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #E8A87C;
  margin-bottom: 4px;
}

.empathy-stat-desc {
  font-size: 0.85rem;
  color: #6B6B6B;
  line-height: 1.8;
}

.empathy-message {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(164, 195, 162, 0.1), rgba(232, 168, 124, 0.08));
  border-radius: 20px;
}

.empathy-message p:first-child {
  font-size: 1.15rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 12px;
  line-height: 1.8;
}

.empathy-sub {
  font-size: 0.9rem;
  color: #6B6B6B;
}

/* ===== MID CTA ===== */
.mid-cta {
  padding: 48px 0;
  background: #F5F0E8;
}

.mid-cta-alt {
  background: linear-gradient(135deg, #6B8F71, #7DA882);
}

.mid-cta-alt .mid-cta-text,
.mid-cta-alt .mid-cta-sub {
  color: #fff;
}

.mid-cta-alt .btn-primary {
  background: #fff;
  color: #6B8F71;
  border-color: #fff;
}

.mid-cta-alt .btn-primary:hover {
  background: #F5F0E8;
  color: #5A7D60;
}

.mid-cta-inner {
  text-align: center;
}

.mid-cta-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #3D3D3D;
}

.mid-cta-sub {
  font-size: 0.9rem;
  color: #6B6B6B;
  margin-bottom: 24px;
  line-height: 1.8;
}

.mid-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 2;
  color: #4A4A4A;
}

.about-text strong {
  color: #6B8F71;
  font-weight: 600;
}

.about-point {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.about-point-item i {
  color: #6B8F71;
  font-size: 1.1rem;
}

/* ===== SERVICE ===== */
.service {
  padding: 80px 0;
  background: #F5F0E8;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid #F0EBE3;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.1), rgba(164, 195, 162, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #6B8F71;
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #3D3D3D;
  line-height: 1.5;
}

.service-card-desc {
  font-size: 0.88rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-card-list li {
  font-size: 0.85rem;
  color: #4A4A4A;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6B8F71;
  font-weight: 700;
}

/* ===== REASON ===== */
.reason {
  padding: 80px 0;
  background: #fff;
}

.reason-list {
  max-width: 800px;
  margin: 0 auto;
}

.reason-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #F0EBE3;
}

.reason-item:last-child {
  border-bottom: none;
}

.reason-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #A4C3A2;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
}

.reason-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3D3D3D;
}

.reason-desc {
  font-size: 0.9rem;
  color: #6B6B6B;
  line-height: 1.9;
}

.reason-desc strong {
  color: #E8A87C;
  font-weight: 600;
}

/* ===== STAFF ===== */
.staff {
  padding: 80px 0;
  background: #F5F0E8;
}

.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.staff-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1px solid #F0EBE3;
}

.staff-card-anon {
  text-align: center;
}

.staff-card-avatar {
  padding: 28px 24px 0;
  display: flex;
  justify-content: center;
}

.staff-avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.25);
  border: 3px solid #E8DFD0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.staff-card-info {
  padding: 20px 24px 28px;
}

.staff-card-anon .staff-card-info {
  text-align: center;
}

.staff-card-anon .staff-card-title {
  justify-content: center;
}

.staff-card-anon .staff-card-message {
  text-align: left;
}

.staff-card-anon .staff-card-tags {
  justify-content: center;
}

.staff-card-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B8F71;
  background: rgba(107, 143, 113, 0.08);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.staff-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 8px;
}

.staff-card-name-en {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: #9B8E7E;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.staff-card-title {
  font-size: 0.85rem;
  color: #6B6B6B;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.staff-card-title i {
  color: #E8A87C;
}

.staff-card-message p {
  font-size: 0.9rem;
  color: #4A4A4A;
  line-height: 2;
  margin-bottom: 12px;
}

.staff-card-message strong {
  color: #6B8F71;
  font-weight: 600;
}

.staff-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #F0EBE3;
}

.staff-tag {
  font-size: 0.75rem;
  color: #6B6B6B;
  background: #FDFBF7;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #F0EBE3;
}

.staff-tag i {
  color: #A4C3A2;
  font-size: 0.7rem;
}

/* ===== NEWS / COLUMN ===== */
.news {
  padding: 80px 0;
  background: #FDFBF7;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #F0EBE3;
  transition: all 0.3s ease;
  position: relative;
}

/* 5-card compact layout */
.news-grid-5 .news-card {
  padding: 16px;
}

.news-grid-5 .news-card-tag {
  padding: 3px 10px;
  font-size: 0.68rem;
  margin-bottom: 8px;
}

.news-grid-5 .news-card-title {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.news-grid-5 .news-card-desc {
  font-size: 0.75rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.news-grid-5 .news-card-date {
  font-size: 0.7rem;
}

.news-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.news-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: rgba(107, 143, 113, 0.1);
  color: #6B8F71;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #3D3D3D;
}

.news-card-desc {
  font-size: 0.85rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 12px;
}

.news-card-date {
  font-size: 0.75rem;
  color: #9B8E7E;
}

.news-note {
  text-align: center;
}

.news-note p {
  font-size: 0.85rem;
  color: #9B8E7E;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== DAILY SCHEDULE ===== */
.daily {
  padding: 80px 0;
  background: #fff;
}

.daily-timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid #E8DFD0;
}

.daily-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}

.daily-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6B8F71;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #E8DFD0;
}

.daily-time {
  min-width: 56px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6B8F71;
  padding-top: 2px;
}

.daily-content {
  flex: 1;
}

.daily-title {
  font-size: 1rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.daily-title i {
  color: #E8A87C;
  font-size: 0.9rem;
}

.daily-desc {
  font-size: 0.85rem;
  color: #6B6B6B;
  line-height: 1.7;
}

.daily-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.daily-choice {
  font-size: 0.8rem;
  color: #4A4A4A;
  background: #F5F0E8;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.daily-choice i {
  color: #6B8F71;
  font-size: 0.75rem;
}

.daily-note {
  max-width: 640px;
  margin: 24px auto 0;
  background: #FDFBF7;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #F0EBE3;
}

.daily-note p {
  font-size: 0.8rem;
  color: #9B8E7E;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.daily-note p i {
  color: #A4C3A2;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== PRICING HOURS ===== */
.pricing-hours {
  max-width: 600px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-hours-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #F0EBE3;
  border-radius: 14px;
  padding: 16px 20px;
}

.pricing-hours-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.1), rgba(164, 195, 162, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B8F71;
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-hours-label {
  font-size: 0.72rem;
  color: #9B8E7E;
  font-weight: 500;
  margin-bottom: 2px;
}

.pricing-hours-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3D3D3D;
}

.pricing-hours-note {
  font-size: 0.8rem;
  font-weight: 400;
  color: #6B6B6B;
  margin-left: 4px;
}

/* ===== FLOW ===== */
.flow {
  padding: 80px 0;
  background: #F5F0E8;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  color: #A4C3A2;
  font-size: 1.2rem;
  transform: rotate(90deg);
}

.flow-step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #F0EBE3;
}

.flow-step-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B8F71;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.flow-step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6B8F71, #7DA882);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 16px;
}

.flow-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3D3D3D;
}

.flow-step-desc {
  font-size: 0.88rem;
  color: #6B6B6B;
  line-height: 1.8;
}

.flow-step-desc strong {
  color: #E8A87C;
  font-weight: 600;
}

/* ===== PRICING ADMISSION BANNER ===== */
.pricing-admission {
  max-width: 640px;
  margin: 0 auto 36px;
}

.pricing-admission-inner {
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.06), rgba(164, 195, 162, 0.1));
  border: 2px solid #6B8F71;
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  position: relative;
}

.pricing-admission-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6B8F71;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pricing-admission-label i {
  font-size: 0.85rem;
}

.pricing-admission-price {
  font-size: 1.1rem;
  color: #3D3D3D;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-admission-price strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3D3D3D;
  letter-spacing: -0.02em;
}

.pricing-admission-price span {
  font-size: 0.88rem;
  font-weight: 500;
  color: #6B6B6B;
}

.pricing-admission-note {
  font-size: 0.82rem;
  color: #6B8F71;
  font-weight: 600;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: #FDFBF7;
  border-radius: 20px;
  padding: 32px 24px;
  border: 2px solid #F0EBE3;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.pricing-card-popular {
  border-color: #6B8F71;
  background: #fff;
  box-shadow: 0 8px 32px rgba(107, 143, 113, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E8A87C;
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card-header {
  margin-bottom: 16px;
}

.pricing-plan {
  font-size: 1.15rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 4px;
}

.pricing-recommend {
  font-size: 0.8rem;
  color: #6B8F71;
  font-weight: 500;
}

.pricing-price {
  padding: 16px 0;
  margin-bottom: 16px;
  border-top: 1px solid #F0EBE3;
  border-bottom: 1px solid #F0EBE3;
}

.pricing-yen {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3D3D3D;
}

.pricing-amount {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3D3D3D;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.8rem;
  color: #6B6B6B;
}

.pricing-features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: #6B8F71;
  font-size: 0.85rem;
}

.pricing-note {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: #FDFBF7;
  border-radius: 16px;
  border: 1px solid #F0EBE3;
}

.pricing-note p {
  font-size: 0.82rem;
  color: #6B6B6B;
  padding: 4px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-note p i {
  color: #A4C3A2;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: #F5F0E8;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #F0EBE3;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3D3D3D;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  border-color: #6B8F71;
}

.faq-question[aria-expanded="true"] {
  border-radius: 16px 16px 0 0;
  border-bottom-color: transparent;
  border-color: #6B8F71;
}

.faq-q-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #6B8F71;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  color: #A4C3A2;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #6B8F71;
  border-top: none;
  border-radius: 0 0 16px 16px;
}

.faq-a-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #E8A87C;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #4A4A4A;
  line-height: 1.9;
}

.faq-answer strong {
  color: #6B8F71;
}

/* ===== MESSAGE ===== */
.message {
  padding: 80px 0;
  background: #FDFBF7;
}

.message-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.message-image {
  border-radius: 24px;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.message-image img {
  width: 100%;
  height: auto;
}

.message-body p {
  font-size: 0.95rem;
  line-height: 2.1;
  margin-bottom: 20px;
  color: #4A4A4A;
}

.message-body strong {
  color: #6B8F71;
  font-weight: 600;
}

.message-highlight {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #6B8F71 !important;
  padding: 20px;
  background: linear-gradient(135deg, rgba(164, 195, 162, 0.12), rgba(232, 168, 124, 0.08));
  border-radius: 12px;
  border-left: 4px solid #6B8F71;
  text-align: center;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form-wrap {
  background: #FDFBF7;
  border-radius: 24px;
  padding: 32px 24px;
  border: 1px solid #F0EBE3;
}

.contact-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-title i {
  color: #6B8F71;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 8px;
}

.required {
  background: #E8A87C;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
  vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E0D8CC;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #3D3D3D;
  background: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6B8F71;
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-bottom: 20px;
}

.form-note p {
  font-size: 0.78rem;
  color: #9B8E7E;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-success-inner {
  text-align: center;
  padding: 48px 24px;
}

.form-success-inner i {
  font-size: 3rem;
  color: #6B8F71;
  margin-bottom: 20px;
}

.form-success-inner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #3D3D3D;
}

.form-success-inner p {
  font-size: 0.9rem;
  color: #6B6B6B;
  line-height: 1.8;
}

/* Contact Other */
.contact-card {
  background: #FDFBF7;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #F0EBE3;
  margin-bottom: 16px;
}

.contact-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-card-line .contact-card-icon { color: #06C755; }
.contact-card-tel .contact-card-icon { color: #6B8F71; }
.contact-card-info .contact-card-icon { color: #E8A87C; }

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.88rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-tel-number {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #3D3D3D !important;
}

.contact-tel-number a {
  color: #3D3D3D;
}

.contact-card-note {
  font-size: 0.78rem !important;
  color: #9B8E7E !important;
}

.contact-reassurance {
  padding: 24px;
  background: linear-gradient(135deg, rgba(164, 195, 162, 0.1), rgba(232, 168, 124, 0.08));
  border-radius: 16px;
}

.contact-reassurance p {
  font-size: 0.85rem;
  color: #6B6B6B;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-reassurance i {
  color: #E8A87C;
  font-size: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 100px;
  background: #3D3D3D;
  color: #BDB5A9;
}

.footer-inner {
  text-align: center;
}

.footer .logo-icon {
  color: #E8A87C;
}

.footer .logo-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  display: block;
  margin: 0 auto 8px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 6px 12px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: #9B8E7E;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  color: #BDB5A9;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.72rem;
  color: #7A7570;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  padding: 12px 16px;
  gap: 8px;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #E8DFD0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #6B8F71, #7DA882);
  color: #fff;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(107, 143, 113, 0.25);
}

.floating-cta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  background: #06C755;
  color: #fff;
  border-radius: 12px;
  font-size: 1.3rem;
}

/* ===== HERO STRENGTH BADGE ===== */
.hero-strength {
  margin-top: 16px;
  margin-bottom: 4px;
}

.hero-strength-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: #4A7C50;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(107,143,113,0.3);
  line-height: 1.5;
}

.hero-strength-text i {
  font-size: 1rem;
  color: #6B8F71;
}

/* ===== LINE HERO BUTTON EMPHASIS ===== */
.btn-line-hero {
  font-size: 1.05rem;
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(6,199,85,0.25);
  animation: line-glow 2.5s ease-in-out infinite;
}

@keyframes line-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(6,199,85,0.25); }
  50% { box-shadow: 0 6px 28px rgba(6,199,85,0.4); }
}

/* ===== EVENT BANNER ===== */
.event-banner {
  padding: 0;
  background: transparent;
}

.event-banner-inner {
  background: linear-gradient(135deg, #f0f8f0 0%, #fff9f0 100%);
  border: 2px solid #A4C3A2;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  z-index: 2;
}

.event-banner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6B8F71, #A4C3A2, #6B8F71);
}

.event-banner-badge {
  display: inline-block;
  background: #6B8F71;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.event-banner-title {
  font-family: 'Zen Maru Gothic', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 12px;
  line-height: 1.5;
}

.event-banner-desc {
  font-size: 0.88rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 20px;
}

.event-banner-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: #4A7C50;
  font-weight: 500;
}

.event-banner-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-banner-details i {
  font-size: 0.85rem;
}

.event-banner-btn {
  font-size: 1rem;
  padding: 14px 36px;
}

.event-banner-note {
  margin-top: 14px;
  font-size: 0.75rem;
  color: #9B8E7E;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #6B8F71;
  border: 1px solid #E8DFD0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #6B8F71;
  color: #fff;
}

/* ===== RESPONSIVE: TABLET (768px+) ===== */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .sp-only {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Header */
  .hamburger {
    display: none;
  }

  .header-nav {
    display: flex;
  }

  .header-cta-btn {
    display: inline-block;
  }

  .header-inner {
    height: 72px;
  }

  .logo-img {
    height: 50px;
    max-width: 220px;
  }

  /* Hero */
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  /* Empathy */
  .empathy {
    padding: 100px 0 80px;
  }

  .empathy-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .empathy-question {
    font-size: 1.5rem;
  }

  /* About */
  .about {
    padding: 100px 0;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  /* Service */
  .service {
    padding: 100px 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Staff */
  .staff {
    padding: 100px 0;
  }

  .staff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .staff-card-info {
    padding: 24px 28px 28px;
  }

  /* Pricing Hours */
  .pricing-hours {
    flex-direction: row;
    justify-content: center;
  }

  .pricing-hours-item {
    flex: 1;
    max-width: 280px;
  }

  /* Reason */
  .reason {
    padding: 100px 0;
  }

  /* Flow */
  .flow {
    padding: 100px 0;
  }

  .flow-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }

  .flow-step {
    flex: 1;
  }

  .flow-arrow {
    transform: rotate(0deg);
    padding-top: 60px;
  }

  /* Pricing */
  .pricing {
    padding: 100px 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* FAQ */
  .faq {
    padding: 100px 0;
  }

  /* Message */
  .message {
    padding: 100px 0;
  }

  .message-inner {
    grid-template-columns: 320px 1fr;
    gap: 60px;
  }

  /* Contact */
  .contact {
    padding: 100px 0;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }

  .mid-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  /* Floating CTA Mobile - hide on desktop */
  .floating-cta {
    display: none;
  }

  /* Floating CTA PC - show on desktop */
  .floating-cta-pc {
    display: flex;
  }

  /* Trial Flow */
  .trial-flow {
    padding: 100px 0;
  }

  .trial-cta {
    flex-direction: row;
    justify-content: center;
  }

  /* News */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid-5 {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .news-grid-5 .news-card:nth-child(1),
  .news-grid-5 .news-card:nth-child(2),
  .news-grid-5 .news-card:nth-child(3) {
    grid-column: span 2;
  }

  .news-grid-5 .news-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .news-grid-5 .news-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .news {
    padding: 100px 0;
  }

  .footer {
    padding: 60px 0 48px;
  }

  .back-to-top {
    bottom: 30px;
    right: 30px;
  }
}

/* ===== RESPONSIVE: DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-grid {
    gap: 80px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid-5 {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .news-grid-5 .news-card:nth-child(1),
  .news-grid-5 .news-card:nth-child(2),
  .news-grid-5 .news-card:nth-child(3) {
    grid-column: span 2;
  }

  .news-grid-5 .news-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .news-grid-5 .news-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }

  .hero-content {
    padding: 90px 20px 80px;
  }

  .hero-scroll {
    display: none;
  }

  /* Mobile: Larger touch targets */
  .btn {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
  }

  /* Mobile: Better spacing for empathy cards */
  .empathy-card {
    padding: 28px 20px;
  }

  /* Mobile: Pricing cards better sizing */
  .pricing-card {
    padding: 28px 20px;
  }

  /* Mobile: FAQ bigger touch targets */
  .faq-question {
    padding: 18px 16px;
    gap: 10px;
    font-size: 0.9rem;
  }

  /* Mobile: Staff photo max height */
  .staff-card-photo {
    max-height: 280px;
  }

  /* Mobile: Floating CTA bigger */
  .floating-cta-btn {
    padding: 16px;
    font-size: 0.92rem;
  }

  /* Mobile: Trust badges stack */
  .hero-trust {
    gap: 8px;
  }

  .trust-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  /* Mobile: Hero strength badge */
  .hero-strength-text {
    font-size: 0.78rem;
    padding: 8px 16px;
  }

  /* Mobile: LINE hero button - most prominent */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-line-hero {
    width: 100%;
    max-width: 320px;
    font-size: 1.05rem;
    padding: 18px 24px;
    order: -1;
  }

  /* Mobile: Event banner */
  .event-banner-inner {
    margin-top: -30px;
    padding: 28px 20px;
  }

  .event-banner-title {
    font-size: 1.15rem;
  }

  .event-banner-details {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
}

/* ===== SECTION CTA GUIDE ===== */
.section-cta-guide {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(164, 195, 162, 0.08), rgba(232, 168, 124, 0.06));
  border-radius: 16px;
  border: 1px dashed #D4CABC;
}

.section-cta-guide p {
  font-size: 0.9rem;
  color: #6B6B6B;
  line-height: 1.8;
}

.section-cta-guide a {
  color: #6B8F71;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}

.section-cta-guide a:hover {
  color: #5A7D60;
}

/* ===== TRIAL FLOW ===== */
.trial-flow {
  padding: 80px 0;
  background: #fff;
}

.trial-steps {
  max-width: 600px;
  margin: 0 auto 40px;
}

.trial-step {
  background: #FDFBF7;
  border: 1px solid #F0EBE3;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.trial-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6B8F71, #7DA882);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.trial-step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.1), rgba(164, 195, 162, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #6B8F71;
  margin: 0 auto 12px;
}

.trial-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 8px;
}

.trial-step-desc {
  font-size: 0.88rem;
  color: #6B6B6B;
  line-height: 1.8;
}

.trial-step-desc strong {
  color: #6B8F71;
  font-weight: 600;
}

.trial-step-arrow {
  text-align: center;
  color: #A4C3A2;
  font-size: 1.1rem;
  padding: 8px 0;
}

.trial-info {
  max-width: 600px;
  margin: 0 auto 28px;
}

.trial-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FDFBF7;
  border: 1px solid #F0EBE3;
  border-radius: 14px;
  padding: 16px 20px;
}

.trial-info-item i {
  color: #6B8F71;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trial-info-label {
  font-size: 0.72rem;
  color: #9B8E7E;
  font-weight: 500;
  margin-bottom: 2px;
}

.trial-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3D3D3D;
}

.trial-reassurance {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(164, 195, 162, 0.1), rgba(232, 168, 124, 0.08));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trial-reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #4A4A4A;
  font-weight: 500;
}

.trial-reassurance-item i {
  color: #E8A87C;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.trial-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ===== NEWS CARD LINK ===== */
.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.news-card-link:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: #6B8F71;
}

.news-card-link .news-card-date {
  color: #6B8F71;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-card .tag-notice {
  background: rgba(232, 168, 124, 0.15);
  color: #C77A4A;
}

.news-more {
  text-align: center;
  margin-bottom: 32px;
}

/* ===== FLOATING CTA PC ===== */
.floating-cta-pc {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 998;
  flex-direction: column;
  gap: 10px;
  transform: translateX(200px);
  transition: transform 0.5s ease;
}

.floating-cta-pc.visible {
  transform: translateX(0);
}

.floating-cta-pc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-decoration: none;
}

.floating-cta-pc-main {
  background: linear-gradient(135deg, #6B8F71, #7DA882);
  color: #fff;
  animation: pulse 2.5s ease-in-out infinite;
}

.floating-cta-pc-main:hover {
  background: linear-gradient(135deg, #5A7D60, #6B8F71);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 143, 113, 0.35);
}

.floating-cta-pc-trial {
  background: #fff;
  color: #6B8F71;
  border: 2px solid #6B8F71;
}

.floating-cta-pc-trial:hover {
  background: #6B8F71;
  color: #fff;
  transform: translateY(-2px);
}

.floating-cta-pc-line {
  background: #06C755;
  color: #fff;
}

.floating-cta-pc-line:hover {
  background: #05B34C;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

/* ===== FOOTER SNS ===== */
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(164, 195, 162, 0.15);
  color: #A4C3A2;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(164, 195, 162, 0.25);
}

.footer-sns-link:hover {
  background: #6B8F71;
  color: #fff;
  transform: translateY(-2px);
}

.footer-sns-link svg {
  fill: currentColor;
}

/* ===== PRINT ===== */
@media print {
  .header,
  .floating-cta,
  .back-to-top,
  .hero-scroll {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}