@charset "UTF-8";
/* Scss Document */
:root {
  --main-color: #FF87A0;
  --black: #000;
}

/* Scss Document */
/* -------------------------------------------------- */
/* file   : top.css                                   */
/* update : 2026                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
#top {
  padding-top: 140px;
}

.sec-title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: var(--main-color);
  margin-top: 20px;
}
.sec-title .title {
  line-height: 1.2;
  margin-top: 10px;
}
.sec-title .sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Caveat", cursive;
  font-size: 24px;
  font-weight: bold;
  color: #3E3A39;
  line-height: 1;
}
.sec-title .sub-title::before, .sec-title .sub-title::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #3E3A39;
}
.sec-title .sub-title::before {
  margin-right: 20px;
}
.sec-title .sub-title::after {
  margin-left: 20px;
}
.sec-title .title_s {
  font-size: 34px;
}

.flow-text {
  width: 100%;
  overflow: hidden;
}

.flow-text_inner {
  display: flex;
  width: max-content;
  animation: flowText 18s linear infinite;
  will-change: transform;
}

.flow-text_inner span {
  flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 1px #3E3A39;
  white-space: nowrap;
  padding-right: 40px;
}

@keyframes flowText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-25%, 0, 0);
  }
}
.note {
  font-size: 12px;
}

.slider-wrap .swiper-button-prev,
.slider-wrap .swiper-button-next {
  top: 300px;
  width: 50px;
  height: 50px;
}
.slider-wrap .swiper-button-prev .swiper-navigation-icon,
.slider-wrap .swiper-button-next .swiper-navigation-icon {
  display: none;
}
.slider-wrap .swiper-button-prev::after,
.slider-wrap .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
.slider-wrap .swiper-button-prev {
  left: 16.2%;
}
.slider-wrap .swiper-button-prev::after {
  background-image: url(../../img/arrow_prev.svg);
}
.slider-wrap .swiper-button-next {
  right: 16.2%;
}
.slider-wrap .swiper-button-next::after {
  background-image: url(../../img/arrow_next.svg);
}
.slider-wrap .swiper-pagination {
  bottom: 30px;
}
.slider-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.slider-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 14px;
}
.slider-wrap .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  margin: 0 12px;
}
.slider-wrap .swiper-pagination-bullet-active {
  background: var(--main-color);
}
.slider-wrap {
  /* -------------------
  アコーディオン
  ------------------- */
}
.slider-wrap .ac-area {
  position: relative;
  padding: 8px 9px 80px;
  margin: 0 auto;
}
.slider-wrap .accordion-btn {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: var(--main-color);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 16px;
  margin: 0 auto;
}
.slider-wrap .accordion-btn::before, .slider-wrap .accordion-btn::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background: #fff;
}
.slider-wrap .accordion-btn::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.slider-wrap .accordion-btn.is-open::after {
  transform: rotate(0deg);
}
.slider-wrap .accordion-open-btn.is-open {
  border-radius: 10px 10px 0 0;
}
.slider-wrap .accordion-close-btn {
  width: 100%;
  border-radius: 0 0 10px 10px;
}
.slider-wrap .accordion-close-btn::after {
  opacity: 0;
}
.slider-wrap .accordion-content {
  height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 1px 0px 20px 0px rgba(143, 132, 115, 0.3);
  transition: height 0.4s ease;
  margin: 0 auto;
}
.slider-wrap .accordion-inner {
  padding: 45px 50px;
}
.slider-wrap .accordion-inner h3 {
  margin-bottom: 16px;
  font-size: 24px;
}
.slider-wrap .accordion-inner p {
  line-height: 2;
}
.slider-wrap .content-head {
  display: flex;
  gap: 0 5.5%;
}
.slider-wrap .content-head .content-img {
  width: 38.25%;
}
.slider-wrap .content-head .content-img img {
  width: 100%;
}
.slider-wrap .content-head .content-text {
  width: 56.25%;
}
.slider-wrap .content-head .content-text.wide {
  width: 100%;
}
.slider-wrap .content-head .text {
  margin-top: 8px;
}
.slider-wrap .content-box {
  margin-top: 60px;
}
.slider-wrap .content-box.first {
  margin-top: 80px;
}
.slider-wrap .content-box .content-title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  margin-top: 10px;
}
.slider-wrap .content-box .content-title::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--main-color);
  margin-right: 5px;
}
.slider-wrap .content-box .content-title .text_l {
  font-size: 24px;
  font-weight: 900;
  color: var(--main-color);
}
.slider-wrap .content-box .content-text {
  margin-top: 5px;
}
.slider-wrap .content-main-img img {
  width: 100%;
}
.slider-wrap .content-line {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 1px;
  background: #3E3A39;
  margin: 80px 0;
}
.slider-wrap .content-line::before, .slider-wrap .content-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background: #3E3A39;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.slider-wrap .content-line::before {
  left: 0;
}
.slider-wrap .content-line::after {
  right: 0;
}
.slider-wrap .content-v2-box {
  margin-top: 80px;
}
.slider-wrap .content-v2-box .content-main-img {
  position: relative;
}
.slider-wrap .content-v2-box .content-main-img::before {
  content: "";
  background: url(../../img/content_cherry.svg) no-repeat top center/100%;
  width: 106.38%;
  aspect-ratio: 851/189;
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.slider-wrap .content-v2-box .content-main-img .title {
  position: absolute;
  left: 12.5%;
  bottom: -20px;
  display: block;
  background: #fff;
}
.slider-wrap .content-v2-box .content-text {
  position: relative;
  width: 87.5%;
  margin: 37px 0 0 auto;
  z-index: 2;
}
.slider-wrap .content-v2-box.none .content-main-img::before {
  content: none;
}
.slider-wrap .content-v2-box.none .content-main-img .title {
  position: static;
  width: 30%;
}
.slider-wrap .content-v2-box.none .content-text {
  width: 100%;
  margin: 14px 0 0 0;
}
.slider-wrap .content-future-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.slider-wrap .content-future-box .content-text {
  position: absolute;
  left: 0;
  width: 56.25%;
}
.slider-wrap .content-future-box .content-text .text {
  background: #fff;
  margin-top: 13px;
}
.slider-wrap .content-future-box .content-img {
  margin-left: auto;
}
.slider-wrap .content-future-box .content-img img {
  width: 100%;
}
.slider-wrap .content-future-box.none {
  margin-top: 50px;
}
.slider-wrap .content-future-box.none .content-text {
  position: static;
  width: 100%;
}
.slider-wrap .content-message-box {
  display: flex;
  gap: 0 5%;
  margin-top: 50px;
}
.slider-wrap .content-message-box .content-img {
  width: 38.75%;
}
.slider-wrap .content-message-box .content-img img {
  width: 100%;
}
.slider-wrap .content-message-box .content-text {
  width: 56.25%;
}
.slider-wrap .content-message-box .content-text .text {
  margin-top: 9px;
}
.slider-wrap .content-message-box.none {
  display: block;
}
.slider-wrap .content-message-box.none .content-text {
  width: 100%;
}
.slider-wrap .content-bonus-box {
  text-align: center;
  margin-top: 50px;
}
.slider-wrap {
  /* -------------------
  矢印
  ------------------- */
}
.slider-wrap .graduate-prev,
.slider-wrap .graduate-next {
  position: absolute;
  top: 40%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ef8aa6;
  z-index: 10;
  cursor: pointer;
}
.slider-wrap .graduate-prev {
  left: 20px;
}
.slider-wrap .graduate-next {
  right: 20px;
}
.slider-wrap .graduate-prev::before,
.slider-wrap .graduate-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.slider-wrap .graduate-next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}
.slider-wrap .graduate-prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.slider-wrap .slide-image {
  padding: 0 9px;
}
.slider-wrap .slide-image img {
  width: 100%;
  height: auto;
}

.btn-pagetop {
  position: fixed;
  right: 70px;
  bottom: 70px;
  z-index: 99;
}

.mv {
  position: relative;
}
.mv::before, .mv::after {
  content: "";
  position: absolute;
  mix-blend-mode: multiply;
  z-index: -1;
}
.mv::before {
  background: url(../../img/mv_bg01@2x.png) no-repeat top center/100%;
  top: -120px;
  left: -300px;
  width: 100%;
  aspect-ratio: 1460/913;
}
.mv::after {
  background: url(../../img/mv_bg02@2x.png) no-repeat top center/100%;
  top: 150px;
  right: -100px;
  width: 45.63%;
  aspect-ratio: 700/657;
}

.mv-slider {
  overflow: visible;
}
.mv-slider .swiper-wrapper {
  overflow: visible;
  align-items: center;
}
.mv-slider .swiper-slide {
  width: 36.81%;
  padding: 0 30px;
  transform: scale(0.6);
  transition: transform 0.9s ease;
  will-change: transform;
}
.mv-slider .swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 20px;
  filter: blur(10px);
  transition: filter 0.8s ease, opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.mv-slider {
  /* 中央スライド */
}
.mv-slider .swiper-slide-active {
  transform: scale(1);
  z-index: 10;
  position: relative;
}
.mv-slider .swiper-slide-active img {
  transform: rotate(-5deg);
  filter: blur(0);
  opacity: 1;
}
.mv-slider {
  /* 左右スライド */
}
.mv-slider .swiper-slide:not(.swiper-slide-active) img {
  transform: rotate(0deg);
  filter: blur(10px);
}
@media (max-width: 767px) {
  .mv-slider .swiper-slide {
    width: 60%;
  }
}

.mv-petals {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.petal {
  position: absolute;
  left: var(--left, 50%);
  top: -10%;
  width: var(--size, 50px);
  opacity: 0;
  animation: petal-fall var(--duration, 8s) linear var(--delay, 0s) infinite;
}
.petal.petal01 {
  width: 130px;
}
.petal.petal02 {
  width: 64px;
}
.petal.petal03 {
  width: 210px;
}
.petal.petal04 {
  width: 183px;
}

@keyframes petal-fall {
  0% {
    top: -10%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  25% {
    transform: translateX(40px) rotate(90deg);
  }
  50% {
    transform: translateX(-35px) rotate(180deg);
  }
  75% {
    transform: translateX(30px) rotate(270deg);
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 110%;
    transform: translateX(-15px) rotate(360deg);
    opacity: 0;
  }
}
.mv-text {
  position: absolute;
  top: 0;
  left: 24%;
  width: 3.82%;
  z-index: 2;
}
.mv-text img {
  width: 100%;
}

.mv-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  z-index: 3;
}
.mv-title .title-school {
  margin: 0 0 -3% 4%;
}

.lead-sec .lead {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 3;
  margin-top: 150px;
}
.lead-sec .lead .lead_l {
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: #FF5477;
  line-height: 1.5;
  margin-top: 40px;
}

.graduate-sec {
  position: relative;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.08) 10px, transparent 10px, transparent 20px), linear-gradient(90deg, #f08e84, #ef8b97 30%, #ee88ac 72%, #ee87b4);
  background-blend-mode: overlay;
  margin-top: 300px;
}
.graduate-sec .graduate-head {
  padding: 130px 0 30px;
}
.graduate-sec::before {
  content: "";
  position: absolute;
  top: -320px;
  left: -3%;
  background: url(../../img/pattern_wave.svg) no-repeat top center/100%;
  width: 124.17%;
  aspect-ratio: 596/143;
  z-index: -1;
}
.graduate-sec .sec-title {
  color: #FFF;
}
.graduate-sec .sec-title .title {
  position: relative;
  display: inline-block;
  margin-top: 0;
}
.graduate-sec .sec-title .title .icon {
  position: absolute;
  top: -32px;
  right: 50px;
}
.graduate-sec .sub-title {
  color: #EBE49C;
}
.graduate-sec .sub-title::before, .graduate-sec .sub-title::after {
  background: #EBE49C;
}
.graduate-sec .graduate-copy_wrap {
  position: absolute;
  top: -190px;
  left: 0;
  right: 0;
  margin: auto auto auto -225px;
  display: flex;
  justify-content: center;
}
.graduate-sec .graduate-copy_wrap img {
  display: block;
}
.graduate-sec .graduate-copy_wrap .graduate-deco {
  position: relative;
  z-index: -1;
}
.graduate-sec .ac-area {
  position: relative;
  background: #FEF6EC;
  transition: background-color 0.5s ease;
}
.graduate-sec .ac-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 0;
  transform: translateX(-50%);
  background: #FEF6EC;
  z-index: 0;
}
.graduate-sec .ac-area > * {
  position: relative;
  z-index: 1;
}
.graduate-sec .ac-area.is-open {
  background: #FEF6EC;
}
.graduate-sec .ac-area.is-open::before {
  height: 100%;
}
.graduate-sec .ac-area.is-open::after {
  content: "";
  position: absolute;
  top: 1700px;
  right: -350px;
  width: 427px;
  height: 200px;
  background: url(../../img/ac_bg02.png) no-repeat center top/contain;
}
.graduate-sec .ac-area.is-open .bg-addition_wrap {
  position: relative;
}
.graduate-sec .ac-area.is-open .bg-addition_wrap::before, .graduate-sec .ac-area.is-open .bg-addition_wrap::after {
  content: "";
  position: absolute;
}
.graduate-sec .ac-area.is-open .bg-addition_wrap::before {
  top: 600px;
  left: -350px;
  width: 386px;
  height: 250px;
  background: url(../../img/ac_bg01.png) no-repeat center top/contain;
  z-index: -1;
}
.graduate-sec .ac-area.is-open .bg-addition_wrap::after {
  top: 2500px;
  left: -350px;
  width: 348px;
  height: 160px;
  background: url(../../img/ac_bg03.png) no-repeat center top/contain;
  z-index: -1;
}
.graduate-sec .note {
  margin-top: 50px;
}

.reservation-sec {
  position: relative;
  background: #FFF0EF;
  padding: 80px 0;
  margin-top: 120px;
}
.reservation-sec::before, .reservation-sec::after {
  content: "";
  width: 100%;
  height: 36px;
  aspect-ratio: 28/9;
  position: absolute;
  left: 0;
}
.reservation-sec::before {
  background: url(../../img/deco_halfcircle_resevation.svg) repeat-x top center/112px auto;
  top: -36px;
}
.reservation-sec::after {
  background: url(../../img/deco_halfcircle_resevation.svg) repeat-x top center/112px auto;
  bottom: -36px;
  transform: scale(1, -1);
}
.reservation-sec.margin-top-none {
  margin-top: 0;
  padding-top: 160px;
}
.reservation-sec .inner {
  position: relative;
  max-width: 1040px;
  z-index: 1;
}
.reservation-sec .btn_wrap {
  position: relative;
  text-align: center;
}
.reservation-sec .deco-reservation {
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  margin: auto;
}
.reservation-sec .btn-reservation {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.reservation-sec .btn-reservation img {
  display: block;
  width: 100%;
  height: auto;
}
.reservation-sec .btn-reservation .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.reservation-sec .btn-reservation .img-default,
.reservation-sec .btn-reservation .img-hover {
  transition: opacity 0.3s ease;
}
.reservation-sec {
  /* PCのみ */
}
@media (hover: hover) and (pointer: fine) {
  .reservation-sec .btn-reservation {
    transition: transform 0.15s ease, filter 0.3s ease;
  }
  .reservation-sec .btn-reservation:hover {
    transform: translate(2px, 2px);
    filter: brightness(1.03);
  }
  .reservation-sec .btn-reservation:hover .img-default {
    opacity: 0;
  }
  .reservation-sec .btn-reservation:hover .img-hover {
    opacity: 1;
  }
  .reservation-sec .btn-reservation:active {
    transform: translateY(6px) scale(0.97);
  }
}
.reservation-sec .reservation-bg-inner {
  position: relative;
}
.reservation-sec .reservation-bg-inner::after {
  content: "";
  background: url(../../img/bg_reservation.svg) repeat-x top left;
  width: 100%;
  height: 189px;
  aspect-ratio: 1112/189;
  position: absolute;
  left: 0;
  bottom: -250px;
  z-index: -1;
}

.about-sec {
  margin-top: 230px;
}
.about-sec .about-flex_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.about-sec .about-flex_wrap.wrap01 {
  gap: 0 2.73%;
  margin-top: 50px;
}
.about-sec .about-flex_wrap.wrap01 .about-text {
  left: 8.61%;
  width: 37.5%;
  max-width: 540px;
}
.about-sec .about-flex_wrap.wrap01 .about-img {
  max-width: 880px;
  aspect-ratio: 880/793;
  margin-left: auto;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_1 {
  left: 47.61%;
  bottom: 23.96%;
  width: 22.73%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_2 {
  left: 8.52%;
  bottom: 41.99%;
  width: 28.41%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_3 {
  left: 0;
  bottom: 20.81%;
  width: 14.77%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_4 {
  left: 15.8%;
  bottom: 18.92%;
  width: 30.68%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_5 {
  left: 71.59%;
  bottom: 74.02%;
  width: 28.41%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_6 {
  left: 71.59%;
  bottom: 31.4%;
  width: 11.36%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_7 {
  left: 71.59%;
  bottom: 49.43%;
  width: 28.41%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_8 {
  left: 38.07%;
  bottom: 41.99%;
  width: 32.39%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_9 {
  left: 15.8%;
  bottom: 0;
  width: 19.32%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .img01_10 {
  left: 71.59%;
  bottom: 9.84%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .en-text01 {
  top: 12.99%;
  left: 9.09%;
  z-index: 2;
  width: 48.98%;
}
.about-sec .about-flex_wrap.wrap01 .about-img .en-text02 {
  top: 67%;
  left: 38%;
  z-index: 2;
  width: 23.41%;
}
.about-sec .about-flex_wrap.wrap02 {
  margin-top: 80px;
}
.about-sec .about-flex_wrap.wrap02 .about-text {
  right: 15.83%;
  width: 37.5%;
  max-width: 540px;
}
.about-sec .about-flex_wrap.wrap02 .about-img {
  max-width: 965px;
  aspect-ratio: 193/138;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_1 {
  left: 5.75%;
  bottom: 72.17%;
  width: 10.36%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_2 {
  left: 0;
  bottom: 44.78%;
  width: 16.06%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_3 {
  left: 0;
  bottom: 17.1%;
  width: 16.06%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_4 {
  left: 60.62%;
  bottom: 2.61%;
  width: 15.54%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_5 {
  left: 17.1%;
  bottom: 44.93%;
  width: 25.91%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_6 {
  left: 17.1%;
  bottom: 72.46%;
  width: 25.91%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_7 {
  left: 77.2%;
  bottom: 2.61%;
  width: 22.8%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_8 {
  left: 44.04%;
  bottom: 31.59%;
  width: 31.09%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_9 {
  left: 17.1%;
  bottom: 0;
  width: 25.91%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_10 {
  left: 44.04%;
  bottom: 8.41%;
  width: 15.54%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .img02_11 {
  left: 46%;
  bottom: -6%;
  width: 10.16%;
}
.about-sec .about-flex_wrap.wrap02 .about-img .en-text01 {
  left: 46.74%;
  width: 25.8%;
  z-index: 2;
}
.about-sec .about-flex_wrap.wrap02 .about-student-img {
  position: absolute;
  right: -55%;
  bottom: -30%;
  width: 56.52%;
}
.about-sec .about-text {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  opacity: 0.85;
  padding: 20px;
  z-index: 2;
}
.about-sec .about-text .babble span {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 42px;
  border-radius: 50px;
  background-color: #ff87a0;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.about-sec .about-text .babble span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: #ff87a0 transparent transparent;
  translate: -50% 100%;
}
.about-sec .about-text .title {
  display: inline;
  background: linear-gradient(transparent 70%, #FFF600 70%);
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 10px;
}
.about-sec .about-text .lead {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}
.about-sec .about-text .job-list {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.about-sec .about-text .job-list li {
  position: relative;
  font-weight: bold;
  padding-left: 20px;
}
.about-sec .about-text .job-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: var(--main-color);
  border-radius: 50%;
}
.about-sec .about-text .text {
  margin-top: 30px;
}
.about-sec .about-img {
  position: relative;
  width: 100%;
}
.about-sec .about-img img {
  width: 100%;
}
.about-sec .about-img .img {
  position: absolute;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.about-sec .about-img .img.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.step-sec {
  position: relative;
  margin-top: 40px;
  padding-bottom: 60px;
  background: url(../../img/bg_step.svg) repeat-x top center/100%;
  width: 100%;
  aspect-ratio: 47/19;
}
.step-sec::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 75px solid transparent;
  border-left: 75px solid transparent;
  border-top: 80px solid #ffffff;
  border-bottom: 0;
  z-index: 2;
}
.step-sec .step-title-sec {
  text-align: center;
}
.step-sec .step-title-sec .lead {
  position: relative;
  width: 35%;
  height: 50px;
  margin: 20px auto 0;
}
.step-sec .step-title-sec .lead::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 9px;
  display: block;
  width: 100%;
  height: 50px;
  background: #F5F5F5;
  border-radius: 50px;
  z-index: -1;
}
.step-sec .step-title-sec .lead .lead-inner {
  position: relative;
  display: inline-block;
}
.step-sec .step-title-sec .lead .lead-inner::before, .step-sec .step-title-sec .lead .lead-inner::after {
  content: "";
  display: block;
  background: #fff;
  width: 7px;
  height: 5px;
  position: absolute;
  top: 0;
  z-index: 2;
}
.step-sec .step-title-sec .lead .lead-inner::before {
  left: 30px;
}
.step-sec .step-title-sec .lead .lead-inner::after {
  right: 30px;
}
.step-sec .step-title-sec .lead .lead-text {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  border: 2px solid #3E3A39;
  border-radius: 50px;
  padding: 12px 10px;
}
.step-sec .step-title-sec .lead .lead-text::before, .step-sec .step-title-sec .lead .lead-text::after {
  content: "";
  display: block;
  background: #fff;
  width: 7px;
  height: 5px;
  position: absolute;
  bottom: -2px;
  z-index: 2;
}
.step-sec .step-title-sec .lead .lead-text::before {
  left: 28px;
}
.step-sec .step-title-sec .lead .lead-text::after {
  right: 28px;
}
.step-sec .title_wrap {
  display: flex;
  justify-content: center;
}
.step-sec .title-item {
  align-self: center;
}
.step-sec .title-item:last-child {
  align-self: flex-end;
}
.step-sec .step-flow {
  width: 100%;
  max-width: 1000px;
  margin: 35px auto 0;
}

.chart-sec {
  position: relative;
  background: #FEF6EC;
  padding: 126px 0 100px;
}
.chart-sec::after {
  content: "";
  background: url(../../img/deco_halfcircle.svg) repeat-x top center/112px auto;
  width: 100%;
  height: 36px;
  aspect-ratio: 28/9;
  position: absolute;
  bottom: -36px;
  left: 0;
}
.chart-sec .inner {
  max-width: 1240px;
}
.chart-sec .sec-title {
  font-size: 0;
  margin-top: 0;
}
.chart-sec .sec-title .title {
  display: inline-block;
  text-align: center;
}
.chart-sec .lead {
  text-align: center;
  margin-top: 26px;
}
.chart-sec .lead span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #FFF600;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  padding: 8px 16px;
}
.chart-sec .lead span::before, .chart-sec .lead span::after {
  width: 1px;
  height: 30px;
  content: "";
  background-color: #000;
}
.chart-sec .lead span::before {
  margin-right: 0.5em;
  transform: rotate(-40deg);
}
.chart-sec .lead span::after {
  margin-left: 0.5em;
  transform: rotate(40deg);
}
.chart-sec .note {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  margin-top: 2px;
}
.chart-sec .chart-text {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--main-color);
  line-height: 1.7;
  margin-top: 50px;
}

.student-sec {
  background: url(../../img/bg_grad2@2x.png) no-repeat top center/100%, #FFB186;
  width: 100%;
  aspect-ratio: 36/25;
  padding: 180px 0 80px;
}
.student-sec .student-head {
  position: relative;
  margin-bottom: -10px;
  z-index: 1;
}
.student-sec .title-wrap {
  text-align: center;
}
.student-sec .title-wrap img {
  width: 100%;
}
.student-sec .title-wrap .title-inner {
  position: relative;
  display: inline-block;
}
.student-sec .title-wrap .deco {
  position: absolute;
  top: -12%;
  left: -20%;
  width: 41.29%;
  z-index: 1;
}
.student-sec .title-wrap .title-sub-img {
  position: absolute;
  top: -17%;
  left: 11%;
  width: 56.55%;
  z-index: 3;
}
.student-sec .title-wrap .title-img {
  position: relative;
  width: 100%;
  z-index: 2;
}
.student-sec .slider-wrap .swiper-button-prev::after {
  background-image: url(../../img/arrow_prev_student.svg);
}
.student-sec .slider-wrap .swiper-button-next::after {
  background-image: url(../../img/arrow_next_student.svg);
}
.student-sec .slider-wrap .accordion-btn {
  background: #fff;
  border: 1px solid #231815;
  color: #231815;
}
.student-sec .slider-wrap .accordion-btn::before, .student-sec .slider-wrap .accordion-btn::after {
  background: #231815;
}
.student-sec .slider-wrap .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.student-sec .slider-wrap .swiper-pagination-bullet-active {
  background: #FFF149;
}

.number-sec {
  background-image: url(../../img/bg_number.svg);
  background-blend-mode: color-dodge;
  background-color: var(--main-color);
  background-repeat: repeat-x;
  border-radius: 30px;
  width: 97.22%;
  aspect-ratio: 700/569;
  padding: 100px 0;
  margin: 100px auto 0;
}
.number-sec .title {
  text-align: center;
}
.number-sec .title .title-inner {
  display: inline-block;
  background: #fff;
  border-radius: 60px 60px 0 0;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  padding: 15px 80px 0;
}
.number-sec .title .title-inner .title_l {
  font-size: 60px;
  font-weight: 900;
}
.number-sec .number-list {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 100px;
  padding: 50px 100px;
}
.number-sec .number-item {
  width: 50%;
  border-right: 1px dashed #3E3A39;
  border-bottom: 1px dashed #3E3A39;
  padding: 0 35px 25px;
}
.number-sec .number-item:nth-child(2n) {
  border-right: none;
}
.number-sec .number-item:nth-child(3) .number-title, .number-sec .number-item:nth-child(4) .number-title {
  padding-top: 47px;
}
.number-sec .number-item.wide {
  width: 100%;
  border: none;
  padding: 0;
}
.number-sec .number-item.wide .number-wrap {
  align-items: center;
  margin-top: 40px;
}
.number-sec .number-item.wide .number-wrap .number-box {
  display: block;
  width: 30%;
  text-align: center;
  font-size: min(3.2vw, 42px);
  font-weight: 900;
  color: var(--main-color);
  line-height: 1.2;
}
.number-sec .number-item.wide .number-wrap .number-box .text_l {
  display: block;
  font-size: min(3.8vw, 48px);
}
.number-sec .number-item.wide .number-wrap .number-illut {
  width: 13%;
}
.number-sec .number-item.wide .number-wrap .number-text {
  width: 57%;
}
.number-sec .number-title {
  text-align: center;
}
.number-sec .number-title span {
  display: inline-block;
  background: #3E3A39;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  padding: 8px 25px;
}
.number-sec .number-wrap {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin-top: 55px;
}
.number-sec .number-wrap.wrap02 {
  flex-flow: row-reverse;
}
.number-sec .number-wrap.wrap03 .number-box {
  width: 33.78%;
}
.number-sec .number-wrap.wrap03 .number-illut {
  width: 27.95%;
}
.number-sec .number-wrap span {
  display: block;
}
.number-sec .number-wrap .number {
  width: auto;
  flex-grow: 0;
  flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: min(6vw, 90px);
  font-weight: 600;
  color: var(--main-color);
  line-height: 1;
}
.number-sec .number-wrap .text {
  width: auto;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: min(2vw, 30px);
  font-weight: 800;
  line-height: 1;
  margin-top: 5px;
}
.number-sec .number-wrap .text-other {
  font-size: 15px;
  font-weight: 800;
}
.number-sec .number-wrap .number-text-m {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.number-sec .number-wrap .number-text-m .text_s {
  display: inline-block;
  vertical-align: super;
  font-size: 16px;
}
.number-sec .number-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
}
.number-sec .number-box.box01 {
  width: 67%;
}
.number-sec .number-box.box02 {
  display: block;
  text-align: center;
}
.number-sec .number-box.box03 {
  align-items: flex-end;
}
.number-sec .number-box.box03 .text {
  margin-bottom: 5px;
}
.number-sec .number-box.box04 .number {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(3.2vw, 42px);
  font-weight: 900;
  line-height: 1.2;
}
.number-sec .number-text {
  line-height: 1.7;
  margin-top: 25px;
}
.number-sec .number-text .exp {
  display: flex;
  gap: 0 5px;
  align-items: center;
  font-size: 12px;
  margin-top: 5px;
}
.number-sec .number-text .exp .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #3E3A39;
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  padding: 5px;
}
.number-sec .number-text .lead {
  display: block;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 3px;
}
.number-sec .note {
  margin-top: 6px;
}
.number-sec .note.color {
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

.interview-sec {
  position: relative;
  background: url(../../img/bg_interview.svg) top center/94px 83px;
  border: 15px solid #2578BE;
  padding-top: 100px;
  margin-top: 70px;
}
.interview-sec .sub-title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}
.interview-sec .sub-title::before, .interview-sec .sub-title::after {
  width: 1px;
  height: 20px;
  content: "";
  background-color: #231815;
}
.interview-sec .sub-title::before {
  margin-right: 0.5em;
  transform: rotate(-40deg);
}
.interview-sec .sub-title::after {
  margin-left: 0.5em;
  transform: rotate(40deg);
}
.interview-sec .title {
  text-align: center;
  margin-top: 15px;
}
.interview-sec .title span {
  position: relative;
  background: linear-gradient(transparent 95%, #2578BE 95%);
  background-repeat: repeat-x;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #2578BE;
  line-height: 1.6;
}
.interview-sec .interview-bg_wrap {
  position: absolute;
  top: 16%;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 1000px;
  text-align: center;
}
.interview-sec .qa-list {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  margin-top: 70px;
}
.interview-sec .qa-list:first-of-type {
  margin-top: 25%;
}
.interview-sec .qa-item {
  width: 33.33%;
}
.interview-sec .qa-item.student-box {
  display: flex;
  gap: 0 2.1%;
  width: 39.75%;
}
.interview-sec .qa-item.student-box .qa-text_box {
  width: 83.86%;
}
.interview-sec .qa-item.student-box .student {
  width: 16.77%;
  z-index: 2;
}
.interview-sec .qa-item .qa-item-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.interview-sec .qa-item .qa-item-inner::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}
.interview-sec .qa-item .question {
  font-weight: 800;
  color: #2578BE;
  line-height: 1.5;
}
.interview-sec .qa-item .question::before {
  content: "Q";
  background: #2578BE;
  color: #fff;
}
.interview-sec .qa-item .question span {
  display: inline-block;
  background: #fff;
  opacity: 0.9;
  padding: 5px;
}
.interview-sec .qa-item .answer {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
}
.interview-sec .qa-item .answer::before {
  content: "A";
  background: #FFDA21;
  color: #2578BE;
}
.interview-sec .qa-item .answer span {
  display: inline-block;
  background: #fff;
  opacity: 0.9;
  padding: 5px;
}
.interview-sec .qa-item.wide {
  width: 46.92%;
}
.interview-sec .interview-last_wrap {
  display: flex;
  gap: 0 8%;
  margin-top: 150px;
}
.interview-sec .interview-last-text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45.83%;
  text-align: center;
  font-size: 14px;
  color: #2578BE;
  padding: 16px 20px;
  z-index: 2;
}
.interview-sec .interview-last-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #E7F8FF;
  border-radius: 10px;
  z-index: -1;
}
.interview-sec .interview-last-text::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 131px;
  aspect-ratio: 131/135;
  z-index: -2;
}
.interview-sec .interview-last-text.box01::before {
  background: url(../../img/img_interview_s01@2x.png) no-repeat top center/100%;
}
.interview-sec .interview-last-text.box02::before {
  background: url(../../img/img_interview_s02@2x.png) no-repeat top center/100%;
}
.interview-sec .interiew-img_wrap {
  display: flex;
  gap: 0 2.5%;
  margin-top: 30px;
}
.interview-sec .interiew-img_wrap .img {
  width: 31.67%;
}

.interview-about_wrap {
  position: relative;
  background: repeating-linear-gradient(-45deg, #EAF3F8, #EAF3F8 15px, #E3EFF6 0, #E3EFF6 30px);
  padding: 56px 100px;
  margin-top: 50px;
}
.interview-about_wrap .about-lead {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid #2578BE;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #2578BE;
  line-height: 1.3;
  padding: 10px;
}
.interview-about_wrap .about-lead::before, .interview-about_wrap .about-lead::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 95%;
  height: 4px;
  background: #fff;
}
.interview-about_wrap .about-lead::before {
  top: -2px;
}
.interview-about_wrap .about-lead::after {
  bottom: -2px;
}
.interview-about_wrap .about-text {
  width: 45%;
  font-size: 14px;
  margin-top: 15px;
}
.interview-about_wrap .supplement {
  position: absolute;
  top: 8%;
  right: 20%;
}
.interview-about_wrap .about-list_wrap {
  display: flex;
  align-items: flex-end;
  gap: 0 8%;
  margin-top: 33px;
}
.interview-about_wrap .about-list_wrap .about-list_box {
  width: 38%;
}
.interview-about_wrap .about-list_wrap .about-list_box.wide {
  width: 54%;
}
.interview-about_wrap .about-list_wrap .about-list-title {
  display: inline-block;
  background: #2578BE;
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  padding: 10px;
}
.interview-about_wrap .about-list_wrap .about-list {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  background: #fff;
  border-radius: 0 10px 10px 10px;
  font-size: 14px;
  padding: 16px 20px;
}
.interview-about_wrap .about-list_wrap .about-list .list-item {
  position: relative;
  line-height: 1.5;
  padding-left: 15px;
}
.interview-about_wrap .about-list_wrap .about-list .list-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  background: #2578BE;
  border-radius: 50%;
}
.interview-about_wrap .about-list_wrap .about-list-text {
  font-size: 14px;
}

.qa-sec .qa-sec-inner {
  background: #FEF6EC;
  border-radius: 30px;
  padding: 64px 0 85px;
}
.qa-sec .accordion-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.qa-sec .faq_dl {
  margin-top: 20px;
}
.qa-sec .faq_dl:first-of-type {
  margin-top: 40px;
}
.qa-sec .faq_dl .qa-accordion-header {
  position: relative;
  background: var(--main-color);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  padding: 20px 50px;
  cursor: pointer;
}
.qa-sec .faq_dl .qa-accordion-header::before, .qa-sec .faq_dl .qa-accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 4px;
  margin: auto;
  background: #fff;
}
.qa-sec .faq_dl .qa-accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.qa-sec .faq_dl .qa-accordion-header.open {
  border-radius: 10px 10px 0 0;
}
.qa-sec .faq_dl .qa-accordion-header.open::after {
  transform: rotate(0deg);
}
.qa-sec .faq_dl .qa-accordion-header .q-content {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.qa-sec .faq_dl .qa-accordion-header .q-content .icon {
  width: 5.8%;
}
.qa-sec .faq_dl .qa-accordion-content {
  display: none;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 0 0 10px 10px;
  padding: 20px 50px;
}
.qa-sec .faq_dl .qa-accordion-content .a-content {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.qa-sec .faq_dl .qa-accordion-content .a-content .icon {
  width: 8.3%;
}

.oc-sec {
  position: relative;
  background: #FFEBEE;
  padding: 80px 0 250px;
  margin-top: 140px;
}
.oc-sec::before {
  content: "";
  background: url(../../img/deco_halfcircle_pink.svg) repeat-x top center/112px auto;
  width: 100%;
  height: 36px;
  aspect-ratio: 28/9;
  position: absolute;
  top: -36px;
  left: 0;
}
.oc-sec .inner {
  max-width: 840px;
}
.oc-sec .title-lead {
  text-align: center;
  margin-top: 20px;
}
.oc-sec .oc-point-list {
  display: flex;
  gap: 0 8.5%;
  margin-top: 30px;
}
.oc-sec .point-item {
  width: 27.63%;
}
.oc-sec .oc-point-text {
  text-align: center;
  margin-top: 20px;
}
.oc-sec .oc-special_wrap {
  margin-top: 54px;
}
.oc-sec .oc-special-title {
  background: #FF6177;
  border-radius: 15px 0 15px 0;
  text-align: center;
  font-weight: 800;
  color: #FFF799;
  line-height: 1.3;
  padding: 5px;
}
.oc-sec .oc-special-title .text_l {
  font-size: 22px;
}
.oc-sec .oc-special-img {
  width: 81%;
  max-width: 648px;
  text-align: center;
  margin: 20px auto 0;
}
.oc-sec .note {
  font-size: 12px;
  margin-top: 10px;
}
.oc-sec .oc-special-list {
  display: flex;
  gap: 0 3.13%;
  margin-top: 48px;
}
.oc-sec .oc-special-list .note {
  text-align: center;
}
.oc-sec .oc-special-item {
  width: 31.25%;
}
.oc-sec .oc-special-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}
.oc-sec .oc-special-text .text_l {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}

.bnr-sec {
  position: relative;
}
.bnr-sec::before {
  content: "";
  position: absolute;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
  width: 2200px;
  height: 600px;
  background: #fff;
  border-radius: 100% 100% 0 0;
  z-index: 1;
}
.bnr-sec::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 75px solid transparent;
  border-left: 75px solid transparent;
  border-top: 80px solid #ffebee;
  border-bottom: 0;
  z-index: 2;
}
.bnr-sec .inner {
  position: relative;
  max-width: 1040px;
  z-index: 3;
}
.bnr-sec .bnr-title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #FF5477;
  line-height: 1.2;
}
.bnr-sec .bnr-text {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-top: 20px;
}
.bnr-sec .bnr_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 30px;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  :root {
    --content_size: 750;
  }
  #top {
    padding-top: 70px;
  }
  .sec-title {
    font-size: 28px;
    margin-top: 15px;
  }
  .sec-title .title {
    margin-top: 5px;
  }
  .sec-title .sub-title {
    font-size: 12px;
  }
  .sec-title .sub-title::before, .sec-title .sub-title::after {
    width: 20px;
  }
  .sec-title .sub-title::before {
    margin-right: 10px;
  }
  .sec-title .sub-title::after {
    margin-left: 10px;
  }
  .sec-title .title_s {
    font-size: 22px;
  }
  .flow-text_inner span {
    font-size: 50px;
    padding-right: 20px;
  }
  .slider-wrap .swiper-button-prev,
  .slider-wrap .swiper-button-next {
    top: auto;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
  .slider-wrap .swiper-button-prev::after,
  .slider-wrap .swiper-button-next::after {
    height: 44px;
    width: 44px;
  }
  .slider-wrap .swiper-button-prev {
    left: 33%;
  }
  .slider-wrap .swiper-button-next {
    right: 33%;
  }
  .slider-wrap .swiper-pagination {
    bottom: 70px;
  }
  .slider-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .slider-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  .slider-wrap .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .slider-wrap {
    /* -------------------
    アコーディオン
    ------------------- */
  }
  .slider-wrap .ac-area {
    padding: 5px 10px 100px;
  }
  .slider-wrap .ac-area.is-open::after {
    content: none;
  }
  .slider-wrap .ac-area.is-open .bg-addition_wrap::before, .slider-wrap .ac-area.is-open .bg-addition_wrap::after {
    content: none;
  }
  .slider-wrap .accordion-btn {
    border-radius: 5px;
    font-size: 12px;
    padding: 10px;
  }
  .slider-wrap .accordion-btn::before, .slider-wrap .accordion-btn::after {
    right: 15px;
    width: 15px;
  }
  .slider-wrap .accordion-open-btn.is-open {
    border-radius: 5px 5px 0 0;
  }
  .slider-wrap .accordion-close-btn {
    border-radius: 0 0 5px 5px;
  }
  .slider-wrap .accordion-inner {
    padding: 20px;
  }
  .slider-wrap .accordion-inner .title {
    width: 50%;
  }
  .slider-wrap .accordion-inner .title img {
    width: 100%;
  }
  .slider-wrap .accordion-inner h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .slider-wrap .accordion-content {
    border-radius: 0 0 5px 5px;
  }
  .slider-wrap .content-head {
    display: block;
  }
  .slider-wrap .content-head .content-img {
    width: 70%;
    margin: 0 auto;
  }
  .slider-wrap .content-head .content-text {
    width: 100%;
    margin-top: 10px;
  }
  .slider-wrap .content-head .text {
    margin-top: 8px;
  }
  .slider-wrap .content-box {
    margin-top: 30px;
  }
  .slider-wrap .content-box.first {
    margin-top: 40px;
  }
  .slider-wrap .content-box .content-title {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    padding-left: 20px;
    margin-top: 5px;
  }
  .slider-wrap .content-box .content-title::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 15px;
  }
  .slider-wrap .content-box .content-title .text_l {
    font-size: 18px;
  }
  .slider-wrap .content-box .content-text {
    margin-top: 5px;
  }
  .slider-wrap .content-main-img img {
    width: 100%;
  }
  .slider-wrap .content-line {
    margin: 40px 0;
  }
  .slider-wrap .content-v2-box {
    margin-top: 40px;
  }
  .slider-wrap .content-v2-box .content-main-img {
    position: relative;
  }
  .slider-wrap .content-v2-box .content-main-img::before {
    bottom: -40px;
  }
  .slider-wrap .content-v2-box .content-main-img .title {
    left: 0;
  }
  .slider-wrap .content-v2-box .content-text {
    width: 100%;
    margin-top: 25px;
  }
  .slider-wrap .content-v2-box.none .content-main-img .title {
    width: 61.25%;
  }
  .slider-wrap .content-future-box {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 25px;
  }
  .slider-wrap .content-future-box .content-text {
    position: static;
    width: 100%;
  }
  .slider-wrap .content-future-box .content-text .title {
    margin-top: 5px;
  }
  .slider-wrap .content-future-box .content-text .text {
    margin-top: 10px;
  }
  .slider-wrap .content-future-box.none {
    margin-top: 25px;
  }
  .slider-wrap .content-message-box {
    flex-direction: column;
    gap: 5px 0;
    margin-top: 25px;
  }
  .slider-wrap .content-message-box .content-img {
    width: 80%;
    margin: 0 auto;
  }
  .slider-wrap .content-message-box .content-text {
    width: 100%;
  }
  .slider-wrap .content-message-box .content-text .title {
    width: 80%;
    margin-top: 5px;
  }
  .slider-wrap .content-message-box .content-text .text {
    margin-top: 5px;
  }
  .slider-wrap .content-bonus-box {
    margin-top: 25px;
  }
  .slider-wrap {
    /* -------------------
    矢印
    ------------------- */
  }
  .slider-wrap .graduate-prev,
  .slider-wrap .graduate-next {
    position: absolute;
    top: 40%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ef8aa6;
    z-index: 10;
    cursor: pointer;
  }
  .slider-wrap .graduate-prev {
    left: 20px;
  }
  .slider-wrap .graduate-next {
    right: 20px;
  }
  .slider-wrap .graduate-prev::before,
  .slider-wrap .graduate-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .slider-wrap .graduate-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
  }
  .slider-wrap .graduate-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
  }
  .slider-wrap .slide-image {
    padding: 0 10px;
  }
  .slider-wrap .slide-image img {
    width: 100%;
    height: auto;
  }
  .btn-pagetop {
    right: 7px;
    bottom: 80px;
  }
  .mv::before {
    top: -60px;
    left: -350px;
    width: 695px;
  }
  .mv::after {
    background: url(../../img/mv_bg02@2x.png) no-repeat top center/100%;
    top: 0;
    right: -150px;
    width: 326px;
  }
  .mv-slider {
    overflow: visible;
  }
  .mv-slider .swiper-slide {
    width: 70%;
    padding: 0 5px;
  }
  .mv-slider .swiper-slide img {
    width: 100%;
    display: block;
  }
  .petal.petal01 {
    width: 65px;
  }
  .petal.petal02 {
    width: 32px;
  }
  .petal.petal03 {
    width: 105px;
  }
  .petal.petal04 {
    width: 91px;
  }
  .mv-text {
    left: 4.5%;
    width: 7%;
  }
  .mv-title {
    bottom: -68%;
    width: 100%;
    padding: 0 10px;
  }
  .mv-title .title-school {
    margin-left: 0;
  }
  .lead-sec .lead {
    font-size: 14px;
    font-weight: 500;
    line-height: 2.6;
    margin-top: 250px;
  }
  .lead-sec .lead .lead_l {
    font-size: 22px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .graduate-sec {
    margin-top: 130px;
  }
  .graduate-sec::before {
    top: -130px;
  }
  .graduate-sec .graduate-head {
    padding: 60px 0 10px;
  }
  .graduate-sec .sec-title {
    margin-top: 0;
  }
  .graduate-sec .sec-title .title .icon {
    top: -1px;
    right: -8px;
    width: 18.21%;
  }
  .graduate-sec .graduate-copy_wrap {
    top: -95px;
    left: -85px;
    margin: 0;
  }
  .graduate-sec .graduate-copy_wrap .deco {
    width: 85px;
    margin-top: 22px;
  }
  .graduate-sec .graduate-copy_wrap .copy {
    width: 140px;
  }
  .graduate-sec .note {
    margin-top: 15px;
  }
  .reservation-sec {
    padding: 20px 0;
    margin-top: 36px;
  }
  .reservation-sec::before, .reservation-sec::after {
    height: 14px;
  }
  .reservation-sec::before {
    background: url(../../img/deco_halfcircle_resevation.svg) repeat-x top center/43px auto;
    top: -12px;
  }
  .reservation-sec::after {
    background: url(../../img/deco_halfcircle_resevation.svg) repeat-x top center/43px auto;
    bottom: -12px;
  }
  .reservation-sec.margin-top-none {
    padding-top: 50px;
  }
  .reservation-sec .inner {
    max-width: 100%;
  }
  .reservation-sec .deco-reservation {
    top: -40px;
    width: 23.08%;
  }
  .reservation-sec .reservation-bg-inner::after {
    background-size: contain;
    height: 66px;
    bottom: -86px;
  }
  .about-sec {
    margin-top: 100px;
  }
  .about-sec .sec-title .title {
    letter-spacing: -0.12em;
    padding: 0 10px;
  }
  .about-sec .about-flex_wrap {
    display: block;
  }
  .about-sec .about-flex_wrap.wrap01 {
    margin-top: 30px;
  }
  .about-sec .about-flex_wrap.wrap01 .about-text {
    width: 100%;
    max-width: 100%;
  }
  .about-sec .about-flex_wrap.wrap01 .about-img .img01_10 {
    width: 17.18%;
  }
  .about-sec .about-flex_wrap.wrap02 {
    margin-top: 30px;
  }
  .about-sec .about-flex_wrap.wrap02 .about-text {
    width: 100%;
    max-width: 100%;
  }
  .about-sec .about-flex_wrap.wrap02 .about-student-img {
    right: 0;
    bottom: 12%;
    width: 25.64%;
  }
  .about-sec .about-text {
    position: static;
    padding: 0 10px;
  }
  .about-sec .about-text .babble span {
    margin-bottom: 5px;
    padding: 3px 20px;
    font-size: 14px;
  }
  .about-sec .about-text .babble span::after {
    border-width: 5px 5px 0 5px;
  }
  .about-sec .about-text .title {
    font-size: 32px;
  }
  .about-sec .about-text .lead {
    font-size: 22px;
    margin-top: 13px;
  }
  .about-sec .about-text .job-list {
    gap: 5px 0;
    margin-top: 10px;
  }
  .about-sec .about-text .job-list li {
    padding-left: 20px;
  }
  .about-sec .about-text .job-list li::before {
    top: 5px;
  }
  .about-sec .about-text .text {
    margin-top: 20px;
  }
  .about-sec .about-img {
    margin-top: 20px;
  }
  .step-sec {
    margin-top: 30px;
    padding-bottom: 42px;
  }
  .step-sec::after {
    bottom: -50px;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    border-top: 50px solid #ffffff;
  }
  .step-sec .step-title-sec .lead {
    width: 100%;
    height: 38px;
    margin: 15px auto 0;
  }
  .step-sec .step-title-sec .lead::before {
    top: 6px;
    left: 9px;
    height: 38px;
  }
  .step-sec .step-title-sec .lead .lead-inner {
    display: block;
  }
  .step-sec .step-title-sec .lead .lead-inner::before {
    left: 20px;
  }
  .step-sec .step-title-sec .lead .lead-inner::after {
    right: 20px;
  }
  .step-sec .step-title-sec .lead .lead-text {
    display: block;
    font-size: 12px;
  }
  .step-sec .step-title-sec .lead .lead-text::before {
    left: 18px;
  }
  .step-sec .step-title-sec .lead .lead-text::after {
    right: 18px;
  }
  .step-sec .step-flow {
    margin: 20px auto 0;
  }
  .step-sec .step-flow .step-flow-inner {
    width: 1000px;
  }
  .chart-sec {
    padding: 74px 0 50px;
  }
  .chart-sec::after {
    content: "";
    background: url(../../img/deco_halfcircle.svg) repeat-x top center/43px auto;
    height: 14px;
    bottom: -12px;
  }
  .chart-sec .inner {
    max-width: 100%;
  }
  .chart-sec .lead {
    margin-top: 12px;
  }
  .chart-sec .lead span {
    width: 100%;
    font-size: 18px;
    padding: 5px 5px;
  }
  .chart-sec .lead span::before, .chart-sec .lead span::after {
    height: 25px;
  }
  .chart-sec .lead span::before {
    margin-right: 0.7em;
  }
  .chart-sec .lead span::after {
    margin-left: 0.7em;
  }
  .chart-sec .chart-wrap {
    margin-top: 30px;
  }
  .chart-sec .chart-wrap .chart-img {
    width: 700px;
  }
  .chart-sec .note {
    font-size: 12px;
    margin-top: 15px;
  }
  .chart-sec .chart-text {
    font-size: 22px;
    margin-top: 35px;
  }
  .student-sec {
    padding: 90px 0 40px;
  }
  .student-sec .title-wrap {
    margin-bottom: -30px;
  }
  .student-sec .title-wrap .deco {
    left: -3%;
    width: 38%;
  }
  .student-sec .title-wrap .title-sub-img {
    top: -28%;
    left: 20%;
    width: 60%;
  }
  .student-sec .title-wrap .title-img {
    width: 85%;
    margin-left: auto;
    z-index: 2;
  }
  .student-sec .slider-wrap {
    z-index: 2;
  }
  .student-sec .slider-wrap .swiper-button-prev::after {
    background-image: url(../../img/arrow_prev_student.svg);
  }
  .student-sec .slider-wrap .swiper-button-next::after {
    background-image: url(../../img/arrow_next_student.svg);
  }
  .student-sec .slider-wrap .accordion-btn {
    background: #fff;
    border: 1px solid #231815;
    color: #231815;
  }
  .student-sec .slider-wrap .accordion-btn::before, .student-sec .slider-wrap .accordion-btn::after {
    background: #231815;
  }
  .student-sec .slider-wrap .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
  }
  .student-sec .slider-wrap .swiper-pagination-bullet-active {
    background: #FFF149;
  }
  .number-sec {
    width: 100%;
    padding: 57px 0 34px;
    margin: 60px auto 0;
  }
  .number-sec .title {
    width: 75.68%;
    margin: 0 auto;
  }
  .number-sec .title .title-inner {
    border-radius: 30px 30px 0 0;
    font-size: 22px;
    padding: 10px 20px 0;
  }
  .number-sec .title .title-inner .title_l {
    font-size: 32px;
  }
  .number-sec .number-list {
    display: block;
    border-radius: 30px;
    padding: 30px 25px;
  }
  .number-sec .number-item {
    width: 100%;
    border-right: none;
    padding: 30px 0 40px;
  }
  .number-sec .number-item:first-child {
    padding-top: 0;
  }
  .number-sec .number-item:nth-child(3) .number-title, .number-sec .number-item:nth-child(4) .number-title {
    padding-top: 0;
  }
  .number-sec .number-item.wide .number-wrap {
    margin-top: 30px;
  }
  .number-sec .number-item.wide .number-wrap .number-box {
    width: 100%;
    font-size: 42px;
  }
  .number-sec .number-item.wide .number-wrap .number-box .text_l {
    font-size: 48px;
  }
  .number-sec .number-item.wide .number-wrap .number-illut {
    width: 100%;
    text-align: center;
  }
  .number-sec .number-item.wide .number-wrap .number-text {
    width: 100%;
    margin-top: 0;
  }
  .number-sec .number-title span {
    font-size: 20px;
    padding: 5px 25px;
  }
  .number-sec .number-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
    margin-top: 15px;
  }
  .number-sec .number-wrap.wrap02 {
    flex-direction: column;
  }
  .number-sec .number-wrap.wrap03 {
    flex-direction: column;
  }
  .number-sec .number-wrap.wrap03 .number-box {
    width: auto;
  }
  .number-sec .number-wrap.wrap03 .number-illut {
    width: auto;
  }
  .number-sec .number-wrap .number {
    font-size: 90px;
  }
  .number-sec .number-wrap .text {
    font-size: 30px;
    margin-top: 5px;
  }
  .number-sec .number-wrap .text-other {
    font-size: 14px;
    margin-top: 5px;
  }
  .number-sec .number-wrap .number-text-m {
    width: 100%;
    text-align: center;
  }
  .number-sec .number-box.box01 {
    justify-content: center;
    width: 100%;
  }
  .number-sec .number-box.box03 {
    justify-content: center;
  }
  .number-sec .number-box.box03 .text {
    margin-bottom: 5px;
  }
  .number-sec .number-box.box04 .number {
    font-size: 42px;
  }
  .number-sec .number-text {
    margin-top: 20px;
  }
  .number-sec .number-text .lead {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .number-sec .number-text .exp {
    gap: 0 10px;
    margin-top: 15px;
  }
  .number-sec .note {
    text-align: center;
    font-weight: 800;
    color: #fff;
    margin-top: 10px;
  }
  .interview-sec {
    background: url(../../img/bg_interview.svg) top center/18%;
    border-top: 10px solid #2578BE;
    border-right: none;
    border-bottom: 10px solid #2578BE;
    border-left: none;
    padding-top: 30px;
    margin-top: 30px;
  }
  .interview-sec .sub-title {
    text-align: center;
    font-size: 20px;
  }
  .interview-sec .sub-title::before, .interview-sec .sub-title::after {
    height: 40px;
  }
  .interview-sec .title {
    text-align: center;
    margin-top: 15px;
  }
  .interview-sec .title span {
    font-size: 30px;
  }
  .interview-sec .interview-bg_wrap {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
  .interview-sec .qa-list {
    flex-direction: column;
    gap: 10px 0;
    margin-top: 20px;
  }
  .interview-sec .qa-list:first-of-type {
    margin-top: 20px;
  }
  .interview-sec .qa-item {
    width: 100%;
  }
  .interview-sec .qa-item.student-box {
    display: block;
    width: 100%;
  }
  .interview-sec .qa-item.student-box .qa-text_box {
    width: 100%;
  }
  .interview-sec .qa-item .qa-item-inner {
    align-items: flex-start;
    gap: 0 6px;
  }
  .interview-sec .qa-item .qa-item-inner::before {
    content: none;
    width: 40px;
    height: 40px;
    background: transparent;
  }
  .interview-sec .qa-item .qa-item-inner.student01::before {
    content: "";
    background: url(../../img/img_student01.png) no-repeat top center/100%;
  }
  .interview-sec .qa-item .qa-item-inner.student02::before {
    content: "";
    background: url(../../img/img_student02.png) no-repeat top center/100%;
  }
  .interview-sec .qa-item .question {
    align-items: center;
  }
  .interview-sec .qa-item .question::before {
    content: "Q";
    background: #2578BE;
    color: #fff;
  }
  .interview-sec .qa-item .question.item-pc {
    display: none;
  }
  .interview-sec .qa-item .answer {
    margin-top: 10px;
  }
  .interview-sec .qa-item .answer.item-sp {
    margin-top: 0;
  }
  .interview-sec .qa-item .answer span {
    background: none;
    padding: 0;
  }
  .interview-sec .qa-item.wide {
    width: 100%;
  }
  .interview-sec .interview-last_wrap {
    flex-direction: column;
    gap: 125px 0;
    margin-top: 120px;
  }
  .interview-sec .interview-last-text {
    width: 100%;
    padding: 15px 10px;
  }
  .interview-sec .interiew-img_wrap {
    gap: 0;
  }
  .interview-sec .interiew-img_wrap .img {
    width: 33.33%;
  }
  .interview-about_wrap {
    padding: 40px 15px;
    margin-top: 40px;
  }
  .interview-about_wrap .about-lead {
    width: 100%;
    font-size: 18px;
  }
  .interview-about_wrap .about-text {
    width: 100%;
  }
  .interview-about_wrap .supplement {
    position: static;
    text-align: center;
    margin-top: 10px;
  }
  .interview-about_wrap .about-list_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
    margin-top: 10px;
  }
  .interview-about_wrap .about-list_wrap .about-list_box {
    width: 100%;
  }
  .interview-about_wrap .about-list_wrap .about-list_box.wide {
    width: 100%;
  }
  .interview-about_wrap .about-list_wrap .about-list-title {
    font-size: 16px;
    padding: 5px 10px;
  }
  .interview-about_wrap .about-list_wrap .about-list {
    padding: 13px 15px;
  }
  .interview-about_wrap .about-list_wrap .about-list .list-item {
    padding-left: 11px;
  }
  .interview-about_wrap .about-list_wrap .about-list .list-item::before {
    top: 8px;
    width: 8px;
    height: 8px;
  }
  .qa-sec {
    margin-top: 30px;
  }
  .qa-sec .qa-sec-inner {
    border-radius: 20px;
    padding: 46px 10px 42px;
    margin-top: 30px;
  }
  .qa-sec .accordion-inner {
    max-width: 100%;
  }
  .qa-sec .faq_dl {
    margin-top: 5px;
  }
  .qa-sec .faq_dl:first-of-type {
    margin-top: 20px;
  }
  .qa-sec .faq_dl .qa-accordion-header {
    font-size: 16px;
    padding: 10px 30px 10px 15px;
  }
  .qa-sec .faq_dl .qa-accordion-header::before, .qa-sec .faq_dl .qa-accordion-header::after {
    right: 16px;
    width: 16px;
    height: 2px;
  }
  .qa-sec .faq_dl .qa-accordion-header .q-content {
    gap: 0 10px;
  }
  .qa-sec .faq_dl .qa-accordion-header .q-content .icon {
    width: 8%;
    flex-shrink: 0;
  }
  .qa-sec .faq_dl .qa-accordion-content {
    padding: 15px 15px 24px;
  }
  .qa-sec .faq_dl .qa-accordion-content .a-content {
    align-items: flex-start;
    gap: 0 10px;
  }
  .qa-sec .faq_dl .qa-accordion-content .a-content .icon {
    width: 8%;
    flex-shrink: 0;
    margin-top: 5px;
  }
  .oc-sec {
    padding: 40px 0 120px;
    margin-top: 60px;
  }
  .oc-sec::before {
    background: url(../../img/deco_halfcircle_pink.svg) repeat-x top center/43px auto;
    height: 14px;
    top: -12px;
  }
  .oc-sec .inner {
    max-width: 100%;
  }
  .oc-sec .title-lead {
    margin-top: 15px;
  }
  .oc-sec .oc-point-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 8.57%;
    margin-top: 20px;
  }
  .oc-sec .point-item {
    width: 45.71%;
  }
  .oc-sec .oc-special_wrap {
    margin-top: 26px;
  }
  .oc-sec .oc-special-title {
    font-size: 16px;
    padding: 3px 5px;
  }
  .oc-sec .oc-special-img {
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
  }
  .oc-sec .note {
    margin-top: 5px;
  }
  .oc-sec .oc-special-list {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 20px;
  }
  .oc-sec .oc-special-list .oc-special-text {
    font-size: 14px;
  }
  .oc-sec .oc-special-item {
    width: 100%;
  }
  .oc-sec .oc-special-text {
    font-size: 16px;
    margin-top: 15px;
  }
  .bnr-sec::before {
    top: -100px;
    width: 800px;
    height: 400px;
  }
  .bnr-sec::after {
    top: -100px;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    border-top: 60px solid #ffebee;
  }
  .bnr-sec .inner {
    max-width: 100%;
  }
  .bnr-sec .bnr-title {
    font-size: 22px;
  }
  .bnr-sec .bnr-text {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-top: 20px;
  }
  .bnr-sec .bnr_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin-top: 30px;
  }
}
/* -------------------sp END------------------------------- *//*# sourceMappingURL=top.css.map */