@charset "UTF-8";

/* ------------------------------
  Base
------------------------------ */
:root {
  --pink: #e888b5;
  --pink-dark: #b9548a;
  --blue: #5fc4df;
  --green: #86c982;
  --orange: #e7b06d;
  --purple: #8b8fd8;
  --navy: #23364d;
  --text: #333;
  --muted: #777;
  --bg-pink: #fff4f8;
  --footer-green: #85cb82;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Times New Roman",
    serif;
  font-size: 16px;
  line-height: 1.9;
  background: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 54px 0 30px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  color: var(--pink-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.section-title span {
  color: #b77aa2;
  font-size: 18px;
  font-style: italic;
}

/* ------------------------------
  Header
------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 8px;
}

.site-logo {
  flex: 0 0 280px;
  margin: 0;
}

.site-logo img {
  display: block;
}

.global-nav {
  flex: 1;
}

.global-nav > ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav > ul > li {
  position: relative;
}

.global-nav > ul > li > a.nav-water {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 10px 8px;
  color: #333;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  background: none;
  border-radius: 50%;
  box-shadow: none;
  transition: transform 0.2s ease;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  color: #38404a;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.65),
    0 0 4px rgba(255,255,255,0.85);
}
.global-nav > ul > li > a.nav-water::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.global-nav > ul > li > a.nav-water span {
  position: relative;
  z-index: 1;
}

.global-nav > ul > li > a.nav-water:hover {
  transform: translateY(-3px);
}

.global-nav > ul > li > a.nav-water:hover::before {
  opacity: 0.86;
  transform: scale(1.04);
}

/* 水彩丸画像 */
.global-nav .nav01::before {
  background-image: url("../img/nav01.png");
}

.global-nav .nav02::before {
  background-image: url("../img/nav02.png");
}

.global-nav .nav03::before {
  background-image: url("../img/nav03.png");
}

.global-nav .nav04::before {
  background-image: url("../img/nav04.png");
}

.global-nav .nav05::before {
  background-image: url("../img/nav05.png");
}

.global-nav .nav06::before {
  background-image: url("../img/nav06.png");
}

.global-nav .nav07::before {
  background-image: url("../img/nav07.png");
}
.global-nav li ul {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 10;
  min-width: 130px;
  margin: 0;
  padding: 8px 10px;
  list-style: none;
  background: rgba(255,255,255,0.93);
  border: 1px solid #eee;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.global-nav li:hover ul {
  opacity: 1;
  visibility: visible;
}

.global-nav li ul a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
	font-weight: bold;
  white-space: nowrap;
}

.global-nav li ul a::before {
  content: "▪";
  margin-right: 4px;
  color: var(--green);
}

.header-sns {
  flex: 0 0 150px;
  text-align: center;
  color: #6597c0;
  font-size: 12px;
  line-height: 1.4;
}

.header-sns p {
  margin: 0 0 6px;
}

.header-sns .sns-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 3px;
  border-radius: 50%;
  color: #e887a9;
  font-size: 26px;
  background: #fff;
  transition: 0.2s ease;
}

.header-sns .sns-icon:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.header-sns .instagram {
  color: #e65d9d;
}

.header-sns .mail {
  color: #e887a9;
}
.nav-toggle {
  display: none;
}

/* ------------------------------
  Header SNS / Contact Text Links
------------------------------ */
.header-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.header-link-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6b7f9c;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-link:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.header-link i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 16px;
  line-height: 1;
}

.header-link.instagram i {
  color: #e887a9;
  font-size: 17px;
}

.header-link.facebook i {
  color: #4b78bd;
  font-size: 15px;
}

.header-link.mail i {
  color: #e887a9;
  font-size: 16px;
}

/* スマホメニュー内リンクはPCでは非表示 */
.sp-header-links {
  display: none;
}

/* ------------------------------
  Hero
------------------------------ */
.hero {
  position: relative;
  height: clamp(420px, 46vw, 560px);
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  pointer-events: none;
}

/*.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(620px, calc(100% - 40px));
  padding: 46px 50px 34px;
  text-align: center;
  background: rgba(255,255,255,0.76);
  border-radius: 52% 48% 53% 47% / 46% 50% 50% 54%;
  transform: translate(-50%, -48%);
  backdrop-filter: blur(2px);
}*/

/* ------------------------------
  Top Hero：白楕円から文字背面光彩へ変更
------------------------------ */
.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-block;
  width: auto;
  max-width: min(760px, calc(100% - 40px));
  padding: 24px 32px 26px;
  text-align: center;
  background: transparent;
  border-radius: 0;
  transform: translate(-50%, -48%);
  backdrop-filter: none;
}

/* 文字・ボタン背面の白い光彩 */
.hero-copy::before {
  content: "";
  position: absolute;
  inset: -14px -22px;
  z-index: -1;
  background: rgba(255,255,255,0.68);
  filter: blur(20px);
  border-radius: 999px;
}

/* 文字自体にも白い光彩 */
.hero-main,
.hero-sub {
  position: relative;
  z-index: 1;
  text-shadow:
    0 0 6px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.95),
    0 0 24px rgba(255,255,255,0.85),
    0 0 36px rgba(255,255,255,0.65);
}

.hero-buttons {
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .hero-copy {
    width: calc(100% - 36px);
    max-width: none;
    padding: 22px 18px 24px;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-copy::before {
    inset: -12px -12px;
    background: rgba(255,255,255,0.72);
    filter: blur(18px);
    border-radius: 32px;
  }
}

.hero-main {
  margin: 0 0 14px;
  color: #333;
  font-size: clamp(34px, 4vw, 58px);
	font-weight: bold;
  line-height: 1.30;
  letter-spacing: 0.09em;
}

.hero-main span:first-child {
  color: #ef75bb;
}

.hero-main span:last-child {
  color: #56b8e7;
}

.hero-sub {
  margin: 0 0 24px;
  color: #333;
  font-size: 16px;
	font-weight: bold;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ------------------------------
  Button
------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 46px;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  transition: 0.2s ease;
}

.btn::after {
  content: "›";
  margin-left: 12px;
  font-size: 22px;
  line-height: 1;
}

.btn-pink {
  color: #fff;
  background: var(--pink);
  border: 2px solid var(--pink);
}

.btn-white {
  color: var(--pink);
  background: #fff;
  border: 2px solid #f2b8cf;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

/* ------------------------------
  Greeting
------------------------------ */
.greeting-inner {
  position: relative;
}

.greeting-body {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 50px;
  align-items: center;
}

.greeting-text p {
  margin: 0 0 1.2em;
}

.greeting-image {
  text-align: center;
}

.greeting-image img {
  width: 300px;
}

/* ------------------------------
  Concept
------------------------------ */
.concept-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.concept-card {
  min-height: 210px;
  padding: 34px 40px;
  background: #fff;
  border: 6px solid currentColor;
  border-radius: 38% 62% 48% 52% / 51% 42% 58% 49%;
  position: relative;
}

.concept-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 26px;
  height: 26px;
  border-right: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  border-radius: 0 0 20px 0;
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
}

.concept-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
	text-align: center;
}

.concept-card p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.9;
}

.concept-blue { color: #29a8dc; }
.concept-pink { color: #ef8fa0; }
.concept-green { color: #7dc982; }

/* ------------------------------
  Course
------------------------------ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.course-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  transition: 0.2s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.course-icon {
  display: grid;
  place-items: center;
  font-size: 56px;
}

.course-text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.course-text p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.6;
}

.more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 5px 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
}

.more::after {
  content: "›";
  margin-left: 8px;
  font-size: 18px;
}

.course-pink { color: #e67aae; }
.course-orange { color: #d99b61; }
.course-blue { color: #5dbed0; }
.course-purple { color: #7780cf; }

/* ------------------------------
  Information
------------------------------ */
.news-list {
  max-width: 100%;
	height: 350px;
	overflow: scroll;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 4px 0;
  color: #23364d;
	margin-bottom: 1em;
}

.news-item time {
  color: #213a5b;
}

.news-item a:hover {
  text-decoration: underline;
}

/* ------------------------------
  Contact
------------------------------ */
.contact-area {
  padding: 46px 0 66px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.trial-box {
  min-height: 190px;
  padding: 34px 42px;
  background:
    linear-gradient(rgba(255,244,248,0.75), rgba(255,244,248,0.75)),
    url("../img/contact-bg.png") center/cover no-repeat;
  border-radius: 4px;
}

.trial-box p {
  margin: 0 0 22px;
  color: #444;
	font-size: 18px;
  font-weight: 700;
}

.trial-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
}

.trial-buttons .btn {
  min-width: 0;
  width: 220px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 14px;
  white-space: nowrap;
}
.school-info {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: center;
}

.school-name {
  margin: 0;
  color: #4daa59;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.school-en {
  margin: 0 0 16px;
  color: #77c18a;
  font-size: 11px;
  letter-spacing: 0.3em;
}

.school-info p {
  margin: 0;
}

.school-info strong {
  display: inline-block;
  margin: 8px 0 2px;
  font-size: 22px;
}

.school-info figure {
  margin: 0;
}

.school-info img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ------------------------------
  Footer
------------------------------ */
.site-footer {
  padding: 44px 0 42px;
  color: #fff;
  background: var(--footer-green);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  margin: 0 0 20px;
}

.footer-logo img {
  width: 300px;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.4));
}

.footer-info p {
  margin: 0 0 8px;
}

.copyright {
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 24px;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a::before {
  content: "▶";
  margin-right: 6px;
  font-size: 12px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ------------------------------
  Responsive
------------------------------ */
@media (max-width: 1100px) {
  .header-inner {
    align-items: center;
  }

  .site-logo {
    flex-basis: 240px;
  }

  .global-nav > ul {
    gap: 6px;
  }

  .global-nav > ul > li > a.nav-water {
    width: 76px;
    height: 76px;
    font-size: 11px;
  }

  .global-nav > ul > li > a.nav-water::before {
    inset: -3px;
  }

  .global-nav li ul {
    top: 78px;
  }

  .header-sns {
    display: none;
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 840px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    width: calc(100% - 28px);
    padding: 10px 0;
  }

  .site-logo {
    flex: 1;
  }

  .site-logo img {
    width: 230px;
  }

.nav-toggle {
  display: none;
}

@media (max-width: 840px) {
  .nav-toggle {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: var(--pink);
    border-radius: 50%;
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: 0.25s ease;
  }

  .nav-toggle span:nth-child(1) {
    top: 15px;
  }

  .nav-toggle span:nth-child(2) {
    top: 22px;
  }

  .nav-toggle span:nth-child(3) {
    top: 29px;
  }

  .nav-toggle.is-open span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
  }
}
  .global-nav {
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 66px);
  overflow-y: auto;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
}

  .global-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global-nav:not(.is-open) * {
  pointer-events: none;
}
  .global-nav > ul {
    display: block;
    padding: 18px 20px 26px;
  }

  .global-nav > ul > li {
    border-bottom: 1px solid #eee;
  }

.global-nav > ul > li > a.nav-water {
  display: block;
  width: auto;
  height: auto;
  padding: 14px 10px;
  border-radius: 0;
  text-align: left;
  background: transparent !important;
  box-shadow: none;
  font-size: 15px;
}

.global-nav > ul > li > a.nav-water::before {
  display: none;
}

.global-nav > ul > li > a.nav-water span {
  position: static;
}

  .global-nav li ul {
    position: static;
    min-width: 0;
    padding: 0 0 12px 18px;
    border: 0;
    box-shadow: none;
    background: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .global-nav li ul a {
    font-size: 14px;
  }

	
	
	
  .hero {
    height: 520px;
  }

  .hero-copy {
    padding: 34px 26px 28px;
  }

  .hero-main {
    letter-spacing: 0.05em;
  }

  .greeting-body {
    grid-template-columns: 1fr;
  }

  .greeting-image {
    order: -1;
  }

  .concept-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .concept-card {
    min-height: auto;
  }

  .school-info {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .inner {
    width: calc(100% - 28px);
  }

  .section {
    padding: 42px 0 24px;
  }

  .section-title {
    display: block;
    margin-bottom: 22px;
  }

  .section-title h2 {
    margin-bottom: 3px;
  }

  .section-title span {
    font-size: 15px;
  }

  .hero {
    height: 500px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    border-radius: 38px;
  }

  .hero-main {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

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

  .course-card {
    grid-template-columns: 76px 1fr;
  }

  .course-icon {
    font-size: 48px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px dotted #ddd;
  }

  .trial-box {
    padding: 28px 22px;
  }

  .trial-buttons {
    display: grid;
  }

  .footer-logo img {
    width: 250px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 8px;
  }
}

/* ------------------------------
  Sub Page Common
------------------------------ */
.sub-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 230, 238, 0.45), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(222, 244, 231, 0.55), transparent 30%),
    #fff;
}

/* ------------------------------
  Sub Page Hero 修正版
------------------------------ */
.sub-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 90px 20px 70px;
  text-align: center;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}

/* 白い楕円をタイトルの背面に配置 
.sub-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(760px, 88vw);
  height: 250px;
  background: rgba(255,255,255,0.72);
  border-radius: 52% 48% 53% 47% / 46% 50% 50% 54%;
  transform: translate(-50%, -50%);
  z-index: 1;
  backdrop-filter: blur(2px);
}*/

/* ------------------------------
  Sub Hero：白楕円から文字背面光彩へ変更
------------------------------ */

/* 白い楕円パネルを無効化 */
.sub-hero::after {
  display: none;
}

/* タイトル文字ブロック全体に白い光彩 */
/* タイトル文字ブロック全体 */
.sub-hero-inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: auto;
  max-width: min(920px, calc(100% - 40px));
  padding: 18px 26px 20px;
  color: #333;
  text-align: center;
  text-shadow: none;
}

/* 背面の白い光彩 */
.sub-hero-inner::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  z-index: -1;
  background: rgba(255,255,255,0.66);
  filter: blur(18px);
  border-radius: 999px;
}
/* 背面のぼかし光彩 */
.sub-hero-inner::before {
  content: "";
  position: absolute;
  inset: -22px -48px;
  z-index: -1;
  background: rgba(255,255,255,0.72);
  filter: blur(22px);
  border-radius: 50px;
}

/* 英字・タイトル・本文にも軽く白フチを足す */
.sub-hero-en,
.sub-hero h1,
.sub-hero p {
  position: relative;
  z-index: 1;
  text-shadow:
    0 0 8px rgba(255,255,255,0.95),
    0 0 16px rgba(255,255,255,0.9),
    0 0 28px rgba(255,255,255,0.75);
}

/* タイトルが長いページでも横幅を使えるように */
.sub-hero h1 {
  white-space: normal;
}


.sub-hero-inner {
  position: relative;
  z-index: 2;
  color: #222;
  text-shadow: none;
}

.sub-hero-en {
  margin: 0 0 8px;
  color: #333;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sub-hero h1 {
  margin: 0 0 16px;
  color: #b9548a;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.35;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.sub-hero p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.college-hero {
  background-image: url("../img/college-hero.jpg");
}

/* ------------------------------
  Anchor Navigation
------------------------------ */
.page-anchor {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: min(880px, calc(100% - 40px));
  margin: 24px auto 56px;
}
.page-anchor a {
  display: grid;
  place-items: center;
  min-width: 210px;
  min-height: 58px;
  padding: 12px 24px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.page-anchor a:nth-child(1) {
  background: #65c6dc;
}

.page-anchor a:nth-child(2) {
  background: #c896d8;
}

.page-anchor a:nth-child(3) {
  background: #f0c84c;
}

.page-anchor a:hover {
  transform: translateY(-3px);
  opacity: 0.86;
}

/* ------------------------------
  Sub Section
------------------------------ */
.sub-section {
  padding: 52px 0;
}

.sub-section + .sub-section {
  padding-top: 28px;
}

.sub-media-block {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 46px;
  align-items: center;
  margin-bottom: 42px;
}

.sub-text p {
  margin: 0 0 1.3em;
}

.sub-photo {
  margin: 0;
}

.sub-photo img,
.college-question figure img,
.wide-photo img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
}

.sub-photo img {
  aspect-ratio: 3 / 2;
}

.wide-photo {
  margin: 34px 0 0;
}

.wide-photo img {
  aspect-ratio: 16 / 7;
}

/* ------------------------------
  Course Features
------------------------------ */
.course-features {
  position: relative;
  padding-top: 42px;
  padding-bottom: 56px;
}

.feature-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 34px 28px 32px;
  text-align: center;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(220,220,220,0.75);
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.055);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.28;
  z-index: 0;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
}

.feature-blue::before,
.feature-blue::after {
  background: #7fd0df;
}

.feature-green::before,
.feature-green::after {
  background: #9bd684;
}

.feature-pink::before,
.feature-pink::after {
  background: #ec9ac0;
}

.feature-icon,
.feature-text {
  position: relative;
  z-index: 1;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin: 0 auto 45px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.8);
}

.feature-icon img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.feature-text h3 {
  margin: 0 0 14px;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.feature-blue .feature-text h3 {
  color: #43acc4;
}

.feature-green .feature-text h3 {
  color: #62ad55;
}

.feature-pink .feature-text h3 {
  color: #d86a9d;
}

.feature-text p {
  margin: 0;
  text-align: left;
  line-height: 1.9;
}

/* hover */
.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .feature-card-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 0;
    padding: 28px 26px;
    text-align: left;
  }

  .feature-icon {
    width: 120px;
    height: 120px;
    margin: 0;
  }

  .feature-icon img {
    width: 120px;
    height: 120px;
  }

  .feature-text h3 {
    font-size: 21px;
  }
}

@media (max-width: 560px) {
  .course-features {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .feature-card {
    display: block;
    padding: 28px 22px;
    text-align: center;
    border-radius: 22px;
  }

  .feature-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 18px;
  }

  .feature-text h3 {
    font-size: 20px;
  }

  .feature-text p {
    text-align: left;
  }
}

/* ------------------------------
  College Question
------------------------------ */
.college-question-list {
  display: grid;
  gap: 36px;
  margin-top: 36px;
}

.college-question {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 42px;
  align-items: center;
  padding: 0 0 34px;
  border-bottom: 1px dashed #dfe8d9;
}

.college-question:last-child {
  border-bottom: 0;
}

.college-question h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 24px;
  color: #5aa95b;
  font-size: 22px;
  line-height: 1.45;
}

.college-question h3::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 12px;
  height: 12px;
  background: #8ccc77;
  border-radius: 3px;
  transform: rotate(8deg);
}

.college-question p {
  margin: 0 0 1em;
}

.college-question figure {
  margin: 0;
}

.college-question figure img {
  aspect-ratio: 3 / 2;
}

/* ------------------------------
  Fee Table
------------------------------ */
.fee-section {
  background: linear-gradient(180deg, rgba(246,255,246,0.65), rgba(255,255,255,0));
}

.fee-table-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.fee-table th,
.fee-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #edf1e8;
  vertical-align: middle;
	font-size: 110%;
}

.fee-table tr:last-child th,
.fee-table tr:last-child td {
  border-bottom: 0;
}

.fee-table th {
  width: 32%;
  color: #5aa95b;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  text-align: left;
  background: #f6fbf3;
}

.fee-table td {
  color: #333;
}

/* ------------------------------
  Results
------------------------------ */
.results-lead {
  margin: -10px 0 30px;
}

.result-years {
  display: grid;
  gap: 32px;
}

.result-year > h3 {
  position: relative;
  margin: 0 0 14px;
  padding: 12px 22px 12px 54px;
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  background:
    linear-gradient(90deg, rgba(102,184,80,0.96), rgba(145,207,87,0.88)),
    url("../img/watercolor-green-line.png") center/cover no-repeat;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(95,160,60,0.16);
}

.result-year > h3::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 17px;
  height: 17px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  transform: translateY(-50%);
}

.result-year details {
  border-radius: 14px;
  background: #f4fbff;
  border: 1px solid #dceff9;
  overflow: hidden;
}

.result-year summary {
  padding: 14px 22px;
  color: #4a95b7;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  list-style: none;
}

.result-year summary::-webkit-details-marker {
  display: none;
}

.result-year summary::before {
  content: "▼";
  margin-right: 8px;
  font-size: 12px;
}

.result-year details[open] summary::before {
  content: "▲";
}

.voice-card {
  margin: 0 22px 24px;
  padding: 26px 28px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.04);
}

.voice-card h4 {
  position: relative;
  margin: 0 0 18px;
  padding-left: 22px;
  color: #4f9f55;
  font-size: 18px;
  line-height: 1.5;
}

.voice-card h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  background: #8ccc77;
  border-radius: 3px;
}

.voice-card p {
  margin: 0 0 1.2em;
}

.voice-card p:last-child {
  margin-bottom: 0;
}

.voice-card strong {
  color: #4f9f55;
  font-weight: 700;
}
.voice-photo {
  margin: 0 0 18px;
}

.voice-photo img {
  width: min(320px, 100%);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	float: right;
	margin: 0 20px;
}

.voice-sign {
  margin-top: 1em;
  text-align: right;
  color: #666;
  font-size: 0.95em;
}

/* ------------------------------
  Responsive
------------------------------ */
@media (max-width: 900px) {
  .sub-hero {
    min-height: 360px;
    padding-top: 100px;
  }

  .page-anchor {
    flex-direction: column;
    gap: 12px;
    margin-top: -28px;
  }

  .page-anchor a {
    min-width: 0;
    width: 100%;
  }

  .sub-media-block,
  .college-question {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sub-photo {
    order: -1;
  }

  .college-question figure {
    order: -1;
  }

  .college-question figure img,
  .sub-photo img {
    max-height: 320px;
  }
}

@media (max-width: 560px) {
  .sub-hero {
    min-height: 360px;
    padding: 78px 18px 58px;
  }

  .sub-hero::after {
    width: calc(100% - 28px);
    height: 230px;
    border-radius: 36px;
  }

  .sub-hero h1 {
    font-size: 29px;
  }

  .sub-hero p {
    font-size: 14px;
    line-height: 1.8;
  }
  .sub-section {
    padding: 38px 0;
  }

  .college-question h3 {
    font-size: 19px;
  }

  .fee-table,
  .fee-table tbody,
  .fee-table tr,
  .fee-table th,
  .fee-table td {
    display: block;
    width: 100%;
  }

  .fee-table th {
    padding: 14px 18px 8px;
  }

  .fee-table td {
    padding: 8px 18px 18px;
  }

  .voice-card {
    margin: 0 12px 18px;
    padding: 20px 18px;
  }

  .voice-card h4 {
    font-size: 16px;
  }
.voice-photo img {
	float: none;
	width: 100%;
}

}

/* ------------------------------
  About Page
------------------------------ */
.about-hero {
  background-image: url("../img/about-hero.jpg");
  background-position: center center;
}

.overview-section {
  padding-top: 52px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 42px;
}

.overview-info {
  padding: 10px;
  background: rgba(255,255,255,0.74);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}

.overview-table th,
.overview-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #edf1e8;
  vertical-align: middle;
}

.overview-table tr:last-child th,
.overview-table tr:last-child td {
  border-bottom: 0;
}

.overview-table th {
  width: 30%;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  text-align: center;
  background: #75bd72;
}

.overview-table td {
  color: #333;
}

.overview-table a {
  color: #4a95b7;
  text-decoration: underline;
}

.overview-main-photo {
  margin: 0;
}

.overview-main-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Gallery */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  display: block;
  padding: 6px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* Access */
.access-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,230,238,0.55), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(222,244,231,0.65), transparent 32%);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
}

.access-map {
  min-height: 430px;
  padding: 8px;
  background: #fff;
  border: 1px solid #f1dce5;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.05);
  overflow: hidden;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: 12px;
}

.access-info-card {
  display: grid;
  gap: 22px;
  padding: 34px 38px;
  background: rgba(255,255,255,0.82);
  border: 1px solid #f1d3df;
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.045);
}

.access-info-item {
  position: relative;
  padding-left: 42px;
}

.access-info-item::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  background: #e887a9;
  border-radius: 50%;
}

.access-info-item:nth-child(1)::before {
  content: "〒";
}

.access-info-item:nth-child(2)::before {
  content: "🚙";
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.access-info-item:nth-child(3)::before {
  content: "🚌";
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.access-info-item h3 {
  margin: 0 0 8px;
  color: #d86a9d;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.access-info-item p {
  margin: 0;
  line-height: 1.9;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  place-items: center;
  padding: 40px 20px;
  background: rgba(0,0,0,0.72);
}

.lightbox-modal.is-open {
  display: grid;
}

.lightbox-modal-inner {
  width: min(960px, 100%);
}

.lightbox-modal-inner img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 12px 38px rgba(0,0,0,0.35);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 5001;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  background: #e887a9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.06);
  opacity: 0.86;
}

.sp-only {
  display: none;
}

@media (max-width: 900px) {
  .overview-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .overview-main-photo {
    order: -1;
  }

  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-map,
  .access-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .overview-table,
  .overview-table tbody,
  .overview-table tr,
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100%;
  }

  .overview-table th {
    padding: 13px 18px 8px;
    text-align: left;
  }

  .overview-table td {
    padding: 8px 18px 18px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .access-info-card {
    padding: 28px 22px;
  }

  .access-info-item {
    padding-left: 38px;
  }

  .access-info-item h3 {
    font-size: 18px;
  }

  .lightbox-modal {
    padding: 30px 14px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .sp-only {
    display: inline;
  }
}

/* ------------------------------
  Teachers
------------------------------ */
.teachers-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,230,238,0.5), transparent 28%),
    radial-gradient(circle at 94% 8%, rgba(222,244,231,0.65), transparent 30%);
}

/* 代表カード */
.teacher-main-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  padding: 34px;
  margin-bottom: 42px;
  background: rgba(255,255,255,0.88);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.055);
}

.teacher-main-photo {
  margin: 0;
}

.teacher-main-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.teacher-main-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
}

.teacher-position {
  margin: 0;
  color: #555;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.teacher-main-heading h3 {
  margin: 0;
  color: #333;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.teacher-lead {
  margin: 0 0 28px;
  line-height: 2;
}

.teacher-history h4 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 20px;
  color: #b9548a;
  font-size: 22px;
  line-height: 1.4;
}

.teacher-history h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  background: #8ccc77;
  border-radius: 3px;
  transform: rotate(8deg);
}

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

.teacher-history th,
.teacher-history td {
  padding: 14px 16px;
  border-top: 1px solid #e7e7e7;
  vertical-align: top;
}

.teacher-history tr:last-child th,
.teacher-history tr:last-child td {
  border-bottom: 1px solid #e7e7e7;
}

.teacher-history th {
  width: 150px;
  color: #4f9f55;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

/* 講師カード一覧 */
.teacher-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.teacher-card {
  position: relative;
  padding: 24px 22px 26px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
  overflow: hidden;
}

.teacher-card::before {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 130px;
  height: 130px;
  background: rgba(232,135,169,0.16);
  border-radius: 50%;
}

.teacher-card:nth-child(3n+2)::before {
  background: rgba(127,208,223,0.18);
}

.teacher-card:nth-child(3n)::before {
  background: rgba(155,214,132,0.2);
}

.teacher-card-head,
.teacher-card p,
.teacher-card h4,
.teacher-license {
  position: relative;
  z-index: 1;
}

.teacher-card-head {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.teacher-card-head figure {
  margin: 0;
}

.teacher-card-head img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.teacher-role {
  margin: 0 0 4px;
  color: #555;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.teacher-card h3 {
  margin: 0;
  color: #333;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.teacher-license {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
}

.teacher-card h4 {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 14px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  background: #67c99d;
  border-radius: 999px;
}

.teacher-card p {
  margin: 0;
  line-height: 1.75;
}

/* hover */
.teacher-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teacher-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.075);
}

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

  .teacher-main-card {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 760px) {
  .teacher-main-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .teacher-main-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .teacher-main-heading {
    justify-content: center;
    text-align: center;
  }

  .teacher-history th,
  .teacher-history td {
    display: block;
    width: 100%;
  }

  .teacher-history th {
    padding-bottom: 4px;
    border-top: 1px solid #e7e7e7;
  }

  .teacher-history td {
    padding-top: 0;
    border-top: 0;
  }

  .teacher-history tr:last-child th,
  .teacher-history tr:last-child td {
    border-bottom: 0;
  }

  .teacher-history tr:last-child td {
    border-bottom: 1px solid #e7e7e7;
  }
}

@media (max-width: 560px) {
  .teacher-card-grid {
    grid-template-columns: 1fr;
  }

  .teacher-main-heading {
    display: block;
  }

  .teacher-position {
    margin-bottom: 4px;
  }

  .teacher-lead {
    font-size: 15px;
  }

  .teacher-card {
    padding: 22px 20px 24px;
  }

  .teacher-card h3 {
    font-size: 22px;
  }
}


/* ------------------------------
  Painting Page
------------------------------ */
.painting-hero {
  background-image: url("../img/painting-hero.jpg");
  background-position: center center;
}

.painting-course-nav a:nth-child(1) {
  background: #e888b5;
}

.painting-course-nav a:nth-child(2) {
  background: #7fc6dc;
}

.painting-course-nav a:nth-child(3) {
  background: #8ccc77;
}

/* Intro */
.painting-lead-block {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 46px;
  align-items: center;
}

.painting-catch {
  margin: 0 0 24px;
  color: #d86a9d;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.painting-lead-text p {
  margin: 0 0 1.3em;
}

.painting-lead-photo {
  margin: 0;
}

.painting-lead-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Features */
.painting-features-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(255,230,238,0.46), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(222,244,231,0.58), transparent 30%);
}

.painting-feature-list {
  display: grid;
  gap: 26px;
}

.painting-feature-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 34px;
  background: rgba(255,255,255,0.88);
  border: 1px solid #e8e2e5;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.painting-feature-card figure {
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  margin: 0;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.9);
}

.painting-feature-card img {
  width: 142px;
  height: 142px;
  object-fit: contain;
}

.painting-feature-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 24px;
  color: #2f9a82;
  font-size: 24px;
  line-height: 1.45;
}

.painting-feature-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  background: #2f9a82;
  border-radius: 3px;
  transform: rotate(8deg);
}

.painting-feature-card p {
  margin: 0;
  line-height: 1.9;
}

/* Message */
.painting-message-card {
  position: relative;
  padding: 42px 48px;
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    radial-gradient(circle at 15% 20%, rgba(232,135,169,0.18), transparent 30%),
    radial-gradient(circle at 85% 24%, rgba(127,208,223,0.18), transparent 30%);
  border: 1px solid #f1d3df;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.055);
}

.painting-message-card h2 {
  margin: 0 0 22px;
  color: #d86a9d;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.painting-message-card p {
  margin: 0 0 1.2em;
}

.painting-quote-list {
  margin: 22px 0;
  padding: 24px 28px;
  background: rgba(255,244,248,0.9);
  border-left: 5px solid #e888b5;
  border-radius: 18px;
}

.painting-quote-list p {
  margin: 0 0 6px;
  color: #555;
  font-size: 20px;
  line-height: 1.7;
}

.painting-quote-list p:last-child {
  margin-bottom: 0;
}

/* Skills */
.painting-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.painting-skill-box,
.painting-recommend-box {
  padding: 36px 38px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.painting-skill-box h2,
.painting-recommend-box h2 {
  margin: 0 0 20px;
  color: #d86a9d;
  font-size: 26px;
  line-height: 1.4;
}

.painting-skill-box ul,
.painting-recommend-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.painting-skill-box li,
.painting-recommend-box li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
  line-height: 1.65;
}

.painting-skill-box li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 14px;
  height: 14px;
  background: #8ccc77;
  border-radius: 4px;
  transform: rotate(8deg);
}

.painting-recommend-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -0.05em;
  color: #5f8fa0;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 25px;
  font-weight: 700;
}

/* Course Links */
.painting-course-section {
  background: linear-gradient(180deg, rgba(246,255,246,0.65), rgba(255,255,255,0));
}

.painting-course-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.painting-course-card {
  position: relative;
  display: block;
  min-height: 250px;
  padding: 34px 30px 32px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.painting-course-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  opacity: 0.22;
}

.course-kids::before {
  background: #e888b5;
}

.course-junior::before {
  background: #7fc6dc;
}

.course-support::before {
  background: #8ccc77;
}

.painting-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.075);
}

.course-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 18px;
  color: #888;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.painting-course-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #333;
  font-size: 25px;
  line-height: 1.45;
}

.painting-course-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  line-height: 1.8;
}

.course-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 7px 18px;
  color: #d86a9d;
  border: 2px solid #f2b8cf;
  border-radius: 999px;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.course-more::after {
  content: "›";
  margin-left: 9px;
  font-size: 19px;
  line-height: 1;
}

@media (max-width: 900px) {
  .painting-lead-block {
    grid-template-columns: 1fr;
  }

  .painting-lead-photo {
    order: -1;
  }

  .painting-feature-card {
    grid-template-columns: 120px 1fr;
    gap: 22px;
    padding: 26px 24px;
  }

  .painting-feature-card figure {
    width: 130px;
    height: 130px;
  }

  .painting-feature-card img {
    width: 106px;
    height: 106px;
  }

  .painting-two-column {
    grid-template-columns: 1fr;
  }

  .painting-course-card-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .painting-catch {
    font-size: 28px;
  }

  .painting-feature-card {
    display: block;
    padding: 28px 22px;
  }

  .painting-feature-card figure {
    width: 122px;
    height: 122px;
    margin: 0 auto 20px;
  }

  .painting-feature-card h3 {
    font-size: 20px;
  }

  .painting-message-card {
    padding: 30px 22px;
  }

  .painting-quote-list {
    padding: 20px;
  }

  .painting-quote-list p {
    font-size: 17px;
  }

  .painting-skill-box,
  .painting-recommend-box {
    padding: 30px 22px;
  }

  .painting-skill-box h2,
  .painting-recommend-box h2 {
    font-size: 23px;
  }

  .painting-course-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .painting-course-card h3 {
    font-size: 22px;
  }
}

/* ------------------------------
  Kids Course Page
------------------------------ */
.kids-hero {
  background-image: url("../img/kids-hero.jpg");
  background-position: center center;
}

.kids-course-nav a:nth-child(1) {
  background: #e888b5;
}

.kids-course-nav a:nth-child(2) {
  background: #7fc6dc;
}

.kids-course-nav a:nth-child(3) {
  background: #8ccc77;
}

.kids-course-nav a:nth-child(4) {
  background: #e7b06d;
}

/* Intro */
.kids-course-lead {
  padding: 42px 48px;
  background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    radial-gradient(circle at 12% 18%, rgba(232,135,169,0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(127,208,223,0.16), transparent 28%);
  border: 1px solid #f1d3df;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.045);
}

.kids-course-target {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 18px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  background: #e888b5;
  border-radius: 999px;
}

.kids-course-lead h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 24px;
  color: #2f9a82;
  font-size: 26px;
  line-height: 1.45;
}

.kids-course-lead h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  background: #8ccc77;
  border-radius: 3px;
  transform: rotate(8deg);
}

.kids-course-lead p {
  margin: 0;
  line-height: 2;
}

/* Fee */
.kids-fee-section {
  background: linear-gradient(180deg, rgba(255,250,239,0.75), rgba(255,255,255,0));
}

.kids-fee-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.kids-fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.kids-fee-table th,
.kids-fee-table td {
  padding: 24px 28px;
  border: 2px solid #f3dfbc;
  vertical-align: middle;
}

.kids-fee-table th {
  width: 32%;
  color: #7a5a25;
  text-align: center;
  font-size: 20px;
  background: #fff0cf;
}

.kids-fee-table td {
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
}

.kids-fee-table strong {
  font-size: 28px;
  font-weight: 500;
}

/* Schedule */
.kids-schedule-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(222,244,231,0.55), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(255,230,238,0.48), transparent 28%);
}

.kids-lesson-note {
  margin: -8px 0 28px;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}

.kids-schedule-block {
  margin-bottom: 42px;
}

.kids-schedule-block:last-child {
  margin-bottom: 0;
}

.kids-schedule-block h3 {
  margin: 0 0 16px;
  color: #2f9a82;
  font-size: 24px;
  line-height: 1.45;
}

.kids-table-scroll {
  overflow-x: auto;
  padding: 8px;
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.035);
}

.kids-schedule-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.kids-schedule-table th,
.kids-schedule-table td {
  padding: 22px 24px;
  border: 2px solid #e8efd9;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.65;
}

.kids-schedule-table .course-name {
  width: 190px;
  color: #333;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 500;
}

.kids-schedule-table .course-name small {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.kids-schedule-table.weekday .course-name {
  background: #eaf4dd;
}

.kids-schedule-table.saturday .course-name {
  background: #d8f0f8;
}

.kids-schedule-table.sunday .course-name {
  background: #f8d5dd;
}

/* Calendar */
.kids-calendar-section {
  background: #fff;
}

.kids-calendar-wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 10px;
  background: rgba(255,255,255,0.84);
  border: 1px solid #e8e2e5;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.kids-calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  border-radius: 12px;
}

/* Gallery */
.kids-gallery-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(255,230,238,0.46), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(222,244,231,0.58), transparent 30%);
}

.kids-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.kids-gallery-item {
  display: block;
  padding: 6px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kids-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.kids-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 1000px) {
  .kids-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kids-calendar-wrap iframe {
    height: 560px;
  }
}

@media (max-width: 760px) {
  .kids-course-lead {
    padding: 32px 28px;
  }

  .kids-fee-table,
  .kids-fee-table tbody,
  .kids-fee-table tr,
  .kids-fee-table th,
  .kids-fee-table td {
    display: block;
    width: 100%;
  }

  .kids-fee-table th {
    padding: 14px 18px 8px;
  }

  .kids-fee-table td {
    padding: 8px 18px 22px;
  }

  .kids-fee-table strong {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .kids-course-lead {
    padding: 28px 22px;
  }

  .kids-course-lead h3 {
    font-size: 22px;
  }

  .kids-lesson-note {
    font-size: 16px;
  }

  .kids-schedule-block h3 {
    font-size: 21px;
  }

  .kids-schedule-table th,
  .kids-schedule-table td {
    padding: 16px 18px;
    font-size: 16px;
  }

  .kids-schedule-table .course-name {
    width: 150px;
    font-size: 20px;
  }

  .kids-calendar-wrap iframe {
    height: 460px;
  }

  .kids-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ------------------------------
  Junior Course Page
------------------------------ */
.junior-hero {
  background-image: url("../img/junior-hero.jpg");
  background-position: center center;
}

.junior-course-nav a:nth-child(1) {
  background: #7fc6dc;
}

.junior-course-nav a:nth-child(2) {
  background: #c896d8;
}

.junior-course-nav a:nth-child(3) {
  background: #8ccc77;
}

.junior-course-nav a:nth-child(4) {
  background: #e7b06d;
}

/* Intro */
.junior-course-lead {
  padding: 42px 48px;
  background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    radial-gradient(circle at 12% 18%, rgba(127,198,220,0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(200,150,216,0.14), transparent 28%);
  border: 1px solid #d6edf4;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.045);
}

.junior-course-catch {
  margin: 0 0 20px;
  color: #2f9a82;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.junior-course-lead p {
  margin: 0 0 1.4em;
  line-height: 2;
}

.junior-course-lead p:last-child {
  margin-bottom: 0;
}

.junior-recommend {
  margin: 26px 0;
  padding: 28px 32px;
  background: rgba(244,251,255,0.92);
  border-left: 5px solid #7fc6dc;
  border-radius: 18px;
}

.junior-recommend p {
  margin: 0 0 10px;
}

.junior-recommend ul {
  margin: 0 0 10px;
  padding-left: 1.4em;
}

.junior-recommend li {
  margin-bottom: 6px;
  line-height: 1.7;
}

/* Lesson Content */
.junior-content-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(222,244,231,0.5), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(255,230,238,0.38), transparent 30%);
}

.junior-content-card {
  padding: 34px 40px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.junior-content-card p {
  margin: 0;
  font-size: 18px;
  line-height: 2;
}

/* Fee */
.junior-fee-section {
  background: linear-gradient(180deg, rgba(255,250,239,0.75), rgba(255,255,255,0));
}

.junior-fee-table td {
  font-size: 19px;
}

.junior-fee-table strong {
  font-size: 27px;
}

/* Schedule */
.junior-schedule-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(222,244,231,0.55), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(230,242,250,0.55), transparent 28%);
}

.junior-table-scroll {
  max-width: 900px;
  margin: 0 auto;
}

.junior-schedule-table {
  min-width: 680px;
}

.junior-schedule-table th,
.junior-schedule-table td {
  padding: 24px 28px;
  font-size: 20px;
}

.junior-schedule-table th {
  width: 34%;
  color: #333;
  background: #d8f0f8;
  font-weight: 500;
}

.junior-lesson-note {
  max-width: 900px;
  margin: 18px auto 0;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

/* Calendar */
.junior-calendar-section {
  background: #fff;
}

/* Gallery */
.junior-gallery-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(230,242,250,0.55), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(222,244,231,0.58), transparent 30%);
}

@media (max-width: 760px) {
  .junior-course-lead {
    padding: 32px 28px;
  }

  .junior-recommend {
    padding: 24px 24px;
  }

  .junior-content-card {
    padding: 28px 26px;
  }

  .junior-content-card p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .junior-course-lead {
    padding: 28px 22px;
  }

  .junior-course-catch {
    font-size: 26px;
  }

  .junior-recommend {
    padding: 22px 20px;
  }

  .junior-schedule-table th,
  .junior-schedule-table td {
    padding: 18px 20px;
    font-size: 17px;
  }

  .junior-lesson-note {
    font-size: 15px;
  }
}

/* ------------------------------
  Support Course Page
------------------------------ */
.support-hero {
  background-image: url("../img/support-hero.jpg");
  background-position: center center;
}

.support-course-nav a:nth-child(1) {
  background: #8ccc77;
}

.support-course-nav a:nth-child(2) {
  background: #e888b5;
}

.support-course-nav a:nth-child(3) {
  background: #c896d8;
}

.support-course-nav a:nth-child(4) {
  background: #7fc6dc;
}

/* Intro */
.support-lead-card {
  padding: 42px 48px;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    radial-gradient(circle at 12% 18%, rgba(140,204,119,0.2), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(232,135,169,0.15), transparent 28%);
  border: 1px solid #dbeed5;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.045);
}

.support-catch {
  margin: 0 0 24px;
  color: #2f9a82;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.support-lead-card p {
  margin: 0 0 1.4em;
  line-height: 2;
}

.support-lead-card p:last-child {
  margin-bottom: 0;
}

/* Points */
.support-points-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(222,244,231,0.55), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(255,230,238,0.42), transparent 30%);
}

.support-point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.support-point-card {
  position: relative;
  min-height: 250px;
  padding: 34px 30px 32px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
  overflow: hidden;
}

.support-point-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: rgba(140,204,119,0.22);
  border-radius: 50%;
}

.support-point-card:nth-child(2)::before {
  background: rgba(232,135,169,0.18);
}

.support-point-card:nth-child(3)::before {
  background: rgba(127,198,220,0.2);
}

.support-point-card h3,
.support-point-card p {
  position: relative;
  z-index: 1;
}

.support-point-card h3 {
  margin: 0 0 16px;
  color: #2f9a82;
  font-size: 23px;
  line-height: 1.45;
}

.support-point-card p {
  margin: 0;
  line-height: 1.9;
}

/* Message */
.support-message-section {
  background: #fff;
}

.support-message-card {
  padding: 42px 48px;
  background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    radial-gradient(circle at 15% 20%, rgba(232,135,169,0.18), transparent 30%),
    radial-gradient(circle at 85% 24%, rgba(127,208,223,0.16), transparent 30%);
  border: 1px solid #f1d3df;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.055);
}

.support-message-card h2 {
  margin: 0 0 22px;
  color: #d86a9d;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.support-message-card p {
  margin: 0 0 1.3em;
  line-height: 2;
}

.support-message-card p:last-child {
  margin-bottom: 0;
}

/* Fee */
.support-fee-section {
  background: linear-gradient(180deg, rgba(255,250,239,0.75), rgba(255,255,255,0));
}

/* Schedule */
.support-schedule-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(222,244,231,0.55), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(230,242,250,0.55), transparent 28%);
}

.support-table-scroll {
  max-width: 900px;
  margin: 0 auto;
}

.support-schedule-table {
  min-width: 620px;
}

.support-schedule-table th,
.support-schedule-table td {
  padding: 28px 32px;
  font-size: 21px;
}

.support-schedule-table th {
  width: 46%;
  color: #333;
  background: #d8f0f8;
  font-weight: 500;
}

@media (max-width: 900px) {
  .support-point-grid {
    grid-template-columns: 1fr;
  }

  .support-point-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .support-lead-card,
  .support-message-card {
    padding: 32px 28px;
  }
}

@media (max-width: 560px) {
  .support-lead-card,
  .support-message-card {
    padding: 28px 22px;
  }

  .support-catch {
    font-size: 25px;
  }

  .support-point-card {
    padding: 30px 24px;
  }

  .support-point-card h3 {
    font-size: 21px;
  }

  .support-schedule-table th,
  .support-schedule-table td {
    padding: 18px 20px;
    font-size: 17px;
  }
}

/* ------------------------------
  Lesson Schedule Card Layout
------------------------------ */
.lesson-schedule-group {
  margin-bottom: 54px;
}

.lesson-schedule-group:last-child {
  margin-bottom: 0;
}

.lesson-schedule-group h3 {
  position: relative;
  margin: 0 0 8px;
  padding-left: 24px;
  color: #2f9a82;
  font-size: 28px;
  line-height: 1.45;
}

.lesson-schedule-group h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 13px;
  height: 13px;
  background: #2f9a82;
  border-radius: 3px;
  transform: rotate(8deg);
}

.lesson-note {
  margin: 0 0 22px;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}

.lesson-card-grid {
  display: grid;
  gap: 28px;
}

.lesson-card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.lesson-time-card {
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  border: 3px solid #acd9c7;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.lesson-time-card h4 {
  margin: 0;
  padding: 22px 20px;
  color: #222;
  font-size: 24px;
  line-height: 1.45;
  text-align: center;
  font-weight: 700;
  background: #eaf4dd;
  border-bottom: 3px solid #acd9c7;
}

.lesson-time-card p {
  margin: 0;
  padding: 26px 20px;
  color: #222;
  font-size: 27px;
  line-height: 1.55;
  text-align: center;
}

.lesson-time-card p span {
  font-size: 22px;
}

.lesson-time-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lesson-time-card li {
  padding: 22px 20px;
  color: #222;
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
  border-bottom: 3px solid #e7efdf;
}

.lesson-time-card li:last-child {
  border-bottom: 0;
}

.lesson-time-card li span {
  display: block;
  margin-top: 3px;
  font-size: 20px;
}

/* 色分け */
.lesson-time-card.weekday h4 {
  background: #eaf4dd;
}

.lesson-time-card.saturday h4,
.lesson-time-card.junior h4 {
  background: #d8f0f8;
}

.lesson-time-card.sunday h4 {
  background: #f8d5dd;
}

/* 中高生用 */
.junior-lesson-group {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.lesson-time-card.junior {
  border-color: #b9dbe7;
}

.lesson-time-card.junior h4 {
  border-bottom-color: #b9dbe7;
}

@media (max-width: 760px) {
  .lesson-card-grid-2 {
    grid-template-columns: 1fr;
  }

  .lesson-schedule-group {
    margin-bottom: 42px;
  }

  .lesson-schedule-group h3 {
    font-size: 24px;
  }

  .lesson-note {
    font-size: 16px;
  }

  .lesson-time-card h4 {
    padding: 18px 16px;
    font-size: 21px;
  }

  .lesson-time-card p {
    padding: 22px 16px;
    font-size: 23px;
  }

  .lesson-time-card p span {
    font-size: 18px;
  }

  .lesson-time-card li {
    padding: 18px 16px;
    font-size: 22px;
  }

  .lesson-time-card li span {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .lesson-schedule-group h3 {
    font-size: 22px;
  }

  .lesson-time-card {
    border-width: 2px;
  }

  .lesson-time-card h4 {
    border-bottom-width: 2px;
  }

  .lesson-time-card li {
    border-bottom-width: 2px;
  }

  .lesson-time-card p {
    font-size: 21px;
  }

  .lesson-time-card li {
    font-size: 20px;
  }
}

/*障がい児コース　レッスン時間カードの幅調整
------------------------------------------------------------------*/
.lesson-card-grid-1 {
  grid-template-columns: 1fr;
}

.support-lesson-group {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.lesson-time-card.support {
  border-color: #acd9c7;
}

.lesson-time-card.support h4 {
  background: #d8f0f8;
  border-bottom-color: #acd9c7;
}

/* ------------------------------
  Admission Page
------------------------------ */
.admission-hero {
  background-image: url("../img/admission-hero.jpg");
  background-position: center center;
}

.admission-anchor {
  width: min(1040px, calc(100% - 40px));
}

.admission-anchor a {
  min-width: 190px;
}

.admission-anchor a:nth-child(1) {
  background: #e7b06d;
}

.admission-anchor a:nth-child(2) {
  background: #e888b5;
}

.admission-anchor a:nth-child(3) {
  background: #8ccc77;
}

.admission-anchor a:nth-child(4) {
  background: #65c6dc;
}
/* Intro */
.admission-intro-section {
  padding-bottom: 32px;
}

.admission-lead-card {
  padding: 40px 46px;
  background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    radial-gradient(circle at 12% 18%, rgba(232,135,169,0.18), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(127,208,223,0.16), transparent 28%);
  border: 1px solid #f1d3df;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.045);
}

.admission-catch {
  margin: 0 0 18px;
  color: #d86a9d;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.admission-lead-card p {
  margin: 0 0 1.2em;
  line-height: 2;
}

.admission-lead-card p:last-child {
  margin-bottom: 0;
}

/* Course Cards */
.admission-course-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(255,230,238,0.44), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(222,244,231,0.56), transparent 30%);
}

.admission-course-card {
  position: relative;
  margin-bottom: 58px;
  padding: 0 0 34px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.admission-course-card:last-child {
  margin-bottom: 0;
}

.admission-course-heading {
  padding: 14px 26px;
  border-radius: 22px 22px 0 0;
}

.admission-course-heading h2 {
  margin: 0;
  color: #FFF;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 700;
}

.course-college .admission-course-heading {
  background: #e7b06d;
}

.course-painting .admission-course-heading {
  background: #e888b5;
}

.course-3dcg .admission-course-heading {
  background: #8ccc77;
}

.course-digital .admission-course-heading {
  background: #65c6dc;
}

.admission-course-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: center;
  padding: 28px 34px 24px;
}

.admission-course-text p {
  margin: 0 0 1.2em;
  line-height: 1.9;
}

.admission-detail-link {
  margin-top: 12px;
}

.admission-detail-link a {
  color: #1d70aa;
  font-weight: 700;
  text-decoration: none;
}

.admission-detail-link a::after {
  content: " >>>";
  letter-spacing: 0.08em;
}

.admission-detail-link a:hover {
  text-decoration: underline;
}

.admission-course-photo {
  margin: 0;
}

.admission-course-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.admission-illust-photo img {
  object-fit: contain;
  background: #fff;
  box-shadow: none;
}

/* Contact Button */
.admission-contact-btn {
  margin: 4px auto 0;
  padding: 0 34px;
  text-align: center;
}

.admission-contact-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(760px, 100%);
  padding: 12px 30px;
  color: #333;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 999px;
  transition: 0.2s ease;
}

.course-college .admission-contact-btn a {
  background: #fff0bd;
}

.course-painting .admission-contact-btn a {
  background: #fff8b8;
}

.course-3dcg .admission-contact-btn a {
  background: #e7f2a8;
}

.course-digital .admission-contact-btn a {
  background: #b9e0cc;
}

.admission-contact-btn a::after {
  content: "›";
  margin-left: 12px;
  font-size: 22px;
  line-height: 1;
}

.admission-contact-btn a:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

@media (max-width: 900px) {
  .admission-course-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .admission-course-photo {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .admission-course-heading h2 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .admission-lead-card {
    padding: 30px 22px;
  }

  .admission-catch {
    font-size: 24px;
  }

  .admission-course-card {
    margin-bottom: 42px;
    border-radius: 20px;
  }

  .admission-course-heading {
    padding: 13px 20px;
  }

  .admission-course-heading h2 {
    font-size: 22px;
  }

  .admission-course-body {
    padding: 24px 22px 20px;
  }

  .admission-contact-btn {
    padding: 0 22px;
  }

  .admission-contact-btn a {
    width: 100%;
    min-width: 0;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ------------------------------
  Contact Page
------------------------------ */
.contact-hero {
  background-image: url("../img/contact-hero.jpg");
  background-position: center center;
}

.contact-form-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(255,230,238,0.46), transparent 28%),
    radial-gradient(circle at 94% 14%, rgba(222,244,231,0.58), transparent 30%);
}

.contact-lead-card {
  margin-bottom: 34px;
  padding: 30px 36px;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    radial-gradient(circle at 12% 18%, rgba(232,135,169,0.16), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(127,208,223,0.14), transparent 28%);
  border: 1px solid #f1d3df;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.contact-lead-card p {
  margin: 0 0 1em;
  line-height: 1.9;
}

.contact-lead-card p:last-child {
  margin-bottom: 0;
}

.contact-required-note {
  color: #d86a9d;
  font-weight: 700;
}

.contact-required-note span {
  color: #d86a9d;
}

/* Form */
.contact-form {
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.055);
}

.form-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  border-bottom: 1px solid #edf1e8;
}

.form-row:last-of-type {
  border-bottom: 0;
}

.form-row > label,
.form-row > .form-field {
  padding: 22px 26px;
}

.form-row > label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34524a;
  background: #d9f0d2;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  text-align: center;
}

.form-row:nth-child(even) > label {
  color: #34524a;
  background: #d6f0ec;
}

.form-row > label span {
  margin-left: 2px;
  color: #d86a9d;
}

.form-field {
  background: #fff;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: min(460px, 100%);
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid #cfd8cf;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
}

.form-field select {
  width: min(520px, 100%);
}

.form-field textarea {
  width: 100%;
  min-height: 220px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(232,135,169,0.35);
  border-color: #e887a9;
}

.form-note {
  margin: 8px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.checkbox-list {
  display: grid;
  gap: 10px;
}

.checkbox-list label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-list input {
  width: 18px;
  height: 18px;
  accent-color: #75bd72;
}

.form-row-message .form-field {
  padding-top: 20px;
}

/* Submit */
.form-submit {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 34px 20px 38px;
  background: #fff;
}

.form-btn {
  min-width: 150px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn {
  color: #fff;
  background: #e887a9;
}

.reset-btn {
  color: #555;
  background: #eef4ea;
}

.form-btn:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

@media (max-width: 760px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row > label {
    justify-content: flex-start;
    padding: 14px 20px;
    text-align: left;
  }

  .form-row > .form-field {
    padding: 18px 20px 22px;
  }

  .form-field input[type="text"],
  .form-field input[type="tel"],
  .form-field input[type="email"],
  .form-field select,
  .form-field textarea {
    width: 100%;
  }

  .contact-lead-card {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .form-submit {
    display: grid;
    gap: 12px;
  }

  .form-btn {
    width: 100%;
  }

  .form-field textarea {
    min-height: 190px;
  }
}

/* ------------------------------
  選択項目限定「３DCG」「デジタルイラスト」選択時に見学不可
------------------------------ */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.inline-list label {
  white-space: nowrap;
}

.grade-list {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px 26px;
}

.js-visit-option.is-hidden {
  display: none;
}

.js-no-visit-note {
  color: #d86a9d;
  font-weight: 700;
}

@media (max-width: 760px) {
  .inline-list {
    display: grid;
    gap: 10px;
  }

  .inline-list label {
    white-space: normal;
  }

  .grade-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
  }
}

@media (max-width: 480px) {
  .grade-list {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
  Privacy Agreement
------------------------------ */
.privacy-agreement {
  padding: 34px 36px 0;
  background: #fff;
  border-top: 1px solid #edf1e8;
}

.privacy-box {
  height: 230px;
  padding: 24px 26px;
  overflow-y: auto;
  color: #333;
  font-size: 14px;
  line-height: 1.9;
  background: #fff;
  border: 1px solid #cfd8cf;
  border-radius: 10px;
  box-sizing: border-box;
}

.privacy-box p {
  margin: 0 0 1.4em;
}

.privacy-box h3 {
  margin: 1.6em 0 0.5em;
  color: #2f9a82;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.privacy-box h3:first-of-type {
  margin-top: 1em;
}

.privacy-box ul {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}

.privacy-box li {
  margin-bottom: 0.3em;
}

.privacy-guide {
  margin: 24px 0 14px;
  text-align: center;
  color: #555;
  line-height: 1.8;
}

.privacy-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 4px;
  color: #333;
  font-weight: 700;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  accent-color: #75bd72;
}

@media (max-width: 760px) {
  .privacy-agreement {
    padding: 28px 20px 0;
  }

  .privacy-box {
    height: 240px;
    padding: 20px 18px;
    font-size: 13px;
  }

  .privacy-guide {
    text-align: left;
  }

  .privacy-check {
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.6;
  }

  .privacy-check input {
    flex: 0 0 auto;
    margin-top: 0.25em;
  }
}

/* ------------------------------
  学年（その他）選択時にテキスト入力
------------------------------ */
.grade-other-field {
  display: none;
  grid-column: 1 / -1;
  margin-top: 4px;
}

.grade-other-field.is-show {
  display: block;
}

.grade-other-field input {
  width: min(460px, 100%);
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid #cfd8cf;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
}


/* ------------------------------
  Preparing Page
------------------------------ */
.preparing-hero {
  background-position: center center;
  background-size: cover;
}

.preparing-3dcg-hero {
  background-image: url("../img/3dcg-hero1.jpg");
}

.preparing-digital-hero {
  background-image: url("../img/digital-hero.jpg");
}

.preparing-section {
  min-height: 520px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,230,238,0.46), transparent 28%),
    radial-gradient(circle at 94% 14%, rgba(222,244,231,0.58), transparent 30%);
}

.preparing-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: center;
  padding: 52px 58px;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    radial-gradient(circle at 10% 18%, rgba(127,208,223,0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(232,135,169,0.15), transparent 28%);
  border: 1px solid #e8e2e5;
  border-radius: 30px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.055);
}

.preparing-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(127,208,223,0.36)),
    #dff4f8;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,0.55),
    0 10px 26px rgba(0,0,0,0.06);
}

.preparing-icon::before,
.preparing-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(232,135,169,0.22);
}

.preparing-icon::before {
  width: 54px;
  height: 54px;
  right: -8px;
  top: 18px;
}

.preparing-icon::after {
  width: 34px;
  height: 34px;
  left: 12px;
  bottom: 18px;
  background: rgba(140,204,119,0.28);
}

.preparing-icon.digital {
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(232,135,169,0.34)),
    #fde8f0;
}

.preparing-icon span {
  position: relative;
  z-index: 1;
  color: #4a95b7;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.preparing-icon.digital span {
  color: #d86a9d;
  font-size: 34px;
}

.preparing-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 18px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #8ccc77;
  border-radius: 999px;
}

.preparing-text h2 {
  margin: 0 0 22px;
  color: #b9548a;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.preparing-text p {
  margin: 0 0 1.4em;
  line-height: 2;
}

.preparing-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.preparing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.2s ease;
}

.preparing-btn::after {
  content: "›";
  margin-left: 10px;
  font-size: 22px;
  line-height: 1;
}

.preparing-btn.main-btn {
  color: #fff;
  background: #e887a9;
}

.preparing-btn.sub-btn {
  color: #555;
  background: #eef4ea;
}

.preparing-btn:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

@media (max-width: 900px) {
  .preparing-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 36px;
    text-align: center;
  }

  .preparing-text p {
    text-align: left;
  }

  .preparing-buttons {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .preparing-section {
    min-height: 0;
  }

  .preparing-card {
    padding: 36px 22px;
    border-radius: 24px;
  }

  .preparing-icon {
    width: 150px;
    height: 150px;
  }

  .preparing-icon span {
    font-size: 34px;
  }

  .preparing-icon.digital span {
    font-size: 28px;
  }

  .preparing-text h2 {
    font-size: 25px;
  }

  .preparing-buttons {
    display: grid;
    gap: 12px;
  }

  .preparing-btn {
    width: 100%;
    min-width: 0;
  }
}
.preparing-btn.insta-btn {
  color: #fff;
  background: linear-gradient(90deg, #e887a9, #c896d8);
}

.preparing-btn.insta-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.preparing-btn.insta-btn::after {
  content: "↗";
  margin-left: 10px;
  font-size: 16px;
  line-height: 1;
}



/* ------------------------------
  Header SNS / Contact Text Links
------------------------------ */
.header-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.header-link-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6b7f9c;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-link:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.header-link i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 16px;
  line-height: 1;
}

.header-link.instagram i {
  color: #e887a9;
  font-size: 17px;
}

.header-link.facebook i {
  color: #4b78bd;
  font-size: 15px;
}

.header-link.mail i {
  color: #e887a9;
  font-size: 16px;
}

/* スマホメニュー内リンクはPCでは非表示 */
.sp-header-links {
  display: none;
}
	
/* ------------------------------
  Header SNS position adjust
------------------------------ */
.site-header {
  position: relative;
}

.header-inner {
  position: relative;
}

/* PC時：SNSをメニュー上段に配置 */
.header-sns {
  position: absolute;
  top: 10px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 20;
  min-width: 0;
  display: block;
}

.header-link-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
}

.header-link {
  font-size: 12px;
  line-height: 1;
}

/* ナビボタンがSNSと重ならないように少し下げる */
.global-nav {
  padding-top: 26px;
}


@media (max-width: 900px) {
  .header-sns {
    display: none;
  }
	
  .global-nav {
    padding-top: 0;
  }

@media (max-width: 900px) {
  .sp-header-links {
    display: grid;
    gap: 14px;
    margin: 28px 32px 0;
    padding: 22px 0 34px;
    border-top: 1px solid rgba(120, 180, 120, 0.24);
  }

  .sp-header-links .header-link {
    padding: 4px 0;
  }
}
  .sp-header-links .header-link i {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .sp-header-links .header-link.facebook i {
    font-size: 18px;
  }

  .sp-header-links .header-link.mail i {
    font-size: 19px;
  }
}


/* ------------------------------
  3DCG Course Page
------------------------------ */
.cg-hero {
  background-image: url("../img/3dcg-hero1.jpg");
  background-position: center center;
}

.cg-anchor {
  width: min(1080px, calc(100% - 40px));
}

.cg-anchor a:nth-child(1) {
  background: #65c6dc;
}

.cg-anchor a:nth-child(2) {
  background: #8ccc77;
}

.cg-anchor a:nth-child(3) {
  background: #c896d8;
}

.cg-anchor a:nth-child(4) {
  background: #e7b06d;
}

.cg-anchor a:nth-child(5) {
  background: #e888b5;
}

/* Intro */
.cg-lead-card {
  padding: 42px 48px;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    radial-gradient(circle at 12% 18%, rgba(127,208,223,0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(140,204,119,0.16), transparent 28%);
  border: 1px solid #d6edf4;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.045);
}

.cg-course-meta {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 18px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  background: #65c6dc;
  border-radius: 999px;
}

.cg-catch {
  margin: 0 0 24px;
  color: #2f9a82;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.cg-lead-card p {
  margin: 0 0 1.4em;
  line-height: 2;
}

.cg-lead-card p:last-child {
  margin-bottom: 0;
}

.cg-lead-card strong {
  color: #2f9a82;
}

/* Features */
.cg-features-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(230,242,250,0.58), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(222,244,231,0.58), transparent 30%);
}

.cg-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 34px;
}

.cg-feature-card,
.cg-point-card,
.cg-goal-card,
.cg-requirements-card,
.cg-parent-card,
.cg-instructor-card,
.cg-pdf-card,
.cg-notice-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.cg-feature-card {
  position: relative;
  min-height: 250px;
  padding: 34px 30px 32px;
  overflow: hidden;
}

.cg-feature-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: rgba(127,208,223,0.22);
  border-radius: 50%;
}

.cg-feature-card:nth-child(2)::before {
  background: rgba(140,204,119,0.22);
}

.cg-feature-card:nth-child(3)::before {
  background: rgba(200,150,216,0.2);
}

.cg-feature-card h3,
.cg-feature-card p {
  position: relative;
  z-index: 1;
}

.cg-feature-card h3 {
  margin: 0 0 16px;
  color: #2f9a82;
  font-size: 22px;
  line-height: 1.45;
}

.cg-feature-card p {
  margin: 0;
  line-height: 1.9;
}

.cg-point-card {
  padding: 34px 40px;
}

.cg-point-card h3 {
  margin: 0 0 18px;
  color: #4a95b7;
  font-size: 25px;
  line-height: 1.45;
}

.cg-point-card ul,
.cg-goal-card ul,
.cg-requirements-card ul,
.cg-instructor-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cg-point-card li,
.cg-goal-card li,
.cg-requirements-card li,
.cg-instructor-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  line-height: 1.75;
}

.cg-point-card li::before,
.cg-goal-card li::before,
.cg-requirements-card li::before,
.cg-instructor-card li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.68em;
  width: 12px;
  height: 12px;
  background: #8ccc77;
  border-radius: 3px;
  transform: rotate(8deg);
}

/* Goal */
.cg-goal-section {
  background: #fff;
}

.cg-goal-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
  padding: 40px 46px;
}

.cg-goal-card h3 {
  margin: 0 0 18px;
  color: #b9548a;
  font-size: 27px;
  line-height: 1.45;
}

.cg-finish-work {
  margin: 0;
  padding: 28px;
  color: #555;
  text-align: center;
  line-height: 1.8;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.85), rgba(127,208,223,0.24)),
    #eefaff;
  border-radius: 24px;
}

.cg-finish-work strong {
  display: block;
  margin-top: 8px;
  color: #2f9a82;
  font-size: 20px;
}

/* Curriculum */
.cg-curriculum-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(255,230,238,0.38), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(222,244,231,0.58), transparent 30%);
}

.cg-curriculum-list {
  display: grid;
  gap: 18px;
}

.cg-curriculum-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-areas:
    "num title"
    "num text";
  gap: 8px 22px;
  align-items: start;
  padding: 24px 30px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.035);
}

.cg-curriculum-list span {
  grid-area: num;
  display: grid;
  place-items: center;
  min-height: 48px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  background: #65c6dc;
  border-radius: 999px;
}

.cg-curriculum-list h3 {
  grid-area: title;
  margin: 0;
  color: #333;
  font-size: 21px;
  line-height: 1.45;
}

.cg-curriculum-list p {
  grid-area: text;
  margin: 8px 0 0;
  line-height: 1.8;
}

/* Outline */
.cg-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.cg-info-card {
  padding: 34px 38px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.cg-info-card h3 {
  margin: 0 0 20px;
  color: #2f9a82;
  font-size: 25px;
  line-height: 1.45;
}

.cg-info-card dl {
  margin: 0;
}

.cg-info-card dt {
  margin-top: 16px;
  color: #4a95b7;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
}

.cg-info-card dt:first-child {
  margin-top: 0;
}

.cg-info-card dd {
  margin: 4px 0 0;
  line-height: 1.8;
}

/* Fee */
.cg-fee-section {
  background: linear-gradient(180deg, rgba(255,250,239,0.75), rgba(255,255,255,0));
}

.cg-fee-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.cg-fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.cg-fee-table th,
.cg-fee-table td {
  padding: 24px 28px;
  border: 2px solid #f3dfbc;
  vertical-align: middle;
}

.cg-fee-table th {
  width: 30%;
  color: #7a5a25;
  text-align: center;
  font-size: 19px;
  background: #fff0cf;
}

.cg-fee-table td {
  line-height: 1.8;
}

.cg-fee-table strong {
  font-size: 26px;
  font-weight: 600;
}

.cg-payment-note {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 28px 34px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #f3dfbc;
  border-radius: 22px;
}

.cg-payment-note h3 {
  margin: 0 0 12px;
  color: #b9548a;
  font-size: 23px;
}

.cg-payment-note p {
  margin: 0;
  line-height: 1.9;
}

/* Requirements / Parent / Instructor */
.cg-requirements-section,
.cg-instructor-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(230,242,250,0.55), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(222,244,231,0.55), transparent 30%);
}

.cg-requirements-card,
.cg-parent-card,
.cg-instructor-card {
  padding: 38px 44px;
}

.cg-requirements-card p,
.cg-parent-card p {
  margin: 22px 0 0;
  line-height: 2;
}

.cg-parent-card h2 {
  margin: 0 0 18px;
  color: #d86a9d;
  font-size: clamp(24px, 3vw, 34px);
}

.cg-instructor-card h3 {
  margin: 0 0 18px;
  color: #2f9a82;
  font-size: 25px;
}

/* PDF */
.cg-pdf-card {
  padding: 34px 40px;
  text-align: center;
}

.cg-pdf-card p {
  margin: 0 0 22px;
}

.cg-pdf-btn,
.cg-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.2s ease;
}

.cg-pdf-btn {
  color: #fff;
  background: #65c6dc;
}

.cg-pdf-btn::after,
.cg-cta-btn::after {
  content: "›";
  margin-left: 10px;
  font-size: 22px;
  line-height: 1;
}

.cg-pdf-btn:hover,
.cg-cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

/* Flow */
.cg-flow-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(255,230,238,0.42), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(222,244,231,0.58), transparent 30%);
}

.cg-flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cg-flow-list article {
  position: relative;
  padding: 32px 22px 30px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e8e2e5;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.cg-flow-list span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
  background: #8ccc77;
  border-radius: 50%;
}

.cg-flow-list h3 {
  margin: 0 0 12px;
  color: #2f9a82;
  font-size: 21px;
}

.cg-flow-list p {
  margin: 0;
  line-height: 1.8;
}

.cg-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.cg-cta-btn.main {
  color: #fff;
  background: #e887a9;
}

.cg-cta-btn.instagram {
  color: #fff;
  background: linear-gradient(90deg, #e887a9, #c896d8);
}

/* Calendar */
.cg-calendar-section {
  background: #fff;
}

.cg-calendar-wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 10px;
  background: rgba(255,255,255,0.84);
  border: 1px solid #e8e2e5;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.cg-calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  border-radius: 12px;
}

.cg-notice-card {
  max-width: 960px;
  margin: 26px auto 0;
  padding: 28px 34px;
}

.cg-notice-card p {
  margin: 0;
  line-height: 2;
}

@media (max-width: 1000px) {
  .cg-feature-grid,
  .cg-info-grid,
  .cg-flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cg-goal-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cg-lead-card,
  .cg-goal-card,
  .cg-requirements-card,
  .cg-parent-card,
  .cg-instructor-card {
    padding: 32px 28px;
  }

  .cg-feature-grid,
  .cg-info-grid,
  .cg-flow-list {
    grid-template-columns: 1fr;
  }

  .cg-curriculum-list article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "text";
    gap: 12px;
    padding: 24px 22px;
  }

  .cg-curriculum-list span {
    width: fit-content;
    min-height: 0;
    padding: 6px 18px;
  }
	
  .cg-fee-table,
  .cg-fee-table tbody,
  .cg-fee-table tr,
  .cg-fee-table th,
  .cg-fee-table td {
    display: block;
    width: 100%;
  }

  .cg-fee-table th {
    padding: 14px 18px 8px;
  }

  .cg-fee-table td {
    padding: 8px 18px 22px;
  }

  .cg-cta-buttons {
    display: grid;
  }

  .cg-cta-btn,
  .cg-pdf-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .cg-catch {
    font-size: 25px;
  }

  .cg-lead-card,
  .cg-point-card,
  .cg-payment-note,
  .cg-pdf-card,
  .cg-notice-card {
    padding: 28px 22px;
  }

  .cg-feature-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .cg-feature-card h3 {
    font-size: 21px;
  }

  .cg-fee-table strong {
    font-size: 23px;
  }

  .cg-calendar-wrap iframe {
    height: 460px;
  }
}


/* ------------------------------
  Digital Illustration Course Page
------------------------------ */
.digital-hero {
  background-image: url("../img/digital-hero1.jpg");
  background-position: center center;
}

.digital-anchor {
  width: min(1080px, calc(100% - 40px));
}

.digital-anchor a:nth-child(1) {
  background: #e888b5;
}

.digital-anchor a:nth-child(2) {
  background: #8ccc77;
}

.digital-anchor a:nth-child(3) {
  background: #65c6dc;
}

.digital-anchor a:nth-child(4) {
  background: #e7b06d;
}

.digital-anchor a:nth-child(5) {
  background: #c896d8;
}

/* Intro */
.digital-lead-card {
  padding: 42px 48px;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    radial-gradient(circle at 12% 18%, rgba(232,135,169,0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(127,208,223,0.16), transparent 28%);
  border: 1px solid #f1d3df;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.045);
}

.digital-course-meta {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 18px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  background: #e888b5;
  border-radius: 999px;
}

.digital-catch {
  margin: 0 0 24px;
  color: #d86a9d;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.digital-lead-card p {
  margin: 0 0 1.4em;
  line-height: 2;
}

.digital-lead-card p:last-child {
  margin-bottom: 0;
}

.digital-lead-card strong {
  color: #d86a9d;
}

/* Features */
.digital-features-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(255,230,238,0.46), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(222,244,231,0.58), transparent 30%);
}

.digital-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 34px;
}

.digital-feature-card,
.digital-point-card,
.digital-goal-card,
.digital-requirements-card,
.digital-parent-card,
.digital-instructor-card,
.digital-pdf-card,
.digital-notice-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.digital-feature-card {
  position: relative;
  min-height: 250px;
  padding: 34px 30px 32px;
  overflow: hidden;
}

.digital-feature-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: rgba(232,135,169,0.2);
  border-radius: 50%;
}

.digital-feature-card:nth-child(2)::before {
  background: rgba(127,208,223,0.2);
}

.digital-feature-card:nth-child(3)::before {
  background: rgba(140,204,119,0.22);
}

.digital-feature-card h3,
.digital-feature-card p {
  position: relative;
  z-index: 1;
}

.digital-feature-card h3 {
  margin: 0 0 16px;
  color: #d86a9d;
  font-size: 23px;
  line-height: 1.45;
}

.digital-feature-card p {
  margin: 0;
  line-height: 1.9;
}

.digital-point-card {
  padding: 34px 40px;
}

.digital-point-card h3 {
  margin: 0 0 18px;
  color: #4a95b7;
  font-size: 25px;
  line-height: 1.45;
}

.digital-point-card ul,
.digital-goal-card ul,
.digital-requirements-card ul,
.digital-instructor-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.digital-point-card li,
.digital-goal-card li,
.digital-requirements-card li,
.digital-instructor-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  line-height: 1.75;
}

.digital-point-card li::before,
.digital-goal-card li::before,
.digital-requirements-card li::before,
.digital-instructor-card li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.68em;
  width: 12px;
  height: 12px;
  background: #e888b5;
  border-radius: 3px;
  transform: rotate(8deg);
}

/* Goal */
.digital-goal-section {
  background: #fff;
}

.digital-goal-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
  padding: 40px 46px;
}

.digital-goal-card h3 {
  margin: 0 0 18px;
  color: #b9548a;
  font-size: 27px;
  line-height: 1.45;
}

.digital-finish-work {
  margin: 0;
  padding: 28px;
  color: #555;
  text-align: center;
  line-height: 1.8;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.85), rgba(232,135,169,0.22)),
    #fff4f8;
  border-radius: 24px;
}

.digital-finish-work strong {
  display: block;
  margin-top: 8px;
  color: #d86a9d;
  font-size: 20px;
}

/* Curriculum */
.digital-curriculum-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(230,242,250,0.55), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(255,230,238,0.48), transparent 30%);
}

.digital-curriculum-list {
  display: grid;
  gap: 18px;
}

.digital-curriculum-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-areas:
    "num title"
    "num text";
  gap: 8px 22px;
  align-items: start;
  padding: 24px 30px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.035);
}

.digital-curriculum-list span {
  grid-area: num;
  display: grid;
  place-items: center;
  min-height: 48px;
  color: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  background: #e888b5;
  border-radius: 999px;
}

.digital-curriculum-list h3 {
  grid-area: title;
  margin: 0;
  color: #333;
  font-size: 21px;
  line-height: 1.45;
}

.digital-curriculum-list p {
  grid-area: text;
  margin: 8px 0 0;
  line-height: 1.8;
}

/* Outline */
.digital-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.digital-info-card {
  padding: 34px 38px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8e2e5;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.digital-info-card h3 {
  margin: 0 0 20px;
  color: #d86a9d;
  font-size: 25px;
  line-height: 1.45;
}

.digital-info-card dl {
  margin: 0;
}

.digital-info-card dt {
  margin-top: 16px;
  color: #4a95b7;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
}

.digital-info-card dt:first-child {
  margin-top: 0;
}

.digital-info-card dd {
  margin: 4px 0 0;
  line-height: 1.8;
}

/* Fee */
.digital-fee-section {
  background: linear-gradient(180deg, rgba(255,250,239,0.75), rgba(255,255,255,0));
}

.digital-fee-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.digital-fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.digital-fee-table th,
.digital-fee-table td {
  padding: 24px 28px;
  border: 2px solid #f3dfbc;
  vertical-align: middle;
}

.digital-fee-table th {
  width: 30%;
  color: #7a5a25;
  text-align: center;
  font-size: 19px;
  background: #fff0cf;
}

.digital-fee-table td {
  line-height: 1.8;
}

.digital-fee-table strong {
  font-size: 26px;
  font-weight: 600;
}

.digital-payment-note {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 28px 34px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #f3dfbc;
  border-radius: 22px;
}

.digital-payment-note h3 {
  margin: 0 0 12px;
  color: #b9548a;
  font-size: 23px;
}

.digital-payment-note p {
  margin: 0;
  line-height: 1.9;
}

/* Requirements / Parent / Instructor */
.digital-requirements-section,
.digital-instructor-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(255,230,238,0.42), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(222,244,231,0.55), transparent 30%);
}

.digital-requirements-card,
.digital-parent-card,
.digital-instructor-card {
  padding: 38px 44px;
}

.digital-requirements-card p,
.digital-parent-card p {
  margin: 22px 0 0;
  line-height: 2;
}

.digital-parent-card h2 {
  margin: 0 0 18px;
  color: #d86a9d;
  font-size: clamp(24px, 3vw, 34px);
}

.digital-instructor-card h3 {
  margin: 0 0 18px;
  color: #d86a9d;
  font-size: 25px;
}

/* PDF */
.digital-pdf-card {
  padding: 34px 40px;
  text-align: center;
}

.digital-pdf-card p {
  margin: 0 0 22px;
}

.digital-pdf-btn,
.digital-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.2s ease;
}

.digital-pdf-btn {
  color: #fff;
  background: #e888b5;
}

.digital-pdf-btn::after,
.digital-cta-btn::after {
  content: "›";
  margin-left: 10px;
  font-size: 22px;
  line-height: 1;
}

.digital-pdf-btn:hover,
.digital-cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

/* Flow */
.digital-flow-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(230,242,250,0.5), transparent 28%),
    radial-gradient(circle at 94% 16%, rgba(255,230,238,0.48), transparent 30%);
}

.digital-flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.digital-flow-list article {
  position: relative;
  padding: 32px 22px 30px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e8e2e5;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}

.digital-flow-list span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
  background: #e888b5;
  border-radius: 50%;
}

.digital-flow-list h3 {
  margin: 0 0 12px;
  color: #d86a9d;
  font-size: 21px;
}

.digital-flow-list p {
  margin: 0;
  line-height: 1.8;
}

.digital-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.digital-cta-btn.main {
  color: #fff;
  background: #e887a9;
}

.digital-cta-btn.instagram {
  color: #fff;
  background: linear-gradient(90deg, #e887a9, #c896d8);
}

/* Calendar */
.digital-calendar-section {
  background: #fff;
}

.digital-calendar-wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 10px;
  background: rgba(255,255,255,0.84);
  border: 1px solid #e8e2e5;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.04);
}

.digital-calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  border-radius: 12px;
}

.digital-notice-card {
  max-width: 960px;
  margin: 26px auto 0;
  padding: 28px 34px;
}

.digital-notice-card p {
  margin: 0;
  line-height: 2;
}

@media (max-width: 1000px) {
  .digital-feature-grid,
  .digital-info-grid,
  .digital-flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-goal-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .digital-lead-card,
  .digital-goal-card,
  .digital-requirements-card,
  .digital-parent-card,
  .digital-instructor-card {
    padding: 32px 28px;
  }

  .digital-feature-grid,
  .digital-info-grid,
  .digital-flow-list {
    grid-template-columns: 1fr;
  }

  .digital-curriculum-list article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "text";
    gap: 12px;
    padding: 24px 22px;
  }

  .digital-curriculum-list span {
    width: fit-content;
    min-height: 0;
    padding: 6px 18px;
  }

  .digital-fee-table,
  .digital-fee-table tbody,
  .digital-fee-table tr,
  .digital-fee-table th,
  .digital-fee-table td {
    display: block;
    width: 100%;
  }

  .digital-fee-table th {
    padding: 14px 18px 8px;
  }

  .digital-fee-table td {
    padding: 8px 18px 22px;
  }

  .digital-cta-buttons {
    display: grid;
  }

  .digital-cta-btn,
  .digital-pdf-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .digital-catch {
    font-size: 25px;
  }

  .digital-lead-card,
  .digital-point-card,
  .digital-payment-note,
  .digital-pdf-card,
  .digital-notice-card {
    padding: 28px 22px;
  }

  .digital-feature-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .digital-feature-card h3 {
    font-size: 21px;
  }

  .digital-fee-table strong {
    font-size: 23px;
  }

  .digital-calendar-wrap iframe {
    height: 460px;
  }
}

/* ------------------------------
  メイン画像部分の文言位置下げ＆白背景ボカシ
  3DCG / Digital Illustration
------------------------------ */
@media (max-width: 560px) {
  .cg-hero,
  .digital-hero {
    min-height: 390px;
    padding-top: 120px;
    padding-bottom: 34px;
    place-items: end center;
  }

  .cg-hero::after,
  .digital-hero::after {
    top: auto;
    bottom: 40px;
    width: calc(100% - 28px);
    height: 150px;
    border-radius: 28px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 24px rgba(255,255,255,0.75);
    transform: translateX(-50%);
  }

  .cg-hero .sub-hero-inner,
  .digital-hero .sub-hero-inner {
    width: calc(100% - 44px);
    padding: 22px 18px 20px;
    transform: translateY(4px);
  }

  .cg-hero .sub-hero-en,
  .digital-hero .sub-hero-en {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .cg-hero h1,
  .digital-hero h1 {
    margin-bottom: 8px;
    font-size: 26px;
    line-height: 1.35;
  }

  .cg-hero p,
  .digital-hero p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 560px) {
  .sub-hero {
    min-height: 360px;
    padding: 78px 18px 58px;
  }

  .sub-hero::after {
    display: none;
  }

  .sub-hero-inner {
    width: calc(100% - 28px);
    padding: 22px 18px;
  }

  .sub-hero-inner::before {
    inset: -14px -18px;
    filter: blur(18px);
    border-radius: 32px;
    background: rgba(255,255,255,0.72);
  }

  .sub-hero h1 {
    font-size: 22px;
	  font-weight: 600;
  }

  .sub-hero p {
    font-size: 14px;
    line-height: 1.8;
  }
}


/* ------------------------------
  Text Link
------------------------------ */
.text-link {
  color: #2f7fb0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  font-weight: 700;
  transition: 0.2s ease;
}

.text-link:hover {
  color: #d86a9d;
  text-decoration-thickness: 2px;
}

/*テキスト装飾
------------------------------------------------------------------*/
.text_red{color: #cc0000;}
.text_small_red{color: #cc0000; font-size:80%;}
.text_red_l{color: #cc0000; font-size:150%;}
.text_brown{color: #960;}
.text_brown_s{color: #960; font-size:80%;}
.text_brown_b{color: #960; font-weight:bold; line-height: 1.5em; padding-top: 1em;}
.text_brown_l{color: #960; font-size:150%;}
.text_green{color: #090;}
.text_green1{color: #0AA350;}
.text_green_b{color: #090; font-weight:bold;}
.text_green_l{color: #390; font-size:150%;}
.text_orange{color: #ff6600;}
.text_orange1{color: #CD8E47;}
.text_orange_l{color: #ff6600; font-size:150%;}
.text_yellow{color: #CFBA65;}
.text_blue{
	color: #09b5de;
	font-weight: bold;
	font-size: 110%;
}
.text_blue_l{color:#00F; font-size:140%;}
.text_blue_xl{color:#00F; font-size:200%;}
.text_blue2{
	color: #09b5de;
	font-size: 80%;
}
.text_blue3{
	color: #09b5de;
	font-size: 90%;
}
.text_blue4{
	color: #0000FF;
	font-size: 90%;
}
.text_blue5{
	color: #0000FF;
}
.text_blue5_b{
	color: #0000FF;
	font-weight:bold;
}
.text_blue6{
	color: #5CA2CF;
}
.text_purple{
	color: #B482C1;
}
.text_small{
    font-size: 75%;
	line-height:normal
}
.text_large{
    font-size: 130%;
}
.text_xlarge{
    font-size: 150%;
}
.text_navy{
	color: #000066;
	font-weight: bold;
	font-size: 110%;
}
.text_b{
	font-weight:bold;
}
.text_end{/*下付きテキスト*/
    display: flex;
    align-items: flex-end;
}
