@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  min-width: 375px;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #002153;
}
@media (max-width: 781px) {
  body {
    font-size: 15px;
  }
}

.wrap {
  overflow: hidden;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}
@media (min-width: 1100px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media (min-width: 1100px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 1099px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}

/*デバイスごとの表示切り替え*/
@media (max-width: 1099px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-tab {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media (max-width: 1099px) {
  .tab-below {
    display: block;
  }
}

@media (min-width: 1100px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1099px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/*************************************************************************************
ページタイトル
**************************************************************************************/
.page-title {
  margin-top: 52px;
  background: url(../img/common/page-title.jpg) no-repeat center/cover;
  padding: 120px 0;
  margin-bottom: 80px;
}
@media (max-width: 781px) {
  .page-title {
    padding: 80px 0;
    margin-bottom: 40px;
  }
}

.page-title__title {
  max-width: 940px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
  color: #AEFF00;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1099px) {
  .page-title__title {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .page-title__title {
    font-size: 16px;
  }
}
.page-title__title::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 52px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-title__title::before {
    font-size: 36px;
  }
}

.page-title__title--page {
  font-size: 24px;
  color: #ffffff;
}

/*************************************************************************************
共通インナー幅(下層940px)
**************************************************************************************/
.inner {
  max-width: 940px;
  width: 98%;
  margin-right: auto !important;
  margin-left: auto !important;
}
@media (max-width: 781px) {
  .inner {
    width: 89%;
  }
}

.block__common {
  max-width: 950px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 80px;
}
.block__common h3 {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(70%, #ffc65c), to(#ffc65c));
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #ffc65c 70%, #ffc65c 100%);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* 固定ヘッダーの高さを変数で管理（例） */
:root {
  --header-h: 80px; /* PCヘッダー高さ */
  --header-h-sp: 64px; /* SPヘッダー高さ（必要なら） */
}

/* アンカー対象（idを持つ見出し）にスクロール余白を付与 */
.wp-block-heading[id],
[id].wp-block-heading {
  scroll-margin-top: var(--header-h);
}

@media (max-width: 768px) {
  .wp-block-heading[id],
  [id].wp-block-heading {
    scroll-margin-top: var(--header-h-sp);
  }
}
/* ログイン時の管理バー（admin bar）ぶんも考慮したい場合 */
body.admin-bar .wp-block-heading[id] {
  scroll-margin-top: calc(var(--header-h) + 32px); /* 32px=管理バー(PC) */
}

@media (max-width: 782px) {
  body.admin-bar .wp-block-heading[id] {
    scroll-margin-top: calc(var(--header-h-sp) + 46px); /* 46px=管理バー(SP) */
  }
}
/*************************************************************************************
404
**************************************************************************************/
.not-found {
  margin-top: 200px;
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .not-found {
    margin-top: 150px;
    margin-bottom: 80px;
  }
}
.not-found h1 {
  color: #3DADDA;
}
@media (max-width: 767px) {
  .not-found h1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .not-found p {
    font-size: 14px;
  }
}
.not-found .top-news__btn {
  max-width: 300px;
  width: 89%;
  margin-left: auto;
  margin-right: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 999;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.header__wrap p {
  margin: 0;
  margin: 3px 0;
}

.header__logo a {
  display: block;
  width: 165px;
  padding-left: 15px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 1099px) {
  .header__nav {
    display: none;
  }
}

.header__menu a {
  text-decoration: none;
  font-weight: 700;
}
@media (min-width: 1100px) {
  .header__menu a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__menu a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #3DADDA;
  }
}

.header__member a {
  text-decoration: none;
  background-color: #013A90;
  color: #ffffff;
  padding: 18px 10px;
  padding-left: 50px;
  position: relative;
}
@media (min-width: 1100px) {
  .header__member a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__member a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #3DADDA;
  }
}
.header__member a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 20px;
  background: url(../img/common/header-member.png) no-repeat center/cover;
}

/*************************************************************************************
ドロワーメニュー
**************************************************************************************/
#drawer-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 312px;
  height: 100%;
  background: #013A90;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1100px) {
  #drawer-nav {
    display: none;
  }
}

#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#drawer-nav ul {
  position: absolute;
  z-index: 999;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 55%;
}

#drawer-nav li {
  list-style: none;
}
#drawer-nav li a {
  text-decoration: none;
  padding: 19px 0;
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
}

/*************************************************************************************
ハンバーガーボタン
**************************************************************************************/
.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  background-color: transparent;
  top: 0;
  right: 15px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
@media (min-width: 1100px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background-color: #013A90;
  width: 33px;
}

.hamburger span:nth-of-type(1) {
  top: 20px;
}

.hamburger span:nth-of-type(2) {
  top: 30px;
}

.hamburger span:nth-of-type(3) {
  top: 40px;
}

.hamburger.active span:nth-of-type(1) {
  top: 23px;
  left: 14px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 33px;
  background-color: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 35px;
  left: 14px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 33px;
  background-color: #fff;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}
@media (min-width: 1100px) {
  #overlay {
    position: static;
  }
}

/* Prevent background scrolling when menu is active */
body.panelactive {
  overflow: hidden;
}
@media (min-width: 1100px) {
  body.panelactive {
    overflow: auto;
  }
}

/*************************************************************************************
フッター
**************************************************************************************/
.footer {
  background-color: #3DADDA;
  color: #ffffff;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding: 120px 0;
}
@media (max-width: 1099px) {
  .footer__wrap {
    width: 89%;
  }
}
@media (max-width: 767px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 15px;
  }
}

.footer__logo {
  display: block;
  width: 210px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer__logo {
    margin-right: auto;
    margin-left: auto;
    width: 150px;
  }
}

.footer__address {
  font-style: normal;
  margin-bottom: 15px;
}
@media (max-width: 781px) {
  .footer__address {
    text-align: center;
    font-size: 14px;
  }
}

.footer__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
@media (max-width: 781px) {
  .footer__dl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
  }
}
.footer__dl dt {
  display: block;
  width: 45px;
}
.footer__dl dd {
  margin: 0;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 781px) {
  .footer__nav {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}

.footer__menu a {
  text-decoration: none;
  font-weight: 500;
  padding: 15px 10px;
  display: block;
}
@media (min-width: 1100px) {
  .footer__menu a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .footer__menu a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}
@media (max-width: 781px) {
  .footer__menu a {
    padding: 10px 5px;
    font-size: 14px;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  margin-top: 15px;
}
@media (max-width: 781px) {
  .footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}
.footer__sns li a {
  display: block;
  width: 35px;
}
@media (min-width: 1100px) {
  .footer__sns li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .footer__sns li a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}
@media (max-width: 781px) {
  .footer__sns li a {
    width: 25px;
  }
}

.footer__copy {
  display: block;
  text-align: center;
  padding-bottom: 20px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .footer__copy {
    padding-bottom: 80px;
  }
}

/*************************************************************************************
追従バナー
**************************************************************************************/
.banner {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 175px;
  height: 175px;
  z-index: 999;
}
@media (min-width: 1100px) {
  .banner a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .banner a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}

.banner-sp {
  position: fixed;
  width: 100%;
  height: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.banner-sp a {
  display: block;
  width: 100%;
  position: fixed;
  background-color: #249ccc;
  padding: 5px 0;
  padding-bottom: 20px;
  text-decoration: none;
  font-weight: 700;
  line-height: 160%;
}
.banner-sp a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  color: #ffffff;
  font-size: 12px;
}
.banner-sp a span img {
  display: block;
  width: 22px;
}
.banner-sp a p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #FCFF59;
  margin: 0;
}

/*************************************************************************************
ファーストビュー
**************************************************************************************/
.common-bg {
  background-color: #E5EEF2;
}

.common-bg--top {
  padding-top: 20px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .common-bg--top {
    padding-bottom: 40px;
  }
}

.fv {
  margin-top: 70px;
  padding: 0 30px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 1099px) {
  .fv {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .fv {
    padding: 0 12px;
  }
}
.fv::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1350px;
  width: 100%;
  height: 100%;
  background: url(../img/top/fv-bg.webp) no-repeat center/contain;
  z-index: 997;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .fv::after {
    background: url(../img/top/fv-bg-sp.webp) no-repeat center/contain;
  }
}

.fv__message {
  position: absolute;
  content: "";
  bottom: 14%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 850px;
  width: 89%;
  z-index: 998;
}
@media (max-width: 1099px) {
  .fv__message {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .fv__message {
    width: 85%;
    bottom: 20%;
  }
}

.swiper {
  z-index: 0 !important;
}

.fv__img {
  display: block;
  max-width: 1280px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}

/*************************************************************************************
TOPニュース
**************************************************************************************/
.top-news {
  max-width: 905px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-bottom: 100px;
}
.top-news::after {
  position: absolute;
  content: "";
  bottom: 50px;
  left: -100px;
  width: 200px;
  height: 180px;
  background: url(../img/top/people1.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .top-news::after {
    display: none;
  }
}
@media (max-width: 781px) {
  .top-news::after {
    display: block;
    bottom: 0;
    left: -10px;
    width: 150px;
    height: 130px;
  }
}
@media (max-width: 767px) {
  .top-news {
    width: 89%;
  }
}

.top-news__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .top-news__parts {
    display: contents;
  }
}

.top-news__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #013A90;
}
@media (max-width: 767px) {
  .top-news__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.top-news__title::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
  font-size: 62px;
}
@media (max-width: 767px) {
  .top-news__title::before {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .top-news__btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 200px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
  }
}
.top-news__btn a {
  display: block;
  background-color: #013A90;
  color: #ffffff;
  padding: 8px 30px;
  padding-right: 50px;
  color: #ffffff;
  border: 2px solid #013A90;
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1100px) {
  .top-news__btn a:hover {
    background-color: #ffffff;
    color: #013A90;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .top-news__btn a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 5px;
  }
}
.top-news__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../img/top/blue-arrow.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.top-news__wrap {
  border: 3px solid #013A90;
  border-radius: 30px;
  background-color: #ffffff;
  padding: 30px 50px;
}
@media (max-width: 767px) {
  .top-news__wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 10px 15px;
  }
}

.top-news__list a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
}
@media (min-width: 1100px) {
  .top-news__list a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .top-news__list a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
}
.top-news__list:not(:last-of-type) {
  border-bottom: 1px dashed #959494;
}

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.article__parts {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .article__parts {
    width: 100%;
    gap: 20px;
  }
}

.article__category {
  background-color: #3DADDA;
  color: #ffffff;
  padding: 3px 10px;
}
@media (max-width: 767px) {
  .article__category {
    font-size: 12px;
    padding: 1px 10px;
  }
}

.article__title {
  width: calc(100% - 250px);
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .article__title {
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
  }
}

/*************************************************************************************
動画
**************************************************************************************/
.movie {
  width: 94%;
  margin-left: auto;
  background-color: #3DADDA;
  border-radius: 100px 0 0 100px;
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 1099px) {
  .movie {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .movie {
    width: 98%;
  }
}
@media (max-width: 767px) {
  .movie {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.movie::before {
  position: absolute;
  content: "";
  top: -120px;
  right: 0;
  width: 260px;
  height: 340px;
  background: url(../img/top/movie-top.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .movie::before {
    width: 150px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .movie::before {
    width: 100px;
    height: 150px;
    top: -60px;
  }
}
.movie::after {
  position: absolute;
  content: "";
  bottom: -100px;
  left: 0;
  width: 255px;
  height: 210px;
  background: url(../img/top/movie-bottom.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .movie::after {
    width: 200px;
    height: 165px;
    bottom: -60px;
  }
}
@media (max-width: 767px) {
  .movie::after {
    bottom: -10px;
    width: 100px;
    height: 82px;
  }
}

.movie__title {
  color: #ffffff;
  font-size: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1099px) {
  .movie__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .movie__title {
    font-size: 24px;
  }
}
.movie__title img {
  width: 120px;
}
@media (max-width: 1099px) {
  .movie__title img {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .movie__title img {
    width: 60px;
  }
}

.movie__contents {
  margin-top: 60px;
}
@media (max-width: 1099px) {
  .movie__contents {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .movie__contents {
    margin-top: 20px;
  }
}
.movie__contents video {
  display: block;
  max-width: 820px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .movie__contents video {
    width: 89%;
  }
}
@media (max-width: 767px) {
  .movie__contents video {
    width: 95%;
  }
}

/*************************************************************************************
フォルテについて
**************************************************************************************/
.about {
  background: url(../img/top/about-bg.jpg) repeat center/contain;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
}
.about::after {
  position: absolute;
  content: "";
  bottom: -125px;
  left: 5%;
  width: 171px;
  height: 250px;
  background: url(../img/top/people2.png) no-repeat center/cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .about::after {
    bottom: -100px;
    width: 120px;
    height: 180px;
  }
}

.about__wrap {
  max-width: 1080px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1099px) {
  .about__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__contents {
  max-width: 620px;
}

.about__title {
  color: #013A90;
  font-size: 28px;
}
@media (max-width: 1099px) {
  .about__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .about__title {
    font-size: 20px;
  }
}
.about__title span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(70%, #F7E09C), to(#F7E09C));
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #F7E09C 70%, #F7E09C 100%);
}
.about__title::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .about__title::before {
    font-size: 15px;
  }
}

.about__text {
  margin-top: 40px;
}
@media (max-width: 1099px) {
  .about__text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .about__text {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about__img {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

/*************************************************************************************
TOPプログラム
**************************************************************************************/
.common-bg-under {
  position: relative;
}
.common-bg-under::before {
  position: absolute;
  content: "";
  top: 48%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 130px;
  height: 180px;
  background: url(../img/top/top-coach-top.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .common-bg-under::before {
    top: 52%;
  }
}
@media (max-width: 767px) {
  .common-bg-under::before {
    top: 65%;
  }
}

.top-program {
  padding: 80px 0;
}

.top-program__title {
  text-align: center;
  color: #013A90;
  font-size: 28px;
}
@media (max-width: 1099px) {
  .top-program__title {
    font-size: 24px;
  }
}
.top-program__title::before {
  display: block;
  color: #013A90;
  font-size: 16px;
  content: attr(data-en);
  margin-bottom: 5px;
}

.top-program__wrap {
  max-width: 1080px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  margin-top: 80px;
}
@media (max-width: 1099px) {
  .top-program__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .top-program__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}

.top-program__list {
  width: 33.3%;
}
@media (max-width: 767px) {
  .top-program__list {
    max-width: 450px;
    width: 89%;
    margin-right: auto;
    margin-left: auto;
  }
}
.top-program__list a {
  text-decoration: none;
}
@media (min-width: 1100px) {
  .top-program__list a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .top-program__list a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.7;
  }
  .top-program__list a:hover .top-program__btn::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 5px;
  }
}
.top-program__list:nth-child(1) a .top-program__label span {
  color: #D9AFD9;
}
.top-program__list:nth-child(1) a .top-program__btn {
  background-color: #D9AFD9;
  color: #ffffff;
}
.top-program__list:nth-child(1) a .top-program__btn::after {
  background: url(../img/top/purple-arrow.png) no-repeat center/cover;
}
.top-program__list:nth-child(2) a .top-program__label span {
  color: #F7E09C;
}
.top-program__list:nth-child(2) a .top-program__btn {
  background-color: #F7E09C;
}
.top-program__list:nth-child(2) a .top-program__btn::after {
  background: url(../img/top/blue-arrow.png) no-repeat center/cover;
}
.top-program__list:nth-child(3) a .top-program__label span {
  color: #F7AB9C;
}
.top-program__list:nth-child(3) a .top-program__btn {
  background-color: #F7AB9C;
  color: #ffffff;
}
.top-program__list:nth-child(3) a .top-program__btn::after {
  background: url(../img/top/pink-arrow.png) no-repeat center/cover;
}

.top-program__label {
  font-family: "Antonio", sans-serif;
  font-size: 32px;
  color: #00A8EB;
  margin: 0;
  margin-top: -75px;
  padding-left: 15px;
}
.top-program__label span {
  font-size: 52px;
  padding-left: 10px;
}

.top-program__btn {
  padding: 10px 30px;
  text-align: center;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 1099px) {
  .top-program__btn {
    font-size: 16px;
  }
}
.top-program__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*************************************************************************************
トップコーチ
**************************************************************************************/
.top-coach {
  background-color: #E5EEF2;
  background: url(../img/top/top-coach-bg.png) no-repeat center/cover;
  border-radius: 300px 0 0 0;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .top-coach {
    border-radius: 100px 0 0 0;
    padding: 60px 0;
  }
}

.top-coach__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .top-coach__container {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .top-coach__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 89%;
    margin-right: auto;
    margin-left: auto;
  }
}

.top-coach__contents {
  max-width: 600px;
  width: 100%;
  padding-left: 80px;
}
@media (max-width: 767px) {
  .top-coach__contents {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 0;
  }
}

.top-coach__title {
  font-size: 32px;
  color: #ffffff;
}
@media (max-width: 1099px) {
  .top-coach__title {
    font-size: 24px;
  }
}
@media (max-width: 781px) {
  .top-coach__title {
    text-align: center;
  }
}
.top-coach__title span {
  color: #F7E09C;
}
.top-coach__title::before {
  font-size: 16px;
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
  color: #AEFF00;
}

.top-coach__text {
  max-width: 450px;
  color: #ffffff;
  margin-top: 40px;
}

.top-coach__btn a {
  display: block;
  width: 250px;
  padding: 10px 50px;
  text-align: center;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  background-color: #F7E09C;
  text-decoration: none;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .top-coach__btn a {
    margin-right: auto;
    margin-left: auto;
  }
}
.top-coach__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/top/blue-arrow.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1100px) {
  .top-coach__btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .top-coach__btn a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 5px;
  }
}

.top-coach__img {
  margin-right: calc(50% - 50vw);
  width: 570px;
}
.top-coach__img img {
  display: block;
  width: 100%;
  aspect-ratio: 570/563;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1099px) {
  .top-coach__img {
    max-width: auto;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .top-coach__img {
    width: 100%;
    margin-left: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/*************************************************************************************
お客様の声
**************************************************************************************/
.top-voice {
  max-width: 1160px;
  width: 90%;
  margin: 40px 0;
  margin-right: auto;
  margin-left: auto;
  background-color: #008FC9;
  position: relative;
  border-radius: 50px;
  padding: 120px 0;
}
@media (max-width: 781px) {
  .top-voice {
    margin: 40px auto;
    margin-top: 20px;
    padding: 80px 0;
  }
}
.top-voice::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: url(../img/top/top-voice-bg.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .top-voice::after {
    background-size: contain;
  }
}

.top-voice__title {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-voice__title {
    font-size: 24px;
  }
}
.top-voice__title::before {
  font-size: 16px;
  color: #AEFF00;
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
}

.top-voice__text {
  color: #ffffff;
  text-align: center;
  margin-top: 50px;
  position: relative;
  line-height: 180%;
  position: relative;
  z-index: 1;
}
.top-voice__text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 320px;
  height: 400px;
  background: url(../img/top/top-voice-left.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .top-voice__text::before {
    background: url(../img/top/top-voice-left-sp.png) no-repeat center/cover;
    top: -120px;
    left: calc(50% - 380px);
    width: 205px;
    height: 180px;
  }
}
@media (max-width: 781px) {
  .top-voice__text::before {
    left: calc(50% - 180px);
    top: -120px;
    width: 120px;
    height: 105px;
  }
}
.top-voice__text::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 280px;
  height: 500px;
  background: url(../img/top/top-voice-right.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .top-voice__text::after {
    background: url(../img/top/top-voice-right-sp.png) no-repeat center/cover;
    width: 195px;
    height: 150px;
    top: auto;
    bottom: -250px;
    right: calc(50% - 380px);
  }
}
@media (max-width: 781px) {
  .top-voice__text::after {
    width: 120px;
    height: 95px;
    right: calc(50% - 180px);
    top: auto;
    bottom: -240px;
  }
}

.top-voice__btn {
  position: relative;
  z-index: 1;
}
.top-voice__btn a {
  margin-top: 40px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  display: block;
  color: #008FC9;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 50px;
  background-color: #ffffff;
  border-radius: 30px;
  position: relative;
}
@media (min-width: 1100px) {
  .top-voice__btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .top-voice__btn a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 5px;
  }
}
.top-voice__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/top/lightblue-arrow.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*************************************************************************************
メッセージ
**************************************************************************************/
.message {
  background: url(../img/top/message-bg.jpg) no-repeat center/cover;
  padding: 150px 0;
  position: relative;
}
.message::before, .message::after {
  position: absolute;
  content: "";
}
.message::before {
  bottom: 0;
  left: 0;
  width: 254px;
  height: 430px;
  background: url(../img/top/message-left.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .message::before {
    width: 150px;
    height: 260px;
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .message::before {
    opacity: 0.3;
  }
}
.message::after {
  top: 0;
  right: 0;
  width: 212px;
  height: 456px;
  background: url(../img/top/message-right.png) no-repeat center/cover;
}
@media (max-width: 1099px) {
  .message::after {
    width: 150px;
    height: 330px;
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .message::after {
    opacity: 0.3;
  }
}

.message__text {
  color: #ffffff;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  line-height: 220%;
}
@media (max-width: 767px) {
  .message__text {
    font-size: 16px;
    line-height: 250%;
  }
}

/*************************************************************************************
保護者様の声
**************************************************************************************/
.review__expalination {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 781px) {
  .review__expalination {
    font-size: 16px;
    width: 89%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    line-height: 180%;
  }
}

.review__wrap {
  margin-top: 60px;
}

.review__box {
  padding: 32px;
  margin: 0;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
@media (max-width: 781px) {
  .review__box {
    padding: 15px;
    margin-bottom: 20px;
    gap: 0;
  }
  .review__box figure {
    width: 150px;
    margin-right: auto;
    margin-left: auto;
  }
}

.review__message__text {
  max-width: 900px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  line-height: 200%;
  font-size: 24px;
}
@media (max-width: 781px) {
  .review__message__text {
    font-size: 16px;
  }
}

/*************************************************************************************
よくある質問
**************************************************************************************/
.faq__wrap {
  padding-bottom: 100px;
}
@media (max-width: 781px) {
  .faq__wrap {
    padding-bottom: 60px;
  }
}

.faq__title:not(:first-of-type) {
  margin-top: 60px;
}
@media (max-width: 781px) {
  .faq__title:not(:first-of-type) {
    margin-top: 30px;
    font-size: 20px;
  }
}

.faq__box {
  margin-top: 20px !important;
  border: 1px solid #3DADDA !important;
}
@media (max-width: 781px) {
  .faq__box {
    padding: 15px !important;
  }
}
.faq__box .aab__accordion_head {
  background: #ffffff !important;
}
@media (max-width: 781px) {
  .faq__box .aab__accordion_head {
    padding: 0 !important;
  }
}
.faq__box .aab__accordion_head .aab__accordion_heading {
  padding-left: 60px;
  position: relative;
}
@media (max-width: 781px) {
  .faq__box .aab__accordion_head .aab__accordion_heading {
    padding-left: 40px;
    font-size: 15px;
  }
}
.faq__box .aab__accordion_head .aab__accordion_heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/under/faq-icon-q.png) no-repeat center/cover;
}
.faq__box .aab__accordion_head .aab__accordion_icon .aab__icon::before {
  color: #3DADDA;
}
@media (max-width: 781px) {
  .faq__box .aab__accordion_body {
    padding-left: 0 !important;
  }
}
.faq__box .aab__accordion_body .aab__accordion_component {
  padding-left: 60px;
  position: relative;
}
@media (max-width: 781px) {
  .faq__box .aab__accordion_body .aab__accordion_component {
    padding-left: 40px;
  }
}
.faq__box .aab__accordion_body .aab__accordion_component::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../img/under/faq-icon-a.png) no-repeat center/cover;
}

.faq__message {
  margin-top: 40px;
  font-size: 20px;
}
@media (max-width: 781px) {
  .faq__message {
    margin-top: 20px;
    font-size: 16px;
  }
}

.faq__btn {
  margin-top: 20px;
}

/*************************************************************************************
プログラム
**************************************************************************************/
.program__text {
  max-width: 710px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}

.program__btns {
  max-width: 710px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}
@media (max-width: 781px) {
  .program__btns {
    gap: 15px !important;
  }
}

.program__btn .wp-block-button {
  width: 100%;
  position: relative;
}
@media (max-width: 781px) {
  .program__btn .wp-block-button {
    font-size: 14px;
  }
}
@media (max-width: 781px) {
  .program__btn .wp-block-button .wp-block-button__link {
    padding: 10px;
  }
}
.program__btn .wp-block-button::after {
  position: absolute;
  content: "▼";
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 781px) {
  .program__btn .wp-block-button::after {
    font-size: 12px;
    right: 20px;
  }
}

.contents__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 1099px) {
  .contents__title {
    font-size: 38px;
  }
}
@media (max-width: 781px) {
  .contents__title {
    font-size: 28px;
  }
}

.contents__message {
  font-size: 30px;
  font-weight: 500;
  border-bottom: 2px dotted #013A90;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 781px) {
  .contents__message {
    font-size: 20px;
  }
}

.contents__text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 781px) {
  .contents__text {
    font-size: 15px;
  }
}

.contents__wrap {
  background-color: #ECFAFF;
  border-radius: 20px;
  padding: 40px 60px;
  margin-top: 30px;
}
@media (max-width: 781px) {
  .contents__wrap {
    padding: 20px;
  }
}

.place__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 36px;
}
@media (max-width: 781px) {
  .place__label {
    font-size: 28px;
  }
}

.area-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-top: 30px;
}

.program__table {
  margin-top: 10px;
}
@media (max-width: 781px) {
  .program__table table {
    font-size: 14px;
  }
}
.cta {
  padding: 120px 0;
  position: relative;
  margin: 0;
}
@media (max-width: 781px) {
  .cta {
    padding: 80px 0;
  }
}
.cta h2 {
  font-size: 52px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1099px) {
  .cta h2 {
    font-size: 42px;
  }
}
@media (max-width: 781px) {
  .cta h2 {
    font-size: 32px;
  }
}
.cta .cta__btn a {
  width: 400px;
  font-size: 20px;
  position: relative;
  margin-top: 60px;
  padding: 20px;
  font-size: 20px;
  z-index: 10;
}
@media (min-width: 1100px) {
  .cta .cta__btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .cta .cta__btn a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 15px;
  }
}
@media (max-width: 781px) {
  .cta .cta__btn a {
    width: 300px;
    font-size: 18px;
    margin-top: 30px;
    padding: 10px;
  }
}
.cta .cta__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/common/cta-arrow.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 200px;
  height: 100%;
  background: url(../img/common/cta-left.png) no-repeat center right/cover;
}
@media (max-width: 781px) {
  .cta::before {
    opacity: 0.5;
  }
}
.cta::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 230px;
  height: 100%;
  background: url(../img/common/cta-right.png) no-repeat center left/cover;
}
@media (max-width: 781px) {
  .cta::after {
    opacity: 0.5;
  }
}

.kakekko {
  position: relative;
  margin-top: 200px;
}
@media (max-width: 781px) {
  .kakekko {
    margin-top: 60px;
  }
}
.kakekko::after {
  position: absolute;
  content: "";
  top: -120px;
  right: -80px;
  width: 303px;
  height: 333px;
  background: url(../img/under/kakekko-bg.png) no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 1099px) {
  .kakekko::after {
    width: 150px;
    height: 165px;
    top: -50px;
    right: 0;
  }
}

.rikuzyou {
  position: relative;
  margin-top: 150px;
}
@media (max-width: 781px) {
  .rikuzyou {
    margin-top: 60px;
  }
}
.rikuzyou::after {
  position: absolute;
  content: "";
  top: -120px;
  right: -80px;
  width: 308px;
  height: 268px;
  background: url(../img/under/rikuzyou-bg.png) no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 1099px) {
  .rikuzyou::after {
    width: 150px;
    height: 130px;
    top: -30px;
    right: 0;
  }
}

.kateikyoushi {
  position: relative;
  margin-top: 150px;
}
@media (max-width: 781px) {
  .kateikyoushi {
    margin-top: 60px;
  }
}
.kateikyoushi::after {
  position: absolute;
  content: "";
  top: -120px;
  right: -80px;
  width: 330px;
  height: 277px;
  background: url(../img/under/kateikyoushi-bg.png) no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 1099px) {
  .kateikyoushi::after {
    width: 160px;
    height: 130px;
    top: -30px;
    right: 0;
  }
}

.price-bg {
  margin: 0;
  padding: 100px 0;
}
@media (max-width: 781px) {
  .price-bg {
    padding: 40px 0;
    padding-bottom: 0;
  }
}

.price__title {
  font-size: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 1099px) {
  .price__title {
    font-size: 36px;
  }
}
@media (max-width: 781px) {
  .price__title {
    font-size: 24px;
  }
  .price__title img {
    width: 36px !important;
  }
}

.price__table {
  margin-top: 15px;
}

.coach-wrap {
  margin-top: 60px;
}
@media (max-width: 781px) {
  .coach-wrap {
    margin-top: 30px;
    gap: 0;
  }
}
.coach-wrap figure {
  max-width: 350px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.coach-wrap figure img {
  border-radius: 20px;
}

.coach-img {
  max-width: 400px;
}

.coach-en {
  font-size: 36px;
  font-weight: 700;
  color: #4CAED5;
  margin-top: -50px;
}
@media (max-width: 781px) {
  .coach-en {
    text-align: center;
    font-size: 28px;
    margin-top: -45px;
  }
}

.coach-name {
  font-size: 28px;
  color: #013A90;
  font-weight: 700;
  margin-top: -20px;
}
@media (max-width: 781px) {
  .coach-name {
    text-align: center;
    font-size: 20px;
  }
}
.coach-name span {
  display: block;
  font-size: 18px;
}
@media (max-width: 781px) {
  .coach-name span {
    font-size: 14px;
  }
}

.coach-post {
  margin-top: 10px;
}

.coach-text {
  max-width: calc(100% - 400px);
  width: 100%;
  -ms-flex-preferred-size: auto !important;
      flex-basis: auto !important;
}
@media (max-width: 781px) {
  .coach-text {
    max-width: 100%;
  }
}
.coach-text p {
  display: block;
  margin-bottom: 30px;
}
@media (max-width: 1099px) {
  .coach-text p {
    font-size: 15px;
  }
}
@media (max-width: 781px) {
  .coach-text p {
    margin-bottom: 20px;
  }
}

.coach-point {
  margin-bottom: 30px;
}
@media (max-width: 781px) {
  .coach-point {
    margin-bottom: 15px;
  }
}

.coach-block-title {
  font-size: 48px;
  margin-bottom: 20px;
}
@media (max-width: 781px) {
  .coach-block-title {
    font-size: 32px;
  }
}

.coach-block-explanation {
  font-size: 16px;
}
@media (max-width: 781px) {
  .coach-block-explanation {
    font-size: 14px;
    text-align: left !important;
  }
}

.coach-block {
  margin: 40px 0;
  padding-bottom: 40px;
}
.coach-block:not(:last-of-type) {
  border-bottom: 1px solid #3DADDA;
}
@media (max-width: 781px) {
  .coach-block {
    margin: 20px 0;
  }
}
.coach-block .coach-text h3 {
  color: #3DADDA;
  margin-bottom: 10px;
}
.coach-block .coach-text h3:not(:first-of-type) {
  margin-top: 20px;
}
.coach-block .coach-text h3 span {
  font-size: 15px;
}
.coach-block .coach-text ul li {
  list-style-position: inside !important;
  list-style: disc;
  text-indent: -1em;
  padding-left: 1em;
}

.coach-media {
  margin-top: 60px;
}
.coach-media h2 {
  color: #013A90;
  font-size: 48px;
}
@media (max-width: 781px) {
  .coach-media h2 {
    font-size: 28px;
  }
}
.coach-media .media-table {
  margin-top: 30px;
}
@media (max-width: 781px) {
  .coach-media .media-table {
    font-size: 15px;
  }
}
.coach-media .media-table tr td:first-of-type {
  width: 28% !important;
}

.coach-books {
  margin-top: 60px;
}
.coach-books h2 {
  color: #013A90;
  font-size: 48px;
}
@media (max-width: 781px) {
  .coach-books h2 {
    font-size: 28px;
  }
}
.coach-books .books-wrap {
  margin-top: 30px;
}
@media (max-width: 781px) {
  .coach-books .books-wrap .books-block a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 250px;
    width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (max-width: 781px) {
  .coach-books .books-wrap .books-block p {
    text-align: center;
  }
}

.coach-company {
  margin-top: 60px;
}
.coach-company h2 {
  color: #013A90;
  font-size: 48px;
}
@media (max-width: 781px) {
  .coach-company h2 {
    font-size: 28px;
  }
}
.coach-company .company-table {
  margin-top: 20px;
}
@media (max-width: 781px) {
  .coach-company .company-table {
    font-size: 15px;
  }
}

.coach-history {
  margin-top: 60px;
}
.coach-history h2 {
  color: #013A90;
  font-size: 48px;
}
@media (max-width: 781px) {
  .coach-history h2 {
    font-size: 28px;
  }
}
.coach-history .history-table {
  margin-top: 20px;
}
@media (max-width: 781px) {
  .coach-history .history-table {
    font-size: 15px;
  }
}

/*************************************************************************************
イベント
**************************************************************************************/
.event__message {
  font-size: 28px;
  color: #013A90;
  text-align: center;
}
@media (max-width: 767px) {
  .event__message {
    font-size: 20px;
  }
}

.event__lead {
  display: block;
  margin-top: 20px;
  max-width: 900px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto !important;
  margin-left: auto !important;
  line-height: 200%;
}
@media (max-width: 767px) {
  .event__lead {
    line-height: 160%;
  }
}

.event__anchor {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .event__anchor {
    margin-top: 40px;
  }
}

.skiing {
  margin-top: 80px;
}
@media (max-width: 781px) {
  .skiing {
    margin-top: 40px;
  }
}
.skiing p {
  margin-top: 40px;
  line-height: 200%;
}

.event__name {
  font-size: 48px;
  color: #013A90;
  text-align: center;
}
@media (max-width: 767px) {
  .event__name {
    font-size: 24px;
  }
}

.rikuzyou-camp {
  margin-top: 80px;
}

.camp__contents {
  margin-top: 60px;
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 781px) {
  .camp__contents {
    margin-top: 40px;
  }
}
.camp__contents h3 {
  font-size: 36px;
  border-bottom: 1px solid #013A90;
  color: #013A90;
}
@media (max-width: 767px) {
  .camp__contents h3 {
    font-size: 24px;
  }
}
.camp__contents h4 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .camp__contents h4 {
    font-size: 18px;
  }
}
.camp__contents p {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .camp__contents p {
    margin-top: 15px;
  }
}

.instagram {
  display: block;
  margin-top: 60px;
  margin-bottom: 60px;
}
.instagram h3 {
  display: block;
  margin: 30px 0;
  font-size: 28px;
}
@media (max-width: 767px) {
  .instagram h3 {
    font-size: 24px;
  }
}
.instagram .wp-block-button {
  margin-bottom: 40px;
}
.instagram .wp-block-button .wp-block-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .instagram .wp-block-button .wp-block-button__link {
    font-size: 18px;
  }
}

.event-card-grid {
  max-width: 750px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}

.event-card a {
  text-decoration: none;
  border: 2px solid #013A90;
  border-radius: 10px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .event-card a {
    display: block;
  }
}
.event-card a .event-card__thumb {
  width: 200px;
}
@media (max-width: 767px) {
  .event-card a .event-card__thumb {
    width: 100%;
  }
}
.event-card a .event-card__thumb img {
  width: 100%;
  aspect-ratio: 200/125;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-card a .event-card__title {
  font-size: 20px;
  border-bottom: 2px dotted #013A90;
  margin-bottom: 8px;
}
.event-card a dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  font-size: 15px;
}
.event-card a dl dt {
  width: 60px;
  font-weight: 500;
}
.event-card a dl dd {
  margin: 0;
}

.next-event {
  margin-top: 40px;
  max-width: 750px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #3DADDA;
  background-color: #E5F8FF;
  border-radius: 20px;
  padding: 30px 15px;
}
@media (max-width: 767px) {
  .next-event {
    padding: 20px 15px;
  }
}
.next-event .next-event__text {
  text-align: center;
  line-height: 200%;
  margin: 0;
}
@media (max-width: 767px) {
  .next-event .next-event__text {
    text-align: left;
  }
}

.single__container {
  max-width: 850px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .single__container {
    padding-bottom: 60px;
  }
}

.event__title {
  font-size: 32px;
  border-bottom: 2px dotted #013A90;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .event__title {
    font-size: 24px;
  }
}

.post-parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.post__category {
  background-color: #013A90;
  padding: 3px 20px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 12px;
}

p {
  margin: 20px 0;
}

figure {
  margin: 20px 0;
}

.archive-news__wrap {
  margin: 80px 0;
}
.archive-news__wrap .top-news__list:first-of-type {
  border-top: 1px dashed #959494;
}
.archive-news__wrap .top-news__list:last-of-type {
  border-bottom: 1px dashed #959494;
}
.archive-news__wrap .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  /**ページネーションのCSS**/
}
.archive-news__wrap .pagination .pagination {
  text-align: center;
}
.archive-news__wrap .pagination .pages {
  display: none;
}
.archive-news__wrap .pagination .wp-pagenavi {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.archive-news__wrap .pagination .wp-pagenavi a {
  background-color: #fff;
  color: #3DADDA;
  border-color: #3DADDA;
  padding: 8px 12px !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.archive-news__wrap .pagination .wp-pagenavi a:hover {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-color: #3DADDA !important;
  background-color: #3DADDA;
  color: #fff;
}
.archive-news__wrap .pagination .wp-pagenavi .current {
  border-color: #3DADDA !important;
  background-color: #3DADDA;
  color: #fff;
  padding: 8px 12px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.single-btn a {
  text-decoration: none;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #013A90;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 50px;
  margin-top: 60px;
}

/*************************************************************************************
会員ページパスワード
**************************************************************************************/
.post-password-form {
  padding: 30px 0;
  margin-top: -60px;
}
@media (max-width: 781px) {
  .post-password-form {
    padding: 30px 15px;
  }
}
.post-password-form p {
  text-align: center;
}
@media (max-width: 781px) {
  .post-password-form p {
    text-align: left;
  }
}
.post-password-form label, .post-password-form input {
  margin-top: 20px;
}
.post-password-form label input {
  border: 1px solid #013A90;
  padding: 5px;
}

/*************************************************************************************
会員向け投稿一覧
**************************************************************************************/
.member__title {
  text-align: center;
  color: #013A90;
  font-size: 36px;
}
@media (max-width: 767px) {
  .member__title {
    font-size: 24px;
  }
}

.shortcode-post-list {
  padding-bottom: 100px;
}

.shortcode-post-list__ul {
  max-width: 720px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border-top: 1px dashed #013A90;
}
@media (max-width: 781px) {
  .shortcode-post-list__ul {
    max-width: 500px;
  }
}

.shortcode-post-list__item a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dashed #013A90;
}
@media (max-width: 781px) {
  .shortcode-post-list__item a {
    display: block;
  }
}
.shortcode-post-list__item a .shortcode-post-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.shortcode-post-list__item a .shortcode-post-list__meta .shortcode-post-list__cats {
  white-space: nowrap;
  background-color: #013A90;
  border-radius: 5px;
  color: #ffffff;
  padding: 3px 10px;
  font-size: 12px;
}
.shortcode-post-list__item a .shortcode-post-list__title {
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 1; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
@media (max-width: 781px) {
  .shortcode-post-list__item a .shortcode-post-list__title {
    margin-top: 10px;
  }
}

.shortcode-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.shortcode-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.member-service {
  max-width: 800px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 781px) {
  .member-service {
    max-width: 500px;
  }
}

.member-service__img {
  max-width: 500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.member-service__wrap {
  margin-top: 30px;
}

.member-service__card {
  border: 3px solid #3DADDA;
  border-radius: 20px;
  padding: 20px 15px;
}
.member-service__card h3 {
  color: #013A90;
  font-size: 20px;
}
.member-service__card p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 180%;
  min-height: 150px;
}
@media (max-width: 781px) {
  .member-service__card p {
    min-height: auto;
  }
}
.member-service__card .member-service__btn {
  margin-top: 20px;
}
.member-service__card .member-service__btn .wp-block-button__link {
  background-color: #3DADDA;
  font-size: 15px;
}

/*************************************************************************************
お問い合わせ
**************************************************************************************/
.contact__lead {
  text-align: center;
  line-height: 180%;
}

.contact__wrap {
  max-width: 750px;
  width: 95%;
  margin-right: auto !important;
  margin-left: auto !important;
  border: 3px solid #3DADDA;
  border-radius: 80px;
  margin-top: 40px;
}
@media (max-width: 781px) {
  .contact__wrap {
    border-radius: 40px;
  }
}

.form__wrap {
  max-width: 650px;
  width: 89%;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 0;
}
@media (max-width: 781px) {
  .form__wrap {
    padding: 20px 0;
  }
}
.form__wrap p {
  margin: 0;
}
.form__wrap .form__label {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.form__wrap .form__label .reqired {
  font-size: 10px;
  font-weight: 300;
  color: #ffffff;
  background-color: #3DADDA;
  padding: 1px 5px;
}
.form__wrap .form__radio {
  display: block;
}
.form__wrap .form__radio .wpcf7-list-item {
  display: block;
  margin: 0;
}
.form__wrap .form__input {
  padding: 8px;
  width: 100%;
}
.form__wrap .form__message {
  padding: 8px;
  width: 100%;
  min-height: 250px;
  resize: none;
}
.form__wrap .wpcf7-acceptance {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.form__wrap .form__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #3DADDA;
  color: #ffffff;
  margin-top: 30px;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  display: block;
  width: 250px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

/*************************************************************************************
体験フォームの条件分岐
**************************************************************************************/
.program__choice {
  margin-top: 40px;
  border-bottom: 2px solid #3DADDA;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
}

.program__message {
  padding: 8px;
  width: 100%;
  min-height: 100px;
  resize: none;
}

/*************************************************************************************
バナーブロック
**************************************************************************************/
.bannar-column .banner-row {
  margin: 15px 0;
  gap: 15px;
}
@media (max-width: 767px) {
  .bannar-column .banner-row {
    display: grid !important;
/*     grid-template-columns: repeat(2, 1fr); */
  }
}
.bannar-column .banner-row .wp-block-column figure {
  width: 100%;
  margin: 0;
}

@media (max-width: 767px) {
  .bannar-column .banner-row .wp-block-column figure {
    font-size: 12px;
  }
}
.bannar-column .banner-row .wp-block-column figure img {
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}