/*
Theme Name: Eikou Group
Theme URI: https://eikougroup.jp/
Author: AI Web Studio
Description: 一般社団法人 栄光 コーポレートサイトテーマ
Version: 1.0.0
Text Domain: eikou-group
*/

/* ========================================
   CSS Variables (from design_spec.md)
   ======================================== */
:root {
  --color-teal-primary: #3AAFA9;
  --color-teal-dark: #2B7A78;
  --color-teal-light: #7DD4CF;
  --color-teal-pale: #DEF2F1;
  --color-amber-cta: #E8A838;
  --color-amber-dark: #D4922E;
  --color-amber-light: #FFF3DC;
  --color-warm-beige: #FAFAF5;
  --color-warm-sand: #F0EDE6;
  --color-white: #FFFFFF;
  --color-text-heading: #1A1A2E;
  --color-text-body: #333333;
  --color-text-sub: #6B7280;
  --color-text-inverse: #FFFFFF;
  --color-link: #2B7A78;
  --color-link-hover: #3AAFA9;
  --color-border: #E5E7EB;

  --font-primary: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-accent: "Inter", "Roboto", sans-serif;
  --fs-h1: 48px;
  --fs-h2: 32px;
  --fs-h3: 24px;
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-small: 14px;
  --fs-xs: 12px;
  --lh-heading: 1.4;
  --lh-body: 1.8;
  --ls-heading: 0.03em;
  --ls-body: 0.05em;
  --ls-button: 0.08em;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 96px;

  --max-width-main: 1120px;
  --max-width-wide: 1280px;
  --max-width-text: 720px;
  --max-width-form: 640px;
  --header-height-pc: 72px;
  --header-height-sp: 64px;
  --floating-bar-height: 64px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-button: 0 4px 16px rgba(232, 168, 56, 0.3);
  --shadow-button-hover: 0 6px 24px rgba(232, 168, 56, 0.4);

  --transition-fast: 0.2s ease-out;
  --transition-base: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  --transition-menu: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-scroll: 0.6s ease-out;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--color-text-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--color-text-heading);
}
h1 { font-size: 32px; line-height: 1.3; letter-spacing: 0.04em; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-link-hover); }

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

ul, ol { list-style: none; }

table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  word-break: break-word;
}

:focus-visible {
  outline: 2px solid var(--color-teal-primary);
  outline-offset: 2px;
}

/* ========================================
   Layout Containers
   ======================================== */
.container {
  max-width: var(--max-width-main);
  margin: 0 auto;
  padding: 0 20px;
}
.container--wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 20px;
}
.container--text {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 64px 0;
}

/* ========================================
   Section Heading Components
   ======================================== */
.section-label {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  color: var(--color-teal-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-label--light {
  color: var(--color-teal-light);
}

.section-title {
  margin-bottom: 0;
}
.section-title--light {
  color: var(--color-text-inverse);
}

.section-title__bar {
  width: 48px;
  height: 3px;
  background: var(--color-teal-primary);
  margin-top: 16px;
  margin-bottom: 16px;
}
.section-title__bar--light {
  background: var(--color-teal-light);
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-sub);
  margin-bottom: var(--space-xl);
}
.section-subtitle--light {
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Button Components
   ======================================== */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-primary);
  transition: var(--transition-base);
  line-height: 1.0;
}

.btn--primary {
  background-color: var(--color-amber-cta);
  color: var(--color-text-inverse);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: var(--shadow-button);
  min-width: 200px;
  max-width: 100%;
  text-align: center;
}
.btn--primary:hover {
  background-color: var(--color-amber-dark);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232, 168, 56, 0.3);
}

.btn--amber {
  background-color: var(--color-amber-cta);
  color: var(--color-text-inverse);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: var(--shadow-button);
  min-width: 200px;
  max-width: 100%;
  text-align: center;
}
.btn--amber:hover {
  background-color: var(--color-amber-dark);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-text-inverse);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.8);
  min-width: 200px;
  max-width: 100%;
  text-align: center;
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  color: var(--color-text-inverse);
  border-color: #fff;
}

.btn--outline-light {
  background-color: transparent;
  color: var(--color-text-inverse);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.5);
  min-width: 200px;
  text-align: center;
}
.btn--outline-light:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--color-text-inverse);
  border-color: rgba(255,255,255,0.8);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--fs-small);
  min-width: auto;
  min-height: 40px;
}

.btn--lg {
  padding: 20px 48px;
  font-size: var(--fs-body-lg);
}

.btn--pill {
  border-radius: 40px;
}

.btn-sub {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  margin-top: var(--space-xs);
}

/* ========================================
   Chip Component
   ======================================== */
.chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-teal-pale);
  color: var(--color-teal-dark);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: 500;
  margin: 4px;
}

/* ========================================
   Scroll Animation
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-scroll), transform var(--transition-scroll);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-sp);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.header--scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.header__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-teal-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo:hover {
  color: var(--color-teal-primary);
}

.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform var(--transition-menu);
  z-index: 110;
  padding: 80px 32px 40px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.header__nav.is-open {
  transform: translateX(0);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header__nav-link {
  display: block;
  padding: 16px 0;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-text-body);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.header__nav-link:hover {
  color: var(--color-teal-primary);
}

.header__actions {
  display: none;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-teal-dark);
  text-decoration: none;
  font-weight: 600;
}
.header__tel svg {
  width: 18px;
  height: 18px;
}
.header__tel-number {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  padding: 0;
}
.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-heading);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}
.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}
.header__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 100px;
  text-align: center;
  width: 100%;
}
.hero__title {
  color: var(--color-text-inverse);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero__subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.hero__cta-item {
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.hero__btn-tel {
  width: 100%;
}
.hero__btn-visit {
  width: 100%;
}
.hero__cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  line-height: 1.6;
}
.hero__tel-display {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ========================================
   Campaign
   ======================================== */
.campaign {
  background-color: var(--color-teal-dark);
  padding: 48px 0;
  text-align: center;
}
.campaign__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.campaign__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.campaign__icon {
  color: var(--color-amber-cta);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.campaign__title {
  color: var(--color-text-inverse);
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
}
.campaign__highlight {
  color: var(--color-amber-cta);
  font-size: 1.2em;
}
.campaign__desc {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  text-align: center;
}
.campaign__btn {
  margin-top: 8px;
}
.campaign__btn-sub {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-xs);
}
.campaign__benefits {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.campaign__benefits li {
  color: var(--color-amber-cta);
  font-size: 18px;
  font-weight: 700;
}
.campaign__benefits li::before {
  content: "・";
}
.campaign__note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 24px;
  max-width: 600px;
  text-align: center;
}

/* ========================================
   About
   ======================================== */
.about {
  background-color: var(--color-white);
}
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about__lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-heading);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about__body p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.about__body p:last-child {
  margin-bottom: 0;
}
.about__chips {
  margin-top: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__note {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  margin-top: 16px;
}
.about__image-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__img-main {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.about__img-sub {
  width: 60%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ========================================
   Features
   ======================================== */
.features {
  background-color: var(--color-teal-pale);
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal-primary);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-teal-primary);
  stroke-width: 1.5;
}
.feature-card__title {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--color-text-heading);
}
.feature-card__text {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--color-text-body);
  text-align: left;
}

/* ========================================
   Daily Life / Timeline
   ======================================== */
.daily-life {
  background-color: var(--color-warm-beige);
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 79px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-teal-light);
}
.timeline__item:first-child::before {
  top: 50%;
}
.timeline__item:last-child::before {
  bottom: 50%;
}
.timeline__time {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-teal-primary);
  min-width: 60px;
  text-align: right;
  flex-shrink: 0;
  padding-top: 6px;
}
.timeline__icon {
  width: 40px;
  height: 40px;
  background: var(--color-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border: 3px solid var(--color-warm-beige);
}
.timeline__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal-primary);
  stroke-width: 1.5;
}
.timeline__content {
  flex: 1;
  padding-top: 4px;
}
.timeline__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 4px;
}
.timeline__text {
  font-size: var(--fs-small);
  color: var(--color-text-sub);
  line-height: 1.7;
}
.daily-life__notes {
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.daily-life__notes p {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ========================================
   Gallery
   ======================================== */
.gallery {
  background-color: var(--color-white);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery__item--large {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-slow);
}
.gallery__item:hover img {
  transform: scale(1.03);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-text-inverse);
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.gallery__cta {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}
.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--color-text-inverse);
  font-size: 36px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 201;
  line-height: 1;
  transition: opacity var(--transition-fast);
}
.lightbox__close:hover {
  opacity: 0.7;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox__caption {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-small);
  margin-top: 16px;
  text-align: center;
  max-width: 600px;
}

/* ========================================
   Pricing
   ======================================== */
.pricing {
  background-color: var(--color-teal-pale);
}
.pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.pricing__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
}
.pricing__card--highlight {
  border: 2px solid var(--color-teal-primary);
  text-align: center;
}
.pricing__card-title {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--color-text-heading);
}
.pricing__zero {
  font-size: var(--fs-body-lg);
  color: var(--color-text-heading);
  margin-bottom: 16px;
  font-weight: 500;
}
.pricing__big-number {
  font-family: var(--font-accent);
  font-size: 72px;
  font-weight: 700;
  color: var(--color-amber-cta);
  line-height: 1;
}
.pricing__card-desc {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--color-text-body);
}
.pricing__table {
  width: 100%;
  font-size: var(--fs-body);
}
.pricing__table th,
.pricing__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.pricing__table th {
  font-weight: 500;
  color: var(--color-text-heading);
}
.pricing__table tbody tr:nth-child(even) {
  background: var(--color-teal-pale);
}
.pricing__table tfoot td {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  background: var(--color-teal-pale);
}
.pricing__supplement {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
}
.pricing__supplement-title {
  font-size: 18px;
  margin-bottom: 12px;
}
.pricing__supplement p {
  line-height: 1.8;
}
.pricing__cta {
  text-align: center;
  margin-bottom: 24px;
}
.pricing__notes {
  max-width: 700px;
  margin: 0 auto;
}
.pricing__notes p {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ========================================
   Flow
   ======================================== */
.flow {
  background-color: var(--color-white);
}
.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.flow__step {
  text-align: center;
  position: relative;
}
.flow__step-number {
  margin-bottom: 12px;
}
.flow__step-num-text {
  font-family: var(--font-accent);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-teal-pale);
  line-height: 1;
}
.flow__step-icon {
  width: 48px;
  height: 48px;
  background: var(--color-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.flow__step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-teal-primary);
  stroke-width: 1.5;
}
.flow__step-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-text-heading);
}
.flow__step-desc {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--color-text-body);
  text-align: left;
}
.flow__step-arrow {
  display: none;
}
.flow__cta {
  text-align: center;
  margin-bottom: 24px;
}
.flow__notes {
  max-width: 700px;
  margin: 0 auto;
}
.flow__notes p {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background-color: var(--color-teal-pale);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.faq__question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: var(--fs-body);
  list-style: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ''; }
.faq__item[open] .faq__question {
  background: var(--color-teal-pale);
  color: var(--color-teal-dark);
}
.faq__q-mark {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-teal-primary);
  font-size: 20px;
  min-width: 28px;
  flex-shrink: 0;
}
.faq__q-text {
  flex: 1;
}
.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
}
.faq__chevron svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-sub);
}
.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
}
.faq__answer {
  padding: 20px;
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--color-border);
}
.faq__a-mark {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-teal-primary);
  font-size: 20px;
  min-width: 28px;
  flex-shrink: 0;
}
.faq__answer p {
  line-height: 1.8;
  flex: 1;
}
.faq__cta {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   Message
   ======================================== */
.message {
  background-color: var(--color-warm-beige);
}
.message__position {
  font-size: var(--fs-body);
  color: var(--color-text-sub);
  margin-bottom: 32px;
}
.message__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.message__avatar-placeholder {
  width: 100px;
  height: 100px;
  background: var(--color-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 42px;
  color: var(--color-teal-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.message__text p {
  margin-bottom: 20px;
  line-height: 1.9;
}
.message__text p:last-child {
  margin-bottom: 0;
}
.message__signature {
  text-align: right;
  font-weight: 500;
  margin-top: 32px;
  font-size: var(--fs-body);
  color: var(--color-text-heading);
}

/* ========================================
   Access
   ======================================== */
.access {
  background-color: var(--color-white);
}
.access__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.access__table {
  width: 100%;
  font-size: var(--fs-body);
}
.access__table th {
  background: var(--color-teal-pale);
  padding: 12px 16px;
  font-weight: 500;
  text-align: left;
  width: 110px;
  color: var(--color-text-heading);
  vertical-align: top;
}
.access__table td {
  padding: 12px 16px;
  vertical-align: top;
}
.access__table tr {
  border-bottom: 1px solid var(--color-border);
}
.access__table a {
  color: var(--color-link);
  text-decoration: underline;
}
.access__image-area {
  flex-shrink: 0;
}
.access__image-area img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.access__directions {
  margin-bottom: 32px;
}
.access__directions p {
  line-height: 1.8;
}
.access__map {
  margin-bottom: 16px;
}
.access__map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius-md);
}
.access__map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-small);
  color: var(--color-link);
  margin-top: 8px;
  text-decoration: underline;
}
.access__note {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 16px;
}

/* ========================================
   Contact
   ======================================== */
.contact {
  background-color: var(--color-teal-dark);
  color: var(--color-text-inverse);
}
.contact__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.contact__card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.contact__card-icon {
  margin-bottom: 12px;
}
.contact__card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-amber-cta);
  stroke-width: 1.5;
}
.contact__card-title {
  color: var(--color-text-inverse);
  font-size: 18px;
  margin-bottom: 12px;
}
.contact__phone {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-amber-cta);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.contact__phone:hover {
  color: var(--color-amber-light);
}
.contact__email {
  font-size: var(--fs-body);
  color: var(--color-text-inverse);
  text-decoration: underline;
  display: block;
  margin-bottom: 8px;
  word-break: break-all;
}
.contact__email:hover {
  color: rgba(255,255,255,0.8);
}
.contact__card-sub {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 8px;
}
.contact__card-sub:last-child {
  margin-bottom: 0;
}
.contact__sns {
  text-align: center;
  margin-bottom: 40px;
}
.contact__sns p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.contact__main-cta {
  text-align: center;
  margin-bottom: 32px;
}
.contact__main-cta-sub {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.contact__note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ========================================
   Group
   ======================================== */
.group {
  background-color: var(--color-white);
}
.group__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.group__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-base);
}
.group__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.group__card-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 12px;
}
.group__card-desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
  line-height: 1.7;
}
.group__card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-teal-primary);
  text-decoration: none;
  transition: var(--transition-base);
}
.group__card-link:hover {
  color: var(--color-teal-dark);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--color-teal-dark);
  color: var(--color-text-inverse);
  padding: 56px 0 0;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-inverse);
  display: block;
  margin-bottom: 12px;
}
.footer__address {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.footer__address a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer__address a:hover {
  color: var(--color-text-inverse);
}
.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.footer__nav-list a {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.8;
}
.footer__nav-list a:hover {
  color: var(--color-text-inverse);
}
.footer__sns {
  display: flex;
  gap: 12px;
}
.footer__sns-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.footer__sns-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.footer__sns-link svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-inverse);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  text-align: center;
}
.footer__legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer__legal a:hover {
  color: rgba(255,255,255,0.9);
}
.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

/* ========================================
   Floating Bar (SP only)
   ======================================== */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--floating-bar-height);
  z-index: 90;
  display: flex;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}
.floating-bar.is-visible {
  transform: translateY(0);
}
.floating-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-inverse);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.floating-bar__btn svg {
  width: 20px;
  height: 20px;
}
.floating-bar__btn--tel {
  background: var(--color-teal-primary);
}
.floating-bar__btn--cta {
  background: var(--color-amber-cta);
}

/* ========================================
   Corporate: Top Page
   ======================================== */
.corp-hero {
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal-primary) 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: var(--color-text-inverse);
}
.corp-hero__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-text-inverse);
}
.corp-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.corp-section {
  padding: 64px 0;
}
.corp-section--alt {
  background-color: var(--color-warm-beige);
}

.corp-info-table {
  width: 100%;
  font-size: var(--fs-body);
}
.corp-info-table th {
  background: var(--color-teal-pale);
  padding: 12px 16px;
  font-weight: 500;
  text-align: left;
  width: 140px;
  color: var(--color-text-heading);
  vertical-align: top;
}
.corp-info-table td {
  padding: 12px 16px;
  vertical-align: top;
}
.corp-info-table tr {
  border-bottom: 1px solid var(--color-border);
}

.facility-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.facility-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-base);
}
.facility-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.facility-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.facility-card__body {
  padding: 24px;
}
.facility-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 8px;
}
.facility-card__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.facility-cards--single {
  max-width: 720px;
  margin: 0 auto;
}
.facility-card--featured {
  border: 2px solid var(--color-teal-primary);
  box-shadow: var(--shadow-md);
}
.facility-card--featured .facility-card__name {
  font-size: 24px;
}
.facility-card--placeholder {
  opacity: 0.6;
}
.facility-card--placeholder .facility-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-sub);
  font-size: var(--fs-body);
}

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

.corp-contact {
  background-color: var(--color-teal-dark);
  color: var(--color-text-inverse);
  padding: 64px 0;
  text-align: center;
}
.corp-contact__tel {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-amber-cta);
  text-decoration: none;
  display: block;
  margin: 16px 0 8px;
}
.corp-contact__tel:hover {
  color: var(--color-amber-light);
}
.corp-contact__email {
  color: var(--color-text-inverse);
  text-decoration: underline;
  font-size: var(--fs-body);
}
.corp-contact__email:hover {
  color: rgba(255,255,255,0.8);
}
.corp-contact__sub {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ========================================
   Responsive - Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .section-subtitle { font-size: var(--fs-body-lg); }

  .container, .container--wide, .container--text {
    padding: 0 5%;
  }

  section {
    padding: 80px 0;
  }

  /* Header TB */
  .header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header__tel-number {
    font-size: var(--fs-small);
  }

  /* Hero TB */
  .hero__title { font-size: 40px; }
  .hero__subtitle { font-size: var(--fs-body-lg); }
  .hero__overlay { background: rgba(0,0,0,0.42); }
  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
  .hero__cta-item {
    max-width: 320px;
  }
  .hero__tel-display {
    font-size: 22px;
  }

  /* Campaign TB */
  .campaign { padding: 56px 0; }
  .campaign__title { font-size: 26px; }

  /* About TB */
  .about__lead { font-size: var(--fs-body-lg); }

  /* Features TB */
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Gallery TB */
  .gallery__grid {
    gap: 16px;
  }

  /* Pricing TB */
  .pricing__table {
    font-size: var(--fs-body);
  }

  /* Flow TB */
  .flow__steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .flow__step {
    flex: 1;
  }
  .flow__step-arrow {
    display: flex;
    align-items: center;
    align-self: center;
    padding-top: 36px;
    color: var(--color-teal-light);
    flex-shrink: 0;
  }
  .flow__step-arrow svg {
    width: 24px;
    height: 24px;
  }
  .flow__step-desc {
    font-size: var(--fs-small);
    text-align: center;
  }

  /* FAQ TB */
  .faq__question { padding: 20px 24px; gap: 16px; }
  .faq__answer { padding: 20px 24px; gap: 16px; }

  /* Message TB */

  /* Access TB */
  .access__map iframe { height: 350px; }

  /* Contact TB */
  .contact__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .contact__phone { font-size: 22px; }

  /* Group TB */
  .group__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Footer TB */
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__nav-list {
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* SP button full-width override: revert on TB */
  .btn--primary, .btn--amber, .btn--outline-white {
    width: auto;
  }

  /* Corporate responsive - Tablet */
  .corp-hero { padding: 140px 0 100px; }
  .corp-hero__title { font-size: 36px; }
  .corp-hero__subtitle { font-size: var(--fs-body-lg); }
  .facility-cards { grid-template-columns: repeat(2, 1fr); }
  .facility-cards--single { grid-template-columns: 1fr; }
  .corp-group-grid { grid-template-columns: repeat(3, 1fr); }
  .corp-contact__tel { font-size: 32px; }
}

/* ========================================
   Responsive - PC (1025px+)
   ======================================== */
@media (min-width: 1025px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }

  .container, .container--wide, .container--text {
    padding: 0 40px;
  }

  section {
    padding: 96px 0;
  }

  /* Header PC */
  .header {
    height: var(--header-height-pc);
  }
  .header__nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    transform: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
    transition: none;
    flex: 1;
    min-width: 0;
  }
  .header__nav-list {
    flex-direction: row;
    gap: 0;
    justify-content: flex-end;
  }
  .header__nav-link {
    padding: 8px 8px;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: none;
    color: var(--color-text-body);
    position: relative;
  }
  .header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--color-teal-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
  }
  .header__nav-link:hover::after {
    transform: scaleX(1);
  }
  .header__hamburger {
    display: none;
  }
  .header__actions {
    flex-shrink: 0;
  }
  .header__tel-number {
    font-size: var(--fs-body);
  }

  /* Hero PC */
  .hero {
    min-height: 90vh;
  }
  .hero__content {
    text-align: left;
    max-width: var(--max-width-wide);
  }
  .hero__title {
    max-width: 650px;
  }
  .hero__subtitle {
    max-width: 550px;
  }
  .hero__overlay { background: rgba(0,0,0,0.35); }
  .hero__cta-group {
    justify-content: flex-start;
    max-width: 650px;
  }
  .hero__tel-display {
    font-size: 24px;
  }

  /* Campaign PC */
  .campaign { padding: 64px 0; }
  .campaign__title { font-size: 30px; }

  /* About PC */
  .about__inner {
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
  }
  .about__text-area {
    flex: 3;
  }
  .about__image-area {
    flex: 2;
    position: sticky;
    top: 100px;
  }

  /* Features PC */
  .features__grid {
    gap: 32px;
  }
  .feature-card {
    padding: 40px 32px;
  }
  .feature-card__icon {
    width: 56px;
    height: 56px;
  }
  .feature-card__icon svg {
    width: 32px;
    height: 32px;
  }

  /* Gallery PC */
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .gallery__caption {
    opacity: 0;
    transition: opacity var(--transition-base);
  }
  .gallery__item:hover .gallery__caption {
    opacity: 1;
  }

  /* Pricing PC */
  .pricing__cards {
    grid-template-columns: 1fr 2fr;
    gap: 32px;
  }

  /* Flow PC */
  .flow__steps {
    gap: 12px;
  }
  .flow__step-num-text {
    font-size: 48px;
  }
  .flow__step-desc {
    font-size: var(--fs-body);
    text-align: left;
  }

  /* FAQ PC */
  .faq__list {
    max-width: 800px;
  }

  /* Message PC */

  /* Access PC */
  .access__content {
    flex-direction: row;
  }
  .access__table-area {
    flex: 3;
  }
  .access__image-area {
    flex: 2;
  }
  .access__table th {
    width: 160px;
  }
  .access__map iframe { height: 400px; }

  /* Contact PC */
  .contact__phone { font-size: 28px; }

  /* Footer PC */
  .footer__nav-list {
    grid-template-columns: repeat(3, auto);
    gap: 8px 32px;
  }

  /* Corporate responsive - PC */
  .corp-hero { padding: 160px 0 120px; }
  .corp-hero__title { font-size: 42px; }
  .corp-section { padding: 80px 0; }
  .corp-info-table th { width: 180px; }
}

/* ========================================
   SP button full-width
   ======================================== */
@media (max-width: 767px) {
  html { scroll-padding-top: 72px; }

  .btn--primary, .btn--amber {
    width: 100%;
    padding: 16px 24px;
  }
  .btn--outline-white {
    width: 100%;
    padding: 16px 24px;
  }

  /* Floating bar visible on SP only after scroll */
  body.has-scrolled .floating-bar {
    /* controlled by JS */
  }

  /* Add bottom padding for floating bar */
  .footer {
    padding-bottom: calc(var(--floating-bar-height) + 24px);
  }
}

/* Hide floating bar on TB+ */
@media (min-width: 768px) {
  .floating-bar {
    display: none;
  }
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   WordPress Overrides
   ======================================== */
/* Admin bar offset */
.admin-bar .header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

/* wp_nav_menu class resets */
.menu { list-style: none; margin: 0; padding: 0; }
.menu-item { list-style: none; }
.menu-item a { text-decoration: none; }

/* Screen reader text (WP accessibility) */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* WP default image alignment */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }

/* ========================================
   Contact Form
   ======================================== */
.contact-form__wrap,
.contact__form-wrap {
  margin-top: var(--space-xl);
}
.contact-form__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-md);
}
.contact-form {
  max-width: var(--max-width-form);
  margin: 0 auto;
  text-align: left;
}
.contact-form__group {
  margin-bottom: var(--space-md);
}
.contact-form__label {
  display: block;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-xs);
}
.contact-form__required {
  display: inline-block;
  background: var(--color-amber-cta);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: var(--fs-body);
  font-family: var(--font-primary);
  color: var(--color-text-body);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-base);
  box-sizing: border-box;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-teal-primary);
}
.contact-form__input:invalid:not(:placeholder-shown),
.contact-form__select:invalid:not([value=""]),
.contact-form__textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}
.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: var(--space-lg) auto 0;
  cursor: pointer;
}
.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-form__result {
  text-align: center;
  margin-top: var(--space-md);
  font-size: var(--fs-body);
  min-height: 1.5em;
}
.contact-form__result--success {
  color: var(--color-teal-light);
  font-weight: 700;
}
.contact-form__result--error {
  color: #e74c3c;
  font-weight: 700;
}
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Corp page form adjustment */
.corp-contact .contact-form__wrap {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
  .contact-form__heading { font-size: 22px; }
  .contact-form__submit {
    width: auto;
    min-width: 240px;
  }
}

/* ========================================
   FOR PROS（相談支援専門員・医療SW向けセクション）
   ======================================== */
.for-pros {
  padding: var(--space-3xl) 0;
  background: var(--color-warm-beige);
}
.for-pros .section-subtitle {
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--color-text-sub);
}
.for-pros__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (min-width: 900px) {
  .for-pros__grid { grid-template-columns: 1fr 1fr; }
}
.for-pros__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: var(--space-lg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.for-pros__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin: 0 0 var(--space-sm);
  padding-left: 12px;
  border-left: 4px solid var(--color-teal-primary);
  line-height: 1.4;
}
.for-pros__card-title--mt { margin-top: var(--space-lg); }
.for-pros__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.for-pros__table th,
.for-pros__table td {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.for-pros__table th {
  width: 38%;
  color: var(--color-text-heading);
  font-weight: 600;
  background: var(--color-teal-pale);
}
.for-pros__contact-list,
.for-pros__doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.for-pros__contact-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
  line-height: 1.7;
}
.for-pros__contact-list li:last-child { border-bottom: 0; }
.for-pros__contact-list strong { color: var(--color-teal-dark); }
.for-pros__sub {
  font-size: 13px;
  color: var(--color-text-sub);
  display: inline-block;
  margin-top: 2px;
}
.for-pros__lead {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 var(--space-sm);
  color: var(--color-text-body);
}
.for-pros__doc-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 15px;
  line-height: 1.7;
}
.for-pros__doc-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--color-teal-primary);
  border-radius: 50%;
}
.for-pros__cta {
  text-align: center;
  margin-top: var(--space-xl);
}
.for-pros__cta .btn-sub {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 10px;
}
