/*
  差し替えポイント（デザイン）:
  - :root のカラー/半径/影
  - .hero の背景や画像（必要なら）
*/

:root {
  /* 差し替えポイント: アクセントカラー（緑） */
  --bg: #f6f8f7;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);

  --primary: #16a34a;
  --primary-ink: #052e16;
  --primary-2: #22c55e;
  --warning: #f59e0b;

  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;

  --header-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(34, 197, 94, 0.14), transparent 62%),
    radial-gradient(900px 520px at 90% 0%, rgba(22, 163, 74, 0.12), transparent 58%), var(--bg);
  line-height: 1.65;
}

/* a11y: 画面には出さず読み上げには残す */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 背景: さりげない幾何学（水玉） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 22% 18%, rgba(22, 163, 74, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 62%, rgba(22, 163, 74, 0.10) 0 2px, transparent 3px);
  background-size: 26px 26px, 26px 26px, 240px 240px, 300px 300px;
  opacity: 0.45;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 180ms ease;
  z-index: 1000;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 190px;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(14, 165, 164, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}
.brand-name {
  font-weight: 800;
}
.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 16px;
}
.site-nav a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.82);
  font-weight: 650;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 999px;
}
.site-nav a:hover {
  background: rgba(15, 23, 42, 0.06);
}
.site-nav a:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 2px;
}
.site-nav .nav-cta {
  background: rgba(22, 163, 74, 0.10);
  border: 1px solid rgba(22, 163, 74, 0.25);
}
.site-nav .nav-cta:hover {
  background: rgba(22, 163, 74, 0.16);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
}
.nav-toggle:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
}
.mobile-nav a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 650;
}
.mobile-nav a.nav-cta {
  background: rgba(22, 163, 74, 0.10);
}
.site-header.is-open .mobile-nav {
  display: block;
}

@media (min-width: 960px) {
  .site-nav {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* Sections */
.section {
  padding: 64px 0;
}
.section-alt {
  background: rgba(22, 163, 74, 0.04);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-head {
  margin-bottom: 22px;
}
.section-head h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* 文章の強弱・ハイライト */
.lead {
  font-size: 17px;
}
.muted {
  font-size: 15px;
}
.card p {
  font-size: 15px;
}
.hl {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.marker {
  background: linear-gradient(transparent 60%, rgba(245, 158, 11, 0.35) 0);
  border-radius: 8px;
  padding: 0 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Hero */
.hero {
  position: relative;
  --hero-safe-top: 34svh;
  --hero-bg-y: 18%;
  --hero-bg-x: 50%;
  /* 画像上部30%には文字を被せない（SP/PC共通） */
  padding: calc(var(--hero-safe-top) + 18px) 0 28px;
  overflow: clip;
  /* 差し替えポイント: ヒーロー背景 */
  background-image: url("./images/hugmeclass1.jpeg");
  background-image: image-set(
    url("./images/hugmeclass1.webp") type("image/webp"),
    url("./images/hugmeclass1.jpeg") type("image/jpeg")
  );
  background-size: cover;
  /* 上側を多めに見せて、下側はトリミング（人物の顔に文字が被りにくい） */
  background-position: var(--hero-bg-x) var(--hero-bg-y);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 画像は明るさを保ちつつ、文字は読めるように */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.14));
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kicker {
  margin: 0 0 10px;
  color: rgba(15, 23, 42, 0.82);
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.hl {
  background: linear-gradient(transparent 60%, rgba(34, 197, 94, 0.28) 0);
  border-radius: 8px;
  padding: 0 6px;
}

.hero-infographics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0 18px;
  text-align: left;
}
.info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.info-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(22, 163, 74, 0.10);
  border: 1px solid rgba(22, 163, 74, 0.22);
  font-size: 18px;
  will-change: transform;
}
.info-card .info-ico {
  animation: infoIcoFloat 4.6s ease-in-out infinite;
}
.info-card:nth-child(2) .info-ico {
  animation-delay: 0.5s;
}
.info-card:nth-child(3) .info-ico {
  animation-delay: 1s;
}
@keyframes infoIcoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(-2deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .info-card .info-ico {
    animation: none;
  }
}
.info-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.info-text {
  color: rgba(15, 23, 42, 0.76);
  font-size: 13px;
}

.hero-copy {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  container-type: inline-size;
  text-align: center;
}
.info-body {
  text-align: left;
}
.hero .lead {
  color: rgba(15, 23, 42, 0.78);
}
.hero-lead-compact {
  margin: 0 0 12px;
  font-size: 15px;
}
.hero-lead-line {
  display: block;
}
.hero .tel-link {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.28);
}
.hero .tel-label {
  color: rgba(15, 23, 42, 0.74);
}
.hero .tel-number {
  color: rgba(15, 23, 42, 0.92);
}

.hero-side {
  width: 100%;
}
.hero-side-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.hero-side-head {
  margin-bottom: 12px;
}
.hero-side-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.hero-side-sub {
  color: rgba(15, 23, 42, 0.72);
  font-size: 13px;
}

.skill-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.skill-icon {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  padding: 6px 6px;
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}
.skill-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.skill-icon span {
  font-weight: 850;
  font-size: 10px;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.2;
}
.hero-side-foot {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: rgba(15, 23, 42, 0.72);
  font-size: 13px;
}

@media (min-width: 760px) {
  .skill-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(20px, 4.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}
@supports (font-size: 1cqw) {
  .hero-copy h1 {
    font-size: clamp(20px, 7.5cqw, 48px);
  }
}
.hero-h1-line {
  display: block;
  white-space: nowrap;
}
.hero-h1-small {
  font-size: 0.5em;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lead {
  margin: 0 0 18px;
  color: rgba(15, 23, 42, 0.78);
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 10px 0 14px;
}

/* ヒーローCTAのサイズ要件: PC 30% / SP 80% */
.hero .cta-row {
  gap: 14px;
  align-items: center;
}
.hero .cta-row .btn-primary.btn-cta-lg {
  width: 80%;
  max-width: 520px;
}
.hero .cta-row .btn-ghost {
  width: auto;
}
@media (min-width: 960px) {
  .hero .cta-row {
    align-items: center;
  }
  .hero .cta-row .btn-primary.btn-cta-lg {
    width: 30%;
    max-width: none;
    min-width: 280px;
  }
}

@media (max-width: 959px) {
  /* SP: 画像は全体表示 + 画像の下に本文 */
  .hero {
    padding: 18px 0 28px;
    background-image: none;
  }
  .hero::before {
    content: none;
  }
  .hero .cta-row {
    justify-content: center;
  }
  .hero-contact {
    display: flex;
    justify-content: center;
  }
}

.hero-contact {
  margin: 6px 0 10px;
  display: flex;
  justify-content: center;
}
.tel-link {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(22, 163, 74, 0.32);
  background: rgba(22, 163, 74, 0.06);
}
.tel-link:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 2px;
}
.tel-label {
  color: rgba(15, 23, 42, 0.74);
  font-weight: 800;
  font-size: 12px;
}
.tel-number {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 260px;
}

.hero-media {
  display: none;
  margin: 0 auto 14px;
  padding: 0 16px;
}
.hero-media-inner {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-media picture,
.hero-media img {
  width: 100%;
  display: block;
}
.hero-media img {
  height: auto;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
@media (max-width: 959px) {
  .hero-media {
    display: block;
  }
}
.hero-visual {
  max-width: 720px;
  justify-self: end;
}
.hero-float {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}
.hero-float-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.hero-float-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.03);
  font-weight: 650;
  font-size: 13px;
}
.hero-float-foot {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  align-items: center;
}
.arrow-pill {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: rgba(5, 46, 22, 0.92);
  font-weight: 900;
}

@media (min-width: 960px) {
  .hero {
    padding: calc(30svh + 22px) 0 40px;
  }
  .hero-inner {
    grid-template-columns: 0.98fr 1.02fr;
    gap: 28px;
  }
  .hero-copy {
    padding: 22px;
  }
  .hero-side-card {
    padding: 18px;
  }
  .skill-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero-infographics {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .info-card {
    grid-template-columns: 44px 1fr;
    align-items: center;
    padding: 12px 12px;
  }
}

/* Skill strip (参考LPの導線: ヒーロー直下のメニュー風) */
.skill-strip {
  padding: 10px 0 0;
}
.skill-strip-inner {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 14px 14px;
  box-shadow: var(--shadow-soft);
}
.skill-strip-title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.78);
}
.skill-strip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.skill-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  font-weight: 800;
  color: rgba(5, 46, 22, 0.86);
  white-space: nowrap;
}
.skill-ico {
  font-size: 16px;
}
@media (min-width: 960px) {
  .skill-strip {
    padding: 14px 0 0;
  }
  .skill-strip-inner {
    padding: 16px 16px;
  }
}

/* Skill marquee (desktop auto-scroll) */
.skill-marquee {
  position: relative;
  overflow: hidden;
}
.skill-marquee-track {
  display: none;
}

@keyframes marquee-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 自動スクロール（SP/PC共通） */
@media (prefers-reduced-motion: no-preference) {
  .skill-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-x 24s linear infinite;
    will-change: transform;
  }
  .skill-marquee-track .skill-strip-list {
    display: flex;
    overflow: visible;
    gap: 10px;
    padding-right: 10px;
  }
  /* 読み上げ用に静的リストは残し、見た目は自動スクロールを優先 */
  .skill-strip-list--static {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skill-marquee-track {
    animation: none !important;
  }
}

@media (min-width: 960px) {
  .skill-marquee-track {
    animation-duration: 26s;
  }
  .skill-marquee-track:hover {
    animation-play-state: paused;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.modal[aria-hidden="false"] {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(6px);
  z-index: 0;
}
.modal-dialog {
  position: relative;
  width: min(860px, calc(100% - 28px));
  max-height: calc(100svh - 40px);
  overflow: auto;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.30);
  padding: 16px 16px;
  outline: none;
  z-index: 1;
}
.modal-title {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.modal-content .chip-list {
  margin-top: 12px;
}


/* UI */
.grid {
  display: grid;
  gap: 14px;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .section {
    padding: 72px 0;
  }
}

/* 体験談: Webでも縦並び */
@media (min-width: 760px) {
  #voices .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
/* problems: 画像はセクションで1回のみ使用 */
.card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.76);
}

.feature .icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-inner {
  display: grid;
  gap: 12px;
}
.feature-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}
.feature-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.feature-text h3 {
  margin: 0 0 8px;
}
.feature-text p {
  margin: 0;
}
@media (min-width: 520px) {
  .feature-inner {
    grid-template-columns: 110px 1fr;
    align-items: start;
  }
  .feature-media img {
    aspect-ratio: 1 / 1;
  }
  .feature-text .icon {
    margin-bottom: 6px;
  }
}

.program .program-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.program-media-card {
  padding: 0;
  overflow: hidden;
}
.program-media {
  width: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.10), rgba(34, 197, 94, 0.08));
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 190px;
}
.program-media-photo {
  margin: 0;
}
.program-media-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.program-media-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  gap: 10px;
  padding: 18px;
  /* 薄い方眼用紙っぽい背景 */
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}
.program-media-icons img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.12));
}
.program-media-illustration {
  padding: 16px;
}
.program-media-illustration svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
.program-content {
  padding: 18px;
}

.program-intro {
  margin: 10px 0 16px;
}
.program-intro .lead {
  margin-bottom: 8px;
}
#programs .programs-lead {
  font-size: 16px;
  font-weight: 800;
}
#programs .programs-intro-lead {
  font-size: 19px;
  line-height: 1.7;
}
#programs .programs-intro-muted {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.80);
}

.chip-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-list li {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.76);
}

.curriculum {
  margin-top: 18px;
}
.curriculum-title {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.curriculum-grid {
  display: grid;
  gap: 10px;
}
.curriculum-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: clip;
}
.curriculum-item[open] {
  background: rgba(22, 163, 74, 0.05);
}
.curriculum-item summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 950;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.curriculum-item summary::-webkit-details-marker {
  display: none;
}
.curriculum-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 900;
}
.curriculum-item[open] summary::after {
  content: "–";
}
.curriculum-body {
  padding: 0 16px 16px;
}
.curriculum-body p {
  margin: 0;
}
.curriculum-body .muted {
  margin-top: 0;
}
@media (min-width: 960px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (min-width: 960px) {
  .program-media {
    min-height: 220px;
  }
  .program-media-icons img {
    width: 46px;
    height: 46px;
  }
}
.tag {
  font-size: 12px;
  font-weight: 750;
  color: rgba(15, 23, 42, 0.72);
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.20);
  padding: 6px 10px;
  border-radius: 999px;
}
.list {
  margin: 0;
  padding-left: 1.2em;
  color: rgba(15, 23, 42, 0.78);
}
.list li {
  margin: 6px 0;
}

.section-cta {
  margin-top: 16px;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(34, 197, 94, 0.10));
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.cta-panel h3 {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.cta-panel p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

.callout {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}
.callout h3 {
  margin: 0 0 6px;
}
.callout p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

@media (min-width: 760px) {
  .cta-panel,
  .callout {
    flex-direction: row;
    align-items: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
  min-height: 44px;
  position: relative;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: rgba(255, 255, 255, 0.0);
}
.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(22, 163, 74, 0.24);
}

.btn-cta-lg {
  min-height: 56px;
  padding: 14px 20px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.cta-strong {
  overflow: hidden;
  animation: cta-float 2.2s ease-in-out infinite;
}
.cta-strong::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 55%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(18deg);
  animation: cta-sheen 2.8s ease-in-out infinite;
  pointer-events: none;
}
.cta-strong:active {
  animation: none;
}

@keyframes cta-sheen {
  0% {
    left: -70%;
    opacity: 0.0;
  }
  18% {
    opacity: 1;
  }
  45% {
    left: 120%;
    opacity: 0.0;
  }
  100% {
    left: 120%;
    opacity: 0.0;
  }
}

@keyframes cta-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: rgba(15, 23, 42, 0.84);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.88);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.95), rgba(34, 197, 94, 0.65));
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  height: 22px;
  border-left: 3px dotted rgba(22, 163, 74, 0.55);
  transform: translateX(-50%);
}
.step-tail {
  display: none;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--primary-ink);
  background: rgba(14, 165, 164, 0.16);
  border: 1px solid rgba(14, 165, 164, 0.20);
}
.step-body h3 {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.16);
}
.step:hover {
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}
.step {
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.step:focus-within {
  outline: 3px solid rgba(34, 197, 94, 0.28);
  outline-offset: 2px;
}
.step-body h3 {
  margin: 0 0 6px;
}
.step-body p {
  margin: 0;
  color: rgba(15, 23, 42, 0.74);
}
.step-body p.flow-note {
  text-align: left;
}
.flow-list {
  text-align: left;
}
.flow-note + .flow-list {
  margin-top: 8px;
}

/* Webでも縦並び（要望） */

@media (max-width: 959px) {
  .step-tail {
    display: none;
  }
}

.flow-cta {
  display: grid;
  gap: 12px;
}
.flow-cta-text {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.28), rgba(22, 163, 74, 0.08) 45%, rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(22, 163, 74, 0.35);
  box-shadow: 0 24px 54px rgba(22, 163, 74, 0.22);
}
.flow-cta-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22, 163, 74, 0.18), transparent 40%, rgba(34, 197, 94, 0.2));
  opacity: 0.6;
  pointer-events: none;
}
.flow-cta-text h3 {
  font-size: 22px;
  letter-spacing: 0.02em;
}
.flow-cta-text h3,
.flow-cta-text p {
  text-shadow:
    2px 0 0 rgba(255, 255, 255, 0.95),
    -2px 0 0 rgba(255, 255, 255, 0.95),
    0 2px 0 rgba(255, 255, 255, 0.95),
    0 -2px 0 rgba(255, 255, 255, 0.95),
    2px 2px 0 rgba(255, 255, 255, 0.9),
    -2px 2px 0 rgba(255, 255, 255, 0.9),
    2px -2px 0 rgba(255, 255, 255, 0.9),
    -2px -2px 0 rgba(255, 255, 255, 0.9),
    3px 0 0 rgba(255, 255, 255, 0.7),
    -3px 0 0 rgba(255, 255, 255, 0.7),
    0 3px 0 rgba(255, 255, 255, 0.7),
    0 -3px 0 rgba(255, 255, 255, 0.7);
}
.flow-cta-text p {
  color: rgba(15, 23, 42, 0.78);
}
.flow-cta-btn {
  width: 100%;
  min-height: 72px;
  font-size: 18px;
}
.step-cta {
  margin-top: 12px;
  width: fit-content;
}

/* Voices */
.voice-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.voice-photo-round {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}
.voice-bubble {
  position: relative;
  z-index: 0;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.voice-bubble::before {
  content: "";
  position: absolute;
  left: 34px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.90);
}
.voice-bubble::after {
  content: "";
  position: absolute;
  left: 33px;
  top: -11px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid rgba(15, 23, 42, 0.08);
  z-index: -1;
}
.voice-name {
  font-weight: 850;
}
.voice-tag {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.70);
}

.voice-more {
  margin-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 10px;
}
.voice-more summary {
  cursor: pointer;
  font-weight: 850;
  color: rgba(5, 46, 22, 0.90);
  list-style: none;
}
.voice-more summary::-webkit-details-marker {
  display: none;
}
.voice-more summary::after {
  content: "＋";
  float: right;
  color: rgba(15, 23, 42, 0.60);
}
.voice-more[open] summary::after {
  content: "－";
}
.voice-more-body {
  padding-top: 8px;
  color: rgba(15, 23, 42, 0.76);
}
.voice-more-body p {
  margin: 0 0 10px;
}
.voice-more-body p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: clip;
  transition: background-color 200ms ease;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 850;
  list-style: none;
  position: relative;
  padding-right: 48px;
  background: rgba(255, 255, 255, 0.96);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 900;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-body {
  padding: 12px 16px 16px;
  color: rgba(15, 23, 42, 0.76);
  overflow: hidden;
  background: rgba(22, 163, 74, 0.06);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.faq-item summary:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 2px;
}

/* Contact */
.contact {
  padding: 72px 0;
}
.contact-card {
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.16), rgba(99, 102, 241, 0.14));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.contact-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
}
.mini-list {
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: rgba(15, 23, 42, 0.78);
}
.mini-list li {
  margin: 6px 0;
}
.contact-side {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 14px;
}
@media (min-width: 960px) {
  .contact-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    padding: 22px;
  }
}

/* Message */
/* セクション削除: 代表あいさつ */

/* Footer */
.site-footer {
  padding: 28px 0 44px;
  color: rgba(15, 23, 42, 0.74);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.72);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.62);
}
.footer-links a:hover {
  background: rgba(255, 255, 255, 0.86);
}
.footer-links a:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
  }
}

/* Access */
.access-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 960px) {
  .access-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}
.info-table {
  margin: 12px 0 0;
}
.info-table .row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}
.info-table .row:first-child {
  border-top: 0;
}
.info-table dt {
  color: rgba(15, 23, 42, 0.70);
  font-weight: 900;
}
.info-table dd {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
}
.tel-plain {
  text-decoration: none;
  font-weight: 900;
}
.access-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.access-block h4 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.biz-grid {
  display: grid;
  gap: 10px;
}
@media (min-width: 760px) {
  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.biz-card {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(22, 163, 74, 0.04);
  padding: 12px;
}
.biz-title {
  font-weight: 950;
  margin-bottom: 8px;
  font-size: 13px;
}
.biz-list {
  margin: 0;
  padding-left: 1.1em;
  color: rgba(15, 23, 42, 0.78);
  font-size: 12px;
  line-height: 1.55;
}
.biz-list li {
  margin: 4px 0;
}
.map-embed {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  display: block;
}
.map-cta {
  margin-top: 12px;
}

/* Arrow cues (導線) */
.scroll-next {
  margin-top: 18px;
  display: grid;
  place-items: center;
}
.scroll-next-inner {
  width: 48px;
  height: 56px;
  display: grid;
  place-items: center;
  position: relative;
}
.scroll-line {
  width: 2px;
  height: 38px;
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
}
.scroll-arrow {
  position: absolute;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-right: 3px solid rgba(15, 23, 42, 0.42);
  border-bottom: 3px solid rgba(15, 23, 42, 0.42);
  transform: rotate(45deg);
  animation: arrow-down 1.4s ease-in-out infinite;
}

.hero .scroll-line {
  background: rgba(15, 23, 42, 0.26);
}
.hero .scroll-arrow {
  border-right-color: rgba(15, 23, 42, 0.50);
  border-bottom-color: rgba(15, 23, 42, 0.50);
}
@keyframes arrow-down {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 1;
  }
}

.section-divider {
  display: grid;
  place-items: center;
  padding: 6px 0 0;
}
.divider-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.10);
  border: 1px solid rgba(22, 163, 74, 0.20);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.divider-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid rgba(5, 46, 22, 0.70);
  border-bottom: 3px solid rgba(5, 46, 22, 0.70);
  transform: translate(-50%, -58%) rotate(45deg);
}

/* Voices lead */
/* Voices lead（現在未使用） */

/* Utilities */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Sticky CTA (mobile) */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: none;
  transition: transform 220ms ease, opacity 220ms ease;
}
.sticky-cta.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta-inner {
  width: min(var(--container), calc(100% - 0px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.sticky-cta-copy {
  display: grid;
  line-height: 1.1;
}
.sticky-cta-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.sticky-cta-sub {
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 959px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 86px;
  }
  /* Proline画像CTAは動かさない */
  .contact-side .cta-strong {
    animation: none;
  }
  .contact-side .cta-strong::before {
    animation: none;
  }
}
.section-hero-image {
  margin: 0 0 14px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.section-hero-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 28px;
}

.bubble-title {
  display: inline-block;
  position: relative;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}
.section-head .bubble-title,
.contact-copy .bubble-title {
  margin-bottom: 10px;
}
.bubble-title::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 6px 10px rgba(15, 23, 42, 0.10));
}
.bubble-title::before {
  content: "";
  position: absolute;
  left: 25px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid rgba(15, 23, 42, 0.10);
}
.bubble-title h2 {
  margin: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0, 0, 1);
}
.reveal.is-inview {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
