:root {
  --color-primary: #0055a5;
  --color-secondary: #7d66c5;
  --color-accent: #f39bc2;
  --color-text: #1f2a44;
  --color-bg: #ffffff;
  --color-muted: #f5f7fb;
  --header-nav-breakpoint: 1320px;
}

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

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

body.is-menu-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

.c-pagetop {
  --pagetop-gradient: linear-gradient(
    90deg,
    #1fb8ff 0%,
    #62aaf4 30%,
    #9d99d5 66%,
    #ef8fbd 100%
  );
  position: fixed;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 999;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: clamp(3.25rem, 3rem + 1vw, 3.75rem);
  height: clamp(3.25rem, 3rem + 1vw, 3.75rem);
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--pagetop-gradient) border-box;
  color: #0055a5;
  text-decoration: none;
  font-size: clamp(0.625rem, 0.58rem + 0.15vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  box-shadow: 0 4px 18px rgba(31, 56, 100, 0.18);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.28s ease;
}

html.js .c-pagetop:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
}

.c-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.c-pagetop:hover,
.c-pagetop:focus-visible {
  box-shadow: 0 8px 22px rgba(96, 136, 214, 0.28);
  transform: translateY(-2px);
}

.c-pagetop.is-visible:hover,
.c-pagetop.is-visible:focus-visible {
  transform: translateY(-2px);
}

.c-pagetop__icon {
  display: block;
  width: 0.875rem;
  height: 0.5625rem;
  background: var(--pagetop-gradient);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.c-pagetop__label {
  display: block;
  background: var(--pagetop-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* span 以外のテキスト最小サイズ */
body :where(p, li, dt, dd, label, button, input, textarea, select, a, h1, h2, h3, h4, h5, h6, time, blockquote, figcaption, td, th) {
  font-size: max(1rem, 1em);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.only-sp {
  display: none;
}

.only-pc {
  display: revert;
}

@media (max-width: 767px) {
  .only-sp {
    display: revert;
  }

  .only-pc {
    display: none;
  }
}

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

a:hover {
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

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

.l-container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e6ecf5;
  box-shadow: 0 8px 20px rgba(16, 44, 92, 0.08);
}

.l-header__inner {
  min-height: 100px;
  width: 100%;
  padding-inline: clamp(16px, 3.2vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.25vw, 24px);
}

.l-header__logo {
  display: inline-flex;
  flex-shrink: 0;
}

.l-header__logo img {
  width: clamp(180px, 14.2vw, 255px);
  height: auto;
}

.l-header__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #cdd9ed;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.l-header__menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.l-header__menu-toggle span:nth-child(1),
.l-header__menu-toggle span:nth-child(2),
.l-header__menu-toggle span:nth-child(3) {
  transform-origin: center;
}

.l-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.l-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.l-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.l-header__nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(8px, 0.95vw, 18px);
  flex: 1;
  min-width: 0;
}

.l-header__menu {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.l-header__item {
  position: relative;
}

.l-header__link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 clamp(6px, 0.8vw, 18px);
  font-size: clamp(1rem, 0.22vw + 0.64rem, 1rem);
  color: #19417f;
  font-weight: 700;
  white-space: nowrap;
  width: 100%;
}

@media screen and (min-width: 1321px) {
  .l-header__item.is-placeholder > .l-header__link-wrap > .l-header__link {
    cursor: default;
    pointer-events: none;
  }
}

.l-header__submenu-toggle {
  display: none;
}

.l-header__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  z-index: 40;
  list-style: none;
  margin: 0;
  padding: 8px;
  border: 1px solid #d9e3f3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 51, 97, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.l-header__submenu li + li {
  margin-top: 2px;
}

.l-header__submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #16356f;
  font-size: 1rem;
}

.l-header__submenu a:hover {
  background: #f0f5ff;
  opacity: 1;
}

.l-header__item.is-has-children:hover > .l-header__submenu,
.l-header__item.is-has-children:focus-within > .l-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-header__cta {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.45vw, 10px);
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.l-header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 3.2vw, 60px);
  padding: 0 clamp(8px, 0.75vw, 14px);
  border-radius: 999px;
  border: 1px solid;
  font-size: clamp(1rem, 0.2vw + 0.58rem, 1rem);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  min-width: clamp(120px, 9.95vw, 191px);
  flex: 0 1 auto;
}

.l-header__cta-btn--outline-purple {
  color: #7c67be;
  border-color: #b9abdf;
  background: #fff;
}

.l-header__cta-btn--outline-blue {
  color: #16a5d4;
  border-color: #7fd0e9;
  background: #fff;
}

.l-header__cta-btn--outline-pink {
  color: #eb6fa8;
  border-color: #f2a5c7;
  background: #fff;
}

.l-header__cta-btn--fill-purple {
  color: #fff;
  border: none;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #62aaf4 0%,
    #7aabef 25%,
    #9d99d5 50%,
    #b794ca 75%,
    #c49ac8 100%
  );
}

.l-main {
  padding-top: var(--header-height, 100px);
}

.l-footer {
  background: #f7f8f8;
  border-top: 2px solid #024099;
  border-bottom: 0;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0 clamp(2rem, 1.5rem + 1.5vw, 3rem);
}

.l-footer--subpage {
  background: #004294;
  border-top: 0;
}

.l-footer--subpage .l-footer__heading,
.l-footer--subpage .l-footer__heading-link,
.l-footer--subpage .l-footer__links a,
.l-footer--subpage .l-footer__links a::before,
.l-footer--subpage .l-footer__copy {
  color: #fff;
}

.l-footer--subpage .l-footer__links a:hover {
  opacity: 0.75;
}

.l-footer--subpage .l-footer__sns img {
  filter: brightness(0) invert(1);
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem);
}

.l-footer__logo {
  display: inline-flex;
}

.l-footer__logo img {
  width: min(100%, 18.75rem);
  height: auto;
}

.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.l-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.l-footer__sns a:hover {
  opacity: 0.7;
}

.l-footer__sns img {
  display: block;
  width: 1.125rem;
  height: auto;
}

.l-footer__nav {
  width: 100%;
}

.l-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.l-footer__col + .l-footer__col {
  margin-top: 0;
}

.l-footer__heading {
  margin: 0 0 0.75rem;
  color: #000;
  font-size: clamp(1rem, 0.78rem + 0.15vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
}

.l-footer__heading:not(:first-child) {
  margin-top: 1.25rem;
}

.l-footer__heading-link {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}

.l-footer__heading-link:hover {
  opacity: 0.75;
}

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

.l-footer__links li + li {
  margin-top: 0.35rem;
}

.l-footer__links a {
  display: inline-block;
  position: relative;
  padding-left: 0.85rem;
  color: #333;
  font-size: clamp(1rem, 0.72rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
}

.l-footer__links a::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #333;
}

.l-footer__links a:hover {
  opacity: 0.7;
}

.l-footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  width: 100%;
  margin-top: clamp(2rem, 1.5rem + 1.5vw, 3rem);
}

.l-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(3rem, 2.75rem + 0.65vw, 3.75rem);
  min-width: clamp(9rem, 8rem + 4vw, 12rem);
  padding: 0 clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  border-radius: 999px;
  border: 2px solid;
  font-size: clamp(1rem, 0.82rem + 0.2vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.l-footer__cta-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.l-footer__cta-btn--outline-purple {
  color: #7c67be;
  border-color: #b9abdf;
  background: #fff;
}

.l-footer__cta-btn--outline-blue {
  color: #16a5d4;
  border-color: #7fd0e9;
  background: #fff;
}

.l-footer__cta-btn--outline-pink {
  color: #eb6fa8;
  border-color: #f2a5c7;
  background: #fff;
}

.l-footer__cta-btn--fill-gradient {
  color: #fff;
  border: none;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #62aaf4 0%,
    #7aabef 25%,
    #9d99d5 50%,
    #b794ca 75%,
    #c49ac8 100%
  );
}

.l-footer__copy {
  margin: clamp(1.5rem, 1.2rem + 1vw, 2.25rem) 0 0;
  color: #333;
  font-size: clamp(1rem, 0.66rem + 0.1vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.c-breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.c-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #1765b9;
  font-weight: 500;
  line-height: 1;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
}

.c-btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.c-btn--line {
  background: #00a0c8;
  color: #fff;
}

.c-btn--ghost {
  background: #fff;
  border-color: #d5ddeb;
  color: var(--color-text);
}

.p-home-hero {
  position: relative;
  height: calc(100svh - var(--header-height, 88px));
  background: #fff;
  overflow: hidden;
  padding-block: 50px;
  box-sizing: border-box;
}

.p-home-hero__viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.p-home-hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.65s ease;
  will-change: transform;
}

.p-home-hero__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 39.06% 60.94%;
  align-items: stretch;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

.p-home-hero__col--sub {
  order: 1;
  position: relative;
  margin-right: -50px;
  z-index: 2;
  min-height: 0;
  min-width: 0;
  overflow: visible;
}

.p-home-hero__col--main {
  --fv-bnr-max-width: min(100%, 32.875rem);
  --fv-bnr-inset-x: clamp(0.75rem, 2vw, 1.5rem);
  --fv-bnr-inset-y: clamp(0.5rem, 1.5vw, 1.25rem);
  --fv-bg-position: right top;
  order: 2;
  min-height: 0;
  overflow: hidden;
  border-top-left-radius: clamp(28px, 3.2vw, 48px);
  border-bottom-left-radius: clamp(28px, 3.2vw, 48px);
  position: relative;
  z-index: 1;
}

.p-home-hero__col {
  min-height: 0;
  max-height: 100%;
}

.p-home-hero__col--main > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

.p-home-hero__col--sub > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: visible;
}

.p-home-hero__col--sub picture {
  display: block;
  width: 100%;
  max-width: min(100%, clamp(21rem, 22rem + 10.5vw, 34.375rem));
  height: auto;
  max-height: 100%;
}

.p-home-hero__col--sub img,
.p-home-hero__col--sub .p-home-hero__sub-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
  padding: clamp(10px, 1.4vw, 18px) clamp(10px, 1.6vw, 20px);
  display: block;
  box-sizing: border-box;
}

.p-home-hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-home-hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--fv-bg-position);
}

.p-home-hero__bnr {
  position: absolute;
  right: 0;
  bottom: var(--fv-bnr-inset-y);
  z-index: 2;
  display: block;
  width: min(var(--fv-bnr-max-width), calc(100% - var(--fv-bnr-inset-x) * 2));
  height: auto;
  max-height: calc(100% - var(--fv-bnr-inset-y) * 2);
}

.p-home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 10;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.p-home-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
}

.p-home-hero__dot.is-active {
  background: #fff;
}

.p-roll-banner {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.p-roll-banner__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  animation: roll-banner-scroll 24s linear infinite;
}

.p-roll-banner__img {
  display: block;
  width: max(2500px, 75vw);
  height: auto;
  max-width: none;
  flex: 0 0 auto;
  padding-inline: 28px;
  box-sizing: border-box;
}

@keyframes roll-banner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.3333%);
  }
}

.p-home-hubspot-cta {
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) 0;
  background: #fff;
}

.p-home-hubspot-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.p-home-hubspot-cta .hs-cta-embed {
  width: 100% !important;
  max-width: 100% !important;
  /*height: auto !important;*/
}

.p-home-hubspot-cta .hs-cta-embed a {
  display: block;
  width: 100%;
  height: auto;
}

.p-home-hubspot-cta .hs-cta-embed img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .p-home-hubspot-cta__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 0.4rem + 0.8vw, 1.25rem);
  }
}

.p-home-target {
  padding: 80px 0 64px;
  background: #fff;
}

.p-home-target__inner {
  max-width: 980px;
}

.p-home-target__heading {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.p-home-target__heading p {
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.75rem, 1.18rem + 1.62vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.p-home-target__heading h2 {
  margin: 10px 0 60px;
  font-size: clamp(1.75rem, 1.18rem + 1.62vw, 2.5rem);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.p-home-target__grad {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #1fb8ff 0%,
    #62aaf4 30%,
    #9d99d5 66%,
    #ef8fbd 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.4em;
}

.p-home-target__cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: space-between;
  gap: 20px;
}

.p-home-target__card {
  position: relative;
  transition: transform 0.28s ease;
  width: 100%;
}

.p-home-target__thumb {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: visible;
  transition: 0.3s;
  z-index: 1;
}

.p-home-target__thumb::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(90, 210, 248, 0.78) 0%, rgba(248, 170, 209, 0.82) 100%);
  transform: translate(8px, 8px);
  transition: 0.3s;
  pointer-events: none;
}

.p-home-target__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

.p-home-target__text {
  margin: 30px 0 12px;
  font-size: clamp(1rem, 0.9rem + 0.28vw, 1.125rem);
  line-height: 1.7;
  min-height: 2.8em;
  text-align: center;
  font-weight: 500;
}

.p-home-target__card:hover .p-home-target__thumb,
.p-home-target__card:focus-within .p-home-target__thumb {
  transform: translate(8px, 8px);
}

.p-home-target__card:hover .p-home-target__thumb::after,
.p-home-target__card:focus-within .p-home-target__thumb::after {
  opacity: 0;
  transform: translate(8px, 8px);
}

.p-home-courses {
  padding: clamp(4rem, 3rem + 2.8vw, 6.5rem) 0;
  background: linear-gradient(135deg, rgba(232, 249, 255, 0.9) 0%, rgba(255, 244, 249, 0.92) 100%);
}

.p-home-courses__inner {
  max-width: 1080px;
}

.p-home-courses__heading {
  text-align: center;
}

.p-home-courses__heading h2 {
  margin: 0;
}

.p-home-courses__heading h2 img {
  width: min(100%, 30rem);
  height: auto;
}

.p-home-courses__heading p {
  margin: clamp(1rem, 0.8rem + 0.5vw, 1.4rem) auto 0;
  max-width: 42rem;
  color: #000;
  font-size: clamp(1rem, 0.78rem + 0.2vw, 1rem);
  line-height: 1.9;
  font-weight: 400;
}

.p-home-courses__list {
  display: grid;
  gap: clamp(2.4rem, 4rem + 1.8vw, 8rem);
  margin-top: clamp(2.2rem, 1.7rem + 1.5vw, 3.6rem);
}

.p-home-course-card {
  --course-color: #34b7e8;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  border: 9px solid rgba(52, 183, 232, 0.28);
  border-radius: 0.9rem;
  background: #fff;
  text-align: center;
}

.p-home-course-card--frontier {
  --course-color: #00B7EE;
  border-color: rgba(0, 183, 238, 0.20);
}

.p-home-course-card--basic {
  --course-color: #AA90C0;
  border-color: rgba(170, 144, 192, 0.20);
}

.p-home-course-card--coreai {
  --course-color: #EF8DA5;
  border-color: rgba(239, 141, 165, 0.20);
}

.p-home-course-card__header {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  margin: -9px -9px 0;
  padding: 0;
  overflow: visible;
  border-radius: 0.75rem 0.75rem 0 0;
  background: transparent;
  color: #fff;
  z-index: 2;
}

.p-home-course-card__attendance {
  position: relative;
  display: flex;
  flex: 0 0 clamp(5.75rem, 22%, 8.25rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: clamp(0.65rem, 0.5rem + 0.35vw, 0.9rem) clamp(0.45rem, 0.35rem + 0.2vw, 0.65rem);
  border: 2px solid var(--course-color);
  border-right: 0;
  border-radius: 0.65rem 0 0 0;
  background: #fff;
  color: var(--course-color);
  text-align: center;
}

.p-home-course-card__attendance-label {
  font-size: clamp(0.75rem, 0.7rem + 0.12vw, 0.875rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.p-home-course-card__attendance-value {
  font-size: clamp(1.25rem, 1rem + 0.65vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.p-home-course-card__header-main {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: clamp(1rem, 0.8rem + 0.55vw, 1.35rem) clamp(5.5rem, 4rem + 4vw, 11rem) clamp(1rem, 0.8rem + 0.55vw, 1.35rem) clamp(0.85rem, 0.65rem + 0.5vw, 1.25rem);
  border-radius: 0 0.75rem 0 0;
  background: var(--course-color);
  text-align: center;
}

.p-home-course-card__header-main h3 {
  margin: 0;
  font-size: clamp(1.5rem, 1.18rem + 0.85vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
}

.p-home-course-card__header-main p {
  margin: 0.2rem 0 0;
  font-size: clamp(1rem, 0.88rem + 0.34vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
}

.p-home-course-card__icon {
  position: absolute;
  right: clamp(1rem, 0.65rem + 1.2vw, 2.5rem);
  bottom: 0;
  width: clamp(5rem, 6rem + 3.2vw, 10rem);
  height: auto;
  transform: translateY(-18%);
  pointer-events: none;
}

.p-home-course-card--basic .p-home-course-card__icon {
  width: clamp(4.5rem, 3.5rem + 2.8vw, 7.25rem);
  bottom: 3rem;
}

.p-home-course-card--coreai .p-home-course-card__icon {
  width: clamp(4.2rem, 7rem, 9rem);
  bottom: -2rem;
}

.p-home-course-card__tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 0.55rem + 1.2vw, 2rem);
  padding: clamp(1rem, 1.8rem + 0.5vw, 3rem) clamp(1rem, 1.7rem + 1vw, 3rem) 0;
}

.p-home-course-card__tags span {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.55rem;
  border: 2px solid var(--course-color);
  border-radius: 999px;
  font-size: clamp(1rem, 1.15rem, 1.5rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.p-home-course-card--frontier .p-home-course-card__tags span {
  background-color: #e6f5ff;
  border-color: #009EE0;
}

.p-home-course-card--basic .p-home-course-card__tags span {
  background-color: #E9D9EA;
  border-color: #AA90C0;
}

.p-home-course-card--coreai .p-home-course-card__tags span {
  background-color: #F6D7DD;
  border-color: #EF8DA5;
}

.p-home-course-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 0.9rem + 1vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 0.9rem + 1vw, 2rem) clamp(1.1rem, 0.8rem + 1vw, 2rem) clamp(1.4rem, 1rem + 1vw, 2rem);
}

.p-home-course-card--reverse .p-home-course-card__media {
  order: 2;
}

.p-home-course-card--reverse .p-home-course-card__content {
  order: 1;
}

.p-home-course-card__media {
  display: grid;
  gap: clamp(1rem, 0.8rem + 0.8vw, 1.5rem);
}

.p-home-course-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.p-home-course-card__info {
  image-rendering: auto;
}

.p-home-course-card__subtitle {
  display: block;
  width: min(100%, 14.5rem);
  height: auto;
  margin: 0 auto;
}

.p-home-course-card__content p {
  margin: clamp(0.8rem, 0.6rem + 0.4vw, 1.1rem) 0 0;
  color: #000;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.13rem);
  line-height: 1.85;
  font-weight: 500;
  padding-top: 1rem;
  border-top: dashed 2px;
}

.p-home-course-card__content p.p-home-course-card__detail {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.85;
  padding-top: 0;
  text-align: left;
  font-weight: 400;
  border-top: none;
}

.p-home-course-card--frontier .p-home-course-card__content p{
  border-color: var(--course-color); 
}

.p-home-course-card--basic .p-home-course-card__content p{
  border-color: var(--course-color); 
}

.p-home-course-card--coreai .p-home-course-card__content p{
  border-color: var(--course-color); 
}

.p-home-course-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 25rem;
  min-width: min(100%, 18rem);
  min-height: clamp(2.8rem, 2.5rem + 0.65vw, 3.25rem);
  margin-top: clamp(1rem, 0.8rem + 0.5vw, 1.35rem);
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--course-color);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 0.35rem 0 rgba(27, 56, 102, 0.12);
}

.p-home-course-card__btn span {
  transition: transform 0.28s ease;
}

.p-home-course-card__btn:hover,
.p-home-course-card__btn:focus-visible {
  opacity: 1;
  transform: translateY(0.25rem);
  box-shadow: 0 0.1rem 0 rgba(27, 56, 102, 0.1);
}

.p-home-course-card__btn:hover span,
.p-home-course-card__btn:focus-visible span {
  transform: translateX(0.3rem);
}

.p-home-art-course {
  --section-eyebrow-color: #61158c;
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 3.2rem + 3.2vw, 7rem) 0 clamp(4rem, 3rem + 2.4vw, 6rem);
  background: var(--art-course-bg, linear-gradient(135deg, #f7f3fb 0%, #fff 100%)) center / cover no-repeat;
  border-radius: 0 0 1.6rem 1.6rem;
}

.p-home-art-course__inner {
  max-width: 1080px;
}

.p-home-art-course__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  align-items: center;
}

.p-home-art-course__visual {
  position: relative;
  min-height: clamp(16rem, 12rem + 12vw, 25rem);
}

.p-home-art-course__visual > img {
  display: block;
  width: min(100%, 26rem);
  height: auto;
  margin: clamp(3rem, 2rem + 3vw, 5rem) auto 0;
}

.p-home-art-course__visual h2 {
  position: absolute;
  top: clamp(0.5rem, 0.2rem + 1vw, 1.4rem);
  right: clamp(1rem, 0.4rem + 4vw, 5rem);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.4rem + 1vw, 1.3rem);
  margin: 0;
  color: #61158c;
  line-height: 1;
}

.p-home-art-course__visual h2 span {
  position: relative;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  writing-mode: vertical-rl;
}

.p-home-art-course__visual h2 span::before,
.p-home-art-course__visual h2 span::after {
  position: absolute;
  content: "";
  background: #61158c;
}

.p-home-art-course__visual h2 span::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
}

.p-home-art-course__visual h2 span::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
}

.p-home-art-course__visual h2 strong {
  font-size: clamp(3.8rem, 2.8rem + 3.2vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.p-home-art-course__content {
  position: relative;
  padding-top: 0.5rem;
  text-align: center;
}

.p-home-art-course__header {
  position: relative;
  padding-top: 0.5rem;
}

.p-home-art-course__icon {
  position: absolute;
  top: -1.75rem;
  right: clamp(-0.25rem, -0.75rem + 1.5vw, 0.75rem);
  width: clamp(5.25rem, 4.2rem + 2.7vw, 7.5rem);
  height: auto;
}

.p-home-art-course__header .c-section-eyebrow {
  justify-content: center;
  color: #61158c;
}

.p-home-art-course__header h2::after {
  display: block;
  width: min(100%, 34rem);
  margin: clamp(0.75rem, 0.6rem + 0.35vw, 1rem) auto 0;
  border-top: 2px dashed #c8b0d8;
  content: "";
}

.p-home-art-course__text {
  margin-top: clamp(1.35rem, 1.1rem + 0.55vw, 1.85rem);
  text-align: left;
}

.p-home-art-course__text p {
  margin: 0.55rem 0 0;
  color: #000;
  font-size: clamp(1rem, 0.84rem + 0.18vw, 1rem);
  line-height: 1.85;
  font-weight: 400;
}

.p-home-art-course__text p:first-child {
  margin-top: 0;
  text-align: center;
  font-size: clamp(1rem, 1.125rem, 1.125rem);
  font-weight: 600;
  line-height: 1.8;
}

.p-home-art-course__text span {
  color: #61158c;
  font-weight: 700;
  background: linear-gradient(transparent 52%, rgba(180, 137, 203, 0.28) 52%);
  font-size: 1.125rem;
}

.p-home-art-course__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 1rem + 2vw, 3.2rem);
  margin-top: clamp(3rem, 2rem + 3.2vw, 5.5rem);
}

.p-home-art-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.2rem;
  align-items: center;
  align-content: start;
}

.p-home-art-feature__num {
  grid-row: 1;
  margin: 0;
  color: transparent;
  font-size: clamp(3.2rem, 2.5rem + 2vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
  -webkit-text-stroke: clamp(2px, 0.055em, 3.5px) #501875;
  -webkit-text-fill-color: transparent;
  paint-order: stroke fill;
}

.p-home-art-feature h3 {
  grid-row: 1;
  margin: 0;
  color: #000;
  font-size: clamp(1.125rem, 0.95rem + 0.55vw, 1.5rem);
  font-weight: 500;
  line-height: 1.35;
}

.p-home-art-feature__body {
  display: contents;
}

.p-home-art-feature img {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.55rem;
  margin-top: 15px;
}

.p-home-art-feature__body p {
  grid-column: 1 / -1;
  margin: 0.6rem 0 0;
  color: #000;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 500;
}

.p-home-art-course__cta {
  margin: clamp(2rem, 1.4rem + 1.8vw, 3.2rem) 0 0;
  text-align: center;
}

.p-home-art-course__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 25rem;
  min-width: min(100%, 18rem);
  min-height: clamp(2.8rem, 2.5rem + 0.65vw, 3.25rem);
  margin-top: clamp(1rem, 0.8rem + 0.5vw, 1.35rem);
  padding: 0 1.5rem;
  border-radius: 999px;
  background: #61158c;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 0.35rem 0 rgba(27, 56, 102, 0.12);
}

.p-home-art-course__btn:hover,
.p-home-art-course__btn:focus-visible {
  transform: translateY(0.25rem);
  box-shadow: 0 0.1rem 0 rgba(27, 56, 102, 0.1);
}

.p-home-art-course__btn span {
  transition: transform 0.28s ease;
}

.p-home-art-course__btn:hover span,
.p-home-art-course__btn:focus-visible span {
  transform: translateX(0.3rem);
}

.p-home-support {
  --section-eyebrow-color: #1765b9;
  --support-gradient: linear-gradient(135deg, #5bb2d7 0%, #8ca4d9 48%, #e597b2 100%);
  --support-gradient-line: linear-gradient(90deg, #5bb2d7 0%, #8ca4d9 45%, #e597b2 100%);
  --support-gradient-stat: linear-gradient(90deg, #5db7e5 0%, #8aacd8 22%, #b194cf 52%, #d89ebb 78%, #e890b6 100%);
  padding: clamp(3.5rem, 2.8rem + 2vw, 5.5rem) 0;
  background: #fff;
}

.p-home-support__inner {
  max-width: 1080px;
}

.p-home-support__flag {
  display: block;
  width: clamp(2rem, 1.6rem + 1vw, 2.75rem);
  height: auto;
  margin: 0 auto 0.75rem;
}

.p-home-support__intro p {
  margin: 0 auto;
  color: #000;
  font-size: clamp(1rem, 0.82rem + 0.2vw, 1rem);
  line-height: 1.85;
  font-weight: 400;
  text-align: center;
}

.p-home-support__panel {
  margin-top: clamp(2rem, 1.4rem + 2vw, 3.5rem);
  padding: clamp(2rem, 1.5rem + 1.5vw, 3rem) clamp(1.75rem, 1.2rem + 2vw, 3.5rem);
  border: 2px solid transparent;
  border-radius: 2.5rem;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--support-gradient) border-box;
}

.p-home-support__panel-title {
  margin: 0;
  color: #000;
  font-size: clamp(1.125rem, 0.98rem + 0.45vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-home-support__panel-title-note {
  margin-left: 0.35em;
  font-size: clamp(1rem, 0.86rem + 0.32vw, 1.125rem);
  font-weight: 500;
}

.p-home-support__panel-divider {
  display: block;
  width: auto;
  height: 3px;
  margin: clamp(0.75rem, 0.65rem + 0.35vw, 1.25rem) 0 clamp(0.25rem, 0.2rem + 0.12vw, 0.3125rem);
  border: 0;
  background: var(--support-gradient-line);
}

.p-home-support__panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 0.8rem + 2vw, 3rem);
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}

.p-home-support__stats {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  justify-items: start;
  column-gap: clamp(1rem, 0.65rem + 0.9vw, 1.75rem);
  row-gap: clamp(1.75rem, 1.1rem + 1.1vw, 2.5rem);
  width: 100%;
  justify-self: start;
  align-self: center;
}

.p-home-support__stat {
  display: contents;
  margin: 0;
}

.p-home-support__stat dt {
  margin: 0;
  color: #000;
  font-size: clamp(1rem, 0.86rem + 0.32vw, 1.125rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  align-self: end;
  padding-bottom: 0.2em;
}

.p-home-support__stat-value {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  align-self: end;
  margin: 0;
  white-space: nowrap;
  background: var(--support-gradient-stat);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.p-home-support__stat-int,
.p-home-support__stat-dec {
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-home-support__stat-int {
  font-size: clamp(4.25rem, 2.8rem + 5.5vw, 8rem);
}

.p-home-support__stat-dec {
  font-size: clamp(2.125rem, 1.4rem + 2.8vw, 4.5rem);
}

.p-home-support__media {
  position: relative;
  width: 100%;
  max-width: min(100%, 22rem);
  margin-inline: auto;
  justify-self: center;
  padding-top: clamp(1rem, 0.75rem + 0.8vw, 1.5rem);
}

.p-home-support__sparkle {
  position: absolute;
  top: -42px;
  right: clamp(-0.5rem, -0.2rem + 0.5vw, 0.5rem);
  width: clamp(3.25rem, 2.6rem + 1.6vw, 4.75rem);
  height: auto;
  z-index: 1;
}

.p-home-support__photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.p-home-support__cta {
  margin: clamp(2rem, 1.4rem + 1.8vw, 3rem) 0 0;
  text-align: center;
}

.p-home-support__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 25rem;
  min-width: min(100%, 18rem);
  min-height: clamp(2.8rem, 2.5rem + 0.65vw, 3.25rem);
  padding: 0 1.5rem;
  border: 2px solid #1765b9;
  border-radius: 999px;
  background: #fff;
  color: #1765b9;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  box-shadow: 0 0.35rem 0 rgba(27, 56, 102, 0.12);
}

.p-home-support__btn span {
  transition: transform 0.28s ease;
}

.p-home-support__btn:hover,
.p-home-support__btn:focus-visible {
  transform: translateY(0.25rem);
  background: rgba(23, 101, 185, 0.06);
  box-shadow: 0 0.1rem 0 rgba(27, 56, 102, 0.1);
}

.p-home-support__btn:hover span,
.p-home-support__btn:focus-visible span {
  transform: translateX(0.3rem);
}

.p-home-aboutus {
  padding: clamp(3.6rem, 3.2rem + 1vw, 4.8rem) 0 clamp(3.2rem, 2.8rem + 1vw, 4.4rem);
  background: #fff;
  overflow-x: clip;
}

.p-home-aboutus__inner {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding-inline: 0;
  display: grid;
  grid-template-columns: minmax(0, 57%) minmax(0, 43%);
  gap: clamp(1.2rem, 0.7rem + 1.6vw, 2.6rem);
  align-items: start;
}

.p-home-aboutus__media {
  position: relative;
  margin-top: -0.45rem;
  z-index: 3;
  max-height: 720px;
  overflow: hidden;
}

.p-home-aboutus__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 clamp(1.8rem, 2.8vw, 2.8rem) clamp(1.8rem, 2.8vw, 2.8rem) 0;
}

.p-home-aboutus__content {
  position: relative;
  margin-top: 6rem;
  margin-left: clamp(-8rem, -5.5vw, -3.25rem);
  background: linear-gradient(
    to bottom right,
    rgba(0, 183, 238, 0.3) 0%,
    rgba(181, 187, 221, 0.3) 28%,
    rgba(181, 187, 221, 0.3) 48%,
    rgba(229, 172, 188, 0.3) 72%,
    rgba(237, 166, 182, 0.3) 86%,
    rgba(239, 152, 141, 0.3) 100%
  );
  border-radius: 100px 0 0 100px;
  padding:
    clamp(3.9375rem, 3.3875rem + 0.9vw, 5rem)
    clamp(2.1rem, 1.5rem + 1.4vw, 3.2rem)
    clamp(3.9375rem, 3.3875rem + 0.9vw, 5rem)
    clamp(7.2rem, 5.4vw, 10.2rem);
  z-index: 1;
  text-align: center;
}

.c-section-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--section-eyebrow-color, #1765b9);
}

.c-section-eyebrow::after {
  content: "";
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: var(--section-eyebrow-line-color, #f3a5ca);
}

.p-home-aboutus__title {
  display: block;
  margin-top: 1.25rem;
  width: min(100%, 38.25rem);
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.p-home-aboutus__icon {
  position: absolute;
  top: -3.5rem;
  right: 4.25rem;
  width: 9.375rem;
  height: auto;
}

.p-home-aboutus__text {
  margin-top: clamp(0.8rem, 0.5rem + 0.7vw, 1.1rem);
}

.p-home-aboutus__text p {
  margin: 1rem auto 0;
  max-width: 33.75rem;
  font-size: clamp(1rem, 0.76rem + 0.2vw, 1rem);
  line-height: 1.85;
  font-weight: 400;
  color: #000;
  text-align: left;
}

.p-home-aboutus__text p:first-child {
  margin-top: 2rem;
}

.p-home-aboutus__cta {
  margin: 2.5rem 0 0;
}

.p-home-aboutus__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: clamp(3.75rem, 3.3rem + 0.95vw, 5.25rem);
  width: 25rem;
  padding: 0 clamp(2rem, 1.5rem + 1.2vw, 3rem);
  border-radius: 999px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #1fb8ff 0%, #66acf3 40%, #a89fd7 72%, #ef98be 100%) border-box;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-position 0.45s ease;
  background-size: 220% 220%;
  box-shadow: 0 2px 8px rgba(80, 129, 212, 0.08);
}

.p-home-aboutus__btn-text,
.p-home-aboutus__btn-arrow {
  background: linear-gradient(90deg, #24b9ff 0%, #68adf3 42%, #a7a0d7 72%, #ee98bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}

.p-home-aboutus__btn-arrow {
  font-size: 1.2em;
  transition: transform 0.28s ease;
}

.p-home-aboutus__btn:hover,
.p-home-aboutus__btn:focus-visible {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 10px 20px rgba(96, 136, 214, 0.2);
}

.p-home-aboutus__btn:hover .p-home-aboutus__btn-arrow,
.p-home-aboutus__btn:focus-visible .p-home-aboutus__btn-arrow {
  transform: translateX(5px);
}

.p-home-admissions {
  background: #f7f8f8;
  padding: clamp(2.6rem, 2.1rem + 1.3vw, 3.8rem) 0;
  overflow: hidden;
}

.p-home-admissions--pink {
  background: #f8e2e8;
}

.p-home-admissions__header,
.p-home-support__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: clamp(1.4rem, 1rem + 1vw, 2.2rem);
  padding-inline: clamp(1rem, 0.75rem + 1vw, 1.5rem);
  text-align: center;
}

.p-home-admissions__header .c-section-eyebrow,
.p-home-support__header .c-section-eyebrow {
  justify-content: center;
}

.p-home-admissions__header h2,
.p-home-support__header h2 {
  margin: 0.7rem 0 2.5rem;
  width: 100%;
  max-width: 100%;
  color: #000;
  font-size: clamp(1.5rem, 1.16rem + 0.95vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.p-home-art-course__header h2 {
  margin: 0.7rem 0 0;
  color: #000;
  font-size: clamp(1.5rem, 1.16rem + 0.95vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
}

@media (min-width: 1024px) {
  .p-home-art-course__header h2 {
    white-space: nowrap;
    font-size: clamp(1.35rem, 1rem + 0.72vw, 1.85rem);
    letter-spacing: -0.01em;
  }
}

.p-home-admissions__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 1rem + 1.8vw, 3rem);
  align-items: center;
}

.p-home-admissions__media img {
  display: block;
  width: 100%;
  height: auto;
}

.p-home-admissions__content {
  position: relative;
  text-align: center;
  padding: 0.8rem 0.2rem;
}

@media (min-width: 1025px) {
  .p-home-admissions__content {
    padding-top: clamp(3rem, 2rem + 1.5vw, 4.5rem);
  }
}

.p-home-admissions__icon {
  position: absolute;
  top: -12.8125rem;
  right: clamp(0.2rem, 0.1rem + 1.6vw, 2rem);
  width: 12.5rem;
  height: auto;
}

.p-home-admissions__title {
  display: block;
  width: min(100%, 22rem);
  margin: 0 auto;
  height: auto;
}

.p-home-admissions__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 0.7rem + 0.5vw, 1.15rem);
  margin: 1.35rem 0 0;
}

.p-home-admissions__cta .p-home-cta-band__btn,
.p-home-admissions__cta .p-home-admissions__btn {
  width: min(100%, 25rem);
}

.p-home-admissions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: clamp(3.75rem, 3.3rem + 0.95vw, 5.25rem);
  width: 25rem;
  padding: 0 clamp(1.8rem, 1.3rem + 1vw, 2.8rem);
  border-radius: 999px;
  border: 2px solid #aa90c0;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #f6effb 50%, #fff 100%);
  background-size: 220% 100%;
  color: #aa90c0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-position 0.4s ease, color 0.28s ease;
  box-shadow: 0 0 0 rgba(126, 82, 166, 0);
}

.p-home-admissions__btn span {
  transition: transform 0.28s ease;
}

.p-home-admissions__btn:hover,
.p-home-admissions__btn:focus-visible {
  transform: translateY(-3px);
  background-position: 100% 0;
  color: #aa90c0;
  box-shadow: 0 10px 20px rgba(170, 144, 192, 0.2);
}

.p-home-admissions__btn:hover span,
.p-home-admissions__btn:focus-visible span {
  transform: translateX(6px);
}

.p-home-admissions__text {
  margin-top: 1.15rem;
}

.p-home-admissions__text p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.85;
}

.p-home-admissions__text p:first-child {
  margin-top: 0;
}

.p-home-cta-band {
  background: #004098;
  padding: clamp(1.35rem, 1.08rem + 0.72vw, 2rem) 1rem;
}

.p-home-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 1.2rem + 4vw, 8rem);
}

.p-home-cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 25rem;
  min-height: clamp(3.75rem, 3.3rem + 0.95vw, 5.25rem);
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-position 0.45s ease, background 0.35s ease;
}

.p-home-cta-band__btn span {
  transition: transform 0.28s ease;
}

.p-home-cta-band__btn--request {
  border: 3px solid #00b7ee;
  background: #fff;
  color: #00b7ee;
  box-shadow: 0 0 0 rgba(0, 183, 238, 0);
}

.p-home-cta-band__btn--event {
  border-color: transparent;
  background: linear-gradient(90deg, #41aedd 0%, #8ca4d9 55%, #e788b5 100%);
  color: #fff;
/*
  box-shadow: 0 8px 0 rgba(0, 47, 118, 0.28), 0 12px 20px rgba(0, 0, 0, 0.18);
*/
}

.p-home-cta-band__btn:hover,
.p-home-cta-band__btn:focus-visible {
  transform: translateY(-3px);
  background-position: 100% 0;
  box-shadow: 0 10px 20px rgba(0, 64, 152, 0.24);
}

.p-home-cta-band__btn--request:hover,
.p-home-cta-band__btn--request:focus-visible {
  background: rgba(0, 183, 238, 0.14);
  color: #00b7ee;
  box-shadow: 0 10px 20px rgba(0, 183, 238, 0.2);
}

.p-home-cta-band__btn--event:hover,
.p-home-cta-band__btn--event:focus-visible {
  background: linear-gradient(90deg, #e788b5 0%, #8ca4d9 45%, #41aedd 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 47, 118, 0.24);
}

.p-home-cta-band__btn:hover span,
.p-home-cta-band__btn:focus-visible span {
  transform: translateX(6px);
}

@media (min-width: 1025px) {
  .p-home-aboutus__inner {
    --aboutus-left-width: 57.2917vw;
    --aboutus-right-width: 65.8854vw;
    --aboutus-overlap: calc(var(--aboutus-left-width) + var(--aboutus-right-width) - 100vw);
    display: flex;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .p-home-aboutus__media {
    flex: 0 0 var(--aboutus-left-width);
    width: var(--aboutus-left-width);
    margin-top: 0;
    z-index: 3;
  }

  .p-home-aboutus__content {
    flex: 0 0 var(--aboutus-right-width);
    width: var(--aboutus-right-width);
    margin-top: 6rem;
    margin-left: calc(-1 * var(--aboutus-overlap));
    border-radius: 100px 0 0 100px;
    padding-left: calc(var(--aboutus-overlap) + clamp(2.2rem, 1.6rem + 1.5vw, 3.4rem));
    padding-right: clamp(2.4rem, 1.8rem + 1.2vw, 3.5rem);
    z-index: 1;
  }
}

.p-home-section {
  padding: 64px 0;
}

.p-home-section--alt {
  background: #f8fbff;
}

.p-home-section__cta {
  margin-top: 26px;
}

.p-section-heading {
  margin-bottom: 22px;
}

.p-section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.p-section-heading p {
  margin: 0;
}

.p-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.p-course-card {
  border-radius: 18px;
  border: 1px solid #e1e8f4;
  background: #fff;
  padding: 24px;
}

.p-course-card h3 {
  margin: 0 0 8px;
}

.p-course-card p {
  margin: 0 0 14px;
}

.p-course-card--blue {
  box-shadow: inset 0 0 0 2px rgba(0, 85, 165, 0.12);
}

.p-course-card--purple {
  box-shadow: inset 0 0 0 2px rgba(125, 102, 197, 0.16);
}

.p-course-card--pink {
  box-shadow: inset 0 0 0 2px rgba(243, 155, 194, 0.2);
}

.p-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.p-feature-card {
  border-radius: 16px;
  border: 1px solid #e1e8f4;
  padding: 22px;
  background: #fff;
}

.p-feature-card h3 {
  margin: 0 0 8px;
}

.p-feature-card p {
  margin: 0;
}

.p-post-list {
  display: grid;
  gap: 16px;
}

.p-post-list--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-post-card {
  background: #fff;
  border: 1px solid #e6ecf5;
  border-radius: 12px;
  padding: 20px;
}

.p-home-voices {
  --section-eyebrow-color: #1765b9;
  --voice-card-width: min(880px, calc(100vw - 7rem));
  --voice-card-gap: clamp(1rem, 0.7rem + 1vw, 1.25rem);
  position: relative;
  padding: clamp(3rem, 2.25rem + 3vw, 6rem) 0;
  background: linear-gradient(
    90deg,
    #d4f0fb 0%,
    #e7f1fa 22%,
    #efe9f3 50%,
    #faeef0 78%,
    #fcedf0 100%
  );
  overflow: hidden;
}

.p-home-voices__icon {
  position: absolute;
  top: clamp(1.25rem, 0.75rem + 1.25vw, 2.5rem);
  right: max(1.25rem, calc((100vw - 1080px) / 2 + 0.5rem));
  width: clamp(4.5rem, 3rem + 4vw, 8.75rem);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.p-home-voices__inner {
  max-width: 1080px;
}

.p-home-voices__intro {
  margin: 0 auto clamp(2rem, 1.4rem + 2vw, 3rem);
  max-width: 42rem;
  color: #000;
  font-size: clamp(1rem, 0.82rem + 0.2vw, 1rem);
  line-height: 1.85;
  font-weight: 400;
  text-align: center;
}

.p-home-voices__slider {
  width: 100%;
}

.p-home-voices__slider.is-single .p-home-voices__nav {
  display: none;
}

.p-home-voices__slider.is-single .p-home-voices__viewport {
  cursor: default;
}

.p-home-voices__slider.is-single .p-home-voices__track {
  justify-content: center;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  transform: none !important;
}

.p-home-voices__slider.is-single .p-home-voice-card {
  opacity: 1;
}

.p-home-voices__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.p-home-voices__viewport.is-dragging {
  cursor: grabbing;
}

.p-home-voices__viewport.is-dragging .p-home-voice-card {
  user-select: none;
}

.p-home-voices__track {
  display: flex;
  gap: var(--voice-card-gap);
  padding-inline: calc((100vw - var(--voice-card-width)) / 2);
  transition: transform 0.5s ease;
  will-change: transform;
}

.p-home-voice-card {
  --course-color: #00b7ee;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(1.25rem, 0.9rem + 1.4vw, 2.25rem);
  align-items: start;
  flex: 0 0 var(--voice-card-width);
  min-width: 0;
  padding: clamp(1.75rem, 1.4rem + 1vw, 2.75rem);
  border: 2px solid var(--course-color);
  border-radius: 2.5rem;
  background: #fff;
  opacity: 0.55;
  transition: opacity 0.45s ease;
}

.p-home-voice-card.is-clone {
  pointer-events: none;
}

.p-home-voice-card.is-active {
  opacity: 1;
}

.p-home-voice-card--frontier {
  --course-color: #00b7ee;
}

.p-home-voice-card--basic {
  --course-color: #aa90c0;
}

.p-home-voice-card--coreai {
  --course-color: #ef8da5;
}

.p-home-voice-card__lead {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.p-home-voice-card__title {
  margin: 0;
  align-self: flex-start;
  max-width: 100%;
  padding-left: 0.75rem;
  border-left: 5px solid var(--course-color);
  color: #000;
  font-size: clamp(1rem, 0.92rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.p-home-voice-card__meta {
  margin: 0;
  padding-top: 0.5em;
  padding-left: calc(0.75rem + 5px);
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  border-left: 5px solid var(--course-color);
}

.p-home-voice-card__meta-course {
  font-size: clamp(1rem, 0.78rem + 0.12vw, 1rem);
}

.p-home-voice-card__meta-name {
  margin-left: 0.35em;
  font-size: clamp(1rem, 0.92rem + 0.28vw, 1.125rem);
}

.p-home-voice-card__photo {
  display: block;
  width: 100%;
  margin-top: clamp(0.75rem, 0.55rem + 0.5vw, 1rem);
  aspect-ratio: 300 / 216.54;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.25rem;
}

.p-home-voice-card__body {
  min-width: 0;
  padding-top: 0;
}

.p-home-voice-card__body p {
  margin: 0;
  color: #000;
  font-size: clamp(1rem, 0.78rem + 0.15vw, 1rem);
  font-weight: 400;
  line-height: 1.85;
}

.p-home-voices__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}

.p-home-voices__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1765b9;
  cursor: pointer;
  transition: opacity 0.28s ease;
}

.p-home-voices__arrow::before {
  content: "";
  display: block;
  width: clamp(0.875rem, 0.8rem + 0.25vw, 1.0625rem);
  height: clamp(1rem, 0.92rem + 0.3vw, 1.1875rem);
  background: currentColor;
}

.p-home-voices__arrow--prev::before {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.p-home-voices__arrow--next::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-home-voices__arrow:hover,
.p-home-voices__arrow:focus-visible {
  opacity: 0.65;
}

.p-home-voices__cta {
  margin: clamp(2rem, 1.4rem + 1.8vw, 3rem) 0 0;
  text-align: center;
}

.p-home-voices__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 25rem;
  min-width: min(100%, 18rem);
  min-height: clamp(2.8rem, 2.5rem + 0.65vw, 3.25rem);
  padding: 0 1.5rem;
  border: 2px solid #1765b9;
  border-radius: 999px;
  background: #fff;
  color: #1765b9;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  box-shadow: 0 0.35rem 0 rgba(27, 56, 102, 0.12);
}

.p-home-voices__btn span {
  transition: transform 0.28s ease;
}

.p-home-voices__btn:hover,
.p-home-voices__btn:focus-visible {
  transform: translateY(0.25rem);
  background: rgba(23, 101, 185, 0.06);
  box-shadow: 0 0.1rem 0 rgba(27, 56, 102, 0.1);
}

.p-home-voices__btn:hover span,
.p-home-voices__btn:focus-visible span {
  transform: translateX(0.3rem);
}

.p-home-campus {
  position: relative;
  padding: clamp(3rem, 2.5rem + 3.5vw, 7rem) 0 clamp(3.5rem, 2.75rem + 4vw, 8rem);
  background: #fff;
}

.p-home-campus__icon {
  position: absolute;
  width: clamp(5.5rem, 4.25rem + 3.5vw, 9.375rem);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.p-home-campus__icon--top {
  top: clamp(1.25rem, 0.75rem + 1.25vw, 2.5rem);
  right: max(1.25rem, calc((100vw - 1080px) / 2 + 0.5rem));
}

.p-home-campus__icon--bottom {
  bottom: clamp(1.5rem, 0.75rem + 2vw, 3rem);
  left: max(1.25rem, calc((100vw - 1080px) / 2 + 0.5rem));
}

.p-home-campus__inner {
  max-width: 1080px;
}

.p-home-campus__intro {
  margin: 0 auto clamp(2rem, 1.4rem + 2vw, 3rem);
  color: #000;
  font-size: clamp(1rem, 0.82rem + 0.2vw, 1rem);
  line-height: 1.85;
  font-weight: 400;
  text-align: center;
}

.p-home-campus__intro p {
  margin: 0;
}

.p-home-campus__intro-lead {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 0.88rem + 0.22vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.75;
}

.p-home-campus__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 1rem + 2.5vw, 3.125rem);
}

.p-home-campus-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: clamp(2rem, 1.5rem + 1.5vw, 2.75rem) clamp(1.75rem, 1.35rem + 1.2vw, 2.5rem);
  border: 3px solid transparent;
  border-radius: 2.5rem;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #41aedd 0%, #8ca4d9 55%, #e788b5 100%) border-box;
}

.p-home-campus-card__title {
  margin: 0;
  color: #000;
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-home-campus-card__divider {
  display: block;
  width: 100%;
  height: 3px;
  margin: clamp(1rem, 0.75rem + 0.6vw, 1.25rem) 0 clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #41aedd 0%, #8ca4d9 55%, #e788b5 100%);
}

.p-home-campus-card__text {
  margin: 0;
  color: #000;
  font-size: clamp(1rem, 0.78rem + 0.15vw, 1rem);
  font-weight: 400;
  line-height: 2;
  text-align: left;
}

.p-home-campus-card__media {
  display: block;
  width: 100%;
  max-width: 25.625rem;
  margin: clamp(1.5rem, 1.2rem + 1vw, 2rem) auto 0;
}

.p-home-campus__cta {
  margin: clamp(2rem, 1.4rem + 1.8vw, 3rem) 0 0;
  text-align: center;
}

.p-home-campus__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 25rem;
  max-width: 100%;
  min-height: clamp(2.8rem, 2.5rem + 0.65vw, 3.25rem);
  padding: 0 1.5rem;
  border: 2px solid #1765b9;
  border-radius: 999px;
  background: #fff;
  color: #1765b9;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  box-shadow: 0 0.35rem 0 rgba(27, 56, 102, 0.12);
}

.p-home-campus__btn span {
  transition: transform 0.28s ease;
}

.p-home-campus__btn:hover,
.p-home-campus__btn:focus-visible {
  transform: translateY(0.25rem);
  background: rgba(23, 101, 185, 0.06);
  box-shadow: 0 0.1rem 0 rgba(27, 56, 102, 0.1);
}

.p-home-campus__btn:hover span,
.p-home-campus__btn:focus-visible span {
  transform: translateX(0.3rem);
}

.p-home-faq {
  --section-eyebrow-color: #1765b9;
  position: relative;
  padding: clamp(3rem, 2.5rem + 3.5vw, 7rem) 0 clamp(3.5rem, 2.75rem + 4vw, 8rem);
  background: url(../images/frontier-course/back-check.png);
  background-repeat: repeat-y;
}

.p-home-faq__icon {
  position: absolute;
  top: clamp(2.5rem, 0.5rem + 10vw, 10.625rem);
  right: max(1.25rem, calc((100vw - 1080px) / 2 + 0.5rem));
  width: clamp(3.5rem, 2.5rem + 2.5vw, 5.875rem);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.p-home-faq__inner {
  max-width: 1080px;
}

.p-home-faq__list {
  display: grid;
  gap: clamp(1rem, 0.75rem + 0.8vw, 1.5rem);
}

.p-home-faq-item {
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(27, 56, 102, 0.08);
}

.p-home-faq-item__heading {
  margin: 0;
}

.p-home-faq-item__trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.75rem, 0.55rem + 0.6vw, 1.25rem);
  align-items: center;
  width: 100%;
  padding: clamp(1.25rem, 1rem + 0.8vw, 1.75rem) clamp(1.25rem, 1rem + 1vw, 2rem);
  border: 0;
  background: transparent;
  color: #000;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.p-home-faq-item__q {
  color: #00b7ee;
  font-size: clamp(1.75rem, 1.5rem + 0.8vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.p-home-faq-item__question {
  font-size: clamp(1rem, 0.88rem + 0.22vw, 1rem);
  font-weight: 500;
  line-height: 1.65;
}

.p-home-faq-item__toggle {
  position: relative;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #024099;
  font-size: 0;
  line-height: 1;
}

.p-home-faq-item__toggle::before,
.p-home-faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.125rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.p-home-faq-item__toggle::before {
  transform: translate(-50%, -50%);
}

.p-home-faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-home-faq-item.is-open .p-home-faq-item__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.p-home-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.p-home-faq-item.is-open .p-home-faq-item__panel {
  grid-template-rows: 1fr;
}

.p-home-faq-item__panel-body {
  overflow: hidden;
  min-height: 0;
}

.p-home-faq-item__answer {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(0.75rem, 0.55rem + 0.6vw, 1.25rem);
  align-items: start;
  padding: clamp(1rem, 0.75rem + 0.6vw, 1.25rem) clamp(1.25rem, 1rem + 1vw, 2rem) clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
}

.p-home-faq-item__answer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.25rem, 1rem + 1vw, 2rem);
  right: clamp(1.25rem, 1rem + 1vw, 2rem);
  height: 2px;
  background: linear-gradient(90deg, #3ca8e1 0%, #9397c7 50%, #d58bb3 100%);
}

.p-home-faq-item__a {
  color: #ef8da5;
  font-size: clamp(1.75rem, 1.5rem + 0.8vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
}

.p-home-faq-item__answer p {
  margin: 0;
  color: #000;
  font-size: clamp(1rem, 0.88rem + 0.22vw, 1rem);
  font-weight: 400;
  line-height: 2;
}

.p-home-faq-item__answer strong {
  color: #024099;
  font-weight: 500;
}

.p-home-faq__cta {
  margin: clamp(2rem, 1.4rem + 1.8vw, 3rem) 0 0;
  text-align: center;
}

.p-home-news {
  --section-eyebrow-color: #024099;
  --home-news-width: 850px;
  position: relative;
  padding: clamp(1.25rem, 1rem + 1vw, 2rem) 0 clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  background: #fff;
}

.p-home-news .p-home-admissions__header {
  margin-bottom: clamp(0.85rem, 0.65rem + 0.6vw, 1.25rem);
}

.p-home-news .p-home-admissions__header h1,
.p-home-news .p-home-admissions__header h2 {
  margin: 0.5rem 0 1rem;
  width: 100%;
  max-width: 100%;
  color: #000;
  font-size: clamp(1.5rem, 1.16rem + 0.95vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.p-home-news__breadcrumbs {
  width: min(850px, calc(100% - 32px));
  max-width: 850px;
  padding-top: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.p-home-news--archive {
  padding-top: clamp(0.5rem, 0.35rem + 0.5vw, 1rem);
  padding-bottom: clamp(5rem, 4rem + 3vw, 6.5rem);
}

.p-home-news--archive .p-home-news__icon {
  bottom: clamp(0.75rem, 0.5rem + 0.8vw, 1.5rem);
}

.p-home-news__categories {
  margin: 0 0 clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
}

.p-home-news__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-home-news__category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
  padding: 0.5rem 1rem;
  border: 2px solid #00b7ee;
  border-radius: 999px;
  color: #00b7ee;
  font-size: clamp(0.6875rem, 0.66rem + 0.1vw, 0.75rem);
  font-weight: 500;
  line-height: 1;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.p-home-news__category-list li:nth-child(3n + 2) .p-home-news__category-link:not(.is-current) {
  border-color: #aa90c0;
  color: #aa90c0;
}

.p-home-news__category-list li:nth-child(3n) .p-home-news__category-link:not(.is-current) {
  border-color: #ef8da5;
  color: #ef8da5;
}

.p-home-news__category-link:hover,
.p-home-news__category-link:focus-visible {
  background: rgba(0, 183, 238, 0.08);
}

.p-home-news__category-link.is-current {
  border-color: #024099;
  background: #024099;
  color: #fff;
}

.p-home-news__pagination {
  margin-top: clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  text-align: center;
}

.p-home-news__pagination .navigation {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.p-home-news__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.p-home-news__pagination a,
.p-home-news__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0 0.65rem;
  border: 1px solid #b8d9eb;
  border-radius: 999px;
  color: #024099;
  font-size: 0.9375rem;
  line-height: 1;
}

.p-home-news__pagination a:hover,
.p-home-news__pagination a:focus-visible {
  background: rgba(2, 64, 153, 0.06);
}

.p-home-news__pagination .current {
  border-color: #024099;
  background: #024099;
  color: #fff;
}

.p-home-news__icon {
  position: absolute;
  bottom: clamp(1.25rem, 1rem + 1vw, 2rem);
  left: max(1.25rem, calc((100vw - var(--home-news-width)) / 2 + 0.5rem));
  width: clamp(2.5rem, 2rem + 1.875vw, 3.75rem);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.p-home-news__inner {
  width: min(850px, calc(100% - 32px));
  max-width: 850px;
}

.p-home-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-home-news-item {
  border-bottom: 1px dashed #b8d9eb;
}

.p-home-news-item__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(0.75rem, 0.6rem + 0.6vw, 1.25rem);
  align-items: center;
  padding: clamp(0.85rem, 0.7rem + 0.5vw, 1.15rem) 0;
}

.p-home-news-item__body {
  min-width: 0;
}

.p-home-news-item__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 0.55rem + 0.6vw, 1.25rem);
  margin: 0 0 0.5rem;
}

.p-home-news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.8rem;
  min-height: 1.6rem;
  padding: 0.5rem 1rem;
  border: 2px solid #00b7ee;
  border-radius: 999px;
  color: #00b7ee;
  font-size: clamp(0.6875rem, 0.66rem + 0.1vw, 0.75rem);
  font-weight: 500;
  line-height: 1;
}

.p-home-news-item:nth-child(3n + 1) .p-home-news-item__cat {
  border-color: #00b7ee;
  color: #00b7ee;
}

.p-home-news-item:nth-child(3n + 2) .p-home-news-item__cat {
  border-color: #aa90c0;
  color: #aa90c0;
}

.p-home-news-item:nth-child(3n) .p-home-news-item__cat {
  border-color: #ef8da5;
  color: #ef8da5;
}

.p-home-news-item__meta time {
  color: #666;
  font-size: clamp(1rem, 0.66rem + 0.1vw, 1rem);
  font-weight: 500;
  line-height: 1;
}

.p-home-news-item__title {
  margin: 0;
  color: #000;
  font-size: clamp(1rem, 0.88rem + 0.22vw, 1rem);
  font-weight: 700;
  line-height: 1.65;
}

.p-home-news-item__title a {
  color: inherit;
}

.p-home-news-item__excerpt {
  display: -webkit-box;
  margin: 0.35rem 0 0;
  overflow: hidden;
  color: #000;
  font-size: clamp(1rem, 0.88rem + 0.22vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.p-home-news-item__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: clamp(3.25rem, 3rem + 0.6vw, 3.75rem);
  min-height: clamp(1.75rem, 1.6rem + 0.4vw, 2rem);
  padding: 0 0.85rem;
  border: 1px solid #024099;
  border-radius: 999px;
  color: #024099;
  font-size: clamp(1rem, 0.82rem + 0.2vw, 1rem);
  line-height: 1;
  transition: background 0.28s ease, transform 0.28s ease;
}

.p-home-news-item__link:hover,
.p-home-news-item__link:focus-visible {
  background: rgba(2, 64, 153, 0.06);
  transform: translateX(0.15rem);
}

.p-home-news__cta {
  margin: clamp(1.25rem, 1rem + 0.8vw, 1.75rem) 0 0;
  text-align: center;
}

.p-home-news__empty {
  margin: 0;
  text-align: center;
  color: #666;
  font-size: clamp(1rem, 0.88rem + 0.22vw, 1rem);
}

.p-home-blog {
  --section-eyebrow-color: #004098;
  position: relative;
  padding: clamp(4.5rem, 3.2rem + 3.4vw, 7rem) 0;
  background: #f3f8fd;
}

.p-home-blog__inner {
  max-width: 1080px;
}

.p-home-blog__heading {
  position: relative;
  margin-bottom: clamp(2.4rem, 1.8rem + 1.8vw, 4rem);
  text-align: center;
}

.p-home-blog__heading .c-section-eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}

.p-home-blog__heading h2 {
  margin: 0;
  color: #000;
  font-size: clamp(1.55rem, 1.25rem + 0.85vw, 2.1rem);
  font-weight: 500;
  line-height: 1.45;
}

.p-home-blog__icon {
  position: absolute;
  top: clamp(2.5rem, 0.5rem + 10vw, 9.375rem);
  right: max(1.25rem, calc((100vw - 1080px) / 2 + 0.5rem));
  width: clamp(3.5rem, 2.5rem + 2.5vw, 5.875rem);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.p-home-blog .p-post-list {
  gap: clamp(1.6rem, 1rem + 1.8vw, 3rem);
}

.p-home-blog .p-post-card {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 0.65rem 1.4rem rgba(20, 55, 105, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.p-home-blog .p-post-card:hover,
.p-home-blog .p-post-card:focus-within {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.9rem 1.8rem rgba(20, 55, 105, 0.11);
}

.p-post-card__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 300 / 210;
  background: #e9f1f8;
}

.p-post-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-home-blog .p-post-card:hover .p-post-card__thumb img,
.p-home-blog .p-post-card:focus-within .p-post-card__thumb img {
  transform: scale(1.04);
}

.p-post-card__body {
  padding: clamp(1rem, 0.85rem + 0.45vw, 1.35rem);
}

.p-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
  color: #333;
  font-size: clamp(1rem, 0.64rem + 0.12vw, 1rem);
  font-weight: 500;
}

.p-post-card__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.8rem;
  min-height: 1.6rem;
  padding: 0.5rem 1rem;
  border: 2px solid #00b7ee;
  border-radius: 999px;
  color: #00a6d8;
  font-size: 0.72rem;
  line-height: 1;
}

.p-home-blog .p-post-card:nth-child(3n + 1) .p-post-card__cat {
  border-color: #ef8da5;
  color: #ef7f9b;
}

.p-home-blog .p-post-card:nth-child(3n + 2) .p-post-card__cat {
  border-color: #00b7ee;
  color: #00a6d8;
}

.p-home-blog .p-post-card:nth-child(3n) .p-post-card__cat {
  border-color: #aa90c0;
  color: #8d6fb0;
}

.p-post-card__title {
  margin: 0;
  color: #000;
  font-size: clamp(1rem, 0.88rem + 0.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.55;
}

.p-post-card__title a {
  color: inherit;
}

.p-post-card__excerpt {
  display: -webkit-box;
  margin: 0.75rem 0 0;
  overflow: hidden;
  color: #000;
  font-size: clamp(1rem, 0.7rem + 0.14vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.p-home-blog__cta {
  margin-top: clamp(2.2rem, 1.6rem + 1.8vw, 3.6rem);
  text-align: center;
}

.p-page-hero {
  padding: 56px 0;
  margin-bottom: 10px;
}

.p-page-hero--miryoku {
  background: linear-gradient(130deg, #e6f7ff 0%, #fff 70%);
}

.p-page-hero--courses {
  background: linear-gradient(130deg, #eef3ff 0%, #fff 70%);
}

.p-page-hero--frontier {
  background: linear-gradient(130deg, #e7f8ff 0%, #fff 70%);
}

.p-page-hero--basic {
  background: linear-gradient(130deg, #f2ebff 0%, #fff 70%);
}

.p-page-hero--coreai {
  background: linear-gradient(130deg, #ffeef6 0%, #fff 70%);
}

.p-page-hero__eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.p-page-hero__title {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.p-page-hero__lead {
  margin: 16px 0 0;
  max-width: 760px;
}

.p-number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.p-number-card {
  border-radius: 16px;
  border: 1px solid #dfe6f3;
  padding: 20px;
  background: #fff;
}

.p-number-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 1.45rem;
  font-weight: 800;
}

.p-number-card h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.p-number-card p {
  margin: 0;
}

.p-step-list {
  display: grid;
  gap: 12px;
}

.p-step-item {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #dfe6f3;
  padding: 16px 18px;
}

.p-step-item h3 {
  margin: 0 0 4px;
}

.p-step-item p {
  margin: 0;
}

.p-course-stack {
  display: grid;
  gap: 16px;
}

.p-course-panel {
  border-radius: 18px;
  border: 1px solid #e1e8f4;
  background: #fff;
  padding: 24px;
}

.p-course-panel h2 {
  margin: 0 0 8px;
}

.p-course-panel p {
  margin: 0 0 16px;
}

.p-course-panel--blue {
  border-left: 8px solid #47b9e9;
}

.p-course-panel--purple {
  border-left: 8px solid #a894d9;
}

.p-course-panel--pink {
  border-left: 8px solid #f3aacb;
}

.p-tax-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.p-tax-list a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-muted);
}

/* ヘッダー：1320px以下でハンバーガーメニュー（--header-nav-breakpoint と同期） */
@media (max-width: 1320px) {
  .l-header__inner {
    min-height: 72px;
  }

  .l-header__logo img {
    width: 220px;
  }

  .l-header__menu-toggle {
    display: inline-flex;
  }

  .l-header__nav {
    position: fixed;
    inset: var(--header-height, 72px) 0 0;
    z-index: 100;
    background: #fff;
    display: none;
    overflow-y: auto;
    padding: 25px;
    border-top: 1px solid #dce5f3;
  }

  .l-header__nav.is-open {
    display: block;
  }

  .l-header__menu {
    display: block;
  }

  .l-header__item {
    border-left: 0 !important;
    border-bottom: 0;
  }

  .l-header__link-wrap {
    justify-content: space-between;
  }

  .l-header__link {
    min-height: 52px;
    font-size: 1rem;
    padding: 0;
    justify-content: flex-start;
    width: auto;
    flex: 1;
    text-align: left;
  }

  .l-header__submenu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    position: relative;
  }

  .l-header__submenu-toggle::before,
  .l-header__submenu-toggle::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 11px;
    width: 20px;
    height: 2px;
    background: #2b4a85;
  }

  .l-header__submenu-toggle::after {
    transform: rotate(90deg);
    transition: transform 0.2s ease;
  }

  .l-header__item.is-open .l-header__submenu-toggle::after {
    transform: rotate(0);
  }

  .l-header__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 10px 8px;
    margin: 0;
    display: none;
  }

  .l-header__item.is-open > .l-header__submenu {
    display: block;
  }

  .l-header__submenu li + li {
    margin-top: 0;
  }

  .l-header__submenu a {
    padding: 8px 0;
    font-size: 1rem;
  }

  .l-header__cta {
    margin-top: 16px;
    display: grid;
    gap: 15px;
    justify-items: center;
    justify-content: center;
  }

  .l-header__cta-btn {
    width: 80%;
    min-width: 220px;
    min-height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .l-container {
    width: min(100%, calc(100% - 40px));
  }

  .p-course-grid,
  .p-feature-grid,
  .p-number-grid,
  .p-post-list--3col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-home-target__cards {
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
    gap: 14px;
  }

  .p-home-target__thumb img {
    height: auto;
  }

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

  .p-home-course-card--reverse .p-home-course-card__media,
  .p-home-course-card--reverse .p-home-course-card__content {
    order: initial;
  }

  .p-home-course-card__subtitle {
    margin-inline: auto;
  }

  .p-home-course-card__content {
    text-align: center;
  }

  .p-home-course-card__content p {
    font-size: 1.125rem;
  }

  .p-home-art-course__lead {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .p-home-art-course__visual {
    min-height: auto;
  }

  .p-home-art-course__visual h2 {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .p-home-art-course__content {
    padding-top: 0;
  }

  .p-home-aboutus__inner {
    width: 100%;
    margin-left: 0;
    padding-inline: 24px;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .p-home-aboutus__media img {
    border-radius: 0 1.6rem 1.6rem 0;
  }

  .p-home-aboutus__content {
    margin-top: 0;
    margin-left: 0;
    border-radius: 20px;
    padding:
      clamp(2.4rem, 2rem + 1.4vw, 3rem)
      0.95rem
      clamp(2.4rem, 2rem + 1.4vw, 3rem)
      0.95rem;
  }

  .p-home-admissions__inner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .p-home-admissions__content {
    padding-top: 2.2rem;
  }

  .p-home-admissions__icon {
    top: -3rem;
    right: 0.5rem;
    width: 7rem;
  }

  .l-footer__nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .l-header__inner {
    min-height: 64px;
  }

  .l-header__logo img {
    width: 186px;
  }

  .l-main {
    padding-top: var(--header-height, 64px);
  }

  .p-home-hero {
    --fv-sp-base: 1.25rem;
    --fv-sp-gutter: calc(var(--fv-sp-base) * 0.5);
    height: calc(100svh - var(--header-height, 64px));
    min-height: 0;
    padding-block: 0;
  }

  .p-home-hero__viewport {
    height: 100%;
    min-height: 0;
    touch-action: pan-y;
  }

  .p-home-hero__dots{
	bottom: 10px;
  }
	
  .p-home-hero__slide {
    --fv-sp-radius: calc(var(--fv-sp-base) * 1.75);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 40%) minmax(0, 60%);
    height: 100%;
    max-height: 100%;
    min-height: 0;
    position: relative;
    overflow: hidden;
  }

  .p-home-hero__col--main {
    --fv-bnr-max-width: 100%;
    --fv-bnr-inset-x: 0;
    --fv-bnr-inset-y: 0;
    --fv-bg-position: center center;
    order: 2;
    margin-top: 0;
    margin-left: 30px;
    min-height: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top-left-radius: var(--fv-sp-radius);
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--fv-sp-radius);
    border-bottom-right-radius: 0;
  }

  .p-home-hero__col--main > a {
    position: relative;
    z-index: 1;
  }

  .p-home-hero__col--main .p-home-hero__bnr {
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    z-index: 2;
  }

  .p-home-hero__col--sub {
    order: 1;
    margin-right: 0;
    margin-bottom: 0;
    min-height: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .p-home-hero__col--sub > a {
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--fv-sp-gutter) var(--fv-sp-gutter) 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .p-home-hero__col--sub picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .p-home-hero__col--sub .p-home-hero__sub-img {
    width: auto;
    max-width: 92%;
    height: auto;
    max-height: calc(100% - var(--fv-sp-gutter));
    padding: 0;
    object-fit: contain;
    object-position: center center;
  }

  .p-roll-banner__img {
    width: auto;
    height: 50px;
    padding-inline: 14px;
    margin-top: 20px;
  }

  .p-home-section {
    padding: 44px 0;
  }

  .p-course-grid,
  .p-feature-grid,
  .p-number-grid,
  .p-post-list--3col {
    grid-template-columns: 1fr;
  }

  .p-home-target {
    padding-top: 44px;
  }

  .p-home-target__cards {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
	
  .p-home-target__cards	.p-home-target__card{
		width: calc((100% - 20px) / 2);
	}

  .p-home-target__heading p {
    font-size: 1.2rem;
  }

  .p-home-target__heading h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .p-home-target__thumb img {
    height: auto;
  }

  .p-home-courses {
    padding: 3rem 0;
  }

  .p-home-courses__heading h2 img {
    width: min(100%, 24rem);
  }

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

  .p-home-course-card__tags span{
		font-size: 16px;
  }

  .p-home-course-card__attendance {
    flex: 0 0 clamp(5rem, 26%, 6.5rem);
    padding: 0.55rem 0.35rem;
  }

  .p-home-course-card__attendance-value {
    font-size: 14px;
  }

  .p-home-course-card__header-main {
    padding: 0.85rem 4.75rem 0.85rem 0.65rem;
  }

  .p-home-course-card__header-main h3 {
    font-size: 18px;
  }

  .p-home-course-card__header-main p {
    font-size: 0.8rem;
  }

  .p-home-course-card__icon {
    right: 0.35rem;
    bottom: 0;
    width: 4.5rem;
    transform: translateY(-12%);
  }

  .p-home-course-card--basic .p-home-course-card__icon {
    bottom: 1rem;
  }

  .p-home-course-card--coreai .p-home-course-card__icon {
    bottom: 0.7rem;
    width: 78px;
  }

  .p-home-course-card__body {
    padding-inline: 1rem;
  }

  .p-home-course-card__btn {
    width: 100%;
    min-width: 0;
    font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  }

  .p-home-art-course__btn {
    width: 100%;
    min-width: 0;
    font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  }

  .p-home-art-course {
    padding: 0 0 3rem;
  }

  .p-home-art-course__visual h2 strong {
    font-size: 3.4rem;
  }

  .p-home-art-course__visual h2 span {
    width: 3.8rem;
    height: 3.8rem;
  }

  .p-home-art-course__visual > img {
    display: block;
    width: min(90%, 26rem);
    margin: 2rem auto 0;
  }

  .p-home-art-course__icon {
    top: -0.25rem;
    right: 0;
  }

  .p-home-art-course__header h2::after {
    margin-top: 0.85rem;
  }

  .p-home-art-course__text {
    margin-top: 1.25rem;
  }

  .p-home-art-course__features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .p-home-art-feature {
    max-width: none;
    margin-inline: 0;
  }

  .p-home-art-feature__body {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 0.75rem;
    align-items: center;
    grid-column: 1 / -1;
    border-top: 2px dashed #785295;
  }

  .p-home-art-feature img {
    grid-column: auto;
    width: 100%;
    margin-top: 0.5rem;
  }

  .p-home-art-feature__body p {
    grid-column: auto;
    margin: 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-home-support {
    padding: 3rem 0;
  }

  .p-home-support__intro p {
    text-align: left;
  }

  .p-home-support__panel {
    padding: 1.75rem 1.25rem;
    border-radius: 1.75rem;
  }

  .p-home-support__panel-body {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
  }

  .p-home-support__stats {
    margin-top: 12px;
    justify-content: center;
    column-gap: 1rem;
    row-gap: 1.5rem;
  }

  .p-home-support__stat dt {
    font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1.0625rem);
    line-height: 1.4;
  }

  .p-home-support__stat-int {
    font-size: clamp(3.25rem, 2.2rem + 4vw, 5rem);
  }

  .p-home-support__stat-dec {
    font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.75rem);
  }

  .p-home-support__media {
    max-width: min(100%, 20rem);
    margin-inline: auto;
  }

  .p-home-support__sparkle {
    top: -23px;
  }

  .p-home-support__btn {
    width: 100%;
    min-width: 0;
    font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  }

  .p-home-voices {
    --voice-card-width: calc(100vw - 3rem);
  }

  .p-home-voices__icon {
    right: 1rem;
    width: clamp(3.25rem, 18vw, 4.75rem);
  }

  .p-home-voices__intro {
    text-align: left;
  }

  .p-home-voice-card {
    grid-template-columns: 1fr;
  }
	
  .p-home-voice-card__meta-name{
	font-size: 15px;
  }

  .p-home-voices__nav {
    margin-top: 0.5rem;
  }

  .p-home-voices__btn {
    width: 100%;
    min-width: 0;
    font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  }
	
  .p-home-campus__icon--top{
		top: -30px;
  }

  .p-home-campus__grid {
    grid-template-columns: 1fr;
  }

  .p-home-campus__intro p {
    text-align: left;
  }

  .p-home-campus__btn {
    width: 100%;
    min-width: 0;
    font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  }

  .p-home-news-item__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .p-home-news-item__link {
    justify-self: end;
  }

  .p-home-blog {
    padding: 3.5rem 0;
  }

  .p-home-blog__heading {
    margin-bottom: 2rem;
  }

  .p-home-blog__icon {
    right: 1rem;
    width: 3.5rem;
  }

  .p-home-aboutus {
    padding-top: 2.5rem;
  }

  .p-home-aboutus__inner {
    padding-inline: 0;
  }

  .p-home-aboutus__media {
    padding-right: 16px;
  }

  .p-home-aboutus__content {
    margin-left: 1rem;
    border-radius: 1.6rem 0 0 1.6rem;
    padding: 1.5rem 2rem;
  }

  .p-home-aboutus__title {
    width: 100%;
  }

  .p-home-aboutus__icon {
    top: -1.4rem;
    right: 1rem;
    width: 5.5rem;
  }

  .c-section-eyebrow::after {
    width: 1.8rem;
  }

  .p-home-aboutus__btn {
    width: 100%;
    max-width: 25rem;
    font-size: clamp(1.05rem, 0.96rem + 0.4vw, 1.25rem);
  }

  .p-home-aboutus__cta {
    margin-top: 1.6rem;
  }

  .p-home-admissions {
    padding: 2rem 0;
  }

  .p-home-admissions__inner {
    padding-inline: 0.9rem;
    gap: 1rem;
  }

  .p-home-admissions__title {
    width: min(100%, 19rem);
  }

  .p-home-admissions__header h2,
  .p-home-support__header h2 {
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
  }

  .p-home-art-course__header h2 {
    font-size: 1.45rem;
    white-space: normal;
  }

  .p-home-admissions__cta .p-home-cta-band__btn,
  .p-home-admissions__btn {
    width: 100%;
    max-width: 25rem;
    font-size: clamp(1.05rem, 0.96rem + 0.4vw, 1.25rem);
  }

  .p-home-admissions__icon {
    top: -2.2rem;
    width: 5.5rem;
  }

  .p-home-cta-band {
    padding: 1.35rem 1rem;
  }

  .p-home-cta-band__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .p-home-cta-band__btn {
    width: 100%;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    font-size: clamp(1rem, 0.82rem + 0.2vw, 1rem);
    line-height: 1.4;
    text-align: center;
  }

  .l-footer__nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .l-footer__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .l-footer__cta-btn {
    width: 100%;
    max-width: 25rem;
    margin-inline: auto;
  }

  .c-btn,
  .l-header__cta-btn,
  .l-footer__cta-btn,
  .p-home-course-card__btn,
  .p-home-art-course__btn,
  .p-home-support__btn,
  .p-home-voices__btn,
  .p-home-campus__btn,
  .p-home-aboutus__btn,
  .p-home-admissions__btn {
    min-height: clamp(3.75rem, 3.4rem + 1.2vw, 4.5rem);
  }

  .p-home-cta-band__btn {
    min-height: clamp(5.25rem, 4.75rem + 2vw, 6.25rem);
  }

  .c-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-roll-banner__track {
    animation: none;
  }
}

@media (min-width: 768px) {
  .c-btn,
  .p-home-course-card__btn,
  .p-home-art-course__btn,
  .p-home-support__btn,
  .p-home-voices__btn,
  .p-home-campus__btn,
  .p-home-aboutus__btn,
  .p-home-admissions__btn,
  .p-home-cta-band__btn {
    min-height: 5rem;
  }
}


/* トップブログ　PC時は通常表示 */
.p-home-blog__slider {
  position: relative;
}

.p-home-blog__viewport {
  overflow: visible;
}

.p-home-blog__nav {
  display: none;
}

/* スマホ時だけスライダー */
@media screen and (max-width: 767px) {
  .p-home-blog {
    --blog-slide-side: 20px;
    --blog-slide-gap: 16px;
    --blog-slide-width: calc(100vw - var(--blog-slide-side) - var(--blog-slide-side));
  }

  .p-home-blog .p-home-blog__viewport {
    margin-inline: calc(50% - 50vw);
    padding-inline: 0 !important;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0 !important;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .p-home-blog .p-home-blog__viewport::-webkit-scrollbar {
    display: none;
  }

  .p-home-blog .p-home-blog__track.p-post-list--3col {
    display: flex !important;
    flex-wrap: nowrap;
    grid-template-columns: none !important;
    gap: var(--blog-slide-gap);

    width: max-content !important;
    max-width: none;

    padding-inline: var(--blog-slide-side);
    box-sizing: content-box;
  }

  .p-home-blog .p-home-blog__track > .p-post-card {
    flex: 0 0 var(--blog-slide-width) !important;
    width: var(--blog-slide-width);
    max-width: none !important;

    scroll-snap-align: center !important;
    scroll-snap-stop: always;

    box-sizing: border-box;
  }

  .p-home-blog .p-home-blog__track > .p-post-card:last-child {
    margin-right: 0 !important;
  }

  .p-home-blog__nav {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .p-home-blog__arrow {
    position: relative;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    pointer-events: auto;
  }

  .p-home-blog__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }

  .p-home-blog__arrow--prev {
    margin-left: 8px;
  }

  .p-home-blog__arrow--next {
    margin-right: 8px;
  }

  .p-home-blog__arrow--prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
  }

  .p-home-blog__arrow--next::before {
    transform: translate(-60%, -50%) rotate(45deg);
  }

  .p-home-blog__arrow:disabled {
    opacity: 0.35;
    cursor: default;
  }
}
