@charset "utf-8";

@import "style.css";
@import "color.css";
@import "font.css?20250624_1.0.0";
@import "line-height.css";
@import "margin.css";
@import "padding.css?20250603_0.0.1";

:root {
  --bs-font-sans-serif: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --bs-font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --bs-emphasis-color: #000;
  --bs-body-bg: #fff;
  --bs-body-color: #333 !important;
  --bs-body-width: 1048px;
  --bs-color-green: #00843f;
}

/*---------------------------------------------------
font-familyここから
----------------------------------------------------*/
body {
  font-family: var(--bs-font-sans-serif);
}

/*---------------------------------------------------
リセットCSSここから
----------------------------------------------------*/
header a,
main a,
footer a {
  color: #333 !important;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.ls-none {
  list-style-type: none !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background-color: #fff;
  border: 1px solid #333 !important;
  border-radius: 8px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: 56px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: #d2d8d4;
}

input[type="text"]:focus {
  outline: 0;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
}

button:focus {
  outline: 0;
}

*:focus {
  outline: none;
}

.width-fit-content {
  width: fit-content;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wm-rl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*---------------------------------------------------
 header
----------------------------------------------------*/
.header {
  width: 100%;
  z-index: 99;
}

.header-logo-sp {
  position: absolute;
  top: 28px;
  left: 20px;
  z-index: 9;
}

.header-logo-sp-body {
  width: 80px;
  height: 75px;
}

.mega-menu-body {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 8px;
  top: 45px;
  left: 75%;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateX(-50%);
}

.mega-menu-body::before {
  position: absolute;
  content: "";
  top: -40px;
  left: 25%;
  max-width: 100px;
  width: 100%;
  height: 55px;
}

.nav-learning-studio .mega-menu-body {
  background-color: transparent !important;
}

.mega-menu-text:hover .mega-menu-body {
  opacity: 1;
  visibility: visible;
}

.mega-menu-arrow::after {
  position: absolute;
  content: "";
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  width: 10px;
  height: 10px;
  top: 45%;
  right: 0.5rem;
  transform: translateY(-50%) rotate(45deg);
}

.nav-learning-studio .mega-menu-arrow::after {
  border-color: #fff;
}

html.is-fixed {
  overflow: auto;
  scrollbar-gutter: stable !important;
}

@media screen and (min-width: 992px) {
  .header {
    position: absolute;
    top: 48px;
    right: 0;
    width: 100%;
    height: auto;
  }

  .header-height {
    height: 150px;
  }
}

.ham-box {
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background-image: url(../image/common/bg_hamburger_button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 9999;
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  position: absolute;
  width: 19px;
  height: 2px;
  opacity: 1;
}

.ham-bar {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ham-bar::before,
.ham-bar::after {
  position: absolute;
  content: "";
  background: #fff;
  left: 0;
  transition: 0.4s;
}

.ham-bar::before {
  top: calc(50% - 4px);
}

.ham-bar::after {
  top: calc(50% + 4px);
}

.is-active .ham-bar {
  background-color: transparent !important;
}

.is-active .ham-bar::before {
  top: calc(50% - 10px);
  left: 0;
  transform: translateY(10px) rotate(-45deg);
  transition: 0.4s;
}

.is-active .ham-bar::after {
  top: calc(50% + 10px);
  left: 0;
  transform: translateY(-10px) rotate(45deg);
  transition: 0.4s;
}

.ham-drawer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  pointer-events: none;
  background-color: var(--bs-color-green);
  z-index: 88;
  transition: 0.5s;
  transform: translateY(100%);
}

.ham-drawer.is-active {
  pointer-events: auto;
  transform: translateY(0);
}

.ham-drawer-inner {
  padding-top: 60px;
  margin-bottom: 60px;
  height: calc(100svh - 104px);
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
}

.ham-drawer-inner::-webkit-scrollbar {
  display: none;
}

.header-menu-scroll-height {
  height: calc(100vh - 105px);
}

.header-banner-gap {
  column-gap: 40px;
}

.ham-menu-logo {
  object-fit: contain;
  width: 150px;
}

@media screen and (min-width: 992px) {
  .ham-box {
    position: fixed;
    top: 30px;
    right: calc(3.75 * var(--bs-gutter-x));
    width: 60px;
    height: 60px;
    cursor: pointer;
  }

  .ham-bar,
  .ham-bar::before,
  .ham-bar::after {
    width: 26px;
    height: 2px;
  }

  .ham-drawer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: #fff;
    z-index: 88;
    transition: 0.5s;
    transform: translateY(-100%);
  }

  .ham-drawer.is-active {
    pointer-events: auto;
    transform: translateY(0);
  }

  .ham-drawer_contents {
    margin-top: 24px;
  }

  .ham-drawer-inner {
    padding-top: 76px;
    margin-bottom: 76px;
    height: 100vh;
  }
}

@media screen and (min-width: 1400px) {
  .ham-drawer-inner {
    padding-top: 0;
    margin-bottom: 0;
  }

  .ham-drawer-box {
    max-width: 1312px;
  }
}

@media screen and (min-width: 1600px) {
  .ham-box {
    top: 30px;
    right: 10%;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
}

/*---------------------------------------------------
nav-menu
----------------------------------------------------*/
.header-link-button {
  background-color: #fff;
  border: 1px solid var(--bs-color-green);
  color: var(--bs-color-green) !important;
  transition: 0.3s;
}

.header-link-button:hover {
  background-color: var(--bs-color-green);
  color: #fff !important;
}

.header-container-large {
  max-width: 440px;
}

.header-banner-height {
  height: 114px;
}

.header-container-small {
  max-width: 200px;
}

.header-contact-gap {
  gap: 65px;
}

.header-contact-container-small {
  max-width: 300px;
}

.header-contact-link-button,
.not-found-top-link-button {
  position: relative;
  background-color: var(--bs-color-green);
  border: 1px solid var(--bs-color-green);
  color: #fff !important;
  transition: 0.3s;
}

.header-contact-link-button:hover,
.not-found-top-link-button:hover {
  background-color: #006837 !important;
}

.header-contact-link-button-arrow {
  position: relative;
}

.header-contact-link-button-arrow::before,
.header-contact-link-button-arrow::after {
  position: absolute;
  content: "";
  transition: 0.3s;
}

.header-contact-link-button-arrow::before {
  width: 18px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.header-contact-link-button-arrow::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 10px;
  height: 10px;
  top: 50%;
  right: -8px;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}

#ham-drawer .accordion-item {
  background-color: transparent !important;
  border: none !important;
}

#ham-drawer .accordion-button {
  background-color: transparent !important;
  border: none !important;
  transition: var(--bs-accordion-transition) !important;
}

#ham-drawer .accordion-button:focus,
#ham-drawer .accordion-button:not(.collapsed) {
  border: none !important;
  box-shadow: none !important;
}

#ham-drawer .accordion-button::before {
  position: absolute;
  content: "";
  background-color: #fff !important;
  border-radius: 9999px;
  width: 20px !important;
  height: 3px !important;
  top: 50% !important;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: var(--bs-accordion-btn-icon-transition) !important;
}

#ham-drawer .accordion-button::after {
  background-image: none !important;
  background-color: #fff !important;
  border-radius: 9999px;
  width: 20px !important;
  height: 3px !important;
  top: 50% !important;
}

#ham-drawer .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(0) !important;
  transition: var(--bs-accordion-btn-icon-transition) !important;
}

#ham-drawer .accordion-button:not(.collapsed)::after {
  background-color: transparent !important;
  transform: rotate(-90deg) !important;
}

#ham-drawer .nav-link-arrow::before {
  border-color: #fff !important;
  width: 10px;
  height: 10px;
}

/*---------------------------------------------------
 footer
----------------------------------------------------*/
.footer-bg {
  background-color: #ffffff;
}

.footer-accent-top {
  aspect-ratio: 1512 / 262;
  object-fit: cover;
  width: 100%;
  height: fit-content;
  pointer-events: none;
  margin-bottom: -2px;
}

.footer-accent-body {
  background: linear-gradient(88deg, rgba(38, 202, 145, 1) 0%, rgba(0, 155, 74, 1) 100%);
  margin-top: -1px;
}

.footer-school-image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.footer-school-swiper .swiper-slide figure {
  padding: 0 !important;
  width: 120px !important;
}

.footer-scroll-text {
  align-self: center;
  font-size: 60px;
  white-space: nowrap;
  padding: 0 60px;
}

.footer-link-button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff !important;
  border-radius: 9999px;
  transition: 0.3s;
}

.footer-link-button-arrow {
  position: relative;
  padding-right: 32px !important;
}

.footer-link-button-arrow::before,
.footer-link-button-arrow::after {
  position: absolute;
  content: "";
}

.footer-link-button-arrow::before {
  width: 18px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: 1;
}

.footer-link-button-arrow::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 9px;
  height: 9px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
  z-index: 2;
}

.footer-link-button:hover {
  background-color: #fff;
  color: var(--bs-color-green) !important;
}

.footer-link-button:hover .footer-link-button-arrow::before {
  background-color: var(--bs-color-green);
}

.footer-link-button:hover .footer-link-button-arrow::after {
  border-color: var(--bs-color-green);
}

.footer-catalog-wrapper {
  width: 100%;
}

.footer-contact-border {
  border: 1px solid #fff;
  border-radius: 9999px;
}

.footer-info-banner,
.footer-info-nav {
  max-width: 480px;
}

.footer-logo-contact {
  object-fit: contain;
  width: 26px;
  height: 26px;
}

.footer-nav-bg-white {
  position: relative;
  margin-top: 80px;
}

.footer-nav-bg-white::before {
  position: absolute;
  content: "";
  background: #fff;
  aspect-ratio: 1 / 1;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  width: 300%;
  height: 100%;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.footer-banner-box-shadow {
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.09);
}

.sns-icon-instagram {
  width: 29px;
  height: 29px;
  aspect-ratio: 1 / 1;
}

.sns-icon-note {
  width: 63px;
  height: 14px;
  aspect-ratio: 63 / 14;
}

.sp-float-menu {
  height: 75px;
}

@media screen and (min-width: 992px) {
  .footer-accent-body {
    background: linear-gradient(80deg, rgba(38, 202, 145, 1) 0%, rgba(0, 155, 74, 1) 100%);
    margin-top: -1px;
  }

  .footer-school-swiper .swiper-slide figure {
    padding: 0 !important;
    width: 200px !important;
  }

  .footer-school-image {
    height: 196px;
  }

  .footer-scroll-text {
    font-size: 160px;
    padding-left: 60px;
  }

  .footer-phone-icon {
    width: 17px;
    height: 17px;
  }

  .footer-side-border {
    border-right: 1px solid #333;
    max-width: 350px;
  }

  .footer-info-container {
    gap: 80px;
  }

  .footer-inquiry-wrapper {
    max-width: 438px;
  }

  .footer-info-wrapper {
    column-gap: 34px;
    margin-top: -70px;
  }

  .footer-info-company {
    max-width: 336px;
  }

  .footer-info-banner-inner {
    gap: 10px;
    min-width: 480px;
  }

  .footer-info-banner-large {
    max-width: 270px;
    aspect-ratio: 270 / 236;
  }

  .footer-info-banner-large-body {
    object-position: center;
    height: 100%;
    aspect-ratio: 270 / 236;
  }

  .footer-info-banner-small {
    max-width: 200px;
  }

  .footer-info-nav {
    max-width: 136px;
  }

  .footer-info-banner-small-body {
    width: 100%;
  }

  .footer-catalog-wrapper {
    max-width: calc(100% - 438px - 80px);
  }

  .footer-contact-border {
    border: none;
  }

  .footer-nav-bg-white {
    margin-top: 300px;
  }

  .footer-nav-bg-white::before {
    aspect-ratio: 1 / 1;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    width: 320%;
    height: 3500%;
    top: -300px;
    left: 50%;
  }

  .footer-banner-box-shadow {
    box-shadow: none;
  }
}

/*---------------------------------------------------
 Swiper
----------------------------------------------------*/
/* top */
#topFvSwiper .swiper-button-prev,
#topFvSwiper .swiper-button-next {
  width: 48px;
  height: 48px;
  opacity: 0;
  visibility: hidden;
}

#topFvSwiper .swiper-top-fv-pagination {
  position: relative;
  top: -12px !important;
  left: 20px !important;
  max-width: fit-content;
  text-align: left;
  z-index: 0;
}

#topFvSwiper .swiper-top-fv-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 3px;
  border-radius: 0 !important;
  transition: 0.3s;
  background-color: #d2d8d4;
  opacity: 1 !important;
}

#topFvSwiper .swiper-pagination-bullet-active {
  width: 20px !important;
  background-color: var(--bs-color-green) !important;
}

.supporter-top-swiper .swiper-wrapper,
.supporter-bottom-swiper .swiper-wrapper,
.footer-school-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

#topNewsSwiper .swiper-button-prev,
#topNewsSwiper .swiper-button-next,
#topNewsSwiper .swiper-button-prev::after,
#topNewsSwiper .swiper-button-next::after {
  width: 40px;
  height: 80px;
}

#topNewsSwiper .swiper-button-prev {
  left: 0;
  top: 50%;
  transform: translateY(-24%);
}

#topNewsSwiper .swiper-button-next {
  right: 0;
  top: 50%;
  transform: translateY(-24%);
}

#topNewsSwiper .swiper-button-prev::after {
  background-image: url("../image/learning-studio/slider-about-arrow-prev_sp.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent !important;
  opacity: 0.75;
}

#topNewsSwiper .swiper-button-next::after {
  background-image: url("../image/learning-studio/slider-about-arrow-next_sp.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent !important;
  opacity: 0.75;
}

#topNewsSwiper .swiper-top-news-pagination {
  bottom: -40px !important;
}

#topNewsSwiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
#topNewsSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px 0;
}

#topNewsSwiper .swiper-pagination-bullet {
  background-color: var(--bs-color-green);
  width: 16px;
  height: 16px;
}

.footer-school-swiper .swiper-slide {
  width: fit-content !important;
}

.footer-school-swiper .swiper-slide figure {
  padding-left: 60px;
}

.footer-sp-icon {
  object-fit: contain;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 992px) {
  #topFvSwiper .swiper-top-fv-pagination {
    top: -75px !important;
    left: 50% !important;
    max-width: 1024px;
    text-align: left;
    transform: translateX(-50%);
  }

  #topFvSwiper .swiper-top-fv-pagination .swiper-pagination-bullet {
    width: 16px;
  }

  #topFvSwiper .swiper-pagination-bullet-active {
    width: 40px !important;
    background-color: var(--bs-color-green) !important;
  }

  #topFvSwiper .swiper-button-prev,
  #topFvSwiper .swiper-button-next {
    top: -12%;
    opacity: 1;
    visibility: visible;
  }

  #topFvSwiper .swiper-button-prev {
    left: auto;
    right: calc(9 * var(--bs-gutter-x));
  }

  #topFvSwiper .swiper-button-next {
    right: calc(6 * var(--bs-gutter-x));
  }

  #topFvSwiper .swiper-button-prev::after,
  #topFvSwiper .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 48px;
    height: 48px;
    margin: auto;
  }

  #topFvSwiper .swiper-button-prev::after {
    background-image: url("../image/top/img_top_slider_arrow_prev_white.svg");
  }

  #topFvSwiper .swiper-button-next::after {
    background-image: url("../image/top/img_top_slider_arrow_next_white.svg");
  }

  #topNewsSwiper .swiper-button-prev,
  #topNewsSwiper .swiper-button-next,
  #topNewsSwiper .swiper-button-prev::after,
  #topNewsSwiper .swiper-button-next::after {
    width: 60px;
    height: 60px;
  }

  #topNewsSwiper .swiper-button-prev::after {
    background-image: url("../image/learning-studio/slider-about-arrow-prev.svg");
  }

  #topNewsSwiper .swiper-button-next::after {
    background-image: url("../image/learning-studio/slider-about-arrow-next.svg");
  }

  #topNewsSwiper .swiper-top-news-pagination {
    bottom: -40px !important;
  }

  #topNewsSwiper .swiper-pagination-bullet {
    background-color: var(--bs-color-green);
    width: 12px;
    height: 12px;
  }

  #topNewsSwiper .swiper-button-prev {
    left: 20px;
  }

  #topNewsSwiper .swiper-button-next {
    right: 20px;
  }
}

@media screen and (min-width: 1200px) {
  #topFvSwiper .swiper-button-prev {
    left: auto;
    right: calc(12.5 * var(--bs-gutter-x));
  }

  #topFvSwiper .swiper-button-next {
    right: calc(9 * var(--bs-gutter-x));
  }
}

/*---------------------------------------------------
 Loading Animation
----------------------------------------------------*/
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-color-green);
  z-index: 9999;
}

.shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
}

.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
  animation: byeShutter 2.6s forwards;
}

.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
  animation: shutterOpen 2.6s forwards;
}

.content {
  -webkit-animation: contentScale 2.6s forwards;
  animation: contentScale 2.6s forwards;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
    transform: perspective(800px) scale(1) rotateX(0);
  }
}
