@charset "UTF-8";
* {
  box-sizing: inherit;
}

html {
  min-height: 100vh;
  overflow-y: scroll;
}

body {
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "ヒラギノ角ゴシック ProN", "メイリオ", sans-serif;
  color: #000;
  font-weight: 400;
}
body a {
  text-decoration: none;
  color: #000;
}

body.locked {
  width: 100%;
  height: 100%;
  position: fixed;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 0;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* アニメーションの設定 */
}
.loading p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
.loading .spinner {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid #FFF;
  border-left-color: #1082ce;
  /* アニメーションを1秒かけて実行 */
  -webkit-animation: spinner-rotation 1s linear infinite;
          animation: spinner-rotation 1s linear infinite;
}
@-webkit-keyframes spinner-rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner-rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fv {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #0077C2, #0067B2);
  opacity: 0;
  transition: 0.6s;
}
.fv.show {
  opacity: 1;
}
.fv__scroll {
  position: fixed;
  right: 20px;
  bottom: 115px;
  writing-mode: vertical-rl;
}
.fv__scroll span {
  color: #fff;
  font-size: 13px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}
.fv__scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
.fv__img {
  width: 100%;
  height: 100%;
  background-image: url("../img/fv-pc1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fv.pc1 .fv__img {
  background-image: url("../img/fv-pc1.jpg");
}
.fv.pc2 .fv__img {
  background-image: url("../img/fv-pc3.jpg");
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.page {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s;
  position: relative;
  z-index: 2;
  background-color: #F0FBFF;
}
.page__filter {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  transition: 0.8s;
}
.page__back {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.page.show {
  opacity: 1;
  pointer-events: auto;
}
.page.show .page__filter {
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  pointer-events: none;
}

.header {
  display: none;
}

.main {
  width: 100%;
  max-width: 540px;
  margin: auto;
  position: relative;
  z-index: 2;
  background-color: #F0FBFF;
  overflow: hidden;
}
.main__img {
  width: 100%;
}

.entry-button_fixed {
  display: none;
}

.section-head {
  position: relative;
  padding-bottom: 15px;
  border-bottom: solid 1px #1D50A2;
  margin: auto;
}
.section-head span {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: block;
  z-index: 2;
  font-family: "Outfit", sans-serif;
}
.section-head img {
  width: 100%;
  position: absolute;
  left: 0;
  top: -32px;
  z-index: 1;
}

.head-text {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
}

.scroll-action {
  transition: 0.4s;
}

.message {
  position: relative;
  background-color: #fff;
  padding-top: 40px;
  margin-top: -40px;
}
.message::before {
  content: "";
  width: 792px;
  height: 396px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  position: absolute;
  top: -115px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.message::after {
  content: "";
  width: 792px;
  height: 396px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: -115px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.message__content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.message .section-head {
  width: 236px;
}
.message__main {
  margin-top: 36px;
}
.message__main .head {
  font-size: 28px;
  color: #3591D4;
  text-align: center;
  font-weight: 700;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
}
.message__main .head.show {
  transform: translateY(0);
  opacity: 1;
}
.message__main .paragraph {
  font-size: 20px;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
  margin-bottom: 2em;
  opacity: 0;
  transform: translateY(20px);
}
.message__main .paragraph.show {
  transform: translateY(0);
  opacity: 1;
}
.message__img1 {
  position: absolute;
  width: 150px;
  top: 40px;
  left: -20px;
  opacity: 0;
  transform: translateX(-40px);
}
.message__img1.show {
  transform: translateX(0);
  opacity: 1;
}
.message__img2 {
  position: absolute;
  width: 132px;
  top: 280px;
  right: -12px;
  opacity: 0;
  transform: translateX(40px);
}
.message__img2.show {
  transform: translateX(0);
  opacity: 1;
}
.message__img3 {
  position: absolute;
  width: 314px;
  bottom: -160px;
  left: 20px;
  opacity: 0;
  transform: translateY(40px);
}
.message__img3.show {
  transform: translateY(0);
  opacity: 1;
}

.type {
  position: relative;
  margin-top: 260px;
  padding: 40px 20px 0;
}
.type .section-head {
  width: 418px;
}
.type .section-head span .sub {
  position: absolute;
  font-size: 14px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.type .section-head img {
  width: calc(100% + 24px);
  left: -12px;
}
.type__main {
  width: 100%;
  height: 844px;
  position: relative;
  margin-top: 40px;
}
.type__card {
  background-color: #fff;
  display: block;
  border-radius: 6px;
  position: absolute;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(40px);
}
.type__card.show {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .type__card:hover {
    transform: translateY(-8px);
  }
}
.type__card p {
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
.type__card_vertical {
  width: calc(50% - 10px);
  height: 292px;
}
.type__card_vertical img {
  margin-bottom: 10px;
  width: 100%;
}
.type__card_1 {
  top: 0;
  left: 0;
}
.type__card_1 img {
  margin-top: -10px;
}
.type__card_2 {
  top: 40px;
  right: 0;
}
.type__card_2 img {
  margin-top: -24px;
}
.type__card_3 {
  top: 322px;
  left: 0;
}
.type__card_3 img {
  margin-top: -10px;
}
.type__card_4 {
  top: 362px;
  right: 0;
}
.type__card_4 img {
  margin-top: -14px;
  margin-bottom: 0;
}
.type__card_5 {
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 10%;
  bottom: 0;
  left: 0;
}
.type__card_5 img {
  margin-top: -30px;
  margin-bottom: 10px;
  width: 200px;
}

.program {
  position: relative;
  margin-top: 80px;
  padding: 40px;
}
.program .section-head {
  width: 250px;
}
.program__main {
  margin-top: 25px;
  padding: 0 20px;
}
.program .link-box {
  width: 100%;
  padding: 20px 16px;
  border-radius: 6px;
  display: block;
  position: relative;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0.3s;
}
.program .link-box.show {
  transform: translateY(0);
  opacity: 1;
}
.program .link-box__title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}
.program .link-box__text .line {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  font-size: 22px;
  color: #fff;
  line-height: 36px;
  position: relative;
  padding: 0 10px;
}
.program .link-box__text .line::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.program .link-box__text .line span {
  position: relative;
  z-index: 2;
  font-weight: 600;
}
.program .link-box__recommend {
  margin-top: 20px;
}
.program .link-box__recommend h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1D50A2;
  margin-bottom: 10px;
}
.program .link-box__recommend ul {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 16px;
}
.program .link-box__recommend ul li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.program .link-box__recommend ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.program .link-box__more {
  width: 100%;
  font-size: 22px;
  line-height: 44px;
  border-radius: 22px;
  margin-top: 24px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}
.program .link-box__more span {
  position: relative;
}
.program .link-box__more span::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 4px;
  background-image: url("../img/more-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  transform: translateY(1px);
}
.program .link-box__more span.close {
  display: none;
}
.program .link-box__more.open span::after {
  transform: translateY(1px) rotate(180deg);
}
.program .link-box__more.open span.more {
  display: none;
}
.program .link-box__more.open span.close {
  display: block;
}
.program .link-box .accordion {
  margin-top: 24px;
  padding: 24px 20px 0;
  border-top: solid 1px #9C9C9C;
  display: none;
}
.program .link-box .accordion__title {
  font-size: 22px;
  color: #1D50A2;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.program .link-box .accordion__theme .theme__title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.program .link-box .accordion__theme span {
  display: block;
  text-align: center;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}
.program .link-box .accordion__outline {
  padding: 20px 16px;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 20px;
}
.program .link-box .accordion__outline h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1D50A2;
  text-align: center;
}
.program .link-box .accordion__outline dl {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
}
.program .link-box .accordion__outline dl dt {
  width: 90px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: solid 1px #9C9C9C;
}
.program .link-box .accordion__outline dl dd {
  width: calc(100% - 90px);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: solid 1px #9C9C9C;
}
.program .link-box .accordion__outline dl dd span {
  font-size: 14px;
  line-height: 1.2em;
  display: block;
  margin-top: 6px;
}
.program .link-box .accordion__program {
  padding: 20px 16px;
  background-color: #fff;
  border-radius: 4px;
}
.program .link-box .accordion__program h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1D50A2;
  text-align: center;
  margin-bottom: 20px;
}
.program .link-box .accordion__program ol {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
.program .link-box_a {
  background-color: #DAE8FF;
  margin-bottom: 20px;
}
.program .link-box_a .link-box__title {
  color: #1D50A2;
}
.program .link-box_a .link-box__text .line::before {
  background-color: #1D50A2;
}
.program .link-box_a img {
  width: auto;
  height: 120px;
  position: absolute;
  top: 56px;
  right: 15px;
}
.program .link-box_a .link-box__more {
  background-color: #1D50A2;
}
.program .link-box_b {
  background-color: #CDEFFF;
  margin-bottom: 20px;
}
.program .link-box_b .link-box__title {
  color: #00A0E9;
}
.program .link-box_b .link-box__text .line::before {
  background-color: #00A0E9;
}
.program .link-box_b img {
  width: auto;
  height: 120px;
  position: absolute;
  top: 56px;
  right: 20px;
}
.program .link-box_b .link-box__more {
  background-color: #00A0E9;
}
.program .link-box_comingsoon {
  background-color: #E4E4E4;
  height: 170px;
  padding-top: 30px;
}
.program .link-box_comingsoon .title {
  color: #000;
  font-weight: 700;
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}
.program .link-box_comingsoon .coming-soon {
  color: #9D9D9D;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  font-family: "Oswald", sans-serif;
}

.voices {
  margin-top: 80px;
  padding-top: 40px;
}
.voices .section-head {
  width: 158px;
}
.voices__slide {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0.3s;
}
.voices__slide.show {
  transform: translateY(0);
  opacity: 1;
}
.voices__slide .slide {
  margin: 0 16px;
  position: relative;
}
.voices__slide .slide img {
  width: 100%;
}
.voices__slide .slide p {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 24px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
.voices__slide .slide-arrow {
  position: absolute;
  top: 29.4%;
  background-color: #3591D4;
  width: 38px;
  height: 38px;
  border-radius: 22px;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.voices__slide .slide-arrow::before {
  content: "";
  width: 10px;
  height: 20px;
  top: 9px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.voices__slide .slide-arrow.slick-disabled {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .voices__slide .slide-arrow:hover {
    background-color: #86C3EE;
  }
}
.voices__slide .prev-arrow {
  left: 16px;
}
.voices__slide .prev-arrow::before {
  background-image: url("../img/slider-arrow.svg");
  left: 13px;
}
.voices__slide .next-arrow {
  right: 16px;
}
.voices__slide .next-arrow::before {
  background-image: url("../img/slider-arrow.svg");
  transform: rotate(180deg);
  right: 13px;
}

.jecc-is {
  position: relative;
  margin-top: 200px;
  background-color: #3591D4;
  border-radius: 8px;
  padding-top: 72px;
  padding-bottom: 60px;
}
.jecc-is .section-head {
  width: 262px;
  border-bottom: solid 1px #fff;
}
.jecc-is .section-head span {
  color: #fff;
}
.jecc-is .head-text {
  color: #fff;
}
.jecc-is .head-img {
  width: 170px;
  position: absolute;
  left: 50%;
  top: -132px;
  transform: translateX(-50%);
}
.jecc-is__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  margin-top: 40px;
}
.jecc-is__item {
  width: 100%;
  padding: 17px 0 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.1);
  transition-delay: 0.3s;
}
.jecc-is__item.show {
  transform: scale(1);
  opacity: 1;
}
.jecc-is__item img {
  margin: 0 auto 10px;
  display: block;
}
.jecc-is__item p {
  font-size: 17px;
  line-height: 1.4em;
  font-weight: 500;
  text-align: center;
}
.jecc-is__item_half {
  width: calc(50% - 10px);
}
.jecc-is__item_1 img {
  width: 89.6%;
}
.jecc-is__item_2 {
  padding-top: 10px;
}
.jecc-is__item_2 img {
  width: 88.3%;
  margin-bottom: 7px;
}
.jecc-is__item_3 img {
  width: 87.1%;
}
.jecc-is__item_4 img {
  width: 80.9%;
}
.jecc-is__item_5 img {
  width: 94.9%;
}

.flow {
  position: relative;
  padding: 100px 20px 0;
}
.flow .section-head {
  width: 190px;
}
.flow .section-head img {
  width: calc(100% - 16px);
  left: 8px;
}
.flow__main {
  margin-top: 40px;
}
.flow__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0.3s;
}
.flow__item.show {
  transform: translateY(0);
  opacity: 1;
}
.flow__item::after {
  content: "";
  width: 26px;
  height: 13px;
  position: absolute;
  left: 53px;
  bottom: -20px;
  background-image: url("../img/flow-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.flow__item:last-child {
  margin-bottom: 0;
}
.flow__item:last-child:after {
  display: none;
}
.flow__img {
  width: 132px;
}
.flow__text {
  width: calc(100% - 152px);
}
.flow__text h3 {
  font-size: 22px;
  color: #3591D4;
  font-weight: 700;
  margin-bottom: 10px;
}
.flow__text p {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}
.flow__text p a {
  color: #E9A300;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .flow__text p a:hover {
    opacity: 0.7;
  }
}

.faq {
  margin-top: 160px;
  padding-top: 40px;
  padding-bottom: 200px;
  background-color: #fff;
  position: relative;
}
.faq::before {
  content: "";
  width: 792px;
  height: 396px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  position: absolute;
  top: -115px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.faq__content {
  position: relative;
  z-index: 2;
}
.faq .section-head {
  width: 150px;
}
.faq__main {
  margin-top: 60px;
  padding: 0 20px;
}
.faq__main h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
}
.faq__block {
  margin-bottom: 50px;
}
.faq__block:last-child {
  margin-bottom: 0;
}
.faq__item {
  border-radius: 4px;
  border: solid 1px #3591D4;
  margin-bottom: 16px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0.3s;
}
.faq__item.show {
  transform: translateY(0);
  opacity: 1;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__item .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px 14px 18px;
  border-radius: 4px;
  background-color: #F0FBFF;
  cursor: pointer;
  position: relative;
}
.faq__item .question .icon {
  width: 26px;
  height: 26px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #3591D4;
  border-radius: 13px;
}
.faq__item .question p {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  width: calc(100% - 38px);
}
.faq__item .question .switch {
  width: 26px;
  height: 26px;
  border-radius: 13px;
  text-align: center;
  border: solid 1px #3591D4;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.faq__item .question .switch::before {
  content: "";
  height: 1px;
  width: 12px;
  background-color: #3591D4;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.faq__item .question .switch::after {
  content: "";
  height: 1px;
  width: 12px;
  background-color: #3591D4;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.faq__item .answer {
  padding: 16px 18px;
  display: none;
}
.faq__item .answer p {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}
.faq__item.open .question {
  border-radius: 4px 4px 0 0;
}
.faq__item.open .question .switch::after {
  display: none;
}

.footer {
  background-color: #3591D4;
  position: relative;
  padding: 0 20px 60px;
}
.footer::before {
  content: "";
  width: 792px;
  height: 396px;
  border-radius: 50%;
  background-color: #3591D4;
  display: block;
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.footer__content {
  position: relative;
  z-index: 2;
}
.footer .entry-button {
  width: 100%;
  color: #1D50A2;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  line-height: 56px;
  border-radius: 30px;
  background-color: #fff;
  border: solid 2px #fff;
  display: block;
  margin-bottom: 32px;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .footer .entry-button:hover {
    background-color: #1D50A2;
    color: #fff;
  }
}
.footer .text-link {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  color: #fff;
}
.footer .text-link::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../img/icon-external.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 4px;
  display: inline-block;
  transform: translateY(1px);
}
@media screen and (min-width: 1025px) {
  .footer .text-link:hover {
    opacity: 0.7;
  }
}
.footer .copyright {
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.fixed_left {
  position: fixed;
  left: max(56px, calc(50vw - 720px + 56px));
  top: 70px;
  z-index: 2;
  width: 335px;
}
.fixed_left .company-title {
  margin-bottom: 34px;
}
.fixed_left .company-title img {
  display: block;
}
.fixed_left .company-title__logo {
  width: 192px;
  margin-bottom: 15px;
}
.fixed_left .company-title__text {
  width: 190px;
}
.fixed_left .link-box {
  width: 100%;
  padding: 20px 16px;
  border-radius: 6px;
  display: block;
  position: relative;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}
.fixed_left .link-box:hover {
  transform: translateY(-8px);
}
.fixed_left .link-box__title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}
.fixed_left .link-box__text .line {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  font-size: 20px;
  color: #fff;
  line-height: 31px;
  position: relative;
  padding: 0 6px;
}
.fixed_left .link-box__text .line::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fixed_left .link-box__text .line span {
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.fixed_left .link-box_a {
  background-color: #DAE8FF;
  margin-bottom: 20px;
}
.fixed_left .link-box_a .link-box__title {
  color: #1D50A2;
}
.fixed_left .link-box_a .link-box__text .line::before {
  background-color: #1D50A2;
}
.fixed_left .link-box_a img {
  width: auto;
  height: 84px;
  position: absolute;
  bottom: 12px;
  right: 6px;
}
.fixed_left .link-box_b {
  background-color: #CDEFFF;
  margin-bottom: 20px;
}
.fixed_left .link-box_b .link-box__title {
  color: #00A0E9;
}
.fixed_left .link-box_b .link-box__text .line::before {
  background-color: #00A0E9;
}
.fixed_left .link-box_b img {
  width: auto;
  height: 86px;
  position: absolute;
  bottom: 12px;
  right: 15px;
}
.fixed_left .link-box_comingsoon {
  background-color: #E4E4E4;
  height: 136px;
  pointer-events: none;
}
.fixed_left .link-box_comingsoon .title {
  color: #000;
  font-weight: 700;
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.fixed_left .link-box_comingsoon .coming-soon {
  color: #9D9D9D;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  font-family: "Oswald", sans-serif;
}
@media screen and (min-width: 1441px) {
  .fixed_left.vh-condensed {
    top: 70px;
  }
  .fixed_left.vh-condensed .company-title {
    margin-bottom: 24px;
  }
  .fixed_left.vh-condensed .company-title__logo {
    width: 150px;
  }
  .fixed_left.vh-condensed .company-title__text {
    width: 140px;
  }
  .fixed_left.vh-condensed .link-box {
    width: 100%;
    padding: 16px 12px;
  }
  .fixed_left.vh-condensed .link-box__title {
    font-size: 22px;
  }
  .fixed_left.vh-condensed .link-box__text .line {
    font-size: 16px;
    line-height: 26px;
  }
  .fixed_left.vh-condensed .link-box_a {
    margin-bottom: 16px;
  }
  .fixed_left.vh-condensed .link-box_a img {
    height: 60px;
  }
  .fixed_left.vh-condensed .link-box_b {
    margin-bottom: 16px;
  }
  .fixed_left.vh-condensed .link-box_b img {
    height: 60px;
    right: 4px;
  }
  .fixed_left.vh-condensed .link-box_comingsoon {
    background-color: #E4E4E4;
    height: 100px;
  }
  .fixed_left.vh-condensed .link-box_comingsoon .title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .fixed_left.vh-condensed .link-box_comingsoon .coming-soon {
    font-size: 20px;
  }
}

.menu {
  position: fixed;
  right: max(72px, calc(50vw - 720px + 72px));
  top: 70px;
  z-index: 2;
  width: 308px;
}
.menu__img {
  display: none;
}
.menu ul li {
  margin-bottom: 30px;
}
.menu ul li a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  font-family: "Outfit", sans-serif;
}
.menu ul li a span {
  display: block;
  color: #818181;
  font-size: 14px;
  margin-top: 4px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "ヒラギノ角ゴシック ProN", "メイリオ", sans-serif;
}
.menu ul li a:hover {
  color: #1D50A2;
}
.menu ul li a:hover span {
  color: #818181;
}
.menu ul li.current a {
  color: #1D50A2;
}
.menu ul li.current a span {
  color: #818181;
}
.menu .entry-button {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  font-family: "Outfit", sans-serif;
  text-align: center;
  line-height: 74px;
  border-radius: 39px;
  background-color: #E9A300;
  border: solid 2px #E9A300;
  display: block;
  margin-bottom: 36px;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .menu .entry-button:hover {
    background-color: #fff;
    color: #E9A300;
  }
}
.menu .text-link {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.menu .text-link::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../img/icon-external-black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 4px;
  display: inline-block;
  transform: translateY(1px);
}
@media screen and (min-width: 1025px) {
  .menu .text-link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1441px) {
  .menu.vh-condensed {
    top: 70px;
  }
  .menu.vh-condensed ul li {
    margin-bottom: 20px;
  }
  .menu.vh-condensed ul li a {
    font-size: 16px;
  }
  .menu.vh-condensed ul li a span {
    font-size: 12px;
  }
  .menu.vh-condensed .entry-button {
    font-size: 20px;
    line-height: 56px;
    border-radius: 30px;
    margin-bottom: 24px;
  }
  .menu.vh-condensed .text-link {
    margin: 0 auto 16px;
  }
}

@media screen and (max-width: 1440px) {
  .fixed_left {
    position: fixed;
    top: 50px;
    left: 40px;
    width: calc(50vw - 330px);
    max-width: 300px;
  }
  .fixed_left .company-title {
    margin-bottom: 16px;
  }
  .fixed_left .company-title__logo {
    width: 120px;
    margin-bottom: 8px;
  }
  .fixed_left .company-title__text {
    width: 110px;
  }
  .fixed_left .link-box {
    width: 100%;
    padding: 12px 12px;
  }
  .fixed_left .link-box__title {
    font-size: 22px;
  }
  .fixed_left .link-box__text .line {
    font-size: 16px;
    line-height: 26px;
  }
  .fixed_left .link-box_a {
    margin-bottom: 16px;
  }
  .fixed_left .link-box_a img {
    height: 60px;
  }
  .fixed_left .link-box_b {
    margin-bottom: 16px;
  }
  .fixed_left .link-box_b img {
    height: 60px;
    right: 4px;
  }
  .fixed_left .link-box_comingsoon {
    background-color: #E4E4E4;
    height: 100px;
  }
  .fixed_left .link-box_comingsoon .title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .fixed_left .link-box_comingsoon .coming-soon {
    font-size: 20px;
  }
  .menu {
    position: fixed;
    top: 50px;
    right: 40px;
    width: calc(50vw - 330px);
    max-width: 300px;
  }
  .menu ul li {
    margin-bottom: 16px;
  }
  .menu ul li a {
    font-size: 16px;
  }
  .menu ul li a span {
    font-size: 11px;
  }
  .menu .entry-button {
    font-size: 18px;
    line-height: 42px;
    border-radius: 24px;
    margin-bottom: 20px;
  }
  .menu .text-link {
    font-size: 14px;
    margin: 0 auto 12px;
  }
}
@media screen and (max-width: 1100px) {
  .fixed_left {
    display: none;
  }
  .menu {
    position: fixed;
    padding: 108px 20px 60px;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow: scroll;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 49;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }
  .menu.show {
    opacity: 1;
    pointer-events: auto;
  }
  .menu__img {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
  }
  .menu__content {
    position: relative;
    z-index: 2;
  }
  .menu ul li.current a {
    color: #000;
  }
  .menu .entry-button {
    max-width: 230px;
    margin: 0 auto 30px;
  }
  .header {
    display: block;
    width: calc(100% - 32px);
    position: fixed;
    top: 16px;
    left: 16px;
    height: 65px;
    background-color: #fff;
    border-radius: 4px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    z-index: 50;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    transition-delay: 0.1s;
  }
  .header__title {
    display: flex;
    align-items: center;
  }
  .header__title .logo {
    width: 76px;
    margin-right: 10px;
  }
  .header__title .text {
    width: 120px;
  }
  .header__switch {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 32px;
  }
  .header__switch .bar {
    width: 34px;
    height: 2px;
    position: absolute;
    left: 2px;
    transition: 0.3s;
  }
  .header__switch .bar:nth-child(1) {
    background-color: #1D50A2;
    top: 0;
  }
  .header__switch .bar:nth-child(2) {
    background-color: #00A0E9;
    top: 12px;
  }
  .header__switch .text {
    display: block;
    text-align: center;
    font-size: 12px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .header__switch .text.open {
    display: none;
  }
  .header.open {
    background-color: transparent;
    box-shadow: none;
  }
  .header.open .header__switch .bar:nth-child(1) {
    top: 6px;
    transform: rotate(-156deg);
  }
  .header.open .header__switch .bar:nth-child(2) {
    top: 6px;
    transform: rotate(156deg);
  }
  .header.open .header__switch .text.close {
    display: none;
  }
  .header.open .header__switch .text.open {
    display: block;
  }
  .entry-button_fixed {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 8px 20px;
    z-index: 50;
  }
  .entry-button_fixed a {
    width: 100%;
    max-width: 335px;
    margin: auto;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    font-family: "Outfit", sans-serif;
    text-align: center;
    line-height: 56px;
    border-radius: 28px;
    background-color: #E9A300;
    display: block;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 767px) {
  .fv.landscape .fv__img {
    background-image: url("../img/fv-pc1.jpg");
  }
  .fv.portrait .fv__img {
    background-image: url("../img/fv-sp2.jpg");
  }
  .fv__scroll {
    right: 24px;
    bottom: 24px;
  }
  .fv__scroll span {
    font-size: 12px;
    writing-mode: horizontal-tb;
  }
  .fv__scroll::before {
    bottom: -24px;
    left: auto;
    right: -9px;
    height: 48px;
  }
}
@media screen and (max-width: 540px) {
  .program {
    padding: 0;
  }
  .voices__slide .slide {
    margin: 0 max(7px, 1.86vw);
  }
  .voices__slide .slide p {
    padding: min(18px, 4.8vw) 16px;
    font-size: min(16px, 4.26vw);
  }
}
@media screen and (max-width: 480px) {
  .section-head span {
    font-size: 20px;
  }
  .section-head img {
    top: -16px;
  }
  .head-text {
    font-size: 22px;
    margin-top: 20px;
  }
  .message::before {
    width: 551px;
    height: 275px;
    top: -67px;
  }
  .message::after {
    width: 551px;
    height: 275px;
    bottom: -67px;
  }
  .message__content {
    padding-bottom: 20px;
  }
  .message .section-head {
    width: 164px;
  }
  .message__main {
    margin-top: 36px;
  }
  .message__main .head {
    font-size: 24px;
  }
  .message__main .paragraph {
    font-size: 15px;
  }
  .message__img1 {
    width: 105px;
    top: 40px;
    left: -10px;
  }
  .message__img2 {
    width: 93px;
    top: 260px;
    right: -4px;
  }
  .message__img3 {
    width: 218px;
    bottom: -160px;
    left: 20px;
  }
  .type {
    margin-top: 220px;
  }
  .type .section-head {
    width: 290px;
  }
  .type .section-head span .sub {
    font-size: 12px;
    top: -16px;
  }
  .type .section-head img {
    width: calc(100% + 18px);
    left: -9px;
  }
  .type__main {
    height: 620px;
    margin: auto;
    margin-top: 34px;
    max-width: 345px;
  }
  .type__card p {
    font-size: min(20px, 5.33vw);
  }
  .type__card_vertical {
    width: calc(50% - 7px);
    height: 220px;
  }
  .type__card_vertical img {
    margin-bottom: 6px;
    width: 100%;
  }
  .type__card_1 {
    top: 0;
    left: 0;
  }
  .type__card_1 img {
    margin-top: -10px;
  }
  .type__card_2 {
    top: 26px;
    right: 0;
  }
  .type__card_2 img {
    margin-top: -24px;
  }
  .type__card_3 {
    top: 240px;
    left: 0;
  }
  .type__card_3 img {
    margin-top: -10px;
  }
  .type__card_4 {
    top: 266px;
    right: 0;
  }
  .type__card_4 img {
    margin-top: -14px;
    margin-bottom: 0;
  }
  .type__card_5 {
    width: 100%;
    height: 122px;
    padding-left: 9px;
    padding-right: 15px;
  }
  .type__card_5 img {
    margin-top: -22px;
    width: min(150px, 40vw);
  }
  .program .section-head {
    width: 174px;
  }
  .program .link-box__title {
    font-size: 28px;
  }
  .program .link-box__text .line {
    font-size: 20px;
    line-height: 31px;
    padding: 0 6px;
  }
  .program .link-box__recommend h4 {
    font-size: 16px;
  }
  .program .link-box__recommend ul {
    padding: 18px 12px;
  }
  .program .link-box__recommend ul li {
    font-size: 14px;
    line-height: 20px;
    padding-left: 14px;
  }
  .program .link-box__more {
    font-size: 19px;
    line-height: 36px;
    border-radius: 18px;
    margin-top: 20px;
  }
  .program .link-box__more span {
    position: relative;
  }
  .program .link-box__more span::after {
    width: 14px;
    height: 14px;
  }
  .program .link-box .accordion {
    margin-top: 20px;
    padding: 20px 16px 0;
  }
  .program .link-box .accordion__title {
    font-size: 18px;
  }
  .program .link-box .accordion__theme .theme__title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .program .link-box .accordion__theme span {
    font-size: 12px;
  }
  .program .link-box .accordion__outline {
    padding: 20px 12px;
    margin-bottom: 20px;
  }
  .program .link-box .accordion__outline h5 {
    font-size: 16px;
  }
  .program .link-box .accordion__outline dl {
    font-size: 14px;
  }
  .program .link-box .accordion__outline dl dt {
    width: 74px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .program .link-box .accordion__outline dl dd {
    width: calc(100% - 74px);
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .program .link-box .accordion__outline dl dd span {
    font-size: 12px;
  }
  .program .link-box .accordion__program h5 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .program .link-box .accordion__program ol {
    font-size: 13px;
  }
  .program .link-box_a img {
    width: auto;
    height: 84px;
    top: 50px;
    right: 8px;
  }
  .program .link-box_b img {
    height: 100px;
    top: 50px;
    right: 20px;
  }
  .voices .section-head {
    width: 110px;
  }
  .jecc-is {
    margin-top: 180px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .jecc-is .section-head {
    width: 182px;
  }
  .jecc-is .head-img {
    width: 150px;
    top: -107px;
  }
  .jecc-is__main {
    margin-top: 40px;
  }
  .jecc-is__item {
    padding: 17px 0 20px;
    margin-bottom: 16px;
  }
  .jecc-is__item p {
    font-size: min(12px, 3.2vw);
  }
  .jecc-is__item_half {
    width: calc(50% - 8px);
  }
  .jecc-is__item_1 img {
    width: 90%;
  }
  .jecc-is__item_2 {
    padding-top: 10px;
  }
  .jecc-is__item_2 img {
    width: 88.3%;
  }
  .jecc-is__item_3 img {
    width: 87.1%;
  }
  .jecc-is__item_4 img {
    width: 80.9%;
  }
  .jecc-is__item_5 img {
    width: 94.9%;
  }
  .flow {
    position: relative;
    padding: 90px 20px 0;
  }
  .flow .section-head {
    width: 132px;
  }
  .flow .section-head img {
    width: calc(100% - 16px);
    left: 8px;
  }
  .flow__item {
    margin-bottom: 20px;
  }
  .flow__item::after {
    width: 22px;
    height: 11px;
    left: 50px;
    bottom: -15px;
  }
  .flow__img {
    width: 102px;
  }
  .flow__text {
    width: calc(100% - 116px);
  }
  .flow__text h3 {
    font-size: 20px;
  }
  .flow__text p {
    font-size: 14px;
  }
  .faq {
    padding-bottom: 120px;
  }
  .faq::before {
    content: "";
    width: 551px;
    height: 275px;
    top: -67px;
  }
  .faq .section-head {
    width: 117px;
  }
  .faq__main h3 {
    font-size: 18px;
  }
  .faq__item {
    margin-bottom: 14px;
  }
  .faq__item .question {
    padding: 12px 38px 12px 14px;
  }
  .faq__item .question .icon {
    width: 24px;
    height: 24px;
    font-size: 15px;
    line-height: 24px;
    border-radius: 12px;
  }
  .faq__item .question p {
    font-size: 14px;
    width: calc(100% - 33px);
  }
  .faq__item .question .switch {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    right: 15px;
  }
  .faq__item .question .switch::before {
    content: "";
    height: 1px;
    width: 12px;
    left: 5px;
  }
  .faq__item .question .switch::after {
    content: "";
    height: 1px;
    width: 12px;
    left: 5px;
  }
  .faq__item .answer {
    padding: 15px 14px;
  }
  .faq__item .answer p {
    font-size: 14px;
  }
  .footer {
    padding: 0 20px 50px;
  }
  .footer::before {
    width: 551px;
    height: 275px;
    top: -67px;
  }
  .footer .entry-button {
    font-size: 20px;
    line-height: 52px;
    border-radius: 28px;
  }
  .footer .text-link {
    font-size: 14px;
    margin: 0 auto 28px;
  }
  .footer .copyright {
    font-size: 12px;
  }
}