@charset "UTF-8";
/* Scss Document */
/* 
---------------------------------------
schools01
---------------------------------------
*/
@media (max-width: 999px) {
  #schools {
    margin-top: 40px; } }
#schools .schoolCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw; }
  @media (max-width: 999px) {
    #schools .schoolCards {
      grid-template-columns: 1fr;
      gap: 24px; } }
#schools .schoolCard {
  background: #fff;
  border: 2px solid #F2F3F4;
  border-radius: clamp(10px, 1.4285714286vw, 20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /*    box-shadow:0 2px 8px rgba(#000,0.04);*/ }
#schools .pic {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden; }
#schools .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s all; }
#schools .pic:hover img {
  transform: scale(1.05); }
#schools .txtBox {
  padding: clamp(20px, 1.5vw, 30px);
  flex: 1;
  display: flex;
  flex-direction: column; }
  @media (max-width: 999px) {
    #schools .txtBox {
      padding: 20px; } }
#schools .ttl {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
  margin-bottom: 1vw;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }
  @media (max-width: 999px) {
    #schools .ttl {
      font-size: 22px;
      margin-bottom: 16px; } }
#schools .infoBox {
  margin-bottom: 30px; }
  @media (max-width: 999px) {
    #schools .infoBox {
      margin-bottom: 20px; } }
#schools .info {
  display: flex;
  align-items: flex-start;
  margin-bottom: clamp(16px, 1.4vw, 20px);
  align-items: flex-start; }
  @media (max-width: 999px) {
    #schools .info {
      margin-bottom: 8px; } }
#schools .info:last-child {
  margin-bottom: 0; }
#schools .info .ico {
  width: 20px;
  margin-right: 10px;
  line-height: 1;
  display: block; }
#schools .info .ico img {
  width: 100%;
  height: auto;
  display: block; }
#schools .info p {
  font-size: 14px;
  width: 90%; }
#schools .info p span {
  display: inline-block;
  margin-left: 12px; }
  @media (max-width: 999px) {
    #schools .info p span {
      margin-left: 8px; } }
#schools .info.tel {
  align-items: center; }
#schools .info.tel p a {
  font-size: 18px;
  line-height: 1.5;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }
  @media (max-width: 999px) {
    #schools .info.tel p a {
      font-size: 20px; } }
#schools .info.course p {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 5px; }
#schools .info.course p span {
  display: block;
  margin-left: 0;
  border: 1px solid;
  border-radius: 4px;
  padding: 2px 6px; }
#schools .info .course-start-up {
  color: #E3AB00; }
#schools .info .course-entry {
  color: #0096DB; }
#schools .info .course-standard {
  color: #2FA67A; }
#schools .info .course-advanced {
  color: #D94C3A; }
#schools .info .course-explorer {
  color: #F28C28; }
#schools .info.instagram p a {
  text-decoration: underline;
  text-underline-offset: 3px; }
#schools .btnBox {
  margin-top: auto;
  display: flex;
  justify-content: flex-end; }
#schools .DetailBtn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }
#schools .DetailBtn span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0E7BDB;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  font-size: 12px; }

/* 
---------------------------------------
#schoolFloatingBnr
---------------------------------------
*/
#schoolFloatingBnr {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120%);
  width: min(100%, 420px);
  background: #fff;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease; }
  @media (min-width: 1000px) {
    #schoolFloatingBnr {
      display: none; } }

#schoolFloatingBnr.is-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto; }

#schoolFloatingBnr .schoolName {
  padding: 10px 12px 8px;
  background: #F2F3F4;
  color: #1A1A1A;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }

#schoolFloatingBnr .linkBox {
  display: flex;
  background: #fff; }

#schoolFloatingBnr .linkBox a {
  width: 33.333%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 15px;
  line-height: 1;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  border-right: 1px solid #E5E5E5; }

#schoolFloatingBnr .linkBox a:last-child {
  border-right: none; }

#schoolFloatingBnr .linkBox a i {
  font-size: 18px; }

#schoolFloatingBnr .linkBox a.tel,
#schoolFloatingBnr .linkBox a.mail {
  color: #0E7BDB; }

#schoolFloatingBnr .linkBox a.event {
  color: #24A53B; }

@media (max-width: 999px) {
  body.has-school-floating {
    padding-bottom: 92px; } }

/* 
---------------------------------------
#underSchool_contact
---------------------------------------
*/
#underSchool_contact {
  position: relative;
  background: #FFCC26;
  padding: 75px 0 70px;
  overflow: visible; }
  @media (max-width: 999px) {
    #underSchool_contact {
      display: none;
      padding: 40px 0 45px;
      margin-top: 16px;
      margin-bottom: 16px; } }
  #underSchool_contact::before, #underSchool_contact::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 22px;
    background-repeat: repeat-x;
    background-size: 54px 22px;
    z-index: -1;
    pointer-events: none; }
  #underSchool_contact::before {
    top: -21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='22' viewBox='0 0 54 22'%3E%3Cpath d='M0 22V7C13.5 7 13.5 0 27 0s13.5 7 27 7v15H0z' fill='%23FFCC26'/%3E%3C/svg%3E"); }
  #underSchool_contact::after {
    bottom: -21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='22' viewBox='0 0 54 22'%3E%3Cpath d='M0 0v15c13.5 0 13.5 7 27 7s13.5-7 27-7V0H0z' fill='%23FFCC26'/%3E%3C/svg%3E"); }
  #underSchool_contact .inner_M {
    position: relative;
    z-index: 1;
    text-align: center; }
  #underSchool_contact .contactTtlBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px; }
    @media (max-width: 999px) {
      #underSchool_contact .contactTtlBox {
        display: block;
        margin-bottom: 22px; } }
  #underSchool_contact .contactLine {
    display: block;
    width: 68px;
    height: auto;
    flex-shrink: 0; }
    @media (max-width: 999px) {
      #underSchool_contact .contactLine {
        display: none; } }
  #underSchool_contact h3 {
    color: #333333;
    font-size: 34px;
    line-height: 1.55;
    letter-spacing: 0.03em;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 0; }
    @media (max-width: 999px) {
      #underSchool_contact h3 {
        font-size: 24px;
        line-height: 1.6; } }
  #underSchool_contact .lead {
    display: none; }
  #underSchool_contact .btnBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px; }
    @media (max-width: 999px) {
      #underSchool_contact .btnBox {
        gap: 14px; } }
  #underSchool_contact .eventBtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(360px, 90%);
    min-height: 72px;
    background: #2C9F38;
    border: 3px solid #fff;
    color: #fff;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1.4;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s; }
    @media (max-width: 999px) {
      #underSchool_contact .eventBtn {
        width: min(320px, 90%);
        min-height: 62px;
        font-size: 16px;
        border-width: 2px; } }
  #underSchool_contact .eventBtn i {
    font-size: 16px;
    color: #fff; }
    @media (max-width: 999px) {
      #underSchool_contact .eventBtn i {
        font-size: 14px; } }
  #underSchool_contact .eventBtn span {
    position: absolute;
    right: 28px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: transparent;
    border-radius: 0;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-65%) rotate(45deg); }
    @media (max-width: 999px) {
      #underSchool_contact .eventBtn span {
        right: 22px;
        width: 10px;
        height: 10px;
        border-width: 2px; } }
  #underSchool_contact .eventBtn span::before {
    display: none; }
  #underSchool_contact .eventBtn:hover {
    opacity: 0.85; }
  #underSchool_contact .contactBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    min-height: 0;
    background: transparent;
    color: #333333;
    border-radius: 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s; }
    @media (max-width: 999px) {
      #underSchool_contact .contactBtn {
        font-size: 15px; } }
  #underSchool_contact .contactBtn i {
    display: none; }
  #underSchool_contact .contactBtn span {
    position: relative;
    display: block;
    right: auto;
    top: auto;
    width: 22px;
    height: 22px;
    background: #1688D5;
    border-radius: 50%;
    border: none;
    transform: none; }
    @media (max-width: 999px) {
      #underSchool_contact .contactBtn span {
        width: 20px;
        height: 20px; } }
  #underSchool_contact .contactBtn span::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg); }
    @media (max-width: 999px) {
      #underSchool_contact .contactBtn span::before {
        width: 6px;
        height: 6px; } }
  #underSchool_contact .contactBtn:hover {
    opacity: 0.75; }
  #underSchool_contact .bgDeco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    display: block;
    height: auto; }
  #underSchool_contact .bgDecoLeft {
    top: -35px;
    left: 6vw;
    width: 20%;
    max-width: 265px; }
    @media (max-width: 999px) {
      #underSchool_contact .bgDecoLeft {
        top: -30px;
        left: -20px;
        width: 85px; } }
  #underSchool_contact .bgDecoRight {
    right: 6vw;
    bottom: -35px;
    width: 20%;
    max-width: 300px; }
    @media (max-width: 999px) {
      #underSchool_contact .bgDecoRight {
        right: -15px;
        bottom: -35px;
        width: 105px; } }
  @media (max-width: 999px) {
    #underSchool_contact::before, #underSchool_contact::after {
      height: 16px;
      background-size: 39px 16px; }
    #underSchool_contact::before {
      top: -15px; }
    #underSchool_contact::after {
      bottom: -15px; } }

/* 
---------------------------------------
under_school01
---------------------------------------
*/
#under_school01 {
  margin-top: 40px;
  position: relative; }
  @media (max-width: 999px) {
    #under_school01 {
      padding-top: 20px;
      margin-top: 0; } }
  @media (max-width: 999px) {
    #under_school01::before {
      content: '';
      width: 100%;
      height: 19rem;
      background: #FFCC26;
      position: absolute;
      top: 0;
      z-index: -1; } }
  #under_school01 .schoolDetailKv {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6%;
    margin-bottom: min(10vw, 160px); }
    @media (max-width: 999px) {
      #under_school01 .schoolDetailKv {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 0; } }
  @media (max-width: 999px) {
    #under_school01 .schoolDetailKv.pcView {
      display: none; } }
  @media (min-width: 1000px) {
    #under_school01 .schoolDetailKv.spView {
      display: none; } }
  #under_school01 .infoBox {
    width: 44%;
    padding-top: 5px; }
    @media (max-width: 999px) {
      #under_school01 .infoBox {
        width: 100%;
        padding-top: 0; } }
  #under_school01 .ttl {
    font-size: 36px;
    line-height: 1.4;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 16px;
    margin-bottom: 30px;
    border-bottom: 4px solid #F2F3F4;
    text-align: left; }
    @media (max-width: 999px) {
      #under_school01 .ttl {
        font-size: 22px;
        margin-bottom: 10px;
        padding-bottom: 0;
        border-bottom: 0;
        text-align: center; } }
  #under_school01 .schoolInfo {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    @media (max-width: 999px) {
      #under_school01 .schoolInfo {
        gap: 4px; } }
  #under_school01 .info {
    display: flex;
    align-items: flex-start;
    gap: 14px; }
  #under_school01 .info .ico {
    width: 22px;
    flex-shrink: 0;
    margin-top: 4px; }
    @media (max-width: 999px) {
      #under_school01 .info .ico {
        width: 20px;
        margin-top: 3px; } }
  #under_school01 .info .ico img {
    display: block;
    width: 100%;
    height: auto; }
  #under_school01 .info p {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school01 .info p {
        font-size: 14px;
        line-height: 1.8; } }
  #under_school01 .info.tel {
    align-items: center; }
  #under_school01 .info.tel .ico {
    margin-top: 0; }
  #under_school01 .info.tel p a {
    color: #333333;
    font-size: 28px;
    line-height: 1.3;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school01 .info.tel p a {
        font-size: 24px; } }
  #under_school01 .info.time p span {
    display: block; }
  #under_school01 .info.instagram {
    align-items: center; }
  #under_school01 .info.instagram .ico {
    margin-top: 0; }
  #under_school01 .info.instagram p a {
    color: #333333;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 3px; }
    @media (max-width: 999px) {
      #under_school01 .info.instagram p a {
        font-size: 14px; } }
  #under_school01 .picBox {
    width: 50%;
    min-width: 0; }
    @media (max-width: 999px) {
      #under_school01 .picBox {
        width: 100%; } }
  #under_school01 .swiper-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 44px; }
    @media (max-width: 999px) {
      #under_school01 .swiper-container {
        padding-bottom: 36px; } }
  #under_school01 .swiper-slide {
    position: relative;
    display: block; }
  #under_school01 .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    box-shadow: none;
    border-radius: clamp(5px, 0.7142857143vw, 10px); }
  #under_school01 .swiper-pagination {
    bottom: 0; }
  #under_school01 .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: rgba(14, 123, 219, 0.2);
    opacity: 1; }
  #under_school01 .swiper-pagination-bullet-active {
    background: #0E7BDB; }
  #under_school01 .swiper-horizontal > .swiper-pagination-bullets, #under_school01 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0; }
  #under_school01 .free_space {
    margin: 50px auto 0;
    border: #FFCC26 solid 2px;
    border-radius: clamp(10px, 1.4285714286vw, 20px);
    padding: 50px;
    text-align: center; }
    @media (max-width: 999px) {
      #under_school01 .free_space {
        margin-top: 35px;
        padding: 30px 16px; } }
  #under_school01 .free_space p {
    font-size: 18px;
    line-height: 1.9;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school01 .free_space p {
        font-size: 15px; } }
  #under_school01 .free_space p strong {
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }

#underSchool_news {
  padding: 160px 0; }
  @media (max-width: 999px) {
    #underSchool_news {
      padding: 60px 0; } }
  #underSchool_news .box {
    width: min(calc(100% - 40px), 1200px);
    margin: 0 auto;
    background: #fff;
    border: 10px solid #FFC400;
    border-radius: 6px;
    padding: 72px 90px 95px;
    position: relative;
    background-image: radial-gradient(circle, #FFA100 0 9px, transparent 10px), radial-gradient(circle, #FFA100 0 9px, transparent 10px), radial-gradient(circle, #FFA100 0 9px, transparent 10px), radial-gradient(circle, #FFA100 0 9px, transparent 10px);
    background-position: 20px 20px, calc(100% - 20px) 20px, 20px calc(100% - 20px), calc(100% - 20px) calc(100% - 20px);
    background-size: 20px 20px;
    background-repeat: no-repeat; }
    @media (max-width: 999px) {
      #underSchool_news .box {
        width: calc(100% - 24px);
        border-width: 6px;
        padding: 44px 22px 55px;
        background-image: radial-gradient(circle, #FFA100 0 6px, transparent 6.5px), radial-gradient(circle, #FFA100 0 6px, transparent 6.5px), radial-gradient(circle, #FFA100 0 6px, transparent 6.5px), radial-gradient(circle, #FFA100 0 6px, transparent 6.5px);
        background-position: 12px 12px, calc(100% - 12px) 12px, 12px calc(100% - 12px), calc(100% - 12px) calc(100% - 12px);
        background-size: 12px 12px; } }
  #underSchool_news .ttlBox {
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0 auto 45px;
    padding: 0;
    position: relative;
    z-index: 1; }
    @media (max-width: 999px) {
      #underSchool_news .ttlBox {
        margin-bottom: 30px; } }
  #underSchool_news .ttlBox img {
    width: 86px;
    max-width: 86px;
    margin-bottom: 16px; }
    @media (max-width: 999px) {
      #underSchool_news .ttlBox img {
        width: 62px;
        max-width: 62px;
        margin-bottom: 10px; } }
  #underSchool_news .ttlBox h3 {
    font-size: 38px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    color: #333;
    line-height: 1.3; }
    @media (max-width: 999px) {
      #underSchool_news .ttlBox h3 {
        font-size: 24px; } }
  #underSchool_news .free_space {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    color: #333;
    font-size: 17px;
    line-height: 2.1;
    letter-spacing: 0.03em; }
    @media (max-width: 999px) {
      #underSchool_news .free_space {
        font-size: 14px;
        line-height: 1.9; } }
  #underSchool_news .free_space > p {
    margin-bottom: 0; }
  #underSchool_news .free_space p {
    margin-bottom: 24px; }
    @media (max-width: 999px) {
      #underSchool_news .free_space p {
        margin-bottom: 18px; } }
  #underSchool_news .free_space p:last-child {
    margin-bottom: 0; }
  #underSchool_news .free_space strong,
  #underSchool_news .free_space b {
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
  #underSchool_news .free_space h4,
  #underSchool_news .free_space h5 {
    font-size: 18px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin: 42px 0 10px; }
    @media (max-width: 999px) {
      #underSchool_news .free_space h4,
      #underSchool_news .free_space h5 {
        font-size: 15px;
        margin: 30px 0 8px; } }

/* 
---------------------------------------
underSchool_course
---------------------------------------
*/
#underSchool_course {
  padding-bottom: 200px;
  background: #FFA100;
  position: relative; }
  @media (max-width: 999px) {
    #underSchool_course {
      padding-top: 28px;
      padding-bottom: 90px; } }
  #underSchool_course .bg {
    position: absolute;
    left: 0;
    width: 100%; }
  #underSchool_course .bg1 {
    top: -60px; }
    @media (max-width: 999px) {
      #underSchool_course .bg1 {
        top: -15px; } }
  #underSchool_course .bg2 {
    bottom: -68px; }
    @media (max-width: 999px) {
      #underSchool_course .bg2 {
        bottom: -8px; } }
  #underSchool_course .ttlBox {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1; }
    @media (max-width: 999px) {
      #underSchool_course .ttlBox {
        margin-bottom: 30px; } }
  #underSchool_course .ttlBox img {
    width: 8.6%;
    margin-bottom: 21px; }
    @media (max-width: 999px) {
      #underSchool_course .ttlBox img {
        width: 23.1%;
        margin-bottom: 12px; } }
  #underSchool_course .ttlBox h3 {
    font-size: 48px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    color: #fff; }
    @media (max-width: 999px) {
      #underSchool_course .ttlBox h3 {
        font-size: 27px; } }
  #underSchool_course .courseBox {
    background: #fff;
    border-radius: 50px;
    padding: 50px 55px 60px;
    position: relative;
    z-index: 1; }
    @media (max-width: 999px) {
      #underSchool_course .courseBox {
        border-radius: 25px;
        padding: 25px 20px 35px; } }
  #underSchool_course .courseTtl {
    font-size: 24px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 25px;
    position: relative;
    padding-left: 36px; }
    @media (max-width: 999px) {
      #underSchool_course .courseTtl {
        font-size: 18px;
        margin-bottom: 18px;
        padding-left: 28px; } }
  #underSchool_course .courseTtl::before {
    content: "";
    width: 26px;
    height: 100%;
    background: url("../../img/school/course_ico_01.png") no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }
    @media (max-width: 999px) {
      #underSchool_course .courseTtl::before {
        width: 22px;
        height: 100%; } }
  #underSchool_course .courseTableWrap {
    overflow-x: auto; }
    @media (max-width: 999px) {
      #underSchool_course .courseTableWrap {
        overflow-x: visible; } }
  #underSchool_course .courseTable {
    width: 100%;
    min-width: 760px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid #C0C0C0;
    border-radius: 8px;
    overflow: hidden; }
    @media (max-width: 999px) {
      #underSchool_course .courseTable {
        min-width: 0;
        border: 1px solid #C0C0C0; } }
  #underSchool_course .courseTable th,
  #underSchool_course .courseTable td {
    border-right: 2px solid #C0C0C0;
    border-top: 2px solid #C0C0C0;
    text-align: center;
    vertical-align: middle; }
    @media (max-width: 999px) {
      #underSchool_course .courseTable th,
      #underSchool_course .courseTable td {
        border-right: 1px solid #C0C0C0;
        border-top: 1px solid #C0C0C0; } }
  #underSchool_course .courseTable thead tr:first-child th {
    border-top: none; }
  #underSchool_course .courseTable tr:last-child th,
  #underSchool_course .courseTable tr:last-child td {
    border-bottom: none; }
  #underSchool_course .courseTable th:last-child,
  #underSchool_course .courseTable td:last-child {
    border-right: none; }
  #underSchool_course .courseTable thead th {
    background: #F2F3F4;
    height: 54px;
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_course .courseTable thead th {
        height: 50px;
        font-size: 15px; } }
  #underSchool_course .courseTable .courseHead,
  #underSchool_course .courseName {
    width: 30%; }
    @media (max-width: 999px) {
      #underSchool_course .courseTable .courseHead,
      #underSchool_course .courseName {
        width: 40%; } }
  #underSchool_course .courseTable thead th:not(.courseHead),
  #underSchool_course .courseTable tbody td {
    width: 10%; }
    @media (max-width: 999px) {
      #underSchool_course .courseTable thead th:not(.courseHead),
      #underSchool_course .courseTable tbody td {
        width: calc(60% / 7); } }
  #underSchool_course .courseTable tbody td {
    height: 92px;
    background: #fff; }
    @media (max-width: 999px) {
      #underSchool_course .courseTable tbody td {
        height: 78px;
        padding-top: 8px; } }
  #underSchool_course .courseName {
    width: 30%;
    height: 92px;
    padding: 0 18px;
    color: #fff; }
    @media (max-width: 999px) {
      #underSchool_course .courseName {
        width: 40%;
        height: 78px;
        padding: 0 7px;
        overflow: hidden; } }
  #underSchool_course .courseName span {
    display: inline-block;
    min-width: 130px;
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    text-align: left; }
    @media (max-width: 999px) {
      #underSchool_course .courseName span {
        display: block;
        min-width: 0;
        margin-bottom: 7px;
        font-size: 12px;
        line-height: 1.2;
        white-space: nowrap; } }
  #underSchool_course .courseName a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 35px;
    padding: 0;
    background: #fff;
    border-radius: 4px;
    color: #1A1A1A;
    font-size: 13px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_course .courseName a {
        width: 90%;
        min-width: auto;
        min-height: 29px;
        padding: 0;
        font-size: 10px;
        line-height: 1; } }
  #underSchool_course .circle {
    display: inline-block;
    width: 38px;
    aspect-ratio: 1 / 1;
    height: auto;
    border: 5px solid currentColor;
    border-radius: 50%; }
    @media (max-width: 999px) {
      #underSchool_course .circle {
        width: 30%;
        max-width: 16px;
        min-width: 8px;
        height: auto;
        aspect-ratio: 1 / 1;
        border-width: 5px; } }
  #underSchool_course .startup .courseName {
    background: #F2B705; }
  #underSchool_course .startup .circle {
    color: #F2B705; }
  #underSchool_course .entry .courseName {
    background: #0096DB; }
  #underSchool_course .entry .circle {
    color: #0096DB; }
  #underSchool_course .standard .courseName {
    background: #2FA67A; }
  #underSchool_course .standard .circle {
    color: #2FA67A; }
  #underSchool_course .advance .courseName {
    background: #D94C3A; }
  #underSchool_course .advance .circle {
    color: #D94C3A; }
  #underSchool_course .explorer .courseName {
    background: #F28C28; }
  #underSchool_course .explorer .circle {
    color: #F28C28; }
  #underSchool_course .courseTxt {
    margin-top: 45px;
    font-size: 15px;
    line-height: 2; }
    @media (max-width: 999px) {
      #underSchool_course .courseTxt {
        margin-top: 28px;
        font-size: 13px;
        line-height: 1.9; } }
  #underSchool_course .courseTxt p {
    margin-bottom: 4px; }
  #underSchool_course .courseTxt p:nth-child(4),
  #underSchool_course .courseTxt p:nth-child(5) {
    margin-top: 30px; }
    @media (max-width: 999px) {
      #underSchool_course .courseTxt p:nth-child(4),
      #underSchool_course .courseTxt p:nth-child(5) {
        margin-top: 20px; } }
  #underSchool_course .courseBtnBox {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1; }
    @media (max-width: 999px) {
      #underSchool_course .courseBtnBox {
        margin-top: 35px; } }
  #underSchool_course .courseBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 480px;
    min-height: 100px;
    padding: 0 70px;
    background: #249B32;
    border: 4px solid #fff;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_course .courseBtn {
        width: 90%;
        max-width: 480px;
        min-height: 70px;
        padding: 0 56px;
        border-width: 3px; } }
  #underSchool_course .courseBtnTxt::before {
    content: "★";
    color: #fff;
    font-size: 22px;
    line-height: 1;
    margin-right: 10px; }
    @media (max-width: 999px) {
      #underSchool_course .courseBtnTxt::before {
        font-size: 18px; } }
  #underSchool_course .courseBtnTxt {
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_course .courseBtnTxt {
        font-size: 18px; } }
  #underSchool_course .courseBtnArrow {
    width: 14px;
    height: 14px;
    background: none;
    border-radius: 0;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    position: absolute;
    right: 32px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg); }
    @media (max-width: 999px) {
      #underSchool_course .courseBtnArrow {
        width: 11px;
        height: 11px;
        right: 26px;
        border-right-width: 3px;
        border-bottom-width: 3px; } }
  #underSchool_course .courseBtnArrow::before {
    content: none; }

/* 
---------------------------------------
underSchool_price
---------------------------------------
*/
#underSchool_price .ttlBox {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 80px; }
  @media (max-width: 999px) {
    #underSchool_price .ttlBox {
      margin-bottom: 20px;
      margin-top: 40px; } }
  #underSchool_price .ttlBox img {
    width: 8.6%; }
    @media (max-width: 999px) {
      #underSchool_price .ttlBox img {
        width: 23.1%; } }
  #underSchool_price .ttlBox h3 {
    font-size: 48px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_price .ttlBox h3 {
        font-size: 27px; } }
#underSchool_price .fee-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12rem; }
  @media (max-width: 999px) {
    #underSchool_price .fee-cards {
      flex-direction: column;
      gap: 10px;
      margin-bottom: 6rem; } }
#underSchool_price .fee-card {
  width: calc((100% - 20px) / 2);
  padding: 2.4rem 3rem 3rem;
  border: 2px solid;
  border-radius: 10px;
  background: #fff8ed; }
  @media (max-width: 999px) {
    #underSchool_price .fee-card {
      width: 100%;
      padding: 2rem 2rem 2rem; } }
#underSchool_price .fee-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
  margin-bottom: 2rem; }
  @media (max-width: 999px) {
    #underSchool_price .fee-logo {
      height: auto;
      margin-bottom: 1.6rem; } }
  #underSchool_price .fee-logo img {
    display: block;
    width: auto;
    max-width: 58%;
    max-height: 7rem;
    object-fit: contain; }
    @media (max-width: 999px) {
      #underSchool_price .fee-logo img {
        max-width: 68%;
        max-height: none; } }
#underSchool_price .fee-common-title {
  width: 100%;
  padding: 1.4rem 2rem;
  margin-bottom: 2px;
  border-radius: 8px;
  background: #616161;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center; }
  @media (max-width: 999px) {
    #underSchool_price .fee-common-title {
      padding: 1.2rem 1.5rem;
      font-size: 1.6rem; } }
#underSchool_price .fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0; }
#underSchool_price .fee-table tr {
  display: flex;
  width: 100%;
  margin-bottom: 2px;
  overflow: hidden;
  font-size: 16px; }
  @media (max-width: 999px) {
    #underSchool_price .fee-table tr {
      font-size: 14px; } }
#underSchool_price .fee-table tr:last-child {
  margin-bottom: 0; }
#underSchool_price .fee-table th,
#underSchool_price .fee-table td {
  display: flex;
  align-items: center;
  min-height: 6rem;
  padding: 1.6rem 2rem;
  border: none; }
  @media (max-width: 999px) {
    #underSchool_price .fee-table th,
    #underSchool_price .fee-table td {
      min-height: 3.4rem;
      padding: 1.3rem 1.4rem; } }
#underSchool_price .fee-table th {
  justify-content: center;
  width: 24%;
  color: #1A1A1A;
  font-weight: 900;
  text-align: center;
  white-space: nowrap; }
  @media (max-width: 999px) {
    #underSchool_price .fee-table th {
      width: 30%; } }
#underSchool_price .fee-table td {
  width: 76%;
  background: #fff;
  color: #1A1A1A; }
  @media (max-width: 999px) {
    #underSchool_price .fee-table td {
      width: 70%; } }
#underSchool_price .fee-table tr th {
  border-radius: 8px 0 0 8px; }
#underSchool_price .fee-table tr td {
  border-radius: 0 8px 8px 0; }
#underSchool_price .startup {
  border-color: #F2B705;
  background: #fef8e5; }
  #underSchool_price .startup .fee-table th {
    background: #fbe9b3; }
#underSchool_price .entry {
  border-color: #0096DB;
  background: #e5f4fc; }
  #underSchool_price .entry .fee-table th {
    background: #b2dff4; }
#underSchool_price .standard {
  border-color: #2FA67A;
  background: #e9f6f1; }
  #underSchool_price .standard .fee-table th {
    background: #c0e4d7; }
#underSchool_price .advance {
  border-color: #D94C3A;
  background: #fbedeb; }
  #underSchool_price .advance .fee-table th {
    background: #f4c9c3; }
#underSchool_price .explorer {
  border-color: #F28C28;
  background: #fef3e9; }
  #underSchool_price .explorer .fee-table th {
    background: #fbdcbe; }
#underSchool_price .common {
  border-color: #616161;
  background: #DEDEDE; }
  #underSchool_price .common .fee-table th {
    background: #DFDFDF; }

/* 
---------------------------------------
underSchool_event
---------------------------------------
*/
#underSchool_event {
  background-image: url("../../img/20260611/school/event_bg.jpg");
  background-repeat: repeat;
  padding: min(8vw, 120px) 0;
  overflow: hidden; }
  @media (max-width: 999px) {
    #underSchool_event {
      padding: 60px 0; } }
  #underSchool_event .ttlBox {
    text-align: center;
    margin-bottom: 50px; }
    @media (max-width: 999px) {
      #underSchool_event .ttlBox {
        margin-bottom: 30px; } }
  #underSchool_event .ttlBox img {
    width: 8.6%; }
    @media (max-width: 999px) {
      #underSchool_event .ttlBox img {
        width: 23.1%; } }
  #underSchool_event .ttlBox h3 {
    font-size: 48px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_event .ttlBox h3 {
        font-size: 27px; } }
  #underSchool_event .eventBoxsWrap {
    width: min(90%, 1200px);
    margin: 0 auto; }
    @media (max-width: 999px) {
      #underSchool_event .eventBoxsWrap {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: 20px;
        padding-right: 0;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch; } }
  #underSchool_event .eventBoxsWrap::-webkit-scrollbar {
    display: none; }
  #underSchool_event .eventBoxs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; }
    #underSchool_event .eventBoxs > * {
      width: calc((100% - 4vw) / 3);
      flex: none; }
    @media (max-width: 999px) {
      #underSchool_event .eventBoxs {
        width: max-content;
        justify-content: flex-start;
        gap: 16px;
        padding: 0 20px 10px 0; } }
  @media (max-width: 999px) {
    #underSchool_event .eventBox {
      width: 200px;
      flex: 0 0 200px; } }
  @media (min-width: 1000px) {
    #underSchool_event .eventBox:nth-child(n+4) {
      display: none; } }
  #underSchool_event .picBox {
    width: 100%;
    margin: 0 auto 12px; }
    @media (max-width: 999px) {
      #underSchool_event .picBox {
        max-width: none;
        width: 100%; } }
  #underSchool_event .picBox img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: clamp(10px, 1.4285714286vw, 20px); }
  #underSchool_event .date.start, #underSchool_event .date.other, #underSchool_event .date {
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    border: 1px solid;
    width: max-content;
    padding: 2px 2vw;
    border-radius: 999px;
    color: #0E7BDB;
    font-weight: bold; }
    @media (max-width: 999px) {
      #underSchool_event .date.start, #underSchool_event .date.other, #underSchool_event .date {
        font-size: 13px;
        padding: 2px 14px; } }
  #underSchool_event .eventBox .ttl {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    line-height: 1.5;
    font-weight: bold; }
    @media (max-width: 999px) {
      #underSchool_event .eventBox .ttl {
        font-size: 16px; } }
  #underSchool_event .DetailBtn {
    position: relative;
    display: block;
    border-radius: 999px;
    text-align: center;
    padding: 12px 0;
    background: #0E7BDB;
    color: #fff;
    font-size: 14px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    border: 4px solid;
    max-width: 320px;
    width: 90%;
    margin: 0 auto; }
    @media (max-width: 999px) {
      #underSchool_event .DetailBtn {
        font-size: 13px; } }
  #underSchool_event .DetailBtn:before {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    content: "\f061";
    font-family: FontAwesome;
    font-size: 18px; }
    @media (max-width: 999px) {
      #underSchool_event .DetailBtn:before {
        font-size: 14px; } }
  #underSchool_event .DetailBtn:hover {
    background: #fff;
    color: #0E7BDB; }
  #underSchool_event .tagBox {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; }
    @media (max-width: 999px) {
      #underSchool_event .tagBox {
        flex-wrap: wrap;
        gap: 8px; } }
  #underSchool_event .tagBox .event-tags li {
    font-size: clamp(13px, 1vw, 16px);
    color: #666;
    margin-left: 10px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_event .tagBox .event-tags li {
        margin-left: 0;
        font-size: 13px; } }

/* 
---------------------------------------
under_school03
---------------------------------------
*/
#under_school03 {
  margin-top: 120px;
  margin-bottom: 120px; }
  @media (max-width: 999px) {
    #under_school03 {
      margin-top: 60px;
      padding-bottom: 60px;
      margin-bottom: 0px; } }

#under_school03 .ttlBox {
  text-align: center;
  margin-bottom: 70px; }
  @media (max-width: 999px) {
    #under_school03 .ttlBox {
      margin-bottom: 49px; } }

#under_school03 .ttlBox img {
  width: 8.6%;
  margin-bottom: 21px; }
  @media (max-width: 999px) {
    #under_school03 .ttlBox img {
      margin-bottom: 11.9px;
      width: 23.1%; } }

#under_school03 .ttlBox h3 {
  font-size: 48px;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }
  @media (max-width: 999px) {
    #under_school03 .ttlBox h3 {
      font-size: 27px; } }

#under_school03 .picBox {
  width: 16.3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 51px; }
  @media (max-width: 999px) {
    #under_school03 .picBox {
      width: 40%;
      margin: 0 auto 15px; } }

#under_school03 .picOuter {
  width: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden; }

#under_school03 .picOuter:before {
  content: "";
  display: block;
  padding-top: 100%; }

#under_school03 .picOuter img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

#under_school03 .picBox .headmaster_Name {
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  padding-top: 21px;
  white-space: nowrap; }
  @media (max-width: 999px) {
    #under_school03 .picBox .headmaster_Name {
      font-size: 16px;
      padding-top: 10px; } }

#under_school03 .txtBox {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto; }
  @media (max-width: 999px) {
    #under_school03 .txtBox {
      max-width: 375px; } }

#under_school03 .txtBox .stxt {
  font-size: 16px; }
  @media (max-width: 999px) {
    #under_school03 .txtBox .stxt {
      font-size: 15px; } }

/* 
---------------------------------------
under_school04
---------------------------------------
*/
#under_school04 {
  background: #FFF5D3;
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: min(8vw, 160px);
  overflow: hidden; }
  @media (max-width: 999px) {
    #under_school04 {
      width: 100%;
      margin-bottom: 80px;
      padding-top: 60px;
      padding-bottom: 50px;
      overflow: hidden; } }
  #under_school04 .ttlBox {
    text-align: center;
    margin-bottom: 68px; }
    @media (max-width: 999px) {
      #under_school04 .ttlBox {
        margin-bottom: 30px; } }
  #under_school04 .ttlBox img {
    width: 8.6%; }
    @media (max-width: 999px) {
      #under_school04 .ttlBox img {
        width: 23.1%; } }
  #under_school04 .ttlBox h3 {
    font-size: 48px;
    line-height: 1.4;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school04 .ttlBox h3 {
        font-size: 27px; } }
  #under_school04 .teacher_BoxsWrap {
    width: min(90%, 1200px);
    margin: 0 auto; }
    @media (max-width: 999px) {
      #under_school04 .teacher_BoxsWrap {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: 20px;
        padding-right: 0;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch; } }
  #under_school04 .teacher_BoxsWrap::-webkit-scrollbar {
    display: none; }
  #under_school04 .teacher_Boxs {
    display: flex;
    gap: 2vw;
    justify-content: center; }
    @media (max-width: 999px) {
      #under_school04 .teacher_Boxs {
        width: max-content;
        gap: 16px;
        padding: 0 20px 10px 0; } }
  #under_school04 .box {
    width: 34%;
    flex-shrink: 0;
    height: max-content;
    background: #fff;
    border-radius: 50px;
    padding: 2vw; }
    @media (max-width: 999px) {
      #under_school04 .box {
        width: 205px;
        flex: 0 0 205px;
        padding: 20px 14px 18px;
        border-radius: 20px; } }
  #under_school04 .picOuter {
    width: 50%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto; }
    @media (max-width: 999px) {
      #under_school04 .picOuter {
        width: 62%; } }
  #under_school04 .picOuter:before {
    content: "";
    display: block;
    padding-top: 100%; }
  #under_school04 .picOuter img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  #under_school04 .picBox .teacher_Name {
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 1.5;
    padding-top: 21px;
    white-space: nowrap;
    text-align: center; }
    @media (max-width: 999px) {
      #under_school04 .picBox .teacher_Name {
        font-size: 14px;
        padding-top: 14px; } }
  #under_school04 .picBox .teacher_Name small {
    font-size: 14px; }
    @media (max-width: 999px) {
      #under_school04 .picBox .teacher_Name small {
        font-size: 12px; } }
  #under_school04 .teacher_Boxs .txtBox {
    margin-top: 2rem; }
    @media (max-width: 999px) {
      #under_school04 .teacher_Boxs .txtBox {
        margin-top: 1.2rem; } }
  #under_school04 .txtBox .stxt {
    font-size: 16px; }
    @media (max-width: 999px) {
      #under_school04 .txtBox .stxt {
        font-size: 13px;
        line-height: 1.8; } }
  #under_school04 .teacher_Message {
    line-height: 2;
    text-align: left; }
  #under_school04 .js-moreText {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  #under_school04 .js-moreBox.is-open .js-moreText {
    display: block;
    overflow: visible; }
  #under_school04 .moreBtn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    width: fit-content;
    margin: 1.2rem 0 0 auto;
    padding: 0;
    border: none;
    background: transparent;
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer; }
    @media (max-width: 999px) {
      #under_school04 .moreBtn {
        font-size: 1.3rem;
        gap: 0.6rem; } }
  #under_school04 .moreIcon {
    position: relative;
    display: inline-block;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: #1688d5; }
    @media (max-width: 999px) {
      #under_school04 .moreIcon {
        width: 2.2rem;
        height: 2.2rem; } }
  #under_school04 .moreIcon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.3s; }
    @media (max-width: 999px) {
      #under_school04 .moreIcon::before {
        width: 0.6rem;
        height: 0.6rem; } }
  #under_school04 .js-moreBox.is-open .moreIcon::before {
    transform: translate(-50%, -35%) rotate(-135deg); }

/* 
---------------------------------------
under_school05
---------------------------------------
*/
#under_school05 {
  position: relative;
  background: #FFCC26;
  padding: 120px 0 180px;
  margin-bottom: -160px; }
  @media (max-width: 999px) {
    #under_school05 {
      padding: 50px 0 100px;
      margin-bottom: -80px; } }
  #under_school05 .bgDeco {
    position: absolute;
    width: 30%;
    max-width: 458px; }
    @media (max-width: 999px) {
      #under_school05 .bgDeco {
        width: 50%;
        height: auto; } }
  #under_school05 .bgDeco.left {
    top: 60px;
    left: 60px; }
    @media (max-width: 999px) {
      #under_school05 .bgDeco.left {
        top: 60px;
        left: 0px; } }
  #under_school05 .bgDeco.right {
    bottom: 60px;
    right: 60px; }
    @media (max-width: 999px) {
      #under_school05 .bgDeco.right {
        bottom: 30px;
        right: 0px; } }
  #under_school05 .ttlBox {
    margin-bottom: 40px;
    text-align: center; }
    @media (max-width: 999px) {
      #under_school05 .ttlBox {
        margin-bottom: 20px; } }
  #under_school05 .ttlBox img {
    width: 9.7%;
    margin-bottom: 9px; }
    @media (max-width: 999px) {
      #under_school05 .ttlBox img {
        width: 17.9%;
        margin-bottom: 0; } }
  #under_school05 h3 {
    color: #333333;
    font-size: 48px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school05 h3 {
        font-size: 26px; } }
  #under_school05 .txtBox .stxt {
    font-size: 15px; }
    @media (max-width: 999px) {
      #under_school05 .txtBox .stxt {
        font-size: 14px; } }

/* 
---------------------------------------
under_school06
---------------------------------------
*/
#under_school06 {
  position: relative;
  margin-top: 143px; }
  @media (max-width: 999px) {
    #under_school06 {
      margin-top: 60px; } }
  #under_school06 .ttlContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 0 40px auto; }
    @media (max-width: 999px) {
      #under_school06 .ttlContainer {
        flex-direction: column;
        margin: 0 auto 22px; } }
  #under_school06 .swiper {
    width: 90%;
    margin: 0 0 0 auto;
    overflow: hidden; }
    @media (max-width: 999px) {
      #under_school06 .swiper {
        width: 95%; } }
  #under_school06 .swiper-button-next,
  #under_school06 .swiper-button-prev {
    top: 30px; }
    @media (max-width: 999px) {
      #under_school06 .swiper-button-next,
      #under_school06 .swiper-button-prev {
        top: 144px; } }
  #under_school06 .swiper-button-next {
    right: 54.8%; }
    @media screen and (max-width: 1550px) and (min-width: 1251px) {
      #under_school06 .swiper-button-next {
        right: 53.8%; } }
    @media screen and (max-width: 1250px) and (min-width: 1100px) {
      #under_school06 .swiper-button-next {
        right: 52.8%; } }
    @media screen and (max-width: 1099px) and (min-width: 1000px) {
      #under_school06 .swiper-button-next {
        right: 51.8%; } }
    @media screen and (max-width: 1000px) and (min-width: 843px) {
      #under_school06 .swiper-button-next {
        left: 14%; } }
    @media screen and (max-width: 842px) and (min-width: 500px) {
      #under_school06 .swiper-button-next {
        left: 18%; } }
    @media screen and (max-width: 499px) {
      #under_school06 .swiper-button-next {
        right: auto;
        left: 24%; } }
  #under_school06 .swiper-button-prev {
    left: auto;
    right: 60%; }
    @media (max-width: 999px) {
      #under_school06 .swiper-button-prev {
        right: auto;
        left: 7%; } }
  #under_school06 .swiper-button-next::after {
    font-family: FontAwesome;
    content: "\f061";
    background-color: #FFA100;
    color: #fff;
    border: 4px solid #FFA100;
    font-size: 20px;
    border-radius: 50%;
    padding: 23px; }
    @media (max-width: 999px) {
      #under_school06 .swiper-button-next::after {
        font-size: 14px;
        border-radius: 50%;
        padding: 18px; } }
  #under_school06 .swiper-button-next:hover::after,
  #under_school06 .swiper-button-prev:hover::after {
    background-color: #fff;
    color: #FFA100; }
  #under_school06 .swiper-button-prev::after {
    font-family: FontAwesome;
    content: "\f060";
    color: #fff;
    background-color: #FFA100;
    border: 4px solid #FFA100;
    font-size: 20px;
    border-radius: 50%;
    padding: 23px; }
    @media (max-width: 999px) {
      #under_school06 .swiper-button-prev::after {
        font-size: 14px;
        border-radius: 50%;
        padding: 18px; } }
  #under_school06 .ttlBox {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0; }
    @media (max-width: 999px) {
      #under_school06 .ttlBox {
        flex-direction: column;
        margin-bottom: 49px; } }
  #under_school06 .ttlBox .sttl {
    font-size: 70px;
    font-family: Josefin Sans, sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-right: 27px;
    margin-bottom: 0; }
    @media (max-width: 999px) {
      #under_school06 .ttlBox .sttl {
        font-size: 40px;
        margin-bottom: 9px;
        margin-right: 0px; } }
    #under_school06 .ttlBox .sttl span {
      color: #87399F; }
  #under_school06 .ttlBox .ttlDeco {
    font-size: 18px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school06 .ttlBox .ttlDeco {
        font-size: 14px;
        margin-right: 0px; } }
  #under_school06 .swiper .picBox {
    border-radius: clamp(10px, 1.4285714286vw, 20px);
    overflow: hidden;
    position: relative; }
  #under_school06 .swiper .picBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all; }
  #under_school06 .swiper .picBox::before {
    content: "";
    display: block;
    padding-top: 66.67%; }
  #under_school06 .swiper .picBox img:hover {
    transform: scale(1.07, 1.07);
    transition: 0.5s all; }
  #under_school06 .swiper .txtBox {
    margin-top: 8px;
    border-bottom: #D6D6D6 1px solid; }
    @media (max-width: 999px) {
      #under_school06 .swiper .txtBox {
        margin-top: 4px; } }
  #under_school06 .swiper .txtBox .date {
    font-size: 14px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 4px; }
    @media (max-width: 999px) {
      #under_school06 .swiper .txtBox .date {
        font-size: 12px;
        margin-bottom: 2px; } }
  #under_school06 .swiper .txtBox .blogTtl {
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 4px;
    line-height: 1.5; }
    @media (max-width: 999px) {
      #under_school06 .swiper .txtBox .blogTtl {
        font-size: 14px;
        margin-bottom: 2px; } }
  @media (min-width: 1000px) {
    #under_school06 .swiper .txtBox .blogTtl:hover {
      opacity: 0.7; } }
  #under_school06 .swiper .txtBox .txt {
    font-size: 13px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 10px; }
    @media (max-width: 999px) {
      #under_school06 .swiper .txtBox .txt {
        font-size: 14px;
        padding-bottom: 25px;
        -webkit-line-clamp: 1; } }
  #under_school06 .swiper .school {
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    padding-top: 8px;
    color: #999999; }
    @media (max-width: 999px) {
      #under_school06 .swiper .school {
        font-size: 14px;
        padding-top: 4px; } }
  #under_school06 .btn3 {
    display: block;
    background: #F2F3F4;
    width: fit-content;
    border-radius: clamp(25px, 3.5714285714vw, 50px);
    padding: 1.1% 4.5% 1.1% 3%;
    display: flex;
    align-items: center;
    margin-right: 10%; }
    @media (max-width: 999px) {
      #under_school06 .btn3 {
        border-radius: clamp(25px, 3.5714285714vw, 50px);
        padding: 3.1% 8.5%;
        margin: 0 0 0 auto; } }
  #under_school06 .btn3:hover {
    background: #333333;
    color: #fff; }
  #under_school06 .btn3 .double {
    border-top: 2px solid #333333;
    border-bottom: 2px solid #333333;
    width: 14px;
    height: 6px;
    margin-right: 6px; }
  #under_school06 .btn3:hover .double {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff; }
  #under_school06 .btn3 p {
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 16px; }
    @media (max-width: 999px) {
      #under_school06 .btn3 p {
        font-size: 12px; } }
  #under_school06 .btn2 {
    position: relative;
    display: block;
    margin: 141px auto 160px;
    text-align: center;
    border-radius: clamp(25px, 3.5714285714vw, 50px);
    box-shadow: 6px 6px 0 0 #FFA100;
    transform: translateY(-4px);
    transition: 0.3s all; }
    @media (max-width: 999px) {
      #under_school06 .btn2 {
        margin: 80px auto 60px;
        border-radius: clamp(12.5px, 1.7857142857vw, 25px); } }
  #under_school06 .btn2:hover {
    box-shadow: 0 0 0 0 #FFA100;
    transform: translateY(-2px); }
  #under_school06 .btn2 .outer {
    position: relative;
    background: #fff;
    border: 4px solid #FFA100;
    border-radius: clamp(25px, 3.5714285714vw, 50px);
    color: #0e7bdb;
    font-size: 20px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap; }
    @media (max-width: 999px) {
      #under_school06 .btn2 .outer {
        border-radius: clamp(10px, 1.4285714286vw, 20px); } }
  #under_school06 .btn2 .circle {
    position: absolute;
    background-color: #FFA100;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 4.2%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%); }
    @media (max-width: 999px) {
      #under_school06 .btn2 .circle {
        width: 35px;
        height: 35px; } }
  #under_school06 .btn2 .circle i {
    font-size: 20px; }
    @media (max-width: 999px) {
      #under_school06 .btn2 .circle i {
        font-size: 10px; } }
  #under_school06 .btn2 .outer img {
    display: block; }
  #under_school06 .btn2 .txtBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  #under_school06 .btn2 .txtBox .qanda {
    display: flex;
    align-items: center; }
    @media (max-width: 999px) {
      #under_school06 .btn2 .txtBox .qanda {
        flex-direction: column; } }
  #under_school06 .btn2 .txtBox .qanda .en {
    font-size: 70px;
    margin-right: 12%;
    white-space: nowrap;
    font-family: Josefin Sans, sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school06 .btn2 .txtBox .qanda .en {
        font-size: 40px;
        margin-right: 0;
        margin-bottom: 10px; } }
    #under_school06 .btn2 .txtBox .qanda .en span {
      font-size: 50px; }
      @media (max-width: 999px) {
        #under_school06 .btn2 .txtBox .qanda .en span {
          font-size: 30px; } }
  #under_school06 .btn2 .txtBox .qanda .jp {
    font-size: 18px;
    white-space: nowrap;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #under_school06 .btn2 .txtBox .qanda .jp {
        font-size: 14px; } }
  #under_school06 .txt p {
    display: none; }
  #under_school06 .txt p:first-child {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; }
  #under_school06 .txt img {
    display: none; }

/* 
---------------------------------------
underSchool_library
---------------------------------------
*/
#underSchool_library {
  position: relative;
  margin-top: 143px;
  margin-bottom: 12rem; }
  @media (max-width: 999px) {
    #underSchool_library {
      margin-top: 60px;
      margin-bottom: 6rem; } }
  #underSchool_library .ttlContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 0 40px auto; }
    @media (max-width: 999px) {
      #underSchool_library .ttlContainer {
        flex-direction: column;
        margin: 0 auto 22px; } }
  #underSchool_library .swiper {
    width: 90%;
    margin: 0 0 0 auto;
    overflow: hidden; }
    @media (max-width: 999px) {
      #underSchool_library .swiper {
        width: 95%; } }
  @media (min-width: 1000px) {
    #underSchool_library .swiperArrow {
      position: absolute;
      left: 60%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 160px;
      top: 0; } }
  #underSchool_library .swiper-button-next-library, #underSchool_library .swiper-button-prev-library {
    z-index: 10; }
    @media (max-width: 999px) {
      #underSchool_library .swiper-button-next-library, #underSchool_library .swiper-button-prev-library {
        top: 132px; } }
  @media (min-width: 1000px) {
    #underSchool_library .swiper-button-next-library {
      position: inherit;
      right: 0;
      top: 0; } }
  @media screen and (max-width: 499px) {
    #underSchool_library .swiper-button-next-library {
      position: absolute;
      right: auto;
      left: 24%; } }
  @media (min-width: 1000px) {
    #underSchool_library .swiper-button-prev-library {
      position: inherit;
      left: 0; } }
  @media (max-width: 999px) {
    #underSchool_library .swiper-button-prev-library {
      position: absolute;
      right: auto;
      left: 7%; } }
  #underSchool_library .swiper-button-next-library::after {
    font-family: FontAwesome;
    content: "\f061";
    background-color: #FFA100;
    color: #fff;
    border: 4px solid #FFA100;
    font-size: 20px;
    border-radius: 50%;
    padding: 23px; }
    @media (max-width: 999px) {
      #underSchool_library .swiper-button-next-library::after {
        font-size: 14px;
        padding: 18px; } }
  #underSchool_library .swiper-button-prev-library::after {
    font-family: FontAwesome;
    content: "\f060";
    color: #fff;
    background-color: #FFA100;
    border: 4px solid #FFA100;
    font-size: 20px;
    border-radius: 50%;
    padding: 23px; }
    @media (max-width: 999px) {
      #underSchool_library .swiper-button-prev-library::after {
        font-size: 14px;
        padding: 18px; } }
  #underSchool_library .swiper-button-next-library:hover::after, #underSchool_library .swiper-button-prev-library:hover::after {
    background-color: #fff;
    color: #FFA100; }
  #underSchool_library .ttlBox {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 0; }
    @media (max-width: 999px) {
      #underSchool_library .ttlBox {
        flex-direction: column;
        margin-bottom: 49px; } }
  #underSchool_library .ttlBox .sttl {
    font-size: 70px;
    font-family: Josefin Sans, sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-right: 27px;
    margin-bottom: 0; }
    @media (max-width: 999px) {
      #underSchool_library .ttlBox .sttl {
        font-size: 40px;
        margin-bottom: 9px;
        margin-right: 0; } }
    #underSchool_library .ttlBox .sttl span {
      color: #87399F; }
  #underSchool_library .ttlBox .ttlDeco {
    font-size: 18px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_library .ttlBox .ttlDeco {
        font-size: 14px;
        margin-right: 0; } }
  #underSchool_library .swiper .picBox {
    border-radius: clamp(10px, 1.4285714286vw, 20px);
    overflow: hidden;
    position: relative; }
  #underSchool_library .swiper .picBox::before {
    content: "";
    display: block;
    padding-top: 66.67%; }
  #underSchool_library .swiper .picBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all; }
  #underSchool_library .swiper .picBox img:hover {
    transform: scale(1.07, 1.07);
    transition: 0.5s all; }
  #underSchool_library .swiper .txtBox {
    margin-top: 8px;
    border-bottom: #D6D6D6 1px solid;
    padding-bottom: 10px; }
    @media (max-width: 999px) {
      #underSchool_library .swiper .txtBox {
        margin-top: 4px; } }
  #underSchool_library .swiper .txtBox .course {
    margin-bottom: 8px; }
  #underSchool_library .category {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 1rem; }
  #underSchool_library .category.startup {
    color: #F5A400;
    border-color: #F5A400;
    background: #FEF8E5; }
  #underSchool_library .category.entry {
    color: #0096DB;
    border-color: #0096DB;
    background: #E5F4FC; }
  #underSchool_library .category.standard {
    color: #2FA67A;
    border-color: #2FA67A;
    background: #E9F6F1; }
  #underSchool_library .category.advance {
    color: #D94C3A;
    border-color: #D94C3A;
    background: #FBEDEB; }
  #underSchool_library .category.explorer {
    color: #F28C28;
    border-color: #F28C28;
    background: #FEF3E9; }
  #underSchool_library .swiper .txtBox .blogTtl {
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; }
    @media (max-width: 999px) {
      #underSchool_library .swiper .txtBox .blogTtl {
        font-size: 14px;
        margin-bottom: 2px; } }
  @media (min-width: 1000px) {
    #underSchool_library .swiper .txtBox .blogTtl:hover {
      opacity: 0.7; } }
  #underSchool_library .swiper .school {
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    padding-top: 8px;
    color: #999999; }
    @media (max-width: 999px) {
      #underSchool_library .swiper .school {
        font-size: 14px;
        padding-top: 4px; } }
  #underSchool_library .swiper .school .tab {
    display: inline-block;
    background: #F2F3F4;
    padding: 2px 12px 4px;
    border-radius: 999px;
    font-size: 12px; }
  #underSchool_library .btn3 {
    background: #F2F3F4;
    width: fit-content;
    border-radius: clamp(25px, 3.5714285714vw, 50px);
    padding: 1.1% 4.5% 1.1% 3%;
    display: flex;
    align-items: center;
    margin-right: 10%; }
    @media (max-width: 999px) {
      #underSchool_library .btn3 {
        border-radius: clamp(25px, 3.5714285714vw, 50px);
        padding: 3.1% 8.5%;
        margin: 0 0 0 auto; } }
  #underSchool_library .btn3:hover {
    background: #333333;
    color: #fff; }
  #underSchool_library .btn3 .double {
    border-top: 2px solid #333333;
    border-bottom: 2px solid #333333;
    width: 14px;
    height: 6px;
    margin-right: 6px; }
  #underSchool_library .btn3:hover .double {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff; }
  #underSchool_library .btn3 p {
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 16px; }
    @media (max-width: 999px) {
      #underSchool_library .btn3 p {
        font-size: 12px; } }

/* 
---------------------------------------
underSchool_access
---------------------------------------
*/
#underSchool_access {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto min(10vw, 120px);
  padding: 4vw 4vw;
  border: 2px solid #FFCC26;
  border-radius: clamp(25px, 3.5714285714vw, 50px); }
  @media (max-width: 999px) {
    #underSchool_access {
      padding: 0px 20px 30px;
      margin-bottom: 60px; } }
  #underSchool_access .txt {
    width: 90%;
    margin: 0 auto 4vw;
    max-width: 1000px; }
    @media (max-width: 999px) {
      #underSchool_access .txt {
        margin-bottom: 20px;
        width: 100%; } }
  #underSchool_access .ttlBox {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 80px; }
    @media (max-width: 999px) {
      #underSchool_access .ttlBox {
        margin-bottom: 20px;
        margin-top: 40px; } }
  #underSchool_access .ttlBox img {
    width: 8.6%; }
    @media (max-width: 999px) {
      #underSchool_access .ttlBox img {
        width: 23.1%; } }
  #underSchool_access .ttlBox h3 {
    font-size: 48px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_access .ttlBox h3 {
        font-size: 27px; } }
  #underSchool_access .GoogleMap {
    width: 90%;
    border-radius: clamp(10px, 1.4285714286vw, 20px);
    position: relative;
    overflow: hidden; }
    @media (max-width: 999px) {
      #underSchool_access .GoogleMap {
        width: 100%; } }
  #underSchool_access .GoogleMap:before {
    content: "";
    display: block;
    padding-top: 37.5%; }
    @media (max-width: 999px) {
      #underSchool_access .GoogleMap:before {
        padding-top: 100%; } }
  #underSchool_access .GoogleMap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

/* 
---------------------------------------
underSchool_info
---------------------------------------
*/
#underSchool_info {
  margin-bottom: 6vw; }
  @media (max-width: 999px) {
    #underSchool_info {
      margin-bottom: 60px; } }
  #underSchool_info .boxs1 {
    display: flex;
    margin-top: 72px;
    justify-content: space-between; }
    @media (max-width: 999px) {
      #underSchool_info .boxs1 {
        flex-direction: column;
        margin-top: 0; } }
  #underSchool_info .boxs1 .txtBox {
    width: 46.3%; }
    @media (max-width: 999px) {
      #underSchool_info .boxs1 .txtBox {
        width: 100%;
        margin-top: 16px; } }
  #underSchool_info .boxs1 .txtBox tr {
    padding-bottom: 21px;
    margin-bottom: 21px;
    display: flex;
    align-items: self-start;
    border-bottom: #F2F3F4 solid 2px; }
    @media (max-width: 999px) {
      #underSchool_info .boxs1 .txtBox tr {
        padding-bottom: 8px;
        margin-bottom: 12px; } }
  #underSchool_info .boxs1 .txtBox td {
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    width: 63.7%; }
    @media (max-width: 999px) {
      #underSchool_info .boxs1 .txtBox td {
        font-size: 12px; } }
  #underSchool_info .boxs1 .txtBox td.lead {
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: 31%; }
  #underSchool_info .boxs1 .txtBox .tel {
    font-size: 24px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_info .boxs1 .txtBox .tel {
        font-size: 20px; } }
  @media (max-width: 999px) {
    #underSchool_info .boxs1 .txtBox .tel a {
      text-decoration: underline; } }
  #underSchool_info .ttlBox {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 80px; }
    @media (max-width: 999px) {
      #underSchool_info .ttlBox {
        margin-bottom: 20px;
        margin-top: 40px; } }
  #underSchool_info .ttlBox img {
    width: 8.6%; }
    @media (max-width: 999px) {
      #underSchool_info .ttlBox img {
        width: 23.1%; } }
  #underSchool_info .ttlBox h3 {
    font-size: 48px;
    font-family: Noto Sans JP, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased; }
    @media (max-width: 999px) {
      #underSchool_info .ttlBox h3 {
        font-size: 27px; } }
  #underSchool_info .instagram td a {
    display: flex;
    align-items: center; }
    #underSchool_info .instagram td a img {
      display: none;
      margin-right: 1rem;
      width: 30px;
      height: auto;
      margin-top: 1px; }
  #underSchool_info .swiper-container {
    overflow: hidden;
    width: 48.4%;
    border-radius: clamp(10px, 1.4285714286vw, 20px);
    position: relative;
    height: max-content; }
    @media (max-width: 999px) {
      #underSchool_info .swiper-container {
        border-radius: clamp(10px, 1.4285714286vw, 20px);
        width: 100%; } }
  #underSchool_info .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    display: block; }
  #underSchool_info .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: clamp(10px, 1.4285714286vw, 20px);
    aspect-ratio: 3 / 2; }
  #underSchool_info .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: rgba(14, 123, 219, 0.2);
    opacity: 1; }
  @media (max-width: 999px) {
    #underSchool_info .swiper-horizontal > .swiper-pagination-bullets, #underSchool_info .swiper-pagination-bullets.swiper-pagination-horizontal {
      bottom: 20px; } }

/* 
---------------------------------------
#under_school07
---------------------------------------
*/
#under_school07 {
  padding: 6vw 0 6vw;
  border-radius: clamp(25px, 3.5714285714vw, 50px);
  background: #FFF5D3;
  margin-bottom: 6vw; }
  @media (max-width: 999px) {
    #under_school07 {
      padding: 40px 0;
      border-radius: clamp(10px, 1.4285714286vw, 20px); } }

#under_school07 .background {
  background: #FFF;
  border-radius: clamp(25px, 3.5714285714vw, 50px); }
  @media (max-width: 999px) {
    #under_school07 .background {
      border-radius: clamp(10px, 1.4285714286vw, 20px); } }

#under_school07 .inner_S {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto; }
  @media (max-width: 999px) {
    #under_school07 .inner_S {
      max-width: 375px; } }

#under_school07 .ttl {
  font-size: 48px;
  text-align: center;
  margin-bottom: 63px;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }
  @media (max-width: 999px) {
    #under_school07 .ttl {
      font-size: 22px;
      margin-bottom: 20px; } }

#under_school07 .txt {
  text-align: justify;
  margin-bottom: 40px;
  font-size: 16px;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }
  @media (max-width: 999px) {
    #under_school07 .txt {
      text-align: justify;
      margin-bottom: 20px;
      font-size: 16px; } }

#under_school07 .txt2 {
  margin-top: 20px; }

#under_school07 .txt2 a {
  transition: all 0.6s;
  color: #0E7BDB;
  text-decoration: underline; }

#under_school07 .txt2 a:hover {
  opacity: 0.7;
  transition: all 0.6s; }

#under_school07 ul {
  padding-bottom: 68px; }
  @media (max-width: 999px) {
    #under_school07 ul {
      padding-bottom: 20px; } }

#under_school07 ul li {
  font-size: 14px;
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }

#under_school07 .bownow {
  height: fit-content; }

#under_school07 .bownow iframe {
  height: 1868px; }
  @media (max-width: 999px) {
    #under_school07 .bownow iframe {
      height: 2752px; } }

#under_school07 .bownow.owners iframe {
  height: 1444px; }
  @media (max-width: 999px) {
    #under_school07 .bownow.owners iframe {
      height: 2322px; } }

/*タブ実装*/
.tab_box .btn_area {
  display: flex;
  justify-content: center; }

.tab_box .tab_btn {
  width: 34.3%;
  font-size: 26px;
  padding: clamp(12px, 2.4vw, 24px) 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFCC26;
  border-radius: clamp(25px, 3.5714285714vw, 50px) clamp(25px, 3.5714285714vw, 50px) clamp(0px, 0vw, 0px) clamp(0px, 0vw, 0px);
  font-family: Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased; }
  @media (max-width: 999px) {
    .tab_box .tab_btn {
      width: 38.9%;
      font-size: 16px; } }

.tab_box .tab_btn + .tab_btn {
  margin-left: 20px; }
  @media (max-width: 999px) {
    .tab_box .tab_btn + .tab_btn {
      margin-left: 10px; } }

.tab_box .tab_btn:hover {
  background-color: #dce1e4; }

.tab_box .tab_btn.active {
  background: #FFF; }

.tab_box .tab_btn span {
  font-size: 12px;
  margin-left: 2px; }
  @media (min-width: 1000px) {
    .tab_box .tab_btn span {
      font-size: 20px;
      margin-left: 10px; } }

.tab_box .panel_area {
  padding: 4vw 4vw;
  background: #FFF;
  border-radius: clamp(25px, 5vw, 50px); }
  @media (max-width: 999px) {
    .tab_box .panel_area {
      padding: 20px 20px 0; } }

.none .tab_box .tab_panel {
  display: none; }

.tab_box .tab_panel.active {
  display: block;
  opacity: 1; }

.tab_box .tab_panel.active iframe {
  display: block; }

#under_school05 .swiper-container {
  width: 84%;
  margin: 0 auto; }
#under_school05 .swiper-slide {
  transition: transform 0.3s ease,opacity 0.3s ease;
  border-radius: clamp(15px, 2.1428571429vw, 30px);
  border: 2px solid #FFB726;
  margin-right: 20px;
  background: #FFE07D;
  padding: 10px; }
#under_school05 .swiper-slide .bgColor {
  background: #fff;
  padding: 10px;
  border-radius: clamp(10px, 1.4285714286vw, 20px); }
#under_school05 .swiper-slide .bgColor p {
  padding: 20px;
  font-weight: 600; }
  @media (max-width: 999px) {
    #under_school05 .swiper-slide .bgColor p {
      padding: 10px;
      font-size: 14px; } }
#under_school05 .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: clamp(10px, 1.4285714286vw, 20px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
#under_school05 .swiper-button-prev, #under_school05 .swiper-button-next {
  width: 76px;
  height: 76px;
  margin-top: 0;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  z-index: 20; }
  @media (max-width: 999px) {
    #under_school05 .swiper-button-prev, #under_school05 .swiper-button-next {
      width: 48px;
      height: 48px;
      top: 58%; } }
#under_school05 .swiper-button-prev {
  left: 6.5%;
  right: auto; }
  @media (max-width: 999px) {
    #under_school05 .swiper-button-prev {
      left: 16px; } }
#under_school05 .swiper-button-next {
  right: 6.5%;
  left: auto; }
  @media (max-width: 999px) {
    #under_school05 .swiper-button-next {
      right: 16px;
      left: auto; } }
#under_school05 .swiper-button-prev::after, #under_school05 .swiper-button-next::after {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #007bff;
  color: #fff;
  border: 4px solid #007bff;
  font-family: FontAwesome;
  font-size: 32px;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s; }
  @media (max-width: 999px) {
    #under_school05 .swiper-button-prev::after, #under_school05 .swiper-button-next::after {
      width: 48px;
      height: 48px;
      font-size: 20px;
      border-width: 3px; } }
#under_school05 .swiper-button-prev::after {
  content: "\f060"; }
#under_school05 .swiper-button-next::after {
  content: "\f061"; }
#under_school05 .swiper-button-next:hover::after, #under_school05 .swiper-button-prev:hover::after {
  color: #007bff;
  background-color: #fff;
  transition: all 0.6s; }
#under_school05 .swiper-horizontal > .swiper-pagination-bullets, #under_school05 .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 120px; }
  @media (max-width: 999px) {
    #under_school05 .swiper-horizontal > .swiper-pagination-bullets, #under_school05 .swiper-pagination-bullets.swiper-pagination-horizontal {
      bottom: 60px; } }
#under_school05 .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: #fff;
  opacity: 1; }
#under_school05 .swiper-pagination {
  z-index: 6; }

.modaal-wrapper .modaal-container {
  border: 2px solid #FFB726;
  border-radius: clamp(12.5px, 1.7857142857vw, 25px);
  padding: 20px;
  background: #FFE07D; }
  @media (max-width: 999px) {
    .modaal-wrapper .modaal-container {
      padding: 8px; } }
@media (max-width: 999px) {
  .modaal-wrapper .modaal-content-container {
    padding: 20px; } }
.modaal-wrapper .modaal-content {
  background: #fff;
  border-radius: 15px; }
.modaal-wrapper .sttl {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 4px solid #FFA100;
  line-height: 1.5; }
  @media (max-width: 999px) {
    .modaal-wrapper .sttl {
      font-size: 17px;
      font-weight: bold;
      padding-bottom: 10px;
      margin-bottom: 10px;
      border-bottom: 2px solid #FFA100; } }
.modaal-wrapper .name {
  text-align: right;
  background: #FFA100;
  color: #fff;
  width: max-content;
  margin: 0 0 16px auto;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: bold; }
  @media (max-width: 999px) {
    .modaal-wrapper .name {
      font-size: 12px;
      margin-bottom: 10px; } }
.modaal-wrapper .stxtBox {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 999px) {
    .modaal-wrapper .stxtBox {
      flex-direction: column-reverse; } }
.modaal-wrapper .stxt {
  width: 45%;
  font-size: 18px;
  margin-right: 5%; }
  @media (max-width: 999px) {
    .modaal-wrapper .stxt {
      width: 100%;
      font-size: 13.5px; } }
.modaal-wrapper .stxt span {
  display: block;
  text-align: right; }
.modaal-wrapper .stxtBox img {
  width: 50%;
  height: 100%; }
  @media (max-width: 999px) {
    .modaal-wrapper .stxtBox img {
      width: 100%;
      margin-bottom: 10px; } }

@media (max-width: 999px) {
  .custom-modaal .modaal-content-container {
    max-height: 80vh;
    overflow-y: auto; } }
