@charset "UTF-8";
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
:root {
  /*size*/
  --site-width: 1180px;
  --site-width-sm: 830px;
  --site-padding: 40px;
  /*color*/
  --body-color: #000;
  --dark-color: #000B67;
  --main-color: #004598;
  --light-color: #1E63C2;
  --very-light-color: #94B3D6;
  --border-color: #D9D9D9;
  --gray: #82829D;
  --gray-lt: #EDEBEB;
  --elementary-color: #4B90FF;
  --jrhighschool-color: #F67916;
  --highschool-color: #38C238;
  --red: #E80945;
  --yellow: #FFF351;
  --kokugo-color: #E3195F;
  --sansuu-color: #2D79C4;
  --rika-color: #4A984A;
  --syakai-color: #EF9300;
  --eigo-color: #8800A8;
  --tekisei-color: #006274;
  /*font*/
  --font-base: 16px;
  --font-middle: 18px;
  --font-large: 24px;
  --font-small: 14px;
  --font-extra-small: 12px;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  --font-weight-base: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --base-line: 1.7;
  /*z-index*/
  --z-index-modal-close: 100;
  --z-index-modal: 90;
  --z-index-modal-bg: 80;
  --z-index-nav: 70;
  --z-index-header: 60;
  --z-index-page-top: 50;
  --z-index-footer-nav: 40;
  /*height*/
  --height-header: 80px;
}
@media (max-width: 767px) {
  :root {
    /*size*/
    --site-padding: 15px;
  }
}

/*==================================================
reset
==================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

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

* {
  font-size: inherit;
  line-height: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

span {
  line-height: inherit;
  font-size: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

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

em,
strong,
em *,
strong *,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

/*--form初期化--*/
input[type=submit],
button {
  cursor: pointer;
}

button,
input[type=text],
input[type=image],
input[type=password],
input[type=file],
input[type=submit],
input[type=reset],
input[type=button],
input[type=email],
input[type=tel],
textarea {
  font-family: inherit;
}

::-moz-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

a {
  text-decoration: none;
  border: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  background: none;
  border: 0;
  outline: none;
  padding: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  button:hover {
    opacity: 0.7;
  }
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

th {
  text-align: left;
}

@media screen and (max-width: 767px) {
  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    box-sizing: border-box;
  }
  textarea,
  input[type=email],
  input[type=text],
  input[type=image],
  input[type=password] {
    -webkit-appearance: none;
  }
}
address {
  font-style: normal;
}

body {
  color: var(--body-color);
  font-family: var(--font-jp);
  font-size: var(--font-base);
  font-weight: var(--font-weight-base);
  line-height: var(--base-line);
  overflow-wrap: anywhere;
}

main {
  overflow-x: hidden;
}

.breadcrumb {
  display: flex;
  padding-block: 20px;
}
@media (max-width: 767px) {
  .breadcrumb {
    overflow-x: auto;
    padding-block: 10px;
  }
}
.breadcrumb__lists {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .breadcrumb__lists {
    flex-wrap: nowrap;
  }
}
.breadcrumb__list {
  align-items: center;
  display: flex;
  gap: 8px;
}
.breadcrumb__list:not(:last-child)::after {
  background: url(/assets/img/ico-arrow-right-black.svg) center/contain no-repeat;
  content: "";
  height: 8px;
  width: 8px;
}
.breadcrumb__list:not(:last-child) .breadcrumb__item {
  color: var(--body-color);
}
@media (max-width: 767px) {
  .breadcrumb__list:last-child {
    padding-right: var(--site-padding);
  }
}
.breadcrumb__item {
  color: #aaa;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .breadcrumb__item {
    white-space: nowrap;
  }
}

.button-wrap {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .button-wrap {
    margin-top: 40px;
  }
}

.button {
  align-items: center;
  display: inline-flex;
  font-weight: var(--font-weight-bold);
  justify-content: center;
  line-height: 1.44;
  position: relative;
}
.button--lg {
  font-size: 20px;
  height: 84px;
  width: 100%;
}
@media (max-width: 767px) {
  .button--lg {
    font-size: 16px;
    height: 60px;
  }
}
.button--lg::after {
  height: 20px;
  right: 20px;
  width: 12px;
}
@media (max-width: 767px) {
  .button--lg::after {
    height: 11px;
    width: 7px;
  }
}
.button--dark {
  background-color: var(--dark-color);
  border-radius: 5px;
  letter-spacing: 0.1em;
  color: #fff;
}
.button--dark::after {
  background: url(../../assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.button--red {
  background-color: #FE2C5C;
  border-radius: 5px;
  letter-spacing: 0.1em;
  color: #fff;
}
.button--red::after {
  background: url(../../assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.button--orange {
  background-image: linear-gradient(90deg, #ffa700, #ff7f00);
  border-radius: 5px;
  letter-spacing: 0.1em;
  color: #fff;
}
.button--orange::after {
  background: url(../../assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.button--white {
  border: 1px solid;
  border-radius: 5px;
  letter-spacing: 0.1em;
  color: #fff;
}
.button--white::after {
  background: url(../../assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.button--border {
  border: 1px solid;
  border-radius: 5px;
  letter-spacing: 0.1em;
  color: var(--main-color);
}
.button--border::after {
  background: url(../../assets/img/ico-arrow-right.svg) center/100% no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.button--more {
  background-color: var(--dark-color);
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  max-width: 400px;
  min-height: 70px;
  padding: 13px 60px 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .button--more {
    font-size: 18px;
    max-width: 330px;
    padding-inline: 40px;
  }
}
.button--more::after {
  background: url(../../assets/img/ico-arrow-more-white.svg) center/100% no-repeat;
  content: "";
  height: 18px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}
@media (max-width: 767px) {
  .button--more::after {
    right: 20px;
  }
}

.cta {
  border-radius: 20px;
  overflow: hidden;
  padding-block: 60px;
  position: relative;
  z-index: 0;
}
@media (max-width: 991px) {
  .cta {
    padding-block: 50px 280px;
  }
}
.cta .title {
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cta .title {
    margin-bottom: 140px;
  }
}
.cta__btns {
  display: grid;
  gap: 20px;
  grid-template-columns: 360px 360px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .cta__btns {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }
}
@media (max-width: 991px) {
  .cta__btns {
    max-width: 100%;
  }
}
.cta__btn {
  font-size: 24px;
  font-weight: var(--font-weight-black);
  height: 84px;
  width: 100%;
}
@media (max-width: 991px) {
  .cta__btn {
    font-size: 20px;
  }
}
.cta__btn::after {
  height: 20px;
  right: 20px;
  width: 12px;
}
.cta__info {
  align-items: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cta__info {
    border-top: 1px dashed;
    display: block;
    padding-top: 25px;
    text-align: center;
  }
}
.cta__info-ttl {
  font-weight: var(--font-weight-bold);
}
@media (max-width: 991px) {
  .cta__info-body {
    border-radius: 5px;
    border: 2px solid;
    display: flex;
    height: 100px;
    margin-top: 15px;
    padding-top: 20px;
  }
  .cta__info-body .tel {
    height: 30px;
    width: 100%;
  }
}
.cta__info-foot {
  flex: 100%;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 991px) {
  .cta__info-foot {
    margin-top: -40px;
  }
}
.cta__student {
  bottom: 0;
  left: 50%;
  pointer-events: none;
  position: absolute;
  text-align: center;
  z-index: -1;
}
.cta__student--01 {
  margin-left: 390px;
  width: 267px;
}
@media (max-width: 1199px) {
  .cta__student--01 {
    margin-left: 340px;
    width: 160px;
  }
}
@media (max-width: 991px) {
  .cta__student--01 {
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr 128px;
    margin-left: -155px;
    top: 170px;
    width: 310px;
  }
}
@media (max-width: 991px) {
  .cta__student--01 .cta__student-tip {
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  .cta__student--01 .cta__student-img {
    margin-left: -15px;
    margin-top: 0;
  }
}
.cta__student--02 {
  margin-left: -690px;
  width: 313px;
}
@media (max-width: 1199px) {
  .cta__student--02 {
    margin-left: -510px;
    width: 190px;
  }
}
@media (max-width: 991px) {
  .cta__student--02 {
    margin-left: -156.5px;
    width: 313px;
  }
}
.cta__student-img {
  margin-top: 10px;
}
.cta__bg {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -3;
}
.cta__bg--flower {
  height: 700px;
  top: -140px;
  z-index: -2;
}
@media (max-width: 991px) {
  .cta__bg--flower {
    height: 1350px;
    top: -300px;
  }
}
.cta--under {
  border-radius: 10px;
  display: grid;
  grid-template-columns: 435px 1fr;
  margin: 100px auto 0;
  max-width: 1100px;
  min-height: 340px;
  padding: 4px;
  width: calc(100% - 80px);
}
@media (max-width: 1199px) {
  .cta--under {
    grid-template-columns: 1fr;
    padding: 3px 3px 130px;
  }
}
@media (max-width: 767px) {
  .cta--under {
    margin-top: 60px;
    width: 100%;
  }
}
.cta--under .cta__head {
  padding: 40px 30px 0 0;
  position: relative;
  text-align: center;
  z-index: 0;
}
@media (max-width: 1199px) {
  .cta--under .cta__head {
    height: 300px;
    padding: 25px 0 0;
  }
}
.cta--under .cta__head::after {
  background-color: #fff;
  border-radius: 8px 0 0 8px;
  clip-path: polygon(calc(100% - 60px) 0%, 100% 50%, calc(100% - 60px) 100%, 0% 100%, 0% 0%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cta--under .cta__head::after {
    border-radius: 8px 8px 0 0;
    clip-path: polygon(100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px), 0% 0%);
  }
}
.cta--under .cta__body {
  padding: 36px;
}
@media (max-width: 767px) {
  .cta--under .cta__body {
    padding: 20px 12px 0;
  }
}
.cta--under .cta__btns {
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (max-width: 767px) {
  .cta--under .cta__btns {
    grid-template-columns: 1fr;
  }
}
.cta--under .cta__btn {
  font-size: 20px;
  height: 70px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .cta--under .cta__btn {
    height: 84px;
  }
}
.cta--under .cta__info {
  justify-content: start;
}
@media (max-width: 1199px) {
  .cta--under .cta__info {
    justify-content: center;
  }
}
.cta--under .cta__tel {
  background: url(/assets/img/ico-tel-white.svg) left center/30px no-repeat;
  display: block;
  font-size: 40px;
  font-weight: var(--font-weight-black);
  line-height: 1;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cta--under .cta__tel {
    background-size: 26px;
    font-size: 36px;
    padding-left: 32px;
  }
}
@media (max-width: 991px) {
  .cta--under .cta__info-body {
    align-items: center;
    flex-direction: column;
    padding-top: 16px;
    position: relative;
  }
  .cta--under .cta__info-body::after {
    background: url(/assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
    content: "";
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
  }
}
@media (max-width: 767px) {
  .cta--under .cta__info-body {
    padding-right: 24px;
  }
}
.cta--under .cta__info-foot {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cta--under .cta__info-foot {
    margin-top: 5px;
    padding-left: 15px;
  }
}
.cta--under .cta__ann {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 20px;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 1199px) {
  .cta--under .cta__ann {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta--under .cta__ann {
    line-height: 1.7;
    margin-top: 10px;
    text-align: left;
  }
}
.cta--under .cta__student--01 {
  left: auto;
  margin-left: 0;
  right: 13px;
  width: 168px;
}
@media (max-width: 1199px) {
  .cta--under .cta__student--01 {
    bottom: 0;
    display: block;
    left: 50%;
    margin-left: -80px;
    right: auto;
    top: auto;
    width: 160px;
  }
  .cta--under .cta__student--01 .cta__student-img {
    height: 130px;
    height: 130px;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}
.cta--under .cta__student--02 {
  left: 45px;
  margin-left: 0;
  width: 300px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .cta--under .cta__student--02 {
    left: 0;
    width: 100%;
  }
  .cta--under .cta__student--02 .cta__student-img {
    clip-path: polygon(100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px), 0% 0%);
    height: 123px;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
}
.cta--under .cta__ttl {
  line-height: 1.5;
}
.cta--under .cta__ttl-tip {
  color: var(--dark-color);
  font-weight: var(--font-weight-black);
}
.cta--under .cta__ttl-lg {
  color: var(--light-color);
  font-size: 40px;
  font-weight: var(--font-weight-black);
}
.cta--under .cta__ttl-sm {
  font-size: 34px;
}
.cta--under .cta__ttl-marker {
  position: relative;
  z-index: 0;
}
.cta--under .cta__ttl-marker::after {
  background-image: linear-gradient(90deg, #fff250, #ffce00);
  bottom: 2px;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.cta--under .cta__bg--flower {
  top: -180px;
}
@media (max-width: 1199px) {
  .cta--under .cta__bg--flower {
    height: 1200px;
    top: 0;
  }
}

.cta-sns {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .cta-sns {
    margin-top: 40px;
    padding-inline: 20px;
  }
}
.cta-sns__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
}
.cta-sns__list {
  width: 100%;
}
@media (min-width: 768px) {
  .cta-sns__list {
    max-width: 360px;
  }
}
@media (min-width: 768px) {
  .cta-sns__list--instagram {
    max-width: 400px;
  }
}
.cta-sns__tip {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
  text-align: center;
}
.cta-sns__tip-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 767px) {
  .cta-sns__tip-inner {
    gap: 10px;
  }
}
.cta-sns__tip-inner::before, .cta-sns__tip-inner::after {
  background-color: var(--dark-color);
  border-radius: 2px;
  content: "";
  height: 20px;
  transform-origin: bottom;
  width: 2px;
}
.cta-sns__tip-inner::before {
  transform: rotate(-40deg);
}
.cta-sns__tip-inner::after {
  transform: rotate(40deg);
}

.faqs {
  display: grid;
  gap: 20px;
}
@media (max-width: 767px) {
  .faqs {
    gap: 15px;
  }
}

.faq__head {
  align-items: center;
  background-color: var(--light-color);
  border-radius: 10px;
  color: #fff;
  display: flex;
  min-height: 75px;
  padding: 10px 95px;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .faq__head {
    transition: opacity 0.3s;
  }
  .faq__head:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .faq__head {
    padding: 10px 50px 10px 75px;
  }
}
.faq__head::before {
  background: url(/assets/img/faq-q.svg) center/100% no-repeat;
  content: "";
  height: 45px;
  left: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
}
@media (max-width: 767px) {
  .faq__head::before {
    left: 15px;
  }
}
.faq__ttl {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 1.56;
}
@media (max-width: 767px) {
  .faq__ttl {
    font-size: 18px;
  }
}
.faq__toggle {
  display: block;
  height: 21px;
  margin-top: -10px;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 21px;
}
@media (max-width: 767px) {
  .faq__toggle {
    right: 15px;
  }
}
.faq__toggle::before, .faq__toggle::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.faq__toggle::before {
  transition: opacity 0.3s;
}
.faq__toggle::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.faq__head.is-open .faq__toggle::before {
  opacity: 0;
}
.faq__head.is-open .faq__toggle::after {
  transform: rotate(0deg);
}
.faq__body {
  display: none;
}
.faq__txt {
  background-color: #EAF1FF;
  border-radius: 10px;
  margin-top: 10px;
  padding: 20px;
}

.footer {
  background-color: var(--light-color);
  color: #fff;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .footer {
    padding-block: 30px 100px;
  }
}
.footer__menus {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
@media (max-width: 767px) {
  .footer__menus {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    border-bottom: 1px solid;
  }
}
.footer__menu-item {
  font-weight: var(--font-weight-bold);
}
@media (max-width: 767px) {
  .footer__menu-item {
    display: block;
    padding: 15px 15px 16px 0;
    position: relative;
  }
  .footer__menu-item::after {
    background: url(/assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
    content: "";
    height: 11px;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
  }
}
.footer__list {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .footer__list {
    border-bottom: 1px solid;
    margin-top: 0;
  }
}
.footer__list-head {
  pointer-events: none;
}
@media (max-width: 767px) {
  .footer__list-head {
    display: block;
    padding: 15px 15px 16px 0;
    pointer-events: all;
    position: relative;
  }
  .footer__list-head::before, .footer__list-head::after {
    background-color: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: auto;
    margin: auto 5px auto auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
  }
  .footer__list-head::before {
    transition: opacity 0.3s;
  }
  .footer__list-head::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .footer__list-head.is-open::before {
    opacity: 0;
  }
  .footer__list-head.is-open::after {
    transform: rotate(0deg);
  }
}
.footer__list-ttl {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 767px) {
  .footer__list-ttl {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer__list-body {
    display: none;
  }
}
.footer__list-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer__list-menus {
    display: block;
    margin-top: 0;
    padding: 0 0 10px 40px;
  }
}
@media (max-width: 767px) {
  .footer__list-menu {
    border-top: 1px dashed;
  }
}
.footer__list-item {
  align-items: center;
  border-radius: 100px;
  border: 1px solid;
  display: inline-flex;
  font-size: 14px;
  gap: 10px;
  padding: 7px 20px;
}
@media (max-width: 767px) {
  .footer__list-item {
    border-radius: 0;
    border: none;
    display: block;
    font-size: 16px;
    padding: 15px 15px 16px 0;
    position: relative;
  }
  .footer__list-item::after {
    background: url(/assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
    content: "";
    height: 11px;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
  }
}
.footer__list-item--window::after {
  background: url(/assets/img/ico-window-white.svg) center/100% no-repeat;
  content: "";
  height: 12px;
  width: 12px;
}
.footer__list-item-sm {
  font-size: 12px;
}
@media (max-width: 767px) {
  .footer__list-item-sm {
    font-size: 14px;
    margin-left: 10px;
  }
}
.footer__areas {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}
@media (max-width: 991px) {
  .footer__areas {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .footer__area:not(:last-child) {
    border-right: 1px solid;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .footer__area:not(:last-child) {
    border-bottom: 1px solid;
    padding-bottom: 20px;
  }
}
.footer__area-head {
  pointer-events: none;
}
@media (max-width: 767px) {
  .footer__area-head {
    display: block;
    padding: 15px 15px 16px 0;
    pointer-events: all;
    position: relative;
  }
  .footer__area-head::before, .footer__area-head::after {
    background-color: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: auto;
    margin: auto 5px auto auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
  }
  .footer__area-head::before {
    transition: opacity 0.3s;
  }
  .footer__area-head::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .footer__area-head.is-open::before {
    opacity: 0;
  }
  .footer__area-head.is-open::after {
    transform: rotate(0deg);
  }
}
.footer__area-ttl {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 767px) {
  .footer__area-ttl {
    font-size: 16px;
    font-weight: var(--font-weight-base);
  }
}
@media (max-width: 767px) {
  .footer__area-body {
    display: none;
  }
}
.footer__area-list {
  margin-top: 20px;
  display: grid;
  gap: 30px;
  grid-template-rows: 310px 1fr;
}
@media (max-width: 991px) {
  .footer__area-list {
    grid-template-rows: 1fr;
  }
}
@media (max-width: 767px) {
  .footer__area-list {
    display: block;
    margin-top: 0;
  }
}
.footer__area-sub-ttl {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .footer__area-sub-ttl {
    background-color: #1651B3;
    border-radius: 5px;
    display: block;
    padding: 3px 15px 4px;
  }
}
.footer__area-menus {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .footer__area-menus {
    display: block;
    padding: 0 0 15px 15px;
  }
}
.footer__area-menu {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
.footer__area-menu--window::after {
  background: url(/assets/img/ico-window-white.svg) center/100% no-repeat;
  content: "";
  display: inline-block;
  height: 12px;
  margin-left: 8px;
  width: 12px;
}
.footer__sub-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .footer__sub-menus {
    gap: 15px 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer__sub-menu {
    display: flex;
    flex: 50%;
  }
}
@media (max-width: 767px) {
  .footer__sub-menu--sp-full {
    flex: 100%;
  }
}
.footer__sub-menu-item {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  gap: 8px;
}
.footer__sub-menu-item--window::after {
  background: url(/assets/img/ico-window-white.svg) center/100% no-repeat;
  content: "";
  height: 12px;
  width: 12px;
}
.footer__sub-menu-item--lighter {
  font-weight: var(--font-weight-base);
}
.footer__foot {
  border-top: 1px solid;
  margin-top: 30px;
  padding-block: 30px;
}
.footer__info {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer__info {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 160px;
  }
}
.footer__copy {
  margin-left: auto;
}
@media (max-width: 767px) {
  .footer__copy {
    font-size: 14px;
    margin-left: 0;
  }
}

.footer-page-top {
  background: url(/assets/img/page-top.webp) center/100% no-repeat;
  bottom: 0;
  height: 135px;
  position: fixed;
  right: 30px;
  transition: 0.3s;
  width: 140px;
  z-index: var(--z-index-page-top);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .footer-page-top {
    display: none;
  }
}
.footer-page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.footer-page-top.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.footer-nav {
  border-radius: 10px 10px 0 0;
  bottom: 0;
  box-shadow: 0 0 20px rgba(2, 69, 152, 0.12);
  display: grid;
  grid-template-columns: 60% 20% 20%;
  height: 70px;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: var(--z-index-footer-nav);
}
.footer-nav.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav__btn {
  display: grid;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  height: inherit;
  line-height: 1.29;
  place-content: center;
  text-align: center;
  white-space: nowrap;
}
.footer-nav__btn--tel {
  background: url(/assets/img/tel.svg) center 18px/190px no-repeat #fff;
  color: var(--main-color);
  padding-top: 30px;
}
.footer-nav__btn--orange {
  background-image: linear-gradient(90deg, #ffa700, #ff7f00);
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-nav__btn--main {
  background-color: var(--main-color);
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-nav__btn-hour {
  font-size: 10px;
  font-weight: var(--font-weight-base);
}

.header {
  left: 0;
  padding: 20px 70px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: var(--z-index-header);
}
@media (max-width: 1365px) {
  .header {
    padding-inline: 30px;
  }
}
@media (max-width: 1199px) {
  .header {
    padding-inline: 20px;
  }
}
@media (max-width: 991px) {
  .header {
    padding: 14px var(--site-padding) 0;
  }
}
.header__inner {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1260px;
  position: relative;
}
.header__logo {
  display: inline-block;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .header__logo {
    margin-top: 0;
    width: 132px;
  }
}
@media (max-width: 991px) {
  .header__right {
    display: none;
  }
}
.header__right-head {
  align-items: center;
  gap: 25px;
  display: flex;
}
.header__info {
  align-items: center;
  gap: 10px;
  display: flex;
}
.header__hour {
  font-size: 10px;
  color: #fff;
  display: grid;
  grid-template-columns: 40px 1fr;
}
.header__hour-ttl {
  text-align: center;
}
.header__btns {
  display: flex;
  gap: 20px;
}
.header__btn {
  font-size: 14px;
  height: 42px;
  width: 180px;
}
@media (max-width: 1199px) {
  .header__btn {
    width: 140px;
  }
}
.header__menus {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media (min-width: 992px) {
  .header__menu {
    display: grid;
    height: var(--height-header);
    margin-bottom: -25px;
    padding-bottom: 20px;
    place-content: center;
    position: relative;
  }
  .header__menu.is-nav-visible::after {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    content: "";
    height: 15px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 30px;
  }
  .header__menu.is-nav-visible .header__menu-item--down {
    color: #fff;
  }
  .header__menu.is-nav-visible .header__menu-item--down::before {
    transform: scaleX(1);
  }
  .header__menu.is-nav-visible .header__menu-item--down::after {
    background-image: url(/assets/img/ico-arrow-bottom-white.svg);
  }
}
.header__menu-item {
  font-weight: var(--font-weight-semibold);
  color: #fff;
}
@media (min-width: 992px) {
  .header__menu-item {
    transition: 0.3s;
    position: relative;
  }
  .header__menu-item::before {
    background-color: #fff;
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s;
    width: 100%;
  }
  .header__menu-item:hover {
    opacity: 1;
  }
  .header__menu-item:hover::before {
    transform: scaleX(1);
  }
}
@media (max-width: 1199px) {
  .header__menu-item {
    font-size: 14px;
  }
}
.header__menu-item--down {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}
.header__menu-item--down::after {
  background: url(/assets/img/ico-arrow-bottom-white.svg) center/100% no-repeat;
  content: "";
  height: 7px;
  margin-bottom: -2px;
  right: 10px;
  width: 11px;
}
@media (max-width: 991px) {
  .header__menu-item--down {
    display: flex;
    gap: 8px;
    pointer-events: all;
    position: relative;
  }
  .header__menu-item--down::before, .header__menu-item--down::after {
    background: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: auto;
    margin: auto 17px auto auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
  }
  .header__menu-item--down::before {
    transition: opacity 0.3s;
  }
  .header__menu-item--down::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .header__menu-item--down.is-open::before {
    opacity: 0;
  }
  .header__menu-item--down.is-open::after {
    transform: rotate(0deg);
  }
}
@media (min-width: 992px) {
  .header__down {
    display: block;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 142px;
    transform: translateY(-10px);
    transition: 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 1;
  }
  .header__menu.is-nav-visible .header__down {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .header__down-container {
    display: grid;
    margin: 0 auto;
    max-width: var(--site-width);
    padding-inline: var(--site-padding);
    place-content: center;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .header__down-box {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px 50px 40px;
  }
}
.header__down-ttl {
  display: none;
}
@media (min-width: 992px) {
  .header__down-ttl {
    color: var(--dark-color);
    display: block;
    font-size: 24px;
    font-weight: var(--font-weight-black);
    text-align: center;
  }
}
@media (min-width: 992px) {
  .header__down-menus {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .header__down-menus {
    margin-top: -7px;
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .header__down-menu {
    width: 210px;
  }
}
.header__down-menu-item {
  display: block;
}
@media (min-width: 992px) {
  .header__down-menu-item {
    align-items: center;
    display: flex;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .header__down-menu-item {
    font-size: 14px;
    padding: 7px 15px 7px 40px;
  }
}
.header__down-menu-ico {
  display: none;
}
@media (min-width: 992px) {
  .header__down-menu-ico {
    background-color: var(--light-color);
    border-radius: 50%;
    display: grid;
    height: 50px;
    place-content: center;
    width: 50px;
  }
  .header__down-menu-ico--elementary {
    background-color: var(--elementary-color);
  }
  .header__down-menu-ico--jrhighschool {
    background-color: var(--jrhighschool-color);
  }
  .header__down-menu-ico--highschool {
    background-color: var(--highschool-color);
  }
}
@media (min-width: 992px) {
  .header__down-menu-ttl {
    border-bottom: 1px solid;
    color: var(--dark-color);
    display: block;
    flex: 1;
    font-size: 16px;
    font-weight: var(--font-weight-black);
    line-height: 1.5;
    padding-block: 6px;
    position: relative;
  }
  .header__down-menu-ttl::after {
    background: url(/assets/img/ico-arrow-more.svg) center/100% no-repeat;
    content: "";
    height: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
  }
}
@media (min-width: 992px) {
  .header__down-menu-ttl-sm {
    display: block;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
  }
}
.header__sub-menus {
  align-items: center;
  display: flex;
  justify-content: end;
  position: relative;
}
.header__sub-menu {
  border-left: 1px solid #fff;
  line-height: 1;
}
.header__sub-menu:last-child {
  border-right: 1px solid #fff;
}
.header__sub-menu-item {
  color: #fff;
  font-size: 14px;
  padding-inline: 20px;
}
@media (max-width: 1199px) {
  .header__sub-menu-item {
    font-size: 13px;
  }
}

.header-fix {
  background-color: #fff;
  height: var(--height-header);
  left: 0;
  opacity: 0;
  padding-inline: 70px;
  position: fixed;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: var(--z-index-header);
}
@media (min-width: 992px) {
  .header-fix {
    transition: 0.3s;
  }
  .header-fix.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .is-nav-visible .header-fix {
    background-color: transparent;
  }
}
@media (max-width: 1365px) {
  .header-fix {
    padding-inline: 30px;
  }
}
@media (max-width: 1199px) {
  .header-fix {
    padding-inline: 20px;
  }
}
@media (max-width: 991px) {
  .header-fix {
    background-image: linear-gradient(#0076cc, #014598);
    color: #fff;
    padding: 14px var(--site-padding) 40px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
  }
  .is-open .header-fix {
    opacity: 1;
    visibility: visible;
  }
}
.header-fix__inner {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1260px;
  position: relative;
}
@media (max-width: 991px) {
  .header-fix__inner {
    display: block;
  }
}
.header-fix__logo {
  display: inline-block;
  line-height: 1;
}
@media (min-width: 992px) {
  .header-fix__logo {
    position: relative;
  }
}
@media (min-width: 992px) {
  .header-fix__logo-img {
    transition: 0.3s;
  }
  .is-nav-visible .header-fix__logo-img {
    opacity: 0;
    visibility: hidden;
  }
}
.header-fix__logo-img--white {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .is-nav-visible .header-fix__logo-img--white {
    opacity: 1;
    visibility: visible;
  }
}

.header-toggle {
  background-image: linear-gradient(#0076cc, #014598);
  border-bottom-left-radius: 10px;
  display: grid;
  gap: 6px;
  height: 59px;
  padding: 0;
  place-content: center;
  position: fixed;
  right: 0;
  top: 0;
  width: 59px;
  z-index: calc(var(--z-index-header) + 1);
}
@media (min-width: 992px) {
  .header-toggle {
    display: none;
  }
}
.is-open .header-toggle {
  background-image: none;
}
.header-toggle::after, .header-toggle::before {
  background: center/100% no-repeat;
  content: "";
  display: block;
  height: 6px;
  transition: opacity 0.3s;
  width: 29px;
}
.header-toggle::after {
  background-image: url(/assets/img/nav-toggle-menu.svg);
}
.is-open .header-toggle::after {
  opacity: 0;
}
.header-toggle::before {
  background-image: url(/assets/img/nav-toggle-close.svg);
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
.is-open .header-toggle::before {
  opacity: 1;
}
.header-toggle__line {
  background-color: #fff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: 0.3s;
  width: 29px;
}
.is-open .header-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}
.is-open .header-toggle__line:nth-child(2) {
  opacity: 0;
}
.is-open .header-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}

.header-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  visibility: hidden;
  width: 100%;
  transition: 0.3s;
  z-index: calc(var(--z-index-header) - 1);
}
.is-nav-visible .header-overlay {
  opacity: 1;
  visibility: visible;
}

.heading {
  border-radius: 0 0 20px 20px;
  color: #fff;
  min-height: 270px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding-block: 150px 40px;
}
@media (max-width: 767px) {
  .heading {
    border-radius: 0 0 10px 10px;
    min-height: 155px;
    padding-block: 75px 20px;
  }
}
.heading__ttl {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .heading__ttl {
    font-size: 28px;
  }
}
.heading__ttl-sm {
  font-size: 24px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .heading__ttl-sm {
    display: block;
    font-size: 16px;
  }
}
.heading__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .heading__tags {
    gap: 10px;
  }
}
.heading__tag {
  align-items: center;
  border-radius: 100px;
  border: 1px solid;
  display: inline-flex;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  gap: 5px;
  line-height: 1.4;
  min-height: 30px;
  padding: 4px 20px;
}
@media (max-width: 767px) {
  .heading__tag {
    font-size: 12px;
    min-height: 22px;
    padding: 1px 10px 2px;
  }
}
.heading__tag-sm {
  font-size: 12px;
}
.heading__bg {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -3;
}
.heading__bg--flower {
  height: 540px;
  top: -135px;
  z-index: -2;
}
@media (max-width: 991px) {
  .heading__bg--flower {
    height: 680px;
    top: -200px;
  }
}

.learn {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .learn {
    margin-top: 60px;
  }
}
.learn .title {
  margin-bottom: 40px;
}
.learn__box {
  background-color: #E6F7FF;
  border-radius: 20px;
  padding: 60px 50px;
}
@media (max-width: 767px) {
  .learn__box {
    padding: 60px 20px;
  }
}
.learn__lists {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .learn__lists {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .learn__lists {
    gap: 20px;
  }
}
.learn__list {
  display: grid;
  gap: 10px;
}
@media (max-width: 767px) {
  .learn__list {
    gap: 20px;
    grid-template-columns: calc(50% - 10px) 1fr;
  }
}
.learn__list-img {
  border-radius: 10px;
  height: 162px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 767px) {
  .learn__list-img {
    height: 143px;
  }
}
.learn__list-body {
  position: relative;
}
@media (max-width: 767px) {
  .learn__list-body {
    margin-top: 20px;
  }
}
.learn__list-body::after {
  background: url(/assets/img/ico-arrow-more-white.svg) center/13px no-repeat var(--dark-color);
  border-radius: 50%;
  content: "";
  height: 30px;
  margin-top: -15px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
}
@media (max-width: 767px) {
  .learn__list-body::after {
    top: 18px;
  }
}
.learn__list-ttl {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 767px) {
  .learn__list-txt {
    margin-top: 10px;
  }
}

.nav {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media (max-width: 1199px) {
  .nav {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .nav {
    display: block;
    margin-top: 10px;
  }
}
.nav__menus {
  align-items: center;
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .nav__menus {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .nav__menus {
    display: block;
  }
}
.nav__menu {
  position: relative;
}
@media (min-width: 992px) {
  .nav__menu {
    display: grid;
    height: var(--height-header);
    place-content: center;
    position: relative;
  }
  .nav__menu.is-nav-visible::after {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    content: "";
    height: 15px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 30px;
  }
  .nav__menu.is-nav-visible .nav__menu-item--down {
    color: #fff;
  }
  .nav__menu.is-nav-visible .nav__menu-item--down::before {
    transform: scaleX(1);
  }
  .nav__menu.is-nav-visible .nav__menu-item--down::after {
    background-image: url(/assets/img/ico-arrow-bottom-white.svg);
  }
}
@media (max-width: 991px) {
  .nav__menu {
    border-bottom: 1px solid;
  }
}
.nav__menu-item {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
}
@media (min-width: 992px) {
  .nav__menu-item {
    transition: 0.3s;
    position: relative;
  }
  .nav__menu-item::before {
    background-color: var(--light-color);
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s;
    width: 100%;
  }
  .nav__menu-item:hover {
    opacity: 1;
  }
  .nav__menu-item:hover::before {
    transform: scaleX(1);
  }
}
@media (max-width: 1199px) {
  .nav__menu-item {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .nav__menu-item {
    align-items: center;
    display: flex;
    font-size: 16px;
    gap: 8px;
    padding: 20px;
    position: relative;
  }
  .nav__menu-item::after {
    background: url(/assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
    content: "";
    height: 11px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
  }
}
.nav__menu-item--down {
  align-items: center;
  display: inline-flex;
  gap: 4px;
  pointer-events: none;
}
.nav__menu-item--down::before {
  background-color: #fff;
}
.nav__menu-item--down::after {
  background: url(/assets/img/ico-arrow-bottom-black.svg) center/100% no-repeat;
  content: "";
  height: 7px;
  margin-bottom: -2px;
  right: 10px;
  transition: 0.3s;
  width: 11px;
}
@media (max-width: 991px) {
  .nav__menu-item--down {
    display: flex;
    gap: 8px;
    pointer-events: all;
    position: relative;
  }
  .nav__menu-item--down::before, .nav__menu-item--down::after {
    background: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: auto;
    margin: auto 17px auto auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
  }
  .nav__menu-item--down::before {
    transition: opacity 0.3s;
  }
  .nav__menu-item--down::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .nav__menu-item--down.is-open::before {
    opacity: 0;
  }
  .nav__menu-item--down.is-open::after {
    transform: rotate(0deg);
  }
}
.nav__menu-item br {
  display: none;
}
@media (max-width: 1365px) {
  .nav__menu-item br {
    display: block;
  }
}
@media (max-width: 991px) {
  .nav__menu-item br {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav__menu-ico {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav__down {
    display: block;
    left: 0;
    opacity: 0;
    position: fixed;
    top: var(--height-header);
    transform: translateY(-10px);
    transition: 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 1;
  }
  .nav__menu.is-nav-visible .nav__down {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .nav__down {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav__down-container {
    display: grid;
    margin: 0 auto;
    max-width: var(--site-width);
    padding-inline: var(--site-padding);
    place-content: center;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .nav__down-box {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px 50px 40px;
  }
}
.nav__down-ttl {
  display: none;
}
@media (min-width: 992px) {
  .nav__down-ttl {
    color: var(--dark-color);
    display: block;
    font-size: 24px;
    font-weight: var(--font-weight-black);
    text-align: center;
  }
}
@media (min-width: 992px) {
  .nav__down-menus {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .nav__down-menus {
    margin-top: -7px;
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .nav__down-menu {
    width: 210px;
  }
}
.nav__down-menu-item {
  display: block;
}
@media (min-width: 992px) {
  .nav__down-menu-item {
    align-items: center;
    display: flex;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .nav__down-menu-item {
    font-size: 14px;
    padding: 7px 15px 7px 40px;
  }
}
.nav__down-menu-ico {
  display: none;
}
@media (min-width: 992px) {
  .nav__down-menu-ico {
    background-color: var(--light-color);
    border-radius: 50%;
    display: grid;
    height: 50px;
    place-content: center;
    width: 50px;
  }
  .nav__down-menu-ico--elementary {
    background-color: var(--elementary-color);
  }
  .nav__down-menu-ico--jrhighschool {
    background-color: var(--jrhighschool-color);
  }
  .nav__down-menu-ico--highschool {
    background-color: var(--highschool-color);
  }
}
@media (min-width: 992px) {
  .nav__down-menu-ttl {
    border-bottom: 1px solid;
    color: var(--dark-color);
    display: block;
    flex: 1;
    font-size: 16px;
    font-weight: var(--font-weight-black);
    line-height: 1.5;
    padding-block: 6px;
    position: relative;
  }
  .nav__down-menu-ttl::after {
    background: url(/assets/img/ico-arrow-more.svg) center/100% no-repeat;
    content: "";
    height: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
  }
}
@media (min-width: 992px) {
  .nav__down-menu-ttl-sm {
    display: block;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
  }
}
.nav__btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .nav__btns {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .nav__btns {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding-inline: 20px;
  }
}
.nav__btn {
  font-size: 14px;
  height: 40px;
  width: 150px;
}
.nav__btn::after {
  height: 11px;
  right: 10px;
  width: 7px;
}
@media (max-width: 991px) {
  .nav__btn::after {
    right: 20px;
  }
}
@media (max-width: 1199px) {
  .nav__btn {
    font-size: 13px;
    width: 130px;
  }
}
@media (max-width: 991px) {
  .nav__btn {
    font-size: 16px;
    height: 60px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .nav__btn.button--border {
    transition: 0.3s;
  }
  .is-nav-visible .nav__btn.button--border {
    color: #fff;
  }
  .is-nav-visible .nav__btn.button--border::after {
    background-image: url(/assets/img/ico-arrow-right-white.svg);
  }
}
@media (max-width: 991px) {
  .nav__btn.button--border {
    color: #fff;
  }
  .nav__btn.button--border::after {
    background-image: url(/assets/img/ico-arrow-right-white.svg);
  }
}
.nav__sub-menus {
  display: none;
}
@media (max-width: 991px) {
  .nav__sub-menus {
    display: block;
  }
}
.nav__sub-menu {
  border-bottom: 1px dashed;
}
.nav__sub-menu-item {
  display: block;
  font-size: 14px;
  padding: 18px 20px;
  position: relative;
}
.nav__sub-menu-item::after {
  background: url(/assets/img/ico-arrow-right-white.svg) center/contain no-repeat;
  content: "";
  height: 11px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
}
.nav__info {
  display: none;
}
@media (max-width: 991px) {
  .nav__info {
    display: block;
    margin-top: 30px;
    padding-inline: 20px;
  }
}
.nav__info-tel {
  background: url(/assets/img/tel.svg) center/181px no-repeat #fff;
  border-radius: 5px;
  display: block;
  height: 60px;
}
.nav__info-hour {
  font-size: 10px;
  margin-top: 8px;
  text-align: center;
}
.nav__foot-menus {
  display: none;
}
@media (max-width: 991px) {
  .nav__foot-menus {
    display: block;
    margin-top: 25px;
    padding: 0 20px 30px;
  }
}
.nav__foot-menu-item {
  align-items: center;
  display: flex;
  gap: 5px;
  font-size: 14px;
  padding: 5px 0;
}
.nav__foot-menu-item--window::after {
  background: url(/assets/img/ico-window-white.svg) center/contain no-repeat;
  content: "";
  height: 10px;
  width: 10px;
}

.news__item {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 18px;
}
.news__item:not(:last-child) {
  margin-bottom: 16px;
}
.news__item-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news__item-time {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  margin-right: 10px;
}
.news__item-link {
  display: block;
}
.news__item-ttl {
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: var(--font-weight-base);
}
@media (max-width: 767px) {
  .news__item-ttl {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    white-space: normal;
  }
}

.panels {
  background-color: #fff;
  border-bottom: 1px solid var(--light-color);
  border-left: 1px solid var(--light-color);
  border-radius: 0 0 10px 10px;
  border-right: 1px solid var(--light-color);
  padding: 25px 19px 10px;
}
.panels--lg {
  border-width: 2px;
  padding: 40px 28px 30px;
}
@media (max-width: 767px) {
  .panels--lg {
    padding: 25px 18px 30px;
  }
}

.panel {
  animation: fadeIn 0.3s ease-in-out;
  display: none;
}
.panel.is-active {
  display: block;
}
.panel__ttl {
  border-bottom: 1px dashed var(--gray);
  color: var(--dark-color);
  font-weight: var(--font-weight-black);
  font-size: 22px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  text-align: center;
}
.panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .panel__links {
    gap: 10px 20px;
  }
}
.panel__link {
  color: var(--dark-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.panel__link--window {
  background: url(/assets/img/ico-window.svg) right 60%/12px no-repeat;
  padding-right: 17px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.splide__track {
  overflow: visible;
}
.splide__foot {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 100px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .splide__foot {
    gap: 20px;
    grid-template-columns: 1fr 90px;
  }
}
.splide__arrows {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .splide__arrows {
    gap: 10px;
  }
}
.splide__arrow {
  background-color: var(--dark-color);
  border-radius: 50%;
  display: grid;
  height: 40px;
  place-content: center;
  width: 40px;
}
.splide__arrow::before {
  background: url(/assets/img/ico-arrow-more-white.svg) center/100% no-repeat;
  content: "";
  height: 16px;
  width: 16px;
}
.splide__arrow--prev::before {
  transform: scale(-1, 1);
}
.splide__arrow:disabled {
  opacity: 0.5;
}
.splide__progress {
  background-color: #fff;
  border-radius: 5px;
}
.splide__progress-bar {
  background-color: var(--dark-color);
  border-radius: 5px;
  height: 6px;
  transition: width 1000ms ease;
  width: 0;
}

.slide-column__item {
  display: flex;
  flex-direction: column;
}
.slide-column__head {
  border-radius: 10px 10px 0 0;
  display: block;
  height: 210px;
  overflow: hidden;
  position: relative;
}
.slide-column__img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  width: 100%;
}
.slide-column__body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  flex: 1;
  padding: 20px 20px 25px;
}
.slide-column__info {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.slide-column__time {
  font-size: 12px;
}
.slide-column__link {
  display: block;
}
.slide-column__ttl {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.slide-column__txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.7;
  margin-top: 10px;
  overflow: hidden;
}

.slide-photo__figure {
  border-radius: 10px;
  height: 394px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .slide-photo__figure {
    height: 194px;
  }
}
.slide-photo__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.slide-photo__caption {
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .slide-photo__caption {
    font-size: 14px;
    padding: 8px 10px;
  }
}
.slide-photo .splide__arrows {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.slide-photo .splide__arrow {
  background-color: #fff;
  border: 1px solid var(--dark-color);
  bottom: 0;
  height: 60px;
  margin: auto;
  place-content: center;
  position: absolute;
  top: 0;
  width: 60px;
  z-index: 1;
}
.slide-photo .splide__arrow::before {
  background-image: url(/assets/img/ico-arrow-more.svg);
  height: 24px;
  width: 24px;
}
.slide-photo .splide__arrow--prev {
  left: 50%;
  margin-left: -380px;
}
@media (max-width: 767px) {
  .slide-photo .splide__arrow--prev {
    left: -10px;
    margin-left: 0;
  }
}
.slide-photo .splide__arrow--next {
  margin-right: -380px;
  right: 50%;
}
@media (max-width: 767px) {
  .slide-photo .splide__arrow--next {
    margin-right: 0;
    right: -10px;
  }
}

.thumbnail-photo {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .thumbnail-photo {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .thumbnail-photo .splide__list {
    flex-wrap: wrap;
    gap: 10px 0;
    justify-content: center;
  }
}
.thumbnail-photo__item {
  background-color: #000;
}
.thumbnail-photo__item:not(.is-active) .thumbnail-photo__img {
  opacity: 0.5;
}
.thumbnail-photo__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s;
  width: 100%;
}

@media (min-width: 768px) {
  .slide-teacher .splide__track {
    overflow: hidden;
  }
}
.slide-teacher__item {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #EBEBEB;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.slide-teacher__head {
  display: block;
  height: 304px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .slide-teacher__head {
    height: 194px;
  }
}
.slide-teacher__img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  width: 100%;
}
.slide-teacher__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px 20px 18px;
}
.slide-teacher__ttl {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 767px) {
  .slide-teacher__ttl {
    font-size: 18px;
  }
}
.slide-teacher__txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-block: 5px 15px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .slide-teacher__txt {
    -webkit-line-clamp: 4;
  }
}
.slide-teacher__info {
  border-top: 1px dashed var(--gray);
  margin-top: auto;
  padding-top: 12px;
}
.slide-teacher__name {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
}
.slide-teacher__name-lg {
  font-size: 20px;
}
.slide-teacher__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 8px;
}
.slide-teacher__subject {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  margin-top: 8px;
}
.slide-teacher .splide__progress {
  background-color: #EBEBEB;
}

@media (max-width: 767px) {
  .slide-result {
    padding-inline: 10px;
  }
}
@media (min-width: 768px) {
  .slide-result.is-initialized:not(.is-active) .splide__list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .slide-result.is-initialized:not(.is-active) .splide__list {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .slide-result .splide__slide {
    flex: 1 1 100%;
    max-width: 48%;
  }
}
.slide-result__item {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.slide-result__head {
  display: block;
  height: 260px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .slide-result__head {
    height: 240px;
  }
}
.slide-result__img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  width: 100%;
}
.slide-result__body {
  flex: 1;
  padding: 12px 20px 15px;
}
.slide-result__ttl {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@media (max-width: 767px) {
  .slide-result__ttl {
    font-size: 18px;
  }
}
.slide-result__info {
  border-top: 1px dashed var(--gray);
  margin-top: 12px;
  padding: 10px 60px 0;
  position: relative;
  text-align: center;
  z-index: 0;
}
@media (max-width: 767px) {
  .slide-result__info {
    padding-right: 40px;
  }
}
.slide-result__info::before {
  background: url(/assets/img/school-area/result-illust-goukaku.svg) center/contain no-repeat;
  content: "";
  height: 58px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 56px;
}
.slide-result__name {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
}
.slide-result__name-lg {
  font-size: 18px;
}
.slide-result__date {
  color: var(--dark-color);
  font-weight: var(--font-weight-medium);
}

@media (max-width: 767px) {
  .slide-building {
    padding-inline: 10px;
  }
}
@media (min-width: 768px) {
  .slide-building.is-initialized:not(.is-active) .splide__list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .slide-building.is-initialized:not(.is-active) .splide__list {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .slide-building .splide__slide {
    flex: 1 1 100%;
    max-width: 48%;
  }
}
.slide-building__item {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.slide-building__head {
  display: block;
  height: 260px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .slide-building__head {
    height: 240px;
  }
}
.slide-building__img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  width: 100%;
}
.slide-building__body {
  flex: 1;
  padding: 12px 20px 20px;
}
.slide-building__ttl {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@media (max-width: 767px) {
  .slide-building__ttl {
    font-size: 18px;
  }
}
.slide-building__info {
  border-top: 1px dashed var(--gray);
  margin-top: 15px;
  padding-top: 15px;
}
.slide-building__list {
  background: left 5px/14px no-repeat;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  padding-left: 24px;
}
.slide-building__list + .slide-building__list {
  margin-top: 4px;
}
.slide-building__list--pin {
  background-image: url(/assets/img/school-area/ico-building-pin.svg);
}
.slide-building__list--train {
  background-image: url(/assets/img/school-area/ico-building-train.svg);
}
.slide-building__list--clock {
  background-image: url(/assets/img/school-area/ico-building-clock.svg);
}

.sns {
  padding-top: 100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sns {
    padding-top: 60px;
  }
}
.sns__container {
  margin-inline: auto;
  max-width: 690px;
  padding-right: 345px;
  position: relative;
  width: 100%;
  z-index: 0;
  min-height: 210px;
}
@media (max-width: 767px) {
  .sns__container {
    min-height: 375px;
    padding: 0 0 230px;
  }
}
.sns .title {
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .sns .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.sns .title__txt {
  margin-bottom: 5px;
}
.sns__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
.sns__student {
  bottom: 0;
  pointer-events: none;
  position: absolute;
  right: -95px;
  z-index: -1;
}
@media (max-width: 767px) {
  .sns__student {
    left: 50%;
    margin-left: -187.5px;
    min-width: 375px;
    right: auto;
  }
}

.student {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .student {
    margin-top: 60px;
  }
}
.student__box {
  background-color: #fff;
  border-radius: 200px;
  border: 2px solid #4A54A3;
  box-shadow: 0 5px 0 #4A54A3;
  display: grid;
  gap: 48px;
  grid-template-columns: 360px 1fr;
  margin: 0 auto 5px;
  max-width: 1050px;
  padding: 20px 180px 20px 20px;
  position: relative;
}
@media (max-width: 991px) {
  .student__box {
    border-radius: 20px;
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.student__box::after {
  background: url(/assets/img/ico-arrow-more-white.svg) center/25% no-repeat var(--dark-color);
  border-radius: 50%;
  content: "";
  height: 70px;
  margin-top: -35px;
  position: absolute;
  right: 60px;
  top: 50%;
  width: 70px;
}
@media (max-width: 991px) {
  .student__box::after {
    height: 30px;
    background-size: 13px;
    right: 20px;
    top: 228px;
    width: 30px;
  }
}
.student__box-img {
  border-radius: 200px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .student__box-img {
    border-radius: 15px;
    height: 150px;
    width: 100%;
  }
}
.student__box-body {
  align-self: center;
  margin-top: -10px;
  text-align: center;
}
@media (max-width: 991px) {
  .student__box-body {
    margin-top: 0;
    text-align: left;
  }
}
.student__box-ttl {
  color: var(--dark-color);
  font-size: 32px;
  font-weight: var(--font-weight-black);
}
@media (max-width: 991px) {
  .student__box-ttl {
    font-size: 24px;
  }
}
.student__box-txt {
  margin-top: 10px;
}

.tabs {
  align-items: end;
  display: flex;
  gap: 2px;
}

.tab {
  background-color: var(--very-light-color);
  border-radius: 10px 10px 0 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  flex: 1;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  height: 50px;
  place-content: center;
}
@media (max-width: 767px) {
  .tab {
    font-size: 18px;
  }
}
.tab.is-active {
  background-color: var(--light-color);
  height: 60px;
}
@media (min-width: 768px) {
  .tab--lg {
    height: 70px;
  }
  .tab--lg.is-active {
    height: 80px;
  }
}

.table thead th {
  background-color: var(--dark-color);
  color: #fff;
  padding-block: 6px 7px;
  text-align: center;
}
.table thead th:not(:last-child) {
  border-right: 2px solid;
}
.table th,
.table td {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 20px;
}
@media (max-width: 767px) {
  .table th,
  .table td {
    padding: 10px;
  }
}
.table th.table__dashed,
.table td.table__dashed {
  border-style: dashed;
}
.table th.table__center,
.table td.table__center {
  padding-inline: 0;
  text-align: center;
}
.table th[rowspan],
.table td[rowspan] {
  vertical-align: middle;
}
.table th {
  background-color: #EEF2FF;
  font-weight: var(--font-weight-bold);
}
.table th:first-child {
  width: 100px;
}
@media (max-width: 767px) {
  .table th:first-child {
    width: 90px;
  }
}
.table td {
  background-color: #fff;
}
.table p {
  margin-top: 0.7em;
}
.table--sm th,
.table--sm td {
  padding-block: 12px;
}
@media (max-width: 767px) {
  .table--sm th,
  .table--sm td {
    padding-block: 8px;
  }
}
.table--sm th:first-child {
  width: 90px;
}
@media (max-width: 767px) {
  .table--sm th:first-child {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .table--lg th,
  .table--lg td {
    padding-block: 15px;
  }
}

@media (max-width: 991px) {
  .table-scroll .table {
    min-width: 1040px;
  }
}
.table-scroll .scroll-hint-icon {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  left: 50%;
  padding: 20px 30px 15px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
}
.table-scroll .scroll-hint-text {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
}
.table-scroll--sm .scroll-hint-icon {
  padding: 15px 30px 15px 60px;
  width: 180px;
}
.table-scroll--sm .scroll-hint-icon::before {
  left: 15px;
  position: absolute;
  top: 20px;
}
.table-scroll--sm .scroll-hint-icon::after {
  left: 35px;
}
.table-scroll--sm .scroll-hint-text {
  margin-top: 0;
}

.tag {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  padding: 2px 20px 3px;
}
@media (max-width: 767px) {
  .tag {
    padding-inline: 10px;
  }
}
.tag--column {
  border-radius: 100px;
  background-color: var(--main-color);
  color: #fff;
}
.tag--news {
  background-color: var(--light-color);
  border-radius: 5px;
  color: #fff;
}
.tag--border-red {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid;
  color: var(--red);
  padding-block: 1px 2px;
}
.tag--border-light {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid;
  color: var(--light-color);
  padding-block: 1px 2px;
}
.tag--elementary {
  background-color: var(--elementary-color);
  border-radius: 100px;
  color: #fff;
}
.tag--jrhighschool {
  background-color: var(--jrhighschool-color);
  border-radius: 100px;
  color: #fff;
}
.tag--highschool {
  background-color: var(--highschool-color);
  border-radius: 100px;
  color: #fff;
}
.tag--kokugo {
  background-color: var(--kokugo-color);
  border-radius: 5px;
  color: #fff;
  padding-block: 1px 2px;
}
.tag--sansuu {
  background-color: var(--sansuu-color);
  border-radius: 5px;
  color: #fff;
  padding-block: 1px 2px;
}
.tag--rika {
  background-color: var(--rika-color);
  border-radius: 5px;
  color: #fff;
  padding-block: 1px 2px;
}
.tag--syakai {
  background-color: var(--syakai-color);
  border-radius: 5px;
  color: #fff;
  padding-block: 1px 2px;
}
.tag--eigo {
  background-color: var(--eigo-color);
  border-radius: 5px;
  color: #fff;
  padding-block: 1px 2px;
}
.tag--tekisei {
  background-color: var(--tekisei-color);
  border-radius: 5px;
  color: #fff;
  padding-block: 1px 2px;
}

.tel {
  background: url(/assets/img/tel.svg) center/contain no-repeat;
  display: block;
  height: 26px;
  width: 235px;
}
.tel--white {
  background-image: url(/assets/img/tel-white.svg);
}

.title {
  color: var(--dark-color);
  font-size: 40px;
  font-weight: var(--font-weight-black);
  line-height: 1.46;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .title {
    font-size: 30px;
    line-height: 1.27;
    margin-bottom: 40px;
  }
}
.title::before {
  color: var(--main-color);
  content: attr(data-en);
  display: block;
  font-size: 20px;
}
@media (max-width: 767px) {
  .title::before {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.title__txt {
  display: block;
  font-size: 20px;
}
@media (max-width: 767px) {
  .title__txt {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.title--tip::before {
  content: none;
}
.title--tip .title__txt {
  align-items: center;
  color: var(--dark-color);
  display: flex;
  gap: 12px;
  justify-content: center;
}
.title--tip .title__txt::before, .title--tip .title__txt::after {
  background-color: var(--dark-color);
  border-radius: 2px;
  content: "";
  height: 20px;
  margin-bottom: -2px;
  width: 2px;
}
.title--tip .title__txt::before {
  transform: rotate(-40deg);
}
.title--tip .title__txt::after {
  transform: rotate(40deg);
}
.title--ja::before {
  content: none;
}
.title--logo::before {
  content: none;
}
.title--logo .title__logo {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 5px;
}
.title--logo .title__logo::before {
  background: url(/assets/img/logo-type.svg) center/contain no-repeat;
  content: "";
  height: 23px;
  width: 130px;
}
@media (max-width: 767px) {
  .title--logo .title__logo::before {
    height: 20px;
    width: 112px;
  }
}
.title--logo .title__logo-tag {
  background-color: var(--light-color);
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  padding: 0 10px 2px;
}
@media (max-width: 767px) {
  .title--logo .title__logo-tag {
    display: none;
  }
}
.title--logo .title__logo-school {
  color: var(--main-color);
  font-size: 20px;
  font-weight: var(--font-weight-black);
  margin-top: -3px;
}
@media (max-width: 767px) {
  .title--logo .title__logo-school {
    display: none;
  }
}

.title-dashed {
  border-bottom: 1px dashed var(--gray);
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-black);
  line-height: 1.46;
  margin-bottom: 40px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .title-dashed {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
}

.title-h3 {
  background-color: var(--light-color);
  color: #fff;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 1.46;
  margin-block: 60px 20px;
  padding: 11px 30px 12px;
}
@media (max-width: 767px) {
  .title-h3 {
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
    padding: 10px 10px 11px;
  }
}

.title-h4 {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  margin-block: 30px;
}
@media (max-width: 767px) {
  .title-h4 {
    font-size: 18px;
    margin-block: 20px;
  }
}

[data-animation=fade-up] {
  opacity: 0;
  transform: translateY(30%) scale(1.5, 0.5);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0, 2.05, 0.59, 1.01);
}
.u-animation.is-show [data-animation=fade-up] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animation=fade-down] {
  opacity: 0;
  transform: translateY(-30%) scale(1.5, 0.5);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0, 2.05, 0.59, 1.01);
}
.u-animation.is-show [data-animation=fade-down] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animation-delay=lv1] {
  transition-delay: 0.3s;
}

[data-animation-delay=lv2] {
  transition-delay: 0.6s;
}

.u-bg-kokugo {
  background-color: var(--kokugo-color);
}
.u-bg-sansuu, .u-bg-suugaku {
  background-color: var(--sansuu-color);
}
.u-bg-rika {
  background-color: var(--rika-color);
}
.u-bg-syakai {
  background-color: var(--syakai-color);
}
.u-bg-eigo {
  background-color: var(--eigo-color);
}

.u-container {
  margin: 0 auto;
  max-width: var(--site-width);
  padding-inline: var(--site-padding);
  width: 100%;
}
.u-container--sm {
  max-width: var(--site-width-sm);
}

.u-list li {
  line-height: 1.6;
  padding-left: 15px;
  position: relative;
}
.u-list li + li {
  margin-top: 4px;
}
.u-list li::before {
  background-color: var(--light-color);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 11px;
  width: 5px;
}

.u-fs-sm {
  font-size: var(--font-small);
}

.u-fw-medium {
  font-weight: var(--font-weight-medium) !important;
}
.u-fw-bold {
  font-weight: var(--font-weight-bold) !important;
}
.u-fw-black {
  font-weight: var(--font-weight-black) !important;
}

.u-color-red {
  color: var(--red);
}
.u-color-dark {
  color: var(--dark-color);
}

.u-marker-yellow {
  background-image: linear-gradient(transparent 75%, var(--yellow) 75%);
}

.u-text-center {
  text-align: center;
}

.u-margin-top0 {
  margin-top: 0px;
}
.u-margin-top5 {
  margin-top: 5px;
}
.u-margin-top10 {
  margin-top: 10px;
}
.u-margin-top15 {
  margin-top: 15px;
}
.u-margin-top20 {
  margin-top: 20px;
}
.u-margin-top25 {
  margin-top: 25px;
}
.u-margin-top30 {
  margin-top: 30px;
}/*# sourceMappingURL=main.css.map */