@charset "UTF-8";
/*
Theme Name: テーマ名
*/
.br-sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .br-sp {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 900px) {
  .br-pc {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.contact-btn {
  color: #fff;
  background-color: #eeb81f;
  padding: 10px 70px 10px 10px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 0 auto;
  position: relative;
  box-shadow: 0px 4px #9b9d9b;
}
@media screen and (max-width: 900px) {
  .contact-btn {
    font-size: 12px;
  }
}
.contact-btn::after {
  content: "▶";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #eeb81f;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.wrapper {
  max-width: calc(1180px + 4%);
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 900px) {
  .wrapper {
    max-width: calc(500px + 4%);
    padding: 0 4%;
  }
}

.font-bold {
  font-weight: bold;
  color: #e85a1e;
}

.section-title {
  font-size: 40px;
  color: #505050;
  text-align: center;
  margin-bottom: 0;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .section-title {
    font-size: 24px;
  }
}

.section-subtitle {
  color: #5182b3;
  font-size: 40px;
  display: block;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .section-subtitle {
    font-size: 20px;
  }
}

p {
  font-size: 16px;
  color: #3f3f3f;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  p {
    font-size: 18px;
  }
}

a {
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  a {
    font-size: 18px;
  }
}

h2 {
  font-size: 42px;
  text-align: center;
  color: #e85a1e;
  margin-bottom: 48px;
}
@media screen and (max-width: 900px) {
  h2 {
    font-size: 20px;
  }
}

section {
  padding: 60px 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 170px;
  max-width: calc(1324px + 4%);
  background-color: transparent;
}
@media screen and (max-width: 900px) {
  .header .header__container {
    max-width: 100%;
    height: 80px;
  }
}
.header .header__container .header__logo {
  width: 340px;
}
@media screen and (max-width: 900px) {
  .header .header__container .header__logo {
    font-size: 24px;
    width: 150px;
  }
}
.header .header__container .header__nav .header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .header .header__container .header__nav .header__nav-list {
    display: none;
  }
}
.header .header__container .header__nav .header__nav-list .header__nav-item .header__nav-link {
  font-weight: bold;
  font-size: 16px;
}

.header__nav-sp {
  display: none;
}
.header__nav-sp .btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 26px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 58px;
  height: 48px;
  /* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最前面に */
  z-index: 1000;
}
.header__nav-sp {
  /***** 真ん中のバーガー線 *****/
}
.header__nav-sp .btn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #333;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: 0.2s;
}
.header__nav-sp {
  /***** 上下のバーガー線 *****/
}
.header__nav-sp .btn-line::before,
.header__nav-sp .btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: 0.2s;
}
.header__nav-sp .btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}
.header__nav-sp .btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}
.header__nav-sp {
  /***** メニューオープン時 *****/
}
.header__nav-sp .btn-line.open {
  transform: translate(5px, 0);
}
.header__nav-sp .btn-line.open::before,
.header__nav-sp .btn-line.open::after {
  content: "";
  transition: 0.2s;
}
.header__nav-sp .btn-line.open::before {
  transform: translate(8px, -16px);
}
.header__nav-sp .btn-line.open::after {
  transform: translate(-8px, 16px);
}
.header__nav-sp {
  /* ボタンフォーカス時の装飾 */
}
.header__nav-sp .btn:focus .btn-line,
.header__nav-sp .btn:focus .btn-line::before,
.header__nav-sp .btn:focus .btn-line::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}
.header__nav-sp .btn:focus .btn-line.open {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.header__nav-sp .btn:focus .btn-line.open::before,
.header__nav-sp .btn:focus .btn-line.open::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}
.header__nav-sp {
  /**************** ここまで、ハンバーガーボタンのスタイリング ****************/
  /**************** 以下、メニューのスタイリング ****************/
}
.header__nav-sp .menu {
  position: fixed;
  top: 0;
  /* メニューの位置マイナス指定で画面外に */
  transform: translateX(130%);
  width: 70%;
  height: 100vh;
  z-index: 999;
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  color: #efefef;
  background-color: #fbfbf0;
  transition: transform 0.3s;
}
.header__nav-sp .menu-list {
  width: 100%;
  height: 100%;
  /* メニューテキスト位置をリスト内中心に */
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #5182B3;
  border-bottom: 1px solid #aeaeae;
}
.header__nav-sp .menu-list a {
  font-size: 28px;
}
.header__nav-sp .menu-list:last-of-type {
  border-bottom: none;
}
.header__nav-sp .menu-list:hover {
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  cursor: pointer;
}
.header__nav-sp {
  /***** メニューオープン時位置0にして画面内に *****/
}
.header__nav-sp .menu.open {
  transform: translateX(-90%);
}
.header__nav-sp {
  /* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
}
@media screen and (min-width: 900px) {
  .header__nav-sp .btn {
    display: none;
  }
  .header__nav-sp .menu {
    position: fixed;
    transform: translateX(0);
    width: 100%;
    height: 100px;
    /* メニューを横に */
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 900px) {
  .header__nav-sp {
    display: block;
  }
}

.FV {
  background-image: url("image/FV-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center calc(50% - 100px);
  padding-bottom: 128px;
  margin-top: 170px;
}
@media screen and (max-width: 900px) {
  .FV {
    background-position: bottom;
    padding-top: 20px;
    padding-bottom: 28px;
    margin-top: 80px;
  }
}
.FV .FV__container.wrapper {
  max-width: calc(1324px + 4%);
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper {
    position: relative;
    max-width: calc(400px + 4%);
  }
}
@media screen and (max-width: 1290px) {
  .FV .FV__container.wrapper .FV__title {
    margin-left: 8%;
  }
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__title {
    margin-left: 0;
  }
}
.FV .FV__container.wrapper .FV__title .FV__title-text {
  font-size: 65px;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px dashed #3f3f3f;
  color: #3f3f3f;
  margin-bottom: 96px;
  margin-top: 8px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__title .FV__title-text {
    font-size: 27px;
    padding-left: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .FV .FV__container.wrapper .FV__title .FV__title-text span {
    border-bottom: 2px dashed #3f3f3f;
    display: block;
    padding-left: 14px;
    margin-left: -14px;
  }
}
@media screen and (max-width: 1290px) {
  .FV .FV__container.wrapper .FV__title .FV__title-text .FV__title-text-sp {
    display: block;
    border-bottom: 2px dashed #3f3f3f;
  }
}
.FV .FV__container.wrapper .FV__text {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text {
    flex-direction: column;
    align-items: center;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-subject {
  width: 47%;
  margin-left: 5%;
}
@media screen and (max-width: 1000px) {
  .FV .FV__container.wrapper .FV__text .FV__text-subject {
    margin-left: 2%;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text .FV__text-subject {
    width: 100%;
    margin-left: 0;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-subject .FV__text-subject-title {
  background-color: #5182b3;
  border-radius: 50px;
  margin-bottom: 0;
  font-size: 40px;
  padding: 4px 0;
  margin-bottom: 16px;
  max-width: 386px;
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text .FV__text-subject .FV__text-subject-title {
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 144px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 18px;
    padding-right: 26px;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-subject .FV__text-subject-title h2 {
  color: #fff;
  margin-bottom: 0px;
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text .FV__text-subject .FV__text-subject-list {
    width: 58%;
    margin-left: auto;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-subject .FV__text-subject-list .FV__text-subject-list-item {
  color: #5182b3;
  font-size: 35px;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__text .FV__text-subject .FV__text-subject-list .FV__text-subject-list-item {
    font-size: 28px;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text .FV__text-subject .FV__text-subject-list .FV__text-subject-list-item {
    font-size: 17px;
    font-weight: 700;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-content {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text .FV__text-content {
    width: 100%;
    margin-top: 26px;
    letter-spacing: 0.16em;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-content span {
  background-color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #5182b3;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__text .FV__text-content span {
    font-size: 22px;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-content span {
  padding-bottom: 4px;
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text .FV__text-content span {
    font-size: 13px;
    padding-right: 22px;
    padding-bottom: 4px;
    margin-bottom: 8px;
  }
}
.FV .FV__container.wrapper .FV__text .FV__text-content span .font-yellow {
  color: #efb81e;
  margin-bottom: 0px;
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__text .FV__text-content span .font-yellow {
    padding-right: 0;
  }
}
.FV .FV__container.wrapper .FV__contact {
  background-color: #5182b3;
  border-radius: 40px;
  padding: 10px 66px 26px 66px;
  border: 4px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0 auto;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__contact {
    margin: 40px auto 0 auto;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__contact {
    margin: 22px auto 0 auto;
    padding: 10px 50px 8px 50px;
    margin: 24px auto 0 auto;
    width: 100%;
    border-radius: 90px;
  }
}
.FV .FV__container.wrapper .FV__contact h2 {
  margin-bottom: 0;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__contact h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__contact h2 {
    font-size: 20px;
  }
}
.FV .FV__container.wrapper .FV__link {
  margin-top: 98px;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__link {
    margin-top: 40px;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__link {
    margin-top: 26px;
  }
}
.FV .FV__container.wrapper .FV__link .FV__link-title {
  line-height: 2;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 84px;
  color: #eeb81f;
  -webkit-text-stroke: 10px #fff;
  paint-order: stroke;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__link .FV__link-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__link .FV__link-title {
    font-size: 17px;
  }
}
.FV .FV__container.wrapper .FV__link .FV__link-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1220px;
  margin: 0 auto;
  row-gap: 80px;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__link .FV__link-list {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__link .FV__link-list {
    row-gap: 20px;
  }
}
.FV .FV__container.wrapper .FV__link .FV__link-list a {
  width: 40%;
  text-align: center;
  background-color: #eeb81f;
  border-radius: 20px;
  padding: 30px 30px;
  border-radius: 60px;
  color: #6b2724;
  -webkit-text-stroke: 10px #fff;
  paint-order: stroke;
  font-size: 36px;
  font-weight: 700;
  border: 4px solid #fff;
}
@media screen and (max-width: 1100px) {
  .FV .FV__container.wrapper .FV__link .FV__link-list a {
    width: 46%;
  }
}
@media screen and (max-width: 900px) {
  .FV .FV__container.wrapper .FV__link .FV__link-list a {
    font-size: 11px;
    padding: 8px;
    width: 45%;
  }
}

.bg-green {
  background-color: #eeb81f;
  height: 30px;
}
@media screen and (max-width: 900px) {
  .bg-green {
    height: 7.5px;
  }
}

.introduction {
  background-color: #fff;
  position: relative;
  padding-top: 30px;
}
@media screen and (max-width: 900px) {
  .introduction {
    background-size: contain;
    background-position: top center;
    background-color: #fff;
    background-image: none;
    position: relative;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 900px) {
  .introduction .introduction__bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.151), rgba(0, 0, 0, 0.205)), url("image/introduction-bg.png");
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
  }
}
.introduction .introduction__container {
  position: relative;
  z-index: 20;
  overflow: hidden;
}
.introduction .introduction__container .introduction__header {
  position: relative;
}
.introduction .introduction__container .introduction__title.section-title {
  color: #5182b3;
  text-align: left;
  margin-bottom: 14px;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__title.section-title {
    margin-left: 22px;
  }
}
.introduction .introduction__container .introduction__subtitle.section-subtitle {
  text-align: left;
  margin-bottom: 44px;
  margin-left: 18px;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__subtitle.section-subtitle {
    margin-left: 30px;
    margin-bottom: 78px;
  }
}
.introduction .introduction__container .introduction__text {
  line-height: 2.3;
  color: #505050;
  width: 84%;
  margin-bottom: 60px;
  margin-left: 14px;
  font-size: 20px;
}
@media screen and (max-width: 1100px) {
  .introduction .introduction__container .introduction__text {
    font-size: 16px;
  }
}
.introduction .introduction__container .introduction__text .blank-pc {
  width: 20px;
  height: 1px;
  display: inline-block;
}
@media screen and (max-width: 1100px) {
  .introduction .introduction__container .introduction__text .blank-pc {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__text .blank-pc {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__text {
    line-height: 2.2;
    width: 67%;
    font-size: 14px;
    margin-left: 6px;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
  }
}
.introduction .introduction__container .introduction__height {
  writing-mode: vertical-rl;
  position: absolute;
  right: 4.5%;
  top: -10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__height {
    top: 0px;
    right: 8%;
  }
}
.introduction .introduction__container .introduction__height span {
  font-size: 24px;
  background-color: #5182b3;
  color: #fff;
  white-space: nowrap;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.36em;
  padding: 5px 7px;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__height span {
    font-size: 18px;
    padding: 5px 1px;
    letter-spacing: 0.5em;
  }
}
.introduction .introduction__container .introduction__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 158px;
  padding: 90px 5% 100px 18%;
  width: 90%;
  margin-left: auto;
  margin-top: 120px;
  position: relative;
}
.introduction .introduction__container .introduction__list:after {
  content: "";
  display: block;
  width: 300%;
  height: calc(100% - 20px);
  background-color: #fffcf2;
  position: absolute;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.363);
  z-index: -1;
  left: 0;
  top: 0;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list:after {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list {
    padding: 40px 0px 62px 28px;
    margin-left: auto;
    flex-flow: column;
    margin-top: 28px;
    row-gap: 86px;
  }
}
.introduction .introduction__container .introduction__list .introduction__list-item {
  width: 43%;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list .introduction__list-item {
    width: 100%;
  }
}
.introduction .introduction__container .introduction__list .introduction__list-item span {
  display: block;
  text-align: center;
  color: #5182b3;
  margin-bottom: 20px;
  margin-top: 6px;
}
.introduction .introduction__container .introduction__list .introduction__list-item:nth-of-type(1) {
  width: 100%;
}
.introduction .introduction__container .introduction__list .introduction__list-item:nth-of-type(1) .introduction__list-item-image {
  width: 88%;
  margin: 34px auto 48px auto;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list .introduction__list-item:nth-of-type(1) .introduction__list-item-image {
    margin: 15px 0 18px auto;
    width: 116%;
  }
}
.introduction .introduction__container .introduction__list .introduction__list-item h3 {
  color: #5182b3;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list .introduction__list-item h3 {
    font-size: 20px;
  }
}
.introduction .introduction__container .introduction__list .introduction__list-item p {
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list .introduction__list-item p {
    line-height: 1.86;
    margin: 0 auto;
    max-width: 500px;
    font-size: 15px;
    letter-spacing: -0.08em;
  }
}
.introduction .introduction__container .introduction__list .introduction__list-item .introduction__list-item-image {
  margin-bottom: 34px;
  margin-top: 34px;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list .introduction__list-item .introduction__list-item-image.introduction__list-item-image-sp {
    margin: 47px auto 30px auto;
    max-width: 264px;
  }
  .introduction .introduction__container .introduction__list .introduction__list-item .introduction__list-item-image.introduction__list-item-image-sp img {
    border-radius: 30px;
  }
}
.introduction .introduction__container .introduction__list .introduction__list-item .introduction__list-item-image img {
  border-radius: 50px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .introduction .introduction__container .introduction__list .introduction__list-item .introduction__list-item-image img {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.program {
  background-color: #f6f5f2;
  margin-top: 38px;
  padding-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .program {
    padding-bottom: 28px;
  }
}
.program .program__container.wrapper .program__title.section-title {
  margin-bottom: 25px;
}
@media screen and (max-width: 900px) {
  .program .program__container.wrapper .program__title.section-title {
    margin-bottom: 16px;
  }
}
.program .program__container.wrapper .program__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 98px;
  row-gap: 88px;
}
@media screen and (max-width: 900px) {
  .program .program__container.wrapper .program__list {
    flex-direction: column;
    align-items: center;
    gap: 68px;
    margin-top: 70px;
  }
}
.program .program__container.wrapper .program__list .program__list-item {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  .program .program__container.wrapper .program__list .program__list-item {
    width: 46%;
  }
}
@media screen and (max-width: 900px) {
  .program .program__container.wrapper .program__list .program__list-item {
    width: 100%;
  }
}
.program .program__container.wrapper .program__list .program__list-item .program__list-item-image {
  height: 336px;
  max-width: 547px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .program .program__container.wrapper .program__list .program__list-item .program__list-item-image {
    height: 280px;
  }
}
@media screen and (max-width: 900px) {
  .program .program__container.wrapper .program__list .program__list-item .program__list-item-image {
    height: 200px;
  }
}
.program .program__container.wrapper .program__list .program__list-item .program__list-item-image img {
  border-radius: 50px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .program .program__container.wrapper .program__list .program__list-item .program__list-item-image img {
    border-radius: 30px;
  }
}
.program .program__container.wrapper .program__list .program__list-item .program__list-item-title {
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .program .program__container.wrapper .program__list .program__list-item .program__list-item-title {
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 11px;
  }
}
.program .program__container.wrapper .program__list .program__list-item p {
  color: #5182b3;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 1100px) {
  .program .program__container.wrapper .program__list .program__list-item p {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .program .program__container.wrapper .program__list .program__list-item p {
    font-size: 16px;
  }
}

.question {
  padding-top: 48px;
  padding-bottom: 0;
}
@media screen and (max-width: 900px) {
  .question {
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 900px) {
  .question .question__container.wrapper {
    max-width: calc(500px + 4%);
  }
}
.question .question__container.wrapper .question__title.section-title {
  margin-bottom: 26px;
}
.question .question__container.wrapper .question__list {
  margin-top: 90px;
}
@media screen and (max-width: 900px) {
  .question .question__container.wrapper .question__list {
    margin-top: 36px;
  }
}
.question .question__container.wrapper .question__list .question__list-item .question__list-item-title {
  background-color: #5182b3;
  color: #fff;
  border-radius: 100px;
  font-size: 34px;
  font-weight: bold;
  padding: 21px 0px 18px 65px;
  margin-bottom: 34px;
}
@media screen and (max-width: 900px) {
  .question .question__container.wrapper .question__list .question__list-item .question__list-item-title {
    font-size: 20px;
    padding: 15px 10px;
    text-align: center;
    margin-bottom: 18px;
  }
}
.question .question__container.wrapper .question__list .question__list-item p {
  color: #5182b3;
  width: 90%;
  margin: 0 auto;
  font-size: 22px;
  margin-bottom: 80px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .question .question__container.wrapper .question__list .question__list-item p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.8;
  }
}

.footer {
  background-color: #fffcf2;
  padding-top: 74px;
  padding-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .footer {
    padding-top: 20px;
  }
}
.footer .footer__container.wrapper .footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 40px;
  gap: 50px;
  padding: 40px 0;
}
@media screen and (max-width: 900px) {
  .footer .footer__container.wrapper .footer__info {
    padding: 10px 0;
  }
}
.footer .footer__container.wrapper .footer__info .footer__info-image {
  width: 100px;
}
@media screen and (max-width: 900px) {
  .footer .footer__container.wrapper .footer__info .footer__info-image {
    width: 30px;
  }
}
.footer .footer__container.wrapper .footer__info .footer__info-sns address a {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .footer .footer__container.wrapper .footer__info .footer__info-sns address a {
    font-size: 14px;
  }
}
.footer .footer__container.wrapper .footer__info .footer__info-sns .footer__info-sns-link {
  display: flex;
  gap: 54px;
  justify-content: end;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .footer .footer__container.wrapper .footer__info .footer__info-sns .footer__info-sns-link {
    gap: 20px;
    justify-content: center;
    margin-bottom: 10px;
  }
}
.footer .footer__container.wrapper .footer__info .footer__info-sns .footer__info-sns-link a {
  width: 60px;
}
@media screen and (max-width: 900px) {
  .footer .footer__container.wrapper .footer__info .footer__info-sns .footer__info-sns-link a {
    width: 20px;
  }
}
.footer .footer__container.wrapper .footer__copyright {
  display: block;
  text-align: center;
  font-weight: 600;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .footer .footer__container.wrapper .footer__copyright {
    font-size: 10px;
  }
}

.form {
  background-color: #f7f7f7;
  padding: 50px 0 20px 0;
}
.form .form__container.wrapper .form__subtitle.section-subtitle {
  margin-bottom: 50px;
}
.form .form__container.wrapper .form__list .form__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item.sp-flex {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .form .form__container.wrapper .form__list .form__item.sp-flex .form__label {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item.sp-box .form__row .form__row-item {
    width: 100%;
  }
}
.form .form__container.wrapper .form__list .form__item .form__label {
  display: flex;
  flex-flow: column;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__label {
    width: 26%;
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__label.sp-big-label {
    width: 54%;
  }
}
.form .form__container.wrapper .form__list .form__item .form__label .form__label-required {
  color: #e2750f;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__label .form__label-required {
    font-size: 14px;
    margin-top: 4px;
  }
}
.form .form__container.wrapper .form__list .form__item .form__row {
  display: flex;
  width: 80%;
  gap: 60px;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__row {
    gap: 10px;
  }
}
.form .form__container.wrapper .form__list .form__item .form__row .form__row-item {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 40%;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__row .form__row-item {
    width: 50%;
  }
}
.form .form__container.wrapper .form__list .form__item .form__row .form__row-item .form__input--number {
  width: 50px;
}
.form .form__container.wrapper .form__list .form__item .form__row .form__row-item input {
  border: 1px solid #000;
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__row .form__row-item input {
    font-size: 16px;
    padding: 6px;
  }
}
.form .form__container.wrapper .form__list .form__item .form__row.form__row--address {
  justify-content: start;
  gap: 0px;
}
.form .form__container.wrapper .form__list .form__item .form__row.form__row--address .form__row-item {
  width: -moz-fit-content;
  width: fit-content;
}
.form .form__container.wrapper .form__list .form__item .form__row.form__row--address .form__row-item input {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__row.form__row--address .form__row-item input {
    width: 70%;
  }
}
.form .form__container.wrapper .form__list .form__item .form__textarea {
  width: 70%;
  border: 1px solid #000;
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__textarea {
    font-size: 16px;
    padding: 6px;
    width: 100%;
  }
}
.form .form__container.wrapper .form__list .form__item .form__radio-box {
  display: flex;
  gap: 20px;
  width: 80%;
  align-items: center;
}
.form .form__container.wrapper .form__list .form__item .form__radio-box .form__row-item {
  padding-right: 60px;
}
.form .form__container.wrapper .form__list .form__item .form__radio-box.form__radio-box--type {
  width: auto;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .form__radio-box.form__radio-box--type {
    margin-left: auto;
  }
}
.form .form__container.wrapper .form__list .form__item .form__radio-input {
  display: none;
}
.form .form__container.wrapper .form__list .form__item .RadioBox-Text {
  position: relative;
  font-size: 20px;
  font-size: 16px;
}
.form .form__container.wrapper .form__list .form__item .RadioBox-Text::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 2px solid #000000;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .RadioBox-Text::before {
    width: 30px;
    height: 30px;
    right: -36px;
    border: 1px solid #000000;
  }
}
.form .form__container.wrapper .form__list .form__item .RadioBox-Text::after {
  content: "";
  position: absolute;
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("image/check.svg");
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__item .RadioBox-Text::after {
    width: 30px;
    height: 30px;
    right: -36px;
  }
}
.form .form__container.wrapper .form__list .form__item .RadioBox:has(.RadioBox-Input:checked) .RadioBox-Text::after {
  opacity: 1;
}
.form .form__container.wrapper .form__list .form__privacy {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .form__privacy {
    font-size: 13px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
  }
}
.form .form__container.wrapper .form__list .contact-btn {
  font-size: 48px;
  padding: 10px 120px;
  border-radius: 200px;
}
@media screen and (max-width: 900px) {
  .form .form__container.wrapper .form__list .contact-btn {
    font-size: 24px;
  }
}

.sponsor {
  background-color: #f6f5f2;
}
.sponsor .sponsor__container.wrapper {
  max-width: calc(1260px + 4%);
}
.sponsor .sponsor__container.wrapper .sponsor__content {
  margin-top: 120px;
}
@media screen and (max-width: 900px) {
  .sponsor .sponsor__container.wrapper .sponsor__content {
    margin-top: 40px;
  }
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-title {
  color: #79a574;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  overflow-x: scroll;
  border-right: 1px solid #000;
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item {
  text-align: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item {
    gap: 2px;
  }
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-title {
  background-color: #79a574;
  min-width: 270px;
  color: #fff;
  font-size: 16px;
  border-left: 1px solid #000;
}
@media screen and (max-width: 900px) {
  .sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-title {
    font-size: 16px;
    min-width: 210px;
  }
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-text {
  background-color: #fff;
  min-width: 270px;
  font-weight: bold;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 900px) {
  .sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-text {
    min-width: 210px;
  }
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-text .sponsor__content-list-item-text-item {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  height: 100%;
  min-height: 123px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 10px 10px;
  line-height: 1.3;
  color: #505050;
}
@media screen and (max-width: 900px) {
  .sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-text .sponsor__content-list-item-text-item {
    font-size: 12px;
    padding: 10px 2px;
    min-height: 80px;
  }
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-text .sponsor__content-list-item-text-item address {
  display: inline-block;
}
.sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-text .sponsor__content-list-item-text-item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .sponsor .sponsor__container.wrapper .sponsor__content .sponsor__content-list .sponsor__content-list-item .sponsor__content-list-item-text .sponsor__content-list-item-text-item a {
    overflow-wrap: anywhere;
    font-size: 12px;
  }
}

.sub-page {
  background-image: url("image/sub-page-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 240px;
  padding-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .sub-page {
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
.sub-page .wrapper {
  max-width: calc(920px + 4%);
}
@media screen and (max-width: 900px) {
  .sub-page .wrapper {
    padding: 0;
  }
}
.sub-page .sub-page-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .sub-page .sub-page-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 900px) {
  .sub-page .sub-page-subtitle {
    font-size: 40px;
  }
}
.sub-page .sub-page-content {
  margin-top: 80px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .sub-page .sub-page-content {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 4%;
  }
}
.sub-page .sub-page-content p {
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 900px) {
  .sub-page .sub-page-content p {
    font-size: 15px;
  }
}
.sub-page .sub-page-content p .span-sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .sub-page .sub-page-content p .span-sp {
    display: block;
    height: 32px;
  }
}
.sub-page .sub-page-btn {
  font-size: 42px;
  padding: 10px 120px;
  border-radius: 200px;
  background-color: #5182B3;
  border: 4px solid #fff;
  border-radius: 30px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin: 0 auto;
  padding: 16px 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 900px) {
  .sub-page .sub-page-btn {
    font-size: 24px;
    padding: 16px 52px;
    border-radius: 90px;
  }
}

.anxiety-page.sub-page {
  padding-bottom: 380px;
}

.DV-page.sub-page {
  padding-bottom: 410px;
}

.home-page.sub-page {
  padding-bottom: 324px;
}

.support-page.sub-page {
  padding-bottom: 140px;
}

.guide {
  background-image: url("image/guide-bg.png");
  background-size: cover;
  background-position: top 200px center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 969px) {
  .guide {
    background-image: url("image/guide-spbg.png");
    background-position: top 0px center;
  }
}
.guide .guide__container .guide__title.section-title {
  text-align: left;
}
.guide .guide__container .guide__subtitle.section-subtitle {
  text-align: left;
}
.guide .guide__container .guide__text {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 160px;
}
.guide .guide__container .guide__list {
  position: relative;
}
.guide .guide__container .guide__list .guide__list-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 280px;
}
@media screen and (max-width: 969px) {
  .guide .guide__container .guide__list .guide__list-item {
    flex-flow: column;
    margin-bottom: 80px;
  }
}
.guide .guide__container .guide__list .guide__list-item.flex-reverse .guide__list-item-text {
  text-align: left;
}
.guide .guide__container .guide__list .guide__list-item.flex-reverse .guide__list-item-text .guide__list-item-text-inner {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.guide .guide__container .guide__list .guide__list-item.flex-reverse .guide__list-item-image {
  right: auto;
  left: 0;
}
@media screen and (min-width: 1500px) {
  .guide .guide__container .guide__list .guide__list-item.flex-reverse .guide__list-item-image {
    left: 13%;
  }
  .guide .guide__container .guide__list .guide__list-item.flex-reverse .guide__list-item-image img {
    border-radius: 50px;
  }
}
@media screen and (max-width: 969px) {
  .guide .guide__container .guide__list .guide__list-item.flex-reverse .guide__list-item-image {
    margin-right: auto;
    margin-left: 0;
  }
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-text {
  width: 100%;
}
@media screen and (max-width: 969px) {
  .guide .guide__container .guide__list .guide__list-item .guide__list-item-text {
    max-width: calc(500px + 4%);
    padding: 0 4%;
  }
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-text-inner {
  width: 54%;
}
@media screen and (max-width: 969px) {
  .guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-text-inner {
    width: 100%;
  }
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-title {
  font-size: 24px;
  font-weight: 600;
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-list {
  margin-left: 40px;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-list .guide__list-item-list-item {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
@media screen and (max-width: 969px) {
  .guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-list .guide__list-item-list-item {
    font-size: 14px;
  }
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-list .guide__list-item-list-item span {
  color: #5182B3;
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-list .guide__list-item-list-item p {
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 969px) {
  .guide .guide__container .guide__list .guide__list-item .guide__list-item-text .guide__list-item-list .guide__list-item-list-item p {
    font-size: 14px;
  }
}
.guide .guide__container .guide__list .guide__list-item .guide__list-item-image {
  width: 40%;
  text-align: right;
  padding-top: 60px;
  position: absolute;
  right: 0;
  max-width: 500px;
}
@media screen and (min-width: 1500px) {
  .guide .guide__container .guide__list .guide__list-item .guide__list-item-image {
    right: 20%;
  }
  .guide .guide__container .guide__list .guide__list-item .guide__list-item-image img {
    border-radius: 50px;
  }
}
@media screen and (max-width: 969px) {
  .guide .guide__container .guide__list .guide__list-item .guide__list-item-image {
    position: relative;
    margin-left: auto;
    width: 90%;
    text-align: center;
    padding-top: 0;
  }
}

.contact {
  background-color: #EEB81F;
  padding-bottom: 100px;
}
.contact .contact__container.wrapper .contact__subtitle.section-subtitle {
  color: #fff;
}
.contact .contact__container.wrapper .contact__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .contact .contact__container.wrapper .contact__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.contact .contact__container.wrapper .contact__list .contact__list-item {
  width: 40%;
  background-color: #fff;
  border-radius: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 900px) {
  .contact .contact__container.wrapper .contact__list .contact__list-item {
    width: 100%;
  }
}
.contact .contact__container.wrapper .contact__list .contact__list-item .contact__list-item-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .contact .contact__container.wrapper .contact__list .contact__list-item .contact__list-item-title {
    font-size: 20px;
  }
}
.contact .contact__container.wrapper .contact__list .contact__list-item p {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 24px;
  color: #EEB81F;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  .contact .contact__container.wrapper .contact__list .contact__list-item p {
    font-size: 20px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */