:root {
  --teal-900: #123833;
  --teal-800: #133A36;
  --teal-700: #14776B;
  --teal-600: #15897b;
  --teal-500: #1d8e80;
  --teal-400: #2FA697;
  --mint-bg: #F4F9F7;
  --mint-100: #EAF5F2;
  --gold: #F2B056;
  --gold-dark: #e09a2e;
  --text-main: #123833;
  --text-sub: #4c645f;
  --text-soft: #516b66;
  --border-soft: #d9eae5;
  --font-base: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mint-bg);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
  color: var(--text-main);
}

ul, dl, dd { margin: 0; padding: 0; list-style: none; }

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

/* ---------- 共通パーツ ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
}

.btn--cta {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  color: #fff;
  padding: 11px 22px;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(20, 119, 107, .28);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
}
.btn--cta:hover {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  box-shadow: 0 10px 24px rgba(20, 119, 107, .42);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 21.5px;
  box-shadow: 0 10px 24px rgba(20, 119, 107, .32);
}

.push-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.push-btn::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 6px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal-700);
}

.push-btn__face {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 36px;
  font-size: 21.5px;
  font-weight: 700;
  color: var(--mint-100);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  border-radius: inherit;
  box-shadow: 0 10px 24px rgba(20, 119, 107, .32);
  transition: transform .2s ease, box-shadow .2s ease;
}

.push-btn:hover .push-btn__face {
  transform: translateY(6px);
  box-shadow: none;
}

.btn--on-light {
  background: #fff;
  color: var(--teal-700);
  padding: 17px 40px;
  font-size: 21.5px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.push-btn--on-dark::before {
  background: rgba(0, 0, 0, .25);
}

.push-btn__face--on-dark {
  background: #fff;
  color: var(--teal-700);
  padding: 17px 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

/* ライト背景用：影レイヤーをティール色にして黒枠が見えないようにする */
.push-btn--on-light::before {
  background: var(--teal-700);
}

.push-btn__face--on-light {
  background: #fff;
  color: var(--teal-700);
  padding: 17px 40px;
  box-shadow: 0 12px 30px rgba(20, 119, 107, .22);
}

.link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  padding-bottom: 3px;
}

.link-arrow::before,
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

.link-arrow::before {
  width: 100%;
  background: #b6ddd5;
}

.link-arrow::after {
  width: 0;
  background: var(--teal-700);
  transition: width .3s ease;
}

.link-arrow:hover::after {
  width: 100%;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: .28em;
  color: var(--teal-400);
  margin: 0 0 12px;
}

.eyebrow--gold { color: var(--gold); }

.section-title {
  font-size: clamp(29.5px, 4vw, 37.5px);
  line-height: 1.6;
  font-weight: 900;
  color: var(--text-main);
  margin: 0;
}

.section-title--light { color: #fff; }

.section-title-accent { color: var(--gold-dark); }

.section--pattern .section-title-accent {
  display: inline-block;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  vertical-align: bottom;
  border-right: 3px solid var(--gold-dark);
}

.section--pattern .section-title-accent.is-typing {
  animation:
    typewriterWidth 1.2s steps(6, end) forwards,
    typewriterCaret .8s step-end infinite;
}

@keyframes typewriterWidth {
  to { width: var(--full-width); }
}

@keyframes typewriterCaret {
  50% { border-color: transparent; }
}

@media (prefers-reduced-motion: reduce) {
  .section--pattern .section-title-accent {
    width: auto;
    border-right: none;
    animation: none;
  }
}

.body-text {
  font-size: 20px;
  line-height: 2.05;
  color: var(--text-sub);
  margin: 0;
}

.body-text--center {
  text-align: center;
  max-width: 660px;
  margin: 22px auto 0;
}

.body-text--wide { max-width: 840px; }

.body-text--mb-lg { margin-bottom: 40px; }

.footnote {
  font-size: 17.5px;
  color: #7c918c;
  line-height: 1.8;
  margin: 24px auto 0;
  max-width: 640px;
}

.footnote--center { text-align: center; }

/* プレースホルダー画像枠（写真・イラスト差し替え用） */
.ph {
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: repeating-linear-gradient(45deg, rgba(20, 119, 107, .07) 0 13px, rgba(20, 119, 107, .02) 13px 26px), #e7f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ph--ar43 { aspect-ratio: 4 / 3; }
.ph--ar169 { aspect-ratio: 16 / 9; }
.ph--ar167 { aspect-ratio: 16 / 7; }

.ph--center {
  max-width: 760px;
  margin: 0 auto 36px;
}

.ph--on-dark { border-color: rgba(255, 255, 255, .4); }

.ph__label {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #3a7a70;
  background: rgba(255, 255, 255, .92);
  padding: 7px 13px;
  border-radius: 9px;
}

/* ---------- ローディング ---------- */

body.is-loading { overflow: hidden; height: 100%; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}

.loader__panel--top { top: 0; }
.loader__panel--bottom { bottom: 0; }

.loader--open { pointer-events: none; }
.loader--open .loader__panel--top { transform: translateY(-100%); }
.loader--open .loader__panel--bottom { transform: translateY(100%); }

.loader__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  transition: opacity .35s ease;
}

.loader--open .loader__content { opacity: 0; }

.loader__line1 {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .32em;
  margin: 0 0 32px;
  opacity: 0;
  animation: loaderFadeIn .6s ease forwards;
  animation-delay: .3s;
}

.loader__line2-mask {
  overflow: hidden;
  display: inline-block;
}

.loader__line2 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900;
  margin: 0;
  transform: translateX(-100%);
  opacity: 0;
  animation: loaderSlideIn 1.4s cubic-bezier(.16, .84, .44, 1) forwards;
  animation-delay: 1s;
}

.loader__line2-accent { color: var(--gold-dark); }

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderSlideIn {
  to { transform: translateX(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .loader__line1, .loader__line2 { animation: none; opacity: 1; transform: none; }
  .loader__panel { transition: none; }
}

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(244, 249, 247, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e3efea;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
  text-decoration: none;
  color: inherit;
}

.site-header__logo-icon { height: 34px; width: auto; flex: none; }

.site-header__name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #173f3a;
  white-space: nowrap;
}

.site-header__name-sub {
  font-weight: 500;
  color: #5c7d77;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 18.5px;
  color: #3a5a55;
  font-weight: 500;
}

.site-nav__link { white-space: nowrap; text-decoration: none; color: inherit; transition: color 0.2s; }
.site-nav__link:hover { color: var(--teal-400); }

/* ---------- ヒーロー ---------- */

.hero {
  position: relative;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 56px) clamp(48px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
}

.hero__blob { position: absolute; z-index: 0; border-radius: 50%; }
.hero__blob--tr {
  top: -120px;
  right: -90px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 30% 30%, #d4ede6, #eaf5f1);
}
.hero__blob--bl {
  bottom: -140px;
  left: -90px;
  width: 320px;
  height: 320px;
  background: #eaf6ee;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid #bfe3da;
  color: #147a6e;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18.5px;
  box-shadow: 0 4px 14px rgba(20, 119, 107, .1);
  margin: 0 0 26px;
  white-space: nowrap;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(37.5px, 6.13vw, 56px);
  line-height: 1.5;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 24px;
  letter-spacing: .01em;
}

.hero__title-accent { color: var(--teal-500); }

.hero__lead {
  font-size: clamp(20px, 2.13vw, 21.5px);
  line-height: 2.05;
  color: var(--text-sub);
  margin: 0 auto 36px;
  max-width: 850px;
}

.hero__lead strong { color: #147a6e; }

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 54px);
}

.hero__visual {
  display: flex;
  gap: clamp(24px, 3vw, 34px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-circle {
  flex: none;
  width: clamp(240px, 29vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(20, 119, 107, .18);
  animation: statCirclePulse 2.6s ease-in-out infinite;
}

@keyframes statCirclePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .stat-circle { animation: none; }
}

.stat-circle__label {
  font-size: 17.5px;
  font-weight: 700;
  color: #8a6212;
  letter-spacing: .1em;
}

.stat-circle__number {
  font-size: clamp(96px, 12vw, 123px);
  font-weight: 900;
  color: var(--gold-dark);
  line-height: .85;
}

.stat-circle__suffix { font-size: 22.5px; font-weight: 700; color: #8a6212; }

.hero__visual-image {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.hero__icon-grid {
  margin-top: clamp(36px, 4vw, 52px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.icon-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(20, 119, 107, .08);
}

.icon-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #dcf0eb;
  color: var(--teal-600);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-card__icon--gold { background: #fbe9c9; color: #d18d22; }

.icon-card__label { font-size: 18.5px; font-weight: 700; color: #1f4842; line-height: 1.4; }

/* ---------- セクション共通レイアウト ---------- */

.section { padding: clamp(52px, 6vw, 66px) clamp(20px, 5vw, 56px); }

.section--white { background: #fff; }
.section--mint { background: var(--mint-100); }
.section--mint-2 { background: var(--mint-bg); }
.section--dark { background: var(--teal-800); }

.section--pattern {
  position: relative;
  background: linear-gradient(120deg, #fffbf0, #fbe9c9, #fffbf0);
  background-size: 300% 300%;
  animation: patternColorShift 18s ease-in-out infinite;
}

@keyframes patternColorShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .section--pattern { animation: none; }
}

.section__inner { max-width: 1200px; margin: 0 auto; }
.section__inner--narrow { max-width: 1000px; margin: 0 auto; text-align: center; }
.section__inner--faq { max-width: 760px; margin: 0 auto; }

.section-head { margin-bottom: 38px; }
.section-head--left { text-align: left; }
.section--narrow .section-head,
.section__inner--narrow .section-head { margin-bottom: 42px; }

/* ---------- 共感セクション ---------- */

.empathy__grid {
  display: flex;
  gap: clamp(28px, 4vw, 40px);
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.empathy__col {
  flex: 3 1 0%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.empathy__col:last-child {
  flex: 2 1 0%;
}

.empathy__image {
  margin-top: 0;
  width: 100%;
  aspect-ratio: 12 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.check-list { display: flex; flex-direction: column; gap: 10px; }

.check-list .check-item {
  opacity: 0;
  transform: translateX(32px);
}

.check-list.is-visible .check-item {
  animation: checkItemFadeInRight .5s ease-out forwards;
}

.check-list.is-visible .check-item:nth-child(1) { animation-delay: 0s; }
.check-list.is-visible .check-item:nth-child(2) { animation-delay: .5s; }
.check-list.is-visible .check-item:nth-child(3) { animation-delay: 1s; }
.check-list.is-visible .check-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes checkItemFadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .check-list .check-item { opacity: 1; transform: none; animation: none; }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 19.5px;
  color: #2c4742;
}

.check-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #dcf0eb;
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18.5px;
  font-weight: 900;
  flex: none;
}

.closing-banner {
  margin-top: 30px;
  background: var(--teal-800);
  border-radius: 16px;
  padding: 26px 30px;
  text-align: center;
  font-size: clamp(20px, 2.4vw, 21.5px);
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
}

/* ---------- 制作内容セクション ---------- */

.pages__image-video {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 18px;
}

/* ---------- 解決策／制作内容 共通カードグリッド ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
  text-align: left;
}

.feature-grid--compact { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(20, 119, 107, .07);
}

.feature-card--compact { border-radius: 14px; padding: 18px; box-shadow: 0 4px 14px rgba(20, 119, 107, .06); }

.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #eaf6f1;
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.feature-card__icon--compact { width: 38px; height: 38px; border-radius: 10px; background: #e3f3ee; }

.feature-card__label { font-size: 19.5px; font-weight: 700; color: #1f4842; }

.feature-card--compact .feature-card__label { font-size: 18.5px; }

/* ---------- 比較セクション ---------- */

.compare__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: left;
}

.compare__row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.compare__row--top { max-width: 700px; }
.compare__row--bottom { max-width: 1000px; }

.compare__col--1 { flex: 1; min-width: 0; }
.compare__col--2 { flex: 2; min-width: 0; }
.compare__col--3 { flex: 3; min-width: 0; }
.compare__col--5 { flex: 5; min-width: 0; }

.compare__ph {
  min-height: 280px;
}

.compare__img {
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.compare-card {
  background: #f4f5f4;
  border-radius: 22px;
  padding: 30px 28px;
}

.compare-card--highlight {
  background: linear-gradient(160deg, #eafaf6, #f3faf7);
  border: 2px solid var(--teal-400);
  box-shadow: 0 14px 34px rgba(20, 119, 107, .14);
}

.compare__row--bottom .compare-card--highlight {
  padding-left: 120px;
}

.compare-card__title {
  font-size: 21.5px;
  font-weight: 700;
  color: #7c8480;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e3e6e4;
}

.compare-card__title--highlight { color: var(--teal-700); border-bottom-color: #cfe9e2; }

.compare-list { display: flex; flex-direction: column; gap: 14px; }

.compare-item { display: flex; align-items: flex-start; gap: 12px; font-size: 19.5px; line-height: 1.6; }

.compare-item__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17.5px;
  font-weight: 900;
  flex: none;
  margin-top: 1px;
}

.compare-item__icon--cross { background: #e0e2e0; color: #9aa19c; }
.compare-item__icon--cross + span { color: #6b726d; }

.compare-item__icon--check { background: var(--teal-600); color: #fff; }
.compare-item__icon--check + span { color: #244841; font-weight: 500; }

@keyframes compareShrink {
  0%   { transform: scale(1); }
  100% { transform: scale(0.88); }
}

@keyframes comparePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.07); box-shadow: 0 22px 52px rgba(20, 119, 107, .32); }
  65%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.compare-card.is-shrink {
  animation: compareShrink 0.6s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.compare-card--highlight.is-pop {
  animation: comparePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .compare-card.is-shrink,
  .compare-card--highlight.is-pop { animation: none; }
}

.compare__note {
  text-align: center;
  font-size: 19.5px;
  line-height: 1.9;
  color: var(--text-soft);
  margin: 28px auto 0;
  max-width: 720px;
}

.compare__note strong { color: var(--teal-700); }

/* ---------- 開業前スケジュール ---------- */

.schedule__image-img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 18px;
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  text-align: left;
}

@keyframes dayCardPop {
  0%   { opacity: 0; transform: scale(0.72); }
  55%  { opacity: 1; transform: scale(1.06); }
  78%  { transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

.day-card {
  background: #f3f9f7;
  border-radius: 18px;
  padding: 26px 22px;
  border-top: 4px solid var(--teal-400);
  opacity: 0;
}
.day-card.is-visible {
  animation: dayCardPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.day-card--accent { background: #fbf3e2; border-top-color: var(--gold); }
@media (prefers-reduced-motion: reduce) {
  .day-card { opacity: 1; }
  .day-card.is-visible { animation: none; }
}

.day-card__badge {
  display: inline-flex;
  background: var(--teal-700);
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.day-card__badge--accent { background: var(--gold-dark); }

.day-card__text { font-size: 18.5px; line-height: 1.85; color: #37524d; margin: 0; font-weight: 500; }
.day-card--accent .day-card__text { color: #6e5526; }

.schedule__note {
  text-align: center;
  font-size: 19.5px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 30px auto 0;
  max-width: 820px;
}

.schedule__note strong { color: var(--teal-700); }

/* ---------- 選ばれる理由 ---------- */

.reason__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.reason-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 28px 26px;
}

.reason-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }

.reason-card__num {
  font-family: var(--font-mono);
  font-size: 17.5px;
  font-weight: 700;
  color: #0e2e2a;
  background: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

@keyframes reasonTitleIn {
  0%   { opacity: 0; transform: translateX(-18px); }
  60%  { opacity: 1; transform: translateX(4px); }
  100% { opacity: 1; transform: translateX(0); }
}

.reason-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
}
.reason-card__title.is-visible {
  animation: reasonTitleIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .reason-card__title { opacity: 1; }
  .reason-card__title.is-visible { animation: none; }
}

.reason-card__text { font-size: 18.5px; line-height: 1.9; color: #bcd6d0; margin: 0; }

/* ---------- 料金セクション ---------- */

.price__image-img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 18px;
}

.section--mint .section-head {
  text-align: center;
  margin-bottom: 42px;
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
  text-align: left;
}

.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 26px;
  border: 1px solid #d6e8e2;
  box-shadow: 0 8px 24px rgba(20, 119, 107, .06);
}

@keyframes priceCardShine {
  0%        { transform: skewX(-20deg) translateX(-220%); }
  30%, 100% { transform: skewX(-20deg) translateX(420%); }
}

.price-card--featured {
  background: var(--teal-700);
  border: none;
  position: relative;
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(20, 119, 107, .3);
}

/* シャインをクリップするための内側ラッパー（overflow: hidden をここに閉じ込め、リボンが欠けない） */
.price-card__shine-wrap {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.price-card__shine-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 50%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0)    0%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0)    100%
  );
  transform: skewX(-20deg) translateX(-220%);
  animation: priceCardShine 3.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .price-card__shine-wrap::before { animation: none; }
}

.price-card__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #5a3c08;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  z-index: 2;
  white-space: nowrap;
}

.price-card__name { font-size: 21.5px; font-weight: 700; color: #1f4842; margin: 0 0 6px; }
.price-card__name--on-dark { color: #fff; }

.price-card__desc { font-size: 17.5px; color: #6b817c; line-height: 1.6; margin: 0 0 18px; min-height: 38px; }
.price-card__desc--on-dark { color: #bfe0d9; }

.price-card__label { font-size: 17.5px; color: #8a8f8c; margin: 0; }
.price-card__label--on-dark { color: #a9d3ca; }

.price-card__amount { font-size: 49.5px; font-weight: 900; color: var(--teal-600); line-height: 1; margin: 0 0 16px; }
.price-card__amount--on-dark { color: #fff; }
.price-card__amount-suffix { font-size: 24px; }

.price-card__free-badge {
  display: inline-flex;
  background: #fbe9c9;
  color: #9a6212;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
  white-space: nowrap;
}

.price-card__free-badge--accent { background: var(--gold); color: #5a3c08; }

.price-card__details {
  font-size: 18px;
  color: #48605b;
  line-height: 1.9;
  border-top: 1px solid #ecf2f0;
  padding-top: 14px;
  margin: 0;
}

.price-card__details--on-dark { color: #e3f1ee; border-top-color: rgba(255, 255, 255, .2); }

/* ---------- よくある質問 ---------- */

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item { background: #f3f9f7; border-radius: 16px; padding: 24px 26px; }

.faq-item__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 12px;
  font-size: 21.5px;
  font-weight: 700;
  color: var(--teal-800);
  line-height: 1.5;
}

.faq-item__q-badge {
  font-family: var(--font-mono);
  width: 37px;
  height: 37px;
  border-radius: 8px;
  background: var(--teal-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18.5px;
  font-weight: 700;
  flex: none;
}

.faq-item__a {
  font-size: 19.5px;
  line-height: 1.95;
  color: var(--text-sub);
  margin: 0 0 0 42px;
}

/* ---------- 最終CTA ---------- */

.cta-final {
  padding: clamp(52px, 6vw, 72px) clamp(20px, 5vw, 56px);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}

.cta-final__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  flex-wrap: wrap;
}

.cta-final__text { flex: 1; min-width: 300px; }

.cta-final__title { font-size: clamp(29.5px, 4vw, 37.5px); line-height: 1.6; font-weight: 900; color: #fff; margin: 0 0 16px; }

.cta-final__lead { font-size: 20px; line-height: 2; color: #d6efe9; margin: 0 0 32px; max-width: 520px; }

.cta-final__image-img {
  flex: none;
  width: clamp(220px, 36vw, 360px);
  display: block;
  border-radius: 20px;
}

/* ---------- フッター ---------- */

.site-footer { background: var(--teal-800); padding: clamp(36px, 4vw, 48px) clamp(20px, 5vw, 56px); color: #cfe5e0; }

.site-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }

.site-footer__logo-icon { height: 30px; width: auto; flex: none; }

.site-footer__name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #9cc4bd;
  white-space: nowrap;
}

.site-footer__address { font-size: 16.5px; line-height: 1.9; color: #9cc4bd; margin: 0; }

/* ---------- ページトップボタン ---------- */

.page-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-500);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(20, 119, 107, .38);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  z-index: 100;
}
.page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.page-top:hover {
  background: var(--teal-700);
  transform: translateY(-3px);
}

/* ---------- レスポンシブ調整 ---------- */

@media (max-width: 720px) {
  .reason__grid { grid-template-columns: 1fr; }
  .site-nav .site-nav__link { display: none; }
  .compare__row { flex-direction: column; }
  .compare__col--1,
  .compare__col--2,
  .compare__col--3,
  .compare__col--5 { flex: none; width: 100%; }
  .compare__img { display: none; }
  .compare__row--bottom .compare-card--highlight { padding-left: 28px; }
}

/* ============================================================
   お問い合わせページ（page-contact.php）
   ============================================================ */

.contact-hero {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  padding: clamp(52px, 6vw, 80px) clamp(20px, 5vw, 56px);
  text-align: center;
  color: #fff;
}

.contact-hero__inner { max-width: 720px; margin: 0 auto; }

.contact-hero .eyebrow { color: var(--gold); }

.contact-hero__title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.5;
}

.contact-hero__lead {
  font-size: 20px;
  line-height: 2;
  color: #d6efe9;
  margin: 0;
}

.contact-note {
  background: var(--mint-100);
  border-left: 4px solid var(--teal-400);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  font-size: 18.5px;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 40px;
}

.contact-form-wrap { max-width: 640px; margin: 0 auto; }

.contact-form { display: flex; flex-direction: column; gap: 26px; }

.contact-form__row { display: flex; flex-direction: column; gap: 8px; }

.contact-form__label {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form__required {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--teal-600);
  padding: 2px 8px;
  border-radius: 4px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 18.5px;
  font-family: var(--font-base);
  color: var(--text-main);
  background: #fff;
  transition: border-color 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(47, 166, 151, .15);
}

.contact-form__textarea { resize: vertical; min-height: 160px; }

.contact-form__submit { text-align: center; padding-top: 8px; }

/* ============================================================
   投稿一覧ページ（home.php）
   ============================================================ */

.archive-hero {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  padding: clamp(52px, 6vw, 80px) clamp(20px, 5vw, 56px);
  text-align: center;
  color: #fff;
}

.archive-hero__inner { max-width: 720px; margin: 0 auto; }

.archive-hero .eyebrow { color: var(--gold); }

.archive-hero__title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.5;
}

.archive-hero__lead {
  font-size: 19.5px;
  line-height: 1.9;
  color: #d6efe9;
  margin: 0;
}

/* 投稿カードグリッド */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

@media (max-width: 960px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* 投稿カード */
.post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(20, 119, 107, .08);
  transition: transform 0.22s, box-shadow 0.22s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(20, 119, 107, .16);
}

.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* サムネイル */
.post-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mint-100);
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.post-card:hover .post-card__thumb img {
  transform: scale(1.04);
}

.post-card__thumb--no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint-100), #ddf0ea);
}

.post-card__thumb-label {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-400);
  letter-spacing: .1em;
}

/* カード本文 */
.post-card__body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.post-card__date {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #8a9e99;
}

.post-card__cat {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-700);
  background: var(--mint-100);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.post-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0 0 10px;
}

.post-card__excerpt {
  font-size: 17.5px;
  color: var(--text-sub);
  line-height: 1.85;
  margin: 0 0 16px;
  flex: 1;
}

.post-card__more {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--teal-500);
  margin-top: auto;
}

/* ページネーション */
.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 18.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--teal-700);
  background: #fff;
  border: 1.5px solid var(--border-soft);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.archive-pagination .page-numbers.current {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}

.archive-pagination .page-numbers:hover:not(.current) {
  background: var(--mint-100);
  border-color: var(--teal-400);
}

.archive-pagination .prev,
.archive-pagination .next {
  width: auto;
  padding: 0 18px;
}

/* 記事なし */
.archive-empty {
  text-align: center;
  padding: 60px 0;
}

.archive-empty__text {
  font-size: 20px;
  color: var(--text-sub);
}

/* =====================================================
   個別記事ページ (single.php)
===================================================== */

/* ヒーロー */
.single-hero {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-400) 100%);
  padding: 56px 24px 48px;
}

.single-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

/* パンくず */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.breadcrumb__link {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: color 0.18s;
}

.breadcrumb__link:hover {
  color: #fff;
}

.breadcrumb__sep {
  font-size: 16px;
  color: rgba(255, 255, 255, .4);
}

.breadcrumb__current {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
}

/* メタ情報 */
.single-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.single-hero__date {
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
}

/* タイトル */
.single-hero__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* ===================== レイアウト（メイン＋サイドバー） ===================== */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

@media (max-width: 860px) {
  .single-layout {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
  }
}

/* ===================== メイン記事エリア ===================== */
.single-thumb {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(18, 56, 51, .12);
}

.single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* 記事本文 */
.single-content {
  line-height: 1.95;
  color: var(--text-main);
}

.single-content h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--teal-800);
  border-left: 5px solid var(--teal-500);
  padding-left: 14px;
  margin: 48px 0 20px;
  line-height: 1.5;
}

.single-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--teal-700);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border-soft);
}

.single-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  margin: 28px 0 12px;
}

.single-content p {
  font-size: 18px;
  margin: 0 0 24px;
}

.single-content ul,
.single-content ol {
  font-size: 18px;
  margin: 0 0 24px;
  padding-left: 1.6em;
}

.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }

.single-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.single-content a {
  color: var(--teal-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-content a:hover {
  color: var(--teal-800);
}

.single-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--mint-100);
  border-left: 4px solid var(--teal-400);
  border-radius: 0 10px 10px 0;
  font-size: 18px;
  color: var(--text-sub);
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 12px 0;
}

.single-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17.5px;
  margin: 24px 0;
}

.single-content th,
.single-content td {
  padding: 12px 16px;
  border: 1.5px solid var(--border-soft);
  text-align: left;
  line-height: 1.6;
}

.single-content th {
  background: var(--mint-100);
  font-weight: 700;
  color: var(--teal-800);
}

/* タグ */
.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border-soft);
}

.single-tag {
  font-size: 16px;
  color: var(--teal-700);
  background: var(--mint-100);
  padding: 4px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.single-tag:hover {
  background: var(--teal-700);
  color: #fff;
}

/* 前後の記事ナビ */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border-soft);
}

.single-post-nav__prev { justify-self: start; }
.single-post-nav__next { justify-self: end; text-align: right; }

.single-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  transition: border-color 0.18s, box-shadow 0.18s;
  max-width: 300px;
}

.single-post-nav__link:hover {
  border-color: var(--teal-400);
  box-shadow: 0 4px 14px rgba(20, 119, 107, .12);
}

.single-post-nav__arrow {
  font-size: 18px;
  color: var(--teal-500);
  font-weight: 700;
}

.single-post-nav__label {
  font-size: 16px;
  color: var(--text-sub);
}

.single-post-nav__title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 600px) {
  .single-post-nav {
    grid-template-columns: 1fr;
  }
  .single-post-nav__next { justify-self: start; text-align: left; }
}

/* 一覧へ戻る */
.single-back {
  margin-top: 32px;
  text-align: center;
}

.single-back__link {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-600);
  text-decoration: none;
  transition: color 0.18s;
}

.single-back__link:hover {
  color: var(--teal-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================== サイドバー ===================== */
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(18, 56, 51, .07);
}

.sidebar-card--cta {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
  color: #fff;
}

.sidebar-card__heading {
  font-size: 17.5px;
  font-weight: 900;
  color: var(--teal-800);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-soft);
}

.sidebar-card__heading--white {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .25);
}

/* 著者プロフィール */
.sidebar-profile {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sidebar-profile__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.sidebar-profile__name {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 6px;
}

.sidebar-profile__desc {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
  margin: 0;
}

/* カテゴリ一覧 */
.sidebar-cat-list__item {
  border-bottom: 1px solid var(--border-soft);
}

.sidebar-cat-list__item:last-child {
  border-bottom: none;
}

.sidebar-cat-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  font-size: 17.5px;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.18s;
}

.sidebar-cat-list__link:hover {
  color: var(--teal-600);
}

.sidebar-cat-list__count {
  font-size: 16px;
  color: var(--text-sub);
  font-family: var(--font-mono);
}

/* サイドバーCTA */
.sidebar-cta__text {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin: 0 0 20px;
}

.sidebar-cta__btn {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--teal-700);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.sidebar-cta__btn:hover {
  background: var(--mint-100);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
  transform: translateY(-2px);
}

