@charset "UTF-8";
/* 上向き ▲ */
/* 右向き ▶︎ */
/* 下向き ▼ */
/* 左向き ◀︎ */
:root {
  --font-default: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", serif;
  --font-zen-maru: "Zen Maru Gothic", serif;
  --color-text: #333;
  --color-kamazawa: #8C6EAA;
  --color-brown: #80461B;
  --color-red: #A82745;
  --color-orange: #FF9429;
  --width-max-content: 1020px;
  --gradient-button: linear-gradient(135deg, #9f98f2 18%,#f59cab 68%,#f59cab 68%,#ff889b 100%);
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.montserrat-medium {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* -----------------------
  COMMON
 ------------------------- */
html {
  background-color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 768px), print {
  html {
    font-size: 15px;
  }
}

body {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  position: relative;
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

article, aside, audio, blockquote, body, canvas, caption, dd, details, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, iframe, legend, li, nav, ol, p, section, ul, video {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

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

:focus {
  outline: none;
}

.scroll-prevent {
  overflow: hidden;
}

*, article {
  box-sizing: border-box;
}

.scroll_fadein {
  opacity: 0;
  transform: translate(0, 15%);
  transition: all 1s;
}
.scroll_fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll_from_left {
  opacity: 0;
  transform: translate(-15%, 0);
  transition: all 1s;
}
.scroll_from_left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll_from_right {
  opacity: 0;
  transform: translate(15%, 0);
  transition: all 1s;
}
.scroll_from_right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* -----------------------
  LAYOUT
 ------------------------- */
.section-inner {
  position: relative;
  margin: auto;
  padding: 50px 20px;
}
@media screen and (min-width: 768px), print {
  .section-inner {
    padding: 50px 20px;
  }
}
@media screen and (min-width: 1080px) {
  .section-inner {
    width: 100%;
    max-width: var(--width-max-content);
    margin-left: auto;
    margin-right: auto;
    padding: 70px 20px;
  }
}

/* -----------------------
　　PARTS
-------------------------- */
a {
  color: #0C2343;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1080px) {
  a:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a[href^="tel:"]:not(.none-icon) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
@media screen and (min-width: 768px), print {
  a[href^="tel:"]:not(.none-icon) {
    display: inline-flex;
  }
}
a[href^="tel:"]:not(.none-icon):before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../img/ico_tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
a[href^="tel:"]:not(.none-icon).text-small:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/ico_tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  a[target^=_blank]:not(.none-icon), a[href^="mailto:"]:not(.none-icon), a.open-modal {
    position: relative;
    padding-right: 3em;
  }
}
a[target^=_blank]:not(.none-icon):after, a[href^="mailto:"]:not(.none-icon):after, a.open-modal:after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  background-image: url(../img/ico_external_link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1080px) {
  a[target^=_blank]:not(.none-icon):after, a[href^="mailto:"]:not(.none-icon):after, a.open-modal:after {
    right: 25px;
  }
}

.alignright {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 2rem;
  }
}

.alignleft {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
}

.aligncenter {
  text-align: center;
}
.aligncenter > * {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.textleft {
  text-align: left;
}

.textright {
  text-align: right;
}

.textcenter {
  text-align: center;
}

@media screen and (min-width: 1400px) {
  .only-sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block !important;
  }
}

@media screen and (min-width: 768px), print {
  .only-sptab {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .only-sptab {
    display: block !important;
  }
}
@media screen and (min-width: 1080px) {
  .only-sptab {
    display: none !important;
  }
}

@media screen and (min-width: 1080px) {
  .only-pc {
    display: block !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .flex > * + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .flex {
    display: flex;
    flex-wrap: nowrap;
  }
}
.flex .col1 > * {
  width: 90%;
}
.flex .col2 > * {
  width: 45%;
}
.flex .col3 > * {
  width: 30%;
}
.flex .col4 > * {
  width: 22.5%;
}
.flex .col5 > * {
  width: 18%;
}
.flex .col6 > * {
  width: 15%;
}
.flex.column {
  flex-direction: column;
}
.flex.reverse {
  flex-direction: row-reverse;
}
.flex.flex-wrap {
  flex-wrap: wrap;
}
.flex.between {
  justify-content: space-between;
}
.flex.center {
  justify-content: center;
}
.flex.right {
  justify-content: flex-end;
}
.flex.around {
  justify-content: space-around;
}
.flex.top {
  align-items: flex-start;
}
.flex.middle {
  align-items: center;
}
.flex.bottom {
  align-items: flex-end;
}
.flex.sp-valid {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex.sp-valid > * + * {
    margin-top: 0;
  }
}

.emoji {
  font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", "Noto Emoji";
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.w0 {
  width: 0% !important;
}

@media screen and (max-width: 767px) {
  .sp-w0 {
    width: 0% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w0 {
    width: 0% !important;
  }
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.w5 {
  width: 5% !important;
}

@media screen and (max-width: 767px) {
  .sp-w5 {
    width: 5% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w5 {
    width: 5% !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.w10 {
  width: 10% !important;
}

@media screen and (max-width: 767px) {
  .sp-w10 {
    width: 10% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w10 {
    width: 10% !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.w15 {
  width: 15% !important;
}

@media screen and (max-width: 767px) {
  .sp-w15 {
    width: 15% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w15 {
    width: 15% !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.w20 {
  width: 20% !important;
}

@media screen and (max-width: 767px) {
  .sp-w20 {
    width: 20% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w20 {
    width: 20% !important;
  }
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.w25 {
  width: 25% !important;
}

@media screen and (max-width: 767px) {
  .sp-w25 {
    width: 25% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w25 {
    width: 25% !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.w30 {
  width: 30% !important;
}

@media screen and (max-width: 767px) {
  .sp-w30 {
    width: 30% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w30 {
    width: 30% !important;
  }
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.w35 {
  width: 35% !important;
}

@media screen and (max-width: 767px) {
  .sp-w35 {
    width: 35% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w35 {
    width: 35% !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.w40 {
  width: 40% !important;
}

@media screen and (max-width: 767px) {
  .sp-w40 {
    width: 40% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w40 {
    width: 40% !important;
  }
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.w45 {
  width: 45% !important;
}

@media screen and (max-width: 767px) {
  .sp-w45 {
    width: 45% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w45 {
    width: 45% !important;
  }
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.w50 {
  width: 50% !important;
}

@media screen and (max-width: 767px) {
  .sp-w50 {
    width: 50% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w50 {
    width: 50% !important;
  }
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.w55 {
  width: 55% !important;
}

@media screen and (max-width: 767px) {
  .sp-w55 {
    width: 55% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w55 {
    width: 55% !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.w60 {
  width: 60% !important;
}

@media screen and (max-width: 767px) {
  .sp-w60 {
    width: 60% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w60 {
    width: 60% !important;
  }
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.w65 {
  width: 65% !important;
}

@media screen and (max-width: 767px) {
  .sp-w65 {
    width: 65% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w65 {
    width: 65% !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.w70 {
  width: 70% !important;
}

@media screen and (max-width: 767px) {
  .sp-w70 {
    width: 70% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w70 {
    width: 70% !important;
  }
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.w75 {
  width: 75% !important;
}

@media screen and (max-width: 767px) {
  .sp-w75 {
    width: 75% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w75 {
    width: 75% !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.w80 {
  width: 80% !important;
}

@media screen and (max-width: 767px) {
  .sp-w80 {
    width: 80% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w80 {
    width: 80% !important;
  }
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.w85 {
  width: 85% !important;
}

@media screen and (max-width: 767px) {
  .sp-w85 {
    width: 85% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w85 {
    width: 85% !important;
  }
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.w90 {
  width: 90% !important;
}

@media screen and (max-width: 767px) {
  .sp-w90 {
    width: 90% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w90 {
    width: 90% !important;
  }
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.w95 {
  width: 95% !important;
}

@media screen and (max-width: 767px) {
  .sp-w95 {
    width: 95% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w95 {
    width: 95% !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.w100 {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .sp-w100 {
    width: 100% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w100 {
    width: 100% !important;
  }
}

.gap0 {
  gap: 0px;
}

.row-gap0 {
  row-gap: 0px;
}

.column-gap0 {
  column-gap: 0px;
}

.gap5 {
  gap: 5px;
}

.row-gap5 {
  row-gap: 5px;
}

.column-gap5 {
  column-gap: 5px;
}

.gap10 {
  gap: 10px;
}

.row-gap10 {
  row-gap: 10px;
}

.column-gap10 {
  column-gap: 10px;
}

.gap15 {
  gap: 15px;
}

.row-gap15 {
  row-gap: 15px;
}

.column-gap15 {
  column-gap: 15px;
}

.gap20 {
  gap: 20px;
}

.row-gap20 {
  row-gap: 20px;
}

.column-gap20 {
  column-gap: 20px;
}

.gap25 {
  gap: 25px;
}

.row-gap25 {
  row-gap: 25px;
}

.column-gap25 {
  column-gap: 25px;
}

.gap30 {
  gap: 30px;
}

.row-gap30 {
  row-gap: 30px;
}

.column-gap30 {
  column-gap: 30px;
}

.gap35 {
  gap: 35px;
}

.row-gap35 {
  row-gap: 35px;
}

.column-gap35 {
  column-gap: 35px;
}

.gap40 {
  gap: 40px;
}

.row-gap40 {
  row-gap: 40px;
}

.column-gap40 {
  column-gap: 40px;
}

.gap45 {
  gap: 45px;
}

.row-gap45 {
  row-gap: 45px;
}

.column-gap45 {
  column-gap: 45px;
}

.gap50 {
  gap: 50px;
}

.row-gap50 {
  row-gap: 50px;
}

.column-gap50 {
  column-gap: 50px;
}

.gap55 {
  gap: 55px;
}

.row-gap55 {
  row-gap: 55px;
}

.column-gap55 {
  column-gap: 55px;
}

.gap60 {
  gap: 60px;
}

.row-gap60 {
  row-gap: 60px;
}

.column-gap60 {
  column-gap: 60px;
}

.gap65 {
  gap: 65px;
}

.row-gap65 {
  row-gap: 65px;
}

.column-gap65 {
  column-gap: 65px;
}

.gap70 {
  gap: 70px;
}

.row-gap70 {
  row-gap: 70px;
}

.column-gap70 {
  column-gap: 70px;
}

.gap75 {
  gap: 75px;
}

.row-gap75 {
  row-gap: 75px;
}

.column-gap75 {
  column-gap: 75px;
}

.gap80 {
  gap: 80px;
}

.row-gap80 {
  row-gap: 80px;
}

.column-gap80 {
  column-gap: 80px;
}

.gap85 {
  gap: 85px;
}

.row-gap85 {
  row-gap: 85px;
}

.column-gap85 {
  column-gap: 85px;
}

.gap90 {
  gap: 90px;
}

.row-gap90 {
  row-gap: 90px;
}

.column-gap90 {
  column-gap: 90px;
}

.gap95 {
  gap: 95px;
}

.row-gap95 {
  row-gap: 95px;
}

.column-gap95 {
  column-gap: 95px;
}

.gap100 {
  gap: 100px;
}

.row-gap100 {
  row-gap: 100px;
}

.column-gap100 {
  column-gap: 100px;
}

.fz0 {
  font-size: 0px !important;
}

.fz1 {
  font-size: 1px !important;
}

.fz2 {
  font-size: 2px !important;
}

.fz3 {
  font-size: 3px !important;
}

.fz4 {
  font-size: 4px !important;
}

.fz5 {
  font-size: 5px !important;
}

.fz6 {
  font-size: 6px !important;
}

.fz7 {
  font-size: 7px !important;
}

.fz8 {
  font-size: 8px !important;
}

.fz9 {
  font-size: 9px !important;
}

.fz10 {
  font-size: 10px !important;
}

.fz11 {
  font-size: 11px !important;
}

.fz12 {
  font-size: 12px !important;
}

.fz13 {
  font-size: 13px !important;
}

.fz14 {
  font-size: 14px !important;
}

.fz15 {
  font-size: 15px !important;
}

.fz16 {
  font-size: 16px !important;
}

.fz17 {
  font-size: 17px !important;
}

.fz18 {
  font-size: 18px !important;
}

.fz19 {
  font-size: 19px !important;
}

.fz20 {
  font-size: 20px !important;
}

.fz21 {
  font-size: 21px !important;
}

.fz22 {
  font-size: 22px !important;
}

.fz23 {
  font-size: 23px !important;
}

.fz24 {
  font-size: 24px !important;
}

.fz25 {
  font-size: 25px !important;
}

.fz26 {
  font-size: 26px !important;
}

.fz27 {
  font-size: 27px !important;
}

.fz28 {
  font-size: 28px !important;
}

.fz29 {
  font-size: 29px !important;
}

.fz30 {
  font-size: 30px !important;
}

.fz31 {
  font-size: 31px !important;
}

.fz32 {
  font-size: 32px !important;
}

.fz33 {
  font-size: 33px !important;
}

.fz34 {
  font-size: 34px !important;
}

.fz35 {
  font-size: 35px !important;
}

.fz36 {
  font-size: 36px !important;
}

.fz37 {
  font-size: 37px !important;
}

.fz38 {
  font-size: 38px !important;
}

.fz39 {
  font-size: 39px !important;
}

.fz40 {
  font-size: 40px !important;
}

.fz41 {
  font-size: 41px !important;
}

.fz42 {
  font-size: 42px !important;
}

.fz43 {
  font-size: 43px !important;
}

.fz44 {
  font-size: 44px !important;
}

.fz45 {
  font-size: 45px !important;
}

.fz46 {
  font-size: 46px !important;
}

.fz47 {
  font-size: 47px !important;
}

.fz48 {
  font-size: 48px !important;
}

.fz49 {
  font-size: 49px !important;
}

.fz50 {
  font-size: 50px !important;
}

.fz-reset {
  font-size: 1rem !important;
}

.lineheight1 {
  line-height: 1;
}

.lineheight2 {
  line-height: 2;
}

.breadcrumb {
  background-color: #eef5ff;
}
.breadcrumb ul {
  padding: 5px 20px;
}
.breadcrumb ul li {
  display: inline-block;
  font-size: 0.875rem;
}
.breadcrumb ul li:after {
  content: ">";
  display: inline-block;
  margin-right: 7px;
  color: #666666;
}
.breadcrumb ul li:last-child:after {
  display: none;
}
.breadcrumb ul li a {
  display: inline-block;
  margin-right: 7px;
}

.marker {
  padding: 0;
  background: linear-gradient(transparent 70%, var(--color-marker) 40%);
}
.marker.full {
  background: linear-gradient(var(--color-marker) 0%, var(--color-marker) 100%);
}

:root {
  --width-max-content: 1064px;
}

body {
  background-color: #F7F5F5;
}
body .particles {
  z-index: 10;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px), print {
  .accordion {
    gap: 20px;
  }
}
.accordion-box {
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
  padding: 20px;
  transition: all 0.5s;
}
@media screen and (min-width: 1080px) {
  .accordion-box {
    border-radius: 54px;
    padding: 25px 45px;
  }
}
.accordion-box.open .accordion-button .ico-plus:after {
  transform: translate(-50%, -50%) rotate(0);
}
.accordion-box a:not([class]):not([href^="tel:"]), .accordion-box a.none-icon {
  color: #62448D;
  text-decoration: underline;
}
.accordion-button {
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.accordion-button h3 {
  text-align: left;
  color: #000;
  font-size: 17px;
  font-family: var(--font-zen-maru);
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .accordion-button h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-button .ico-plus {
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media screen and (min-width: 768px), print {
  .accordion-button .ico-plus {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(15px, -50%);
  }
}
@media screen and (min-width: 1080px) {
  .accordion-button .ico-plus {
    right: 0;
  }
}
.accordion-content {
  display: none;
}
.accordion-content > * {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.733333;
}
@media screen and (min-width: 768px), print {
  .accordion-content > * {
    margin-top: 25px;
    font-size: 15px;
  }
}
.accordion-content > .table-scroll {
  margin-top: 15px;
}
.accordion-content h4 {
  background-color: #E5F1F6;
  padding: 7px 12px;
  color: #39629A;
  line-height: 1.4;
  border-radius: 5px;
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: 15px;
}
@media screen and (min-width: 768px), print {
  .accordion-content h4 {
    padding: 7px 18px;
    font-size: 20px;
  }
}
.accordion-content h4.large {
  color: #fff;
  background-color: #39629A;
  text-align: center;
  font-size: 18px;
  padding: 7px 10px;
  border-radius: 5px;
}
@media screen and (min-width: 768px), print {
  .accordion-content h4.large {
    font-size: 23px;
  }
}
.accordion-content p small {
  display: inline-block;
  line-height: 1.4;
}
.accordion-content .button-list a {
  flex-basis: 47%;
}

.faq {
  line-height: 1.4;
}
.faq dt {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 700;
  min-height: 27px;
}
@media screen and (min-width: 768px), print {
  .faq dt {
    font-size: 16px;
  }
}
.faq dt:before {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background-image: url(../img/ico_q.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-3px);
}
.faq dd {
  position: relative;
  padding-left: 35px;
  font-size: 13px;
  min-height: 27px;
}
@media screen and (min-width: 768px), print {
  .faq dd {
    font-size: 15px;
  }
}
.faq dd:before {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background-image: url(../img/ico_a.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-3px);
}

.function {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.function a, .function span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .table-scroll {
    overflow-x: scroll;
    padding: 10px 0;
  }
}

table {
  min-width: 100%;
  border: 1px solid #E0E0E0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}
table caption {
  margin-bottom: 0.5em;
  color: #39629A;
  font-weight: 700;
  text-align: left;
  font-size: 15px;
}
@media screen and (min-width: 768px), print {
  table caption {
    font-size: 17px;
  }
}
table tr th {
  background-color: #39629A;
  color: #fff;
  border-right: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  font-weight: 700;
  padding: 12px 20px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  table tr th {
    white-space: nowrap;
    padding: 10px 5px 10px 10px;
  }
}
table tr td {
  border-right: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  font-weight: 700;
  padding: 12px 20px;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 767px) {
  table tr td {
    white-space: nowrap;
    padding: 10px 5px 10px 10px;
  }
}
table tbody tr > :last-child, table thead tr > :last-child {
  border-right: none;
}
table tbody tr:last-child td, table thead tr:last-child td {
  border-bottom: none;
}
table tbody tr .border-right, table thead tr .border-right {
  border-right: 1px solid #E0E0E0;
}
table.text-small tr th {
  font-size: 13px;
}
@media screen and (min-width: 768px), print {
  table.text-small tr td {
    font-size: 14px;
  }
}
table.text-xs-small tr th, table.text-xs-small tr td {
  font-size: 12px;
  padding: 12px 5px;
}

.summary {
  padding-left: 24px;
}
@media screen and (min-width: 768px), print {
  .summary {
    padding-left: 30px;
  }
}
.summary dt {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .summary dt {
    font-size: 17px;
  }
}
.summary dt:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #C75483;
  position: absolute;
  top: 0.25em;
  left: 0;
  transform: translateX(-24px);
}
@media screen and (min-width: 768px), print {
  .summary dt:before {
    width: 22px;
    height: 22px;
    transform: translateX(-30px);
  }
}

.step-komashelf {
  width: calc(100% - 40px);
  background: linear-gradient(135deg, #879dd9 0%, #4bb3cc 100%);
  border-radius: 25px;
  margin: 35px auto 0;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
  position: relative;
}
@media screen and (min-width: 1080px) {
  .step-komashelf {
    width: calc(100% - 90px);
    margin: 80px auto 0 45px;
    padding: 50px 80px;
  }
}
.step-komashelf h3 {
  color: #fff;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-zen-maru);
  font-weight: 700;
  gap: 5px;
}
@media screen and (min-width: 1080px) {
  .step-komashelf h3 {
    font-size: 44px;
    margin-bottom: 20px;
  }
}
.step-komashelf h3 strong {
  font-size: 1.45em;
}
.step-komashelf h3 small {
  font-size: 0.54em;
  transform: translateY(60%);
}
@media screen and (min-width: 768px), print {
  .step-komashelf h3 small {
    transform: translateY(50%);
  }
}
.step-komashelf h3 .balloon {
  display: inline-block;
  background-color: #fff;
  position: relative;
  color: #39629A;
  font-size: 16px;
  text-align: center;
  padding: 0.3em 1em;
  border-radius: 25px;
}
@media screen and (min-width: 768px), print {
  .step-komashelf h3 .balloon {
    font-size: 19px;
    padding: 0.6em 3em;
  }
}
.step-komashelf h3 .balloon:after {
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 95%);
}
.step-komashelf h3 + .lead {
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .step-komashelf h3 + .lead {
    font-size: 18px;
  }
}
.step-komashelf .parts.illust01 {
  display: none;
}
@media screen and (min-width: 1080px) {
  .step-komashelf .parts.illust01 {
    display: block;
    top: 0;
    left: calc(50% + 420px);
    transform: translate(0, -30%);
  }
}
.step-komashelf .parts.illust02 {
  bottom: 0;
  left: 0;
  transform: translate(-30%, 75%);
}
@media screen and (min-width: 1080px) {
  .step-komashelf .parts.illust02 {
    left: calc(50% - 630px);
    transform: translate(0, 40%);
  }
}
@media screen and (max-width: 767px) {
  .step-komashelf .parts.illust02 {
    display: none;
  }
}
.step-komashelf .komashelf-detail {
  max-width: var(--width-max-content);
  background-image: url(../img/admission/bg_06_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  margin: 30px auto;
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .step-komashelf .komashelf-detail {
    background-image: url(../img/admission/bg_06.jpg);
  }
}
.step-komashelf .komashelf-detail > .flex {
  background-image: url(../img/admission/bg_07_sp.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 20px;
}
@media screen and (min-width: 768px), print {
  .step-komashelf .komashelf-detail > .flex {
    background-image: url(../img/admission/bg_07.png);
  }
}
@media screen and (min-width: 1080px) {
  .step-komashelf .komashelf-detail > .flex {
    padding: 45px 70px 20px 45px;
  }
}
.step-komashelf .komashelf-detail > .flex .img {
  flex-basis: 40%;
}
@media screen and (min-width: 1080px) {
  .step-komashelf .komashelf-detail > .flex .img {
    max-width: 390px;
  }
}
.step-komashelf .komashelf-detail > .flex .text {
  flex-basis: 55%;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .step-komashelf .komashelf-detail > .flex .text {
    max-width: 390px;
  }
}
.step-komashelf .komashelf-detail h4 {
  margin-bottom: 0.8em;
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: 17px;
}
@media screen and (min-width: 768px), print {
  .step-komashelf .komashelf-detail h4 {
    font-size: 30px;
  }
}
.step-komashelf .komashelf-detail h4 + p {
  font-size: 12px;
}
@media screen and (min-width: 768px), print {
  .step-komashelf .komashelf-detail h4 + p {
    font-size: 15px;
  }
}
.step-komashelf .komashelf-detail .badge {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  max-width: 184px;
}
@media screen and (max-width: 767px) {
  .step-komashelf .komashelf-detail .badge {
    width: 30vw;
    right: 0;
    top: -10px;
    transform: translate(30%, -5%);
  }
}
.step-komashelf .komashelf-detail .qrcode {
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step-komashelf .komashelf-detail .qrcode {
    gap: 15px;
    justify-content: center;
  }
}
.step-komashelf .komashelf-detail .qrcode > div:not([class]) {
  max-width: 150px;
  text-align: center;
}
.step-komashelf .komashelf-detail .qrcode > div:not([class]) img {
  max-width: 120px;
}
.step-komashelf .komashelf-detail .qrcode > div:not([class]) strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .step-komashelf .komashelf-detail .qrcode > div:not([class]) strong {
    font-size: 11px;
  }
}
.step-komashelf .komashelf-detail .qrcode > div:not([class]) strong:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 7.8px;
  background-color: #9F98F2;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.step-komashelf .komashelf-detail .btn-normal {
  width: 100%;
}
.step-komashelf .komashelf-detail .com-box-01 {
  border-radius: 0 0 30px 30px;
}
@media screen and (min-width: 1080px) {
  .step-komashelf .komashelf-detail .com-box-01 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* ------------------
   CONTENTS
------------------ */
.secondary-fv {
  background-image: url(../img/admission/page_header.png);
}
@media screen and (max-width: 767px) {
  .secondary-fv h1 {
    margin-bottom: 50px;
  }
}
.secondary-fv h1 span:after {
  content: "";
  display: block;
  background-image: url(../img/admission/text_admission.svg);
  width: 40vw;
  height: 10.5vw;
  bottom: 0;
  right: 0;
  transform: translate(80%, 20%);
}
@media screen and (min-width: 768px), print {
  .secondary-fv h1 span:after {
    width: 259px;
    height: 68px;
    bottom: 0;
    left: 50%;
    transform: translate(15%, 47%);
  }
}
.secondary-fv .parts.sakura01 {
  top: 50%;
  left: 0;
  transform: translate(-150%, 0);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura01 {
    display: none;
  }
}
.secondary-fv .parts.sakura02 {
  top: 0;
  left: 35%;
  transform: translate(0, 100%);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura02 {
    display: none;
  }
}
.secondary-fv .parts.sakura03 {
  top: 0;
  right: 0;
  transform: translate(80%, 50%);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura03 {
    display: none;
  }
}
.secondary-fv .parts.sakura04 {
  top: 50%;
  right: 0;
  transform: translate(300%, 0);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura04 {
    display: none;
  }
}
.secondary-fv .parts.sakura05 {
  top: 50%;
  right: 0;
  transform: translate(-50%, 120%) rotate(9deg);
}
@media screen and (min-width: 768px), print {
  .secondary-fv .parts.sakura05 {
    transform: translate(-220%, 80%) rotate(9deg);
  }
}

.step {
  background-color: #F7F5F5;
  background-image: url(../img/admission/bg_03.png);
  background-position: top center;
  padding-top: 60px;
  margin-top: -150px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .steps {
    flex-wrap: wrap;
    row-gap: 30px;
  }
}
.step-item {
  flex-basis: 48%;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 0 0 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .step-item {
    flex-basis: 15.5%;
  }
}
.step-item .label {
  transform: translateY(-20%);
}
.step-item .ttl {
  font-size: 14px;
  height: 3em;
}
.step-item .term {
  width: calc(100% - 40px);
  background-color: #F2F2F2;
  border-radius: 20px;
  font-size: 12px;
  padding: 0.3em;
  margin: 15px auto 0;
}
.step .section-inner {
  padding-bottom: 20vw;
}
@media screen and (min-width: 768px), print {
  .step .section-inner {
    padding-bottom: 200px;
  }
}
.step .parts.sakura {
  right: 0;
  top: 0;
  width: 50px;
  transform: translate(100%, 300%);
}

.step1 {
  background-image: url(../img/admission/bg_19.png), url(../img/admission/bg_05.jpg);
  background-position: top 80px center, top center;
  background-repeat: repeat-y, repeat;
  background-size: 1000px auto;
  position: relative;
  z-index: 10;
  padding-bottom: 55px;
}
@media screen and (min-width: 768px), print {
  .step1 {
    background-size: 1400px auto;
  }
}
.step1:before {
  content: "";
  display: block;
  width: 100vw;
  height: 13vw;
  background-image: url(../img/admission/bg_04.png);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 1000px 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media screen and (min-width: 768px), print {
  .step1:before {
    background-size: 100% 100%;
  }
}
.step1 .section-inner {
  padding-top: 30px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  .step1 .section-inner {
    padding-top: 0;
  }
}
.step1 .information-box {
  margin-bottom: 20px;
}
.step1 .parts.illust09 {
  transform: translate(-30%, -60%);
}
@media screen and (max-width: 767px) {
  .step1 .parts.illust09 {
    width: 25vw;
  }
}
@media screen and (min-width: 768px), print {
  .step1 .parts.illust09 {
    top: 0;
    left: 0;
    transform: translate(-10%, -60%);
  }
}

.step2 {
  background-image: url(../img/admission/bg_09.png), url(../img/admission/bg_08.png);
  background-position: top center;
  background-repeat: no-repeat, repeat;
  background-size: 1823px auto, auto;
}
.step2 .section-inner {
  padding-bottom: 130px;
}
@media screen and (min-width: 1080px) {
  .step2 .section-inner {
    padding-bottom: 130px;
  }
}
.step2 .flex .img {
  flex-basis: 46.2%;
}
@media screen and (max-width: 767px) {
  .step2 .flex .img {
    margin-bottom: 40px;
  }
}
.step2 .flex .img-inner {
  margin-left: -20px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .step2 .flex .img-inner {
    margin-left: calc((100vw - (var(--width-max-content) - 40px)) / 2 * -1);
  }
}
.step2 .flex .img-inner > img {
  border-radius: 0 30px 30px 0;
}
.step2 .flex .text {
  flex-basis: 45%;
}
.step2 .flex .text .com-ttl-06 .term {
  text-align: left;
}
.step2 .flex .text .com-ttl-06 + p {
  margin-bottom: 1.2em;
}
@media screen and (min-width: 1080px) {
  .step2 .flex .text .com-ttl-06 + p {
    font-size: 18px;
    line-height: 2.5;
  }
}
@media screen and (min-width: 1080px) {
  .step2 .flex .text .btn-primary {
    width: 385px;
  }
}
.step2 .parts.text {
  bottom: 0;
  right: 0;
  transform: translate(5%, 0);
}

.step3 {
  background-image: url(../img/admission/bg_08.png);
  background-position: center;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step3 {
    padding-bottom: 100px;
  }
}
.step3 .section-wrapper {
  background-image: url(../img/admission/bg_11.png), url(../img/admission/bg_10.jpg);
  background-position: center left, top left;
  background-repeat: no-repeat, repeat;
  background-size: 1402px auto, auto;
  border-radius: 40px 0 0 40px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .step3 .section-wrapper {
    border-radius: 40px 0 0 40px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .step3 .section-wrapper {
    border-radius: 80px 0 0 80px;
    margin-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .step3 .com-ttl-06-ttl {
    flex-direction: column;
  }
}
.step3 .com-ttl-06 .ttl {
  color: #342C93;
}
.step3 .com-ttl-06 .term .month {
  width: auto;
  background-color: #E78CB1;
  color: #fff;
  padding: 0.3em 1.5em;
}
.step3 .parts.illust04 {
  top: 0;
  right: 0;
  transform: translate(20%, -70%);
}
@media screen and (max-width: 767px) {
  .step3 .parts.illust04 {
    width: 55vw;
    transform: translate(10%, -70%);
  }
}
.step3 .parts.illust05 {
  bottom: 0;
  left: 0;
  transform: translate(-15%, 55%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .step3 .parts.illust05 {
    width: 35vw;
    transform: translate(10%, 60%);
  }
}
.step3 .parts.sakura01 {
  width: 65.85px;
  height: 51.95px;
  top: 0;
  left: 0;
  transform: translate(-40%, 243px);
}
.step3 .parts.sakura01 img {
  width: 100%;
  height: auto;
}
.step3 .parts.sakura05 {
  width: 49.6px;
  height: 33.27px;
  bottom: 0;
  left: 50%;
  transform: translate(-200px, 150%);
}

.step4 {
  background-image: url(../img/admission/bg_12.png), url(../img/admission/bg_05.jpg);
  background-position: center top, top left;
  background-repeat: no-repeat, repeat;
  background-size: 1400px auto;
}
.step4 .step-schedule {
  background-image: url(../img/admission/bg_13_top.png), url(../img/admission/bg_13_bottom.png);
  background-position: top center, bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #F7F7F7;
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .step4 .step-schedule {
    padding: 30px 10px 20px;
  }
}
@media screen and (min-width: 1080px) {
  .step4 .step-schedule {
    padding-top: 40px;
    flex-basis: 433px;
    height: 310px;
  }
}
.step4 .step-schedule .date {
  color: #342C93;
  font-family: var(--font-zen-maru);
  font-size: 16px;
}
@media screen and (min-width: 768px), print {
  .step4 .step-schedule .date {
    font-size: 24px;
  }
}
.step4 .step-schedule .date em {
  font-size: 1.625em;
  font-style: normal;
}
.step4 .step-schedule .label {
  display: inline-block;
  width: 90px;
  font-size: 10px;
  line-height: 28px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .step4 .step-schedule .label {
    margin-right: 5px;
  }
}
.step4 .step-schedule .label.yellow {
  background-color: #FAEF6A;
}
.step4 .step-schedule .label.purple {
  background-color: #E6D7F7;
  color: #342C93;
}
.step4 .step-schedule .label.skyblue {
  background-color: #D0E6F0;
  color: #342C93;
}
.step4 .step-schedules {
  position: relative;
}
.step4 .box-item-lead {
  color: #46577B;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .step4 .box-item-lead {
    font-size: 17px;
  }
}
.step4 .other-item {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .step4 .other-item + .other-item {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px), print {
  .step4 .other-item {
    flex-basis: 48%;
    max-width: 426px;
  }
}
.step4 .other-item .text {
  padding: 30px 15px;
  font-size: 14px;
}
@media screen and (min-width: 768px), print {
  .step4 .other-item .text {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .step4 .other-item .text {
    padding: 40px 25px 30px;
  }
}
.step4 .other-item .text .wrap {
  display: none;
}
.step4 .other-item .img {
  position: relative;
}
.step4 .other-item .badge {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  padding: 0 2.5em 0 1.5em;
  background-image: url(../img/admission/bg_14.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-zen-maru);
  line-height: 30px;
}
@media screen and (min-width: 768px), print {
  .step4 .other-item .badge {
    font-size: 14px;
    line-height: 40px;
  }
}
.step4 .other-item h4 {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .step4 .other-item h4 {
    font-size: 20px;
  }
}
.step4 .other-item p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .step4 .other-item p {
    font-size: 13px;
  }
}
.step4 .other-item .btn {
  display: block;
}
@media screen and (min-width: 768px), print {
  .step4 .other-item .btn {
    width: 90%;
    margin: 0 auto;
  }
}
.step4 .other-item .ico-plus {
  width: 24px;
  height: 24px;
}
.step4 .other-item .function a.close {
  display: none;
}
.step4 .other-item .function.open a.open {
  display: none;
}
.step4 .other-item .function.open a.close {
  display: flex;
}
.step4 .parts.illust06 {
  bottom: 0;
  right: 0;
  transform: translate(50%, 70%);
}
@media screen and (max-width: 767px) {
  .step4 .parts.illust06 {
    width: 30vw;
    transform: translate(50%, 60%);
  }
}
.step4 .parts.illust07 {
  bottom: 0;
  left: 0;
  transform: translate(-25%, 30%);
}
@media screen and (max-width: 767px) {
  .step4 .parts.illust07 {
    width: 30vw;
    transform: translate(-10%, 60%);
  }
}

.step5 {
  background-image: url(../img/admission/bg_15.png), url(../img/admission/bg_16.jpg);
  background-position: bottom center, top center;
  background-repeat: no-repeat;
  background-size: 1400px auto, cover;
}
.step5 .com-ttl-06 .term .month {
  background-color: #FCF5E0;
}
@media screen and (min-width: 1080px) {
  .step5 .com-box-02 {
    padding: 60px 100px;
  }
}
.step5 .com-box-02 p {
  font-weight: 400;
  line-height: 1.6;
}
.step5 h3 {
  justify-content: center;
}
.step5 h3 span {
  width: 100%;
  max-width: 615px;
  display: inline-block;
  background: linear-gradient(135deg, #f8b1ce 50%, #fdf9be 100%);
  border-radius: 25px;
  padding: 0.1em;
  font-size: 5vw;
  color: #fff;
  font-family: var(--font-zen-maru);
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .step5 h3 span {
    font-size: 25px;
  }
}
.step5 .time-schedules {
  margin-top: 30px;
}
@media screen and (min-width: 768px), print {
  .step5 .time-schedules {
    margin-top: 50px;
  }
}
.step5 .time-schedules .time-item {
  background-color: #F7F7F7;
  border-radius: 10px;
  padding: 15px 20px;
}
@media screen and (min-width: 1080px) {
  .step5 .time-schedules .time-item {
    padding: 15px 20px 20px 50px;
  }
}
.step5 .time-schedules .time-item:nth-of-type(2n) {
  background-color: #fff;
}
.step5 .time-schedules .time-item h4 {
  color: #3A629A;
  font-family: var(--font-zen-maru);
  position: relative;
  font-size: 18px;
}
@media screen and (min-width: 768px), print {
  .step5 .time-schedules .time-item h4 {
    font-size: 22px;
  }
}
.step5 .time-schedules .time-item h4:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #C75483;
  border-radius: 50%;
  position: absolute;
  top: 0.7em;
  left: -0.8em;
}
.step5 .time-schedules .time-item dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .step5 .time-schedules .time-item dl {
    font-size: 18px;
  }
}
.step5 .time-schedules .time-item dl dt {
  flex-basis: 110px;
  border-right: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px), print {
  .step5 .time-schedules .time-item dl dt {
    flex-basis: 150px;
  }
}
.step5 .time-schedules .time-item dl dd {
  flex-basis: calc(100% - 110px);
  padding-left: 15px;
}
@media screen and (min-width: 768px), print {
  .step5 .time-schedules .time-item dl dd {
    flex-basis: calc(100% - 150px);
    padding-left: 22px;
  }
}
@media screen and (min-width: 768px), print {
  .step5 .btn-primary {
    min-width: 380px;
  }
}
@media screen and (min-width: 768px), print {
  .step5 .btn-primary span {
    font-size: 18px;
  }
}
.step5 .parts.illust08 {
  bottom: 0;
  right: 0;
  transform: translate(-60%, -60%);
}
@media screen and (max-width: 767px) {
  .step5 .parts.illust08 {
    display: none;
  }
}

.step6 {
  background-image: url(../img/admission/bg_18.png), url(../img/admission/bg_17.jpg);
  background-position: top center;
  background-repeat: repeat-y, repeat;
  background-size: 1400px auto;
}
@media screen and (max-width: 767px) {
  .step6 .com-ttl-06-ttl {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .step6 .health .w45, .step6 .health .w50 {
    width: 100% !important;
  }
}