@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/*  font weight
--------------------------------------------- */
.fw--bold {
  font-weight: bold !important;
}

.fw--normal {
  font-weight: normal !important;
}

/*  font family
--------------------------------------------- */
.ff-asap {
  font-family: "Asap", sans-serif !important;
}

/*  background color
--------------------------------------------- */
.bg-brown {
  background-color: #c1ad63 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-yellow {
  background-color: #fffdf4 !important;
}

.bg-pink {
  background-color: #ffae9b !important;
}

/*  background image
--------------------------------------------- */
.bg-img--page-title {
  /* background-image: url(../img/common/bg_title.jpg); */
  background-color: #fffdf4;
}

/*  mod-anchors
--------------------------------------------- */
.mod-anchors {
  margin-right: auto;
  margin-left: auto;
  color: #707070;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.mod-anchors.mod-anchors--report {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  .mod-anchors {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    min-width: none;
    min-width: initial;
    width: 100%;
  }
}
.mod-anchors__item {
  /* margin-right: 5%; */
  width: 100%;
  counter-increment: num;
}

.mod-anchors__item.color_pink {
  border-color: #e84dc7;
}

.mod-anchors__item.color_pink .mod-anchors__icon {
  background-color: #fcf0f7;
}

.mod-anchors__item.color_orange {
  border-color: #e26600;
}

.mod-anchors__item.color_orange .mod-anchors__icon {
  background-color: #f9f6e1;
}

.mod-anchors__item.color_green {
  border-color: #3d9b00;
}

.mod-anchors__item.color_green .mod-anchors__icon {
  background-color: #f0f7eb;
}

.mod-anchors__item.color_blue {
  border-color: #429ad1;
}

.mod-anchors__item.color_blue .mod-anchors__icon {
  background-color: #ebf8fc;
}

.mod-anchors__item.color_Salmonpink {
  border-color: #fd9480;
}

@media screen and (max-width: 750px) {
  .mod-anchors__item {
    margin-right: 0;
    width: 100%;
  }
}
.mod-anchors__item:nth-of-type(2n) {
  margin-right: 0;
}

.mod-anchors__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 12px;
  padding-bottom: 12px;
  height: 100%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #615F5F;
}

.mod-anchors__link .arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mod-anchors__link .arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.mod-anchors__link img {
  margin-right: 0;
}

@media screen and (max-width: 750px) {
  .mod-anchors__link {
    padding-top: 1.33333vw;
    padding-bottom: 1.33333vw;
  }
  .mod-anchors__link .arrow {
    width: 6.6vw;
    height: 6.6vw;
  }
}
.ie11.windows7 .mod-anchors__link {
  height: 39px;
}

@media screen and (max-width: 750px) {
  .ie11.windows7 .mod-anchors__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 10vw;
  }
}
/* @media screen and (min-width: 750px) {
    .mod-anchors__link:hover {
        color: #FFAE9B;
    }
    .mod-anchors__link:hover:after {
        border-color: #FFAE9B;
    }
} */
.mod-anchors__icon {
  position: relative;
  font-size: 23px;
  font-weight: 500;
  margin-right: 10px;
  font-family: "Ubuntu";
}

.mod-anchors__icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #f3ed89;
  font-weight: bold;
  font-size: 1rem;
  font-family: "Asap", sans-serif;
  line-height: 1;
  -webkit-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
}

@media screen and (max-width: 750px) {
  .mod-anchors__icon {
    font-size: 5.3vw;
  }
  .mod-anchors__icon:before {
    font-size: 3.46667vw;
  }
}
.mod-anchors--exam .mod-anchors__icon:before {
  -webkit-transform: translate(-25%, -40%);
  transform: translate(-25%, -40%);
}

.mod-anchors--exam-school .mod-anchors__icon:before {
  -webkit-transform: translate(-50%, -20%);
  transform: translate(-50%, -20%);
}

.mod-anchors__txt {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 1.0714rem;
  line-height: 1.7;
  margin: 4.5px auto 0 0;
}

@media screen and (max-width: 750px) {
  .mod-anchors__txt {
    width: 100%;
    font-size: 4.2vw;
  }
}
.index-btn-wrapper {
  text-align: center;
}

/*  index-btn
--------------------------------------------- */
.index-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 42px 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #2a2e33;
  letter-spacing: 0.1em;
  height: 46px;
  border-radius: 28px;
  border: 2px solid #012C3D;
  padding: 0 20px;
  background-color: #fff;
}

.index-btn img {
  width: auto;
  margin-left: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.index-btn:hover img {
  -webkit-transform: translateX(9px);
  transform: translateX(9px);
}

@media screen and (max-width: 750px) {
  .index-btn {
    margin: 8.8vw 0 0;
    font-size: 3.3333333333vw;
    height: 9.3333333333vw;
  }
  .index-btn img {
    width: auto;
    margin-left: 3.4666666667vw;
  }
  .index-btn:hover img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*  mod-btn
--------------------------------------------- */
.mod-btn {
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-top: 14px;
  padding-bottom: 18px;
  width: 200px;
  border-radius: 30px;
  background-color: #ef7b7b;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.214rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
  padding-right: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mod-btn.close {
  display: none;
  margin-top: 2em;
}

@media screen and (max-width: 750px) {
  .mod-btn {
    padding-top: 4.8vw;
    padding-bottom: 4.8vw;
    width: 53.33333vw;
    border-radius: 20vw;
    font-size: 3.73333vw;
  }
}
@media screen and (min-width: 750px) {
  .mod-btn {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .mod-btn:hover {
    opacity: 0.8;
  }
  .ie11 .mod-btn {
    padding-top: 21px;
    padding-bottom: 15px;
  }
}
/*  mod-head-img
--------------------------------------------- */
.mod-head-img {
  margin-right: auto;
  margin-left: auto;
  width: 60px;
  height: 58px;
}

@media screen and (max-width: 750px) {
  .mod-head-img {
    width: 16vw;
    height: 15.46667vw;
  }
}
.mod-head-img img {
  width: 100%;
}

/*  mod-tab-block
--------------------------------------------- */
.mod-tab-block {
  padding-top: 80px;
}

.mod-tab-block__tab-selectors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 93%;
}

@media screen and (max-width: 750px) {
  .mod-tab-block__tab-selectors {
    margin-right: auto;
    margin-left: auto;
    width: 93.3333333333vw;
    max-width: 93.3333333333vw;
    padding: 0;
  }
}
@media screen and (min-width: 750px) {
  .mod-tab-block--pc-sp .mod-tab-block__tab-selectors {
    margin-right: auto;
    margin-left: auto;
  }
}
.mod-tab-block__tab-selector {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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: calc(50% - 5px);
  border-radius: 30px 30px 0 0;
  background-color: #CAB9B9;
  height: 90px;
  font-weight: bold;
  color: #FFF;
  font-size: 1.8rem;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .mod-tab-block__tab-selector {
    padding: 5.86667vw 0;
    width: 49%;
    font-size: 4vw;
    cursor: pointer;
    pointer-events: auto;
    height: 12vw;
  }
}
.mod-tab-block--pc-sp .mod-tab-block__tab-selector.current {
  position: relative;
  cursor: default;
  background-color: #EB7777;
  height: 110px;
  margin-bottom: -1px;
}
.mod-tab-block--pc-sp .mod-tab-block__tab-selector.current::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 13px 0 13px;
  border-color: #EB7777 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -18px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
  .mod-tab-block--pc-sp .mod-tab-block__tab-selector.current {
    height: 14.666667vw;
    font-size: 4vw;
  }
}
.mod-tab-block--pc-sp .mod-tab-block__tab-selector.current:hover {
  opacity: 1;
}

.mod-tab-block__tab-body {
  background-color: #FFF4F4;
  margin: 0 auto;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mod-tab-block__tab-content {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 71px;
}

@media screen and (max-width: 750px) {
  .mod-tab-block__tab-body {
    display: block;
    width: 93.3333333333vw;
    max-width: 93.3333333333vw;
    margin: 0 auto;
    padding: 0 3.3333333333vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mod-tab-block__tab-content {
    display: none;
    padding-top: 11.2vw;
    padding-right: 0;
    padding-left: 0;
    max-width: none;
    max-width: initial;
    width: 100%;
  }
}
.mod-tab-block__tab-content--sp-no-side-padding {
  padding-right: 0;
  padding-left: 0;
}

.mod-tab-block--pc-sp .mod-tab-block__tab-content {
  display: none;
}

.mod-tab-block--pc-sp .mod-tab-block__tab-content h3 {
  font-size: 1.9em;
  text-align: center;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 750px) {
  .mod-tab-block--pc-sp .mod-tab-block__tab-content h3 {
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .mod-tab-block__tab-content.current {
    display: block;
  }
}
.mod-tab-block--pc-sp .mod-tab-block__tab-content.current {
  display: block;
}

.mod-tab-block__txt-date {
  color: #012C3D;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  .mod-tab-block__txt-date {
    font-size: 3.2vw;
  }
}
/*  mod-results
--------------------------------------------- */
.mod-results-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mod-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 35px;
  text-align: left;
  border-radius: 0.5em;
  border: 3px solid #f9eded;
  padding: 32px 20px 12px;
  position: relative;
}

.mod-results::before {
  content: "合格";
  font-size: 16px;
  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: 153px;
  height: 34px;
  background-color: #f9eded;
  border-radius: 17px;
  color: #443112;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
  .mod-results {
    margin-top: 9.6vw;
    padding: 4.8vw 6.6666666667vw 3.2vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .mod-results::before {
    font-size: 3.7333333333vw;
    width: 36.2666666667vw;
    height: 8vw;
    border-radius: 4vw;
    top: -4vw;
  }
}
.mod-results__result-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mod-results__result-item::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f26b6b;
  margin-right: 10px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-transform: translateY(calc(0.5em + 3.5px));
          transform: translateY(calc(0.5em + 3.5px));
}

@media screen and (max-width: 750px) {
  .mod-results__result-item {
    margin-top: 3.2vw;
    width: 58%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .mod-results__result-item:nth-of-type(2n) {
    width: 38%;
  }
  .mod-results__result-item::before {
    margin-right: 1.0666666667vw;
  }
}
.mod-results__item-txt {
  color: #211709;
  line-height: 1.6;
  font-weight: normal;
}

@media screen and (max-width: 750px) {
  .mod-results--interview .mod-results__item-txt {
    font-size: 1.42857rem;
  }
}
@media screen and (min-width: 750px) {
  .mod-results--interview .mod-results__item-txt:before {
    width: 50px;
    height: 48px;
  }
  .ie11 .mod-results__item-txt:before {
    top: calc(50% - 4px);
  }
}
/*  mod-results-txt
--------------------------------------------- */
.mod-results-txt {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
  max-width: 1100px;
  color: #707070;
  text-align: center;
  font-size: 1.14286rem;
  line-height: 1.7;
}

@media screen and (max-width: 750px) {
  .mod-results-txt {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 19.33333vw;
    margin-right: auto;
    margin-left: auto;
    padding-right: 5.33333%;
    padding-bottom: 4vw;
    padding-left: 5.33333%;
    max-width: 100%;
    text-align: left;
    letter-spacing: 0.2vw;
    font-size: 3.73333vw;
  }
}
/*  mod-section
--------------------------------------------- */
.mod-section {
  background-color: transparent;
}

@media screen and (max-width: 750px) {
  .mod-section {
    padding-top: 16vw;
    padding-bottom: 16vw;
    background: url(../img/common/bg-page-top-sp.png) no-repeat center bottom;
    background-size: 100% 100%;
    /*20211126add*/
    height: 140vw;
  }
}
.mod-section--mod-special {
  background-color: #fafaef;
}

/*20221125add*/
.mod-section__ttlblock {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3vw;
}

@media screen and (max-width: 750px) {
  .mod-section__ttlblock {
    max-width: initial;
    padding: 0 4vw;
  }
}
.mod-section__lead-txt {
  color: #ffae9b;
  text-align: center;
  font-weight: bold;
  font-size: 2.57143rem;
  line-height: 1.8;
}

@media screen and (max-width: 750px) {
  .mod-section__lead-txt {
    margin-top: 4.8vw;
    font-size: 6.66667vw;
    line-height: 1.7;
  }
}
.mod-section__sub-txt {
  display: block;
  color: #808080;
  text-align: center;
  font-size: 1rem;
}

@media screen and (max-width: 750px) {
  .mod-section__sub-txt {
    margin-top: 1.33333vw;
    font-size: 3.2vw;
  }
}
.mod-section__txt {
  margin-top: 20px;
  color: #606060;
  text-align: center;
  font-size: 1.28571rem;
  line-height: 2.4;
}

@media screen and (max-width: 750px) {
  .mod-section__txt {
    margin-top: 4vw;
    font-size: 4vw;
    line-height: 2.2;
  }
}
/*  mod-special
--------------------------------------------- */
.mod-special {
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1080px;
}

@media screen and (max-width: 750px) {
  .mod-special {
    margin-top: 16vw;
    max-width: initial;
  }
}
.mod-special--exam {
  padding-top: 60px;
  padding-bottom: 62px;
  max-width: none;
  max-width: initial;
  background-color: #fff8f4;
}

@media screen and (max-width: 750px) {
  .mod-special--exam {
    padding-top: 0;
    padding-bottom: 16vw;
  }
}
.mod-special--exam .mod-special__ttl {
  display: block;
  margin-bottom: 40px;
  color: #c1ad63;
  text-align: center;
  font-weight: bold;
  font-size: 1.42857rem;
}

@media screen and (max-width: 750px) {
  .mod-special--exam .mod-special__ttl {
    margin-bottom: 10.66667vw;
    font-size: 4.8vw;
  }
}
.mod-special__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .mod-special__list {
    display: block;
  }
}
.mod-special__item {
  margin-top: 45px;
  margin-right: 5.6%;
  width: 47.2%;
  /* border-radius: 10px; */
  /* background-color: #fff; */
}

@media screen and (max-width: 750px) {
  .mod-special__item {
    margin-right: 0;
    width: 100%;
    border-radius: 2.66667vw;
  }
  .mod-special__item:last-of-type .mod-special__lower {
    margin-bottom: 0;
  }
  .mod-special__item:nth-of-type(n + 2) {
    margin-top: 5.33333vw;
  }
}
.mod-special__item:last-of-type {
  margin-right: 0;
}

.mod-special__item:nth-of-type(2n) {
  margin-right: 0;
}

.mod-special__item:first-of-type,
.mod-special__item:nth-of-type(2) {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  .mod-special__item:nth-of-type(n + 4) {
    margin-top: 5.33333vw;
  }
}
@media screen and (min-width: 750px) {
  .mod-special--exam .mod-special__item {
    width: 360px;
  }
}
.mod-special__link {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 32px;
  min-height: 334px;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 1080px) {
  .mod-special__link {
    min-height: 31vw;
  }
}
@media screen and (max-width: 750px) {
  .mod-special__link {
    padding-bottom: 8.53333vw;
    min-height: none;
    min-height: initial;
  }
}
@media screen and (min-width: 750px) {
  .mod-special__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .mod-special__item--btns-link .mod-special__link {
    cursor: default;
  }
  .mod-special__item--btns-link .mod-special__link:hover {
    opacity: 1;
  }
}
.mod-special a[href="javascript:void(0);"].mod-special__link {
  cursor: default;
}

@media screen and (min-width: 750px) {
  .mod-special a[href="javascript:void(0);"].mod-special__link {
    opacity: 1;
  }
}
.mod-special__upper {
  position: relative;
}

.mod-special__upper > span {
  position: absolute;
  -webkit-transform: rotate(13deg);
  transform: rotate(13deg);
  font-size: 40px;
  color: #ffa696;
  font-family: "Homemade Apple";
  top: -0.4em;
  right: 0.2em;
}

@media screen and (max-width: 750px) {
  .mod-special__upper > span {
    font-size: 6.5333333333vw;
  }
}
.mod-special__release {
  position: absolute;
  top: 0;
  left: 19px;
  z-index: 1;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2.5%;
  min-width: 54px;
  background-color: #f3ed89;
  color: #c1ad63;
  letter-spacing: -1px;
  font-weight: bold;
  font-size: 0.92857rem;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .ie11 .mod-special__release {
    padding-top: calc(2.5% + 3px);
    padding-bottom: calc(2.5% - 3px);
  }
}
@media screen and (max-width: 750px) {
  .mod-special__release {
    left: 5.33333vw;
    padding: 2.66667vw;
    letter-spacing: -0.26667vw;
    font-size: 3.46667vw;
  }
}
.mod-special__coming-soon {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.28571rem;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .mod-special__coming-soon {
    font-size: 4.8vw;
  }
}
.mod-special__upper-img {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .mod-special__upper-img {
    height: 53.4666666667vw;
    border-radius: 2.4vw;
  }
}
@media screen and (max-width: 750px) {
  .mod-special__upper-img span {
    display: block;
    width: 50vw;
    margin: -15vw auto 0;
  }
}
.mod-special__upper-img:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(255, 174, 155, 0.78);
  content: "";
}

.mod-special__upper-img.coming-soon:before {
  display: block;
}

.mod-special__upper-img img {
  width: 100%;
}

.mod-special__lower {
  position: relative;
  padding: 2em 0.5em 2em;
}

.mod-special__lower-img {
  position: absolute;
  top: -28px;
  left: 50%;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mod-special__lower-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: auto;
  margin-left: auto;
  width: 25px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mod-special__lower-img > .interview-visual {
  width: 100%;
  max-width: 313px;
}

.mod-special__lower-head {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
  .mod-special__lower-head {
    height: 10.6666666667vw;
    top: -10.6666666667vw;
    border-radius: 0 2.4vw 0 2.4vw;
    font-size: 4.2666666667vw;
    padding: 0 1em;
  }
}
.mod-special__lower-head-txt {
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.interview-title {
  font-size: 1.2rem;
  line-height: 1.9em;
}

@media screen and (max-width: 750px) {
  .mod-special__lower-head-txt {
    font-size: 4.2666666667vw !important;
  }
}
.mod-special__lower-lead {
  color: #b9943a;
  font-weight: bold;
  font-size: 1.21428rem;
  line-height: 1.45;
  display: block;
  margin: 0.3em 0 0.5em;
}

@media screen and (max-width: 750px) {
  .mod-special__lower-lead {
    font-size: 4vw;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 750px) {
  .mod-special--interview .mod-special__lower-lead {
    font-size: 4.8vw;
  }
}
.mod-special__item--top-interview-vol1 .mod-special__lower-lead {
  font-size: 1.35714rem;
}

@media screen and (max-width: 750px) {
  .mod-special__item--top-interview-vol1 .mod-special__lower-lead {
    font-size: 4.8vw;
  }
}
.mod-special__lower-btns {
  margin-top: 3px;
}

.mod-special__lower-btns img {
  display: inline-block;
  margin: 0 0 0 10px;
  width: auto;
}

@media screen and (max-width: 750px) {
  .mod-special__lower-btns {
    margin-top: 0.8vw;
  }
}
.mod-special__lower-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2em;
  padding: 0 2px;
  border-width: 0 0 1px;
  border-style: solid;
  border-radius: 0 !important;
}

.mod-special__lower-btn.text_pink {
  color: #f26b6b;
  border-color: #f26b6b;
}

.mod-special__lower-btn.text_orange {
  color: #e26600;
  border-color: #e26600;
}

.mod-special__lower-btn.text_green {
  color: #3d9b00;
  border-color: #3d9b00;
}

.mod-special__lower-btn.text_blue {
  color: #429ad1;
  border-color: #429ad1;
}

@media screen and (min-width: 750px) {
  .mod-special__item--btns-link .mod-special__lower-btn {
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .mod-special__item--btns-link .mod-special__lower-btn:hover {
    opacity: 0.8;
  }
  .ios .mod-special__item--btns-link .mod-special__lower-btn:hover,
  .android .mod-special__item--btns-link .mod-special__lower-btn:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .mod-special__lower-btn {
    width: auto;
    font-size: 3.4666666667vw;
  }
}
.mod-special__lower-btn:last-of-type {
  margin-left: 15px;
}

@media screen and (max-width: 750px) {
  .mod-special__lower-btn:last-of-type {
    margin-left: 2vw;
    margin-right: 2vw;
  }
}
.exam-section .mod-special__lower-btn:last-of-type {
  margin-left: 0;
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   Index Page
--------------------------------------------- */
/*  index-kv
--------------------------------------------- */
.index-kv-wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .index-kv-wrapper {
    height: 115.73333vw;
  }
  .iphone .index-kv-wrapper,
  .androidphone .index-kv-wrapper {
    height: 105vw;
    height: 112vw;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .iphone .index-kv-wrapper,
  .androidphone .index-kv-wrapper {
    height: 115.73333vw;
  }
}
.index-kv {
  height: 100%;
  position: relative;
}

/* .index-kv::before {
    content: "";
    display: block;
    max-width: 466px;
    width: calc(466 / 1280 * 100vw);
    height: auto;
    padding-top: calc(215 / 1280 * 100%);
    background: url(../img/index/img-flower.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    bottom: calc(35 / 1280 * 100vw);
    left: 50%;
    transform: translateX(-50%);
} */
@media screen and (max-width: 750px) {
  .index-kv {
    background-image: url(../img/index/img_kv_sp.png);
    width: 100vw;
    height: 74vw;
    background-size: cover;
  }
  /* .index-kv::before {
        width: calc(470 / 750 * 100vw);
        height: auto;
        padding-top: calc(210 / 750 * 100%);
        bottom: calc(55 / 750 * 100vw);
    } */
}
.index-kv__txt-en {
  position: absolute;
  top: 50%;
  left: 5.2%;
  color: #ffae9b;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 8rem;
  line-height: 0.9;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (max-width: 1100px) {
  .index-kv__txt-en {
    left: 3.90625%;
  }
}
@media screen and (max-width: 750px) {
  .index-kv__txt-en {
    top: 1.33333vw;
    left: 47.13333vw;
    font-size: 16.53333vw;
    font-size: 15.53333vw;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.index-kv__txt-en span {
  color: #f3ed89;
}

.index-kv__txt-jp {
  position: absolute;
  top: 50%;
  right: 9.6375%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  height: 100%;
  color: #fff;
  -ms-writing-mode: tb-rl;
  font-weight: bold;
  font-size: 3.94rem;
  line-height: 1.4;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.index-kv__txt-jp.android_only {
  display: none;
}

@media screen and (max-width: 1200px) {
  .index-kv__txt-jp {
    right: 3.90625%;
  }
}
@media screen and (max-width: 750px) {
  .index-kv__txt-jp {
    top: 6.93333vw;
    top: auto;
    right: 8vw;
    right: auto;
    bottom: 2vw;
    left: 4vw;
    display: block;
    height: calc(100% - 71.93333vw);
    font-size: 6vw;
    line-height: 1.2;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .iphone .index-kv__txt-jp,
  .android .index-kv__txt-jp {
    height: calc(100% - 64.93333vw);
    font-size: 5.5vw;
  }
  .iphone .index-kv__txt-jp {
    height: calc(100% - 69.93333vw);
  }
  .android .index-kv__txt-jp.default {
    display: none;
  }
  .android .index-kv__txt-jp.android_only {
    bottom: -2vw;
    left: 6vw;
    display: block;
    padding-top: 1vw;
    width: 18.66667vw;
    width: 12.2vw;
  }
}
.index-kv__txt-jp span img {
  width: 100%;
}

.index-kv__note {
  position: absolute;
  right: 22.44375%;
  bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 130px;
  height: 125px;
  background: url(../img/index/icon_kv.svg) 0 0 no-repeat;
  background-size: 100% auto;
  color: #fff;
  text-align: center;
  -webkit-transition: bottom 0.3s, right 0.3s;
  transition: bottom 0.3s, right 0.3s;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  .index-kv__note {
    right: 23.53125%;
  }
}
@media screen and (max-width: 1200px) {
  .index-kv__note {
    right: 18.75%;
  }
}
@media screen and (max-width: 950px) {
  .index-kv__note {
    right: 19.53125%;
  }
}
@media screen and (max-width: 750px) {
  .index-kv__note {
    top: auto;
    right: 6.66667vw;
    bottom: 10.13333vw;
    width: 25.06667vw;
    height: 24.53333vw;
  }
  .iphone .index-kv__note,
  .androidphone .index-kv__note {
    right: 5vw;
    right: 4.66667vw;
    bottom: 5vw;
  }
}
@media screen and (min-width: 750px) {
  .ie11 .index-kv__note-inner {
    position: relative;
    top: 4px;
  }
}
@media screen and (max-width: 750px) {
  .android .index-kv__note-inner {
    position: relative;
    top: 0.5vw;
  }
  .iphone .index-kv__note-inner {
    position: relative;
    top: 1vw;
  }
}
/*  index-report
--------------------------------------------- */
.index-report .mod-btn {
  margin-top: 42px;
}

@media screen and (max-width: 750px) {
  .index-report .mod-btn {
    margin-top: 18.66667vw;
  }
}
/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mgt-pc--105 {
  margin-top: 105px !important;
}

.mgt-pc--110 {
  margin-top: 110px !important;
}

.mgt-pc--115 {
  margin-top: 115px !important;
}

.mgt-pc--120 {
  margin-top: 120px !important;
}

.mgt-pc--125 {
  margin-top: 125px !important;
}

.mgt-pc--130 {
  margin-top: 130px !important;
}

.mgt-pc--135 {
  margin-top: 135px !important;
}

.mgt-pc--140 {
  margin-top: 140px !important;
}

.mgt-pc--145 {
  margin-top: 145px !important;
}

.mgt-pc--150 {
  margin-top: 150px !important;
}

.mgt-pc--155 {
  margin-top: 155px !important;
}

.mgt-pc--160 {
  margin-top: 160px !important;
}

.mgt-pc--165 {
  margin-top: 165px !important;
}

.mgt-pc--170 {
  margin-top: 170px !important;
}

.mgt-pc--175 {
  margin-top: 175px !important;
}

.mgt-pc--180 {
  margin-top: 180px !important;
}

.mgt-pc--185 {
  margin-top: 185px !important;
}

.mgt-pc--190 {
  margin-top: 190px !important;
}

.mgt-pc--195 {
  margin-top: 195px !important;
}

.mgt-pc--200 {
  margin-top: 200px !important;
}

.mgt-pc--205 {
  margin-top: 205px !important;
}

.mgt-pc--210 {
  margin-top: 210px !important;
}

.mgt-pc--215 {
  margin-top: 215px !important;
}

.mgt-pc--220 {
  margin-top: 220px !important;
}

.mgt-pc--225 {
  margin-top: 225px !important;
}

.mgt-pc--230 {
  margin-top: 230px !important;
}

.mgt-pc--235 {
  margin-top: 235px !important;
}

.mgt-pc--240 {
  margin-top: 240px !important;
}

.mgt-pc--245 {
  margin-top: 245px !important;
}

.mgt-pc--250 {
  margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
  .mgt-sp--0 {
    margin-top: 0 !important;
  }
  .mgt-sp--5 {
    margin-top: 1.33333vw !important;
  }
  .mgt-sp--10 {
    margin-top: 2.66667vw !important;
  }
  .mgt-sp--15 {
    margin-top: 4vw !important;
  }
  .mgt-sp--20 {
    margin-top: 5.33333vw !important;
  }
  .mgt-sp--25 {
    margin-top: 6.66667vw !important;
  }
  .mgt-sp--30 {
    margin-top: 8vw !important;
  }
  .mgt-sp--35 {
    margin-top: 9.33333vw !important;
  }
  .mgt-sp--40 {
    margin-top: 10.66667vw !important;
  }
  .mgt-sp--45 {
    margin-top: 12vw !important;
  }
  .mgt-sp--50 {
    margin-top: 13.33333vw !important;
  }
  .mgt-sp--55 {
    margin-top: 14.66667vw !important;
  }
  .mgt-sp--60 {
    margin-top: 16vw !important;
  }
  .mgt-sp--65 {
    margin-top: 17.33333vw !important;
  }
  .mgt-sp--70 {
    margin-top: 18.66667vw !important;
  }
  .mgt-sp--75 {
    margin-top: 20vw !important;
  }
  .mgt-sp--80 {
    margin-top: 21.33333vw !important;
  }
  .mgt-sp--85 {
    margin-top: 22.66667vw !important;
  }
  .mgt-sp--90 {
    margin-top: 24vw !important;
  }
  .mgt-sp--95 {
    margin-top: 25.33333vw !important;
  }
  .mgt-sp--100 {
    margin-top: 26.66667vw !important;
  }
  .mgt-sp--105 {
    margin-top: 28vw !important;
  }
  .mgt-sp--110 {
    margin-top: 29.33333vw !important;
  }
  .mgt-sp--115 {
    margin-top: 30.66667vw !important;
  }
  .mgt-sp--120 {
    margin-top: 32vw !important;
  }
  .mgt-sp--125 {
    margin-top: 33.33333vw !important;
  }
  .mgt-sp--130 {
    margin-top: 34.66667vw !important;
  }
  .mgt-sp--135 {
    margin-top: 36vw !important;
  }
  .mgt-sp--140 {
    margin-top: 37.33333vw !important;
  }
  .mgt-sp--145 {
    margin-top: 38.66667vw !important;
  }
  .mgt-sp--150 {
    margin-top: 40vw !important;
  }
  .mgt-sp--155 {
    margin-top: 41.33333vw !important;
  }
  .mgt-sp--160 {
    margin-top: 42.66667vw !important;
  }
  .mgt-sp--165 {
    margin-top: 44vw !important;
  }
  .mgt-sp--170 {
    margin-top: 45.33333vw !important;
  }
  .mgt-sp--175 {
    margin-top: 46.66667vw !important;
  }
  .mgt-sp--180 {
    margin-top: 48vw !important;
  }
  .mgt-sp--185 {
    margin-top: 49.33333vw !important;
  }
  .mgt-sp--190 {
    margin-top: 50.66667vw !important;
  }
  .mgt-sp--195 {
    margin-top: 52vw !important;
  }
  .mgt-sp--200 {
    margin-top: 53.33333vw !important;
  }
  .mgt-sp--205 {
    margin-top: 54.66667vw !important;
  }
  .mgt-sp--210 {
    margin-top: 56vw !important;
  }
  .mgt-sp--215 {
    margin-top: 57.33333vw !important;
  }
  .mgt-sp--220 {
    margin-top: 58.66667vw !important;
  }
  .mgt-sp--225 {
    margin-top: 60vw !important;
  }
  .mgt-sp--230 {
    margin-top: 61.33333vw !important;
  }
  .mgt-sp--235 {
    margin-top: 62.66667vw !important;
  }
  .mgt-sp--240 {
    margin-top: 64vw !important;
  }
  .mgt-sp--245 {
    margin-top: 65.33333vw !important;
  }
  .mgt-sp--250 {
    margin-top: 66.66667vw !important;
  }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mgb-pc--105 {
  margin-bottom: 105px !important;
}

.mgb-pc--110 {
  margin-bottom: 110px !important;
}

.mgb-pc--115 {
  margin-bottom: 115px !important;
}

.mgb-pc--120 {
  margin-bottom: 120px !important;
}

.mgb-pc--125 {
  margin-bottom: 125px !important;
}

.mgb-pc--130 {
  margin-bottom: 130px !important;
}

.mgb-pc--135 {
  margin-bottom: 135px !important;
}

.mgb-pc--140 {
  margin-bottom: 140px !important;
}

.mgb-pc--145 {
  margin-bottom: 145px !important;
}

.mgb-pc--150 {
  margin-bottom: 150px !important;
}

.mgb-pc--155 {
  margin-bottom: 155px !important;
}

.mgb-pc--160 {
  margin-bottom: 160px !important;
}

.mgb-pc--165 {
  margin-bottom: 165px !important;
}

.mgb-pc--170 {
  margin-bottom: 170px !important;
}

.mgb-pc--175 {
  margin-bottom: 175px !important;
}

.mgb-pc--180 {
  margin-bottom: 180px !important;
}

.mgb-pc--185 {
  margin-bottom: 185px !important;
}

.mgb-pc--190 {
  margin-bottom: 190px !important;
}

.mgb-pc--195 {
  margin-bottom: 195px !important;
}

.mgb-pc--200 {
  margin-bottom: 200px !important;
}

.mgb-pc--205 {
  margin-bottom: 205px !important;
}

.mgb-pc--210 {
  margin-bottom: 210px !important;
}

.mgb-pc--215 {
  margin-bottom: 215px !important;
}

.mgb-pc--220 {
  margin-bottom: 220px !important;
}

.mgb-pc--225 {
  margin-bottom: 225px !important;
}

.mgb-pc--230 {
  margin-bottom: 230px !important;
}

.mgb-pc--235 {
  margin-bottom: 235px !important;
}

.mgb-pc--240 {
  margin-bottom: 240px !important;
}

.mgb-pc--245 {
  margin-bottom: 245px !important;
}

.mgb-pc--250 {
  margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
  .mgb-sp--0 {
    margin-bottom: 0 !important;
  }
  .mgb-sp--5 {
    margin-bottom: 1.33333vw !important;
  }
  .mgb-sp--10 {
    margin-bottom: 2.66667vw !important;
  }
  .mgb-sp--15 {
    margin-bottom: 4vw !important;
  }
  .mgb-sp--20 {
    margin-bottom: 5.33333vw !important;
  }
  .mgb-sp--25 {
    margin-bottom: 6.66667vw !important;
  }
  .mgb-sp--30 {
    margin-bottom: 8vw !important;
  }
  .mgb-sp--35 {
    margin-bottom: 9.33333vw !important;
  }
  .mgb-sp--40 {
    margin-bottom: 10.66667vw !important;
  }
  .mgb-sp--45 {
    margin-bottom: 12vw !important;
  }
  .mgb-sp--50 {
    margin-bottom: 13.33333vw !important;
  }
  .mgb-sp--55 {
    margin-bottom: 14.66667vw !important;
  }
  .mgb-sp--60 {
    margin-bottom: 16vw !important;
  }
  .mgb-sp--65 {
    margin-bottom: 17.33333vw !important;
  }
  .mgb-sp--70 {
    margin-bottom: 18.66667vw !important;
  }
  .mgb-sp--75 {
    margin-bottom: 20vw !important;
  }
  .mgb-sp--80 {
    margin-bottom: 21.33333vw !important;
  }
  .mgb-sp--85 {
    margin-bottom: 22.66667vw !important;
  }
  .mgb-sp--90 {
    margin-bottom: 24vw !important;
  }
  .mgb-sp--95 {
    margin-bottom: 25.33333vw !important;
  }
  .mgb-sp--100 {
    margin-bottom: 26.66667vw !important;
  }
  .mgb-sp--105 {
    margin-bottom: 28vw !important;
  }
  .mgb-sp--110 {
    margin-bottom: 29.33333vw !important;
  }
  .mgb-sp--115 {
    margin-bottom: 30.66667vw !important;
  }
  .mgb-sp--120 {
    margin-bottom: 32vw !important;
  }
  .mgb-sp--125 {
    margin-bottom: 33.33333vw !important;
  }
  .mgb-sp--130 {
    margin-bottom: 34.66667vw !important;
  }
  .mgb-sp--135 {
    margin-bottom: 36vw !important;
  }
  .mgb-sp--140 {
    margin-bottom: 37.33333vw !important;
  }
  .mgb-sp--145 {
    margin-bottom: 38.66667vw !important;
  }
  .mgb-sp--150 {
    margin-bottom: 40vw !important;
  }
  .mgb-sp--155 {
    margin-bottom: 41.33333vw !important;
  }
  .mgb-sp--160 {
    margin-bottom: 42.66667vw !important;
  }
  .mgb-sp--165 {
    margin-bottom: 44vw !important;
  }
  .mgb-sp--170 {
    margin-bottom: 45.33333vw !important;
  }
  .mgb-sp--175 {
    margin-bottom: 46.66667vw !important;
  }
  .mgb-sp--180 {
    margin-bottom: 48vw !important;
  }
  .mgb-sp--185 {
    margin-bottom: 49.33333vw !important;
  }
  .mgb-sp--190 {
    margin-bottom: 50.66667vw !important;
  }
  .mgb-sp--195 {
    margin-bottom: 52vw !important;
  }
  .mgb-sp--200 {
    margin-bottom: 53.33333vw !important;
  }
  .mgb-sp--205 {
    margin-bottom: 54.66667vw !important;
  }
  .mgb-sp--210 {
    margin-bottom: 56vw !important;
  }
  .mgb-sp--215 {
    margin-bottom: 57.33333vw !important;
  }
  .mgb-sp--220 {
    margin-bottom: 58.66667vw !important;
  }
  .mgb-sp--225 {
    margin-bottom: 60vw !important;
  }
  .mgb-sp--230 {
    margin-bottom: 61.33333vw !important;
  }
  .mgb-sp--235 {
    margin-bottom: 62.66667vw !important;
  }
  .mgb-sp--240 {
    margin-bottom: 64vw !important;
  }
  .mgb-sp--245 {
    margin-bottom: 65.33333vw !important;
  }
  .mgb-sp--250 {
    margin-bottom: 66.66667vw !important;
  }
}
/* ---------------------------------------------
*   padding-top
--------------------------------------------- */
.pdt-pc--0 {
  padding-top: 0 !important;
  padding: 0 inherit inherit inherit !important;
}

.pdt-14-per {
  padding-top: 14%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pdt-pc--105 {
  padding-top: 105px !important;
}

.pdt-pc--110 {
  padding-top: 110px !important;
}

.pdt-pc--115 {
  padding-top: 115px !important;
}

.pdt-pc--120 {
  padding-top: 120px !important;
}

.pdt-pc--125 {
  padding-top: 125px !important;
}

.pdt-pc--130 {
  padding-top: 130px !important;
}

.pdt-pc--135 {
  padding-top: 135px !important;
}

.pdt-pc--140 {
  padding-top: 140px !important;
}

.pdt-pc--145 {
  padding-top: 145px !important;
}

.pdt-pc--150 {
  padding-top: 150px !important;
}

.pdt-pc--155 {
  padding-top: 155px !important;
}

.pdt-pc--160 {
  padding-top: 160px !important;
}

.pdt-pc--165 {
  padding-top: 165px !important;
}

.pdt-pc--170 {
  padding-top: 170px !important;
}

.pdt-pc--175 {
  padding-top: 175px !important;
}

.pdt-pc--180 {
  padding-top: 180px !important;
}

.pdt-pc--185 {
  padding-top: 185px !important;
}

.pdt-pc--190 {
  padding-top: 190px !important;
}

.pdt-pc--195 {
  padding-top: 195px !important;
}

.pdt-pc--200 {
  padding-top: 200px !important;
}

.pdt-pc--205 {
  padding-top: 205px !important;
}

.pdt-pc--210 {
  padding-top: 210px !important;
}

.pdt-pc--215 {
  padding-top: 215px !important;
}

.pdt-pc--220 {
  padding-top: 220px !important;
}

.pdt-pc--225 {
  padding-top: 225px !important;
}

.pdt-pc--230 {
  padding-top: 230px !important;
}

.pdt-pc--235 {
  padding-top: 235px !important;
}

.pdt-pc--240 {
  padding-top: 240px !important;
}

.pdt-pc--245 {
  padding-top: 245px !important;
}

.pdt-pc--250 {
  padding-top: 250px !important;
}

@media screen and (max-width: 750px) {
  .pdt-sp--0 {
    padding-top: 0 !important;
  }
  .pdt-sp--5 {
    padding-top: 1.33333vw !important;
  }
  .pdt-sp--10 {
    padding-top: 2.66667vw !important;
  }
  .pdt-sp--15 {
    padding-top: 4vw !important;
  }
  .pdt-sp--20 {
    padding-top: 5.33333vw !important;
  }
  .pdt-sp--25 {
    padding-top: 6.66667vw !important;
  }
  .pdt-sp--30 {
    padding-top: 8vw !important;
  }
  .pdt-sp--35 {
    padding-top: 9.33333vw !important;
  }
  .pdt-sp--40 {
    padding-top: 10.66667vw !important;
  }
  .pdt-sp--45 {
    padding-top: 12vw !important;
  }
  .pdt-sp--50 {
    padding-top: 13.33333vw !important;
  }
  .pdt-sp--55 {
    padding-top: 14.66667vw !important;
  }
  .pdt-sp--60 {
    padding-top: 16vw !important;
  }
  .pdt-sp--65 {
    padding-top: 17.33333vw !important;
  }
  .pdt-sp--70 {
    padding-top: 18.66667vw !important;
  }
  .pdt-sp--75 {
    padding-top: 20vw !important;
  }
  .pdt-sp--80 {
    padding-top: 21.33333vw !important;
  }
  .pdt-sp--85 {
    padding-top: 22.66667vw !important;
  }
  .pdt-sp--90 {
    padding-top: 24vw !important;
  }
  .pdt-sp--95 {
    padding-top: 25.33333vw !important;
  }
  .pdt-sp--100 {
    padding-top: 26.66667vw !important;
  }
  .pdt-sp--105 {
    padding-top: 28vw !important;
  }
  .pdt-sp--110 {
    padding-top: 29.33333vw !important;
  }
  .pdt-sp--115 {
    padding-top: 30.66667vw !important;
  }
  .pdt-sp--120 {
    padding-top: 32vw !important;
  }
  .pdt-sp--125 {
    padding-top: 33.33333vw !important;
  }
  .pdt-sp--130 {
    padding-top: 34.66667vw !important;
  }
  .pdt-sp--135 {
    padding-top: 36vw !important;
  }
  .pdt-sp--140 {
    padding-top: 37.33333vw !important;
  }
  .pdt-sp--145 {
    padding-top: 38.66667vw !important;
  }
  .pdt-sp--150 {
    padding-top: 40vw !important;
  }
  .pdt-sp--155 {
    padding-top: 41.33333vw !important;
  }
  .pdt-sp--160 {
    padding-top: 42.66667vw !important;
  }
  .pdt-sp--165 {
    padding-top: 44vw !important;
  }
  .pdt-sp--170 {
    padding-top: 45.33333vw !important;
  }
  .pdt-sp--175 {
    padding-top: 46.66667vw !important;
  }
  .pdt-sp--180 {
    padding-top: 48vw !important;
  }
  .pdt-sp--185 {
    padding-top: 49.33333vw !important;
  }
  .pdt-sp--190 {
    padding-top: 50.66667vw !important;
  }
  .pdt-sp--195 {
    padding-top: 52vw !important;
  }
  .pdt-sp--200 {
    padding-top: 53.33333vw !important;
  }
  .pdt-sp--205 {
    padding-top: 54.66667vw !important;
  }
  .pdt-sp--210 {
    padding-top: 56vw !important;
  }
  .pdt-sp--215 {
    padding-top: 57.33333vw !important;
  }
  .pdt-sp--220 {
    padding-top: 58.66667vw !important;
  }
  .pdt-sp--225 {
    padding-top: 60vw !important;
  }
  .pdt-sp--230 {
    padding-top: 61.33333vw !important;
  }
  .pdt-sp--235 {
    padding-top: 62.66667vw !important;
  }
  .pdt-sp--240 {
    padding-top: 64vw !important;
  }
  .pdt-sp--245 {
    padding-top: 65.33333vw !important;
  }
  .pdt-sp--250 {
    padding-top: 66.66667vw !important;
  }
}
/* ---------------------------------------------
*   padding-bottom
--------------------------------------------- */
.pdb-pc--0 {
  padding-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pdb-pc--105 {
  padding-bottom: 105px !important;
}

.pdb-pc--110 {
  padding-bottom: 110px !important;
}

.pdb-pc--115 {
  padding-bottom: 115px !important;
}

.pdb-pc--120 {
  padding-bottom: 120px !important;
}

.pdb-pc--125 {
  padding-bottom: 125px !important;
}

.pdb-pc--130 {
  padding-bottom: 130px !important;
}

.pdb-pc--135 {
  padding-bottom: 135px !important;
}

.pdb-pc--140 {
  padding-bottom: 140px !important;
}

.pdb-pc--145 {
  padding-bottom: 145px !important;
}

.pdb-pc--150 {
  padding-bottom: 150px !important;
}

.pdb-pc--155 {
  padding-bottom: 155px !important;
}

.pdb-pc--160 {
  padding-bottom: 160px !important;
}

.pdb-pc--165 {
  padding-bottom: 165px !important;
}

.pdb-pc--170 {
  padding-bottom: 170px !important;
}

.pdb-pc--175 {
  padding-bottom: 175px !important;
}

.pdb-pc--180 {
  padding-bottom: 180px !important;
}

.pdb-pc--185 {
  padding-bottom: 185px !important;
}

.pdb-pc--190 {
  padding-bottom: 190px !important;
}

.pdb-pc--195 {
  padding-bottom: 195px !important;
}

.pdb-pc--200 {
  padding-bottom: 200px !important;
}

.pdb-pc--205 {
  padding-bottom: 205px !important;
}

.pdb-pc--210 {
  padding-bottom: 210px !important;
}

.pdb-pc--215 {
  padding-bottom: 215px !important;
}

.pdb-pc--220 {
  padding-bottom: 220px !important;
}

.pdb-pc--225 {
  padding-bottom: 225px !important;
}

.pdb-pc--230 {
  padding-bottom: 230px !important;
}

.pdb-pc--235 {
  padding-bottom: 235px !important;
}

.pdb-pc--240 {
  padding-bottom: 240px !important;
}

.pdb-pc--245 {
  padding-bottom: 245px !important;
}

.pdb-pc--250 {
  padding-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
  .pdb-sp--0 {
    padding-bottom: 0 !important;
  }
  .pdb-sp--5 {
    padding-bottom: 1.33333vw !important;
  }
  .pdb-sp--10 {
    padding-bottom: 2.66667vw !important;
  }
  .pdb-sp--15 {
    padding-bottom: 4vw !important;
  }
  .pdb-sp--20 {
    padding-bottom: 5.33333vw !important;
  }
  .pdb-sp--25 {
    padding-bottom: 6.66667vw !important;
  }
  .pdb-sp--30 {
    padding-bottom: 8vw !important;
  }
  .pdb-sp--35 {
    padding-bottom: 9.33333vw !important;
  }
  .pdb-sp--40 {
    padding-bottom: 10.66667vw !important;
  }
  .pdb-sp--45 {
    padding-bottom: 12vw !important;
  }
  .pdb-sp--50 {
    padding-bottom: 13.33333vw !important;
  }
  .pdb-sp--55 {
    padding-bottom: 14.66667vw !important;
  }
  .pdb-sp--60 {
    padding-bottom: 16vw !important;
  }
  .pdb-sp--65 {
    padding-bottom: 17.33333vw !important;
  }
  .pdb-sp--70 {
    padding-bottom: 18.66667vw !important;
  }
  .pdb-sp--75 {
    padding-bottom: 20vw !important;
  }
  .pdb-sp--80 {
    padding-bottom: 21.33333vw !important;
  }
  .pdb-sp--85 {
    padding-bottom: 22.66667vw !important;
  }
  .pdb-sp--90 {
    padding-bottom: 24vw !important;
  }
  .pdb-sp--95 {
    padding-bottom: 25.33333vw !important;
  }
  .pdb-sp--100 {
    padding-bottom: 26.66667vw !important;
  }
  .pdb-sp--105 {
    padding-bottom: 28vw !important;
  }
  .pdb-sp--110 {
    padding-bottom: 29.33333vw !important;
  }
  .pdb-sp--115 {
    padding-bottom: 30.66667vw !important;
  }
  .pdb-sp--120 {
    padding-bottom: 32vw !important;
  }
  .pdb-sp--125 {
    padding-bottom: 33.33333vw !important;
  }
  .pdb-sp--130 {
    padding-bottom: 34.66667vw !important;
  }
  .pdb-sp--135 {
    padding-bottom: 36vw !important;
  }
  .pdb-sp--140 {
    padding-bottom: 37.33333vw !important;
  }
  .pdb-sp--145 {
    padding-bottom: 38.66667vw !important;
  }
  .pdb-sp--150 {
    padding-bottom: 40vw !important;
  }
  .pdb-sp--155 {
    padding-bottom: 41.33333vw !important;
  }
  .pdb-sp--160 {
    padding-bottom: 42.66667vw !important;
  }
  .pdb-sp--165 {
    padding-bottom: 44vw !important;
  }
  .pdb-sp--170 {
    padding-bottom: 45.33333vw !important;
  }
  .pdb-sp--175 {
    padding-bottom: 46.66667vw !important;
  }
  .pdb-sp--180 {
    padding-bottom: 48vw !important;
  }
  .pdb-sp--185 {
    padding-bottom: 49.33333vw !important;
  }
  .pdb-sp--190 {
    padding-bottom: 50.66667vw !important;
  }
  .pdb-sp--195 {
    padding-bottom: 52vw !important;
  }
  .pdb-sp--200 {
    padding-bottom: 53.33333vw !important;
  }
  .pdb-sp--205 {
    padding-bottom: 54.66667vw !important;
  }
  .pdb-sp--210 {
    padding-bottom: 56vw !important;
  }
  .pdb-sp--215 {
    padding-bottom: 57.33333vw !important;
  }
  .pdb-sp--220 {
    padding-bottom: 58.66667vw !important;
  }
  .pdb-sp--225 {
    padding-bottom: 60vw !important;
  }
  .pdb-sp--230 {
    padding-bottom: 61.33333vw !important;
  }
  .pdb-sp--235 {
    padding-bottom: 62.66667vw !important;
  }
  .pdb-sp--240 {
    padding-bottom: 64vw !important;
  }
  .pdb-sp--245 {
    padding-bottom: 65.33333vw !important;
  }
  .pdb-sp--250 {
    padding-bottom: 66.66667vw !important;
  }
}
@media screen and (min-width: 750px) {
  .pc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .sp-hide {
    display: none !important;
  }
}
/*font-size共通*/
.f13 {
  font-size: 13px !important;
}

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

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

.header_sp {
  display: none;
}

@media screen and (max-width: 900px) {
  .header_sp {
    display: block;
  }
  .header_pc {
    display: none;
  }
}
.global-nav__header_sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .global-nav__header_sp {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #615F5F;
    margin: 7vw 0 0 4vw;
    z-index: 99;
  }
  .global-nav__header_sp img {
    width: 8.4853333333vw;
  }
}
#special_index .mod-section {
  height: auto;
}