.bold {
  font-weight: bold;
}

.is-visible-sd {
  display: none;
}
@media only screen and (max-width: 640px) {
  .is-visible-sd {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .is-hidden-sd {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.74;
}
@media only screen and (max-width: 640px) {
  body {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

sup {
  font-size: 70%;
}

.container {
  margin: 0 auto;
  max-width: 950px;
}
@media only screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 640px) {
  .container {
    padding: 0 4.2666666667vw;
  }
}

.btn {
  display: block;
  width: 340px;
  text-align: center;
  padding: 14px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  background: #fff url(../img/icon_arrow_black.svg) no-repeat 95% center;
  border: 1px solid #082960;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .btn {
    width: 53.3333333333vw;
    padding: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
}
.btn__anchor {
  display: inline-block;
  width: 22.9166666667vw;
  text-align: center;
  font-weight: 700;
  padding: 14px;
  font-size: 1.0416666667vw;
  color: #fff;
  background: url(../img/icon_arrow.svg) no-repeat 95% center, -webkit-gradient(linear, left top, right top, from(#CA0003), to(#F93231));
  background: url(../img/icon_arrow.svg) no-repeat 95% center, linear-gradient(to right, #CA0003, #F93231);
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .btn__anchor {
    width: 51.2vw;
    padding: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
}
.btn__blank {
  display: block;
  margin: 20px auto 0;
  width: 200px;
  text-align: center;
  padding: 14px;
  color: #000000;
  font-size: 14px;
  background: #DDDDDD url(../img/icon_blank.png) no-repeat 95% center;
  background-size: 12px;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .btn__blank {
    width: 53.3333333333vw;
    padding: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
}
.btn__blank--black {
  display: block;
  margin: 20px auto 0;
  width: 225px;
  text-align: center;
  font-weight: 700;
  padding: 14px;
  color: #fff;
  font-size: 14px;
  background: #000 url(../img/icon_blank_white.png) no-repeat 95% center;
  background-size: 12px;
}
@media only screen and (max-width: 640px) {
  .btn__blank--black {
    width: 53.3333333333vw;
    padding: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
}
.btn__red {
  display: block;
  width: 340px;
  text-align: center;
  padding: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: url(../img/icon_arrow_right.svg) no-repeat 95% center, -webkit-gradient(linear, left top, right top, from(#CA0003), to(#F93231));
  background: url(../img/icon_arrow_right.svg) no-repeat 95% center, linear-gradient(to right, #CA0003, #F93231);
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .btn__red {
    width: 53.3333333333vw;
    padding: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
}

.note__list {
  font-size: 12px;
  color: #848484;
}
.note__list li {
  text-indent: -1em;
  padding-left: 1em;
}
.note__list--num {
  font-size: 12px;
  color: #848484;
}
.note__list--num li {
  text-indent: -2em;
  padding-left: 2em;
}

.main {
  position: relative;
}

/**************************
header
**************************/
.header {
  position: relative;
  background: #fff;
}
.header__logo {
  padding: 20px 36px;
}
@media only screen and (max-width: 640px) {
  .header__logo {
    padding: 2.6666666667vw;
  }
  .header__logo img {
    width: 32vw;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 28px;
  height: 14px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 6px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.nav__btn {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 2000;
  padding: 12px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 640px) {
  .nav__btn {
    top: 1.6vw;
    right: 1.6vw;
    padding: 1.6vw;
  }
}
.nav__btn .menu-trigger.is-active span:nth-of-type(1) {
  -webkit-transform: translate(0, 6px) rotate(-45deg);
          transform: translate(0, 6px) rotate(-45deg);
}
.nav__btn .menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.nav__btn .menu-trigger.is-active span:nth-of-type(3) {
  -webkit-transform: translate(0, -6px) rotate(45deg);
          transform: translate(0, -6px) rotate(45deg);
}
.nav__wrapper {
  position: fixed;
  top: 0;
  right: -120%;
  width: 40%;
  height: 100dvh;
  padding: 60px 30px;
  background: #fff;
  z-index: 1000;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.nav__wrapper.is-active {
  right: 0;
}
@media only screen and (max-width: 640px) {
  .nav__wrapper {
    width: 100%;
    height: 100dvh;
    padding: 8vw 5.3333333333vw;
  }
}
.nav__list li {
  border-bottom: 1px solid #A8A8A8;
}
.nav__list li:last-child {
  border-bottom: none;
}
.nav__list li a {
  display: block;
  padding: 20px 0;
  font-weight: 700;
  color: #000;
}
.nav__list li a .icon--new {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 5px;
  border: 1px solid #C6B557;
  color: #C6B557;
}

@media (hover: hover) {
  .nav__btn:hover {
    cursor: pointer;
  }
  .nav__btn:hover .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translate(-6px, 0);
            transform: translate(-6px, 0);
  }
  .nav__btn:hover .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translate(6px, 0);
            transform: translate(6px, 0);
  }
}
/**************************
MV
**************************/
.mv__head__wrapper {
  position: relative;
}
.mv__anchor {
  position: absolute;
  left: 18.5416666667vw;
  top: 27.2916666667vw;
}
@media only screen and (max-width: 640px) {
  .mv__anchor {
    left: 42.6666666667vw;
    top: 90.4vw;
  }
}
.mv__info {
  padding: 14px 0;
  background: #1A2B3B;
}
.mv__info__area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 28% 4% 28%;
  grid-template-columns: 40% 28% 4% 28%;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv__info__area > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.mv__info__area > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.mv__info__area > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.mv__info__area > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}
@media only screen and (max-width: 640px) {
  .mv__info__area {
    -ms-grid-columns: 10fr 1fr 10fr;
    grid-template-columns: 10fr 1fr 10fr;
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
  }
  .mv__info__area > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .mv__info__area > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .mv__info__area > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .mv__info__area > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .mv__info__area > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .mv__info__area > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
.mv__info__area__lead {
  color: #fff;
  font-size: 20px;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .mv__info__area__lead {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    margin-bottom: 2.6666666667vw;
    font-size: 2.9333333333vw;
    text-align: center;
  }
}
.mv__info__area__card--left {
  color: #A8A8A8;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mv__info__area__card--left {
    font-size: 2.9333333333vw;
  }
}
.mv__info__area__card--left img {
  max-width: 140px;
}
@media only screen and (max-width: 640px) {
  .mv__info__area__card--left img {
    max-width: 30.9333333333vw;
  }
}
.mv__info__area__card--left .cardface {
  margin: 5px 0;
}
.mv__info__area__card--left .cardname {
  font-size: 20px;
}
@media only screen and (max-width: 640px) {
  .mv__info__area__card--left .cardname {
    font-size: 3.2vw;
  }
}
.mv__info__area__card--right {
  color: #C6B657;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mv__info__area__card--right {
    font-size: 2.9333333333vw;
  }
}
.mv__info__area__card--right img {
  max-width: 140px;
}
@media only screen and (max-width: 640px) {
  .mv__info__area__card--right img {
    max-width: 30.9333333333vw;
  }
}
.mv__info__area__card--right .cardface {
  margin: 5px 0;
}
.mv__info__area__card--right .cardname {
  font-size: 20px;
}
@media only screen and (max-width: 640px) {
  .mv__info__area__card--right .cardname {
    font-size: 3.2vw;
  }
}
.mv__cp {
  padding: 50px 0;
  color: #796700;
  background: #E8E0B3;
}
@media only screen and (max-width: 640px) {
  .mv__cp {
    padding: 6.9333333333vw 0;
  }
}
.mv__cp__lead {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv__cp__lead > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.mv__cp__lead > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.mv__cp__lead > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.mv__cp__lead > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .mv__cp__lead {
    display: block;
  }
}
.mv__cp__lead__head {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .mv__cp__lead__head {
    font-size: 8vw;
    text-align: center;
  }
}
.mv__cp__lead__head span {
  display: block;
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  .mv__cp__lead__head span {
    font-size: 4.2666666667vw;
  }
}
.mv__cp__lead__tag {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  padding: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  background: #796700;
  border-radius: 4px;
}
@media only screen and (max-width: 640px) {
  .mv__cp__lead__tag {
    font-size: 5.3333333333vw;
  }
}
.mv__cp__lead__mile {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-weight: 700;
  font-size: 26px;
}
.mv__cp__lead__mile > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.mv__cp__lead__mile > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .mv__cp__lead__mile {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 5.3333333333vw;
  }
}
.mv__cp__lead__mile .num {
  color: #E30002;
  font-size: 120px;
  line-height: 1;
}
@media only screen and (max-width: 640px) {
  .mv__cp__lead__mile .num {
    font-size: 18.1333333333vw;
  }
}
.mv__cp__lead__mile .red {
  color: #E30002;
}
.mv__cp__detail {
  padding: 50px 0;
  background: #FAF5E7;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail {
    padding: 6.9333333333vw 0;
  }
}
.mv__cp__detail__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 20px;
  font-size: 18px;
}
.mv__cp__detail__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.mv__cp__detail__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__list {
    -ms-grid-columns: 1fr 2.8fr;
    grid-template-columns: 1fr 2.8fr;
    margin-bottom: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.mv__cp__detail__list dt {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding: 10px;
  margin-right: 20px;
  font-weight: 700;
  text-align: center;
  color: #796700;
  border: 1px solid #796700;
  border-radius: 6px;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__list dt {
    padding: 1.3333333333vw;
    margin-right: 1.3333333333vw;
  }
}
.mv__cp__detail__list dd {
  padding: 10px;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__note {
    font-size: 3.2vw;
  }
}
.mv__cp__detail__note a {
  color: #000;
  text-decoration: underline;
}
.mv__cp__detail__note a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  margin-left: 5px;
  background: url(../img/icon_arrow_black.svg) no-repeat;
  background-size: contain;
  -webkit-transform: rotate(90deg) translateX(5px);
          transform: rotate(90deg) translateX(5px);
}
.mv__cp__detail__id {
  margin-top: 20px;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__id {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.mv__cp__detail__head {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__head {
    font-size: 4.2666666667vw;
  }
}
.mv__cp__detail__box {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.25fr 1fr;
  grid-template-columns: 1.25fr 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  padding: 20px 0;
  border-top: 2px solid #1A2B3B;
  border-bottom: 2px solid #1A2B3B;
}
.mv__cp__detail__box > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.mv__cp__detail__box > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.mv__cp__detail__box > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.mv__cp__detail__box > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__box {
    display: block;
    padding: 2.1333333333vw 0;
  }
}
.mv__cp__detail__box__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 0 40px;
  margin: 50px 0;
}
.mv__cp__detail__box__wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.mv__cp__detail__box__wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__box__wrapper {
    gap: 0 4.8vw;
    margin: 8vw 0;
  }
}
.mv__cp__detail__box__head {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mv__cp__detail__box__head span {
  position: relative;
  display: inline-block;
  padding: 4px;
  min-width: 200px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background: #1A2B3B;
  border-radius: 4px;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__box__head span {
    min-width: 23.4666666667vw;
    font-size: 3.2vw;
  }
}
.mv__cp__detail__box__head span::after {
  position: absolute;
  right: -10px;
  top: 0;
  content: "";
  display: inline-block;
  width: 10px;
  height: 100%;
  background: #FAF5E7;
}
.mv__cp__detail__box__lead {
  margin-top: 5px;
  font-size: 18px;
  font-weight: bold;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__box__lead {
    font-size: 3.2vw;
  }
}
.mv__cp__detail__box__text {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  font-size: 15px;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__box__text {
    font-size: 3.2vw;
  }
}
.mv__cp__detail__box__mile {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  text-align: right;
  font-size: 22px;
  color: #E30002;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__box__mile {
    font-size: 3.7333333333vw;
    text-align: left;
  }
}
.mv__cp__detail__box__mile .num {
  font-size: 34px;
}
@media only screen and (max-width: 640px) {
  .mv__cp__detail__box__mile .num {
    font-size: 6.4vw;
  }
}

/**************************
intro
***************************/
.intro {
  padding: 70px 0 80px;
  background: #384C60 url(../img/bg_intro.jpg) no-repeat center top;
  background-attachment: fixed;
  background-size: 100%;
}
@media only screen and (max-width: 640px) {
  .intro {
    padding: 10.6666666667vw 0 18.6666666667vw;
    background: #384C60 url(../img/bg_intro_sp.jpg) no-repeat center top;
    background-attachment: fixed;
    background-size: cover;
  }
}
.intro__head {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  font-size: 30px;
}
@media only screen and (max-width: 640px) {
  .intro__head {
    font-size: 4.8vw;
  }
}
.intro__head span {
  display: block;
  font-size: 50px;
  color: #C6B557;
}
@media only screen and (max-width: 640px) {
  .intro__head span {
    font-size: 6.9333333333vw;
  }
}
.intro__head__note {
  text-align: center;
  color: #fff;
  font-size: 12px;
}
@media only screen and (max-width: 640px) {
  .intro__head__note {
    font-size: 2.1333333333vw;
  }
}
.intro__img {
  margin-top: 70px;
}
@media only screen and (max-width: 640px) {
  .intro__img {
    margin-top: 6.6666666667vw;
  }
}
.intro__box--a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 29.4736842105%;
  grid-template-columns: 1fr 29.4736842105%;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  margin-top: 70px;
  background: #fff;
  border-radius: 6px;
}
.intro__box--a > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.intro__box--a > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.intro__box--a > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.intro__box--a > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .intro__box--a {
    display: block;
    margin-top: 8vw;
  }
}
.intro__box--a .intro__box__thumb {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
}
.intro__box--a .intro__box__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 6px 6px 0;
}
@media only screen and (max-width: 640px) {
  .intro__box--a .intro__box__thumb img {
    width: 100%;
    height: 45.3333333333vw;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px 6px 0 0;
  }
}
.intro__box--a .intro__box__head {
  padding: 65px 40px 30px;
}
@media only screen and (max-width: 640px) {
  .intro__box--a .intro__box__head {
    padding: 5.3333333333vw;
  }
}
.intro__box--a .intro__box__text {
  padding: 0 40px 60px;
}
@media only screen and (max-width: 640px) {
  .intro__box--a .intro__box__text {
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
}
.intro__box--b {
  margin-top: 50px;
  padding: 40px;
  background: #fff;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .intro__box--b {
    margin-top: 8vw;
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.intro__box--b__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 1fr;
  grid-template-columns: 4fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}
.intro__box--b__wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.intro__box--b__wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.intro__box--b__wrapper > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.intro__box--b__wrapper > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.intro__box--b__wrapper > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.intro__box--b__wrapper > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .intro__box--b__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[4];
    grid-template-rows: repeat(4, auto);
  }
  .intro__box--b__wrapper > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .intro__box--b__wrapper > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .intro__box--b__wrapper > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .intro__box--b__wrapper > *:nth-child(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
}
.intro__box--b__wrapper .intro__box__thumb {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 3;
  grid-row-end: 4;
}
@media only screen and (max-width: 640px) {
  .intro__box--b__wrapper .intro__box__thumb {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 3;
        grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
    margin: 5.3333333333vw 2.6666666667vw;
    text-align: center;
  }
  .intro__box--b__wrapper .intro__box__thumb img {
    width: 40vw;
  }
}
.intro__box--b__wrapper .intro__box__text {
  padding-bottom: 0;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}
.intro__box--b__wrapper .intro__box__note {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}
.intro__box--b__wrapper .note__list--num {
  margin-top: 10px;
}
@media only screen and (max-width: 640px) {
  .intro__box--b__wrapper .note__list--num {
    margin-top: 2.6666666667vw;
  }
}
.intro__box--c {
  margin-top: 50px;
  padding: 40px;
  background: #fff;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .intro__box--c {
    margin-top: 8vw;
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.intro__box--c__head {
  text-align: center;
  font-size: 26px;
  color: #8B7B21;
  font-weight: 600;
}
@media only screen and (max-width: 640px) {
  .intro__box--c__head {
    font-size: 4.2666666667vw;
  }
}
.intro__box__head {
  position: relative;
  padding-bottom: 30px;
  color: #8B7B21;
  font-size: 26px;
  font-weight: 600;
}
@media only screen and (max-width: 640px) {
  .intro__box__head {
    padding-bottom: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.intro__box__head span {
  display: inline-block;
  padding-left: 20px;
  border-left: 4px solid #8B7B21;
}
@media only screen and (max-width: 640px) {
  .intro__box__head span {
    padding-left: 5.3333333333vw;
    border-left-width: 3px;
  }
}
.intro__box__text {
  padding: 0 0 60px;
}
@media only screen and (max-width: 640px) {
  .intro__box__text {
    padding: 0 0 5.3333333333vw;
  }
}
.intro__bn {
  margin-top: 60px;
}
@media only screen and (max-width: 640px) {
  .intro__bn {
    margin-top: 13.3333333333vw;
  }
}

.accordion__head {
  position: relative;
  padding: 16px 20px;
  font-size: 26px;
  color: #fff;
  background: #1A2B3B;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .accordion__head {
    padding: 5.3333333333vw 4vw;
    font-size: 4.2666666667vw;
  }
}
.accordion__head::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 60px;
  height: 100%;
  background: #384B60 url(../img/icon_open.svg) no-repeat center center;
  background-size: 20px;
  border-radius: 0 6px 6px 0;
}
@media only screen and (max-width: 640px) {
  .accordion__head::after {
    width: 16vw;
    background-size: 5.3333333333vw;
  }
}
.accordion__head:hover, .accordion__head:focus {
  cursor: pointer;
}
.accordion__head.is-active::after {
  background: #384B60 url(../img/icon_close.svg) no-repeat center center;
  background-size: 20px;
}
.accordion__head__wrapper {
  margin-top: 50px;
}
@media only screen and (max-width: 640px) {
  .accordion__head__wrapper {
    margin-top: 5.3333333333vw;
  }
}
.accordion__contents {
  margin-top: 30px;
}
@media only screen and (max-width: 640px) {
  .accordion__contents {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.accordion__contents__head {
  font-size: 20px;
  margin: 10px 0 5px;
}
@media only screen and (max-width: 640px) {
  .accordion__contents__head {
    font-size: 3.7333333333vw;
    margin: 2.6666666667vw 0 1.3333333333vw;
  }
}

.life-status {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 30% 30%;
  grid-template-columns: 30% 30% 30%;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.life-status > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.life-status > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.life-status > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media only screen and (max-width: 640px) {
  .life-status {
    display: block;
    margin-top: 2.6666666667vw;
  }
}
.life-status__item {
  position: relative;
  padding: 20px;
  text-align: center;
  border: 1px solid #1A2B3B;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .life-status__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 1fr;
    grid-template-columns: 3fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 6.9333333333vw;
    padding: 2.6666666667vw 5.3333333333vw;
    text-align: left;
    font-size: 3.7333333333vw;
  }
  .life-status__item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .life-status__item > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
.life-status__item .mile {
  font-size: 24px;
}
@media only screen and (max-width: 640px) {
  .life-status__item .mile {
    font-size: 4.2666666667vw;
  }
}
.life-status__item .red {
  font-size: 30px;
  color: #E30002;
}
@media only screen and (max-width: 640px) {
  .life-status__item .red {
    font-size: 5.8666666667vw;
  }
}
.life-status__item .purple {
  font-size: 30px;
  color: #7131A0;
}
@media only screen and (max-width: 640px) {
  .life-status__item .purple {
    font-size: 5.8666666667vw;
  }
}
.life-status__item::after {
  position: absolute;
  right: -33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 18px;
  height: 23px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #637E96;
}
@media only screen and (max-width: 640px) {
  .life-status__item::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -5.3333333333vw;
    width: 4.5333333333vw;
    height: 3.4666666667vw;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.life-status__item:last-of-type img {
  max-width: 66px;
}
.life-status__item:last-of-type::after {
  background: none;
  width: 0;
  height: 0;
}
.life-status__item__img {
  margin-top: 15px;
}
@media only screen and (max-width: 640px) {
  .life-status__item__img {
    margin-top: 0;
  }
}

.jgc {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (23.5%)[4];
  grid-template-columns: repeat(4, 23.5%);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.jgc > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.jgc > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.jgc > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.jgc > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}
@media only screen and (max-width: 640px) {
  .jgc {
    -ms-grid-columns: (48%)[2];
    grid-template-columns: repeat(2, 48%);
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
  }
  .jgc > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .jgc > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .jgc > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .jgc > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
.jgc__item {
  text-align: center;
}
.jgc__item__text {
  margin-top: 8px;
}

.pay {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (48%)[2];
  grid-template-columns: repeat(2, 48%);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.pay > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.pay > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .pay {
    margin-top: 5.8666666667vw;
  }
}
.pay__item {
  padding: 40px;
  color: #fff;
  text-align: center;
  font-size: 30px;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .pay__item {
    padding: 4vw 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.pay__item:nth-of-type(1) {
  background: url(../img/bg_pay_01.jpg) no-repeat center;
  background-size: cover;
}
.pay__item:nth-of-type(2) {
  background: url(../img/bg_pay_02.jpg) no-repeat center;
  background-size: cover;
}
.pay__item .num {
  color: #FFF367;
  font-size: 50px;
}
@media only screen and (max-width: 640px) {
  .pay__item .num {
    font-size: 8vw;
  }
}
.pay__flow__head {
  margin-top: 20px;
  text-align: center;
  font-size: 26px;
  color: #8B7B21;
  font-weight: 500;
}
@media only screen and (max-width: 640px) {
  .pay__flow__head {
    margin-top: 3.2vw;
    font-size: 4vw;
  }
}
.pay__flow__head .num {
  font-size: 40px;
}
@media only screen and (max-width: 640px) {
  .pay__flow__head .num {
    font-size: 6.1333333333vw;
  }
}
.pay__flow__arrow {
  margin: 12px auto;
  width: 125px;
  height: 35px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #8B7B21;
}
@media only screen and (max-width: 640px) {
  .pay__flow__arrow {
    width: 20vw;
    height: 5.3333333333vw;
  }
}
.pay__flow__box {
  padding: 20px 30px;
  border: 1px solid #E30002;
  border-radius: 6px;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box {
    padding: 4vw 5.3333333333vw;
  }
}
.pay__flow__box__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 3fr;
  grid-template-columns: 1.5fr 3fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.pay__flow__box__inner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.pay__flow__box__inner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.pay__flow__box__inner > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.pay__flow__box__inner > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box__inner {
    -ms-grid-columns: 2fr 3fr;
    grid-template-columns: 2fr 3fr;
  }
  .pay__flow__box__inner:last-of-type {
    margin-top: 2.6666666667vw;
  }
}
.pay__flow__box__icon {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pay__flow__box__icon > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.pay__flow__box__icon > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box__icon {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}
.pay__flow__box__icon__text {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box__icon__text {
    font-size: 3.2vw;
  }
}
.pay__flow__box__icon__img.icon__point img {
  max-width: 66px;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box__icon__img.icon__point img {
    max-width: 8.5333333333vw;
  }
}
.pay__flow__box__result {
  font-size: 23px;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box__result {
    font-size: 3.2vw;
  }
}
.pay__flow__box__result .num {
  font-size: 60px;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box__result .num {
    font-size: 6.4vw;
  }
}
.pay__flow__box__result .red {
  color: #E30101;
}
.pay__flow__box__result .purple {
  color: #7131A0;
}
@media only screen and (max-width: 640px) {
  .pay__flow__box__detail {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 2;
        grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    margin: 2.6666666667vw 0;
  }
}

/**************************
apply
***************************/
.apply {
  padding: 80px 0;
  background: #D0D5DB;
}
@media only screen and (max-width: 640px) {
  .apply {
    padding: 8vw 0;
  }
}
.apply__head {
  text-align: center;
  font-size: 30px;
  color: #1A2B3B;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .apply__head {
    font-size: 4.8vw;
  }
}
.apply__tab {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (49%)[2];
  grid-template-columns: repeat(2, 49%);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: 50px;
}
.apply__tab > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.apply__tab > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .apply__tab {
    margin-top: 6.9333333333vw;
  }
}
.apply__tab__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  color: #fff;
  border-radius: 10px 10px 0 0;
}
.apply__tab__item > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.apply__tab__item > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .apply__tab__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
    padding: 1.8666666667vw;
    text-align: center;
  }
  .apply__tab__item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .apply__tab__item > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.apply__tab__item:nth-of-type(1) {
  background: #1A2B3B;
}
.apply__tab__item:nth-of-type(2) {
  background: #59677E;
}
.apply__tab__item.is-active {
  padding: 30px 12px;
}
@media only screen and (max-width: 640px) {
  .apply__tab__item.is-active {
    padding: 4.2666666667vw;
  }
}
.apply__tab__item:hover {
  cursor: pointer;
}
.apply__tab__item img {
  max-width: 94px;
}
@media only screen and (max-width: 640px) {
  .apply__tab__item img {
    max-width: 16.5333333333vw;
  }
}
.apply__tab__item__head {
  margin-left: 30px;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .apply__tab__item__head {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
    font-size: 2.4vw;
  }
}
.apply__tab__item__head span {
  display: block;
  font-size: 22px;
}
@media only screen and (max-width: 640px) {
  .apply__tab__item__head span {
    font-size: 3.4666666667vw;
  }
}
@media only screen and (max-width: 640px) {
  .apply__tab__item__img {
    margin-top: 0.8vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.apply__contents {
  margin-bottom: 20px;
  padding: 35px 35px 50px;
  background: #fff;
  border-radius: 0 0 6px 6px;
}
@media only screen and (max-width: 640px) {
  .apply__contents {
    padding: 5.3333333333vw 2.6666666667vw 8vw;
  }
}
.apply__contents__head {
  font-size: 24px;
  color: #1A2B3B;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .apply__contents__head {
    font-size: 4.8vw;
  }
}
.apply__contents__inner {
  display: none;
  opacity: 0;
}
.apply__contents__inner.is-active {
  display: block;
  -webkit-animation: fadeIn 2s forwards;
          animation: fadeIn 2s forwards;
}
.apply__flow {
  margin-top: 40px;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  background: #F7F7F7;
}
@media only screen and (max-width: 640px) {
  .apply__flow {
    margin-top: 8vw;
    padding: 5.3333333333vw 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.apply__flow__head {
  margin-bottom: 20px;
  font-size: 30px;
  color: #1A2B3B;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .apply__flow__head {
    font-size: 4.8vw;
  }
}
.apply__flow__img {
  margin-top: 20px;
}
.apply__flow__img img {
  max-width: 756px;
}
@media only screen and (max-width: 640px) {
  .apply__flow__img img {
    max-width: 100%;
  }
}
.apply__flow__balloon {
  position: relative;
  margin: 30px auto 0;
  padding: 20px;
  max-width: 640px;
  border: 1px solid #000000;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon {
    margin-top: 0;
    padding: 2.6666666667vw;
    max-width: 100%;
  }
}
.apply__flow__balloon::before, .apply__flow__balloon::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon::before, .apply__flow__balloon::after {
    left: 55%;
  }
}
.apply__flow__balloon::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 24px;
  border-bottom-width: 24px;
  border-left-width: 15px;
  border-right-width: 15px;
  margin-left: -15px;
  border-bottom-color: #FFFFFF;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon::after {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 8px;
    border-right-width: 8px;
    margin-left: -8px;
  }
}
.apply__flow__balloon::before {
  border-color: rgba(0, 0, 0, 0);
  border-top-width: 25px;
  border-bottom-width: 25px;
  border-left-width: 16px;
  border-right-width: 16px;
  margin-left: -16px;
  margin-bottom: 1px;
  border-bottom-color: #000000;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon::before {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 9px;
    border-right-width: 9px;
    margin-left: -9px;
  }
}
.apply__flow__balloon__detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 10px auto;
  grid-template-rows: repeat(2, auto);
  gap: 10px;
}
.apply__flow__balloon__detail > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.apply__flow__balloon__detail > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.apply__flow__balloon__detail > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.apply__flow__balloon__detail > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon__detail {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[4];
    grid-template-rows: repeat(4, auto);
  }
  .apply__flow__balloon__detail > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .apply__flow__balloon__detail > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .apply__flow__balloon__detail > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .apply__flow__balloon__detail > *:nth-child(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
}
.apply__flow__balloon__detail__txt {
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon__detail__txt {
    margin-top: 10px;
  }
}
.apply__flow__balloon__detail__img.img-b {
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon__detail__img.img-b {
    text-align: center;
  }
}
.apply__flow__balloon__detail__img.img-b img {
  max-width: 50%;
}
@media only screen and (max-width: 640px) {
  .apply__flow__balloon__detail__img.img-b img {
    max-width: 60%;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.step__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 12% 1fr;
  grid-template-columns: 12% 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  margin-top: 20px;
  border: 1px solid #1A2B3B;
  border-radius: 6px;
}
.step__box > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.step__box > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .step__box {
    -ms-grid-columns: 25% 1fr;
    grid-template-columns: 25% 1fr;
    margin-top: 2.6666666667vw;
  }
}
.step__box__title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  color: #fff;
  background: #1A2B3B;
}
.step__box__title > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.step__box__title > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.step__box__head {
  font-size: 22px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  -ms-grid-column-align: center;
      justify-self: center;
}
@media only screen and (max-width: 640px) {
  .step__box__head {
    font-size: 4.8vw;
  }
}
.step__box__head span {
  font-size: 40px;
}
@media only screen and (max-width: 640px) {
  .step__box__head span {
    font-size: 7.4666666667vw;
  }
}
.step__box__icon {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-align: center;
      justify-self: center;
}
.step__box__contents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 160px;
  padding: 30px;
}
.step__box__contents > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
@media only screen and (max-width: 640px) {
  .step__box__contents {
    padding: 5.3333333333vw;
    min-height: auto;
  }
}
.step__box__contents__img {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
  margin-left: 20px;
}
@media only screen and (max-width: 640px) {
  .step__box__contents__img {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
        grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    margin: 5.3333333333vw 0;
  }
}
.step__box__contents.--step1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
}
.step__box__contents.--step1 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.step__box__contents.--step1 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.step__box__contents.--step1 > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.step__box__contents.--step1 > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .step__box__contents.--step1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
  }
  .step__box__contents.--step1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .step__box__contents.--step1 > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .step__box__contents.--step1 > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
.step__box__contents.--step1 .btn__red {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}
.step__box__contents__btn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.step__box__contents__btn > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.step__box__contents__btn > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .step__box__contents__btn {
    display: block;
    margin-top: 2.6666666667vw;
  }
  .step__box__contents__btn .btn__red {
    margin-top: 2.6666666667vw;
  }
}
.step.--nothave .step__box {
  border-color: #59677E;
}
.step.--nothave .step__box__title {
  background: #59677E;
}

.cv {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 640px) {
  .cv {
    padding: 5.3333333333vw 2.6666666667vw;
  }
}
.cv .btn__anchor {
  min-width: 660px;
  font-size: 18px;
  padding: 4px;
}
@media only screen and (max-width: 640px) {
  .cv .btn__anchor {
    font-size: 4.2666666667vw;
    min-width: 100%;
    padding: 3.7333333333vw;
  }
}
.cv__note {
  margin-top: 5px;
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .cv__note {
    font-size: 2.4vw;
  }
}

.attention {
  padding-bottom: 50px;
}
.attention__head {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
}

.tbl_style1 {
  margin: 20px 0 0 0;
  font-size: 14px;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
}
@media only screen and (max-width: 640px) {
  .tbl_style1 {
    font-size: 3.2vw;
  }
}

.tbl_style1 th {
  width: 50%;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  background-color: #666;
}

.tbl_style1 td {
  padding: 5px;
  text-align: center;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
}

.tbl_style2 {
  width: 100%;
}

.tbl_style2 th {
  width: 33%;
}

/**************************
footer
***************************/
.footer__copyright {
  padding: 30px 0 150px;
  background: #000000;
}
@media only screen and (max-width: 640px) {
  .footer__copyright {
    padding: 5.3333333333vw 0 40vw;
  }
}

.copyright {
  color: #868686;
  font-size: 12px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .copyright {
    font-size: 12px;
    font-size: 3.2vw;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.fade-in.scroll-in {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

/* ------------------------------------------
      countdown
  ------------------------------------------ */
.count_area {
  width: 100%;
  color: #fff;
  background: #000;
}
.count_area.end {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  padding: 20px 0 24px;
}
@media only screen and (max-width: 640px) {
  .count_area.end {
    padding: 0.625rem 0;
  }
}
.count_area.end .count_area_inner {
  display: none;
}
.count_area.end .count_area_inner_end {
  display: block;
}
.count_area .count_area_inner {
  width: 950px;
  margin: 0 auto;
  padding: 30px 0 20px;
}
@media only screen and (max-width: 768px) {
  .count_area .count_area_inner {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .count_area .count_area_inner {
    padding: 1.125rem 0;
  }
}
.count_area .count_area_inner::after {
  display: block;
  clear: both;
  content: "";
}
.count_area .count_txt {
  float: left;
  width: 260px;
  margin-top: 49px;
  padding-right: 20px;
  text-align: right;
  color: #fff !important;
}
@media only screen and (max-width: 768px) {
  .count_area .count_txt {
    width: 30%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .count_area .count_txt {
    float: none;
    text-align: left;
    padding: 0 5px;
    margin-top: 0;
    width: 100%;
  }
}
.count_area .txt1 {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .count_area .txt1 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 640px) {
  .count_area .txt1 {
    font-size: 0.75rem;
  }
}
.count_area .txt2 {
  font-size: 13px;
  position: relative;
  top: 4px;
  left: 7px;
}
@media only screen and (max-width: 640px) {
  .count_area .txt2 {
    font-size: 0.625rem;
    top: auto;
    left: auto;
  }
}
.count_area .count {
  font-size: 30px;
  float: left;
  width: 670px;
  letter-spacing: 0;
  color: #fff !important;
}
@media only screen and (max-width: 768px) {
  .count_area .count {
    width: 65%;
    font-size: 22px;
  }
}
@media only screen and (max-width: 640px) {
  .count_area .count {
    float: none;
    margin-top: 0.625rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}
.count_area .count .num_wrap {
  margin: 0 5px 0 10px;
}
.count_area .count .num {
  font-size: 70px;
  line-height: 85px;
  display: inline-block;
  width: 67px;
  height: 85px;
  margin: 0 3px;
  text-align: center;
  vertical-align: bottom;
  color: #333;
  border-radius: 5px;
  background: #eee;
}
@media only screen and (max-width: 768px) {
  .count_area .count .num {
    width: 40px;
    height: 60px;
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 640px) {
  .count_area .count .num {
    margin: 0 1px;
    width: 1rem;
    height: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.count_area .count_area_inner_end {
  display: none;
}

.count_area_inner_end .end_txt {
  width: 950px;
  margin: 0 auto;
  color: #fff !important;
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .count_area_inner_end .end_txt {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .count_area_inner_end .end_txt {
    font-size: 0.75rem;
  }
}
.count_area_inner_end .end_txt a {
  color: #fcff00;
}
.count_area_inner_end .end_txt a:hover {
  color: #feffa3;
}

.count_area_inner_b {
  text-align: center;
}
.count_area_inner_b .count {
  float: none;
  width: auto;
}

.lead__txt--count {
  margin-bottom: 5px;
  text-align: center;
  font-size: 20px;
}
@media only screen and (max-width: 640px) {
  .lead__txt--count {
    font-size: 0.875rem;
  }
}
.lead__txt--count span {
  color: #fcff00;
}