@charset "UTF-8";

/*
こちらのCSSファイルを使用してください！

以下、CSS記述の注意事項

■色の指定
下記はデザイン上で使用している色の名前と同じです！
CSS変数と言われるものです。
var(--color-primary)
var(--color-accent)
var(--color-back)
var(--color-black)
var(--color-white)

下記のように使用してください！
.example {
  color:var(--color-primary);
}

■フォントサイズの指定
フォントサイズの指定には「rem」を使用します。

1remが10pxになるように調整していますので、
デザイン上で16pxの箇所は
font-size:1.6rem:
のように記述してください！

■cssの記述について
必ず最初に
「#_ #セクションのid」 を記載してください！

↓例
aboutセクションの場合。
#_ #about {
  margin:100px;
}

aboutセクションの小要素の場合
#_ #about .heading {
  display:none;
}
*/

#_ .fixed-buttons {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 100;
}
#_ .fixed-buttons-inner ul {
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 16px rgba(24, 42, 44, 0.16);
}
#_ .fixed-button a {
  display: block;
  width: 90px;
  height: 0;
  padding-top: 90px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}
#_ .fixed-button.-entry a {
  background-color: var(--color-primary);
  background-image: url(../img/fixed-button-entry.svg?v=2);
}
#_ .fixed-button.-schedule a {
  background-color: var(--color-back);
  background-image: url(../img/fixed-button-schedule.svg);
}
#_ .fixed-button.-faq a {
  background-color: var(--color-back);
  background-image: url(../img/fixed-button-faq.svg);
}
#_ .fixed-button + .fixed-button a {
  border-top: 1px solid var(--color-primary);
}

@media screen and (max-width: 767px) {
  #_ .fixed-buttons {
    top: 66px;
  }
  #_ .fixed-button a {
    width: 60px;
    padding-top: 60px;
  }
}

#_ #fv {
  padding-top: 90px;
}

#_ #fv .fv-title {
  line-height: 1.3;
}

#_ #fv .fv-caption {
  margin: 30px 0 0;
  max-width: 540px;
}

#_ #fv .fv-caption p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-caption p {
    font-size: 1.4rem;
  }
}

#_ #vision {
  position: relative;
  overflow: hidden;
  background-image: url('../img/vision-back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 100px;
  color: var(--color-white);
}

@media screen and (max-width: 767px) {
  #_ #vision {
    background-image: url('../img/vision-back-sp.jpg');
    padding-block: 60px;
  }
}

/* #_ #vision .vision-bg {
  不要なため削除
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100vw;
  height: 100%;
  min-height: 800px;

  background-image: url('asset/img/Rectangle92.png'),
    url('asset/img/Rectangle93.png');
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto, 100% auto;
  opacity: 0.9;
  z-index: 1;
} */

#_ #vision .vision-container {
  /* 不要なため削除 */
  /* position: relative;
  z-index: 2; */
}

#_ #vision .vision-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 960px;
  margin-inline: auto;
  /* margin-bottom: 10rem; */
}

@media screen and (max-width: 767px) {
  #_ #vision .vision-flex {
    display: block;
  }
}

#_ #vision .vision-flex .heading {
  text-align: left;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-flex .heading {
    text-align: center;
  }
}
#_ #vision .vision-flex .heading .hidden {
  display: none;
  color: transparent;
}

/* #_ #vision .vision-sub {
  不要なため削除
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
} */

#_ #vision .vision-right {
  max-width: 480px;
  /* font-size: 1.6rem;
  line-height: 3rem; */
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-right {
    max-width: 100%;
    margin-top: 40px;
  }
}

#_ #vision .vision-lead {
  font-size: 1.8rem;
  line-height: 1.75;
}
#_ #vision .vision-desc + .vision-lead {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #_ #vision .vision-lead {
    font-size: 1.6rem;
    width: fit-content;
    margin-inline: auto;
  }
  #_ #vision .vision-desc + .vision-lead {
    margin-top: 30px;
  }

}

#_ #vision .vision-desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-desc {
    font-size: 1.4rem;
    margin-top: 21px;
  }
}

#_ #vision .vision-diagram {
  max-width: 723px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-diagram {
    border-radius: 5px;
    overflow-x: scroll;
    padding: 5px;
    margin-top: 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #_ #vision .vision-diagram::-webkit-scrollbar {
    display: none;
  }
}

/* #_ #vision .vision-diagram img {
  max-width: 780px;
  width: 100%;
  display: block;
  margin: 0 auto;
} */
@media screen and (max-width: 767px) {
  #_ #vision .vision-diagram img {
    min-width: 403px;
  }
}

#_ #program .program-list {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-list {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

#_ #program .program-caption {
  margin: 30px auto 50px;
}
.program-caption p {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}

#_ #program .program-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#_ #program .program-list + .program-section-heading {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-list + .program-section-heading {
    margin-top: 50px;
  }
}

#_ #program .program-section-heading span.heading-001 {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}
#_ #program .program-section-heading em.heading-002 {
  display: block;
  font-style: normal;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
#_ #program .program-section-heading em.heading-002 br {
  display: none;
}
@media screen and (max-width: 767px) {
  #_ #program .program-section-heading em.heading-002 br {
    display: block;
  }
}

#_ #program .program-section-heading .heading-sub {
  display: block;
  margin-top: 7px;
}

#_ #program .program-section-heading .heading-sub strong {
  display: inline-block;
  background: var(--color-primary);
  font-size: 1.8rem;
  color: #ffffff;
  padding: 0 0.5em;
}

#_ #program .program-1-caption-1 {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-1-caption-1 {
    margin-bottom: 30px;
  }
}
#_ #program .program-1-caption-1 p {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}

#_ #program .program-2-caption-1 {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-2-caption-1 {
    margin-bottom: 30px;
  }
}

#_ #program .program-2-caption-1 p {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}

#_ #program .program-2-caption-2 {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-2-caption-2 {
    margin-bottom: 30px;
  }
}

#_ #program .program-2-caption-2 p {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}


#_ #contact {
  position: relative;
  overflow: hidden;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  #_ #contact {
    margin-top: 70px;
  }
}

/* #_ #contact .contact-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100vw;
  height: 100%;
  min-height: 700px;
  background: url('asset/img/Rectangle136.png') center/cover no-repeat;
  opacity: 0.85;
  z-index: 1;
} */

#_ #contact .contact-marquee {
  position: relative;
  z-index: 2;
}

#_ #contact .contact-marquee-text {
  color: transparent;
  font-family: var(--font-serif);
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  max-width: unset !important;
  width: auto !important;
  background: linear-gradient(90deg, #c1d9e5 0%, #5daa68 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.18em;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-marquee-text {
    font-size: 8rem;
  }
}

#_ #contact .contact-inner {
  background-image: url('../img/contact-back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 70px;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-inner {
    background-image: url('../img/contact-back-sp.jpg');
    padding-top: 0;
    margin-top: 70px;
  }
}

#_ #contact .contact-container {
  position: relative;
  z-index: 2;
}

#_ #contact .contact-flex {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 960px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-flex {
    display: block;
  }
}

#_ #contact .contact-logo {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.3em;

  font-size: 6.7rem;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  max-width: 430px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-logo {
    justify-content: center;
    font-size: 3.2rem;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
}

#_ #contact .contact-logo span {
  display: inline-block;
}

#_ #contact .contact-info {
  display: grid;
  row-gap: 15px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-info {
    text-align: center;
    margin-top: 30px;
  }
}

#_ #contact .contact-info-item dt {
  font-size: 1.8rem;
}

#_ #contact .contact-info-item dd {
  font-size: 1.6rem;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  #_ #contact .button {
    gap: 10px;
  }
}

#_ #footer .content {
  max-width: 1320px;
}


#_ .info__comingsoon {
  color: var(--color-primary);
  text-align: center;
}
#_ .info__comingsoon p:before,
#_ .info__comingsoon p:after {
  content: "―――";
  display: inline-block;
  margin: 0 1em;
}

