/* ============================================================
   和良屋（WARAYA）ウェブサイト — style.css
   Advanced仕様・手作りサイト（build.py対象外）
   ============================================================ */

/* ----------------------------------------------------------
   0. CSS Custom Properties
   ---------------------------------------------------------- */
:root {
  /* ブランドカラー（茜・テラコッタ） */
  --brand: #A63D2D;
  --brand-light: #F9EFED;
  --brand-dark: #7D2E22;
  --brand-rgb: 166, 61, 45;
  --accent: #3D6B6B;
  --accent-light: #EBF2F2;
  --accent-dark: #2A4A4A;

  /* テキスト */
  --text: #2D3136;
  --text-muted: #4d555d;
  --text-light: #6b737c;
  --text-on-brand: #ffffff;
  --text-on-dark: #ffffff;

  /* 背景 */
  --bg: #ffffff;
  --bg-alt: #f8fafb;
  --bg-dark: #1a2332;

  /* UI */
  --border: #e2e8f0;
  --border-light: #f0f3f6;
  --card: #ffffff;
  --danger: #ef4444;

  /* 形状 */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* 影 */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* レイアウト */
  --max-width: 1100px;
  --max-width-narrow: 800px;
  --container-padding: 20px;

  /* トランジション */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  /* フォント */
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Sans JP", sans-serif;
  --font-heading: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

/* ----------------------------------------------------------
   1. Reset & Base
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brand-dark);
}

ul, ol {
  list-style: none;
}

/* ----------------------------------------------------------
   2. Typography
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.4;
  color: var(--text);
}

/* ----------------------------------------------------------
   3. Layout
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 60px 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section__title-accent {
  color: var(--brand);
}

.section__title-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  display: inline;
}

.section__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -24px;
  margin-bottom: 32px;
}

.sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .section__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .section__subtitle {
    font-size: 16px;
    margin-bottom: 56px;
  }

  .sp-only {
    display: none;
  }
}

/* ----------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--brand);
  color: var(--text-on-brand);
  border-color: var(--brand);
}

.btn--primary:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--text-on-brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background-color: var(--bg);
  color: var(--brand);
  border-color: var(--brand);
}

.btn--secondary:hover {
  background-color: var(--brand-light);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text-on-brand);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--text-on-brand);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ----------------------------------------------------------
   5. Header
   ---------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-ja {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header__logo-en {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-left: 2px;
}

/* Desktop Nav */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header__nav-link:hover {
  color: var(--brand);
  background-color: var(--brand-light);
}

.header__nav-link--cta {
  background-color: var(--brand);
  color: var(--text-on-brand);
  margin-left: 8px;
}

.header__nav-link--cta:hover {
  background-color: var(--brand-dark);
  color: var(--text-on-brand);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.header__hamburger:hover {
  background-color: var(--bg-alt);
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav overlay */
.header__nav.is-open {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  padding: 24px var(--container-padding);
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

.header__nav.is-open .header__nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.header__nav.is-open .header__nav-link {
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

.header__nav.is-open .header__nav-link--cta {
  margin-left: 0;
  margin-top: 12px;
  text-align: center;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .header__inner {
    height: 72px;
  }

  .header__nav {
    display: block;
  }

  .header__hamburger {
    display: none;
  }
}

/* ----------------------------------------------------------
   6. Hero
   ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--bg) 60%);
  overflow: hidden;
}

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

.hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  background-color: rgba(var(--brand-rgb), 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background-color: rgba(var(--brand-rgb), 0.1);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 25s ease-in-out infinite;
}

.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: -20s; }
.hero__slide:nth-child(3) { animation-delay: -15s; }
.hero__slide:nth-child(4) { animation-delay: -10s; }
.hero__slide:nth-child(5) { animation-delay: -5s; }

@keyframes heroFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero__bg-deco {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 0 100px;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero__headline {
    font-size: 38px;
  }

  .hero__sub {
    font-size: 16px;
  }

  .hero__cta {
    flex-direction: row;
    gap: 16px;
  }
}

/* ----------------------------------------------------------
   7. Empathy
   ---------------------------------------------------------- */
.section--empathy {
  background-color: var(--bg);
}

.empathy__group-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-left: 4px;
}

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

.empathy__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.empathy__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
  background-color: #fef2f2;
  border-radius: var(--radius-sm);
}

.empathy__card-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.empathy__card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.empathy__closing {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 8px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .empathy__group-label {
    font-size: 16px;
    text-align: center;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .empathy__grid--two {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .empathy__grid--three {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .empathy__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }

  .empathy__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }

  .empathy__closing {
    font-size: 16px;
    margin-top: 16px;
  }
}

/* ----------------------------------------------------------
   Campaign Banner (期間限定)
   ---------------------------------------------------------- */
.campaign-banner {
  padding: 1.5rem 0;
  text-align: center;
}

.campaign-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #2D4A6E 0%, #3D6B6B 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: opacity 0.2s;
}

.campaign-banner__link:hover {
  opacity: 0.92;
}

.campaign-banner__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.campaign-banner__text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.campaign-banner__text strong {
  font-weight: 700;
}

.campaign-banner__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .campaign-banner__link {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
  }

  .campaign-banner__text {
    font-size: 0.8rem;
  }
}

/* ----------------------------------------------------------
   Receptacle（Googleからの受け皿）
   ---------------------------------------------------------- */
.receptacle__image-wrapper {
  text-align: center;
  margin-top: 8px;
}

.receptacle__image {
  display: block;
  max-width: 640px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

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

.receptacle__card {
  padding: 24px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  text-align: center;
}

.receptacle__card--problem {
  border-left: 3px solid var(--danger);
}

.receptacle__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.receptacle__card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.receptacle__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.receptacle__step {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.receptacle__step--dead {
  background: #fef2f2;
  border-color: var(--danger);
  color: var(--danger);
  font-weight: 700;
}

.receptacle__step--partial {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #92400e;
  font-weight: 600;
}

.receptacle__step--good {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 700;
}

.receptacle__arrow {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1;
}

.receptacle__arrow--accent {
  color: var(--brand);
  font-weight: 700;
}

.receptacle__note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 解決策 */
.receptacle__solution {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  background: var(--brand-light);
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  margin-top: 8px;
}

.receptacle__solution-arrow {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
}

.receptacle__solution-content {
  flex: 1;
}

.receptacle__solution-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.receptacle__solution-text strong {
  color: var(--brand-dark);
}

.receptacle__flow--solution {
  margin-bottom: 12px;
}

.receptacle__solution-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .receptacle__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .receptacle__card {
    padding: 28px 20px;
  }

  .receptacle__card-title {
    font-size: 17px;
  }

  .receptacle__solution {
    padding: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .receptacle__solution-text {
    font-size: 18px;
    text-align: center;
  }

  .receptacle__solution-sub {
    text-align: center;
  }

  .receptacle__flow--solution {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .receptacle__flow--solution .receptacle__arrow {
    transform: rotate(-90deg);
  }
}

/* ----------------------------------------------------------
   Annual Cost（年間コスト早見表）
   ---------------------------------------------------------- */
.pricing__annual {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 32px 28px;
  background: var(--brand-light);
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
}

.pricing__annual-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.pricing__annual-note {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing__annual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.pricing__annual-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.pricing__annual-plan {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.pricing__annual-plan--std {
  color: var(--brand-dark);
  background: rgba(var(--brand-rgb), 0.12);
}

.pricing__annual-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.pricing__annual-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing__annual-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.pricing__annual-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.pricing__annual-after {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pricing__annual-highlight {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
}

.pricing__annual-highlight small {
  font-size: 15px;
  font-weight: 600;
}

.pricing__annual-footnote {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (min-width: 768px) {
  .pricing__annual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing__annual {
    padding: 40px 44px;
  }

  .pricing__annual-title {
    font-size: 1.35rem;
  }
}

/* ----------------------------------------------------------
   8. Strengths
   ---------------------------------------------------------- */
.strengths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.strength-card {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.strength-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(var(--brand-rgb), 0.12);
  line-height: 1;
  letter-spacing: -0.02em;
}

.strength-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light);
  color: var(--brand);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.strength-card:hover .strength-card__icon {
  background-color: var(--brand);
  color: var(--text-on-brand);
}

.strength-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.strength-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .strengths__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .strength-card {
    padding: 40px 28px;
  }

  .strength-card__number {
    font-size: 64px;
  }
}

/* ----------------------------------------------------------
   8.5 Why One Page
   ---------------------------------------------------------- */
.section--onepage {
  background-color: var(--bg);
}

.section__subtitle--onepage {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

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

.onepage__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.onepage__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light);
  border-radius: var(--radius);
  color: var(--brand);
}

.onepage__item-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.onepage__item-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.onepage__closing {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.onepage__closing strong {
  color: var(--brand);
}

.onepage__article-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
}

.onepage__article-link a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.onepage__article-link a:hover {
  opacity: 0.75;
}

@media (min-width: 768px) {
  .section__subtitle--onepage {
    font-size: 17px;
  }

  .onepage__grid {
    gap: 32px;
    margin-bottom: 48px;
  }

  .onepage__item-title {
    font-size: 18px;
  }

  .onepage__item-text {
    font-size: 15px;
  }

  .onepage__closing {
    font-size: 15px;
  }
}

/* ----------------------------------------------------------
   9. Services
   ---------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.service-card--coming {
  opacity: 0.7;
}

.service-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-on-brand);
  background-color: var(--brand);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-card__badge--soon {
  background-color: var(--text-light);
}

.service-card__icon {
  color: var(--brand);
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__title-en {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-card__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card__tag {
  display: inline-block;
  font-size: 12px;
  color: var(--brand);
  background-color: var(--brand-light);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card__etc {
  font-size: 12px;
  color: var(--text-light);
  align-self: center;
}

.services__plans-row {
  display: none;
}

.service-card__plans {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 32px;
  position: relative;
}

/* 幹（縦線） */
.service-card__plans::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: var(--text-light);
}

.service-card__plan {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 5px 18px;
  border: 2px solid var(--text-light);
  border-radius: 100px;
  position: relative;
}

/* 各ラベルから上への縦線 */
.service-card__plan::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: var(--text-light);
}

/* 左ラベル（Entry）: 中心から右へ横線 */
.service-card__plan:first-child::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  width: calc(50% + 8px);
  height: 2px;
  background: var(--text-light);
}

/* 右ラベル（Standard）: 中心から左へ横線 */
.service-card__plan:last-child::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 14px);
  right: 50%;
  width: calc(50% + 8px);
  height: 2px;
  background: var(--text-light);
}

.services__plan-note {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-muted);
}

.services__plan-note a {
  color: var(--brand);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .services__plans-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
  }
}

/* ----------------------------------------------------------
   10. Examples
   ---------------------------------------------------------- */
.examples__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.example-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.example-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.example-card__screenshot {
  overflow: hidden;
}

.example-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.example-card__info {
  padding: 20px 24px 24px;
}

.example-card__type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  background-color: var(--brand-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.example-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.example-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.example-card__links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.example-card__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  background-color: var(--brand);
  color: #fff;
}

.example-card__link:hover {
  opacity: 0.85;
}

.example-card__link--sub {
  background-color: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.example-card__link--sub:hover {
  background-color: var(--brand-light);
  opacity: 1;
}

.examples__column {
  display: flex;
  flex-direction: column;
}

.examples__type-header {
  margin-bottom: 16px;
}

.examples__type-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.examples__type-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.examples__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
}

@media (min-width: 768px) {
  .examples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .examples__type-label {
    font-size: 20px;
  }
}

/* ----------------------------------------------------------
   10.5 Package Contents
   ---------------------------------------------------------- */
.package__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.package__column {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.package__column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand-light);
}

.package__column-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light);
  color: var(--brand);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.package__column-title {
  font-size: 18px;
  font-weight: 700;
}

.package__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.package__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--brand);
  border-radius: 50%;
  opacity: 0.6;
}

.package__list li:last-child {
  margin-bottom: 0;
}

.package__list-detail {
  margin-top: 8px;
  padding-left: 24px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.package__closing {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
}

@media (min-width: 768px) {
  .package__columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .package__column {
    padding: 36px 32px;
  }
}

/* ----------------------------------------------------------
   10.7 Plan Guide
   ---------------------------------------------------------- */
.plan-guide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.plan-guide__card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.plan-guide__card--featured {
  border-color: var(--brand);
  border-width: 2px;
}

.plan-guide__card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brand);
}

.plan-guide__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-guide__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.plan-guide__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.plan-guide__list li:last-child {
  margin-bottom: 0;
}

.plan-guide__note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .plan-guide__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
  }

  .plan-guide__card {
    padding: 32px 28px;
  }
}

/* ----------------------------------------------------------
   11. Pricing
   ---------------------------------------------------------- */
/* (モニターバナー削除 → カード内に統合) */

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--border);
  text-align: center;
}

.pricing-card--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-on-brand);
  background-color: var(--brand);
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__name {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-card__price {
  margin-bottom: 16px;
}

.pricing-card__price-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.pricing-card__price-main small {
  font-size: 18px;
  font-weight: 400;
}

.pricing-card__price-tax {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-card__monitor {
  background-color: var(--accent-light);
  border: 1px solid rgba(61, 107, 107, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 28px;
  text-align: center;
}

.pricing-card__monitor-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.pricing-card__monitor-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.3;
}

.pricing-card__monitor-price small {
  font-size: 15px;
  font-weight: 400;
}

.pricing-card__monitor-note {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card__feature {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  padding-left: 24px;
  position: relative;
}

.pricing-card__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233D6B6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-card__feature--muted {
  color: var(--text-light);
}

.pricing-card__feature--muted::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}

.pricing-card__feature--highlight {
  color: var(--brand-dark);
  font-weight: 600;
}

.pricing-card__feature--highlight::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233D6B6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pricing-card__cta {
  width: 100%;
}

.pricing__cta {
  text-align: center;
  margin: 40px 0 32px;
}

.pricing__cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.pricing__advance {
  text-align: center;
  padding: 24px;
  background-color: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

/* プラスアイコン（プランカードと全プラン共通の間） */
.pricing__plus {
  text-align: center;
  margin: 24px 0 8px;
}

.pricing__plus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

/* 全プラン共通ブロック */
.pricing__common {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 28px 32px;
  background: #f8f9fb;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.pricing__common-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.pricing__common-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing__common-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.pricing__common-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--brand);
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }

  .pricing-card {
    padding: 40px 32px;
  }

  .pricing-card__price-main {
    font-size: 48px;
  }

  .pricing-card__monitor-price {
    font-size: 32px;
  }
}

/* ----------------------------------------------------------
   12. Options
   ---------------------------------------------------------- */
.options__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.options__group-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}

.option-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.option-card--future {
  opacity: 0.7;
  border-style: dashed;
}

.option-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.option-card__price {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  background-color: var(--brand-light);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.option-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .options__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ----------------------------------------------------------
   13. Flow
   ---------------------------------------------------------- */
.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.flow-step {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.flow-step__number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-brand);
  background-color: var(--brand);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.flow-step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: left;
}

.flow-step__arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: var(--brand);
}

.flow-step__arrow::after {
  content: '';
  width: 2px;
  height: 24px;
  background-color: var(--brand);
  display: block;
}

@media (min-width: 768px) {
  .flow__steps {
    flex-direction: row;
    gap: 0;
    max-width: 100%;
  }

  .flow-step {
    flex: 1;
    padding: 32px 20px;
  }

  .flow-step__arrow {
    align-items: center;
    padding: 0 4px;
  }

  .flow-step__arrow::after {
    width: 24px;
    height: 2px;
  }

  .flow-step__number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

.flow__note {
  max-width: var(--max-width-narrow);
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
}

.flow__note a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.flow__note a:hover {
  color: var(--brand-dark);
}

/* ----------------------------------------------------------
   14. Testimonials
   ---------------------------------------------------------- */
.testimonials__banner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  border: 2px dashed var(--brand);
}

.testimonials__banner-icon {
  color: var(--brand);
  margin-bottom: 16px;
}

.testimonials__banner-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonials__banner-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonials__samples {
  margin-bottom: 24px;
}

.testimonials__sample-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.testimonials__sample-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonials__sample-item {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonials__sample-list {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

/* ----------------------------------------------------------
   15. FAQ
   ---------------------------------------------------------- */
.faq__list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6169' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item__answer p + p {
  margin-top: 12px;
}

/* ----------------------------------------------------------
   16. Contact
   ---------------------------------------------------------- */
.section--contact {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

.section__title--light {
  color: var(--text-on-dark);
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

.contact__hours {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact__inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact__form-area {
  margin-bottom: 32px;
}

.contact__form-placeholder {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.contact__form-note {
  font-size: 12px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.3);
}

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

.contact__action-card {
  text-align: center;
}

.contact__action-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}

@media (max-width: 480px) {
  .contact__actions {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ----------------------------------------------------------
   17. Footer
   ---------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 32px;
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  margin-bottom: 24px;
}

.footer__logo-ja {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.08em;
}

.footer__logo-en {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.footer__nav {
  margin-bottom: 24px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 12px;
}

.footer__nav-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__nav-list a:hover {
  color: var(--text-on-dark);
}

.footer__nav-list--legal {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer__sns.is-hidden {
  display: none;
}

.footer__sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition), transform var(--transition);
}

.footer__sns-icon:hover {
  transform: scale(1.1);
}

.footer__sns-icon svg {
  width: 22px;
  height: 22px;
}

.footer__sns-icon[aria-label*="Instagram"]:hover {
  color: #E1306C;
}

.footer__sns-icon[aria-label*="X"]:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__partner {
  margin-bottom: 20px;
  text-align: center;
}

.footer__partner-badge {
  display: inline-block;
  width: 150px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer__partner-badge:hover {
  opacity: 1;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ----------------------------------------------------------
   18. Animations (Advanced仕様)
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

/* ----------------------------------------------------------
   19. Extra Small Devices
   ---------------------------------------------------------- */
@media (max-width: 374px) {
  :root {
    --container-padding: 14px;
  }

  .hero__headline {
    font-size: 24px;
  }

  .section__title {
    font-size: 20px;
  }

  .pricing-card__price-main {
    font-size: 32px;
  }
}

/* ----------------------------------------------------------
   20. Legal Pages (特商法・プライバシーポリシー)
   ---------------------------------------------------------- */
.legal-page {
  padding-top: 40px;
}

.legal-page__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand);
}

.legal-page__content {
  max-width: var(--max-width-narrow);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

.legal-page__content p {
  margin-bottom: 16px;
}

.legal-page__intro {
  font-size: 15px;
  margin-bottom: 32px;
}

.legal-page__heading {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--brand);
}

.legal-page__list {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-page__list li {
  position: relative;
  padding: 3px 0;
  list-style: disc;
  color: var(--text-muted);
}

.legal-page__date {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Legal Table inner lists */
.legal-table__list {
  padding-left: 16px;
}

.legal-table__list li {
  list-style: disc;
  padding: 2px 0;
}

/* Legal Table (特商法) */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  font-weight: 700;
  color: var(--text);
  background-color: var(--bg-alt);
  white-space: nowrap;
  width: 160px;
}

.legal-table td {
  color: var(--text-muted);
}

.legal-table__img {
  display: block;
  max-width: 280px;
  height: auto;
}

@media (max-width: 767px) {
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .legal-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .legal-table td {
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .legal-page__title {
    font-size: 28px;
  }
}

/* ----------------------------------------------------------
   21. Photo Guide (撮影ガイドページ)
   ---------------------------------------------------------- */
.photo-guide {
  padding-top: 40px;
}

.photo-guide__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand);
}

.photo-guide__lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: var(--max-width-narrow);
}

.photo-guide__section {
  margin-bottom: 56px;
}

.photo-guide__heading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--brand);
}

.photo-guide__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* 3つの基本 */
.photo-guide__tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.photo-guide__tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-alt);
  padding: 20px;
  border-radius: var(--radius);
}

.photo-guide__tip-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: var(--text-on-brand);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
}

.photo-guide__tip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.photo-guide__tip p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 見本画像プレースホルダー */
.photo-guide__example {
  margin-bottom: 20px;
}

.photo-guide__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 14px;
}

.photo-guide__img-placeholder::before {
  content: attr(data-label) " — ";
}

/* 実際の画像に差し替えた場合 */
.photo-guide__example img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* チェックリスト */
.photo-guide__checklist {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
}

.photo-guide__checklist-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
}

.photo-guide__checklist ul {
  padding-left: 20px;
}

.photo-guide__checklist li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  padding: 4px 0;
  list-style: disc;
}

.photo-guide__checklist li strong {
  color: var(--text);
}

/* 仕様テーブル */
.photo-guide__specs-table {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 16px;
}

.photo-guide__specs-table th,
.photo-guide__specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.photo-guide__specs-table th {
  font-weight: 700;
  background: var(--bg-alt);
  white-space: nowrap;
  width: 120px;
}

.photo-guide__specs-table td {
  color: var(--text-muted);
}

/* よくある失敗 */
.photo-guide__mistakes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.photo-guide__mistake {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fef2f2;
  border-radius: var(--radius);
  border-left: 3px solid var(--danger);
}

.photo-guide__mistake-icon {
  flex-shrink: 0;
  color: var(--danger);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.photo-guide__mistake strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.photo-guide__mistake p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 最後に */
.photo-guide__section--closing p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.photo-guide__back {
  margin-top: 32px;
  text-align: center;
}

/* レスポンシブ */
@media (min-width: 768px) {
  .photo-guide__title {
    font-size: 28px;
  }

  .photo-guide__heading {
    font-size: 20px;
  }

  .photo-guide__tips {
    flex-direction: row;
  }

  .photo-guide__tip {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .photo-guide__specs-table th,
  .photo-guide__specs-table td {
    display: block;
    width: 100%;
    padding: 8px 12px;
  }

  .photo-guide__specs-table th {
    border-bottom: none;
    padding-bottom: 2px;
  }

  .photo-guide__specs-table td {
    padding-top: 0;
  }
}

/* ----------------------------------------------------------
   22. Server Guide
   ---------------------------------------------------------- */
.server-guide {
  padding-top: 120px;
}

.server-guide__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--brand);
}

.server-guide__partner-badge {
  text-align: center;
  margin-bottom: 24px;
}

.server-guide__lead {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 48px;
  color: #555;
}

.server-guide__section {
  margin-bottom: 56px;
}

.server-guide__heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.server-guide__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

/* --- Flow diagram --- */
.server-guide__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.server-guide__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 20px 24px;
  width: 100%;
  max-width: 560px;
  position: relative;
}

.server-guide__flow-step--final {
  border-color: var(--brand);
  background: linear-gradient(135deg, #faf8f6 0%, #fff 100%);
}

.server-guide__flow-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-guide__flow-content strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

.server-guide__flow-content p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.server-guide__flow-who {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.server-guide__flow-who--customer {
  background: #E8F5E9;
  color: #2E7D32;
}

.server-guide__flow-who--done {
  background: #E3F2FD;
  color: #1565C0;
}

.server-guide__flow-arrow {
  width: 2px;
  height: 28px;
  background: #ccc;
  position: relative;
  margin: 0 auto;
}

.server-guide__flow-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ccc;
}

/* --- Branch --- */
.server-guide__flow-branch {
  width: 100%;
  max-width: 600px;
}

.server-guide__flow-branch-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  background: #faf8f6;
  border: 2px dashed var(--brand);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
}

.server-guide__flow-branch-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.server-guide__flow-option {
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.server-guide__flow-option--self {
  border-color: #81C784;
}

.server-guide__flow-option--proxy {
  border-color: var(--brand);
}

.server-guide__flow-option-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.95rem;
}

.server-guide__flow-option--self .server-guide__flow-option-header {
  background: #E8F5E9;
  color: #2E7D32;
}

.server-guide__flow-option--proxy .server-guide__flow-option-header {
  background: linear-gradient(135deg, #faf0ec 0%, #faf8f6 100%);
  color: var(--brand);
}

.server-guide__flow-option-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.server-guide__flow-option--self .server-guide__flow-option-icon {
  background: #43A047;
}

.server-guide__flow-option--proxy .server-guide__flow-option-icon {
  background: var(--brand);
}

.server-guide__flow-option-body {
  padding: 16px;
}

.server-guide__flow-mini-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: #444;
}

.server-guide__flow-mini-step span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eee;
  color: #666;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-guide__flow-option-note {
  font-size: 0.82rem;
  color: #888;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* --- Tasks --- */
.server-guide__tasks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.server-guide__task {
  display: flex;
  gap: 16px;
  background: #faf8f6;
  border-radius: 12px;
  padding: 24px;
}

.server-guide__task-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-guide__task-content strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 8px;
}

.server-guide__task-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.server-guide__info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.server-guide__info-table th,
.server-guide__info-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.server-guide__info-table th {
  background: #f0ebe6;
  color: #555;
  font-weight: 600;
  white-space: nowrap;
  width: 120px;
}

.server-guide__info-table td {
  color: #333;
}

/* --- Steps list --- */
.server-guide__steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.server-guide__steps-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.server-guide__steps-num {
  flex-shrink: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.server-guide__steps-item strong {
  display: block;
  margin-bottom: 4px;
}

.server-guide__steps-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.server-guide__note {
  font-size: 0.85rem;
  color: #888;
  padding-left: 16px;
  border-left: 3px solid #ddd;
}

/* --- Open Link Block --- */
.server-guide__open-link {
  margin: 16px 0;
  padding: 20px 24px;
  background: #f0f7ff;
  border: 1px solid #b3d4fc;
  border-radius: 8px;
  text-align: center;
}

.server-guide__open-link-note {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 12px;
}

.server-guide__open-link-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #4A6C91;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.server-guide__open-link-btn:hover {
  background: #3a5a7d;
}

/* --- Proxy flow --- */
.server-guide__proxy-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.server-guide__proxy-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.server-guide__proxy-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-guide__proxy-step strong {
  display: block;
  margin-bottom: 4px;
}

.server-guide__proxy-step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  margin: 0 0 4px;
}

.server-guide__proxy-tasks {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.server-guide__proxy-tasks li {
  font-size: 0.88rem;
  color: #555;
  padding: 3px 0 3px 20px;
  position: relative;
}

.server-guide__proxy-tasks li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.server-guide__proxy-note {
  background: #faf8f6;
  border-radius: 12px;
  padding: 24px;
}

.server-guide__proxy-note > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--brand);
}

.server-guide__proxy-note > p {
  font-size: 0.82rem;
  color: #888;
  margin-top: 12px;
}

/* --- Email options --- */
.server-guide__email-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.server-guide__email-option {
  background: #faf8f6;
  border-radius: 12px;
  padding: 20px 24px;
}

.server-guide__email-option strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.server-guide__email-option p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 4px;
}

.server-guide__email-note {
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
}

/* --- FAQ --- */
.server-guide__faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.server-guide__faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}

.server-guide__faq-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.server-guide__faq-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* --- Closing --- */
.server-guide__section--closing p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.server-guide__back {
  text-align: center;
  margin-top: 32px;
}

/* --- Screenshots --- */
.server-guide__screenshot {
  margin: 16px 0 8px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.server-guide__screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.server-guide__screenshot--narrow {
  max-width: 600px;
}

/* --- Accordion (details/summary) --- */
.server-guide__accordion {
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius, 12px);
  padding: 24px 28px;
  background: #fff;
}

.server-guide__accordion > .server-guide__accordion-toggle {
  cursor: pointer;
  list-style: none;
  display: block;
}

.server-guide__accordion > .server-guide__accordion-toggle::-webkit-details-marker {
  display: none;
}

.server-guide__accordion > .server-guide__accordion-toggle::marker {
  content: '';
}

.server-guide__accordion > .server-guide__accordion-toggle .server-guide__heading {
  padding-right: 36px;
  position: relative;
  margin-bottom: 0;
  transition: margin-bottom 0.2s ease;
}

.server-guide__accordion[open] > .server-guide__accordion-toggle .server-guide__heading {
  margin-bottom: 16px;
}

.server-guide__accordion > .server-guide__accordion-toggle .server-guide__heading::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.server-guide__accordion[open] > .server-guide__accordion-toggle .server-guide__heading::after {
  transform: translateY(-30%) rotate(-135deg);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .server-guide__title {
    font-size: 1.5rem;
  }

  .server-guide__heading {
    font-size: 1.2rem;
  }

  .server-guide__flow-branch-options {
    grid-template-columns: 1fr;
  }

  .server-guide__flow-step {
    padding: 16px;
  }

  .server-guide__task {
    flex-direction: column;
    gap: 12px;
  }

  .server-guide__info-table th {
    width: auto;
  }

  .server-guide__accordion {
    padding: 16px 18px;
  }
}

/* ----------------------------------------------------------
   23. Print
   ---------------------------------------------------------- */
@media print {
  .header,
  .footer,
  .hero__bg-deco,
  .flow-step__arrow,
  .photo-guide__back,
  .server-guide__back {
    display: none;
  }

  .section {
    padding: 24px 0;
    break-inside: avoid;
  }

  .photo-guide__section,
  .server-guide__section {
    break-inside: avoid;
  }

  .server-guide__accordion {
    border: none;
    padding: 0;
  }

  .server-guide__accordion-toggle .server-guide__heading::after {
    display: none;
  }
}
