/* ========================================
   そろばん塾 LP - スタイルシート
   スマホファースト / レスポンシブ対応
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-main: #FF66AA; /* 鮮やかなピンク */
  --color-main-light: #FFB3D1;
  --color-main-dark: #D44488;
  --color-sub: #FFE66D; /* 明るいイエロー */
  --color-accent: #44AAFF; /* 爽やかなブルー */
  --color-accent-light: #AADDFF;
  --color-bg: #FFFDF0; /* 柔らかなクリーム色（チラシ風） */
  --color-bg-alt: #FFF9E6;
  --color-text: #4A3A2A;
  --color-text-light: #7D6B5D;
  --color-white: #FFFFFF;
  --color-green: #66CC66; /* チラシの緑 */
  --color-line-green: #06C755;
  --color-phone-blue: #4A90D9;
  --font-heading: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-body: 'Kiwi Maru', 'Noto Sans JP', serif;
  --radius: 20px; /* より丸く */
  --radius-sm: 12px;
  --shadow: 0 4px 12px rgba(74, 58, 42, 0.1);
  --shadow-hover: 0 8px 24px rgba(74, 58, 42, 0.15);
  --transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 少し弾む感じ */
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 17px; /* 少し大きめで読みやすく */
  line-height: 1.9;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm26 26c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm16-46c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-40 44c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm20-10c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%23FFE66D' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 64px; /* 固定フッター分 */
}

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

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

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

ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp-only {
  display: inline;
}

.pc-only {
  display: none;
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.section-philosophy {
  background-color: var(--color-white);
  border-bottom: 5px wavy var(--color-bg-alt);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 240, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px dashed var(--color-main-light);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(74, 58, 42, 0.1);
  background: #FFFDF0;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-main);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: 
    2px 2px 0px var(--color-white),
    -1px -1px 0px var(--color-white),
    1px -1px 0px var(--color-white),
    -1px 1px 0px var(--color-white),
    3px 3px 0 var(--color-sub);
}

.header-nav {
  display: none;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.header-nav-row {
  justify-content: flex-start;
}

.header-nav-row + .header-nav-row {
  padding-top: 4px;
  border-top: 1px dashed rgba(255, 102, 170, 0.4);
}

.header-nav-row li {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-left: 1px dashed rgba(255, 102, 170, 0.42);
}

.header-nav-row li:first-child {
  border-left: 0;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--color-main);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-main);
  color: var(--color-white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-cta-btn:hover {
  background: var(--color-main-dark);
  color: var(--color-white) !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile nav overlay */
.header-nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 254, 245, 0.98);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 12px 20px 18px;
  border-bottom: 3px dashed var(--color-main-light);
  box-shadow: 0 10px 20px rgba(74, 58, 42, 0.12);
  z-index: 999;
  animation: mobile-nav-dropdown 0.22s ease-out;
}

.header-nav.open ul {
  width: 100%;
  flex-direction: column;
  gap: 0;
}

.header-nav.open .header-nav-links {
  width: 100%;
  align-items: stretch;
  gap: 0;
}

.header-nav.open .header-nav-row + .header-nav-row {
  padding-top: 0;
  border-top: 0;
}

.header-nav.open li {
  width: 100%;
  min-height: 0;
  padding: 0;
  border-left: 0;
}

.header-nav.open a {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border-bottom: 1px dashed rgba(255, 102, 170, 0.24);
  font-size: 16px;
  text-align: center;
}

.header-nav.open .nav-cta-btn {
  width: 100%;
  margin-top: 10px;
  border-bottom: 0;
}

@keyframes mobile-nav-dropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   HERO (新デザイン)
   ========================================== */
.hero {
  position: relative;
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(#FFE66D 1.5px, transparent 1.5px),
    radial-gradient(#FFE66D 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  padding: 60px 0;
  margin-top: var(--header-height);
  overflow: hidden;
}

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

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  border: 2px solid currentColor;
  background: var(--color-white);
}

.tag-pink { color: var(--color-main); }
.tag-green { color: var(--color-green); }

.hero-main-title {
  margin-bottom: 24px;
}

.title-sub {
  font-size: clamp(17px, 4.6vw, 21px);
  color: var(--color-main);
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .title-sub {
    font-size: 21px;
  }
}

.title-main {
  font-family: var(--font-heading);
  font-size: 54px; /* さらに大きく */
  font-weight: 700;
  color: var(--color-main);
  display: block;
  line-height: 1.1;
  letter-spacing: 0.1em;
  white-space: nowrap; /* 強制的に一行で表示 */
  text-shadow: 
    2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    6px 6px 0 rgba(255, 102, 170, 0.2);
}

.title-main.part-1 {
  font-size: clamp(46px, 12vw, 76px);
  transform: rotate(-2deg);
  text-align: center;
}

.title-main.part-2 {
  font-size: clamp(30px, 8.5vw, 56px);
  transform: rotate(-2deg);
  text-align: center;
  margin-top: 5px;
}

@media (min-width: 480px) {
  .title-main {
    font-size: 96px; /* PCでは圧倒的な存在感に */
  }
  .title-main.part-1 {
    transform: rotate(-2deg);
  }
  .title-main.part-2 {
    transform: rotate(-2deg);
    margin-top: 10px;
  }
}

.hero-cta-box {
  background: var(--color-white);
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 4px solid var(--color-sub);
  box-shadow: 8px 8px 0 rgba(255, 230, 109, 0.3);
  max-width: 440px;
  margin: 0 auto;
}

.hero-cta-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.05));
}

.abacus-deco {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 120px;
  transform: rotate(15deg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(20deg) translateY(-10px); }
}

@media (min-width: 1024px) {
  .hero-flex {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 80px;
    padding: 80px 0;
  }
  .hero-tags {
    justify-content: center;
  }
  .title-main {
    font-size: 96px;
    letter-spacing: 0.1em;
  }
  .hero-cta-box {
    margin: 0 auto;
  }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-main);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(244, 164, 96, 0.4);
}

.btn-primary:hover {
  background: var(--color-main-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 164, 96, 0.5);
}

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

.btn-phone {
  background: var(--color-phone-blue);
  color: var(--color-white);
}

.btn-phone:hover {
  background: #3a7bc8;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-line {
  background: var(--color-line-green);
  color: var(--color-white);
}

.btn-line:hover {
  background: #05b04c;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 18px;
}

/* ==========================================
   MINI CTA
   ========================================== */
.mini-cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  padding: 24px 0;
  text-align: center;
}

.mini-cta-text {
  text-align: left; /* 読みやすさのため左寄せに変更 */
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
}

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

.mini-cta .btn {
  width: 100%;
  max-width: 300px;
}

.mini-cta-primary {
  padding: 26px 0;
  background: #FFF4D7;
}

.mini-cta-primary-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 23px 20px 20px;
  border: 3px dashed var(--color-main-light);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 5px 5px 0 rgba(255, 230, 109, 0.6);
}

.mini-cta-primary-copy {
  text-align: left;
}

.mini-cta-primary-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
  color: var(--color-text);
}

.mini-cta-primary-copy > p:last-child {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
}

.mini-cta-line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  min-height: 56px;
  margin: 18px auto 0;
  padding: 12px 18px;
  border-radius: 50px;
  background: var(--color-line-green);
  box-shadow: 0 5px 0 #049E45, 0 10px 18px rgba(6, 199, 85, 0.2);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mini-cta-line-button:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #049E45, 0 12px 22px rgba(6, 199, 85, 0.25);
}

.mini-cta-line-button span {
  font-size: 22px;
  line-height: 1;
}

.mini-cta-phone {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 2px dashed #E8DBC7;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.mini-cta-phone a {
  margin-left: 4px;
  color: var(--color-phone-blue);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
}

.mini-cta-phone span {
  display: block;
}

/* ==========================================
   SECTIONS (Common)
   ========================================== */
.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-main);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title-deco {
  width: 100%;
  height: 8px;
  background: var(--color-sub);
  opacity: 0.8;
  border-radius: 50px;
  margin: -12px auto 0;
  position: relative;
  z-index: -1;
  transform: rotate(-1deg);
}

.crayon-icon {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

/* Alternating section backgrounds */
.section-features,
.section-before-after,
.section-flow,
.section-faq {
  background: var(--color-bg-alt);
}

/* ==========================================
   PHILOSOPHY
   ========================================== */
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-illustration {
  margin: 0;
  padding: 10px;
  border: 3px dashed var(--color-main-light);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 5px 5px 0 rgba(255, 179, 209, 0.42);
}

.philosophy-illustration img {
  width: 100%;
  border-radius: 18px;
}

.philosophy-lead {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: var(--color-text);
}

.philosophy-values {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.philosophy-values li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 2px dashed #E8DBC7;
}

.philosophy-values li:last-child {
  border-bottom: 2px dashed #E8DBC7;
}

.philosophy-values li > span {
  display: inline-block;
  height: fit-content;
  padding-bottom: 3px;
  border-bottom: 5px solid var(--color-main-light);
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.philosophy-values li:nth-child(2) > span {
  border-color: var(--color-sub);
  color: #A47B00;
}

.philosophy-values li:nth-child(3) > span {
  border-color: var(--color-accent-light);
  color: #2582C7;
}

.philosophy-values h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
}

.philosophy-values p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
}

.philosophy-goal {
  margin-top: 22px;
  padding: 18px;
  border: 3px dashed var(--color-sub);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 4px 4px 0 rgba(255, 230, 109, 0.5);
}

.philosophy-goal-label {
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  color: #A47B00;
}

.philosophy-goal > p:last-child {
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .philosophy-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
  }

  .philosophy-lead {
    font-size: 17px;
  }
}

/* ==========================================
   TEACHER
   ========================================== */
.teacher-message-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.teacher-eyebrow {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.teacher-message {
  padding: 28px 0 30px;
  border-top: 4px solid var(--color-main-light);
  border-bottom: 1px dashed rgba(145, 108, 73, 0.34);
}

.teacher-message h3 {
  margin-bottom: 18px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(23px, 5.8vw, 32px);
  line-height: 1.45;
}

.teacher-message p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 2;
}

.teacher-message p + p {
  margin-top: 14px;
}

.teacher-promises {
  margin-top: 4px;
}

.teacher-promises li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(145, 108, 73, 0.34);
}

.teacher-promise-number {
  color: var(--color-main);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.teacher-promises strong {
  display: block;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.65;
}

.teacher-promises p {
  margin-top: 5px;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* ==========================================
   FEATURES
   ========================================== */
.features-lead {
  max-width: 620px;
  margin: -10px auto 30px;
  padding: 0 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  text-align: left;
  color: var(--color-text-light);
}

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

.features-illustration {
  margin: 0;
  padding: 10px;
  border: 3px dashed var(--color-main-light);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 5px 5px 0 rgba(255, 179, 209, 0.45);
}

.features-illustration img {
  width: 100%;
  border-radius: 18px;
}

.feature-reasons {
  display: grid;
  gap: 0;
}

.feature-reasons li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 2px dashed #E8DBC7;
}

.feature-reasons li:last-child {
  border-bottom: 2px dashed #E8DBC7;
}

.feature-reason-number {
  display: inline-block;
  height: fit-content;
  padding-bottom: 3px;
  border-bottom: 5px solid var(--color-main-light);
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.feature-reasons li:nth-child(2) .feature-reason-number {
  border-color: var(--color-sub);
  color: #A47B00;
}

.feature-reasons li:nth-child(3) .feature-reason-number {
  border-color: var(--color-accent-light);
  color: #2582C7;
}

.feature-reasons h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
}

.feature-reasons p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .features-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
  }

  .features-lead {
    font-size: 16px;
  }
}

/* ==========================================
   GALLERY (教室の風景)
   ========================================== */
.section-gallery {
  background-color: var(--color-bg);
}

.gallery-lead {
  text-align: left;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-img-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(255, 230, 109, 0.6);
  border: 3px solid var(--color-white);
  line-height: 0;
  position: relative;
  aspect-ratio: 4 / 3;
}

.gallery-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
  pointer-events: none;
  border-radius: calc(var(--radius) - 2px);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-copy {
  padding: 0 4px;
}

.gallery-kicker {
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-main-dark);
}

.gallery-item:nth-child(2) .gallery-kicker {
  color: #2582C7;
}

.gallery-copy h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
}

.gallery-copy > p:last-child {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
}

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

/* ==========================================
   APPEAL (そろばんの魅力)
   ========================================== */
.appeal-learning {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.appeal-learning-illustration {
  margin: 0;
  padding: 10px;
  border: 3px dashed var(--color-sub);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 5px 5px 0 rgba(255, 230, 109, 0.65);
}

.appeal-learning-illustration img {
  width: 100%;
  border-radius: 18px;
}

.appeal-learning-content {
  min-width: 0;
}

.appeal-learning-lead {
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: var(--color-text);
}

.appeal-steps {
  display: grid;
  gap: 0;
}

.appeal-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 2px dashed #E8DBC7;
}

.appeal-steps li:last-child {
  border-bottom: 2px dashed #E8DBC7;
}

.appeal-step-number {
  display: inline-block;
  height: fit-content;
  padding-bottom: 3px;
  border-bottom: 5px solid var(--color-main-light);
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.appeal-steps li:nth-child(2) .appeal-step-number {
  border-color: var(--color-accent-light);
  color: #2582C7;
}

.appeal-steps li:nth-child(3) .appeal-step-number {
  border-color: #A8E6A8;
  color: #359535;
}

.appeal-steps h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
}

.appeal-steps p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .appeal-learning {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
  }

  .appeal-learning-lead {
    font-size: 17px;
  }
}

/* ==========================================
   BEFORE / AFTER
   ========================================== */
.before-after-lead {
  max-width: 580px;
  margin: -10px auto 28px;
  padding: 0 12px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-light);
}

.growth-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.growth-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px;
  border: 2px solid var(--color-main-light);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 5px 5px 0 rgba(255, 230, 109, 0.75);
}

.growth-card:nth-child(2) {
  border-color: var(--color-accent-light);
  box-shadow: 5px 5px 0 rgba(170, 221, 255, 0.7);
}

.growth-card:nth-child(3) {
  border-color: #A8E6A8;
  box-shadow: 5px 5px 0 rgba(168, 230, 168, 0.7);
}

.growth-card:nth-child(4) {
  border-color: var(--color-sub);
  box-shadow: 5px 5px 0 rgba(255, 230, 109, 0.75);
}

.growth-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 10px;
  border-radius: 50px;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.growth-card:nth-child(2) .growth-number { background: var(--color-accent); }
.growth-card:nth-child(3) .growth-number { background: var(--color-green); }
.growth-card:nth-child(4) .growth-number { background: #E6B800; }

.growth-category {
  margin: 12px 0 4px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  color: var(--color-main-dark);
}

.growth-card:nth-child(2) .growth-category { color: #2582C7; }
.growth-card:nth-child(3) .growth-category { color: #359535; }
.growth-card:nth-child(4) .growth-category { color: #A47B00; }

.growth-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-text);
}

.growth-story {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px dashed #F1E8D7;
}

.growth-story p {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.growth-story span {
  padding: 2px 8px;
  border-radius: 50px;
  background: #F4F0E8;
  color: #8A7C6E;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.growth-story p + p {
  color: var(--color-text);
  font-weight: 700;
}

.growth-story p + p span {
  background: #FFF1A8;
  color: var(--color-text);
}

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

  .growth-card {
    padding: 26px 24px 24px;
  }
}

/* ==========================================
   COURSES
   ========================================== */
.courses-lead {
  max-width: 620px;
  margin: -10px auto 30px;
  padding: 0 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  text-align: left;
  color: var(--color-text-light);
}

.course-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.course-option {
  background: var(--color-white);
  border: 2px solid #E8DBC7;
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 4px 4px 0 rgba(255, 230, 109, 0.45);
}

.course-option-recommended {
  border-color: var(--color-main-light);
  box-shadow: 5px 5px 0 rgba(255, 179, 209, 0.42);
}

.course-option-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: #F4F0E8;
  color: #8A7C6E;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
}

.course-option-recommended .course-option-label {
  background: var(--color-main);
  color: var(--color-white);
}

.course-option h3 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-text);
}

.course-option-catch {
  margin-top: 5px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  color: var(--color-main-dark);
}

.course-option > p:not(.course-option-label):not(.course-option-catch):not(.course-option-note) {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.75;
  text-align: left;
}

.course-option-note {
  margin-top: 14px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #FFF1A8;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--color-text);
}

.schedule-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main-dark);
  text-align: left;
  margin-bottom: 16px;
}

.schedule-table-wrapper {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: var(--shadow);
  border: 4px dashed var(--color-sub);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 2px dashed var(--color-bg-alt);
  font-size: 15px;
}

.schedule-table thead th {
  background: var(--color-main-light);
  color: var(--color-white);
  font-weight: 700;
}

@media (min-width: 768px) {
  .course-options {
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
  }

  .schedule-table-wrapper {
    padding: 32px;
  }
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-flex {
  display: block;
}

.pricing-content {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px dashed var(--color-sub);
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px dashed var(--color-bg-alt);
  font-size: 16px;
}

.pricing-table thead th {
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
}

.pricing-table td:last-child {
  text-align: right;
  color: var(--color-text);
  font-weight: 700;
}

.pricing-table td strong {
  font-size: 22px;
  color: var(--color-main-dark);
}

.pricing-note {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: left;
  margin-bottom: 20px;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--color-main), var(--color-main-dark));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 16px rgba(244, 164, 96, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

/* ==========================================
   FLOW (レッスンの流れ)
   ========================================== */
.flow-lead {
  max-width: 600px;
  margin: -10px auto 28px;
  padding: 0 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  text-align: left;
  color: var(--color-text-light);
}

.flow-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-main), var(--color-main-light));
  border-radius: 2px;
}

.flow-step {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  position: relative;
}

.flow-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-main), var(--color-main-dark));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(244, 164, 96, 0.3);
}

.flow-step-content {
  min-width: 0;
  padding: 5px 0 23px;
  border-bottom: 2px dashed #E8DBC7;
  flex: 1;
}

.flow-step:last-child .flow-step-content {
  border-bottom: 0;
}

.flow-step-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.flow-step-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-light);
}

.flow-extra {
  max-width: 600px;
  margin: 26px auto 0;
  padding: 20px;
  border: 3px dashed var(--color-sub);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 4px 4px 0 rgba(255, 230, 109, 0.55);
}

.flow-extra-label {
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  color: #A47B00;
}

.flow-extra > p:last-child {
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-light);
}

/* ==========================================
   VOICES
   ========================================== */
.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.voice-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.voice-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.voice-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-sub);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(74, 58, 42, 0.12);
}

.voice-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-accent);
}

.voice-grade {
  font-size: 13px;
  color: var(--color-text-light);
}

.voice-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  position: relative;
}

.voice-text::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-bg-alt);
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-sub);
}

.faq-icon {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-main);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ==========================================
   ACCESS
   ========================================== */
.access-lead {
  text-align: left; /* 文章読みやすさのため左寄せに変更 */
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 2px dashed var(--color-main-light);
}

.access-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.access-info {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table th,
.access-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0e6d8;
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}

.access-table th {
  background: var(--color-sub);
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
  width: 100px;
}

.access-table a {
  font-weight: 700;
  color: var(--color-phone-blue);
}

.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.access-map iframe {
  display: block;
}

/* ==========================================
   CONTACT (メインCTA)
   ========================================== */
.section-contact {
  background-color: #FFF4D7;
  color: var(--color-text);
  padding: 80px 0;
}

.contact-content {
  text-align: center;
}

.contact-lead {
  text-align: center;
  font-size: 16px;
  font-family: var(--font-heading);
  margin: 0 auto 28px;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 540px;
}

.contact-primary {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
  border: 3px solid #8DE18D;
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: 6px 6px 0 rgba(102, 204, 102, 0.28);
}

.contact-qr {
  text-align: center;
}

.contact-qr img {
  width: 132px;
  height: auto;
  margin: 0 auto 8px;
  border: 2px dashed #8DE18D;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
}

.contact-qr p {
  font-size: 12px;
  font-weight: 700;
  color: #359535;
  margin: 0;
}

.contact-primary-copy {
  text-align: center;
}

.contact-line-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 7px;
  background: var(--color-line-green);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.contact-primary h3 {
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.45;
  margin: 12px 0 8px;
}

.contact-primary-copy > p:not(.contact-line-note) {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.contact-line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  min-height: 58px;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 50px;
  background: var(--color-line-green);
  box-shadow: 0 5px 0 #049E45, 0 10px 18px rgba(6, 199, 85, 0.2);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-line-button:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #049E45, 0 12px 22px rgba(6, 199, 85, 0.25);
}

.contact-line-button span {
  font-size: 22px;
  line-height: 1;
}

.contact-line-note {
  margin-top: 14px;
  font-size: 12px;
  color: #359535;
  font-weight: 700;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  margin: 28px auto 0;
  padding: 20px 4px 0;
  border-top: 2px dashed rgba(74, 58, 42, 0.2);
  text-align: center;
}

.contact-phone-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.contact-phone-note {
  margin-top: 3px;
  font-size: 12px;
  color: var(--color-text-light);
}

.contact-phone-number {
  color: var(--color-phone-blue) !important;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-sub {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-info {
  font-size: 14px;
  line-height: 1.8;
}

.footer-info a {
  color: var(--color-main-light);
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   FIXED FOOTER (スマホ用)
   ========================================== */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  background: var(--color-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}

.fixed-footer-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.fixed-footer-phone {
  background: var(--color-phone-blue);
  flex: 0.8;
}

.fixed-footer-line {
  background: var(--color-line-green);
  flex: 1.2;
}

.fixed-footer-icon {
  font-size: 18px;
}

/* ==========================================
   PAGE TOP
   ========================================== */
.page-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(244, 164, 96, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 997;
}

.page-top.visible {
  opacity: 1;
  visibility: visible;
}

.page-top:hover {
  background: var(--color-main-dark);
  transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE - Tablet (768px+)
   ========================================== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .sp-only {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

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

  .mini-cta .btn {
    width: auto;
  }

  .voices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ba-comparison {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
    margin-top: 0;
    padding-left: 0;
  }

  .ba-before {
    width: 220px;
    flex-shrink: 0;
  }

  .ba-arrow {
    transform: none;
    align-self: center;
    margin: 0;
  }

  .contact-primary {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 32px 38px;
  }

  .contact-primary-copy {
    flex: 1;
  }

  .contact-qr.pc-only {
    display: block;
    flex: 0 0 160px;
    padding-left: 28px;
    border-left: 2px dashed #8DE18D;
  }

  .contact-phone {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
  }

  .access-content {
    flex-direction: row;
  }

  .access-info {
    flex: 1;
  }

  .access-map {
    flex: 1;
  }

  /* タブレット以上でPC用要素を表示 */
  .pc-only {
    display: block;
  }
}

/* ==========================================
   RESPONSIVE - PC (1024px+)
   ========================================== */
@media (min-width: 1024px) {
  :root {
    --header-height: 104px;
  }

  body {
    padding-bottom: 0;
  }

  .header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .hamburger {
    display: none;
  }

  .logo-sub {
    font-size: 32px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section {
    padding: 80px 0;
  }

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

  .fixed-footer {
    display: none;
  }

  .page-top {
    bottom: 32px;
    right: 32px;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

}

@media (min-width: 1024px) and (max-width: 1100px) {
  .logo-sub {
    font-size: 28px;
  }

  .header-nav ul {
    gap: 4px;
  }

  .header-nav a {
    font-size: 13px;
  }

  .nav-cta-btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}


.section-title-light {
  color: var(--color-main) !important;
}
.section-title-deco-light {
  background: var(--color-sub) !important;
  opacity: 1 !important;
}
