/**
 * Brains gym 2024 Spring
 * @package kirsten
 */

/**
 * Fonts
 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap');

@font-face {
  font-family: "HeavitasNeueBold";
  src: url('/fonts/HeavitasNeueBold.woff2') format('woff2'), url('/fonts/HeavitasNeueBold.woff') format('woff');
}

.ff-en {
  font-family: HeavitasNeueBold;
  font-weight: normal;
}

.ff-maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

/**
 * reset.css
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

/**
 * Mixins
 */
/**
 * Application styles
 */
/**
 * General
 */
html {
  font-size: .5208333333333333vw;
}

@media screen and (max-width: 800px) {
  html {
    font-size: 2.666666666666667vw;
  }
}

body {
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-kerning: auto;
  font-size: 2rem;
  font-weight: 400;
  font-variant-ligatures: none;
  line-height: 1em;
  margin: 0;
  overflow-wrap: break-word;
  padding: 0;
  -webkit-text-size-adjust: none;
  font-feature-settings: "palt";
  background-color: #ffffff;
  text-align: justify;
}

body.expanded {
  overflow: hidden;
}

body.complete {
  background-color: #d2145a;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

a.external {
  color: #060;
  padding-left: 1.5em;
}

a.internal {
  color: #090;
  padding-left: 1.5em;
}

.sp {
  display: none;
}

@media screen and (max-width: 800px) {
  .sp {
    display: initial;
  }

  .pc {
    display: none;
  }
}

@media (any-hover: hover) {
  .hover {
    cursor: pointer;
    transition: opacity .2s linear;
  }

  .hover:hover {
    opacity: .6;
  }
}

.animated {
  opacity: 0;
}

.animated.is-completed {
  opacity: 1;
}

.animated-illust {
  opacity: 0;
  transform: scale(0.6);
  transition: transform cubic-bezier(0.17, 0.88, 0.30, 1.28) 0.6s, opacity 0.4s ease;
}

.animated-illust.is-completed {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

.color-key {
  color: #d2145a;
}

.color-yellow {
  color: #FFD100;
}

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


/**
 * CTA
 */
.cta {
  background-color: #d2145a;
  padding-block: 16rem 12rem;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .cta {
    padding-block: 8rem 6.5rem;
    padding-left: 6rem;
  }
}

.cta-btn-tip {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .cta-btn-tip {
    font-size: 1.2rem;
    margin-bottom: .8rem;
  }
}

.cta-btn-tip__inner {
  display: inline-block;
  height: 4rem;
  padding: .9rem 1.5rem 0;
  position: relative;
}

@media screen and (max-width: 800px) {
  .cta-btn-tip__inner {
    height: 2.4rem;
    padding: .5rem 1rem 0;
  }
}

.cta-btn-tip__inner::before,
.cta-btn-tip__inner::after {
  background-color: #333;
  border-radius: .2rem;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transform-origin: bottom;
  width: .2rem;
}

.cta-btn-tip__inner::before {
  transform: rotate(-26deg);
  left: 0;
}

.cta-btn-tip__inner::after {
  transform: rotate(26deg);
  right: 0;
}

@media screen and (max-width: 800px) {

  .cta-btn-tip__inner::before,
  .cta-btn-tip__inner::after {
    width: .15rem;
  }
}

.cta-btn-tip__em {
  font-size: 2.5rem;
}

@media screen and (max-width: 800px) {
  .cta-btn-tip__em {
    font-size: 1.5rem;
  }
}

.cta-btn-wrap {
  position: relative;
  margin-inline: auto;
  width: 54.5rem;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .cta-btn-wrap {
    width: 33rem;
  }
}

.cta-btn-balloon {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cta-btn-balloon--01 {
  left: -4rem;
  top: -5rem;
  width: 9.5rem;
}

.cta-btn-balloon--02 {
  left: -2.5rem;
  top: -4rem;
  width: 26.2rem;
}

.cta-btn-balloon--03 {
  left: -2.5rem;
  top: -5.3rem;
  width: 33.8rem;
}

@media screen and (max-width: 800px) {
  .cta-btn-balloon--01 {
    left: -2rem;
    top: -2.5rem;
    width: 5.8rem;
  }

  .cta-btn-balloon--02 {
    left: -1.6rem;
    top: -2.6rem;
    width: 16.9rem;
  }

  .cta-btn-balloon--03 {
    left: -1.6rem;
    top: -2.8rem;
    width: 19.7rem;
  }
}

.cta-btn {
  border-radius: 11rem;
  box-shadow: .6rem .6rem .8rem rgba(0, 0, 0, .1);
  display: block;
  font-size: 4rem;
  font-weight: 500;
  height: 11rem;
  letter-spacing: .04em;
  overflow: hidden;
  padding: 4.2rem 2.5rem 0 0;
  position: relative;
  text-align: center;
  text-shadow: .3rem .3rem .3rem rgba(0, 0, 0, .05);
}

@media (any-hover: hover) {

  .cta-btn,
  .cta-btn::after {
    transition: all 0.2s linear;
  }

  .cta-btn:hover {
    color: #fff;
  }

  .cta-btn--yellow:hover {
    background-color: #d2145a;
  }

  .cta-btn--yellow2:hover {
    background-color: #fff;
    color: #d2145a;
  }

  .cta-btn--white:hover {
    background-color: #d2145a;
  }

  .cta-btn--pink:hover {
    background-color: #d2145a;
  }

  .cta-btn--key:hover {
    background-color: #fff;
    color: #d2145a;
  }

  .cta-btn--white:hover::after,
  .cta-btn--pink:hover::after {
    background-image: url(/images/btn-arrow.svg);
  }
}

@media screen and (max-width: 800px) {
  .cta-btn {
    box-shadow: .4rem .4rem .5rem rgba(0, 0, 0, .1);
    font-size: 2.4rem;
    height: 6.6rem;
    padding: 2.5rem 1.2rem 0 0;
    text-shadow: .2rem .2rem .2rem rgba(0, 0, 0, .05);
  }
}

.cta-btn--yellow {
  background-color: #ffdf00;
  color: #333;
}

.cta-btn--yellow2 {
  background-color: #ffdf00;
  color: #333;
}

.cta-btn--white {
  background-color: #fff;
  border: .2rem solid #d2145a;
  color: #333;
}

.cta-btn--pink {
  background-color: #ff8db0;
  color: #fff;
}

.cta-btn--key {
  background-color: #d2145a;
  color: #fff;
}

.cta-btn::after {
  background: url(/images/btn-arrow.svg) center / 100% no-repeat;
  content: "";
  height: 4.7rem;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.7rem;
}

.cta-btn--white::after,
.cta-btn--pink::after {
  background-image: url(/images/btn-arrow-key.svg);
}

@media screen and (max-width: 800px) {
  .cta-btn--white {
    border-width: .15rem;
    padding: 2.3rem 1.6rem 0 0;
  }

  .cta-btn::after {
    height: 2.9rem;
    right: 1.5rem;
    width: 2.9rem;
  }
}

.cta-btn__em {
  font-size: 5.1rem;
  font-weight: 700;
  letter-spacing: .08em;
}

@media screen and (max-width: 800px) {
  .cta-btn__em {
    font-size: 3rem;
  }
}

.cta-btn-hint {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .cta-btn-hint {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: .1em;
    padding-left: 1.5rem;
  }
}

.cta-btn-hint__em {
  font-size: 2.5rem;
}

@media screen and (max-width: 800px) {
  .cta-btn-hint__em {
    font-size: 1.6rem;
  }
}

.cta-btn-hint__em>span {
  position: relative;
}

.cta-btn-hint__em>span::before {
  background-color: #ffdf00;
  border-radius: 50%;
  content: "";
  height: .6rem;
  left: 50%;
  position: absolute;
  top: -.4rem;
  transform: translateX(-50%);
  width: .6rem;
}

@media screen and (max-width: 800px) {
  .cta-btn-hint__em>span::before {
    height: .35rem;
    top: -.25rem;
    width: .35rem;
  }
}

.cta-btn-wrap--noarrow {
  width: 50rem;
}

@media screen and (max-width: 800px) {
  .cta-btn-wrap--noarrow {
    width: 28.5rem;
  }
}

.cta-btn-wrap--noarrow .cta-btn {
  padding-right: 0;
}

.cta-btn-wrap--noarrow .cta-btn::after {
  content: none;
}

.cta__illust {
  left: 50%;
  margin-left: -45rem;
  position: absolute;
  top: 9.5rem;
  width: 21rem;
}

@media screen and (max-width: 800px) {
  .cta__illust {
    margin-left: -19rem;
    top: 5rem;
    width: 11rem;
  }
}

/*---------
## mv ##
----------*/
.mv {
  background-color: #d2145a;
  height: 108rem;
  position: relative;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.mv::after {
  background: url(/images/mv-copy.svg) center / contain no-repeat;
  bottom: 4rem;
  content: "";
  height: 29.4rem;
  left: 6rem;
  position: absolute;
  width: 1rem;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .mv {
    height: auto;
  }

  .mv::after {
    bottom: 7.2rem;
    height: 14.7rem;
    left: 2rem;
    width: .5rem;
  }
}

.mv__logo {
  left: 6rem;
  position: absolute;
  top: 4.5rem;
  width: 19.2rem;
  z-index: 10;
}

@media screen and (max-width: 800px) {
  .mv__logo {
    left: 1.7rem;
    top: 1.8rem;
    width: 7.4rem;
  }
}

.mv__medal {
  position: absolute;
  right: 10rem;
  top: 5rem;
  width: 20.8rem;
  z-index: 3;
}

@media screen and (max-width: 800px) {
  .mv__medal {
    right: 1rem;
    top: 2rem;
    width: 9.4rem;
  }
}

.mv__title {
  left: 51rem;
  position: absolute;
  top: 45rem;
  width: 50rem;
  z-index: 3;
}

@media screen and (max-width: 800px) {
  .mv__title {
    left: 7rem;
    top: 26.5rem;
    width: 20rem;
  }
}

.mv__bottom {
  display: flex;
  justify-content: space-between;
  padding: 3rem 9.5rem 0 14rem;
}

@media screen and (max-width: 800px) {
  .mv__bottom {
    padding: 1.2rem .8rem 0 4.1rem;
  }
}

.mv__read {
  width: 81.8rem;
}

@media screen and (max-width: 800px) {
  .mv__read {
    width: 32rem;
  }
}

.mv__benefit {
  width: 79.6rem;
}

@media screen and (max-width: 800px) {
  .mv__benefit {
    display: none;
  }
}

.mv__bg {
  height: 72.5rem;
  padding-left: 14rem;
}

@media screen and (max-width: 800px) {
  .mv__bg {
    height: 42rem;
    padding-left: 4.4rem;
  }
}

.mv__bg-img {
  border-bottom-left-radius: 6rem;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .mv__bg-img {
    border-bottom-left-radius: 3rem;
  }
}

.mv .side {
  background-color: transparent;
  position: static;
  transform: none;
  height: 7rem;
}

/*--------
## main ##
--------*/
.discount {
  background-color: #ffd8dc;
  padding: 16rem 0 44rem;
}

@media screen and (max-width: 800px) {
  .discount {
    padding: 5rem 0 14rem;
  }
}

.discount__title {
  margin: 0 auto 6rem;
  width: 74.9rem;
}

@media screen and (max-width: 800px) {
  .discount__title {
    margin-bottom: 2rem;
    width: 33.8rem;
  }
}

.discount__lists {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto 10rem;
  width: 133rem;
}

@media screen and (max-width: 800px) {
  .discount__lists {
    grid-template-columns: 1fr;
    margin-bottom: 6rem;
    width: 33.8rem;
  }
}

.discount__list {
  background-color: #fff;
  border-radius: 2rem;
}

@media screen and (min-width: 801px) {
  .discount__list:nth-child(3) {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 800px) {
  .discount__list {
    border-radius: 1rem;
  }
}

.discount__list-head {
  align-items: center;
  display: flex;
  min-height: 12rem;
  padding-left: 6rem;
  position: relative;
}

.discount__list-head::before {
  background: center left / contain no-repeat #ffdf00;
  border-radius: 0 10rem 10rem 0;
  content: "";
  height: 4.6rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.9rem;
}

.discount__list:nth-child(1) .discount__list-head::before {
  background-image: url(/images/discount-num-01.svg);
}

.discount__list:nth-child(2) .discount__list-head::before {
  background-image: url(/images/discount-num-02.svg);
}

.discount__list:nth-child(3) .discount__list-head::before {
  background-image: url(/images/discount-num-03.svg);
}

@media screen and (max-width: 800px) {
  .discount__list-head {
    min-height: 5rem;
    padding-left: 3.7rem;
  }

  .discount__list-head::before {
    height: 2.7rem;
    width: 2.9rem;
  }
}

.discount__list-title {
  width: 56rem;
}

@media screen and (max-width: 800px) {
  .discount__list-title {
    width: 29.2rem;
  }
}

.discount__list-body {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem;
}

@media screen and (max-width: 800px) {
  .discount__list-body {
    gap: 5rem;
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }
}

.discount__card {
  background-color: #f4f4f2;
  border-radius: 1rem;
}

@media screen and (max-width: 800px) {
  .discount__card {
    border-radius: .6rem;
  }
}

.discount__card-head {
  border-bottom: .3rem solid #fff;
  height: 7.5rem;
  padding-inline: 2.5rem;
}

@media screen and (max-width: 800px) {
  .discount__card-head {
    border-bottom: none;
    height: 4rem;
    padding-inline: 1.5rem;
  }
}

.discount__card-logo {
  margin-top: -1.8rem;
}

@media screen and (max-width: 800px) {
  .discount__card-logo {
    margin-top: -.8rem;
  }
}

.discount__card-logo--personal {
  width: 20.7rem;
}

@media screen and (max-width: 800px) {
  .discount__card-logo--personal {
    width: 10.3rem;
  }
}

.discount__card-logo--self {
  width: 18.1rem;
}

@media screen and (max-width: 800px) {
  .discount__card-logo--self {
    width: 9.1rem;
  }
}

.discount__card-body {
  padding: 2.5rem;
}

@media screen and (max-width: 800px) {
  .discount__card-body {
    padding: 0;
  }
}

.discount__card-title {
  color: #000;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: 2.5rem;
  min-height: 6rem;
}

@media screen and (max-width: 800px) {
  .discount__card-title {
    border-bottom: .2rem solid #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    min-height: auto;
    padding: 0 1.5rem 1.5rem;
  }
}

.discount__card-marker {
  position: relative;
  z-index: 0;
}

.discount__card-marker::after {
  background-color: #ffdf00;
  bottom: .2rem;
  content: "";
  height: .5rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .discount__card-marker::after {
    height: .3rem;
    border: .05rem;
  }
}

.discount__price-subtitle {
  display: block;
  font-size: 1.7rem;
  letter-spacing: .05em;
  margin-top: 1.8rem;
}

@media screen and (max-width: 800px) {
  .discount__price-subtitle {
    font-size: 1.2rem;
    margin-top: .6rem;
  }
}

.discount__prices {
  margin: 0;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, auto);
}

@media screen and (max-width: 800px) {
  .discount__prices {
    gap: 2rem;
    padding: 0 1rem 1.5rem;
  }
}

.discount__price {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.discount__price-title {
  align-items: center;
  background-color: #333;
  border-radius: .5rem;
  color: #fff;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 700;
  height: 2.8rem;
  justify-content: center;
  letter-spacing: .05em;
  min-width: 5.2rem;
  padding: 0 .6rem .2rem;
}

@media screen and (max-width: 800px) {
  .discount__price-title {
    border-radius: .3rem;
    font-size: 1rem;
    height: 1.5rem;
    min-width: 2.8rem;
    padding: 0 .4rem .1rem;
  }
}

.discount__price-text {
  color: #d2145a;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
}

@media screen and (max-width: 800px) {
  .discount__price-text {
    font-size: 1.3rem;
  }
}

.discount__price-num {
  display: inline-block;
  font-size: 4rem;
  letter-spacing: -.01em;
  line-height: 1;
}

@media screen and (max-width: 800px) {
  .discount__price-num {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 800px) {
  .discount__cta {
    padding-left: 1rem;
  }
}

/**
 *イベント
 */
.event {
  margin-top: -30rem;
  overflow: hidden;
  padding-block: 14rem;
  position: relative;
  z-index: 0;
}

.event::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 160rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 250rem;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .event {
    margin-top: -4rem;
    padding-block: 10rem;
  }

  .event::before {
    height: 29rem;
    width: 55rem;
  }
}

.event__title {
  margin: 0 auto 7.5rem;
  width: 62.7rem;
}

@media screen and (max-width: 800px) {
  .event__title {
    margin-bottom: 6rem;
    width: 26.6rem;
  }
}

.event__read {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 8rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .event__read {
    font-size: 1.7rem;
    letter-spacing: .05em;
    line-height: 1.55;
    margin-bottom: 5.5rem;
    margin-inline: auto;
    text-align: left;
    width: 33.7rem;
  }
}

.event__banners {
  display: flex;
  gap: 6rem;
  justify-content: center;
  margin-bottom: 13rem;
}

@media screen and (max-width: 800px) {
  .event__banners {
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 10rem;
  }
}

.event__banner {
  width: 85rem;
}

@media screen and (max-width: 800px) {
  .event__banner {
    width: 33.7rem;
  }
}

.event__banner-link {
  display: block;
}

.event__banner-img {
  border-radius: 1rem;
  box-shadow: .4rem .4rem .4rem rgba(0, 0, 0, .1);
}

@media screen and (max-width: 800px) {
  .event__banner-img {
    border-radius: .5rem;
    box-shadow: .2rem .2rem .2rem rgba(0, 0, 0, .1);
  }
}

/**
 *無料体験
 */
.muryou {
  background-color: #da2d72;
  display: grid;
  gap: 8rem;
  grid-template-columns: 74.5rem 71.5rem;
  padding-inline: 19.5rem 8.2rem;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .muryou {
    background-color: transparent;
    display: block;
    padding: 0 0 7.5rem 0;
  }

  .muryou::before {
    background-color: #da2d72;
    bottom: 0;
    content: "";
    height: calc(100% - 3rem);
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
}

.muryou__head {
  order: 1;
}

.muryou__head-img {
  border-top-left-radius: 6rem;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .muryou__head-img {
    border-top-left-radius: 0;
    border-top-right-radius: 3rem;
    height: 26rem;
  }
}

.muryou__body {
  padding-block: 8rem 10rem;
}

@media screen and (max-width: 800px) {
  .muryou__body {
    padding: 0;
  }
}

.muryou__title {
  margin-bottom: 4.5rem;
  width: 74rem;
}

@media screen and (max-width: 800px) {
  .muryou__title {
    margin-block: -2rem 2rem;
    padding-left: 2rem;
    position: relative;
    width: 33.6rem;
  }
}

.muryou__title::before {
  background: url(/images/muryou-3days.svg) left center / contain no-repeat;
  content: "";
  display: block;
  height: 8.1rem;
  margin-bottom: 3rem;
  width: 19.4rem;
}

@media screen and (max-width: 800px) {
  .muryou__title::before {
    height: 4.2rem;
    margin-bottom: 1.5rem;
    width: 10rem;
  }
}

.muryou__text {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.65;
  margin-bottom: 11rem;
}

@media screen and (max-width: 800px) {
  .muryou__text {
    font-size: 1.7rem;
    line-height: 1.55;
    margin: 0 auto 7rem;
    width: 33.5rem;
  }
}

@media screen and (max-width: 800px) {
  .muryou__cta {
    margin-bottom: 3.5rem;
  }
}

@media screen and (min-width: 801px) {
  .muryou__cta .cta-btn-wrap {
    margin-left: 2.5rem;
  }
}

.muryou__school {
  display: grid;
  place-content: center;
  width: 8.2rem;
}

@media screen and (min-width: 801px) {
  .muryou__school {
    height: 100%;
    margin-right: -86rem;
    position: absolute;
    right: 50%;
    top: 0;
  }
}

@media screen and (max-width: 800px) {
  .muryou__school {
    width: auto;
  }
}

.muryou__school-link {
  align-items: baseline;
  color: #fff;
  display: inline-flex;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}

.muryou__school-link::before {
  background: url(/images/muryou-pin.svg) center / contain no-repeat;
  content: "";
  height: 3.3rem;
  margin-bottom: 1rem;
  width: 2.6rem;
}

@media (any-hover: hover) {
  .muryou__school-link {
    transition: all .2s linear;
  }

  .muryou__school-link:hover {
    color: #fff;
    opacity: .6;
  }
}

@media screen and (max-width: 800px) {
  .muryou__school-link {
    border-bottom: .1rem solid;
    font-size: 1.3rem;
    letter-spacing: .18em;
    padding-bottom: 1.4rem;
    writing-mode: horizontal-tb;
  }

  .muryou__school-link::before {
    height: 1.8rem;
    margin: 0 .8rem 0 0;
    transform: translateY(.4rem);
    width: 1.4rem;
  }
}

.muryou__school-link-em {
  font-size: 2.5rem;
}

@media screen and (max-width: 800px) {
  .muryou__school-link-em {
    font-size: 1.5rem;
  }
}

/**
 *5つの特長
 */
.feature {
  padding-block: 14rem 18rem;
  position: relative;
  z-index: 0;
}

.feature::before,
.feature::after {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.feature::before {
  background-color: #ffd8dc;
  height: calc(100% - 19rem);
  top: 0;
}

.feature::after {
  background: url(/images/feature-bg.svg) center bottom / 100% no-repeat;
  bottom: 0;
  height: 20rem;
}

@media screen and (max-width: 800px) {
  .feature {
    padding: 7.5rem 0 12rem;
  }

  .feature::before {
    height: calc(100% - 4rem);
  }

  .feature::after {
    background-image: url(/images/feature-bg-sp.svg);
    height: 5rem;
  }
}

.feature__title {
  margin: 0 auto 8.52rem;
  width: 66.1rem;
}

@media screen and (max-width: 800px) {
  .feature__title {
    margin-bottom: 5.5rem;
    width: 32.5rem;
  }
}

.feature__read {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 9rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .feature__read {
    font-size: 1.7rem;
    letter-spacing: .05em;
    line-height: 1.55;
    margin-bottom: 5.5rem;
    margin-inline: auto;
    text-align: left;
    width: 33.7rem;
  }
}

.feature__lists {
  display: grid;
  gap: 6.4rem;
  grid-template-columns: repeat(2, 62.6rem);
  justify-content: center;
}

@media screen and (max-width: 800px) {
  .feature__lists {
    gap: 4rem;
    grid-template-columns: 1fr;
    margin-inline: auto;
    width: 34rem;
  }
}

.feature__list-box {
  background-color: #fff;
  border-radius: 3.8rem;
  box-shadow: .75rem .75rem .75rem rgba(0, 0, 0, .1);
  overflow: hidden;
  padding: 1.45rem;
  position: relative;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 800px) {
  .feature__list-box {
    border-radius: 2rem;
    box-shadow: .4rem .4rem .4rem rgba(0, 0, 0, .1);
    padding: .8rem;
  }
}

.feature__list-box::before {
  background: center left / 100% no-repeat;
  content: "";
  height: 16rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8rem;
}

@media screen and (max-width: 800px) {
  .feature__list-box::before {
    height: 8.6rem;
    width: 4.3rem;
  }
}

.feature__list:nth-child(1) .feature__list-box::before {
  background-image: url(/images/feature-num-01.png);
}

.feature__list:nth-child(2) .feature__list-box::before {
  background-image: url(/images/feature-num-02.png);
}

.feature__list:nth-child(3) .feature__list-box::before {
  background-image: url(/images/feature-num-03.png);
}

.feature__list:nth-child(4) .feature__list-box::before {
  background-image: url(/images/feature-num-04.png);
}

.feature__list:nth-child(5) .feature__list-box::before {
  background-image: url(/images/feature-num-05.png);
}

.feature__list-trigger {
  cursor: pointer;
  height: 18rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7rem;
}

@media screen and (max-width: 800px) {
  .feature__list-trigger {
    height: 10rem;
    width: 4rem;
  }
}

.feature__list-img {
  border-radius: 2.3rem;
}

@media screen and (max-width: 800px) {
  .feature__list-img {
    border-radius: 1.3rem;
  }
}

.feature__list-title {
  bottom: 0;
  display: grid;
  gap: .8rem;
  justify-items: start;
  left: 0;
  line-height: 1;
  padding: 3.6rem 3.4rem;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .feature__list-title {
    gap: .4rem;
    padding: 2rem 1.8rem;
  }
}

.feature__list-title-sm {
  background-color: #fff;
  border-radius: 1rem;
  color: #d2145a;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .8rem 1rem 1rem;
}

@media screen and (max-width: 800px) {
  .feature__list-title-sm {
    border-radius: .5rem;
    font-size: 1.5rem;
    padding: .4rem .5rem .6rem;
  }
}

.feature__list-title-lg {
  background-color: #d2145a;
  border-radius: 1rem;
  color: #fff;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .8rem 1rem 1rem;
}

@media screen and (max-width: 800px) {
  .feature__list-title-lg {
    border-radius: .5rem;
    font-size: 2rem;
    padding: .4rem .5rem .6rem;
  }
}

.feature__list-back {
  align-items: center;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 5rem;
  position: absolute;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, -0.5, 0.175, 1);
  width: 100%;
  will-change: transform;
}

@media screen and (max-width: 800px) {
  .feature__list-back {
    padding: 2.5rem;
  }
}

.feature__list-back::after {
  background-color: #fff;
  content: "";
  height: 100%;
  left: 99%;
  position: absolute;
  top: 0;
  width: 30%;
}

.feature__list-box.is-open .feature__list-back {
  transform: translateX(0%);
}

.feature__list-text {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2.2;
  opacity: 0;
  transform: translateX(-1.5rem);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.351s, opacity 0.7s ease-in 0.35s;
}

@media screen and (max-width: 800px) {
  .feature__list-text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.feature__list-box.is-open .feature__list-text {
  opacity: 1;
  transform: translateX(0px);
}

.feature__list-btn {
  background: url(/images/feature-toggle.png) center left / 100% no-repeat;
  content: "";
  height: 16rem;
  left: -8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8rem;
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  .feature__list-btn {
    height: 8.6rem;
    left: -4.3rem;
    width: 4.3rem;
  }
}

/**
 *学習システム
 */
.system {
  padding-block: 14rem;
}

@media screen and (max-width: 800px) {
  .system {
    padding-block: 10.5rem 0;
  }
}

.system__title {
  margin: 0 auto 8rem;
  width: 65rem;
}

@media screen and (max-width: 800px) {
  .system__title {
    margin-bottom: 6.5rem;
    width: 33.6rem;
  }
}

.system__read {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 8rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .system__read {
    font-size: 1.7rem;
    letter-spacing: .05em;
    line-height: 1.55;
    margin-bottom: 6.5rem;
    margin-inline: auto;
    text-align: left;
    width: 33.7rem;
  }
}

.system__lists {
  display: grid;
  gap: 10rem;
}

@media screen and (max-width: 800px) {
  .system__lists {
    gap: 6rem;
  }
}

.system__list {
  padding: 9rem 28rem 13rem 22rem;
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 801px) {
  .system__list:nth-child(1) {
    padding-bottom: 11rem;
  }

  .system__list:nth-child(2) {
    padding-bottom: 14.5rem;
  }
}

@media screen and (max-width: 800px) {
  .system__list {
    padding: 4rem 0;
  }
}

.system__list::after {
  background-color: #ffebed;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: calc(100% - 13rem);
  z-index: -1;
}

.system__list:nth-child(odd)::after {
  border-radius: 6rem 0 0 6rem;
  right: 0;
}

.system__list:nth-child(even)::after {
  border-radius: 0 6rem 6rem 0;
  left: 0;
}

@media screen and (max-width: 800px) {
  .system__list::after {
    width: 100%;
  }

  .system__list:nth-child(odd)::after {
    border-radius: 3rem 0 0 0;
  }

  .system__list:nth-child(even)::after {
    border-radius: 0 3rem 0 0;
  }
}

.system__box {
  align-items: start;
  display: grid;
  gap: 9rem;
  grid-template-columns: 65rem 1fr;
}

@media screen and (max-width: 800px) {
  .system__box {
    gap: 8rem;
    grid-template-columns: 1fr;
  }
}

.system__box-head {
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .system__list:nth-child(odd) .system__box-head {
    padding-left: 3.6rem;
  }

  .system__list:nth-child(even) .system__box-head {
    padding-right: 3.6rem;
  }
}

.system__box-img {
  border-radius: 4rem;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .system__box-img {
    height: 40rem;
  }

  .system__list:nth-child(odd) .system__box-img {
    border-radius: 2rem 0 0 0;
  }

  .system__list:nth-child(even) .system__box-img {
    border-radius: 0 2rem 0 0;
  }
}

.system__box-logo {
  bottom: 0;
  left: 5rem;
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .system__box-logo {
    left: 1.5rem;
  }
}

.system__box-logo--personal {
  transform: translateY(50%);
  width: 46rem;
}

@media screen and (max-width: 800px) {
  .system__box-logo--personal {
    transform: translateY(60%);
    width: 21.8rem;
  }
}

.system__box-logo--self {
  transform: translateY(48%);
  width: 38.8rem;
}

@media screen and (max-width: 800px) {
  .system__box-logo--self {
    transform: translateY(62%);
    width: 19.1rem;
  }
}

.system__box-logo--bresapo {
  transform: translateY(70%);
  width: 37.7rem;
}

@media screen and (max-width: 800px) {
  .system__box-logo--bresapo {
    transform: translateY(54%);
    width: 21rem;
  }
}

.system__box-body {
  margin-top: 7rem;
}

@media screen and (max-width: 800px) {
  .system__box-body {
    margin-top: 0;
  }
}

.system__box-title {
  display: grid;
  font-size: 3.6rem;
  font-weight: 700;
  gap: .6rem;
  justify-items: start;
  letter-spacing: .12em;
  line-height: 1;
  margin-bottom: 6rem;
}

@media screen and (max-width: 800px) {
  .system__box-title {
    font-size: 2rem;
    gap: .4rem;
    letter-spacing: .1em;
    margin-bottom: 3.5rem;
    padding-inline: 1.8rem;
  }
}

.system__box-title .sm {
  font-size: 2.8rem;
}

@media screen and (max-width: 800px) {
  .system__box-title .sm {
    font-size: 1.6rem;
    letter-spacing: .08em;
  }
}

.system__box-title-top,
.system__box-title-bottom {
  border-radius: 1rem;
  display: inline-block;
  padding: .8rem 1.4rem 1.2rem;
}

.system__box-title-top {
  background-color: #fff;
  color: #d2145a;
}

.system__box-title-bottom {
  background-color: #d2145a;
  color: #fff;
}

@media screen and (max-width: 800px) {

  .system__box-title-top,
  .system__box-title-bottom {
    border-radius: .6rem;
    padding: .45rem .8rem .7rem;
  }
}

.system__box-text {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 2;
  margin-bottom: 8rem;
}

@media screen and (max-width: 800px) {
  .system__box-text {
    font-size: 1.6rem;
    line-height: 1.65;
    margin-bottom: 4rem;
    padding-inline: 1.8rem;
  }
}

.system__box-card {
  background-color: #fff;
  border-radius: 2rem;
  padding: 3.5rem;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .system__box-card {
    padding: 1.8rem;
  }

  .system__list:nth-child(odd) .system__box-card {
    border-radius: 0 1rem 1rem 0;
    margin-right: 1.8rem;
  }

  .system__list:nth-child(even) .system__box-card {
    border-radius: 1rem 0 0 1rem;
    margin-left: 1.8rem;
  }
}

.system__box-card+.system__box-card {
  margin-top: 3rem;
}

@media screen and (max-width: 800px) {
  .system__box-card+.system__box-card {
    margin-top: 1.5rem;
  }
}

.system__box-card-title {
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 800px) {
  .system__box-card-title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.system__box-card-title .sm {
  font-size: 2.7rem;
}

@media screen and (max-width: 800px) {
  .system__box-card-title .sm {
    font-size: 1.4rem;
  }
}

.system__box-card-title .marker {
  position: relative;
  z-index: 0;
}

.system__box-card-title .marker::after {
  background-color: #fbdc00;
  bottom: .4rem;
  content: "";
  height: .85rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .system__box-card-title .marker::after {
    bottom: .15rem;
    height: .45rem;
  }
}

.system__box-card-medal {
  position: absolute;
  right: 2.5rem;
  top: -4.8rem;
  width: 11rem;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .system__box-card-medal {
    right: 1.4rem;
    top: -2rem;
    width: 5.8rem;
  }
}

.system__box-labels {
  display: grid;
  gap: 1.5rem;
}

.system__box-labels--type1 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 800px) {
  .system__box-labels--type1 {
    margin-top: 2rem;
    gap: .7rem 1.2rem;
  }

  .system__box-labels--type2 {
    gap: 1.4rem;
  }
}

.system__box-label {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.4;
  padding: 1.1rem 4rem 1.25rem 1.5rem;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .system__box-label {
    font-size: 1.4rem;
    line-height: 1.2;
    padding: .6rem 2rem .75rem 1rem;
  }

  .system__box-labels--type1 .system__box-label {
    font-size: 1.2rem;
  }

  .system__box-labels--type2 .system__box-label {
    padding-right: 3.5rem;
  }
}

.system__box-label::before,
.system__box-label::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.system__box-label::before {
  background-color: #f4f4f2;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.system__box-labels--type1 .system__box-label::before {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 0 100%);
}

@media screen and (max-width: 800px) {
  .system__box-labels--type1 .system__box-label::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.3rem), calc(100% - 1.3rem) 100%, 0 100%);
  }
}

.system__box-labels--type2 .system__box-label::before {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), calc(100% - 4rem) 100%, 0 100%);
}

@media screen and (max-width: 800px) {
  .system__box-labels--type2 .system__box-label::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.4rem), calc(100% - 2.4rem) 100%, 0 100%);
  }
}

.system__box-label::after {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  right: 0;
  bottom: 0;
}

.system__box-labels--type1 .system__box-label::after {
  background-color: #d1cd98;
  height: 2.5rem;
  width: 2.5rem;
}

@media screen and (max-width: 800px) {
  .system__box-labels--type1 .system__box-label::after {
    height: 1.3rem;
    width: 1.3rem;
  }
}

.system__box-labels--type2 .system__box-label::after {
  background-color: #b5b090;
  height: 4rem;
  width: 4rem;
}

@media screen and (max-width: 800px) {
  .system__box-labels--type2 .system__box-label::after {
    height: 2.4rem;
    width: 2.4rem;
  }
}

.system__box-label .em {
  color: #d2145a;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 800px) {
  .system__box-label .em {
    font-size: 1.4rem;
  }
}

.system__box-card-info {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-top: 2.5rem;
}

@media screen and (max-width: 800px) {
  .system__box-card-info {
    font-size: 1.2rem;
    margin-top: 1.2rem;
  }
}

.system__box-card-media {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 25.8rem;
}

@media screen and (max-width: 800px) {
  .system__box-card-media {
    gap: 1.5rem;
    grid-template-columns: 1fr 13.5rem;
  }
}

.system__box-card-img {
  border-radius: 1rem;
}

@media screen and (max-width: 800px) {
  .system__box-card-img {
    border-radius: .5rem;
  }
}

.system__box-card-text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 800px) {
  .system__box-card-text {
    font-size: 1.4rem;
    line-height: 1.65;
  }
}

.system__box-card-text--lg {
  font-size: 2.4rem;
}

@media screen and (max-width: 800px) {
  .system__box-card-text--lg {
    font-size: 1.4rem;
  }
}

/**
 *SPECIAL CONTENTS
 */
.special {
  background: url(/images/special-bg.svg) center top / cover no-repeat;
  padding: 14rem 29.5rem;
}

@media screen and (max-width: 800px) {
  .special {
    background-image: url(/images/special-bg-sp.svg);
    padding: 10rem 1.8rem;
  }
}

.special__head {
  display: grid;
  gap: 11rem;
  grid-template-columns: 58rem 47.9rem;
  margin-bottom: 12rem;
}

@media screen and (max-width: 800px) {
  .special__head {
    gap: 6rem;
    grid-template-columns: 1fr;
    margin-bottom: 6rem;
  }
}

.special__title {
  margin-bottom: 8.5rem;
  width: 48.5rem;
}

@media screen and (max-width: 800px) {
  .special__title {
    margin-bottom: 6rem;
    width: 30.5rem;
  }
}

.special__read {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
  color: #2782cc;
}

@media screen and (max-width: 800px) {
  .special__read {
    font-size: 1.7rem;
    letter-spacing: 0;
    line-height: 1.9;
  }
}

.special__read-item {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 0%);
  border-radius: .5rem;
  padding: .2rem 1rem .4rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media screen and (max-width: 800px) {
  .special__read-item {
    border-radius: .3rem;
    padding: .1rem .5rem .2rem;
  }
}

.special__subtitle {
  margin-bottom: 4rem;
  width: 16rem;
}

@media screen and (max-width: 800px) {
  .special__subtitle {
    margin-bottom: 1.3rem;
    width: 10.5rem;
  }
}

.special__content {
  border-radius: 2rem;
  box-shadow: 1.2rem 1.2rem .9rem rgba(0, 0, 0, 0.3);
  display: block;
  overflow: hidden;
}

@media (any-hover: hover) {
  .special__content {
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .special__content:hover {
    box-shadow: .6rem .6rem .45rem rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translate(0, -.2rem);
  }
}

@media screen and (max-width: 800px) {
  .special__content {
    border-radius: 1rem;
    box-shadow: .5rem .5rem .3rem rgba(0, 0, 0, 0.3);
  }
}

.special__movie {
  border-radius: .5rem;
  box-shadow: 1.3rem 1.3rem .9rem rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  position: relative;
}

@media screen and (max-width: 800px) {
  .special__movie {
    border-radius: .3rem;
    box-shadow: .9rem .9rem .7rem rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
  }
}

.special__movie::before {
  background: url(/images/special-icon-play.svg) center / 100% no-repeat;
  content: "";
  height: 5.6rem;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 5.6rem;
}

@media screen and (max-width: 800px) {
  .special__movie::before {
    height: 3.9rem;
    width: 3.9rem;
  }
}

.special__more-wrap {
  text-align: right;
}

.special__more {
  display: inline-block;
  filter: drop-shadow(.5rem .5rem .3rem rgba(0, 0, 0, 0.3));
  width: 17.9rem;
}

@media (any-hover: hover) {
  .special__more {
    transition: filter 0.3s, transform 0.3s;
  }

  .special__more:hover {
    filter: drop-shadow(.25rem .25rem .2rem rgba(0, 0, 0, 0.3));
    opacity: 1;
    transform: translate(0, -.2rem);
  }
}

@media screen and (max-width: 800px) {
  .special__more {
    filter: drop-shadow(.3rem .3rem .2rem rgba(0, 0, 0, 0.3));
    width: 12.8rem;
  }
}

.special__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}

@media screen and (max-width: 800px) {
  .special__lists {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

/**
 *現役合格実績
 */
.success {
  background-color: #ffd8dc;
  padding: 14rem 30rem 0;
}

@media screen and (max-width: 800px) {
  .success {
    padding: 10rem 1.8rem 0;
  }
}

.performance {
  margin-bottom: 12rem;
}

@media screen and (max-width: 800px) {
  .performance {
    margin-bottom: 10rem;
  }
}

.performance__title {
  margin: 0 auto 7.5rem;
  width: 47.6rem;
}

@media screen and (max-width: 800px) {
  .performance__title {
    margin-bottom: 6rem;
    width: 27.6rem;
  }
}

.performance__read {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 8rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .performance__read {
    font-size: 1.7rem;
    letter-spacing: .05em;
    line-height: 1.55;
    margin-bottom: 6rem;
    width: 33.7rem;
  }
}

.performance__lists {
  display: grid;
  gap: 6rem 7rem;
  grid-template-columns: repeat(2, 1fr);
  height:100%;
}

@media screen and (max-width: 800px) {
  .performance__lists {
    gap: 4rem;
    grid-template-columns: 1fr;
  }
}

/*

@media screen and (min-width: 801px) {

  .performance__list:nth-child(1) {

    grid-column: span 2 / span 2;

  }

}

*/

.performance__box {
  background-color: #fff;
  border-radius: 4rem;
  box-shadow: .3rem .3rem .3rem rgba(0, 0, 0, 0.2);
  padding: 4.5rem 3.5rem 3.5rem;
}

@media screen and (max-width: 800px) {
  .performance__box {
    border-radius: 2rem;
    box-shadow: .2rem .2rem .2rem rgba(0, 0, 0, 0.2);
    padding: 3rem 1.8rem 1.8rem;
  }
}

@media screen and (min-width: 801px) {
  .performance__box--01 {
    position: relative;
  }
}

@media screen and (min-width: 801px) {
  .performance__box--01 .performance__box-title {
    left: 4.5rem;
    position: absolute;
    top: 10rem;
    width: 79.1rem;
  }
}

@media screen and (max-width: 800px) {
  .performance__box--01 .performance__box-title {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 801px) {
  .performance__box--01 .performance__box-chart {
    margin-inline: auto 1rem;
    width: 46.1rem;
  }
}

.performance__box--01 .performance__box-ann {
  bottom: 3.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  left: 4.5rem;
  letter-spacing: .05em;
  line-height: 1.8;
  position: absolute;
}

@media screen and (max-width: 800px) {
  .performance__box--01 .performance__box-ann {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    position: static;
  }
}

.performance__box-note {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 3rem;
  text-align: right;
}

@media screen and (max-width: 800px) {
  .performance__box-note {
    font-size: 1.4rem;
    margin-top: 1.8rem;
  }
}

.performance__results {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 800px) {
  .performance__results {
    gap: 1.5rem;
  }
}

.performance__result {
  border-bottom: .2rem dashed #c7c7c7;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  align-items: end;
}

@media screen and (max-width: 800px) {
  .performance__result {
    border-bottom-width: .1rem;
    padding-bottom: 1rem;
  }
}

.performance__result-title {
  flex: 1;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 800px) {
  .performance__result-title {
    font-size: 1.7rem;
  }
}

.performance__result-title .sm {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.35;
}

@media screen and (max-width: 800px) {
  .performance__result-title .sm {
    font-size: 1.2rem;
  }
}

.performance__result-text {
  align-items: baseline;
  display: flex;
  gap: .2rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: -.2rem;
}

@media screen and (max-width: 800px) {
  .performance__result-text {
    font-size: 1.2rem;
    gap: .1rem;
    margin-bottom: -.1rem;
  }
}

.performance__result-text .em {
  color: #d2145a;
  display: inline-block;
  font-size: 5.1rem;
  letter-spacing: -.04em;
  transform: translateY(.1rem);
}

@media screen and (max-width: 800px) {
  .performance__result-text .em {
    font-size: 2.7rem;
    transform: translateY(.05rem);
  }
}

.performance__box--02 .performance__box-title {
  margin: 0 auto 7.5rem;
  width: 45.4rem;
}

@media screen and (max-width: 800px) {
  .performance__box--02 .performance__box-title {
    margin-bottom: 3.5rem;
    width: 26.7rem;
  }
}

.performance__box--03 .performance__box-title {
  margin: 0 auto 6rem;
  width: 43.6rem;
}

@media screen and (max-width: 800px) {
  .performance__box--03 .performance__box-title {
    margin-bottom: 3.5rem;
    width: 25.4rem;
  }
}

/**
 *合格体験談
 */
.voice {
  padding-bottom: 14rem;
  position: relative;
}

@media screen and (max-width: 800px) {
  .voice {
    padding-bottom: 10rem;
  }
}

.voice__title {
  margin: 0 auto 12rem;
  width: 43.6rem;
}

@media screen and (max-width: 800px) {
  .voice__title {
    margin-bottom: 6rem;
    width: 23.9rem;
  }
}

.voice__lists {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 10rem;
}

@media screen and (max-width: 800px) {
  .voice__lists {
    grid-template-columns: 1fr;
    margin-bottom: 7rem;
  }
}

.voice__box {
  background-color: #fff;
  border-bottom-right-radius: 4rem;
  box-shadow: .4rem .4rem .3rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 800px) {
  .voice__box {
    border-bottom-right-radius: 2rem;
    box-shadow: .2rem .2rem .2rem rgba(0, 0, 0, 0.2);
  }
}

.voice__box::before {
  background-color: #d2145a;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: .9rem;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .voice__box::before {
    width: .5rem;
  }
}

.voice__box-head {
  padding: 3rem 3.5rem 5rem;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .voice__box-head {
    padding: 2rem 1rem 4.5rem 1.8rem;
  }
}

.voice__box-title {
  align-items: center;
  color: #d2145a;
  display: inline-grid;
  font-size: 3rem;
  font-weight: 700;
  gap: 2.5rem;
  grid-template-columns: 8.6rem 1fr;
  letter-spacing: .1em;
  line-height: 1.22;
  margin-bottom: 2.5rem;
  padding-bottom: 3rem;
  position: relative;
}

@media screen and (max-width: 800px) {
  .voice__box-title {
    font-size: 1.6rem;
    gap: 1.4rem;
    grid-template-columns: 4.6rem 1fr;
    margin-bottom: 1.3rem;
    padding-bottom: 1.5rem;
  }
}

.voice__box-title::before {
  background: url(/images/voice-label.svg) center / 100% no-repeat;
  content: "";
  height: 8.6rem;
  width: 8.6rem;
}

@media screen and (max-width: 800px) {
  .voice__box-title::before {
    height: 4.6rem;
    width: 4.6rem;
  }
}

.voice__box-title::after {
  border-bottom: .2rem dashed #d1cd98;
  bottom: 0;
  content: "";
  left: -3.5rem;
  position: absolute;
  width: calc(100% + 3.5rem);
}

@media screen and (max-width: 800px) {
  .voice__box-title::after {
    border-bottom-width: .1rem;
    left: -1.8rem;
    width: calc(100% + 1.8rem);
  }
}

.voice__box-name {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 5rem;
}

@media screen and (max-width: 800px) {
  .voice__box-name {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}

.voice__box-name .em {
  font-weight: 700;
}

.voice__box-name .sm {
  font-size: 1.85rem;
}

@media screen and (max-width: 800px) {
  .voice__box-name .sm {
    font-size: 1.1rem;
  }
}

.voice__box-read {
  font-size: 2.6rem;
  letter-spacing: -.04em;
  line-height: 1.95;
}

@media screen and (max-width: 800px) {
  .voice__box-read {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: -.08em;
  }
}

.voice__box-read-item {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #eae9e1 0%);
  border-radius: .9rem;
  padding: .2rem 1rem .4rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media screen and (max-width: 800px) {
  .voice__box-read-item {
    border-radius: .5rem;
    padding: 0 .5rem .1rem;
  }
}

.voice__box-img {
  bottom: 0;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: -1;
}

.voice__box-toggle {
  background-color: #fff;
  border-radius: 50%;
  bottom: 1.8rem;
  height: 6rem;
  position: absolute;
  right: 1.8rem;
  width: 6rem;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .voice__box-toggle {
    bottom: 1rem;
    height: 3.2rem;
    right: 1rem;
    width: 3.2rem;
  }
}

.voice__box-toggle::before,
.voice__box-toggle::after {
  background-color: #d2145a;
  border-radius: .3rem;
  content: "";
  height: .3rem;
  inset: 0;
  margin: auto;
  position: absolute;
  transition: all .3s;
  width: 2.4rem;
}

@media screen and (max-width: 800px) {

  .voice__box-toggle::before,
  .voice__box-toggle::after {
    height: .2rem;
    width: 1.2rem;
  }
}

.voice__box-toggle::after {
  transform: rotate(90deg);
}

.is-accordion-open .voice__box-toggle::before {
  opacity: 0;
}

.is-accordion-open .voice__box-toggle::after {
  transform: rotate(180deg);
}

.voice__box-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.voice__box-text {
  border-top: .2rem dashed #d1cd98;
  color: #000;
  font-size: 2rem;
  letter-spacing: .05em;
  line-height: 1.75;
  padding: 3rem 3.5rem;
}

@media screen and (max-width: 800px) {
  .voice__box-text {
    border-top-width: .1rem;
    font-size: 1.5rem;
    padding: 2rem 2rem 2.5rem 2.5rem;
  }
}

.voice__cta .cta-btn-wrap {
  width: 55.6rem;
}

@media screen and (max-width: 800px) {
  .voice__cta .cta-btn-wrap {
    width: 28.9rem;
  }
}

.voice__cta .cta-btn {
  font-size: 3.45rem;
}

@media screen and (max-width: 800px) {
  .voice__cta .cta-btn {
    font-size: 1.8rem;
  }
}

.voice__cta .cta-btn__em {
  font-size: 4.2rem;
}

@media screen and (max-width: 800px) {
  .voice__cta .cta-btn__em {
    font-size: 2.2rem;
  }
}

.voice__illust {
  bottom: 0;
  left: 50%;
  margin-left: -57rem;
  position: absolute;
  width: 16rem;
}

@media screen and (max-width: 800px) {
  .voice__illust {
    margin-left: -16rem;
    width: 7rem;
  }
}


/**
 *校舎のご案内
 */
.school {
  padding-block: 14rem;
}

@media screen and (max-width: 800px) {
  .school {
    padding-block: 10rem;
  }
}

.school__title {
  margin: 0 auto 8rem;
  width: 52.7rem;
}

@media screen and (max-width: 800px) {
  .school__title {
    margin-bottom: 6rem;
    width: 28.4rem;
  }
}

.school__read {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 8rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .school__read {
    font-size: 1.7rem;
    letter-spacing: .05em;
    line-height: 1.55;
    margin: 0 auto 6rem;
    text-align: left;
    width: 30.5rem;
  }
}

.school__lists {
  display: grid;
  gap: 6.5rem;
  grid-template-columns: repeat(2, 62.4rem);
  justify-content: center;
}

@media screen and (max-width: 800px) {
  .school__lists {
    gap: 4rem;
    grid-template-columns: repeat(1, 31.1rem);
  }
}

.school__item {
  background-color: #f4f4f2;
  border-radius: 2rem;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .school__item {
    border-radius: 1rem;
  }
}

.school__item::after {
  background-color: #d2145a;
  border-top-left-radius: 2rem;
  bottom: 0;
  color: #fff;
  content: "詳しく見る";
  display: grid;
  font-size: 2rem;
  font-weight: 500;
  height: 4.1rem;
  letter-spacing: .15em;
  padding-bottom: .2rem;
  place-content: center;
  position: absolute;
  right: 0;
  width: 16.1rem;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .school__item::after {
    border-top-left-radius: 1rem;
    font-size: 1rem;
    height: 2rem;
    padding-bottom: .1rem;
    width: 8rem;
  }
}

.school__item-head {
  padding: 2.2rem 2.5rem 0;
}

@media screen and (max-width: 800px) {
  .school__item-head {
    padding: 1rem 1.2rem 0;
  }
}

.school__item-title {
  border-bottom: .2rem dashed #babab9;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  padding: 0 0 1.8rem 3.6rem;
  position: relative;
}

@media screen and (max-width: 800px) {
  .school__item-title {
    border-bottom-width: .1rem;
    font-size: 1.5rem;
    margin-bottom: .5rem;
    padding: 0 0 .8rem 1.8rem;
  }
}

.school__item-title::before {
  background: url(/images/school-map.svg) center left / contain no-repeat;
  content: "";
  height: 2.9rem;
  left: 0;
  position: absolute;
  top: .6rem;
  width: 2.3rem;
}

@media screen and (max-width: 800px) {
  .school__item-title::before {
    height: 1.6rem;
    top: .3rem;
    width: 1.25rem;
  }
}

.school__item--new .school__item-title::after {
  background: url(/images/school-badge.svg) center left / contain no-repeat;
  content: "";
  display: inline-block;
  height: 3.1rem;
  margin: 0 0 -.5rem 1.5rem;
  width: 9.4rem;
}

@media screen and (max-width: 800px) {
  .school__item--new .school__item-title::after {
    height: 1.6rem;
    width: 4.95rem;
    margin: 0 0 -.2rem .75rem;
  }
}

.school__item-text {
  font-size: 2.4rem;
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 3em;
}

@media screen and (max-width: 800px) {
  .school__item-text {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: .6rem;
    min-height: 2.8em;
  }
}

.school__item-text .sm {
  font-size: 2.2rem;
}

@media screen and (max-width: 800px) {
  .school__item-text .sm {
    font-size: 1rem;
  }
}

/**
 *よくある質問
 */
.faq {
  background: url(/images/faq-bg-repeat.png) left top / 20rem repeat;
  padding: 14rem 30rem;
}

@media screen and (max-width: 800px) {
  .faq {
    background-size: 10rem;
    padding: 8rem 1.4rem;
  }
}

.faq__title {
  margin: 0 auto 8rem;
  width: 53.5rem;
}

@media screen and (max-width: 800px) {
  .faq__title {
    margin-bottom: 6rem;
    width: 28.7rem;
  }
}

.faq__lists {
  display: grid;
  gap: 2rem;
}

@media screen and (max-width: 800px) {
  .faq__lists {
    gap: 1.5rem;
  }
}

.faq__box-head {
  align-items: center;
  background-color: #fff;
  border-radius: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 10.5rem 1fr;
  margin-bottom: 1rem;
  min-height: 12rem;
  padding: 1.5rem 11.5rem 1.5rem 0;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .faq__box-head {
    border-radius: 1rem;
    gap: 1.2rem;
    grid-template-columns: 5.5rem 1fr;
    margin-bottom: .5rem;
    min-height: 6.2rem;
    padding: .8rem 4.5rem .8rem 0;
  }
}

.faq__box-head::before {
  background: center / 6rem no-repeat;
  border-right: .2rem dashed #d1cd98;
  content: "";
  display: grid;
  height: 100%;
  place-content: center;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .faq__box-head::before {
    border-right-width: .1rem;
    background-size: 3.2rem;
  }
}

.faq__list:nth-child(1) .faq__box-head::before {
  background-image: url(/images/faq-q1.svg);
}

.faq__list:nth-child(2) .faq__box-head::before {
  background-image: url(/images/faq-q2.svg);
}

.faq__list:nth-child(3) .faq__box-head::before {
  background-image: url(/images/faq-q3.svg);
}

.faq__list:nth-child(4) .faq__box-head::before {
  background-image: url(/images/faq-q4.svg);
}

.faq__box-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.25;
}

@media screen and (max-width: 800px) {
  .faq__box-title {
    font-size: 1.5rem;
  }
}

.faq__box-toggle {
  background-color: #d2145a;
  border-radius: 50%;
  height: 4.3rem;
  position: absolute;
  right: 3.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.3rem;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .faq__box-toggle {
    height: 2.2rem;
    right: 1.2rem;
    width: 2.2rem;
  }
}

.faq__box-toggle::before,
.faq__box-toggle::after {
  background-color: #fff;
  border-radius: .3rem;
  content: "";
  height: .3rem;
  inset: 0;
  margin: auto;
  position: absolute;
  transition: all .3s;
  width: 1.7rem;
}

@media screen and (max-width: 800px) {

  .faq__box-toggle::before,
  .faq__box-toggle::after {
    height: .1rem;
    width: .8rem;
  }
}

.faq__box-toggle::after {
  transform: rotate(90deg);
}

.is-accordion-open .faq__box-toggle::before {
  opacity: 0;
}

.is-accordion-open .faq__box-toggle::after {
  transform: rotate(180deg);
}

.faq__box-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.faq__box-text {
  background-color: #fff;
  border-radius: 2rem;
  font-size: 2.1rem;
  letter-spacing: .05em;
  line-height: 1.8;
  padding: 3rem 4rem 3rem 10.5rem;
  position: relative;
}

@media screen and (max-width: 800px) {
  .faq__box-text {
    border-radius: 1rem;
    font-size: 1.4rem;
    line-height: 1.75;
    padding: 1.5rem 1.5rem 1.5rem 5.5rem;
  }
}

.faq__box-text::before {
  background: url(/images/faq-a.svg) center / 100% no-repeat;
  content: "";
  height: 3.6rem;
  left: 3.6rem;
  position: absolute;
  top: 3.6rem;
  width: 3.6rem;
}

@media screen and (max-width: 800px) {
  .faq__box-text::before {
    height: 2.1rem;
    left: 1.7rem;
    top: 2rem;
    width: 2.1rem;
  }
}

.faq__box-flows {
  margin-top: 1em;
  display: flex;
  gap: 3rem;
}

@media screen and (max-width: 800px) {
  .faq__box-flows {
    flex-direction: column;
    gap: 1.9rem;
    width: 22rem;
  }
}

.faq__box-flow {
  align-items: center;
  background-color: #eae9e1;
  border-radius: 1rem;
  display: grid;
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  grid-template-columns: 4rem 1fr;
  letter-spacing: .05em;
  line-height: 1.3;
  padding: .5rem .5rem .5rem 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .faq__box-flow {
    border-radius: .5rem;
    font-size: 1.4rem;
    grid-template-columns: 2.6rem 1fr;
    letter-spacing: .15em;
    padding-right: 1.5rem;
  }
}

.faq__box-flow::before {
  background: center / 2rem no-repeat;
  border-right: 1px dashed #fff;
  content: "";
  display: grid;
  height: 100%;
  place-content: center;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .faq__box-flow::before {
    background-size: 1.6rem;
  }
}

.faq__box-flow:nth-child(1)::before {
  background-image: url(/images/faq-flow-num1.svg);
}

.faq__box-flow:nth-child(2)::before {
  background-image: url(/images/faq-flow-num2.svg);
}

.faq__box-flow:nth-child(3)::before {
  background-image: url(/images/faq-flow-num3.svg);
}

.faq__box-flow:nth-child(4)::before {
  background-image: url(/images/faq-flow-num4.svg);
}

.faq__box-flow:nth-child(5)::before {
  background-image: url(/images/faq-flow-num5.svg);
}

.faq__box-flow:not(:last-child)::after {
  background: url(/images/faq-flow-arrow.svg) center / contain no-repeat;
  bottom: 0;
  content: "";
  height: 1.1rem;
  margin-block: auto;
  position: absolute;
  right: -2.5rem;
  top: 0;
  transform: rotate(-90deg);
  width: 2rem;
}

@media screen and (max-width: 800px) {
  .faq__box-flow:not(:last-child)::after {
    bottom: -1.45rem;
    height: .95rem;
    margin-block: 0;
    position: absolute;
    right: 9.7rem;
    top: auto;
    transform: none;
    width: 1.75rem;
  }
}

/**
 *お申込み・お問合せ
 */
.inquiry__inner {
  padding: 14rem 30rem;
  background-color: #D2135A;
}

@media screen and (max-width: 800px) {
  .inquiry__inner {
    padding: 10rem 1rem;
  }
}

.inquiry__title {
  margin: 0 auto 8.5rem;
  width: 72.9rem;
}

@media screen and (max-width: 800px) {
  .inquiry__title {
    margin-bottom: 5rem;
    width: 31rem;
  }
}

.inquiry__wrap {
  background-color: #fff;
  border-radius: 6rem;
  box-shadow: .5rem .4rem .5rem rgba(0, 0, 0, .1);
  padding: 9rem 9rem 10rem;
}

@media screen and (max-width: 800px) {
  .inquiry__wrap {
    border-radius: 3rem;
    box-shadow: none;
    padding: 2.5rem 1.5rem 4rem;
  }
}

.inquiry__wrap .g-recaptcha {
  max-width: 300px;
  margin: 0 auto;
}

.inquiry__head {
  background-color: #f4f4f2;
  border-radius: 2rem;
  margin-bottom: 6rem;
  padding: 5.5rem 0 4rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .inquiry__head {
    border-radius: 1rem;
    margin-bottom: 4.5rem;
    padding: 2rem 0 2.5rem;
    margin-inline: 1rem;
  }
}

.inquiry__head p {
  font-weight: 700;
  letter-spacing: .05em;
}

.inquiry__head .copy {
  font-size: 3rem;
  line-height: 1.47;
  margin-bottom: 3rem;
}

@media screen and (max-width: 800px) {
  .inquiry__head .copy {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
}

.inquiry__head .open {
  font-size: 2.4rem;
  margin-bottom: 4.5rem;
}

@media screen and (max-width: 800px) {
  .inquiry__head .open {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.inquiry__head address a {
  display: inline-block;
}

.inquiry__head address img {
  width: 59rem;
}

@media screen and (max-width: 800px) {
  .inquiry__head address img {
    width: 25.3rem;
  }
}

.inquiry__note {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
}

.inquiry__note strong {
  font-weight: 700;
}

@media screen and (max-width: 800px) {
  .inquiry__note {
    font-size: 1.5rem;
  }
}

.inquiry__form {
  margin: 0;
  padding-top: 10rem;
}

@media screen and (max-width: 800px) {
  .inquiry__form {
    padding-top: 5rem;
  }
}

.inquiry__form dt,
.inquiry__form dd {
  width: 100%;
  margin: 0;
  padding: 0.25em 0;
}

.inquiry__form dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.inquiry__form dt.no-title {
  height: 0;
  padding: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .inquiry__form dt {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 800px) {
  .inquiry__form dt {
    font-size: 1.6rem;
    margin-bottom: .5rem;
  }
}

.inquiry__form dt span {
  vertical-align: middle;
}

.inquiry__form dt::after {
  background: no-repeat center/contain;
  content: "";
  display: inline-block;
  height: 4.2rem;
  margin-left: .5em;
  vertical-align: middle;
  width: 6rem;
}

@media screen and (max-width: 800px) {
  .inquiry__form dt::after {
    height: 2.4rem;
    width: 3.6rem;
  }
}

.inquiry__form dt.optional::after {
  background-image: url(/images/inquiry-optional.svg);
}

.inquiry__form .subjects {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2rem;
}

@media screen and (max-width: 800px) {
  .inquiry__form .subjects {
    justify-content: space-between;
    margin-top: -1rem;
  }
}

.subject-block {
  display: inline-block;
  margin: 2rem 1.6rem 0 0;
}

.subject-block--checkbox {
  flex-basis: 26.7rem;
}

.subject-block--checkbox:nth-of-type(4n) {
  margin-right: 0;
}

.subject-block--radio {
  flex-basis: 17.1rem;
}

@media screen and (max-width: 800px) {
  .subject-block {
    margin: 1rem 0 0;
  }

  .subject-block--checkbox {
    flex-basis: calc(50% - .5rem);
  }

  .subject-block--radio {
    flex-basis: calc(100% / 3 - .5rem);
  }
}

.subject-block input {
  display: none;
}

.subject-block label {
  background: #fff;
  border: 1px solid #d2145a;
  border-radius: .5rem;
  color: #333;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
  padding: 1em 0 1.1em 2.4em;
  user-select: none;
}

@media screen and (max-width: 1024px) {
  .subject-block label {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 800px) {
  .subject-block label {
    font-size: 1.4rem;
  }
}

.subject-block input[type=checkbox]+label:before,
.subject-block input[type=radio]+label:before {
  content: "";
  display: block;
  height: 1.25vw;
  left: 0.6em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25vw;
}

.subject-block input[type=checkbox]+label:before {
  border: 1px solid #d2145a;
  transition: all .12s, border-color .08s;
}

.subject-block input[type=checkbox]:checked+label:before {
  border-left-color: transparent;
  border-radius: 0;
  border-top-color: transparent;
  left: 1em;
  margin-top: -0.156vw;
  opacity: 1;
  transform: translateY(-50%) rotate(45deg);
  width: 0.521vw;
}

.subject-block input[type=radio]+label:before {
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  transition: all 250ms ease;
}

.subject-block input[type=radio]:checked+label:before {
  background-color: #d2145a;
  box-shadow: inset 0 0 0 .20833vw #f4f4f4;
}

@media screen and (max-width: 800px) {

  .subject-block input[type=checkbox]+label:before,
  .subject-block input[type=radio]+label:before {
    height: 4.8vw;
    width: 4.8vw;
  }

  .subject-block input[type=checkbox]:checked+label:before {
    margin-top: -0.533vw;
    width: 2.133vw;
  }

  .subject-block input[type=radio]:checked+label:before {
    box-shadow: inset 0 0 0 .8vw #f4f4f4;
  }
}

.inquiry__form--select {
  width: auto;
  position: relative;
  display: inline-block;
}

.inquiry__form--select::after {
  content: "";
  width: 1.042vw;
  height: 1.042vw;
  border: 0px;
  border-bottom: solid 1px #d2145a;
  border-right: solid 1px #d2145a;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1.563vw;
  margin-top: -0.781vw;
}

@media screen and (max-width: 800px) {
  .inquiry__form--select::after {
    width: 4vw;
    height: 4vw;
    right: 5.333vw;
    margin-top: -2.933vw;
  }
}

.inquiry__form dd {
  margin-bottom: 6rem;
}

@media screen and (max-width: 800px) {
  .inquiry__form dd {
    margin-bottom: 3rem;
  }
}

.inquiry__form input,
.inquiry__form select,
.inquiry__form textarea {
  border: 1px solid #A6A6A6;
  border-radius: .5rem;
  color: #333;
  font-family: inherit;
  padding: .8em 1.2em .9em;
  background: #fff;
  font-size: 2.4rem;
}

@media (any-hover: hover) {

  .inquiry__form input:hover,
  .inquiry__form select:hover,
  .inquiry__form textarea:hover {
    opacity: .9;
  }
}

@media screen and (max-width: 1024px) {

  .inquiry__form input,
  .inquiry__form select,
  .inquiry__form textarea {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 800px) {

  .inquiry__form input,
  .inquiry__form select,
  .inquiry__form textarea {
    font-size: 1.5rem;
  }
}

.inquiry__form input:required,
.inquiry__form select:required,
.inquiry__form textarea:required {
  border-color: #d2145a;
}

.inquiry__form input::placeholder,
.inquiry__form select::placeholder,
.inquiry__form textarea::placeholder {
  color: #808080;
}

.inquiry__form input,
.inquiry__form textarea {
  width: 100%;
}

.inquiry__form textarea {
  min-height: 32.5rem;
}

@media screen and (max-width: 800px) {
  .inquiry__form textarea {
    min-height: 19.6rem;
  }
}

.inquiry__form select {
  min-width: 46rem;
  padding: .8em 3.6em .9em 1.2em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 800px) {
  .inquiry__form select {
    min-width: 27.8rem;
  }
}

.inquiry__form--alert {
  display: none;
  padding: 0.25em 0;
  color: #fd1d46;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  .inquiry__form--alert {
    font-size: 1.6rem;
  }
}

.inquiry__form--note {
  font-size: 1.9rem;
  line-height: 1.4;
  padding-top: 7rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .inquiry__form--note {
    padding-top: 4rem;
    font-size: 1.2rem;
  }
}

.address-block {
  display: flex;
  flex-wrap: wrap;
}

.address-block:not(:last-child) {
  margin-bottom: 1.563vw;
}

.address-block input {
  width: 89%;
}

.address-block--code input {
  width: 40%;
}

.address-title {
  align-self: center;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  width: 11%;
}

@media screen and (max-width: 800px) {
  .address-block:not(:last-child) {
    margin-bottom: 5.333vw;
  }

  .address-title {
    font-size: 1.4rem;
    margin-bottom: .5em;
  }

  .address-block input,
  .address-block--code input,
  .address-title {
    display: block;
    width: 100%;
  }
}

.address-block-note {
  display: block;
  font-size: 2.1rem;
  line-height: 1.5;
  margin-top: .5em;
  padding-left: 1em;
  text-indent: -1em;
  width: 100%;
}

.address-block-note.is-error {
  color: #fd1d46;
  font-weight: 700;
}

@media screen and (max-width: 800px) {
  .address-block-note {
    font-size: 1.2rem;
  }
}

.inquiry__button {
  text-align: center;
}

.inquiry__button button {
  background-color: #ffdf00;
  border-radius: 10em;
  border: none;
  box-shadow: .6rem .6rem .8rem rgba(0, 0, 0, .1);
  color: #333;
  cursor: pointer;
  font-family: inherit;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 12rem;
  min-width: 50.8rem;
  padding: 0;
  text-shadow: .3rem .3rem .3rem rgba(0, 0, 0, .05);
}

@media (any-hover: hover) {
  .inquiry__button button {
    transition: all 0.2s linear;
  }

  .inquiry__button button:hover {
    background-color: #d2145a;
    color: #fff;
  }
}

@media screen and (max-width: 800px) {
  .inquiry__button button {
    box-shadow: .4rem .4rem .5rem rgba(0, 0, 0, .1);
    font-size: 2.2rem;
    line-height: 6.6rem;
    min-width: 28.5rem;
    text-shadow: .2rem .2rem .2rem rgba(0, 0, 0, .05);
  }
}

/*---------
## 送信完了 ##
----------*/
.result-header {
  position: relative;
  width: 100%;
}

.result-header__logo {
  left: 5rem;
  position: absolute;
  top: 5rem;
  width: 16rem;
  z-index: 10;
}

@media screen and (max-width: 800px) {
  .result-header__logo {
    top: 2rem;
    left: 1.5rem;
    width: 6.8rem;
  }
}

.result-content {
  background-color: #D2135A;
}

.result {
  padding: 15rem 0;
  width: 139.4rem;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .result {
    padding: 7.5rem 0 5rem;
    width: 33.5rem;
  }
}

.result__wrap {
  background-color: #fff;
  border-radius: 6rem;
  margin: 0 auto;
  padding: 18rem 0;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .result__wrap {
    border-radius: 3rem;
    padding: 6rem 0;
  }
}

.result__title {
  color: #D2135A;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2em;
}

@media screen and (max-width: 800px) {
  .result__title {
    font-size: 1.8rem;
  }
}

.result__fail {
  color: #fd1d46;
}

.result__box--text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 800px) {
  .result__box--text {
    font-size: 1.4rem;
  }
}

.result__box--button {
  margin-top: 4.167vw;
}

@media screen and (max-width: 800px) {
  .result__box--button {
    margin-top: 10.667vw;
  }
}

.result__box--button button {
  font-size: 2rem;
  line-height: 7rem;
  min-width: 32.5rem;
}

@media screen and (max-width: 800px) {
  .result__box--button button {
    font-size: 1.6rem;
    line-height: 6rem;
    min-width: 26rem;
  }
}

/**
 * Footer
 */
.footer {
  background-color: #333;
  padding-block: 7rem 4.5rem;
}

@media screen and (max-width: 800px) {
  .footer {
    padding: 3.5rem 3rem;
  }
}

.footer__official-title {
  margin: 0 auto 1rem;
  width: 23.5rem;
}

@media screen and (max-width: 800px) {
  .footer__official-title {
    width: 21.5rem;
  }
}

.footer__official-logo {
  margin: 0 auto 5rem;
  width: 20.5rem;
}

@media screen and (max-width: 800px) {
  .footer__official-logo {
    margin-bottom: 3rem;
    width: 12.8rem;
  }
}

.footer__copyright {
  color: #fff;
  font-size: 1.95rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}

/**
 * Side
 */
.side {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

@media screen and (max-width: 800px) {
  .side {
    align-self: center;
    background-color: #d2145a;
    bottom: 0;
    display: grid;
    height: 6.3rem;
    left: 0;
    padding-inline: 1rem;
    right: auto;
    top: auto;
    transform: none;
    transition: transform .3s ease-out;
    width: 100%;
    transform: translateY(100%);
  }

  .side.is-visible {
    transform: translateY(0%);
  }

  .side.is-hidden {
    transform: translateY(100%);
  }
}

.side__cta {
  display: grid;
  gap: 2.4rem;
}

@media screen and (max-width: 800px) {
  .side__cta {
    align-items: center;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.side__btn {
  align-items: center;
  border-radius: 10rem;
  box-shadow: .4rem .4rem .5rem rgba(0, 0, 0, .1);
  display: flex;
  font-size: 1.9rem;
  font-weight: 500;
  height: 27.8rem;
  letter-spacing: .14em;
  padding-top: 2rem;
  position: relative;
  text-shadow: .2rem .2rem .2rem rgba(0, 0, 0, .05);
  width: 6.5rem;
  writing-mode: vertical-rl;
}

@media (any-hover: hover) {
  .side__btn {
    transition: all 0.2s linear;
  }

  .side__btn:hover {
    background-color: #d2145a;
    color: #fff;
  }
}

@media screen and (max-width: 800px) {
  .side__btn {
    box-shadow: .2rem .2rem .25rem rgba(0, 0, 0, .1);
    font-size: 1.4rem;
    height: 4rem;
    letter-spacing: .08em;
    padding: 0 1rem .2rem 1.4rem;
    text-align: center;
    text-shadow: .1rem .1rem .1rem rgba(0, 0, 0, .05);
    width: 100%;
    writing-mode: horizontal-tb;
  }
}

.side__btn::after {
  background: url(/images/btn-arrow.svg) center / 100% no-repeat;
  bottom: 1.5rem;
  content: "";
  height: 2.7rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2.7rem;
}

@media screen and (max-width: 800px) {
  .side__btn::after {
    bottom: auto;
    height: 1.4rem;
    left: auto;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.4rem;
  }
}

.side__btn--pink {
  background-color: #ff8db0;
  color: #fff;
}

.side__btn--yellow {
  background-color: #ffdf00;
  color: #333;
}

.side__btn-em {
  font-size: 2.6rem;
  font-weight: 700;
}

@media screen and (max-width: 800px) {
  .side__btn-em {
    font-size: 1.7rem;
  }
}

em.pb {
  font-style: normal;
  color: #db356c
}



/**
 * 新開校バナー 追加css
 */

 .openschool-banner{
width:75%;
margin:0 auto;
text-align:center;
 }

 @media screen and (max-width: 800px) {

 .openschool-banner{
width:100%;
margin:0 auto;
text-align:center;
 }

 }

 .openschool {
     background: url(/images/faq-bg-repeat.png) left top / 20rem repeat;
  padding: 14rem 24rem 44rem 24rem;
}

@media screen and (max-width: 800px) {
  .openschool {
    background-size: 10rem;
    padding: 6rem 1.4rem 11rem 1.4rem;
  }
}


.discount {
  background-color: #ffd8dc;
  padding: 16rem 0 16rem;
}

@media screen and (max-width: 800px) {
  .discount {
    padding: 5rem 0 6rem;
  }
}




.event {
  margin-top: -30rem;
  overflow: hidden;
  padding-block: 14rem;
  position: relative;
  z-index: 0;
}



@media screen and (max-width: 800px) {
  .event {
    margin-top: -4rem;
    padding-block: 10rem;
  }

  .event::before {
    height: 29rem;
    width: 55rem;
  }
}




/**
 * 新開校バナー 追加css
 */



.open-banner {
  position: relative;
  overflow: hidden;

  border-radius: 10px;

  /* ドロップシャドウ */
  box-shadow:
    0 10px 30px rgba(0,0,0,.12),
    0 2px 10px rgba(0,0,0,.08);
}

/* 背景画像 */
.open-banner__main {
  display: block;
  width: 100%;
  height: auto;
}

/* ボタン位置 */
.open-banner__link {
  position: absolute;

  right: 2.2%;
  bottom: 5.2%;

  display: block;

  /* 少し大きく */
  width: 36%;

  max-width: 560px;

  transition: opacity .6s;
}


/* ボタン画像 */
.open-banner__btn {
  display: block;
  width: 100%;
  height: auto;

  transform: scale(1);

  /* ゆっくり */
  transition: transform 1.2s cubic-bezier(.19,1,.22,1);

  will-change: transform;
}

/* PCのみ */
@media (hover: hover) and (pointer: fine) {

  .open-banner__btn {
    transform: scale(1);

    transition:
      transform 1.2s cubic-bezier(.19,1,.22,1);

    will-change: transform;
  }

  .open-banner__link:hover .open-banner__btn {
    transform: scale(1.04);
  }

}


/* ボタン画像 */
.open-banner__btn {
  display: block;
  width: 100%;
  height: auto;
}

/* SP */
@media screen and (max-width: 768px) {

  .open-banner {
  position: relative;
  overflow: hidden;

  border-radius: 5px;

  /* ドロップシャドウ */
  box-shadow:
    0 10px 30px rgba(0,0,0,.12),
    0 2px 10px rgba(0,0,0,.08);
}



  .open-banner {
    border-radius: 12px;
  }

  .open-banner__link {
    right: 1%;
    bottom: 4%;
    width: 40%;
  }

    /* hover */
  .open-banner__btn a:hover {
    opacity:1!important;
  }

}