@charset "utf-8";

:root {
  --body-bg: #fff;
  --body-color: #1A1311;
  --main-color: #013D84;
  --main-color-dk: #083162;
  --sub-color: #54A6E5;
  --acc-color: #FFF100;
  --red: #F44B4B;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-size-base: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-sm: 1.4rem;
  --font-size-xs: 1.2rem;
  --font-weight-base: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-base: 1.73;
  --z-index-header: 100;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  font-weight: var(--font-weight-base);
  margin: 0;
}

p {
  font-size: inherit;
  margin: 0;
}

img {
  height: auto;
  vertical-align: bottom;
  width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  line-height: initial;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
}

form,
label {
  margin-bottom: 0;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

dl,
dt,
dd {
  margin: 0;
}

a,
button {
  color: var(--body-color);
  cursor: pointer;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

th {
  font-weight: var(--font-weight-base);
  text-align: left;
}

th,
td {
  padding: .3em 0;
}

html {
  font-size: .5208333333333333vw;
  -webkit-text-size-adjust: 100%;
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
  margin: 0;
  font-family: var(--font-jp);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-base);
  color: var(--body-color);
  word-break: break-all;
  overflow-wrap: break-word;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.main {
  background-color: var(--main-color);
}

/* --------------------------------
  共通コンテナ
-------------------------------- */
.container {
  padding-inline: 10rem;
}

/* --------------------------------
  ヘッダー
-------------------------------- */
.header {
  align-items: center;
  background-color: #fff;
  box-shadow: 0 .3rem .6rem rgb(0 0 0 / 16%);
  border-radius: 10rem;
  display: flex;
  gap: 2rem;
  height: 5.3rem;
  padding: .6rem .6rem .6rem 3rem;
  position: fixed;
  right: 10rem;
  top: 4rem;
  z-index: var(--z-index-header);
}

.header__menus {
  display: flex;
  flex: 1;
  gap: 3rem;
}

.header__menu-link {
  align-items: center;
  display: flex;
  font-weight: var(--font-weight-bold);
  height: 4rem;
}

.header__menu-contact {
  align-items: center;
  background-color: var(--acc-color);
  border-radius: 10rem;
  display: flex;
  font-weight: var(--font-weight-bold);
  height: 4rem;
  justify-content: center;
  width: 13.7rem;
}

/* --------------------------------
  ファーストビュー
-------------------------------- */
.mv {
  background-color: var(--main-color);
  height: 100svh;
  position: relative;
  width: 100%;
  z-index: 0;
}

.mv::before {
  background-color: var(--acc-color);
  content: "";
  height: inherit;
  left: 0;
  position: absolute;
  top: 0;
  width: 1rem;
  z-index: 10;
}

.mv__logo {
  left: 10rem;
  position: absolute;
  top: 4rem;
  width: 19.3rem;
  z-index: 10;
}

.mv__title {
  bottom: 12rem;
  left: 10rem;
  padding-right: 20rem;
  position: absolute;
  width: calc(100% - 20rem);
  z-index: 10;
}

.mv__title img {
  max-width: 100%;
  width: auto;
}

.mv__bg {
  height: 100%;
  left: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.swiper-slide-active .mv__title img {
  animation: slideIn 1.5s ease-out;
}

@keyframes slideIn {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.swiper-slide-active .mv__bg {
  animation: scale 6s ease-out;
}

.mv-slider,
.mv-slider .swiper-wrapper,
.mv-slider .swiper-slide {
  position: relative;
  height: 100%;
}

.mv-slider .swiper-slide {
  transition-property: transform, opacity;
  pointer-events: none;
}

.mv-slider .swiper-slide-active {
  pointer-events: all;
}

@keyframes scale {
  0% {
    transform: scale(1.1)
  }

  to {
    transform: scale(1)
  }
}

.mv-slider .swiper-pagination {
  bottom: 10rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  left: auto;
  position: absolute;
  right: 10rem;
  width: .6rem;
}

.mv-slider .swiper-pagination-bullet {
  background-color: #fff;
  border-radius: 0;
  height: 7rem;
  margin: 0 !important;
  opacity: 1;
  width: .6rem;
}

.mv-slider .swiper-pagination-bullet-active {
  background-color: var(--acc-color);
  opacity: 1;
}

/* --------------------------------
  フッター
-------------------------------- */
.footer {
  background-color: var(--main-color-dk);
  padding: 12rem 0;
}

.footer__inner {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.footer__copy {
  color: #fff;
}

.footer__logo-img {
  width: 44.5rem;
}

/* --------------------------------
  ユーティリティー
-------------------------------- */
.color-main {
  color: var(--main-color);
}

.color-sub {
  color: var(--sub-color);
}

.color-red {
  color: var(--red);
}

.fw-bold {
  font-weight: var(--font-weight-bold);
}

.fw-sbold {
  font-weight: var(--font-weight-sbold);
}

.fw-black {
  font-weight: var(--font-weight-black);
}

.ff-en {
  font-family: var(--font-en);
}

.link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .1em;
}

.figure {
  position: relative;
  z-index: 0;
}

.figure__ttl {
  bottom: 3rem;
  left: 3rem;
  line-height: 1.6;
  position: absolute;
  z-index: 1;
}

.figure__ttl-txt {
  border-radius: .6rem;
  padding: .1em 1rem .2rem;
  font-weight: var(--font-weight-bold);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.figure__ttl-sub {
  margin-bottom: .6rem;
}

.figure__ttl-sub .figure__ttl-txt {
  background-color: var(--body-color);
  color: #fff;
}

.figure__ttl-main .figure__ttl-txt {
  background-color: var(--acc-color);
  color: var(--body-color);
}

.figure__img {
  border-radius: 3rem;
}

.ttl-h2 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: var(--font-weight-black);
  letter-spacing: .02em;
  line-height: 1.4;
  margin-bottom: 8rem;
}

.ttl-h2::before {
  background: left center / contain no-repeat;
  content: "";
  display: block;
  height: 2.6rem;
  width: 100%;
}

/* --------------------------------
  スクロールアニメーションプラグイン aos
-------------------------------- */
html:not(.no-js) [data-aos=fade-up] {
  -webkit-transform: translate3d(0, 2rem, 0);
  transform: translate3d(0, 2rem, 0);
}

/* --------------------------------
  コンテンツ
-------------------------------- */
.intro {
  color: #fff;
  padding-top: 20rem;
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 91rem;
  gap: 8rem;
}

.intro__ttl {
  width: 43.5rem;
}

.intro__read {
  font-size: 2rem;
  margin-top: 1em;
}

.intro__box {
  background-color: var(--sub-color);
  border-radius: 2rem;
  padding: 4rem 3.2rem 3.2rem;
  margin: 7.4rem 4rem 0 0;
  position: relative;
  z-index: 0;
}

.intro__box::before {
  background: url(../img/intro-batch.svg) center / contain no-repeat;
  content: "";
  height: 14rem;
  position: absolute;
  right: -4.2rem;
  top: -3.2rem;
  width: 14rem;
  z-index: 1;
}

.intro__box::after {
  background: url(../img/intro-map.svg) center / contain no-repeat;
  bottom: 5rem;
  content: "";
  height: 9.5rem;
  position: absolute;
  right: 3.5rem;
  width: 10.5rem;
  z-index: -1;
}

.intro__box-ttl {
  font-size: 2rem;
  line-height: 1.4;
}

.intro__box-ttl .sm {
  font-size: 1.6rem;
}

.intro__box-lable {
  border-radius: 1rem;
  border: 1px solid;
  font-size: 1.4rem;
  font-weight: var(--font-weight-base);
  margin-left: 1rem;
  padding: .15rem .9rem .25rem;
}

.intro__img {
  border-radius: 3rem;
}

.intro__box-dl {
  display: grid;
  gap: 1rem;
  line-height: 1.6;
  margin: 4rem 0 0;
}

.intro__box-dl-list {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 10.5rem 1fr;
}

.intro__box-dl dt {
  border-right: 1px dashed;
}

.intro__box-dl dd {
  margin: 0;
}

.intro__box-dl dd .sm {
  font-size: 1.2rem;
  margin-left: 1em;
}

.point {
  padding-top: 20rem;
}

.point .ttl-h2::before {
  background-image: url(../img/h2-point.svg);
}

.point__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3.2rem;
}

.point__card.-figure {
  grid-area: 1 / 3 / 2 / 5;
}

.point__info {
  color: #fff;
  font-size: 2rem;
  line-height: 1.56;
  margin-top: 1.5em;
  text-align: right;
  text-indent: -1em;
  padding-left: 1em;
}

.point__info::before {
  content: "※";
}

.infinite-slider-wrap {
  display: flex;
  overflow: hidden;
  padding-top: 12rem;
}

.infinite-sliders {
  display: flex;
  gap: 4rem;
  padding-left: 4rem;
}

.infinite-sliders:nth-child(1) {
  animation: infiniteSlide 100s -50s linear infinite;
}

.infinite-sliders:nth-child(2) {
  animation: infiniteSlide2 100s linear infinite;
}

.infinite-slider {
  width: 62.5rem;
}

@keyframes infiniteSlide {
  0% {
    transform: translateX(100%)
  }

  to {
    transform: translateX(-100%)
  }
}

@keyframes infiniteSlide2 {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(-200%)
  }
}

.sche {
  padding-top: 20rem;
}

.sche .ttl-h2::before {
  background-image: url(../img/h2-sche.svg);
}

.sche__cards {
  display: grid;
  gap: 2.9rem;
  grid-template-columns: repeat(3, 1fr);
}

.sche__card {
  position: relative;
  z-index: 0;
}

.sche__program-link {
  font-size: 1.8rem;
  align-items: center;
  color: var(--sub-color);
  display: inline-flex;
  gap: .3rem;
  position: absolute;
  z-index: 1;
  line-height: 1;
  height: 2.8rem;
}

.sche__program-link::after {
  background: url(../img/ico-link.svg) center / 100% no-repeat;
  content: "";
  height: 1em;
  margin-bottom: -.1rem;
  width: 1em;
}

.sche__card.-day1 .sche__program-link {
  left: 17.1rem;
  top: 29.6rem;
}

.sche__card.-day2 .sche__program-link:nth-child(1) {
  left: 17.4rem;
  top: 25.5rem;
}

.sche__card.-day2 .sche__program-link:nth-child(2) {
  left: 17.4rem;
  top: 37rem;
}

.sche__infos {
  margin-top: 6rem;
}

.sche__info {
  color: #fff;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.83;
  padding-left: 1em;
  text-indent: -1em;
}

.sche__info::before {
  content: "※";
}

.sche__info+.sche__info {
  margin-top: .2em;
}

.sche__info .lg {
  font-size: 3.4rem;
}

.guide {
  background-color: var(--main-color-dk);
  margin-top: 24rem;
  padding: 20rem 0 17rem;
  position: relative;
}

.guide::before {
  background: url(../img/guide-mountain.svg) center / contain no-repeat;
  content: "";
  display: block;
  height: 11.6rem;
  left: 50%;
  position: absolute;
  top: 1rem;
  transform: translate(-50%, -100%);
  width: 21.8rem;
}

.guide .ttl-h2::before {
  background-image: url(../img/h2-guide.svg);
}

.guide__box {
  background-color: #fff;
  border-radius: 3rem;
  padding: 8rem 7rem;
}

.guide__lists+.guide__lists {
  margin-top: 2em;
}

.guide__lists li {
  font-size: 2.6rem;
  font-weight: var(--font-weight-bold);
  padding-left: 1em;
  text-indent: -1em;
}

.guide__lists li::before {
  content: "・";
}

.guide__lists li+li {
  margin-top: .2em;
}

.guide__dl {
  display: grid;
  gap: 6rem;
  line-height: 1.6;
  margin: 8rem 0 0;
}

.guide__dl-list {
  display: grid;
  gap: 8rem;
  grid-template-columns: 24.4rem 1fr;
}

.guide__dl dt {
  border-radius: 1.5rem;
  border: 1px solid;
  display: grid;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  height: 5.4rem;
  padding-bottom: .1em;
  place-items: center;
  text-align: center;
}

.guide__dl dd {
  font-size: 3rem;
  margin: 0;
}

.cta {
  background-color: var(--acc-color);
  padding-block: 8rem;
}

.cta__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-inline: 13rem 18rem;
}

.cta__btn-wrap {
  order: 1;
}

.cta__btn {
  background-color: var(--body-color);
  border-radius: 10rem;
  color: var(--acc-color);
  display: grid;
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
  height: 8.9rem;
  place-items: center;
  position: relative;
  width: 39.8rem;
  z-index: 0;
}

.cta__btn::after {
  content: "";
  border: .2rem solid var(--body-color);
  position: absolute;
  left: .5rem;
  top: .5rem;
  height: inherit;
  width: inherit;
  border-radius: inherit;
  z-index: -1;
}

.cta__ttl {
  width: 43.5rem;
}

/* ================================================================
  hoverアニメーション
================================================================ */
@media (hover: hover) and (pointer: fine) {

  a,
  button {
    transition: .3s ease;
  }

  a:hover,
  button:hover {
    opacity: .7;
  }

  .link:hover {
    opacity: 1;
    text-decoration: none;
  }

  .header__menu-contact:hover,
  .cta__btn:hover {
    opacity: 1;
  }

  .header__menu-contact>span,
  .cta__btn .cta__btn-txt {
    transition: transform .5s ease;
  }

  .header__menu-contact:hover>span,
  .cta__btn:hover .cta__btn-txt {
    transform: rotateX(360deg);
  }

}

/* ================================================================
  PC版のみレイアウト
================================================================ */
@media screen and (min-width: 768px) {

  /* --------------------------------
    ユーティリティー
  -------------------------------- */
  .pc-none {
    display: none;
  }

  /* --------------------------------
    スクロールアニメーションプラグイン 
  -------------------------------- */
  /*PC時は無くす*/
  .pc-aos-none {
    opacity: 1 !important;
    transform: translateZ(0) scale(1) !important;
  }

}

/* ================================================================
  スマホ版レイアウト
================================================================ */
@media screen and (max-width: 767px) {

  html {
    font-size: 2.564102564102564vw;
  }

  .sp-none {
    display: none !important;
  }

  /* --------------------------------
    共通コンテナ
  -------------------------------- */
  .container {
    padding-inline: 2rem;
  }

  /* --------------------------------
    ヘッダー
  -------------------------------- */
  .header {
    align-items: start;
    border-radius: 2.5rem;
    flex-direction: column;
    gap: 1.5rem;
    height: 4.7rem;
    padding: .7rem 6.6rem .7rem .7rem;
    right: 2rem;
    top: 1.5rem;
    width: 18rem;
    transition: height .3s;
  }

  .is-open .header {
    height: 20rem;
  }

  .header__menus {
    flex-direction: column;
    gap: .6rem;
    opacity: 0;
    order: 1;
    padding: 0 0 1rem 1rem;
    transition: .3s;
    visibility: hidden;
  }

  .is-open .header__menus {
    visibility: visible;
    opacity: 1;
    transition-delay: .2s;
  }

  .header__menu-link {
    height: auto;
    white-space: nowrap;
  }

  .header__menu-contact {
    flex-shrink: 0;
    font-size: 1.4rem;
    height: 3.3rem;
    width: 11.3rem;
  }

  .header__toggle {
    display: grid;
    height: 3.3rem;
    place-content: center;
    position: absolute;
    right: 1.2rem;
    top: .7rem;
    width: 3.3rem;
  }

  .header__toggle-inner {
    height: 1.6rem;
    position: relative;
    width: 2.5rem;
    z-index: 0;
  }

  .header__toggle-line {
    background-color: var(--body-color);
    display: block;
    height: .2rem;
    left: 0;
    position: absolute;
    top: 0;
    transition: .3s;
    z-index: 1;
    width: 100%;
  }

  .header__toggle-line:nth-child(2) {
    top: .7rem;
  }

  .header__toggle-line:nth-child(3) {
    top: 1.4rem;
  }

  .is-open .header__toggle-line:nth-child(1) {
    top: .7rem;
    transform: rotate(-45deg);
  }

  .is-open .header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .is-open .header__toggle-line:nth-child(3) {
    top: .7rem;
    transform: rotate(45deg);
  }

  /* --------------------------------
    ファーストビュー
  -------------------------------- */
  .mv {
    height: 80svh;
  }

  .mv::before {
    width: .7rem;
  }

  .mv__logo {
    left: 2rem;
    top: 1rem;
    width: 8.3rem;
  }

  .mv__title {
    bottom: 9rem;
    left: 2rem;
    padding-right: .5rem;
    width: calc(100% - 4rem);
  }

  .mv__title img {
    width: 100%;
  }

  .mv-slider .swiper-pagination {
    bottom: 2rem;
    flex-direction: row;
    gap: 1rem;
    right: 2rem;
    width: auto;
  }

  .mv-slider .swiper-pagination-bullet {
    height: .3rem;
    width: 5rem;
  }

  /* --------------------------------
    フッター
  -------------------------------- */
  .footer {
    padding: 4rem 0;
  }

  .footer__inner {
    align-items: center;
    flex-direction: column;
    gap: 3.5rem;
  }

  .footer__copy {
    font-size: 1.2rem;
  }

  .footer__logo-img {
    width: 26rem;
  }

  /* --------------------------------
    スクロールアニメーションプラグイン 
  -------------------------------- */
  /*スマホ時は無くす*/
  .sp-aos-none {
    opacity: 1 !important;
    transform: translateZ(0) scale(1) !important;
  }

  /* --------------------------------
    ユーティリティー
  -------------------------------- */
  .ttl-h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
  }

  .ttl-h2::before {
    height: 1.6rem;
  }

  .figure__ttl {
    bottom: 1rem;
    left: 1rem;
    line-height: 1.4;
  }

  .figure__ttl-txt {
    padding-inline: .7rem;
  }

  .figure__ttl-sub {
    margin-bottom: .2rem;
  }

  .figure__ttl-sub .figure__ttl-txt {
    font-size: 1.4rem;
  }

  .figure__ttl-main .figure__ttl-txt {
    font-size: 1.2rem;
  }

  .figure__img {
    border-radius: 1.5rem;
  }

  /* --------------------------------
    コンテンツ
  -------------------------------- */
  .intro {
    padding-top: 7.5rem;
  }

  .intro__inner {
    gap: 3.6rem;
    grid-template-columns: 1fr;
  }

  .intro__ttl {
    width: 100%;
  }

  .intro__read {
    font-size: 1.6rem;
    margin-top: 3rem;
    line-height: 1.6;
  }

  .intro__box {
    border-radius: 1.5rem;
    margin: 6rem 0 0;
    padding: 3.5rem 0 6rem 1.8rem;
  }

  .intro__box::before {
    height: 8.8rem;
    right: -1rem;
    top: -4rem;
    width: 8.8rem;
  }

  .intro__box::after {
    bottom: 2.5rem;
    height: 7.8rem;
    right: 1.5rem;
    width: 8.6rem;
  }

  .intro__box-ttl {
    font-size: 1.8rem;
    line-height: 1.56;
  }

  .intro__box-ttl .sm {
    font-size: 1.4rem;
  }

  .intro__box-dl {
    font-size: 1.4rem;
    margin-top: 3.5rem;
  }

  .intro__box-dl-list {
    gap: 1.2rem;
    grid-template-columns: 8rem 1fr
  }

  .intro__box-dl dd .sm {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    margin-left: 0;
  }

  .intro__img {
    border-radius: 1.5rem;
  }

  .point {
    padding-top: 10rem;
  }

  .point__cards {
    gap: 3rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .point__card.-figure {
    grid-area: auto;
  }

  .point__info {
    text-align: left;
    font-size: 1.6rem;
  }

  .infinite-slider-wrap {
    padding-top: 6rem;
  }

  .infinite-sliders {
    gap: 2rem;
    padding-left: 2rem;
  }

  .infinite-slider {
    width: 37rem;
  }

  .sche {
    padding-top: 10rem;
  }

  .sche__cards {
    gap: 4rem;
    grid-template-columns: 1fr;
  }

  .sche__program-link {
    font-size: 1.4rem;
    height: 2rem;
  }

  .sche__card.-day1 .sche__program-link {
    left: 9rem;
    top: 20.8rem;
  }

  .sche__card.-day2 .sche__program-link:nth-child(1) {
    left: 9rem;
    top: 18.5rem;
  }

  .sche__card.-day2 .sche__program-link:nth-child(2) {
    left: 9rem;
    top: 27rem;
  }

  .sche__infos {
    margin-top: 2.5rem;
  }

  .sche__info {
    font-size: 1.6rem;
    line-height: 1.67;
  }

  .sche__info+.sche__info {
    margin-top: 1rem;
  }

  .sche__info .lg {
    font-size: 1.8rem;
  }

  .guide {
    margin-top: 13rem;
    padding-block: 12rem 9rem;
  }

  .guide::before {
    height: 7.9rem;
    width: 14.8rem;
  }

  .guide__box {
    border-radius: 1.5rem;
    padding: 3rem 2rem;
  }

  .guide__lists+.guide__lists {
    margin-top: 1rem;
  }

  .guide__lists li {
    font-size: 1.4rem;
  }

  .guide__lists li+li {
    margin-top: 1rem;
  }

  .guide__dl {
    gap: 3.5rem;
    margin-top: 4rem;
  }

  .guide__dl-list {
    gap: 1.4rem;
    grid-template-columns: 1fr;
  }

  .guide__dl dt {
    border-radius: .5rem;
    font-size: 1.4rem;
    height: 2.7rem;
  }

  .guide__dl dd {
    font-size: 1.4rem;
    line-height: 1.45;
  }

  .cta {
    padding-block: 8rem 7rem;
  }

  .cta__inner {
    flex-direction: column;
    gap: 4.7rem;
    padding-inline: 0;
  }

  .cta__btn {
    height: 8.1rem;
    width: 31rem;
  }

  .cta__ttl {
    order: 1;
    width: 31rem;
  }

}