@charset "UTF-8";
:root {
  --c-text: #0f172a;
  --c-sub: #475569;
  --c-line: #e5e7eb;
  --c-brand: #1F65B1;
  --c-bg-gray: #F8F8F8;
  --c-bg-blue: #F0F3F9;
  --radius: 24px;
  --container: 72rem;
}

@font-face {
  font-family: NotoSansJP-Regular;
  src: url("../font/NotoSansJP-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: NotoSansJP-Medium;
  src: url("../font/NotoSansJP-Medium.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: NotoSansJP-Bold;
  src: url("../font/NotoSansJP-Bold.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: NotoSansJP-Light;
  src: url("../font/NotoSansJP-Light.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: NotoSansJP-Black;
  src: url("../font/NotoSansJP-Black.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: KleeOne;
  src: url("../font/KleeOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: KleeOne;
  src: url("../font/KleeOne-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../font/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../font/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body.juku-page {
  margin: 0;
  padding: 0;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--c-text);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.juku-page h2 {
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  font-weight: 900;
}
body.juku-page h3 {
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  font-weight: 700;
}

@supports (-webkit-touch-callout: none) {
  body.juku-page h2 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Meiryo", sans-serif !important;
    font-weight: 700 !important;
  }
  body.juku-page h3 {
    font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif !important;
    font-weight: 700 !important;
  }
}
.juku-site {
  width: 100%;
  overflow-x: hidden;
}

.juku-main {
  width: 100%;
}

@media screen and (max-width: 896px) {
  .br-hide-mobile {
    display: none;
  }
}

.br-show-mobile {
  display: none;
}
@media screen and (max-width: 896px) {
  .br-show-mobile {
    display: block;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

.juku-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
}
.juku-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.juku-header.is-hidden {
  transform: translateY(-100%);
}
.juku-header.is-visible {
  transform: translateY(0);
}
.admin-bar .juku-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .juku-header {
    top: 46px;
  }
}
.juku-header .header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-header .header-inner {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    gap: 1rem;
  }
}
.juku-header .header__logo {
  flex-shrink: 0;
}
.juku-header .header__logo h1 {
  margin: 0;
  line-height: 1;
}
.juku-header .header__logo h1 a {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.juku-header .header__logo h1 a:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
.juku-header .header__logo h1 a img {
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
}
@media screen and (max-width: 896px) {
  .juku-header .header__logo h1 a img {
    max-height: 36px;
  }
}
.juku-header .header__navWrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .juku-header .header__navWrap {
    display: none;
  }
}
.juku-header .header__navWrap .header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 896px) {
  .juku-header .header__navWrap .header__nav {
    gap: 1rem;
  }
}
.juku-header .header__navWrap .header__nav .header__nav-link {
  text-decoration: none;
  color: var(--c-sub);
  font-family: NotoSansJP-Medium, "Noto Sans JP", sans-serif;
  font-size: clamp(0.4rem, 0.5vw + 0.75rem, 0.8rem);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  white-space: nowrap;
  margin-right: 0.4rem;
}
.juku-header .header__navWrap .header__nav .header__nav-link:hover {
  color: var(--c-text);
}
.juku-header .header__inquiry {
  flex-shrink: 0;
}
.juku-header .header__inquiry .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: #FF6B9D;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 896px) {
  .juku-header .header__inquiry .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}
.juku-header .header__inquiry .btn:hover {
  background-color: #ff5a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.35);
}
.juku-header .header__inquiry .btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
}
.juku-header__mobile-menu-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: auto;
  min-height: 56px;
  border-radius: 50px;
  background-color: #fff;
  color: var(--c-brand);
  border: 2px solid var(--c-brand);
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 86, 135, 0.15);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 1024px) {
  .juku-header__mobile-menu-btn {
    display: flex;
  }
}
.juku-header__mobile-menu-btn:hover {
  background-color: rgba(0, 86, 135, 0.05);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 86, 135, 0.25);
}
.juku-header__mobile-menu-btn:active {
  transform: scale(0.95);
}
.juku-header__mobile-menu-btn[aria-expanded=true] {
  background-color: #fff;
  color: var(--c-brand);
}
.juku-header__mobile-menu-btn[aria-expanded=true] .juku-header__mobile-menu-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.juku-header__mobile-menu-btn[aria-expanded=true] .juku-header__mobile-menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.juku-header__mobile-menu-btn[aria-expanded=true] .juku-header__mobile-menu-text {
  display: none;
}
.juku-header__mobile-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}
.juku-header__mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
  border-radius: 2px;
  position: absolute;
  left: 0;
}
.juku-header__mobile-menu-icon span:nth-child(1) {
  top: 0;
}
.juku-header__mobile-menu-icon span:nth-child(2) {
  bottom: 0;
}
.juku-header__mobile-menu-text {
  font-size: 0.625rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
}
.juku-header__mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--c-brand);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media screen and (max-width: 1024px) {
  .juku-header__mobile-menu-overlay {
    display: flex;
    flex-direction: column;
  }
}
.juku-header__mobile-menu-overlay[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.juku-header__mobile-menu-header {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #E9F4F7;
}
.juku-header__mobile-menu-logo {
  flex-shrink: 0;
}
.juku-header__mobile-menu-logo a {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.juku-header__mobile-menu-logo a:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
.juku-header__mobile-menu-logo a img {
  max-height: 36px;
  width: auto;
  height: auto;
  display: block;
}
.juku-header__mobile-menu-nav {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px) + 60px);
}
@media screen and (max-width: 896px) {
  .juku-header__mobile-menu-nav {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px) + 80px);
  }
}
.juku-header__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.juku-header__mobile-menu-item {
  width: 100%;
}
.juku-header__mobile-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-align: center;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}
.juku-header__mobile-menu-link:hover, .juku-header__mobile-menu-link:focus {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateX(4px);
}
.juku-header__mobile-menu-link:active {
  transform: translateX(2px);
}
.juku-header__mobile-menu-link--small {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: NotoSansJP-Medium, "Noto Sans JP", sans-serif;
  padding: 0.75rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.05);
}
.juku-header__mobile-menu-link--small:hover, .juku-header__mobile-menu-link--small:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.juku-header__mobile-menu-item--small {
  margin-top: 0.25rem;
}
.juku-header__mobile-menu-separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}
.juku-header__mobile-menu-cta {
  margin-bottom: 0.5rem;
  width: 100%;
}
.juku-header__mobile-menu-cta-btn {
  display: block;
  width: 100%;
  padding: 1.25rem 2rem;
  background-color: #FF6B9D;
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}
.juku-header__mobile-menu-cta-btn:hover, .juku-header__mobile-menu-cta-btn:focus {
  background-color: #ff5a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
}
.juku-header__mobile-menu-cta-btn:active {
  transform: translateY(0);
}

.juku-page-header__area {
  position: relative;
  width: 100%;
  background-color: var(--c-brand);
  padding: 10rem 0;
  overflow: hidden;
  margin-top: 80px;
  position: relative;
  width: 100%;
  background-color: var(--c-brand);
  padding: 7rem 0;
  overflow: hidden;
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .juku-page-header__area {
    padding: 5rem 0;
    margin-top: 76px;
  }
}
@media screen and (max-width: 896px) {
  .juku-page-header__area {
    padding: 3rem 0 3rem;
    margin-top: 76px;
  }
}

.juku-page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/juku/ko-header-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.juku-page-header__inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.juku-page-header__breadcrumb-wrapper {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding: 1.5rem 1rem 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 896px) {
  .juku-page-header__breadcrumb-wrapper {
    padding: 1rem 1rem 0;
  }
}

.juku-page-header__breadcrumb {
  margin: 0;
  text-align: left;
}
.juku-page-header__breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 0 0 4%;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 896px) {
  .juku-page-header__breadcrumb-list {
    font-size: 0.8125rem;
    padding: 0;
  }
}
.juku-page-header__breadcrumb-item {
  display: flex;
  align-items: center;
}
.juku-page-header__breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: rgba(0, 0, 0, 0.4);
}
.juku-page-header__breadcrumb-item a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease;
}
.juku-page-header__breadcrumb-item a:hover {
  color: var(--c-brand);
}
.juku-page-header__breadcrumb-item span {
  color: rgba(0, 0, 0, 0.8);
}

.juku-page-header__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}
@media screen and (max-width: 896px) {
  .juku-page-header__title {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
}
@supports (-webkit-appearance: none) and (not (-moz-appearance: none)) {
  .juku-page-header__title {
    font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  }
}

.juku-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}
@media screen and (max-width: 896px) {
  .juku-fv {
    padding-top: 70px;
    min-height: 70vh;
    height: 70vh;
  }
}
.juku-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/juku/bg-juku.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.juku-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.juku-fv__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .juku-fv__inner {
    padding: 0 1.5rem;
  }
}
.juku-fv__copy {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 200px;
}
.juku-fv__copy img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.juku-fv__copy-pc {
  display: block;
}
@media screen and (max-width: 896px) {
  .juku-fv__copy-pc {
    display: none;
  }
}
.juku-fv__copy-sp {
  display: none;
  min-height: 300px;
}
@media screen and (max-width: 896px) {
  .juku-fv__copy-sp {
    display: block;
  }
}
.juku-fv__copy .juku-fv-copy-svg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 200px;
}
@media screen and (max-width: 896px) {
  .juku-fv__copy .juku-fv-copy-svg {
    min-height: 300px;
  }
}
.juku-fv__copy .fv-symbol {
  opacity: 1;
}
.juku-fv__copy .fv-text-1 {
  opacity: 0;
  animation: fadeInUp 1.5s ease-in-out 0.5s forwards;
}
.juku-fv__copy .fv-text-2 {
  opacity: 0;
  animation: fadeInUp 1.5s ease-in-out 1s forwards;
}
.juku-fv__copy .fv-infinity {
  opacity: 0;
  animation: fadeInUp 1.5s ease-in-out 1.5s forwards;
}
.juku-fv__copy .fv-text-3 {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 3.3s forwards;
}
@media screen and (max-width: 896px) {
  .juku-fv__copy {
    max-width: 60%;
    transform: scale(1.3);
    transform-origin: center;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 500px) {
  .juku-fv__copy {
    max-width: 95%;
    transform: scale(1.2);
    transform-origin: center;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.juku-fv__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollDown 2s infinite;
}
@media screen and (max-width: 896px) {
  .juku-fv__scroll {
    bottom: 1rem;
  }
}

@keyframes scrollDown {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.2) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.25) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes scaleInLarge {
  0% {
    opacity: 0;
    transform: scale(0.2) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.35) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.juku-new-banner {
  width: 100%;
  padding: 0;
  background-color: #fff;
}
.juku-new-banner__inner {
  width: 100%;
  max-width: 900px;
  margin: 5rem auto;
}
@media screen and (max-width: 896px) {
  .juku-new-banner__inner {
    padding: 10%;
    margin: 0;
  }
}
.juku-new-banner__link {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.juku-new-banner__link:hover {
  opacity: 0.9;
}
.juku-new-banner__image {
  width: 100%;
  height: auto;
  display: block;
}

.juku-info-session {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 2rem 0;
  background-color: #005687;
}
@media screen and (max-width: 896px) {
  .juku-info-session {
    padding: 2rem 0;
  }
}
.juku-info-session__inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-info-session__inner {
    gap: 1.5rem;
  }
}
.juku-info-session__image-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}
@media screen and (max-width: 896px) {
  .juku-info-session__image-wrapper {
    padding: 0 0.5rem;
  }
}
.juku-info-session__image {
  max-width: 100%;
  height: auto;
  display: block;
}
.juku-info-session__button-area {
  text-align: center;
  padding: 0 1rem;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .juku-info-session__button-area {
    padding: 0 0.5rem;
  }
}
.juku-info-session__button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background-color: #FF6B9D;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-info-session__button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}
.juku-info-session__button:hover {
  background-color: #ff5a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}
.juku-info-session__button:active {
  transform: translateY(0);
}

.juku-advancement-patterns {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  overflow: hidden;
}
.juku-advancement-patterns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/juku/03_worldmap.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 1;
}
.juku-advancement-patterns__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.juku-advancement-patterns__title {
  font-size: 2rem;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.4;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}
.juku-advancement-patterns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.juku-advancement-patterns__item {
  position: relative;
  background-color: #F8F8F8;
  padding: 2rem 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__item {
    padding: 1.5rem;
  }
}
.juku-advancement-patterns__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  min-width: 80%;
  min-height: 800%;
  background-image: url("../img/juku/03_worldmap.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}
.juku-advancement-patterns__label {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--c-brand);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__label {
    font-size: 0.8125rem;
    padding: 0.4375rem 1rem;
    margin-bottom: 1rem;
  }
}
.juku-advancement-patterns__heading {
  position: relative;
  z-index: 2;
  font-size: 1.025rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__heading {
    font-size: 1rem;
  }
}
.juku-advancement-patterns__emphasis {
  font-size: 1.3em;
  font-weight: 900;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__emphasis {
    font-size: 1.25em;
  }
}
.juku-advancement-patterns__text {
  position: relative;
  z-index: 2;
  font-size: 0.9375rem;
  color: var(--c-sub);
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__text {
    font-size: 0.875rem;
  }
}
.juku-advancement-patterns__button {
  text-align: center;
}
.juku-advancement-patterns__button .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: #fff;
  color: var(--c-brand);
  text-decoration: none;
  border: 2px solid var(--c-brand);
  border-radius: 100px;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
}
@media screen and (max-width: 896px) {
  .juku-advancement-patterns__button .btn {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}
.juku-advancement-patterns__button .btn:hover {
  background-color: var(--c-brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 95, 161, 0.25);
}
.juku-advancement-patterns__button .btn:active {
  transform: translateY(0);
}

.juku-philosophy {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  .juku-philosophy {
    padding-top: 0;
  }
}
.juku-philosophy__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding: 0 1rem;
}
.juku-philosophy__title {
  font-size: 2rem;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0 auto 3rem;
  text-align: left;
  max-width: 800px;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
@media screen and (max-width: 896px) {
  .juku-philosophy__title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
}
.juku-philosophy__title--highlight {
  color: var(--c-brand);
}
.juku-philosophy__content {
  max-width: 800px;
  margin: 0 auto;
}
.juku-philosophy__content .juku-philosophy__highlight {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  position: relative;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0, 86, 135, 0.2) 50%, rgba(0, 86, 135, 0.2) 100%);
  background-size: 100% 1em;
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0.2em);
}
.juku-philosophy__content .juku-philosophy__highlight::after {
  display: none;
}
.juku-philosophy__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__text {
    font-size: 0.9375rem;
  }
}
.juku-philosophy__method {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: var(--c-bg-gray);
  border-radius: var(--radius);
}
@media screen and (max-width: 896px) {
  .juku-philosophy__method {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }
}
.juku-philosophy__method-intro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__method-intro {
    font-size: 0.9375rem;
  }
}
.juku-philosophy__method-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.juku-philosophy__method-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-philosophy__method-list li {
    font-size: 0.9375rem;
  }
}
.juku-philosophy__method-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--c-brand);
  font-weight: 700;
}
.juku-philosophy__method-conclusion {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-top: 1rem;
  margin-bottom: 0;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__method-conclusion {
    font-size: 0.9375rem;
  }
}
.juku-philosophy__cycle {
  margin: 2.5rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__cycle {
    margin: 2rem 0;
  }
}
.juku-philosophy__cycle-intro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__cycle-intro {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}
.juku-philosophy__cycle-svg {
  background-color: var(--c-bg-blue);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__cycle-svg {
    padding: 1.5rem;
    margin: 1rem 0;
  }
}
.juku-philosophy__cycle-image {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__cycle-image {
    max-width: 100%;
  }
}
.juku-philosophy__conclusion {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 896px) {
  .juku-philosophy__conclusion {
    font-size: 0.9375rem;
    margin-top: 2rem;
  }
}

.juku-reasons {
  width: 100%;
  padding: 5rem 0;
  background-color: var(--c-brand);
  position: relative;
  overflow: hidden;
}
.juku-reasons::before {
  content: "Why Chosen Us";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.5;
}
@media screen and (max-width: 896px) {
  .juku-reasons::before {
    font-size: 3rem;
    top: 7rem;
  }
}
.juku-reasons__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.juku-reasons__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 896px) {
  .juku-reasons__header {
    margin-bottom: 3rem;
  }
}
.juku-reasons__header-banner {
  display: inline-block;
  position: relative;
  background-color: var(--c-text);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-reasons__header-banner {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.juku-reasons__header-banner::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-reasons__header-banner::after {
    bottom: -10px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 10px;
  }
}
.juku-reasons__title {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}
@media screen and (max-width: 896px) {
  .juku-reasons__title {
    font-size: 1.75rem;
  }
}
.juku-reasons__title-number {
  color: #FFD700;
  font-size: 1.7em;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
}
.juku-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-reasons__list {
    gap: 2rem;
  }
}
.juku-reasons__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 896px) {
  .juku-reasons__item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.3rem;
  }
}
.juku-reasons__item-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  z-index: 2;
  padding: 0.3rem 1rem 0.7rem 0.3rem;
  background-color: #2C6DB5;
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 896px) {
  .juku-reasons__item-number {
    top: -18px;
    left: -14px;
    font-size: 2.5rem;
    padding: 0.375rem 0.675rem 0.675rem 0.375rem;
  }
}
.juku-reasons__item-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: visible;
  background-color: rgba(255, 255, 255, 0.1);
}
.juku-reasons__item-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.05);
}
.juku-reasons__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.juku-reasons__item-content {
  color: #fff;
}
.juku-reasons__item-heading {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-reasons__item-heading {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}
.juku-reasons__item-heading::first-letter {
  font-size: 1.8em;
  color: #FFD700;
  line-height: 1;
}
.juku-reasons__item-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-reasons__item-text {
    font-size: 0.875rem;
  }
}

.juku-success-stories {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.juku-success-stories::before {
  content: "SUCCESS STORY";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(30, 101, 177, 0.1);
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.5;
}
@media screen and (max-width: 896px) {
  .juku-success-stories::before {
    font-size: 3rem;
    top: 8rem;
  }
}
.juku-success-stories__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.juku-success-stories__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__header {
    margin-bottom: 3rem;
  }
}
.juku-success-stories__header-banner {
  display: inline-block;
  position: relative;
  background-color: var(--c-text);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__header-banner {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.juku-success-stories__header-banner::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-success-stories__header-banner::after {
    bottom: -10px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 10px;
  }
}
.juku-success-stories__title {
  font-size: 2.5rem;
  color: var(--c-brand);
  line-height: 1.4;
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}
@media screen and (max-width: 896px) {
  .juku-success-stories__title {
    font-size: 1.75rem;
  }
}
.juku-success-stories__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__list {
    gap: 2rem;
  }
}
.juku-success-stories__item {
  display: flex;
  flex-direction: column;
}
.juku-success-stories__item-header {
  background-color: var(--c-brand);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-header {
    padding: 0.875rem 1.25rem;
    gap: 0.75rem;
  }
}
.juku-success-stories__item-number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  flex-shrink: 0;
}
@supports (-webkit-appearance: none) and (not (-moz-appearance: none)) {
  .juku-success-stories__item-number {
    font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  }
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-number {
    font-size: 1.25rem;
  }
}
.juku-success-stories__item-label {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-label {
    font-size: 1rem;
  }
}
.juku-success-stories__item-content {
  background-color: var(--c-bg-gray);
  border: 1px solid var(--c-line);
  border-top: none;
  padding: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-content {
    padding: 0;
    background-color: #fff;
  }
}
.juku-success-stories__item-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  background-image: linear-gradient(to right, #FFD700 0, #FFD700 2px, transparent 2px), repeating-linear-gradient(transparent, transparent calc(2.2em - 1px), #e5e7eb calc(2.2em - 1px), #e5e7eb 2.2em);
  background-position: 0 0, 0 0;
  background-size: 100% 100%, 100% 100%;
  background-color: #fff;
  padding: 2rem 2rem 2rem 3rem;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-body {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    background-image: linear-gradient(to right, #FFD700 0, #FFD700 2px, transparent 2px), repeating-linear-gradient(transparent, transparent calc(2em - 1px), #e5e7eb calc(2em - 1px), #e5e7eb 2em);
  }
}
.juku-success-stories__item-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-right: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-left {
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
}
.juku-success-stories__item-photo {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-photo {
    max-width: 400px;
    margin: auto;
  }
}
.juku-success-stories__item-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-sub);
  font-size: 0.75rem;
  background-color: var(--c-bg-gray);
}
.juku-success-stories__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.juku-success-stories__item-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-right {
    padding-left: 0;
  }
}
.juku-success-stories__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-info {
    gap: 0.625rem;
    margin-bottom: 1rem;
  }
}
.juku-success-stories__item-result-note {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0 0 0.25rem 0;
  padding: 0.5rem 0.875rem;
  background-color: rgba(31, 101, 177, 0.08);
  border-radius: var(--radius);
  position: relative;
  left: -14px;
  top: 5px;
  display: inline-block;
  width: fit-content;
}
.juku-success-stories__item-result-note::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 1.5rem;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(31, 101, 177, 0.08);
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-result-note {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.75rem;
  }
  .juku-success-stories__item-result-note::after {
    left: 1.25rem;
    bottom: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(31, 101, 177, 0.08);
  }
}
.juku-success-stories__item-result {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: #DC2626;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-result {
    font-size: 1.3rem;
  }
}
.juku-success-stories__item-name {
  font-size: 1rem;
  color: var(--c-text);
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-name {
    font-size: 0.9375rem;
  }
}
.juku-success-stories__item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.juku-success-stories__item-text p {
  font-size: 1.15rem;
  line-height: 2.2;
  color: var(--c-text);
  margin: 0;
  font-family: "Zen Kurenaido", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  background-color: transparent;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-text p {
    font-size: 0.9rem;
    line-height: 2;
  }
}
.juku-success-stories__timeline-image {
  margin-top: 2rem;
  text-align: center;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__timeline-image {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }
}
.juku-success-stories__timeline-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 0;
}
.juku-success-stories__item-footer {
  background-color: var(--c-brand);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-success-stories__item-footer {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    margin-top: 1.5rem;
  }
}

.juku-achievements {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.juku-achievements__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.juku-achievements__decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}
.juku-achievements__decoration--top-left {
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 896px) {
  .juku-achievements__decoration--top-left {
    width: 150px;
    height: 150px;
  }
}
.juku-achievements__decoration--bottom-right {
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 896px) {
  .juku-achievements__decoration--bottom-right {
    width: 150px;
    height: 150px;
  }
}
.juku-achievements__decoration-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.juku-achievements__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 896px) {
  .juku-achievements__header {
    margin-bottom: 3rem;
  }
}
.juku-achievements__header::before {
  content: "ACHIEVEMENTS";
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(30, 101, 177, 0.1);
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.5;
}
@media screen and (max-width: 896px) {
  .juku-achievements__header::before {
    font-size: 3rem;
    top: 2.5rem;
    left: 0;
    transform: translateX(0);
  }
}
.juku-achievements__header-banner {
  display: inline-block;
  position: relative;
  background-color: var(--c-text);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__header-banner {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.juku-achievements__header-banner::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-achievements__header-banner::after {
    bottom: -10px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 10px;
  }
}
.juku-achievements__title {
  font-size: 2.5rem;
  color: var(--c-brand);
  line-height: 1.4;
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}
@media screen and (max-width: 896px) {
  .juku-achievements__title {
    font-size: 1.75rem;
  }
}
.juku-achievements__results-area {
  background-color: rgba(31, 101, 177, 0.1);
  padding: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__results-area {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
.juku-achievements__section {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-achievements__section {
    margin-bottom: 2rem;
  }
}
.juku-achievements__section:last-child {
  margin-bottom: 0;
}
.juku-achievements__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-brand);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__section-title {
    font-size: 1.25rem;
  }
}
.juku-achievements__section-subtitle {
  font-size: 0.875rem;
  color: var(--c-sub);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__section-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }
}
.juku-achievements__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.juku-achievements__category {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  max-width: 800px;
  width: 100%;
}
.juku-achievements__category-label {
  display: inline-block;
  border: 1px solid var(--c-brand);
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  width: fit-content;
}
@media screen and (max-width: 896px) {
  .juku-achievements__category-label {
    font-size: 0.875rem;
    padding: 0.4375rem 1rem;
  }
}
.juku-achievements__category-content {
  text-align: center;
}
.juku-achievements__category-content p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--c-text);
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-achievements__category-content p {
    font-size: 0.875rem;
  }
}
.juku-achievements__cta {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__cta {
    margin-top: 1.5rem;
  }
}
.juku-achievements__cta-button {
  display: inline-block;
  background-color: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-brand);
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-achievements__cta-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}
.juku-achievements__cta-button:hover {
  background-color: var(--c-brand);
  color: #fff;
}
.juku-achievements__eiken {
  padding: 3rem 2rem;
  margin-top: 4rem;
  position: relative;
}
.juku-achievements__eiken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/juku/07__eiken-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.juku-achievements__eiken::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 215, 0, 0.7);
  z-index: 1;
}
.juku-achievements__eiken > * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  .juku-achievements__eiken::after {
    background-color: rgba(255, 215, 0, 0.75);
  }
}
.juku-achievements__eiken-title {
  font-size: 2rem;
  font-weight: 900;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  text-align: center;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@supports (-webkit-touch-callout: none) {
  .juku-achievements__eiken-title {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Meiryo", sans-serif;
    font-weight: 700;
  }
}
.juku-achievements__eiken-banner {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-banner {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}
.juku-achievements__eiken-banner-text {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-banner-text {
    font-size: 1.25rem;
  }
}
.juku-achievements__eiken-highlight {
  color: #DC2626;
  font-weight: 700;
  font-size: 2.1rem;
}
.juku-achievements__eiken-details-box {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-details-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.juku-achievements__eiken-details-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin: 0 0 1.5rem 0;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-details-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.juku-achievements__eiken-details-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-details-content {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.juku-achievements__eiken-detail-item {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin: 0;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-detail-item {
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
    gap: 0.375rem;
    min-width: auto;
    width: 100%;
  }
}
.juku-achievements__eiken-grade {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #666;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-grade {
    font-size: 0.875rem;
  }
}
.juku-achievements__eiken-result {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #DC2626;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-result {
    font-size: 1rem;
  }
}
.juku-achievements__eiken-detail-breakdown {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  margin: 0;
  padding-left: 1rem;
  display: block;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-detail-breakdown {
    font-size: 0.875rem;
    padding-left: 0.75rem;
  }
}
.juku-achievements__eiken-cta {
  text-align: center;
}
.juku-achievements__eiken-cta-button {
  display: inline-block;
  background-color: #fff;
  color: var(--c-brand);
  border: 1px solid var(--c-brand);
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-cta-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}
.juku-achievements__eiken-cta-button:hover {
  background-color: var(--c-brand);
  color: #fff;
}
.juku-achievements__eiken-detail-item {
  font-size: 1rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin: 0;
  line-height: 1.8;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-detail-item {
    font-size: 0.9375rem;
  }
}
.juku-achievements__eiken-grade {
  display: block;
  margin-bottom: 0.25rem;
}
.juku-achievements__eiken-result {
  display: block;
}
.juku-achievements__eiken-detail-breakdown {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  margin: 0;
  padding-left: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-detail-breakdown {
    font-size: 0.875rem;
    padding-left: 0.75rem;
  }
}
.juku-achievements__eiken-cta {
  text-align: center;
}
.juku-achievements__eiken-cta-button {
  display: inline-block;
  background-color: #fff;
  color: var(--c-brand);
  border: 1px solid var(--c-brand);
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-cta-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}
.juku-achievements__eiken-cta-button:hover {
  background-color: var(--c-brand);
  color: #fff;
}
.juku-achievements__eiken-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-title {
    font-size: 1.25rem;
  }
}
.juku-achievements__eiken-headline {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-headline {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }
}
.juku-achievements__eiken-results {
  margin-bottom: 2rem;
}
.juku-achievements__eiken-results-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-results-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.juku-achievements__eiken-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.juku-achievements__eiken-result-item {
  text-align: center;
}
.juku-achievements__eiken-result-label {
  font-size: 0.9375rem;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-result-label {
    font-size: 0.875rem;
  }
}
.juku-achievements__eiken-result-value {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-achievements__eiken-result-value {
    font-size: 1rem;
  }
}

.juku-courses {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 896px) {
  .juku-courses {
    padding-top: 0;
  }
}
.juku-courses__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.juku-courses__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding: 3rem 0;
  overflow: visible;
}
@media screen and (max-width: 896px) {
  .juku-courses__header {
    margin-bottom: 0rem;
    padding: 2.5rem 0;
  }
}
.juku-courses__decorative-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.juku-courses__circle {
  position: absolute;
  border-radius: 50%;
}
.juku-courses__circle--pink {
  background-color: rgba(255, 192, 203, 0.4);
}
.juku-courses__circle--yellow {
  background-color: rgba(255, 255, 153, 0.4);
}
.juku-courses__circle--blue {
  background-color: rgba(173, 216, 230, 0.4);
}
.juku-courses__circle--blue-outline {
  background-color: rgba(173, 216, 230, 0.4);
}
.juku-courses__circle--top-left {
  width: 40px;
  height: 40px;
  top: 30%;
  left: 20%;
}
@media screen and (max-width: 896px) {
  .juku-courses__circle--top-left {
    width: 30px;
    height: 30px;
    top: 25%;
    left: 15%;
  }
}
.juku-courses__circle--top-center-left {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 25%;
}
@media screen and (max-width: 896px) {
  .juku-courses__circle--top-center-left {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
  }
}
.juku-courses__circle--top-right {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 20%;
}
@media screen and (max-width: 896px) {
  .juku-courses__circle--top-right {
    width: 60px;
    height: 60px;
    top: 22%;
    right: 15%;
  }
}
.juku-courses__circle--bottom-left {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 20%;
}
@media screen and (max-width: 896px) {
  .juku-courses__circle--bottom-left {
    width: 60px;
    height: 60px;
    bottom: 22%;
    left: 15%;
  }
}
.juku-courses__circle--bottom-center-right {
  width: 40px;
  height: 40px;
  bottom: 35%;
  right: 35%;
}
@media screen and (max-width: 896px) {
  .juku-courses__circle--bottom-center-right {
    width: 30px;
    height: 30px;
    bottom: 30%;
    right: 30%;
  }
}
.juku-courses__circle--bottom-right {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 20%;
}
@media screen and (max-width: 896px) {
  .juku-courses__circle--bottom-right {
    width: 80px;
    height: 80px;
    bottom: 18%;
    right: 15%;
  }
}
.juku-courses__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .juku-courses__title {
    gap: 0.375rem;
    margin-bottom: 0.75rem;
  }
}
.juku-courses__title-en {
  font-size: 1rem;
  font-weight: 600;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-brand);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 896px) {
  .juku-courses__title-en {
    font-size: 0.9375rem;
  }
}
.juku-courses__title-jp {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: var(--c-brand);
}
@media screen and (max-width: 896px) {
  .juku-courses__title-jp {
    font-size: 1.75rem;
  }
}
@supports (-webkit-touch-callout: none) {
  .juku-courses__title-jp {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Meiryo", sans-serif;
    font-weight: 700;
  }
}
.juku-courses__subtitle {
  font-size: 1rem;
  color: var(--c-text);
  margin: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .juku-courses__subtitle {
    font-size: 0.9375rem;
  }
}
.juku-courses__course-group {
  margin-bottom: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-group {
    margin-bottom: 2rem;
  }
}
.juku-courses__course-nav {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-nav {
    margin-bottom: 1.5rem;
  }
}
.juku-courses__course-nav-button {
  background-color: #fff;
  border: 1px solid var(--c-brand);
  color: var(--c-brand);
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-nav-button {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
  }
}
.juku-courses__course-nav-button:hover {
  background-color: var(--c-brand);
  color: #fff;
}
.juku-courses__course-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.juku-courses__course-card {
  display: flex;
  flex-direction: row;
  background-color: #E6EEF6;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-card {
    flex-direction: row;
    align-items: stretch;
  }
}
.juku-courses__course-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-image {
    width: 120px;
    height: 120px;
    aspect-ratio: 1;
  }
}
.juku-courses__course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.juku-courses__course-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-content {
    padding: 1rem;
  }
}
.juku-courses__course-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
  }
}
.juku-courses__course-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-sub);
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-courses__course-description {
    font-size: 0.7rem;
  }
}
.juku-courses__feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  margin-bottom: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
}
.juku-courses__feature-image-area {
  background-color: var(--c-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature-image-area {
    min-height: 200px;
  }
}
.juku-courses__feature-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.juku-courses__feature-content {
  background-color: var(--c-brand);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature-content {
    padding: 1.5rem;
  }
}
.juku-courses__feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.juku-courses__feature-badge {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  flex-shrink: 0;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature-badge {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.875rem;
  }
}
.juku-courses__feature-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature-title {
    font-size: 1.5rem;
  }
}
.juku-courses__feature-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}
.juku-courses__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.juku-courses__feature-list li {
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 896px) {
  .juku-courses__feature-list li {
    font-size: 0.875rem;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.juku-courses__feature-list li:last-child {
  margin-bottom: 0;
}
.juku-courses__feature-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #fff;
}
.juku-courses__cta {
  text-align: center;
}
.juku-courses__cta-button {
  display: inline-block;
  background-color: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-brand);
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-courses__cta-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}
.juku-courses__cta-button:hover {
  background-color: var(--c-brand);
  color: #fff;
}

.juku-access {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 896px) {
  .juku-access {
    padding-top: 0;
  }
}
.juku-access__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding: 0 1rem;
}
.juku-access__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 896px) {
  .juku-access__header {
    margin-bottom: 3rem;
  }
}
.juku-access__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 896px) {
  .juku-access__title {
    gap: 0.375rem;
  }
}
.juku-access__title-en {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-brand);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 896px) {
  .juku-access__title-en {
    font-size: 1.25rem;
  }
}
.juku-access__title-jp {
  font-size: 2.5rem;
  color: var(--c-brand);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}
@media screen and (max-width: 896px) {
  .juku-access__title-jp {
    font-size: 1.75rem;
  }
}
.juku-access__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 896px) {
  .juku-access__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.juku-access__map-area {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--c-bg-gray);
}
@media screen and (max-width: 896px) {
  .juku-access__map-area {
    order: 2;
  }
}
.juku-access__map-iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}
@media screen and (max-width: 896px) {
  .juku-access__map-iframe {
    height: 300px;
  }
}
.juku-access__map-image {
  width: 100%;
  height: auto;
  display: block;
}
.juku-access__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-access__info {
    gap: 1.5rem;
    order: 1;
  }
}
.juku-access__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.juku-access__info-label {
  font-size: 1rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-sub);
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-access__info-label {
    font-size: 0.9375rem;
  }
}
.juku-access__info-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 896px) {
  .juku-access__info-content p {
    font-size: 0.9375rem;
  }
}

.juku-info-form__header-area {
  position: relative;
  width: 100%;
  background-color: var(--c-brand);
  padding: 10rem 0;
  overflow: hidden;
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .juku-info-form__header-area {
    padding: 5rem 0;
    margin-top: 76px;
  }
}

.juku-info-form__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/juku/ko-header-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.juku-info-form__header-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.juku-info-form__breadcrumb-wrapper {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding: 1.5rem 1rem 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 896px) {
  .juku-info-form__breadcrumb-wrapper {
    padding: 1rem 1rem 0;
  }
}

.juku-info-form__breadcrumb {
  margin: 0;
  text-align: left;
}
.juku-info-form__breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 0 0 4%;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 896px) {
  .juku-info-form__breadcrumb-list {
    font-size: 0.8125rem;
    padding: 0;
  }
}
.juku-info-form__breadcrumb-item {
  display: flex;
  align-items: center;
}
.juku-info-form__breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: rgba(0, 0, 0, 0.4);
}
.juku-info-form__breadcrumb-item a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease;
}
.juku-info-form__breadcrumb-item a:hover {
  color: var(--c-brand);
}
.juku-info-form__breadcrumb-item span {
  color: rgba(0, 0, 0, 0.8);
}

.juku-info-form__header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}
@media screen and (max-width: 896px) {
  .juku-info-form__header-title {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
}
@supports (-webkit-appearance: none) and (not (-moz-appearance: none)) {
  .juku-info-form__header-title {
    font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  }
}

.juku-info-form {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  .juku-info-form {
    padding: 3rem 0;
  }
}
.juku-info-form__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding: 0 1rem;
  max-width: 800px;
}
.juku-info-form__session-banner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2.5rem 2rem;
  background-color: #005687;
}
@media screen and (max-width: 896px) {
  .juku-info-form__session-banner {
    margin-bottom: 2rem;
    padding: 2rem 1rem;
  }
}
.juku-info-form__session-banner-content {
  margin-bottom: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-info-form__session-banner-content {
    margin-bottom: 1.5rem;
  }
}
.juku-info-form__session-banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: #fff;
  margin: 0 0 1rem 0;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-info-form__session-banner-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.juku-info-form__session-banner-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  max-width: 480px;
  text-align: left;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .juku-info-form__session-banner-description {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.juku-info-form__session-banner-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-info-form__session-banner-note {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
.juku-info-form__session-banner-image-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
@media screen and (max-width: 896px) {
  .juku-info-form__session-banner-image-wrapper {
    padding: 0;
  }
}
.juku-info-form__session-banner-image {
  max-width: 100%;
  height: auto;
  display: block;
}
.juku-info-form__content .wpcf7 {
  max-width: 100%;
}
.juku-info-form__content .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.juku-info-form__content p {
  margin-bottom: 0;
  margin-top: 0;
}
.juku-info-form__content .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 0;
}
.juku-info-form__content label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content label {
    font-size: 0.875rem;
    margin-bottom: 0.2rem;
    gap: 0.375rem;
  }
}
.juku-info-form__content label .wpcf7-required {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background-color: #fff;
  border: 1px solid #DC2626;
  border-radius: 4px;
  color: #DC2626;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  line-height: 1.2;
  margin-left: 0;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content label .wpcf7-required {
    font-size: 0.6875rem;
    padding: 0.1rem 0.375rem;
  }
}
.juku-info-form__content input[type=text],
.juku-info-form__content input[type=email],
.juku-info-form__content input[type=tel],
.juku-info-form__content input[type=date],
.juku-info-form__content textarea,
.juku-info-form__content select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  background-color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content input[type=text],
  .juku-info-form__content input[type=email],
  .juku-info-form__content input[type=tel],
  .juku-info-form__content input[type=date],
  .juku-info-form__content textarea,
  .juku-info-form__content select {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
  }
}
.juku-info-form__content input[type=text]:focus,
.juku-info-form__content input[type=email]:focus,
.juku-info-form__content input[type=tel]:focus,
.juku-info-form__content input[type=date]:focus,
.juku-info-form__content textarea:focus,
.juku-info-form__content select:focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(31, 101, 177, 0.1);
}
.juku-info-form__content input[type=text]::placeholder,
.juku-info-form__content input[type=email]::placeholder,
.juku-info-form__content input[type=tel]::placeholder,
.juku-info-form__content input[type=date]::placeholder,
.juku-info-form__content textarea::placeholder,
.juku-info-form__content select::placeholder {
  color: var(--c-sub);
}
.juku-info-form__content textarea {
  min-height: 120px;
  resize: vertical;
}
.juku-info-form__content select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.juku-info-form__content .wpcf7-date-note {
  display: block;
  font-size: 0.875rem;
  color: var(--c-sub);
  margin-top: 0.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content .wpcf7-date-note {
    font-size: 0.8125rem;
    margin-top: 0.375rem;
  }
}
.juku-info-form__content input[type=checkbox],
.juku-info-form__content input[type=radio] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  cursor: pointer;
}
.juku-info-form__content .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.juku-info-form__content .wpcf7-list-item label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.juku-info-form__content .wpcf7-privacy-notice,
.juku-info-form__content .wpcf7-privacy-policy-note {
  font-size: 0.875rem;
  color: var(--c-sub);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content .wpcf7-privacy-notice,
  .juku-info-form__content .wpcf7-privacy-policy-note {
    font-size: 0.8125rem;
    margin-top: 1.25rem;
    margin-bottom: 0.875rem;
  }
}
.juku-info-form__content .wpcf7-privacy-notice a,
.juku-info-form__content .wpcf7-privacy-policy-note a {
  color: var(--c-brand);
  text-decoration: underline;
}
.juku-info-form__content .wpcf7-privacy-notice a:hover,
.juku-info-form__content .wpcf7-privacy-policy-note a:hover {
  color: #1a5490;
}
.juku-info-form__content .wpcf7-recaptcha-notice,
.juku-info-form__content .wpcf7-recaptcha-note {
  font-size: 0.75rem;
  color: var(--c-sub);
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content .wpcf7-recaptcha-notice,
  .juku-info-form__content .wpcf7-recaptcha-note {
    font-size: 0.6875rem;
    margin-top: 0.875rem;
  }
}
.juku-info-form__content .wpcf7-recaptcha-notice a,
.juku-info-form__content .wpcf7-recaptcha-note a {
  color: var(--c-sub);
  text-decoration: underline;
}
.juku-info-form__content .wpcf7-recaptcha-notice a:hover,
.juku-info-form__content .wpcf7-recaptcha-note a:hover {
  color: var(--c-text);
}
.juku-info-form__content input[type=submit],
.juku-info-form__content .wpcf7-submit {
  display: inline-block;
  width: 100%;
  padding: 1.25rem 2rem;
  background-color: #FF6B9D;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content input[type=submit],
  .juku-info-form__content .wpcf7-submit {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}
.juku-info-form__content input[type=submit]:hover,
.juku-info-form__content .wpcf7-submit:hover {
  background-color: #ff5a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}
.juku-info-form__content input[type=submit]:active,
.juku-info-form__content .wpcf7-submit:active {
  transform: translateY(0);
}
.juku-info-form__content .wpcf7-not-valid-tip {
  font-size: 0.875rem;
  color: #DC2626;
  margin-top: 0.25rem;
  display: block;
}
.juku-info-form__content .wpcf7-not-valid {
  border-color: #DC2626;
}
.juku-info-form__content .wpcf7-not-valid:focus {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.juku-info-form__content .wpcf7-mail-sent-ok {
  display: none !important;
}
.juku-info-form__content .wpcf7-mail-sent-ok .wpcf7-response-output {
  display: none !important;
}
.juku-info-form__content .wpcf7-mail-sent-ok {
  display: none !important;
}
.juku-info-form__content .wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
}
.juku-info-form__content .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #10B981;
  display: none !important;
}
.juku-info-form__content .wpcf7-response-output.wpcf7-mail-sent-ng, .juku-info-form__content .wpcf7-response-output.wpcf7-aborted, .juku-info-form__content .wpcf7-response-output.wpcf7-spam {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #DC2626;
}
.juku-info-form__content .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #FEF3C7;
  color: #92400E;
  border: 1px solid #F59E0B;
}
.juku-info-form__content .wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.juku-info-form__content .wpcf7-form-group-student-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: var(--c-brand);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content .wpcf7-form-group-student-header {
    padding: 0.875rem 1.25rem;
    margin-bottom: 1rem;
  }
}
.juku-info-form__content .wpcf7-form-group-student-label {
  font-size: 1rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content .wpcf7-form-group-student-label {
    font-size: 0.9375rem;
  }
}
.juku-info-form__content .wpcf7-remove-student {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-info-form__content .wpcf7-remove-student {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.75rem;
  }
}
.juku-info-form__content .wpcf7-remove-student:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}
.juku-info-form__content .wpcf7-remove-student:active {
  transform: scale(0.95);
}
.juku-info-form__content .wpcf7-form-group-student {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
@media screen and (max-width: 896px) {
  .juku-info-form__content .wpcf7-form-group-student {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.juku-info-form__content .wpcf7-add-student {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.juku-info-form--thanks .juku-info-form__thanks-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-info-form--thanks .juku-info-form__thanks-header {
    margin-bottom: 2rem;
  }
}
.juku-info-form--thanks .juku-info-form__thanks-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: checkmark 0.6s ease-in-out;
}
@media screen and (max-width: 896px) {
  .juku-info-form--thanks .juku-info-form__thanks-icon {
    margin-bottom: 1.5rem;
  }
}
.juku-info-form--thanks .juku-info-form__thanks-icon-image {
  width: 120px;
  height: auto;
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 896px) {
  .juku-info-form--thanks .juku-info-form__thanks-icon-image {
    width: 100px;
  }
}
.juku-info-form--thanks .juku-info-form__thanks-subtitle {
  font-size: 1.125rem;
  color: var(--c-text);
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-info-form--thanks .juku-info-form__thanks-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.juku-info-form--thanks .juku-info-form__thanks-content {
  text-align: center;
}
.juku-info-form--thanks .juku-info-form__thanks-message {
  margin-bottom: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-info-form--thanks .juku-info-form__thanks-message {
    margin-bottom: 2rem;
  }
}
.juku-info-form--thanks .juku-info-form__thanks-message p {
  font-size: 1rem;
  color: var(--c-sub);
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-info-form--thanks .juku-info-form__thanks-message p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.juku-info-form--thanks .juku-info-form__thanks-actions {
  display: flex;
  justify-content: center;
}
.juku-info-form--thanks .juku-info-form__thanks-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--c-brand);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .juku-info-form--thanks .juku-info-form__thanks-button {
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
  }
}
.juku-info-form--thanks .juku-info-form__thanks-button:hover {
  background-color: #1a5490;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 101, 177, 0.3);
}
.juku-info-form--thanks .juku-info-form__thanks-button:active {
  transform: translateY(0);
}

@keyframes checkmark {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.juku-price__header-area {
  position: relative;
  width: 100%;
  background-color: var(--c-brand);
  padding: 10rem 0;
  overflow: hidden;
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .juku-price__header-area {
    padding: 5rem 0;
    margin-top: 76px;
  }
}

.juku-price__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/juku/ko-header-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.juku-price__header-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.juku-price__breadcrumb-wrapper {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding: 1.5rem 1rem 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 896px) {
  .juku-price__breadcrumb-wrapper {
    padding: 1rem 1rem 0;
  }
}

.juku-price__breadcrumb {
  margin: 0;
  text-align: left;
}
.juku-price__breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 0 0 4%;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 896px) {
  .juku-price__breadcrumb-list {
    font-size: 0.8125rem;
    padding: 0;
  }
}
.juku-price__breadcrumb-item {
  display: flex;
  align-items: center;
}
.juku-price__breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: rgba(0, 0, 0, 0.4);
}
.juku-price__breadcrumb-item a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease;
}
.juku-price__breadcrumb-item a:hover {
  color: var(--c-brand);
}
.juku-price__breadcrumb-item span {
  color: rgba(0, 0, 0, 0.8);
}

.juku-price__header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}
@media screen and (max-width: 896px) {
  .juku-price__header-title {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
}
@supports (-webkit-appearance: none) and (not (-moz-appearance: none)) {
  .juku-price__header-title {
    font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  }
}

.juku-price {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  .juku-price {
    padding: 3rem 0;
  }
}
.juku-price__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding: 0 1rem;
  max-width: 900px;
}
.juku-price__intro {
  margin-bottom: 3rem;
}
@media screen and (max-width: 896px) {
  .juku-price__intro {
    margin-bottom: 2rem;
  }
}
.juku-price__intro-text {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: var(--radius);
  max-width: 100%;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .juku-price__intro-text {
    padding: 1.25rem;
  }
}
.juku-price__intro-text-main {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
  margin: 0 0 0.75rem 0;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-price__intro-text-main {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }
}
.juku-price__intro-text-tax {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  font-weight: 400;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-price__intro-text-tax {
    font-size: 0.75rem;
  }
}
.juku-price__course-section {
  margin-bottom: 4rem;
}
@media screen and (max-width: 896px) {
  .juku-price__course-section {
    margin-bottom: 3rem;
  }
}
.juku-price__course-section:last-of-type {
  margin-bottom: 0;
}
.juku-price__course-header {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .juku-price__course-header {
    margin-bottom: 1.5rem;
  }
}
.juku-price__course-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 896px) {
  .juku-price__course-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.juku-price__course-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-price__course-description {
    font-size: 0.9375rem;
  }
}
.juku-price__course-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-price__course-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.juku-price__course-item {
  background-color: #E8F4F8;
  padding: 2rem;
  border-radius: var(--radius);
}
@media screen and (max-width: 896px) {
  .juku-price__course-item {
    padding: 1.5rem;
  }
}
.juku-price__course-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 896px) {
  .juku-price__course-item-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}
.juku-price__course-item-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-text);
  margin: 0 0 1.5rem 0;
}
@media screen and (max-width: 896px) {
  .juku-price__course-item-description {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}
.juku-price__course-item-price {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 896px) {
  .juku-price__course-item-price {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}
.juku-price__course-item-price-value {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-price__course-item-price-value {
    font-size: 1.125rem;
  }
}
.juku-price__course-item-details {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}
.juku-price__course-item-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.juku-price__course-item-label {
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-price__course-item-label {
    font-size: 0.875rem;
  }
}
.juku-price__course-item-value {
  font-size: 0.9375rem;
  color: var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-price__course-item-value {
    font-size: 0.875rem;
  }
}
.juku-price__note {
  margin-top: 3rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .juku-price__note {
    margin-top: 2rem;
  }
}
.juku-price__note-tax {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  font-weight: 400;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 896px) {
  .juku-price__note-tax {
    font-size: 0.75rem;
  }
}

.juku-timeline {
  width: 100%;
  padding: 3rem 0;
  background-color: #fff;
  position: relative;
  margin-top: 2rem;
}
.juku-timeline__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  padding: 0 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 0;
  min-height: 100%;
}
.juku-timeline__title-wrapper {
  position: relative;
  margin-bottom: 0.8rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .juku-timeline__title-wrapper {
    margin-bottom: 0.6rem;
    min-height: 50px;
    justify-content: flex-start;
  }
}
.juku-timeline__title-bar {
  display: none;
}
.juku-timeline__title-circle {
  width: 300px;
  height: 60px;
  border-radius: 0;
  background-color: var(--c-brand);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--c-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .juku-timeline__title-circle {
    width: 100%;
    height: 50px;
    border-width: 3px;
    box-shadow: 0 0 0 2px var(--c-brand);
    margin-left: 0;
    margin-right: 0;
  }
}
.juku-timeline__title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  padding: 0 1rem;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 896px) {
  .juku-timeline__title {
    font-size: 1rem;
    padding: 0 0.75rem;
  }
}
.juku-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  background-color: #E6E6E6;
  transform: translateX(-50%);
  z-index: 1;
  height: calc(100% - 90px - 2rem - 2rem - 3rem);
}
@media screen and (max-width: 896px) {
  .juku-timeline__line {
    left: 30px;
    transform: none;
    width: 3px;
    height: calc(100% - 60px - 1.5rem - 2rem - 2rem);
  }
}
.juku-timeline__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 4px;
  background-color: #E6E6E6;
}
@media screen and (max-width: 896px) {
  .juku-timeline__line::before {
    left: 0;
    transform: none;
    top: 160px;
    width: 100%;
    height: 3px;
  }
}
.juku-timeline__items {
  position: relative;
  z-index: 2;
  padding: 0.8rem 0;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 896px) {
  .juku-timeline__items {
    margin-bottom: 0.8rem;
  }
}
.juku-timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  position: relative;
  min-height: 40px;
}
@media screen and (max-width: 896px) {
  .juku-timeline__item {
    margin-bottom: 0.8rem;
    min-height: auto;
    padding-left: 1.5rem;
  }
}
.juku-timeline__item:last-child {
  margin-bottom: 0;
}
.juku-timeline__item--left {
  flex-direction: row;
  justify-content: flex-start;
}
.juku-timeline__item--left::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #E6E6E6;
  z-index: -10;
  right: calc(50% + 12px);
  width: calc(50% - (40% - 2rem));
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 896px) {
  .juku-timeline__item--left::before {
    left: 75px;
    width: calc(100% - 25px - 10px - 1rem - 80%);
  }
}
.juku-timeline__item--left .juku-timeline__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.juku-timeline__item--left .juku-timeline__content {
  text-align: left;
  background-color: #f3f3f3;
  padding: 0.75rem 1rem;
  border-radius: 0;
  max-width: calc(40% - 2rem);
  width: calc(40% - 2rem);
}
@media screen and (max-width: 896px) {
  .juku-timeline__item--left .juku-timeline__content {
    margin-left: 1rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 896px) {
  .juku-timeline__item--left {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .juku-timeline__item--left .juku-timeline__node {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .juku-timeline__item--left .juku-timeline__content {
    margin-right: 0;
    max-width: none;
    width: 80%;
    margin-left: 1rem;
    flex: 0 0 95%;
  }
}
.juku-timeline__item--right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.juku-timeline__item--right::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #E6E6E6;
  z-index: 2;
  left: calc(50% + 12px);
  width: calc(50% - 300px - 12px - (40% - 2rem));
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 896px) {
  .juku-timeline__item--right::before {
    left: 75px;
    width: calc(100% - 65px - 10px - 1rem - 80%);
  }
}
.juku-timeline__item--right .juku-timeline__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.juku-timeline__item--right::before {
  left: 50%;
  width: calc(50% - 300px - 12px);
  top: 50%;
  transform: translateY(-50%);
}
.juku-timeline__item--right .juku-timeline__content {
  text-align: left;
  background-color: #f3f3f3;
  padding: 0.75rem 1rem;
  border-radius: 0;
  max-width: calc(40% - 2rem);
  width: calc(40% - 2rem);
}
@media screen and (max-width: 896px) {
  .juku-timeline__item--right .juku-timeline__content {
    margin-left: 1rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 896px) {
  .juku-timeline__item--right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .juku-timeline__item--right .juku-timeline__node {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .juku-timeline__item--right .juku-timeline__content {
    margin-left: 1rem;
    max-width: none;
    width: 80%;
    flex: 0 0 95%;
  }
}
.juku-timeline__node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 896px) {
  .juku-timeline__node {
    width: 20px;
    height: 20px;
  }
}
.juku-timeline__node--blue {
  background-color: var(--c-brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--c-brand);
}
.juku-timeline__node--yellow {
  background-color: #FFD700;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #FFD700;
}
.juku-timeline__content {
  flex: 1;
}
@media screen and (max-width: 896px) {
  .juku-timeline__content {
    width: 100%;
  }
}
.juku-timeline__content-step {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-brand);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-align: left;
  letter-spacing: 0.05em;
  border: 1px solid var(--c-brand);
  border-radius: 30px;
  padding: 0.15rem 0.4rem;
  display: inline-block;
}
@media screen and (max-width: 896px) {
  .juku-timeline__content-step {
    font-size: 0.6875rem;
    margin-bottom: 0.2rem;
    padding: 0.1rem 0.35rem;
  }
}
.juku-timeline__content-title {
  font-size: 1.125rem;
  font-weight: 900;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: var(--c-brand);
  line-height: 1.5;
  margin-bottom: 0.25rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .juku-timeline__content-title {
    font-size: 0.9rem;
  }
}
@supports (-webkit-touch-callout: none) {
  .juku-timeline__content-title {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Meiryo", sans-serif;
    font-weight: 700;
  }
}
.juku-timeline__content-text {
  font-size: 0.8375rem;
  font-weight: 400;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .juku-timeline__content-text {
    font-size: 0.775rem;
  }
}
.juku-timeline__result-wrapper {
  width: 300px;
  margin: 1.2rem auto 0.8rem;
  padding: 0.75rem;
  background-color: #FFD700;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #FFD700;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 896px) {
  .juku-timeline__result-wrapper {
    width: 100%;
    margin: 0.8rem 0 0.6rem;
    padding: 0.6rem;
    padding-left: 0.75rem;
    margin-left: 0;
    border-width: 3px;
    box-shadow: 0 0 0 2px #FFD700;
  }
}
.juku-timeline__result-text {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: red;
  margin: 0 0 0.5rem 0;
}
@media screen and (max-width: 896px) {
  .juku-timeline__result-text {
    font-size: 1.25rem;
  }
}
@supports (-webkit-touch-callout: none) {
  .juku-timeline__result-text {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Meiryo", sans-serif;
    font-weight: 700;
  }
}
.juku-timeline__result-universities {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-timeline__result-universities {
    font-size: 0.8125rem;
  }
}
.juku-timeline__footer {
  background-color: var(--c-brand);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 0.5rem 0.75rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 896px) {
  .juku-timeline__footer {
    font-size: 0.9375rem;
    padding: 0.45rem 0.5rem;
  }
}

.juku-cta {
  width: 100%;
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .juku-cta {
    padding: 3rem 0;
  }
}
.juku-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/juku/cta-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.juku-cta__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  text-align: center;
}
.juku-cta__title {
  font-size: 2rem;
  font-weight: 900;
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}
@media screen and (max-width: 896px) {
  .juku-cta__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
@supports (-webkit-touch-callout: none) {
  .juku-cta__title {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Meiryo", sans-serif;
    font-weight: 700;
  }
}
.juku-cta__description {
  font-size: 1rem;
  font-weight: 400;
  font-family: NotoSansJP-Regular, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  line-height: 1.8;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 896px) {
  .juku-cta__description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
}
.juku-cta__info-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 0 auto 2rem;
  max-width: 600px;
}
@media screen and (max-width: 896px) {
  .juku-cta__info-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.juku-cta__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.juku-cta__info-item {
  font-size: 1rem;
  font-weight: 400;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.juku-cta__info-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 896px) {
  .juku-cta__info-item {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}
.juku-cta__button-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-cta__button-area {
    padding-bottom: 1.5rem;
  }
}
.juku-cta__button {
  display: inline-block;
  background-color: #FF6B9D;
  color: #fff;
  padding: 1rem 7rem;
  border-radius: 4rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}
.juku-cta__button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  color: #FF6B9D;
}
.juku-cta__button:active {
  transform: translateY(0);
}
@media screen and (max-width: 896px) {
  .juku-cta__button {
    font-size: 1rem;
    padding: 0.875rem 4rem;
  }
}
.juku-cta__button-note {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-top: 0.25rem;
}
@media screen and (max-width: 896px) {
  .juku-cta__button-note {
    font-size: 0.6875rem;
  }
}
.juku-cta__note {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  color: #DC2626;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .juku-cta__note {
    font-size: 0.8125rem;
  }
}

.juku-footer {
  width: 100%;
  background-color: #fff;
  color: #2c2c2c;
  padding: 3rem 0 1rem;
  margin-top: 0;
}
@media screen and (max-width: 500px) {
  .juku-footer {
    padding: 1rem 0 1rem;
  }
}
.juku-footer .footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer-inner {
    gap: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}
.juku-footer .footer__logo-area {
  flex-shrink: 0;
}
.juku-footer .footer__logo-area .footer_logo {
  margin: 0;
}
.juku-footer .footer__logo-area .footer_logo img {
  max-height: 56px;
  width: auto;
  display: block;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__logo-area .footer_logo img {
    max-height: 48px;
  }
}
.juku-footer .footer__nav {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav--pc {
    display: none;
  }
}
.juku-footer .footer__nav--mobile {
  display: none;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav--mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.juku-footer .footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav-list--main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav-list--sub {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: center;
    align-items: center;
  }
}
.juku-footer .footer__nav-item {
  margin: 0;
}
.juku-footer .footer__nav-item a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
  transition: opacity 0.3s;
}
.juku-footer .footer__nav-item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav-item--main {
    width: 100%;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    min-height: 60px;
  }
  .juku-footer .footer__nav-item--main:nth-child(2n) {
    border-right: none;
  }
  .juku-footer .footer__nav-item--main:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .juku-footer .footer__nav-item--main a {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav-item--sub a {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.7;
  }
}
.juku-footer .footer__nav-separator {
  margin: 0;
  color: #2c2c2c;
  opacity: 0.5;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav-separator--sub {
    opacity: 0.3;
    font-size: 0.75rem;
  }
}
.juku-footer .footer__nav-break {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  display: none;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav-break {
    display: block;
  }
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__nav-break + .footer__nav-separator {
    display: none;
  }
}
.juku-footer .footer__company-area {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__company-area {
    padding-top: 0.5rem;
    margin-top: 0rem;
  }
}
.juku-footer .footer__company-logo {
  margin-bottom: 0rem;
}
.juku-footer .footer__company-logo img {
  max-height: 62px;
  width: auto;
  display: inline-block;
  opacity: 0.9;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer__company-logo img {
    max-height: 62px;
  }
}
.juku-footer .footer_copyright {
  text-align: center;
  margin: 0;
  font-size: 0.875rem;
  color: #2c2c2c;
  opacity: 0.7;
}
@media screen and (max-width: 896px) {
  .juku-footer .footer_copyright {
    font-size: 0.8125rem;
  }
}

.juku-main .site-main {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 896px) {
  .juku-main .site-main {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.juku-main .entry-content h1, .juku-main .entry-content h2, .juku-main .entry-content h3, .juku-main .entry-content h4, .juku-main .entry-content h5, .juku-main .entry-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-text);
}
.juku-main .entry-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.juku-main .entry-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-family: NotoSansJP-Black, "Noto Sans JP", sans-serif;
}
.juku-main .entry-content h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: NotoSansJP-Bold, "Noto Sans JP", sans-serif;
}
.juku-main .entry-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--c-text);
}
@media screen and (max-width: 896px) {
  .juku-main .entry-content p {
    font-size: 0.9375rem;
  }
}
.juku-main .entry-content a {
  color: var(--c-brand);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.juku-main .entry-content a:hover {
  color: #0d4a7a;
}
.juku-main .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
}
.juku-main .entry-content ul, .juku-main .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--c-text);
}
.juku-main .entry-content ul li, .juku-main .entry-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
.juku-main .entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--c-brand);
  background-color: var(--c-bg-gray);
  border-radius: var(--radius);
}
.juku-main .entry-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
}
/*# sourceMappingURL=juku.css.map */
