/* P・SPO HP スタイル — 情報訴求・落ち着いた・読みやすい */

/* === デザイントークン === */
:root {
  /* ブランドカラー */
  --c-navy: #152340;
  --c-navy-soft: #2a3a5e;
  --c-navy-pale: #D6DCE8;
  --c-coral: #E5654A;
  --c-coral-soft: #FAD9CD;
  --c-peach: #F5A878;
  --c-sand: #FCC890;
  --c-mint: #7BC4B5;
  --c-mint-soft: #C8E5DD;

  /* グレー */
  --c-bg: #FAFAF7;
  --c-bg-card: #FFFFFF;
  --c-border: #E8E6E0;
  --c-text: #1A1F2E;
  --c-text-mute: #5C6377;
  --c-text-faint: #93989F;

  /* 半径 */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;

  /* シャドウ */
  --sh-sm: 0 1px 2px rgba(21, 35, 64, 0.06);
  --sh-md: 0 4px 16px rgba(21, 35, 64, 0.08);
  --sh-lg: 0 12px 32px rgba(21, 35, 64, 0.12);

  /* タイポ */
  --f-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --f-display: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --f-mono: "Manrope", ui-monospace, monospace;

  /* レイアウト */
  --container: 1120px;
  --container-narrow: 880px;
}

/* === リセット === */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-coral); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.3; margin: 0; color: var(--c-navy); }

/* === レイアウト === */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 640px) {
  .container, .container-narrow { padding-inline: 20px; }
}

/* === ヘッダー === */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.header__inner {
  display: flex; align-items: center;
  height: 64px;
  gap: 24px;
}
.header__brand {
  display: flex; align-items: center; gap: 10px;
  flex: 0 0 auto;
}
.header__brand img { height: 32px; width: auto; }
.header__brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.header__brand-text .name {
  font-family: var(--f-display);
  font-weight: 700; font-size: 16px;
  color: var(--c-navy);
}
.header__brand-text .sub {
  font-size: 11px; color: var(--c-text-mute);
}
.header__nav {
  display: flex; gap: 4px;
  margin-left: auto;
}
.header__nav a {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-weight: 500;
}
.header__nav a:hover { background: var(--c-navy-pale); color: var(--c-navy); }
.header__cta {
  display: flex; gap: 8px;
  margin-left: 8px;
}
.header__menu-btn {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  margin-left: auto;
  font-size: 24px;
  color: var(--c-navy);
}
@media (max-width: 880px) {
  .header__nav, .header__cta { display: none; }
  .header__menu-btn { display: block; }
  .header__nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--c-border);
    padding: 12px;
    margin: 0;
  }
  .header__nav.is-open a {
    padding: 12px 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--c-border);
  }
}

/* === ボタン === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  transition: all .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--c-coral);
  color: white;
  border-color: var(--c-coral);
}
.btn--primary:hover { background: #d4543c; color: white; }
.btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-border);
}
.btn--ghost:hover { background: var(--c-navy-pale); color: var(--c-navy); }
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* === ページヘッダー === */
.page-hero {
  padding: 64px 0 40px;
  background: linear-gradient(180deg, white 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-border);
}
.page-hero__breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--c-text-mute);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--c-text-mute); }
.page-hero__breadcrumb a:hover { color: var(--c-navy); }
.page-hero__breadcrumb .sep { color: var(--c-text-faint); }
.page-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px;
}
.page-hero__lede {
  font-size: 16px;
  color: var(--c-text-mute);
  margin: 0;
  max-width: 640px;
}

/* === HP トップ FV === */
.hp-hero {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, white 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-border);
}
.hp-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hp-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 16px;
  line-height: 1.3;
}
.hp-hero__title .accent { color: var(--c-coral); }
.hp-hero__lede {
  font-size: 16px;
  color: var(--c-text-mute);
  margin: 0 0 24px;
  max-width: 480px;
  line-height: 1.8;
}
.hp-hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hp-hero__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sh-md);
}
.hp-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .hp-hero__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* === セクション === */
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: white; }
.section__head {
  margin-bottom: 32px;
}
.section__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-coral);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.section__title {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 12px;
}
.section__lede {
  font-size: 15px;
  color: var(--c-text-mute);
  margin: 0;
  max-width: 640px;
}

/* === カード === */
.card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all .2s;
}
.card--hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--c-navy-pale);
}
.card--feature { padding: 28px; }
.card__title { font-size: 18px; margin: 0 0 8px; }
.card__body { font-size: 14px; color: var(--c-text-mute); margin: 0; }

/* === グリッド === */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* === 拠点カード === */
.location-card {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.location-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.location-card__photo { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.location-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.location-card__name { font-size: 18px; margin: 0 0 4px; }
.location-card__tagline {
  font-size: 13px; color: var(--c-coral); font-weight: 600;
  margin: 0 0 12px;
}
.location-card__meta {
  font-size: 13px; color: var(--c-text-mute);
  display: flex; flex-direction: column; gap: 6px;
  margin: 0 0 16px;
}
.location-card__meta-row { display: flex; gap: 8px; }
.location-card__meta-row dt {
  flex: 0 0 56px; font-weight: 600; color: var(--c-text); margin: 0;
}
.location-card__meta-row dd { margin: 0; flex: 1; }
.location-card__cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  display: flex; gap: 8px;
}

/* === 価格カード === */
.price-card {
  background: white;
  border: 2px solid var(--c-coral);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.price-card__label {
  font-size: 13px; color: var(--c-coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-card__amount {
  font-family: var(--f-mono);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  margin: 12px 0 4px;
}
.price-card__amount .yen { font-size: 0.5em; margin-right: 4px; }
.price-card__period { font-size: 14px; color: var(--c-text-mute); }
.price-card__includes {
  text-align: left; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--c-border);
  list-style: none; padding-left: 0;
}
.price-card__includes li {
  font-size: 14px; padding: 6px 0;
  display: flex; gap: 8px;
}
.price-card__includes li::before {
  content: "✓"; color: var(--c-mint); font-weight: 700;
}

/* === キャンペーンバナー === */
.campaign-banner {
  background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-peach) 100%);
  color: white;
  padding: 24px 32px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.campaign-banner__title { color: white; margin: 0 0 4px; font-size: 18px; }
.campaign-banner__sub { margin: 0; font-size: 14px; opacity: 0.95; }
.campaign-banner__code {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .campaign-banner { flex-direction: column; text-align: center; }
}

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--c-border); padding: 20px 0; }
.faq-item__q {
  font-weight: 600; color: var(--c-navy);
  margin: 0 0 8px; display: flex; gap: 12px;
  font-size: 16px;
}
.faq-item__q::before {
  content: "Q."; color: var(--c-coral);
  font-family: var(--f-mono); font-weight: 700;
}
.faq-item__a {
  color: var(--c-text-mute); margin: 0;
  padding-left: 28px; font-size: 14px;
}

/* === ニュース === */
.news-item {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.news-item__date {
  flex: 0 0 96px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-text-mute);
}
.news-item__category {
  flex: 0 0 80px;
  font-size: 11px;
  background: var(--c-navy-pale);
  color: var(--c-navy);
  padding: 2px 8px;
  border-radius: var(--r-sm);
  text-align: center;
  align-self: start;
  margin-top: 2px;
}
.news-item__title { flex: 1; font-size: 14px; color: var(--c-text); }
.news-item:hover .news-item__title { color: var(--c-coral); }
@media (max-width: 640px) {
  .news-item { flex-direction: column; gap: 4px; }
  .news-item__category { align-self: flex-start; }
}

/* === ステップ === */
.steps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
}
.step__num {
  font-family: var(--f-mono);
  font-size: 32px; font-weight: 700;
  color: var(--c-coral); line-height: 1;
}
.step__title { font-size: 16px; margin: 8px 0 8px; }
.step__body { font-size: 13px; color: var(--c-text-mute); margin: 0; }

/* === フッター === */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer h4 {
  color: white;
  font-size: 14px; margin: 0 0 16px;
  font-weight: 700;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer__brand img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer__brand p {
  color: rgba(255,255,255,0.7);
  font-size: 13px; line-height: 1.7;
  margin: 12px 0 0;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,0.75); font-size: 13px; }
.footer a:hover { color: white; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}

/* === ユーティリティ === */
.u-text-center { text-align: center; }
.u-mt-0 { margin-top: 0; }
.u-mt-2 { margin-top: 8px; }
.u-mt-4 { margin-top: 16px; }
.u-mt-6 { margin-top: 24px; }
.u-mt-8 { margin-top: 32px; }
.u-flex { display: flex; }
.u-flex-gap { gap: 12px; }
.u-flex-wrap { flex-wrap: wrap; }
.u-text-mute { color: var(--c-text-mute); }
.u-text-coral { color: var(--c-coral); }
.u-tag {
  display: inline-block; font-size: 12px;
  background: var(--c-navy-pale); color: var(--c-navy);
  padding: 2px 10px; border-radius: 9999px; font-weight: 600;
}
.u-tag--mint { background: var(--c-mint-soft); color: #2a6a5d; }
.u-tag--coral { background: var(--c-coral-soft); color: var(--c-coral); }

/* === 比較表 === */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.compare-table th, .compare-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.compare-table th {
  background: var(--c-navy-pale);
  color: var(--c-navy);
  font-weight: 700; font-size: 13px;
}
.compare-table td:first-child {
  font-weight: 600; color: var(--c-navy);
  background: rgba(214, 220, 232, 0.3);
}
.compare-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}

/* === 地図 === */
.map-wrap {
  height: 480px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
@media (max-width: 640px) { .map-wrap { height: 360px; } }

/* === 帯フィーチャ === */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.feature-strip__item {
  padding: 24px;
  border-right: 1px solid var(--c-border);
  text-align: center;
}
.feature-strip__item:last-child { border-right: none; }
.feature-strip__num {
  font-family: var(--f-mono);
  font-size: 28px; font-weight: 700;
  color: var(--c-coral); line-height: 1;
  margin-bottom: 6px;
}
.feature-strip__label { font-size: 12px; color: var(--c-text-mute); }
@media (max-width: 880px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip__item:nth-child(2) { border-right: none; }
  .feature-strip__item:nth-child(1), .feature-strip__item:nth-child(2) { border-bottom: 1px solid var(--c-border); }
  .feature-strip__item:nth-child(3) { border-right: 1px solid var(--c-border); }
}

/* === セクション間 ヘッド + ボディ === */
.section-body { display: grid; gap: 24px; }
.prose { max-width: 720px; }
.prose p { margin: 0 0 16px; line-height: 1.8; }
.prose h3 { font-size: 18px; margin: 32px 0 12px; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }

/* === お問い合わせフォーム === */
.form-grid { display: grid; gap: 20px; max-width: 640px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--c-navy); }
.form-row label .req { color: var(--c-coral); margin-left: 4px; }
.form-row input,
.form-row textarea,
.form-row select {
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: inherit; font-size: 14px;
  background: white;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-coral);
}
.form-row textarea { min-height: 120px; resize: vertical; }
