@charset "UTF-8";
@layer components {
  :root {
    --brand: 36 99% 55%;
  }
  html {
    font-size: clamp(15px, 0.45vw + 14px, 18px);
  }
  .eng {
    font-family: "Dancing Script", cursive;
    font-weight: 400;
    font-style: normal;
  }
  .hero-area::before {
    content: "";
    width: calc(100% - 1rem);
    height: calc(100% - 3rem);
    background: url(../images/bg-sp.png) #fde0cc bottom left no-repeat;
    background-size: contain;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    border: 0;
    border-radius: 2rem;
  }
  .hero-area h1 {
    line-height: 1.2 !important;
  }
  @media (min-width: 500px) {
    .hero-area::before {
      width: calc(100% - 2rem);
      height: calc(100% - 4rem);
      top: 1rem;
      left: 1rem;
      background: url(../images/bg.png) #fde0cc bottom right no-repeat;
      background-size: cover;
    }
  }
  .btn-wrap {
    width: calc(100% - 2rem);
    position: relative;
  }
  .btn-wrap .main-button {
    width: 100%;
    padding: 2rem 2rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background: #32b16c;
    color: #fff !important;
    font-weight: bold;
    box-shadow: 0 5px 0 #2c9d60;
    transition: 0.2s;
    position: relative;
  }
  .btn-wrap .main-button::after {
    content: "";
    position: absolute;
    top: calc(50% + 0.3rem);
    right: 2rem;
    width: 0.7rem;
    height: 0.7rem;
    border-top: solid 2px #fff !important;
    border-right: solid 2px #fff !important;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s;
  }
  .btn-wrap .main-button:hover {
    background: #6bc594;
    color: #fff;
    box-shadow: 0 2px 0 #2c9d60;
    transform: translateY(3px);
  }
  .btn-wrap .btn-balloon {
    white-space: nowrap;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    background-color: #fff;
    font-size: 1rem !important;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1.3rem;
    left: 50%;
    transform: translate(-50%, 0%);
    pointer-events: none;
    transition: 0.2s;
    color: #009b5d;
    z-index: 2;
    border: 3px solid #009b5d !important;
  }
  .schedule-card .desc {
    font-size: 0.8rem;
  }
  .recommend-area .card {
    background-color: #fff;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    display: inline-block;
    padding: 0.8rem 0.8rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 0.8rem -0.5rem rgba(0, 0, 0, 0.4);
  }
  @media (min-width: 768px) {
    .recommend-area .card {
      font-size: 1.1rem;
    }
  }
  .plan-area .card {
    position: relative;
  }
  .plan-area .card.fully {
    overflow: hidden;
  }
  .plan-area .card.fully::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .plan-area .card.fully::after {
    content: "現在満枠";
    background-color: #dbaf40;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 3rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1rem;
  }
  @media (min-width: 768px) {
    .plan-area .card.fully::after {
      font-size: 1rem;
      padding: 0.4rem 0.8rem;
    }
  }
  .courses-area .card {
    background-color: #fff;
    padding: 0 1rem 2rem;
    border-radius: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  .courses-area .card img {
    width: calc(100% + 4rem) !important;
    max-width: none !important;
    height: auto;
    margin-left: -2rem;
    margin-bottom: 1rem;
  }
  .courses-area .card h3 {
    color: #c38383;
  }
  .courses-area .card .content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
  .courses-area .card.fully::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .courses-area .card.fully::after {
    content: "満枠";
    background-color: #dbaf40;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 3rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.5rem 1rem;
  }
  @media (min-width: 768px) {
    .courses-area .card.fully::after {
      font-size: 1rem;
      padding: 0.4rem 0.8rem;
    }
  }
  .cta-area {
    background: url(../images/cta-bg.jpg) no-repeat center center;
    background-size: cover;
  }
  .cta-area .title-fukidashi {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.6rem !important;
  }
  .cta-area .title-fukidashi::before, .cta-area .title-fukidashi::after {
    content: "";
    width: 0.2rem;
    height: 2.5rem;
    background-color: #fff;
  }
  .cta-area .title-fukidashi::before {
    transform: rotate(-35deg);
    margin-right: 2rem;
  }
  .cta-area .title-fukidashi::after {
    transform: rotate(35deg);
    margin-left: 2rem;
  }
  .cta-area .cta-box {
    background-color: #fff;
  }
  @media (min-width: 768px) {
    .cta-area .title-fukidashi {
      font-size: 1.7rem !important;
    }
    .cta-area .title-fukidashi::before, .cta-area .title-fukidashi::after {
      content: "";
      width: 0.2rem;
      height: 2.5rem;
    }
    .cta-area .title-fukidashi::before {
      margin-right: 2rem;
    }
    .cta-area .title-fukidashi::after {
      margin-left: 2rem;
    }
  }
  .normal-button {
    display: inline-block;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background: #32b16c;
    color: #fff !important;
    font-weight: bold;
    box-shadow: 0 5px 0 #2c9d60;
    transition: 0.2s;
    position: relative;
  }
  .normal-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 0.6rem;
    height: 0.6rem;
    border-top: solid 2px #fff !important;
    border-right: solid 2px #fff !important;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s;
  }
  .normal-button:hover {
    background: #6bc594;
    color: #fff;
    box-shadow: 0 2px 0 #2c9d60;
    transform: translateY(3px);
  }
  .voice-area .splide__arrow--prev {
    left: -0.5rem !important;
  }
  .voice-area .splide__arrow--next {
    right: -0.5rem !important;
  }
  .splide__pagination__page.is-active {
    background-color: #c38383 !important;
  }
  .splide__arrow--prev, .splide__arrow--next {
    background-color: #c38383 !important;
  }
  .splide__arrow svg {
    fill: #fff !important;
  }
}/*# sourceMappingURL=styles.css.map */