@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  position: relative;
}

p, ul, li {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

li {
  list-style: none;
}

/*=============================
	header
=============================*/
@media screen and (min-width: 1025px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 11.385vw;
    background: #fff;
    border-bottom: 7px solid #E01F0F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_text {
    font-size: 1.82vw;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    margin-right: 1.56%;
    line-height: 1.2;
    color: #000;
  }
  .header .logo {
    width: 16.6%;
    margin-right: 2.08%;
    background: #E01F0F;
    padding: 2vw 2.6vw;
  }
  .header .logo img {
    width: 100%;
  }
  .header_page-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_page-link .link_text {
    text-align: center;
    font-size: 1.82vw;
    font-weight: bold;
    line-height: 1;
    padding: 0 1.04vw;
    border-left: 1px solid #707070;
    font-family: "Jost", sans-serif;
  }
  .header_page-link .link_text span {
    font-size: 1vw;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
  }
  .header_page-link .link_text:last-child {
    border-right: 1px solid #707070;
  }
  .header_entry-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 2vw;
    border-radius: 1.04vw;
  }
  .header_entry-link .registration {
    background: #E01F0F;
    color: #fff;
    padding: 1.7vw 3.4vw;
    font-size: 1.04vw;
    font-weight: bold;
    border-radius: 1.04vw 0 0 1.04vw;
  }
  .header_entry-link .login {
    background: #E88121;
    color: #fff;
    padding: 1.7vw 3.4vw;
    font-size: 1.04vw;
    font-weight: bold;
    border-radius: 0 1.04vw 1.04vw 0;
    position: relative;
  }
  .header_entry-link .login::before {
    content: "ENTRY";
    font-size: 1vw;
    font-weight: bold;
    color: #E88121;
    position: absolute;
    top: -1.6vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    pointer-events: none;
  }
  .header .hamburger {
    display: none;
  }
  .header .menu {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 0.9vw solid #E01F0F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 71px;
  }
  .header_text {
    display: none;
  }
  .header .logo {
    width: 110px;
  }
  .header .logo img {
    width: 100%;
  }
  .header_page-link {
    display: none;
  }
  .header_entry-link {
    display: none;
  }
  .header .hamburger {
    cursor: pointer;
    width: 37px;
    height: 28px;
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1001;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .hamburger span {
    display: block;
    height: 5px;
    background-color: #E01F0F;
    border-radius: 8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header .menu {
    position: fixed;
    top: 0;
    right: -1px;
    width: 49.3vw;
    height: 100%;
    background-color: #E01F0F;
    color: white;
    padding: 20px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 1002;
    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;
    text-align: center;
  }
  .header .menu.active {
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header .menu .close-btn {
    position: absolute;
    top: 3.48vw;
    right: 3.48vw;
    font-size: 9.3vw;
    font-weight: bold;
    cursor: pointer;
  }
  .header .menu ul {
    list-style: none;
  }
  .header .menu ul li {
    margin: 0 0 9.3vw;
  }
  .header .menu ul li:last-of-type {
    margin-bottom: 0;
  }
  .header .menu ul li a {
    font-family: "Jost", sans-serif;
    color: white;
    text-decoration: none;
    font-size: 4.65vw;
    font-weight: bold;
    font-style: italic;
    line-height: 0.8;
  }
  .header .menu ul li a span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.79vw;
    font-weight: bold;
  }
}

.entry-link_fixed {
  display: none;
  position: fixed;
  bottom: 3vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10000;
  width: 56.27vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .entry-link_fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 432px;
  }
  .entry-link_fixed .registration {
    background: #E01F0F;
    color: #fff;
    padding: 23px 46px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px 0 0 20px;
    width: 49%;
    text-align: center;
  }
  .entry-link_fixed .login {
    background: #E88121;
    color: #fff;
    padding: 23px 46px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 0 20px 20px 0;
    position: relative;
    width: 49%;
    text-align: center;
  }
  .entry-link_fixed .login::before {
    content: "ENTRY";
    font-size: 18px;
    font-weight: bold;
    color: #E88121;
    position: absolute;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .entry-link_fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 56.27vw;
    margin-right: 7.25vw;
  }
  .entry-link_fixed .registration {
    background: #E01F0F;
    color: #fff;
    padding: 3vw 6vw;
    font-size: 2.7vw;
    font-weight: bold;
    border-radius: 2.32vw 0 0 2.32vw;
    width: 49%;
    text-align: center;
  }
  .entry-link_fixed .login {
    background: #E88121;
    color: #fff;
    padding: 3vw 6vw;
    font-size: 2.7vw;
    font-weight: bold;
    border-radius: 0 2.32vw 2.32vw 0;
    position: relative;
    width: 49%;
    text-align: center;
  }
  .entry-link_fixed .login::before {
    content: "ENTRY";
    font-size: 2.3vw;
    font-weight: bold;
    color: #E88121;
    position: absolute;
    top: -4.2vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    pointer-events: none;
  }
}
@media screen and (min-width: 1025px) {
  .entry-link_fixed {
    display: none;
  }
}

.page {
  position: relative;
  overflow-x: hidden;
  /*=============================
   kv
  =============================*/
  /*=============================
   program
  =============================*/
  /*=============================
   step
  =============================*/
  /*=============================
   question
  =============================*/
}
@media screen and (max-width: 767px) {
  .page .view--pc {
    display: none !important;
  }
}
.page .view--sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .page .view--sp {
    display: block !important;
  }
}
.page .kv-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  width: 49.2%;
  padding: 2.23vw 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page .kv-content {
    width: 88.37vw;
    padding: 3.1vw 0;
    margin: 0 auto;
  }
}
.page .kv-content .title {
  font-family: "Jost", sans-serif;
  font-size: 11.8vw;
  color: #E01F0F;
  font-style: italic;
  text-align: left;
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}
@media screen and (max-width: 767px) {
  .page .kv-content .title {
    font-size: 20.9vw;
  }
}
.page .kv-content .title span {
  display: block;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  line-height: 1.1;
}
.page .kv-content .title.-visible {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.page .kv-content .title.-visible span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.page .kv-content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .page .kv-content-bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 3.25vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.page .kv-content-bottom_text {
  width: 37%;
  text-align: left;
  margin-top: 1.19vw;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .page .kv-content-bottom_text {
    width: 42%;
  }
}
@media screen and (max-width: 767px) {
  .page .kv-content-bottom_text {
    width: 34.88vw;
    margin-right: 7.25vw;
  }
}
.page .kv-content-bottom_text img {
  width: 100%;
}
.page .kv-content-bottom_text p {
  font-size: 1vw;
  line-height: 2.7;
  font-weight: 600;
  margin-top: 1.5vw;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .page .kv-content-bottom_text p {
    font-size: 1.2vw;
  }
}
.page .kv-content-bottom_img {
  width: 56.6%;
}
@media screen and (max-width: 767px) {
  .page .kv-content-bottom_img {
    width: 41vw;
  }
}
@media screen and (max-width: 767px) {
  .page .kv-content_text {
    font-size: 3.4vw;
    font-size: 500;
    line-height: 2;
  }
}
.page .kv_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin-top: 11.385vw;
  overflow: hidden;
  background: #FFF7F2;
}
@media screen and (max-width: 1024px) {
  .page .kv_wrap {
    margin-top: 71px;
  }
}
@media screen and (max-width: 767px) {
  .page .kv_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page .slider {
  width: 21.51%;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page .slider {
    width: 100%;
  }
}
.page .slider.slick-active .page .slider .slider-track {
  position: relative !important;
  -webkit-animation-name: none !important;
          animation-name: none !important;
}
.page .slider .slider-track {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation-duration: 60s;
          animation-duration: 60s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.page .slider .slider-img {
  margin: 10px 0;
  max-width: 100%;
  height: auto;
}
.page .slider.slider-down .img01 {
  width: 82.6%;
  margin-right: auto;
}
.page .slider.slider-down .img02 {
  width: 62.6%;
  margin-left: auto;
}
.page .slider.slider-down .img03 {
  width: 68.2%;
  margin-right: auto;
}
.page .slider.slider-down .img04 {
  width: 69.5%;
  margin-left: auto;
}
.page .slider.slider-down .img05 {
  width: 82.6%;
  margin-right: auto;
}
.page .slider.slider-down .img06 {
  width: 62.6%;
  margin-left: auto;
}
.page .slider.slider-down .img07 {
  width: 68.2%;
  margin-left: auto;
  margin-right: 15.8%;
}
.page .slider.slider-down .img08 {
  width: 72%;
  margin-left: auto;
  margin-right: 6.45%;
}
.page .slider.slider-down .img09 {
  width: 69.5%;
  margin-right: auto;
  margin-left: 6.52%;
}
.page .slider.slider-down .slider-track {
  -webkit-animation-name: scroll-down;
          animation-name: scroll-down;
}
@media screen and (max-width: 767px) {
  .page .slider.slider-down .slider-track {
    display: none !important;
  }
}
.page .slider.slider-up {
  position: relative;
  min-height: 200px;
  overflow: visible;
}
.page .slider.slider-up .img01 {
  width: 56.6%;
  margin-left: auto;
}
.page .slider.slider-up .img02 {
  width: 85.5%;
  margin-right: auto;
}
.page .slider.slider-up .img03 {
  width: 58.1%;
  margin-left: auto;
}
.page .slider.slider-up .img04 {
  width: 79.9%;
  margin-left: auto;
  margin-right: 14.53%;
}
.page .slider.slider-up .img05 {
  width: 57%;
  margin-left: auto;
}
.page .slider.slider-up .img06 {
  width: 56.2%;
  margin-left: auto;
  margin-right: 25.8%;
}
.page .slider.slider-up .img07 {
  width: 85.4%;
  margin-right: auto;
}
.page .slider.slider-up .img08 {
  width: 82.6%;
  margin-left: auto;
}
.page .slider.slider-up .slider-track {
  position: absolute;
  -webkit-animation-name: scroll-up;
          animation-name: scroll-up;
}
@media screen and (max-width: 767px) {
  .page .slider.slider-up {
    display: none !important;
  }
}
@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes scroll-up {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes scroll-up {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.page .fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.page .fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.page .fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.page .fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.page .fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.page .fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
.page .fadein-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.page .fadein-item.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page .js-slick-slider {
  height: 29.76vw !important;
  overflow: visible;
}
.page .slick-slide {
  height: 29.76vw !important;
}
.page .js-slick-slider .slick-slide {
  height: 100%; /* スライド要素も高さ100% */
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page .js-slick-slider .slider-img {
  height: 100%;
  width: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 3.7vw !important; /* マージンはリセット */
  max-width: none !important; /* 幅の制限解除 */
}
.page .js-slick-slider02 {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.page .js-slick-slider02 img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page .program {
  padding: 120px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page .program {
    padding: 13.9vw 0;
  }
}
.page .program_title {
  font-size: 60px;
  font-family: "Jost", sans-serif;
  color: #000000;
  font-weight: bold;
  font-style: italic;
  position: relative;
  line-height: 1.45;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page .program_title {
    font-size: 9.3vw;
    margin-bottom: 13vw;
  }
}
.page .program_title::after {
  content: "";
  width: 68px;
  height: 9px;
  background: #E01F0F;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page .program_title::after {
    width: 13vw;
    height: 1.39vw;
    bottom: -3vw;
  }
}
.page .program_title_bottom {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page .program_title_bottom {
    font-size: 3.72vw;
  }
}
.page .program_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1280px;
  width: 96%;
  margin: 74px auto 0;
}
@media screen and (max-width: 767px) {
  .page .program_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    width: 90.7vw;
    margin-top: 9.3vw;
  }
}
.page .program_item {
  width: 31.25%;
  -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 2.86vw;
}
@media screen and (max-width: 767px) {
  .page .program_item {
    width: 100%;
    margin-bottom: 9.3vw;
    padding-bottom: 16.7vw;
  }
}
.page .program_icon {
  background: #FFF6F1;
  height: 15vw;
  max-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .page .program_icon {
    max-height: unset;
    height: 65.34vw;
  }
}
.page .program_icon .icon01 {
  width: 11.14vw;
}
@media screen and (max-width: 767px) {
  .page .program_icon .icon01 {
    width: 48.6vw;
  }
}
.page .program_icon .icon02 {
  width: 9vw;
}
@media screen and (max-width: 767px) {
  .page .program_icon .icon02 {
    width: 39.53vw;
  }
}
.page .program_icon .icon03 {
  width: 8.8vw;
}
@media screen and (max-width: 767px) {
  .page .program_icon .icon03 {
    width: 38.37vw;
  }
}
.page .program_term {
  position: absolute;
  bottom: 14vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 4.2vw;
  font-weight: bold;
  color: #E01F0F;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .page .program_term {
    bottom: 17.3vw;
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 767px) {
  .page .program_term {
    font-size: 18.13vw;
    bottom: 61.1vw;
  }
}
.page .program_term span {
  font-size: 2.34vw;
  font-weight: bold;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .page .program_term span {
    font-size: 10.4vw;
  }
}
.page .program_course {
  margin-top: 2.9vw;
  font-size: 1.97vw;
  color: #E01F0F;
  font-weight: bold;
  line-height: 1.31;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .page .program_course {
    margin-top: 3.2vw;
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 767px) {
  .page .program_course {
    margin-top: 13.9vw;
    font-size: 8.83vw;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .page .program_course span {
    font-size: 6.97vw;
  }
}
.page .program_text {
  font-size: 1.35vw;
  font-weight: bold;
  margin-top: 1.14vw;
  line-height: 1.53;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .page .program_text {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .page .program_text {
    font-size: 4.65vw;
    margin-top: 5.8vw;
  }
}
.page .step {
  padding: 80px 0 120px;
  text-align: center;
  background: #FFF6F1;
}
@media screen and (max-width: 767px) {
  .page .step {
    padding: 13.9vw 0;
  }
}
.page .step_title {
  font-size: 60px;
  font-family: "Jost", sans-serif;
  color: #000000;
  font-weight: bold;
  font-style: italic;
  position: relative;
  line-height: 1.45;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .page .step_title {
    font-size: 9.3vw;
    margin-bottom: 13vw;
  }
}
.page .step_title::after {
  content: "";
  width: 68px;
  height: 9px;
  background: #E01F0F;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page .step_title::after {
    width: 13vw;
    height: 1.39vw;
    bottom: -3vw;
  }
}
.page .step_title_bottom {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page .step_title_bottom {
    font-size: 3.72vw;
  }
}
@media screen and (max-width: 767px) {
  .page .step_sec {
    width: 90vw;
    margin: 23.25vw auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page .step-arrow {
  max-width: 1280px;
  width: 96%;
  display: block;
  margin: 55px auto 40px;
}
@media screen and (max-width: 767px) {
  .page .step-arrow {
    max-width: 100%;
    width: 40.69vw;
    margin: 0 auto;
  }
}
.page .step_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page .step_list {
    display: block;
    max-width: 100%;
    width: 38.83vw;
    margin-top: 3vw;
  }
}
.page .step_item {
  max-width: 250px;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .page .step_item {
    max-width: 100%;
    width: 100%;
  }
}
.page .step_item img {
  margin: 0 auto 2vw;
}
.page .step_item p {
  font-size: 22px;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .page .step_item p {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 767px) {
  .page .step_item p {
    font-size: 3.72vw;
  }
}
@media screen and (max-width: 767px) {
  .page .step_item.step01 {
    margin-bottom: 26vw;
  }
}
.page .step_item.step01 img {
  display: block;
  width: 29.8%;
}
@media screen and (max-width: 767px) {
  .page .step_item.step01 img {
    width: 17.2vw;
  }
}
@media screen and (max-width: 767px) {
  .page .step_item.step02 {
    margin-bottom: 26vw;
  }
}
.page .step_item.step02 img {
  display: block;
  width: 60.7%;
}
@media screen and (max-width: 767px) {
  .page .step_item.step02 img {
    width: 28.4vw;
  }
}
@media screen and (max-width: 767px) {
  .page .step_item.step03 {
    margin-bottom: 19.3vw;
  }
}
.page .step_item.step03 img {
  display: block;
  width: 31.4%;
}
@media screen and (max-width: 767px) {
  .page .step_item.step03 img {
    width: 14.18vw;
  }
}
.page .step_item.step04 img {
  display: block;
  width: 36.92%;
}
@media screen and (max-width: 767px) {
  .page .step_item.step04 img {
    width: 19.2vw;
  }
}
.page .question {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page .question {
    padding: 13.95vw 0 25.58vw;
  }
}
.page .question_title {
  font-size: 60px;
  font-family: "Jost", sans-serif;
  color: #000000;
  font-weight: bold;
  font-style: italic;
  position: relative;
  line-height: 1.45;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .page .question_title {
    font-size: 9.3vw;
    margin-bottom: 8.65vw;
  }
}
.page .question_title::after {
  content: "";
  width: 68px;
  height: 9px;
  background: #E01F0F;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page .question_title::after {
    width: 13vw;
    height: 1.39vw;
    bottom: -3vw;
  }
}
.page .question_title_bottom {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page .question_title_bottom {
    font-size: 3.72vw;
  }
}
.page .question .accordion {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page .question .accordion {
    max-width: 100%;
    width: 90.69vw;
  }
}
.page .question .accordion-item {
  border-bottom: 4px dashed #707070;
}
@media screen and (max-width: 767px) {
  .page .question .accordion-item {
    border-bottom: 0.9vw dashed #707070;
  }
}
.page .question .accordion-question {
  position: relative;
  cursor: pointer;
  height: 130px;
  padding-left: 8vw; /* Qのスペース */
  font-size: 1.35vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page .question .accordion-question {
    font-size: 2.4vw;
    padding-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page .question .accordion-question {
    height: 22.79vw;
    padding-left: 10.8vw;
  }
}
.page .question .accordion-question br {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page .question .accordion-question br {
    display: inline;
  }
}
.page .question .accordion-question::before {
  content: "Q";
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 4.16vw;
  font-weight: bold;
  color: #000;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page .question .accordion-question::before {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page .question .accordion-question::before {
    font-size: 9.3vw;
    left: 0;
  }
}
.page .question .accordion-question::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 55%;
  -webkit-transform: translateY(-55%) rotate(0deg);
          transform: translateY(-55%) rotate(0deg);
  font-size: 40px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .page .question .accordion-question::after {
    font-size: 6.65vw;
    right: 4vw;
  }
}
.page .question .accordion-question.open::after {
  content: "−";
  -webkit-transform: translateY(-55%) rotate(180deg);
          transform: translateY(-55%) rotate(180deg);
}
.page .question .accordion-question p {
  margin-top: 1.4vw;
}
@media screen and (max-width: 767px) {
  .page .question .accordion-question p {
    width: 67.58vw;
    font-size: 3.25vw;
    margin-top: 2vw;
    line-height: 2.2;
  }
}
.page .question .accordion-answer {
  display: none;
  position: relative;
  padding-left: 8vw; /* Aのスペース */
  padding-top: 1vw;
  padding-bottom: 2vw;
  font-size: 1.35vw;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page .question .accordion-answer {
    font-size: 2.4vw;
    padding-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page .question .accordion-answer {
    font-size: 3.25vw;
    padding-left: 10.8vw;
    padding-bottom: 5vw;
  }
}
.page .question .accordion-answer::before {
  content: "A";
  position: absolute;
  left: 1.3rem;
  font-size: 4.16vw;
  font-weight: bold;
  color: #000000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page .question .accordion-answer::before {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page .question .accordion-answer::before {
    font-size: 9.3vw;
    left: 0.8vw;
  }
}
.page .question .accordion-answer p {
  text-align: left;
  margin-top: 0.4vw;
  line-height: 2.2;
}
.page .question .accordion-answer.one-line p {
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .page .question .accordion-answer.one-line p {
    line-height: 2.2;
  }
}

/*=============================
	footer
=============================*/
.footer {
  background: #E01F0F;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 10001;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 13.9vw 0 11.6vw;
  }
}
.footer_inner {
  max-width: 1280px;
  width: 96%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .footer_inner {
    line-height: 1.5;
    max-width: 100%;
    width: 90.69vw;
  }
}
.footer_link {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer_link {
    font-size: 2.79vw;
    margin-bottom: 2.79vw;
  }
}
.footer_copy {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .footer_copy {
    font-size: 2.79vw;
    font-weight: bold;
    margin-top: 15.5vw;
  }
}