@charset "UTF-8";
/*======================================
    Font / Color
======================================*/
@font-face {
  font-family: 'NotoSansCJKjp';
  src: url(../fonts/NotoSansCJKjp-Black.otf) format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansCJKjp';
  src: url(../fonts/NotoSansCJKjp-Bold.otf) format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansCJKjp';
  src: url(../fonts/NotoSansCJKjp-Medium.otf) format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansCJKjp';
  src: url(../fonts/NotoSansCJKjp-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSerifCJK';
  src: url(../fonts/NotoSerifCJKjp-Black.otf) format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'KozGoPr6N';
  src: url(../fonts/KozGoPr6N-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica';
  src: url(../fonts/Helvetica.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'ContrailOne';
  src: url(../fonts/ContrailOne-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'BebasNeue';
  src: url(../fonts/BebasNeueRegular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'AcuminVariableConcept';
  src: url(../fonts/AcuminVariableConcept.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}

/*======================================
    media query
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "NotoSansCJKjp", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #fff;
}

img {
  width: 100%;
}

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

a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.is-nowrap {
  white-space: nowrap;
}

.is-br {
  display: block;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 960px) {
  .is-pc {
    display: inline;
  }
}

.is-sp {
  display: inline;
}

@media screen and (max-width: 960px) {
  .is-sp {
    display: block;
  }
}

.cta-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
}

@media screen and (min-width: 961px) {
  .cta-btn {
    right: calc(84 / 1920 * 100vw);
  }
}

.fixed-cta__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(262 / 1920 * 100vw, 262px);
  height: min(262 / 1920 * 100vw, 262px);
  background-color: #FF5F00;
  border: 2px solid #FF5F00;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: min(45 / 1920 * 100vw, 4.5rem);
  font-weight: 700;
  line-height: 1.22222;
  letter-spacing: 0.1em;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.35);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.35);
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 960px) {
  .fixed-cta__link {
    width: min(100 / 375 * 100vw, 150px);
    height: min(100 / 375 * 100vw, 150px);
    font-size: min(15 / 375 * 100vw, 23px);
  }
}

.fixed-cta__link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.fixed-cta__sub {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -65%);
          transform: translate(-50%, -65%);
}

.fixed-cta__sub--text {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.5778em;
  line-height: 1.23077;
  padding: 0.5em;
  background-color: #FFFFDC;
  color: #FF0000;
  border-radius: 5px;
  letter-spacing: 0.05em;
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
  position: relative;
}

.fixed-cta__sub--text::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  width: 26px;
  height: 12px;
  background: url(../img/3years/arrow_bottom.svg) no-repeat center center/contain;
}

.section__inner {
  width: 1080px;
  max-width: 92%;
  margin: 0 auto;
}

/*======================================
    footer
======================================*/
.footer__container {
  padding: 44px min(60 / 1920 * 100vw, 60px) 35px min(45 / 1920 * 100vw, 45px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  .footer__container {
    display: block;
    padding: calc(60 / 960 * 100vw) 10px calc(70 / 960 * 100vw);
  }
}

.footer__contents {
  font-size: 1.5rem;
}

@media screen and (max-width: 960px) {
  .footer__contents {
    font-size: calc(24 / 960 * 100vw);
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

@media screen and (max-width: 960px) {
  .footer__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__link a {
  font-weight: 500;
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (max-width: 960px) {
  .footer__link a {
    text-align: center;
  }
}

.footer__link a:hover {
  opacity: 0.7;
}

.copyright {
  margin-top: 1.6667em;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .copyright {
    text-align: center;
  }
}

.copyright span {
  font-family: "Helvetica";
}

.footer__sns {
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .footer__sns {
    margin: calc(66 / 960 * 100vw) auto 0;
  }
}

.footer__sns--links {
  width: 225px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 11.1111%;
}

@media screen and (max-width: 960px) {
  .footer__sns--links {
    width: calc(450 / 960 * 100vw);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.footer__sns--link a {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.footer__sns--link a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  .header__logo {
    width: calc(388 / 960 * 100vw);
  }
}

.intro__logos.-year1 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 960px) {
  .intro__logos.-year1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(36 / 960 * 100vw);
  }
}

@media screen and (max-width: 960px) {
  .intro__logos.-intro {
    -webkit-transform: translateX(-4%);
            transform: translateX(-4%);
    gap: calc(60 / 960 * 100vw);
  }
}

.intro__logos.-top {
  margin-top: calc(42 / 1920 * 100vw);
}

.section__lead {
  display: none;
}

@media screen and (min-width: 961px) {
  .section__lead.-pc {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .section__lead.-sp {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .top {
    display: block;
  }
}

.top__img {
  position: relative;
}

.top__img--text {
  position: absolute;
  top: calc(276 / 1920 * 100vw);
  left: calc(184 / 1920 * 100vw);
  font-size: calc(33 / 1920 * 100vw);
  width: 20em;
  z-index: 2;
}

@media screen and (max-width: 960px) {
  .top__img--text {
    display: none;
  }
}

.top__contents__wrap {
  position: relative;
}

.top__lead {
  width: calc(130 / 1920 * 100vw);
  margin: calc(124 / 1920 * 100vw) auto 0;
}

@media screen and (max-width: 960px) {
  .top__lead {
    width: calc(188 / 960 * 100vw);
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-45%, -122%);
            transform: translate(-45%, -122%);
  }
}

.top__title {
  margin-top: calc(20 / 1920 * 100vw);
}

@media screen and (max-width: 960px) {
  .top__title {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

.top__title--list {
  margin: 0 auto;
  padding-top: calc(40 / 1920 * 100vw);
  padding-bottom: calc(30 / 1920 * 100vw);
}

@media screen and (max-width: 960px) {
  .top__title--list {
    padding-top: calc(35 / 960 * 100vw);
    padding-bottom: calc(30 / 960 * 100vw);
  }
}

.top__title--list:nth-child(1) {
  width: calc(305 / 1920 * 100vw);
}

@media screen and (max-width: 960px) {
  .top__title--list:nth-child(1) {
    width: calc(390 / 960 * 100vw);
  }
}

.top__title--list:nth-child(2) {
  width: calc(453 / 1920 * 100vw);
  padding-left: calc(10 / 1920 * 100vw);
  padding-right: calc(10 / 1920 * 100vw);
  border-top: 1px solid #000;
}

@media screen and (max-width: 960px) {
  .top__title--list:nth-child(2) {
    width: calc(578 / 960 * 100vw);
    padding-left: calc(12 / 960 * 100vw);
    padding-right: calc(12 / 960 * 100vw);
  }
}

.intro__logo:nth-child(1) {
  width: calc(132 / 1920 * 100vw);
}

@media screen and (max-width: 960px) {
  .intro__logo:nth-child(1) {
    width: calc(167 / 960 * 100vw);
  }
}

.intro__logo:nth-child(2) {
  width: calc(174 / 1920 * 100vw);
}

@media screen and (max-width: 960px) {
  .intro__logo:nth-child(2) {
    width: calc(219 / 960 * 100vw);
  }
}

.intro__logo.-icon1 {
  width: 140px;
}

@media screen and (max-width: 960px) {
  .intro__logo.-icon1 {
    width: calc(288 / 960 * 100vw);
  }
}

.intro__logo.-icon2 {
  width: 183px;
}

@media screen and (max-width: 960px) {
  .intro__logo.-icon2 {
    width: calc(318 / 960 * 100vw);
  }
}

.top__btn--container {
  margin-top: calc(80 / 1920 * 100vw);
}

@media screen and (max-width: 960px) {
  .top__btn--container {
    margin-top: calc(60 / 960 * 100vw);
  }
}

@media screen and (max-width: 960px) {
  .intro {
    padding-bottom: calc(280 / 960 * 100vw);
  }
}

.cta__lead {
  letter-spacing: -0.02em;
}

@media screen and (max-width: 960px) {
  .intro__inner {
    width: 79.5%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 960px) {
  .intro__text {
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 960px) {
  .img:nth-child(3) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .img:nth-child(4) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .img:nth-child(5) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .img:nth-child(6) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .img:nth-child(7) {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .img:nth-child(8) {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
}

/*======================================
    step
======================================*/
.step {
  padding: 86px 0 82px;
  background-color: #F0F0F0;
}

@media screen and (max-width: 960px) {
  .step {
    padding: calc(86 / 960 * 100vw) 0 calc(136 / 960 * 100vw);
  }
}

.step__title {
  text-align: center;
  color: #3D62AC;
  font-size: 2.3rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.step__title span.underline {
  font-size: 1.4783em;
  display: inline-block;
  letter-spacing: 0.2em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #FFF000), color-stop(80%, #FFF000), color-stop(80%, transparent), to(transparent));
  background: linear-gradient(transparent 55%, #FFF000 55%, #FFF000 80%, transparent 80%, transparent 100%);
  line-height: 2.2;
}

@media screen and (max-width: 960px) {
  .step__title span.underline {
    font-size: 1.9em;
    line-height: 1.5;
    margin-top: 0.1em;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #FFF000), color-stop(80%, #FFF000), color-stop(80%, transparent), to(transparent));
    background: linear-gradient(transparent 55%, #FFF000 55%, #FFF000 80%, transparent 80%, transparent 100%);
  }
}

@media screen and (max-width: 960px) {
  .step__title {
    font-size: calc(30 / 962 * 100vw);
    line-height: 1.83333;
  }
}

.step__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.1fr 1fr;
      grid-template-columns: 1fr 1.1fr 1fr;
  margin: 90px -30px 0;
}

@media screen and (max-width: 960px) {
  .step__items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin: calc(100 / 962 * 100vw) 0 0;
    grid-gap: calc(90 / 960 * 100vw);
  }
}

.step__item {
  padding: 64px 34px 96px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  text-align: center;
}

@media screen and (min-width: 961px) {
  .step__item:first-child {
    margin-left: 30px;
    padding-left: 0;
  }
}

.step__item:nth-child(2) {
  background-color: #fff;
  position: relative;
}

.step__item:nth-child(2)::before, .step__item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 41px;
  background: url(../img/1year/step-arrow.png) no-repeat center center/contain;
}

@media screen and (max-width: 960px) {
  .step__item:nth-child(2)::before, .step__item:nth-child(2)::after {
    width: calc(69 / 960 * 100vw);
    height: calc(89 / 960 * 100vw);
  }
}

.step__item:nth-child(2)::before {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) {
  .step__item:nth-child(2)::before {
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -45%) rotate(90deg);
            transform: translate(-50%, -45%) rotate(90deg);
  }
}

.step__item:nth-child(2)::after {
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

@media screen and (max-width: 960px) {
  .step__item:nth-child(2)::after {
    top: unset;
    bottom: 0;
    right: 50%;
    -webkit-transform: translate(50%, 55%) rotate(90deg);
            transform: translate(50%, 55%) rotate(90deg);
  }
}

@media screen and (min-width: 961px) {
  .step__item:nth-child(2) {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media screen and (max-width: 960px) {
  .step__item:nth-child(2) {
    padding-top: calc(100 / 960 * 100vw);
    padding-bottom: calc(116 / 960 * 100vw);
  }
}

@media screen and (min-width: 961px) {
  .step__item:nth-child(3) {
    margin-right: 30px;
    padding-right: 0;
  }
}

@media screen and (max-width: 960px) {
  .step__item {
    border-top: none;
    border-bottom: none;
    padding: 0 calc(84 / 960 * 100vw);
  }
}

.step__bubble--title {
  color: #fff;
  position: relative;
}

.step__bubble--container {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -130%);
          transform: translate(-50%, -130%);
}

@media screen and (max-width: 960px) {
  .step__bubble--container {
    position: initial;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.step__title--bubble {
  background-color: #3D62AC;
  width: 16.5em;
  height: 5.375em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.40909;
  position: relative;
}

.step__title--bubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 70%);
          transform: translate(-50%, 70%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 11px 0 11px;
  border-color: #3D62AC transparent transparent transparent;
}

@media screen and (max-width: 960px) {
  .step__title--bubble::before {
    border-width: 5.625vw 3.125vw 0 3.125vw;
  }
}

.step__title--bubble span.large {
  font-size: 1.375em;
  letter-spacing: 0.135em;
}

@media screen and (max-width: 960px) {
  .step__title--bubble span.large {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 960px) {
  .step__title--bubble {
    font-size: calc(38 / 962 * 100vw);
    margin: 0 auto;
  }
}

.step__age {
  display: block;
  width: 82px;
  height: 82px;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .step__age {
    width: calc(168 / 960 * 100vw);
    height: calc(168 / 960 * 100vw);
    margin-top: calc(64 / 960 * 100vw);
  }
}

.step__lead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1em;
  padding-bottom: 1.3333em;
  position: relative;
  border-bottom: 1px solid #0c5b9c;
}

.step__lead::before, .step__lead::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.step__lead::before {
  border: 14px solid transparent;
  border-top: 14px solid #0c5b9c;
}

@media screen and (max-width: 960px) {
  .step__lead::before {
    border: 2.8125vw solid transparent;
    border-top: 2.8125vw solid #0c5b9c;
  }
}

.step__lead::after {
  border: 14px solid transparent;
  border-top: 14px solid #F0F0F0;
  margin-top: -0.5%;
}

@media screen and (max-width: 960px) {
  .step__lead::after {
    border: 2.8125vw solid transparent;
    border-top: 2.8125vw solid #F0F0F0;
    margin-top: -3px;
  }
}

.step__lead.-white:after {
  border-top: 14px solid #fff;
}

@media screen and (max-width: 960px) {
  .step__lead.-white:after {
    border-top: 2.8125vw solid #fff;
  }
}

@media screen and (max-width: 1919px) {
  .step__lead {
    font-size: min(15 / 1200 * 100vw, 1.5rem);
  }
}

@media screen and (max-width: 960px) {
  .step__lead {
    font-size: calc(30 / 962 * 100vw);
    border-bottom: 2px solid #0c5b9c;
    line-height: 1.75;
  }
}

.step__item--img {
  margin-top: 16px;
  position: relative;
}

@media screen and (max-width: 960px) {
  .step__item--img {
    margin-top: calc(42 / 962 * 100vw);
  }
}

.step__item--img::before {
  content: "";
  display: block;
  padding-top: calc(230 / 306 * 100%);
}

.step__item--img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step__item--img.-step2::before {
  padding-top: calc(235 / 337 * 100%);
}

.step__subtitle {
  font-size: 2.4rem;
  letter-spacing: 0.21em;
  font-weight: 700;
  color: #0C5B9C;
  margin-top: 1em;
}

@media screen and (max-width: 960px) {
  .step__subtitle {
    font-size: calc(57 / 962 * 100vw);
  }
}

.step__text {
  margin-top: 1em;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media screen and (max-width: 1919px) {
  .step__text {
    font-size: min(15 / 1200 * 100vw, 1.5rem);
  }
}

@media screen and (max-width: 960px) {
  .step__text {
    font-size: calc(28 / 962 * 100vw);
    line-height: 1.96429;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

/*======================================
    interview
======================================*/
.interview {
  background-color: #F0F0F0;
}

.white__container {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 36px;
  margin-right: -26px;
}

@media screen and (max-width: 960px) {
  .white__container {
    margin-right: 0;
    padding: calc(70 / 962 * 100vw) calc(68 / 962 * 100vw);
    border-radius: 22px;
  }
  .white__container.-reason {
    padding-top: calc(52 / 962 * 100vw);
    padding-bottom: calc(120 / 960 * 100vw);
  }
}

.interview__title {
  font-size: 18px;
  width: 13em;
  -webkit-transform: translateX(-7%);
          transform: translateX(-7%);
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .interview__title {
    width: 14em;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    font-size: calc(38 / 962 * 100vw);
  }
}

.interview__lead {
  font-size: 2.3rem;
  line-height: 2.21739;
  letter-spacing: 0.04em;
  color: #3D62AC;
  font-weight: 700;
  text-align: center;
  margin-top: 19px;
  -webkit-transform: translateX(-1.5%);
          transform: translateX(-1.5%);
}

@media screen and (max-width: 960px) {
  .interview__lead {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    font-size: calc(30 / 962 * 100vw);
    line-height: 1.83333;
    margin-top: calc(40 / 962 * 100vw);
  }
}

.interview__lists {
  margin-top: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
  -webkit-column-gap: 40px;
          column-gap: 40px;
}

@media screen and (max-width: 960px) {
  .interview__lists {
    margin-top: calc(110 / 962 * 100vw);
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-gap: calc(68 / 962 * 100vw);
  }
}

.interview__list {
  display: contents;
}

@media screen and (max-width: 960px) {
  .interview__list {
    display: block;
  }
  .interview__list:nth-child(2) {
    padding: calc(74 / 962 * 100vw) 0;
    border-top: 1px solid #3D62AC;
    border-bottom: 1px solid #3D62AC;
  }
}

.interview__question {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.9rem auto;
      grid-template-columns: 1.9rem auto;
  grid-column-gap: 18px;
}

@media screen and (max-width: 960px) {
  .interview__question {
    -ms-grid-columns: calc(42 / 962 * 100vw) auto;
        grid-template-columns: calc(42 / 962 * 100vw) auto;
    grid-column-gap: calc(46 / 962 * 100vw);
  }
}

.interview__question--text {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.38095;
  letter-spacing: -0.05em;
  color: #0C5B9C;
}

@media screen and (max-width: 1919px) {
  .interview__question--text {
    font-size: min(21 / 1200 * 100vw, 2.1rem);
  }
}

@media screen and (max-width: 960px) {
  .interview__question--text {
    font-size: calc(47 / 962 * 100vw);
  }
}

.interview__question--text.-small {
  font-size: 1.7em;
  margin-top: 4px;
}

@media screen and (max-width: 1919px) {
  .interview__question--text.-small {
    font-size: min(17 / 1200 * 100vw, 1.7rem);
  }
}

@media screen and (max-width: 960px) {
  .interview__question--text.-small {
    font-size: calc(38 / 962 * 100vw);
  }
}

.interview__question--text span.yellow {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, transparent), color-stop(25%, #FFF000), color-stop(80%, #FFF000), color-stop(80%, transparent), to(transparent));
  background: linear-gradient(transparent 0%, transparent 25%, #FFF000 25%, #FFF000 80%, transparent 80%, transparent 100%);
}

.interview__question--text span.note {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .interview__question--text span.note {
    font-size: calc(24 / 960 * 100vw);
  }
}

.interview__question--text span.note span.is-half {
  display: inline-block;
  width: 0.5em;
}

.interview__question--text span.note span.is-half.-transform {
  -webkit-transform: translateX(-90%);
          transform: translateX(-90%);
}

.interview__result {
  margin-top: 20px;
}

@media screen and (max-width: 960px) {
  .interview__result {
    margin-top: calc(58 / 960 * 100vw);
  }
}

.interview__voice {
  margin-top: 27px;
}

@media screen and (max-width: 960px) {
  .interview__voice {
    margin-top: calc(60 / 962 * 100vw);
  }
}

.interview__voice--dl {
  font-size: 1.5em;
}

@media screen and (max-width: 1919px) {
  .interview__voice--dl {
    font-size: min(15 / 1200 * 100vw, 1.5rem);
  }
}

.interview__voice--dl dt {
  background-color: #3D62AC;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 0.5667em 0;
}

@media screen and (max-width: 960px) {
  .interview__voice--dl dt {
    font-size: calc(33 / 962 * 100vw);
  }
}

.interview__voice--dl dd {
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 0.6em;
}

@media screen and (max-width: 960px) {
  .interview__voice--dl dd {
    font-size: calc(28 / 962 * 100vw);
    margin-top: 1em;
  }
}

.interview__note {
  margin-top: 28px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .interview__note {
    font-size: calc(24 / 960 * 100vw);
    margin-top: calc(100 / 960 * 100vw);
    line-height: 1.58333;
  }
}

.interview__note--list {
  display: inline-block;
  padding-left: 1.1em;
  position: relative;
}

.interview__note--list::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*======================================
    reason
======================================*/
.reason {
  background-color: #F0F0F0;
  padding-top: 80px;
  padding-bottom: 140px;
}

@media screen and (max-width: 960px) {
  .reason {
    padding-top: calc(90 / 960 * 100vw);
    padding-bottom: calc(140 / 960 * 100vw);
  }
}

.reason__title {
  font-size: 3.9rem;
  width: 10.5em;
  margin: 0 auto;
  -webkit-transform: translate(-4%, 18%);
          transform: translate(-4%, 18%);
}

@media screen and (max-width: 960px) {
  .reason__title {
    font-size: calc(71 / 962 * 100vw);
    width: 6em;
  }
}

.reason__container {
  margin-top: 58px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 314px auto;
      grid-template-columns: 314px auto;
  grid-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  .reason__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: calc(100 / 962 * 100vw);
    grid-gap: calc(82 / 960 * 100vw);
  }
}

.reason__graph {
  padding-left: 30px;
}

@media screen and (max-width: 960px) {
  .reason__graph {
    padding-left: 0;
    width: 74%;
    margin: 0 auto;
    position: relative;
  }
  .reason__graph::before {
    content: "（回答者18名）";
    position: absolute;
    bottom: 2.5%;
    right: -16%;
    font-size: calc(24 / 962 * 100vw);
    font-weight: 700;
  }
}

.reason__graph--note {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 960px) {
  .reason__graph--note {
    display: none;
  }
}

.reason__contents {
  font-size: 1.4rem;
}

@media screen and (max-width: 960px) {
  .reason__contents {
    font-size: calc(28 / 962 * 100vw);
  }
}

@media screen and (max-width: 960px) {
  .reason__lists {
    padding-left: calc(24 / 960 * 100vw);
  }
}

@media screen and (max-width: 599px) {
  .reason__lists {
    padding-left: 0;
  }
}

.reason__list {
  padding-left: 20px;
  position: relative;
}

@media screen and (max-width: 960px) {
  .reason__list {
    padding-left: calc(45 / 962 * 100vw);
  }
}

.reason__list::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 5px;
  width: 8px;
  background-color: #3D62AC;
}

@media screen and (max-width: 960px) {
  .reason__list::before {
    width: calc(17 / 962 * 100vw);
  }
}

.reason__list:nth-child(2)::before {
  background-color: #F49F00;
}

.reason__list:nth-child(3)::before {
  background-color: #E74341;
}

.reason__list:nth-child(4)::before {
  background-color: #BC6FA9;
}

.reason__list:nth-child(5)::before {
  background-color: #7ABE54;
}

.reason__list:nth-child(n + 2) {
  margin-top: 18px;
}

@media screen and (max-width: 960px) {
  .reason__list:nth-child(n + 2) {
    margin-top: calc(56 / 962 * 100vw);
  }
}

.reason__list--title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.38095;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 960px) {
  .reason__list--title {
    line-height: calc(49 / 28);
  }
}

.reason__list--title.-blue {
  color: #3D62AC;
}

.reason__list--title.-orange {
  color: #F49F00;
}

.reason__list--title.-red {
  color: #E74341;
}

.reason__list--title.-purple {
  color: #BC6FA9;
}

.reason__list--title.-green {
  color: #7ABE54;
}

.reason__list--items {
  margin-top: 6px;
}

@media screen and (max-width: 960px) {
  .reason__list--items {
    margin-top: calc(28 / 962 * 100vw);
  }
}

.reason__list--item {
  padding-left: 1em;
  line-height: 1.57143;
  font-weight: 500;
  position: relative;
}

@media screen and (max-width: 960px) {
  .reason__list--item {
    line-height: 1.7;
  }
}

.reason__list--item::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

/*======================================
    youtube
======================================*/
.youtube {
  padding-top: 80px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #F0F0F0), color-stop(60%, transparent), to(transparent));
  background: linear-gradient(#F0F0F0 60%, transparent 60%, transparent 100%);
  margin-bottom: 140px;
}

@media screen and (max-width: 960px) {
  .youtube {
    padding-top: calc(130 / 962 * 100%);
    margin-bottom: calc(140 / 962 * 100vw);
  }
}

@media screen and (max-width: 960px) {
  .section__inner.-youtube {
    display: contents;
  }
}

.youtube__wrap {
  position: relative;
}

.youtube__wrap::before {
  content: "";
  display: block;
  padding-top: calc(646 / 1080 * 100%);
  background-color: #5D5D5D;
}

@media screen and (max-width: 960px) {
  .youtube__wrap::before {
    padding-top: calc(576 / 962 * 100%);
  }
}

.youtube__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*======================================
    voice
======================================*/
.modal__grid--wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 35%;
      grid-template-columns: auto 35%;
  grid-gap: 18px;
  margin-top: 0.8em;
}

@media screen and (max-width: 960px) {
  .modal__grid--wrap {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.modal__grid--texts > .voice__content--text {
  margin-top: 0;
}

.modal__img--note {
  margin-top: 0.5em;
  font-size: 1.3rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 960px) {
  .modal__img--note {
    color: #646464;
    line-height: 1.5;
    margin-top: 10px;
  }
}

.voice__content--title {
  font-size: 2em;
}

.voice__content--title span.is-half {
  display: inline-block;
  width: 0.5em;
}

@media screen and (max-width: 960px) {
  .voice__content--title {
    font-size: 1.4848em;
  }
}

@media screen and (max-width: 599px) {
  .voice__content--title {
    font-size: 1.8rem;
  }
}

.voice__content.-noborder {
  border-bottom: none;
}

.voice__note {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.73333;
  letter-spacing: 0.05em;
  margin-top: 1.8em;
}

@media screen and (max-width: 960px) {
  .voice__note {
    font-size: calc(29 / 960 * 100vw);
  }
}

@media screen and (min-width: 961px) {
  .voice {
    padding: 100px 0;
  }
}

/*======================================
    CTA
======================================*/
.top__btn {
  letter-spacing: 0.1em;
  font-weight: 900;
}

@media screen and (max-width: 960px) {
  .top__btn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3.8235em auto;
        grid-template-columns: 3.8235em auto;
  }
}

.top__btn span.btn__text {
  display: block;
  text-align: center;
  padding-left: 0;
}

@media screen and (max-width: 960px) {
  .cta-btn {
    visibility: hidden;
    display: none;
  }
}

.cta-btn__sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  padding: calc(20 / 960 * 100vw) 0;
  background-color: rgba(255, 255, 255, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.cta-btn__sp.is-active {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 961px) {
  .cta-btn__sp {
    visibility: hidden;
    display: none;
  }
}

.cta-btn__sp .top__btn {
  width: 95.625%;
  margin: 0 auto;
}

.cta__text--sub {
  display: block;
  font-size: 0.35em;
  letter-spacing: 0;
  margin-top: 0.75em;
  font-weight: 900;
}

.cta__text--sub span.is-half {
  display: inline-block;
  width: 0.5em;
}

.cta__text--sub span.is-half.-transform {
  -webkit-transform: translateX(-90%);
          transform: translateX(-90%);
}

.fixed-cta__sub--text {
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.fixed-cta__subtext {
  display: block;
  font-size: 0.4231em;
  color: #000;
  letter-spacing: 0;
  font-weight: 900;
  margin-top: 0.5em;
  line-height: 1.54545;
}

@media screen and (max-width: 960px) {
  .fixed-cta__subtext {
    font-size: 0.3333em;
  }
}

.fixed-cta__sub {
  -webkit-transform: translate(-50%, -29%);
          transform: translate(-50%, -29%);
}

@media screen and (max-width: 960px) {
  .fixed-cta__sub {
    -webkit-transform: translate(-50%, -20%);
            transform: translate(-50%, -20%);
  }
}

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

.cta__sub--text {
  font-weight: 700;
  font-size: 2.5rem;
  margin-top: 1em;
  display: inline-block;
  padding: 0.35em 0.5em;
  background-color: #FFF100;
  white-space: nowrap;
}

@media screen and (max-width: 960px) {
  .cta__sub--text {
    font-size: calc(30 / 960 * 100vw);
  }
}

@media screen and (max-width: 599px) {
  .cta__sub--text {
    font-size: calc(11 / 375 * 100vw);
  }
}

.cta__sub--text span.is-black {
  font-weight: 900;
}

.cta__sub--text span.is-half {
  display: inline-block;
  width: 0.5em;
}

.cta__sub--text span.is-half.-transform {
  -webkit-transform: translateX(-90%);
          transform: translateX(-90%);
}

/*======================================
    school
======================================*/
.school {
  padding-top: 130px;
}

@media screen and (max-width: 960px) {
  .school {
    padding-top: calc(130 / 960 * 100vw);
  }
}
