/* ============================================
   ちばデジキャリアスクール LP
   ============================================ */
:root {
  --teal: #00a29a;
  --teal-dark: #007d77;
  --teal-light: #e2f5f4;
  --pink: #e94f8a;
  --pink-light: #fdeef4;
  --yellow: #fff3a6;
  --blue: #4a90c4;
  --purple: #9b7fc0;
  --green: #7fb069;
  --ink: #333333;
  --white: #ffffff;
  --font-base: "Noto Sans JP", sans-serif;
  --font-round: ;
  --font-hand: "Yusei Magic", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-base);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* ---------- スクロールアニメーション ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__circle, .hero__catch span, .btn--primary { animation: none !important; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-round);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9em 2.2em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn--lg { font-size: 1.15rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--pink), #f0699c);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(233, 79, 138, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
}
.btn--white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2); }
.btn__arrow { transition: transform 0.25s ease; }
.btn:hover .btn__arrow { transform: translateX(5px); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(233, 79, 138, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(233, 79, 138, 0.7); }
}

.badge {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25em 1.2em;
  font-size: 1rem;
}
.badge--pink { background: var(--pink); color: var(--white); }
.badge--yellow { background: var(--yellow); color: var(--teal-dark); }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* backdrop-filterはfixedなメニューの基準を壊すため使わない */
  background: rgba(255, 255, 255, 0.95);
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); }
.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-round);
  font-weight: 900;
}
.header__logo-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
}
.header__logo-text { line-height: 1.2; }
.header__logo-text img {
    height: 38px; 
    width: auto;
}
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: 1.4rem; }
.header__nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.3em 0;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__cta {
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5em 1.4em;
  border-radius: 999px;
  transition: opacity 0.25s ease;
}
.header__cta:hover { opacity: 0.85; }
.header__burger { display: none; }

@media (max-width: 900px) {
  .header__nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 162, 154, 0.96);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-left: 0;
  }
  .header__nav.is-open { opacity: 1; visibility: visible; }
  .header__nav ul { flex-direction: column; text-align: center; gap: 1.8rem; }
  .header__nav a { color: var(--white); font-size: 1.2rem; font-family: var(--font-round); font-weight: 700; }
  .header__cta { display: none; }
  .header__burger {
    display: block;
    margin-left: auto;
    width: 42px; height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 110;
  }
  .header__burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--teal-dark);
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  }
  .header__burger.is-open span { background: var(--white); }
  .header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header__burger.is-open span:nth-child(2) { opacity: 0; }
  .header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 7rem 1.2rem 4.5rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal-light);
  animation: float 7s ease-in-out infinite;
}
.hero__circle--1 { width: 220px; height: 220px; top: -70px; left: -70px; }
.hero__circle--2 { width: 120px; height: 120px; top: 16%; right: 4%; background: var(--pink-light); animation-delay: -2s; }
.hero__circle--3 { width: 300px; height: 300px; bottom: -110px; right: -100px; animation-delay: -4s; }
.hero__circle--4 { width: 70px; height: 70px; bottom: 18%; left: 6%; background: rgba(255, 243, 166, 0.8); animation-delay: -1s; }
.hero__dots {
  position: absolute;
  width: 200px; height: 140px;
  right: 38%; bottom: 6%;
  background-image: radial-gradient(rgba(233, 79, 138, 0.25) 2px, transparent 2.5px);
  background-size: 18px 18px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero__inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
}
.hero__text { text-align: left; }

.hero__photo {
  position: relative;
  margin: 0;
  animation: float 8s ease-in-out infinite;
}
.hero__photo::before {
  content: "";
  position: absolute;
  width: 55%; height: 55%;
  bottom: -6%; left: -9%;
  border-radius: 50%;
  background: var(--teal-light);
  z-index: -1;
}
.hero__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 47% 53% 55% 45% / 52% 46% 54% 48%;
  box-shadow: 0 16px 40px rgba(0, 122, 116, 0.18);
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__text { text-align: center; }
  .hero__cta-area { justify-content: center; }
  .hero__photo { max-width: 320px; margin: 0 auto; }
}
.hero__gov { font-size: 0.85rem; letter-spacing: 0.1em; color: #888; }
.hero__catch {
  font-family: var(--font-hand);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--pink);
  margin-top: 1rem;
  transform: rotate(-2deg);
  text-decoration: underline wavy 2px;
  text-underline-offset: 0.4em;
  text-decoration-color: rgba(233, 79, 138, 0.5);
}
.hero__catch span {
  display: inline-block;
  opacity: 0;
  animation: catchIn 0.7s ease forwards;
}
.hero__catch span:nth-child(2) { animation-delay: 0.35s; }
@keyframes catchIn {
  from { opacity: 0; transform: translateY(14px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero__recruit {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  padding: 0.25em 0.9em;
  border-radius: 10px;
  margin-top: 1.4rem;
}
.hero__lead {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.3vw, 1.15rem);
  line-height: 1.7;
  padding: 0.55em 1em;
  border-radius: 12px;
  margin-top: 0.9rem;
}
.hero__title { font-family: var(--font-round); line-height: 1.15; margin-top: 1rem; color: var(--teal); }
.hero__title-main {
  display: block;
  font-size: clamp(3.2rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 5px 5px 0 var(--teal-light);
}
.hero__title-sub {
  display: block;
  font-size: clamp(1.5rem, 4.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--teal-dark);
}
.hero__hand {
  font-family: var(--font-hand);
  color: var(--pink);
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  margin-top: 0.8rem;
  transform: rotate(-1.5deg);
}
.hero__cta-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero__capacity {
  position: absolute;
  bottom: 0;
  right: -8px;
  display: grid;
  place-items: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px dashed rgba(255, 255, 255, 0.7);
  line-height: 1.1;
  font-family: var(--font-round);
  font-weight: 900;
  align-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.hero__capacity-label { font-size: 0.85rem; }
.hero__capacity-num { font-size: 2.4rem; }
.hero__capacity-unit { font-size: 0.85rem; }
/* ---------- 申込期間バー ---------- */
.period-bar { padding: 1rem 1.2rem 0; }
.period-bar__inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--yellow);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.period-bar__label {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3em 1.2em;
}
.period-bar__dates {
  font-family: var(--font-round);
  font-weight: 900;
  color: var(--teal-dark);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.period-bar__date { font-size: 2.4rem; }
.period-bar__date small { font-size: 1rem; }
.period-bar__tilde { font-size: 1.4rem; }
.period-bar__count {
  font-weight: 700;
  color: var(--pink);
  font-size: 0.95rem;
}

/* ---------- セクション共通 ---------- */
.section { padding: 5rem 1.2rem; }
.section--gray { background: #f4faf9; }
.section__inner { max-width: 1060px; margin: 0 auto; }
.section__inner--narrow { max-width: 860px; }
.section__title {
  text-align: center;
  font-family: var(--font-round);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 2.8rem;
  position: relative;
}
.section__title-en {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.section__title::after {
  content: "";
  display: block;
  width: 56px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  margin: 0.8rem auto 0;
}
.section__lead {
  text-align: center;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: var(--pink);
  margin-bottom: 1rem;
}

.cur-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 0.6rem;
}
.cur-head .section__lead { margin-bottom: 0; }
.cur-head__img {
  width: 120px; height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cur-head { flex-direction: column; gap: 1rem; }
  .cur-head__img { width: 100px; height: 100px; }
    .features {grid-template-columns: 1fr!important; }
}

.hero__cta-area {
    justify-content: center;
}

/* ---------- 特徴 ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
}
.feature-card {
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 162, 154, 0.18);
}
.feature-card__icon {
  width: 100px; height: 100px;
  margin: 0 auto 1rem;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 16px;
}
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card__title {
  font-family: var(--font-round);
  font-size: 1.15rem;
  color: var(--teal-dark);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.feature-card__title strong { color: var(--pink); font-size: 1.3em; }
.feature-card__text { font-size: 0.9rem; text-align: left; }

.python-box {
  margin-top: 2.4rem;
  background: var(--teal-light);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.python-box__label {
  flex-shrink: 0;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--teal-dark);
  border-right: 2px dashed var(--teal);
  padding-right: 1.6rem;
}
.python-box p { font-size: 0.95rem; }
@media (max-width: 768px) {
  .python-box { flex-direction: column; text-align: left; gap: 0.8rem; }
  .python-box__label { border-right: none; border-bottom: 2px dashed var(--teal); padding: 0 0 0.6rem; }
}

/* ---------- 講座内容 ---------- */
.curriculum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem;
}
@media (min-width: 1080px) {
  .curriculum { grid-template-columns: repeat(5, 1fr); }
}
.cur-card {
  border-radius: 18px;
  padding: 1.6rem 1.3rem;
  background: var(--white);
  border-top: 6px solid;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease;
}
.cur-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12); }
.cur-card--teal   { border-color: var(--teal);   --accent: var(--teal); }
.cur-card--pink   { border-color: var(--pink);   --accent: var(--pink); }
.cur-card--blue   { border-color: var(--blue);   --accent: var(--blue); }
.cur-card--purple { border-color: var(--purple); --accent: var(--purple); }
.cur-card--green  { border-color: var(--green);  --accent: var(--green); }
.cur-card__num {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--accent);
}
.cur-card__title {
  font-family: var(--font-round);
  font-size: 1.05rem;
  color: var(--accent);
  line-height: 1.4;
  margin: 0.3rem 0 0.8rem;
  min-height: 2.8em;
}
.cur-card__hours {
  background: var(--teal-light);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.8rem;
}
.cur-card__hours span { display: block; }
.cur-card__hours strong { font-size: 1.4em; }
.cur-card__text { font-size: 0.85rem; }

/* ---------- 流れ ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.flow__step {
  position: relative;
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: 18px;
  padding: 2.2rem 1.3rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease;
}
.flow__step:hover { transform: translateY(-6px); box-shadow: 0 12px 26px rgba(0, 162, 154, 0.15); }
.flow__step:not(:last-child)::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 0.9rem;
  z-index: 1;
}
.flow__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0, 162, 154, 0.35);
}
.flow__title { font-family: var(--font-round); color: var(--teal-dark); font-size: 1.1rem; }
.flow__title small { font-size: 0.7rem; color: var(--pink); display: block; }
.flow__date { font-weight: 700; color: var(--pink); font-size: 0.9rem; margin: 0.3rem 0 0.6rem; }
.flow__text { font-size: 0.85rem; text-align: left; }
.flow__note { text-align: center; font-size: 0.85rem; margin-top: 1.8rem; color: #666; }
@media (max-width: 768px) {
  .flow { grid-template-columns: 1fr; gap: 2rem; }
  .flow__step:not(:last-child)::after {
    content: "▼";
    top: auto;
    bottom: -1.7rem;
    right: 50%;
    transform: translateX(50%);
  }
}

/* ---------- 対象 ---------- */
.target__lead { text-align: center; margin-bottom: 1.6rem; font-weight: 500; }
.target-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.target-list li {
  background: var(--white);
  border-radius: 12px;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  position: relative;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.target-list li::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}
@media (max-width: 640px) { .target-list { grid-template-columns: 1fr; } }

.support {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.support__item {
  background: var(--white);
  border: 2px dashed var(--teal);
  border-radius: 16px;
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.support__icon { font-size: 1.8rem; }
.support__item strong { color: var(--teal-dark); font-family: var(--font-round); }
.support__item small { display: block; font-size: 0.78rem; color: #666; }

/* ---------- 募集要項 ---------- */
.outline {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.outline__row {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.outline__row:not(:last-child) { border-bottom: 1px solid #eef4f3; }
.outline__row dt {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: var(--font-round);
  font-weight: 700;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.outline__row dt small { font-size: 0.72rem; color: var(--pink); font-weight: 700; }
.outline__row dd { padding: 1.4rem 1.6rem; font-size: 0.95rem; }
.outline__row dd p + p { margin-top: 0.7rem; }
.outline__row dd small { font-size: 0.8rem; color: #666; }
.outline__sub {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.15em 0.8em;
  margin-bottom: 0.3rem;
}
.outline__note {
  margin-top: 1.6rem;
  background: var(--yellow);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  text-align: center;
}
@media (max-width: 640px) {
  .outline__row { grid-template-columns: 1fr; }
  .outline__row dt { padding: 0.7rem 1.2rem; }
}

/* ---------- 申し込みCTA ---------- */
.apply {
  background: linear-gradient(135deg, var(--pink) 0%, #f0699c 60%, #f58ab3 100%);
  color: var(--white);
  padding: 5rem 1.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply::before, .apply::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.apply::before { width: 260px; height: 260px; top: -90px; left: -70px; }
.apply::after { width: 320px; height: 320px; bottom: -120px; right: -100px; }
.apply__inner { position: relative; max-width: 760px; margin: 0 auto; }
.apply__catch { font-family: var(--font-hand); font-size: 1.3rem; transform: rotate(-1.5deg); }
.apply__title {
  font-family: var(--font-round);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 900;
  margin: 0.6rem 0 0.8rem;
}
.apply__text { margin-bottom: 1.6rem; }
.apply__period { margin-top: 1.4rem; font-size: 0.9rem; font-weight: 700; }

/* ---------- フッター ---------- */
.footer {
  background: var(--teal-dark);
  color: var(--white);
  padding: 3.5rem 1.2rem 5rem;
  text-align: center;
}
.footer__label {
  display: inline-block;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.2em 1.4em;
  margin-bottom: 1rem;
}
.footer__name { font-family: var(--font-round); font-weight: 700; font-size: 1.3rem; }
.footer__tel a, .footer__mail a { text-decoration: none; }
.footer__tel { font-size: 1.6rem; font-weight: 900; font-family: var(--font-round); margin-top: 0.5rem; }
.footer__tel a:hover, .footer__mail a:hover { text-decoration: underline; }
.footer__mail { font-size: 0.95rem; }
.footer__time { font-size: 0.85rem; opacity: 0.85; margin-top: 0.4rem; }
.footer__copy { font-size: 0.75rem; opacity: 0.7; margin-top: 1.8rem; }

/* ---------- 追従CTA・ページトップ ---------- */
.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translate(-50%, 120%);
  z-index: 90;
  background: linear-gradient(135deg, var(--pink), #f0699c);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8em 2em;
  box-shadow: 0 8px 20px rgba(233, 79, 138, 0.45);
  white-space: nowrap;
  transition: transform 0.4s ease;
}
.fixed-cta.is-shown { transform: translate(-50%, 0); }
@media (min-width: 901px) { .fixed-cta { display: none; } }

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--teal);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.to-top.is-shown { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-4px); }

@media (max-width: 900px) {
  .to-top { bottom: 72px; }
}
