@charset "UTF-8";
/*==================================
* Base Typography - body
* サイト全体のベーステキスト設定
* フォント、サイズ、行間、字間を整える
==================================*/
body {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/*==================================
* Animation Mixin
==================================*/
/*==================================
* Pseudo Element Mixin
* 疑似要素（::before / ::after）用の共通スタイルをまとめる
* 使用例:
* @include pseudo-element(before, $top: 0, $left: 0) { ... }
==================================*/
/*==================================
* Color Variables
* 色に関する基本変数定義
* 命名形式: $color-[用途]
==================================*/
/*==================================
* Media Query Breakpoints
* ブレークポイント一覧
* 画面サイズやレイアウト切り替えに使用
==================================*/
/*==================================
* Flex Utilities
* フレックスボックス + ブレークポイント切替
==================================*/
.u-flex--md, .p-sponsor, .c-price-01__list__inner, .l-footer__contact, .l-footer__banner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .u-flex--md, .p-sponsor, .c-price-01__list__inner, .l-footer__contact, .l-footer__banner {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.u-flex--lr, .c-staff-list__item, .l-footer__content-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 820px) {
  .u-flex--lr, .c-staff-list__item, .l-footer__content-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.u-flex--lg, .p-greeting__inner, .p-club-info__inner, .p-camp-event__inner, .c-store-info__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .u-flex--lg, .p-greeting__inner, .p-club-info__inner, .p-camp-event__inner, .c-store-info__inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/*==================================
* font-size
==================================*/
.u-font-size--sm, .c-price-01__list__value p, .c-price-01__list__remarks p, .c-post-links__all a, .c-breadcrumb, .copyright, .l-header__li > a {
  font-size: clamp(14px, 1.8vw, 16px);
}

.u-font-size--md, .p-privacy-content h3, .c-price-01__list__label h6, .c-store-info__way {
  font-size: clamp(16px, 2.5vw, 19px);
}

.u-font-size--lr {
  font-size: clamp(20px, 3vw, 28px);
}

.u-font-size--lg {
  font-size: clamp(23px, 3.5vw, 36px);
}

.u-font-size--xl {
  font-size: clamp(25px, 4vw, 40px);
}

.u-text-bg-01 {
  background-image: url("../images/text-bg-01.jpg");
  background-position: center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-text-bg-02 {
  background-image: url("../images/text-bg-02.jpg");
  background-position: center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*==================================
* Padding Bottom
==================================*/
.u-pb--sm {
  padding-bottom: 16px !important;
}

.u-pb--md, .c-store-info__inner {
  padding-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--md, .c-store-info__inner {
    padding-bottom: 60px !important;
  }
}

.u-pb--lr {
  padding-bottom: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--lr {
    padding-bottom: 100px !important;
  }
}

.u-pb--lg, .p-news-article, .p-single-page-nav, .c-price-01, .l-section {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--lg, .p-news-article, .p-single-page-nav, .c-price-01, .l-section {
    padding-bottom: 120px !important;
  }
}

/*==================================
* Padding Top
==================================*/
.u-pt--md, .l-footer__content {
  padding-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-pt--md, .l-footer__content {
    padding-top: 60px !important;
  }
}

.u-pt--lr, .l-footer__banner {
  padding-top: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-pt--lr, .l-footer__banner {
    padding-top: 100px !important;
  }
}

.u-pt--lg, .l-section {
  padding-top: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-pt--lg, .l-section {
    padding-top: 120px !important;
  }
}

/*==================================
* Margin Bottom
==================================*/
.u-mb--sm, .p-archive-list, .p-privacy-content h3, .p-contact-message h3, .c-wp-pagenavi {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--sm, .p-archive-list, .p-privacy-content h3, .p-contact-message h3, .c-wp-pagenavi {
    margin-bottom: 25px !important;
  }
}

.u-mb--md, .p-single-page-nav__button, .p-privacy-content .privacy-block, .p-contact-form-02__note, .c-price-01__container, .c-post-links {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--md, .p-single-page-nav__button, .p-privacy-content .privacy-block, .p-contact-form-02__note, .c-price-01__container, .c-post-links {
    margin-bottom: 60px !important;
  }
}

.u-mb--lr, .p-facilities__not-content h3, .p-contact-thanks h2, .p-contact-404 h2, .c-staff-list__item {
  margin-bottom: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--lr, .p-facilities__not-content h3, .p-contact-thanks h2, .p-contact-404 h2, .c-staff-list__item {
    margin-bottom: 100px !important;
  }
}

.u-mb--lg {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--lg {
    margin-bottom: 120px !important;
  }
}

/*==================================
* Margin Top
==================================*/
.u-mt--sm, .c-staff-list__desc {
  margin-top: 16px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--sm, .c-staff-list__desc {
    margin-top: 25px !important;
  }
}

.u-mt--md, .wp-pagenavi, .p-contact-form-02__note, .c-wp-pagenavi {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--md, .wp-pagenavi, .p-contact-form-02__note, .c-wp-pagenavi {
    margin-top: 60px !important;
  }
}

.u-mt--lr, .p-contact-thanks, .p-contact-thanks__btn, .p-contact-404, .p-contact-404__btn, .c-news-content__button {
  margin-top: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--lr, .p-contact-thanks, .p-contact-thanks__btn, .p-contact-404, .p-contact-404__btn, .c-news-content__button {
    margin-top: 100px !important;
  }
}

.u-mt--lg {
  margin-top: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--lg {
    margin-top: 120px !important;
  }
}

/*==================================
* Content Width Utility
==================================*/
.u-content-width, .p-online-store__inner, .p-camp-event__inner, .p-archive-list, .p-news-list, .c-store-info__inner, .l-section__container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

/*==================================
* Reset Spacing Utilities
==================================*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

/*==================================
* Display Utilities
* 表示/非表示制御
==================================*/
.u-show-sm {
  display: none;
}
@media screen and (min-width: 480px) {
  .u-show-sm {
    display: block;
  }
}

.u-show-md {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-show-md {
    display: block;
  }
}

.u-show-lr {
  display: none;
}
@media screen and (min-width: 820px) {
  .u-show-lr {
    display: block;
  }
}

.u-show-lg {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-show-lg {
    display: block;
  }
}

.u-hidden-md {
  display: block;
}
@media screen and (min-width: 600px) {
  .u-hidden-md {
    display: none;
  }
}

.u-hidden-lr {
  display: block;
}
@media screen and (min-width: 820px) {
  .u-hidden-lr {
    display: none;
  }
}

.u-hidden-lg {
  display: block;
}
@media screen and (min-width: 960px) {
  .u-hidden-lg {
    display: none;
  }
}

.u-hidden-xl {
  display: block;
}
@media screen and (min-width: 1280px) {
  .u-hidden-xl {
    display: none;
  }
}

/*==================================
* Appear Animation Utilities
* 要素のスクロール出現アニメーション制御
* .u-appear に .inview クラスを付与すると
* .u-appear__item がアニメーションで表示される
* .u-appear--[direction] を併用して方向指定可能
* direction: up / down / left / right
==================================*/
/* アニメーション方向別：モディファイア形式で展開 */
.u-appear--up .u-appear__item {
  transform: translateY(20px);
}

.u-appear--down .u-appear__item {
  transform: translateY(-10px);
}

.u-appear--left .u-appear__item {
  transform: translateX(40px);
}

.u-appear--right .u-appear__item {
  transform: translateX(-40px);
}

/* ベーススタイル（共通） */
.u-appear__item {
  transition: all 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
}
.u-appear .inview .u-appear__item {
  opacity: 1;
  transform: none;
}
.u-appear .inview .u-appear__item:nth-child(1) {
  transition-delay: 0.1s;
}
.u-appear .inview .u-appear__item:nth-child(2) {
  transition-delay: 0.2s;
}
.u-appear .inview .u-appear__item:nth-child(3) {
  transition-delay: 0.3s;
}
.u-appear .inview .u-appear__item:nth-child(4) {
  transition-delay: 0.4s;
}
.u-appear .inview .u-appear__item:nth-child(5) {
  transition-delay: 0.5s;
}
.u-appear .inview .u-appear__item:nth-child(6) {
  transition-delay: 0.6s;
}
.u-appear .inview .u-appear__item:nth-child(7) {
  transition-delay: 0.7s;
}
.u-appear .inview .u-appear__item:nth-child(8) {
  transition-delay: 0.8s;
}
.u-appear .inview .u-appear__item:nth-child(9) {
  transition-delay: 0.9s;
}
.u-appear .inview .u-appear__item:nth-child(10) {
  transition-delay: 1s;
}

/*==================================
* Fade Animation Utilities
* スクロール時に要素を段階的に表示するアニメーション
*
* 使用方法:
* ・アニメーションさせたい要素に以下のクラスを付与
*     .u-fade-in         // フェードイン（移動なし）
*     .u-fade-up         // 下から上へ
*     .u-fade-down       // 上から下へ
*     .u-fade-left       // 右から左へ
*     .u-fade-right      // 左から右へ
*
* ・親または任意のタイミングで .is-inview を追加
*     → .is-inview が付与された瞬間にアニメーション開始
*     → 各要素は nth-child に応じて遅延表示される
*
* 例:
* <ul class="c-list is-inview">
*     <li class="c-list__item u-fade-up">アイテム1</li>
*     <li class="c-list__item u-fade-up">アイテム2</li>
*     <li class="c-list__item u-fade-up">アイテム3</li>
* </ul>
*
* 備考:
* アニメーション時間や方向はSCSS変数で調整可能。
* .is-inview クラスはJSでスクロール検出時に付与。
==================================*/
/* ベース：初期非表示 */
.u-fade-in,
.u-fade-up,
.u-fade-down,
.u-fade-left,
.u-fade-right {
  opacity: 0;
}

/* 各方向の transform 初期値 */
.u-fade-in {
  transform: none;
}

.u-fade-up {
  transform: translateY(100px);
}

.u-fade-down {
  transform: translateY(-100px);
}

.u-fade-left {
  transform: translateX(-100px);
}

.u-fade-right {
  transform: translateX(100px);
}

/* アニメーション定義 */
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* .is-inview + nth-child で段階表示 */
.is-inview .u-fade-in:nth-child(1),
.is-inview .u-fade-up:nth-child(1),
.is-inview .u-fade-down:nth-child(1),
.is-inview .u-fade-left:nth-child(1),
.is-inview .u-fade-right:nth-child(1) {
  animation-delay: 0.3s;
}

.is-inview .u-fade-in:nth-child(2),
.is-inview .u-fade-up:nth-child(2),
.is-inview .u-fade-down:nth-child(2),
.is-inview .u-fade-left:nth-child(2),
.is-inview .u-fade-right:nth-child(2) {
  animation-delay: 0.6s;
}

.is-inview .u-fade-in:nth-child(3),
.is-inview .u-fade-up:nth-child(3),
.is-inview .u-fade-down:nth-child(3),
.is-inview .u-fade-left:nth-child(3),
.is-inview .u-fade-right:nth-child(3) {
  animation-delay: 0.9s;
}

.is-inview .u-fade-in:nth-child(4),
.is-inview .u-fade-up:nth-child(4),
.is-inview .u-fade-down:nth-child(4),
.is-inview .u-fade-left:nth-child(4),
.is-inview .u-fade-right:nth-child(4) {
  animation-delay: 1.2s;
}

.is-inview .u-fade-in:nth-child(5),
.is-inview .u-fade-up:nth-child(5),
.is-inview .u-fade-down:nth-child(5),
.is-inview .u-fade-left:nth-child(5),
.is-inview .u-fade-right:nth-child(5) {
  animation-delay: 1.5s;
}

.is-inview .u-fade-in:nth-child(6),
.is-inview .u-fade-up:nth-child(6),
.is-inview .u-fade-down:nth-child(6),
.is-inview .u-fade-left:nth-child(6),
.is-inview .u-fade-right:nth-child(6) {
  animation-delay: 1.8s;
}

.is-inview .u-fade-in:nth-child(7),
.is-inview .u-fade-up:nth-child(7),
.is-inview .u-fade-down:nth-child(7),
.is-inview .u-fade-left:nth-child(7),
.is-inview .u-fade-right:nth-child(7) {
  animation-delay: 2.1s;
}

.is-inview .u-fade-in:nth-child(8),
.is-inview .u-fade-up:nth-child(8),
.is-inview .u-fade-down:nth-child(8),
.is-inview .u-fade-left:nth-child(8),
.is-inview .u-fade-right:nth-child(8) {
  animation-delay: 2.4s;
}

.is-inview .u-fade-in:nth-child(9),
.is-inview .u-fade-up:nth-child(9),
.is-inview .u-fade-down:nth-child(9),
.is-inview .u-fade-left:nth-child(9),
.is-inview .u-fade-right:nth-child(9) {
  animation-delay: 2.7s;
}

.is-inview .u-fade-in:nth-child(10),
.is-inview .u-fade-up:nth-child(10),
.is-inview .u-fade-down:nth-child(10),
.is-inview .u-fade-left:nth-child(10),
.is-inview .u-fade-right:nth-child(10) {
  animation-delay: 3s;
}

.is-inview .u-fade-in:nth-child(11),
.is-inview .u-fade-up:nth-child(11),
.is-inview .u-fade-down:nth-child(11),
.is-inview .u-fade-left:nth-child(11),
.is-inview .u-fade-right:nth-child(11) {
  animation-delay: 3.3s;
}

.is-inview .u-fade-in:nth-child(12),
.is-inview .u-fade-up:nth-child(12),
.is-inview .u-fade-down:nth-child(12),
.is-inview .u-fade-left:nth-child(12),
.is-inview .u-fade-right:nth-child(12) {
  animation-delay: 3.6s;
}

.is-inview .u-fade-in:nth-child(13),
.is-inview .u-fade-up:nth-child(13),
.is-inview .u-fade-down:nth-child(13),
.is-inview .u-fade-left:nth-child(13),
.is-inview .u-fade-right:nth-child(13) {
  animation-delay: 3.9s;
}

.is-inview .u-fade-in:nth-child(14),
.is-inview .u-fade-up:nth-child(14),
.is-inview .u-fade-down:nth-child(14),
.is-inview .u-fade-left:nth-child(14),
.is-inview .u-fade-right:nth-child(14) {
  animation-delay: 4.2s;
}

.is-inview .u-fade-in:nth-child(15),
.is-inview .u-fade-up:nth-child(15),
.is-inview .u-fade-down:nth-child(15),
.is-inview .u-fade-left:nth-child(15),
.is-inview .u-fade-right:nth-child(15) {
  animation-delay: 4.5s;
}

.is-inview .u-fade-in:nth-child(16),
.is-inview .u-fade-up:nth-child(16),
.is-inview .u-fade-down:nth-child(16),
.is-inview .u-fade-left:nth-child(16),
.is-inview .u-fade-right:nth-child(16) {
  animation-delay: 4.8s;
}

.is-inview .u-fade-in:nth-child(17),
.is-inview .u-fade-up:nth-child(17),
.is-inview .u-fade-down:nth-child(17),
.is-inview .u-fade-left:nth-child(17),
.is-inview .u-fade-right:nth-child(17) {
  animation-delay: 5.1s;
}

.is-inview .u-fade-in:nth-child(18),
.is-inview .u-fade-up:nth-child(18),
.is-inview .u-fade-down:nth-child(18),
.is-inview .u-fade-left:nth-child(18),
.is-inview .u-fade-right:nth-child(18) {
  animation-delay: 5.4s;
}

.is-inview .u-fade-in:nth-child(19),
.is-inview .u-fade-up:nth-child(19),
.is-inview .u-fade-down:nth-child(19),
.is-inview .u-fade-left:nth-child(19),
.is-inview .u-fade-right:nth-child(19) {
  animation-delay: 5.7s;
}

.is-inview .u-fade-in:nth-child(20),
.is-inview .u-fade-up:nth-child(20),
.is-inview .u-fade-down:nth-child(20),
.is-inview .u-fade-left:nth-child(20),
.is-inview .u-fade-right:nth-child(20) {
  animation-delay: 6s;
}

.is-inview .u-fade-in:nth-child(21),
.is-inview .u-fade-up:nth-child(21),
.is-inview .u-fade-down:nth-child(21),
.is-inview .u-fade-left:nth-child(21),
.is-inview .u-fade-right:nth-child(21) {
  animation-delay: 6.3s;
}

.is-inview .u-fade-in:nth-child(22),
.is-inview .u-fade-up:nth-child(22),
.is-inview .u-fade-down:nth-child(22),
.is-inview .u-fade-left:nth-child(22),
.is-inview .u-fade-right:nth-child(22) {
  animation-delay: 6.6s;
}

.is-inview .u-fade-in:nth-child(23),
.is-inview .u-fade-up:nth-child(23),
.is-inview .u-fade-down:nth-child(23),
.is-inview .u-fade-left:nth-child(23),
.is-inview .u-fade-right:nth-child(23) {
  animation-delay: 6.9s;
}

.is-inview .u-fade-in:nth-child(24),
.is-inview .u-fade-up:nth-child(24),
.is-inview .u-fade-down:nth-child(24),
.is-inview .u-fade-left:nth-child(24),
.is-inview .u-fade-right:nth-child(24) {
  animation-delay: 7.2s;
}

.is-inview .u-fade-in:nth-child(25),
.is-inview .u-fade-up:nth-child(25),
.is-inview .u-fade-down:nth-child(25),
.is-inview .u-fade-left:nth-child(25),
.is-inview .u-fade-right:nth-child(25) {
  animation-delay: 7.5s;
}

.is-inview .u-fade-in:nth-child(26),
.is-inview .u-fade-up:nth-child(26),
.is-inview .u-fade-down:nth-child(26),
.is-inview .u-fade-left:nth-child(26),
.is-inview .u-fade-right:nth-child(26) {
  animation-delay: 7.8s;
}

.is-inview .u-fade-in:nth-child(27),
.is-inview .u-fade-up:nth-child(27),
.is-inview .u-fade-down:nth-child(27),
.is-inview .u-fade-left:nth-child(27),
.is-inview .u-fade-right:nth-child(27) {
  animation-delay: 8.1s;
}

.is-inview .u-fade-in:nth-child(28),
.is-inview .u-fade-up:nth-child(28),
.is-inview .u-fade-down:nth-child(28),
.is-inview .u-fade-left:nth-child(28),
.is-inview .u-fade-right:nth-child(28) {
  animation-delay: 8.4s;
}

.is-inview .u-fade-in:nth-child(29),
.is-inview .u-fade-up:nth-child(29),
.is-inview .u-fade-down:nth-child(29),
.is-inview .u-fade-left:nth-child(29),
.is-inview .u-fade-right:nth-child(29) {
  animation-delay: 8.7s;
}

.is-inview .u-fade-in:nth-child(30),
.is-inview .u-fade-up:nth-child(30),
.is-inview .u-fade-down:nth-child(30),
.is-inview .u-fade-left:nth-child(30),
.is-inview .u-fade-right:nth-child(30) {
  animation-delay: 9s;
}

.is-inview .u-fade-in {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-fade-up {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-fade-down {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-fade-left {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-fade-right {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

/*==================================
* ぱたっと
==================================*/
.u-flip {
  transform: translate3d(0, 0, 0);
}

/* 共通：初期状態 */
.u-flip-down,
.u-flip-left,
.u-flip-left-top,
.u-flip-right,
.u-flip-right-top {
  opacity: 0;
}

/* 各初期 transform 状態 */
.u-flip-down {
  transform: perspective(2500px) rotateX(100deg);
}

.u-flip-left {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  perspective-origin: left center;
}

.u-flip-left-top {
  transform: translate(-20px, 80px) rotate(-15deg);
}

.u-flip-right {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
  perspective-origin: right center;
}

.u-flip-right-top {
  transform: translate(-20px, 80px) rotate(25deg);
}

/* is-inview時のアニメーション */
.is-inview .u-flip-down {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-flip-left {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-flip-left-top {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-flip-right {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-flip-right-top {
  animation-name: flipRightTopAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

/* キーフレーム定義 */
@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipRightTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 1px) rotate(0deg);
    opacity: 1;
  }
}
/* 初期状態（共通） */
.u-rotate-x,
.u-rotate-y,
.u-rotate-left-z,
.u-rotate-right-z {
  opacity: 0;
}

/* 表示時にアニメーションを付与 */
.is-inview .u-rotate-x {
  opacity: 1;
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-rotate-y {
  opacity: 1;
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-rotate-left-z {
  opacity: 1;
  animation-name: rotateLeftZAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.is-inview .u-rotate-right-z {
  opacity: 1;
  animation-name: rotateRightZAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

/* キーフレーム定義 */
@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
  }
  to {
    transform: rotateX(-360deg);
  }
}
@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(-360deg);
  }
}
@keyframes rotateLeftZAnime {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(-360deg);
  }
}
@keyframes rotateRightZAnime {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(360deg);
  }
}
/*==================================================
拡大アニメーション：zoomIn
==================================================*/
.u-zoom-in {
  transform: scale(0.6);
}

.is-inview .u-zoom-in {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}
/*==================================================
縮小アニメーション：zoomOut
==================================================*/
.u-zoom-out {
  transform: scale(1.2);
}

.is-inview .u-zoom-out {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
/*==================================================
ぼかしアニメーション：blur
==================================================*/
.u-blur-anime {
  filter: blur(10px);
  transform: scale(1.02);
}

.is-inview .u-blur-anime {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
/*==================================================
スムースアニメーション：smooth
==================================================*/
.u-smooth {
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  opacity: 0;
}

.is-inview .u-smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* ==================================================
* 枠線が伸びて現れるアニメーション定義
*
* `.u-line`, `.u-line2` によって上下左右に線を描画し、
* 順を追ってアニメーション表示されます。
*
* 使用例：
* <div class="u-line">
*   <div class="u-line2">
*       <div class="u-lineinappear">枠線が伸びて出現</div>
*   </div>
*</div>
*
* アニメーション内容：
* - 上 → 右 → 下 → 左 の順に線が描画される
* - 最後に内側の要素がフェードイン
*
*主に注目させたい文章やテキストに使用する
================================================== */
.u-line {
  position: relative;
}

.is-inview .u-line::before,
.is-inview .u-line::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #eee;
}

.is-inview .u-line2::before,
.is-inview .u-line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333;
}

.is-inview .u-line::before {
  top: 0;
  left: 0;
  animation: lineAnime 0.5s linear 0s forwards;
}

.is-inview .u-line2::before {
  top: 0;
  right: 0;
  animation: lineAnime2 0.5s linear 0.5s forwards;
}

.is-inview .u-line::after {
  bottom: 0;
  right: 0;
  animation: lineAnime 0.5s linear 1s forwards;
}

.is-inview .u-line2::after {
  bottom: 0;
  left: 0;
  animation: lineAnime2 0.5s linear 1.5s forwards;
}

.is-inview .u-line .u-lineinappear {
  animation: lineInnerAnime 0.5s linear 1.5s forwards;
  opacity: 0;
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
 * 背景色がスライドして現れるアニメーション定義
 *
 * `.u-bgextend` を基点に、`:before` 疑似要素で
 * 背景色がスライドしながら表示される演出を行います。
 *
 * `.u-bgextend--lr`（左→右）  
 * `.u-bgextend--rl`（右→左）  
 * `.u-bgextend--du`（下→上）  
 * `.u-bgextend--ud`（上→下）
 * 方向は上記のモディファイアで制御。
 *
 * `.u-bgextend__content` を中に配置することで、
 * 背景アニメーション後に遅れてコンテンツが表示されます。
 *
 * 使用例：
 * <div class="u-bgextend u-bgextend--lr">
 *   <div class="u-bgextend__content">テキスト</div>
 * </div>
 ================================================== */
.is-inview .u-bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.is-inview .u-bgextend__content {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.is-inview .u-bgextend--lr::before, .is-inview .u-bgextend--rl::before, .is-inview .u-bgextend--du::before, .is-inview .u-bgextend--ud::before {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 111, 180, 0.8);
}
.is-inview .u-bgextend--lr::before {
  animation-name: bgLRextendAnime;
}
.is-inview .u-bgextend--rl::before {
  animation-name: bgRLextendAnime;
}
.is-inview .u-bgextend--du::before {
  animation-name: bgDUextendAnime;
}
.is-inview .u-bgextend--ud::before {
  animation-name: bgUDextendAnime;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/*==================================================
順番にふわっと表示されるアニメーション（stagger）

要素に `fadeUp` クラスを付けると、下からふわっと表示されるアニメーションが適用されます。
さらに `.delay-timeXX` クラスを併用することで、順番にずらして表示することができます。

使用例：
<div class="u-stagger-fade-up">即時表示</div>
<div class="u-stagger-fade-up u-stagger__delay-time--02">0.2秒後に表示</div>
<div class="u-stagger-fade-up u-stagger__delay-time--04">0.4秒後に表示</div>

このファイルでは、アニメーションの定義および `delay-timeXX` ユーティリティクラスをまとめています。
==================================================*/
/* 初期状態（共通） */
.u-stagger__fade-up {
  opacity: 0;
  transform: translateY(100px);
}

/* inview時にアニメーション適用 */
.is-inview .u-stagger__fade-up {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

/* 遅延クラス（必要に応じて） */
.u-stagger__delay-time--02 {
  animation-delay: 0.2s;
}

.u-stagger__delay-time--04 {
  animation-delay: 0.4s;
}

/* キーフレーム */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.u-action-zoom-in {
  display: block;
}
.u-action-zoom-in__mask {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.u-action-zoom-in__mask img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.u-action-zoom-in__mask:hover img {
  transform: scale(1.2);
}

.u-action-zoom-out {
  display: block;
}
.u-action-zoom-out__mask {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.u-action-zoom-out__mask img {
  width: 100%;
  height: auto;
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}
.u-action-zoom-out__mask:hover img {
  transform: scale(1);
}

.u-action-zoom-rotate {
  display: block;
}
.u-action-zoom-rotate__mask {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.u-action-zoom-rotate__mask img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.u-action-zoom-rotate__mask:hover img {
  transform: rotate(5deg) scale(1.2);
}

.u-blur-action {
  display: block;
}
.u-blur-action__mask {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.u-blur-action__mask img {
  width: 100%;
  height: auto;
  filter: none;
  transition: filter 0.3s ease-in-out;
}
.u-blur-action__mask:hover img {
  filter: blur(3px);
}

.u-opacity-action {
  display: block;
}
.u-opacity-action a:hover img {
  opacity: 0.8;
}
.u-opacity-action img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.u-grayscale-action {
  display: block;
}
.u-grayscale-action a:hover img {
  filter: grayscale(0);
}
.u-grayscale-action img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.u-sepia-action {
  display: block;
}
.u-sepia-action a:hover img {
  filter: sepia(0);
}
.u-sepia-action img {
  display: block;
  width: 100%;
  height: auto;
  filter: sepia(100%);
  transition: filter 0.3s ease-in-out;
}

.u-shine-action {
  display: block;
}
.u-shine-action__mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.u-shine-action__mask::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: -75%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.u-shine-action__mask:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.u-circle-action {
  display: block;
}
.u-circle-action__mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.u-circle-action__mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  opacity: 0;
}
.u-circle-action__mask:hover::before {
  animation: circle 0.75s;
}

@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.u-bg-slide-text {
  position: relative;
}
.u-bg-slide-text__mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.u-bg-slide-text__mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.u-bg-slide-text__mask img {
  width: 100%;
  height: auto;
  display: block;
}
.u-bg-slide-text__cap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  transition: 0.5s ease-in-out;
  text-align: center;
}
.u-bg-slide-text:hover .u-bg-slide-text__cap {
  opacity: 1;
}
.u-bg-slide-text--up .u-bg-slide-text__mask::before {
  transform: translateY(100%);
}
.u-bg-slide-text--down .u-bg-slide-text__mask::before {
  transform: translateY(-100%);
}
.u-bg-slide-text--left .u-bg-slide-text__mask::before {
  transform: translateX(-100%);
}
.u-bg-slide-text--right .u-bg-slide-text__mask::before {
  transform: translateX(100%);
}
.u-bg-slide-text--up:hover .u-bg-slide-text__mask::before, .u-bg-slide-text--down:hover .u-bg-slide-text__mask::before, .u-bg-slide-text--left:hover .u-bg-slide-text__mask::before, .u-bg-slide-text--right:hover .u-bg-slide-text__mask::before {
  opacity: 1;
  transform: translate(0, 0);
}

.u-bg-expand-text {
  position: relative;
}
.u-bg-expand-text__mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.u-bg-expand-text__mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
}
.u-bg-expand-text__mask img {
  width: 100%;
  height: auto;
  display: block;
}
.u-bg-expand-text__cap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  transition: 0.5s ease-in-out;
  text-align: center;
}
.u-bg-expand-text:hover .u-bg-expand-text__cap {
  opacity: 1;
}
.u-bg-expand-text--vertical .u-bg-expand-text__mask::before {
  transform: scale(1, 0);
}
.u-bg-expand-text--vertical:hover .u-bg-expand-text__mask::before {
  transform: scale(1, 1);
}
.u-bg-expand-text--horizontal .u-bg-expand-text__mask::before {
  transform: scale(0, 1);
}
.u-bg-expand-text--horizontal:hover .u-bg-expand-text__mask::before {
  transform: scale(1, 1);
}

.u-flip-text a {
  position: relative;
  display: block;
}
.u-flip-text img {
  transition: all 0.35s ease;
  backface-visibility: hidden;
  width: 100%;
  height: auto;
}
.u-flip-text__cap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.35s ease;
}
.u-flip-text--x a:hover img {
  transform: rotateX(-180deg);
  opacity: 0;
}
.u-flip-text--x .u-flip-text__cap {
  transform: rotateX(90deg);
  transform-origin: 0% 50%;
}
.u-flip-text--x a:hover .u-flip-text__cap {
  transform: rotateX(0);
  opacity: 1;
  transition-delay: 0.15s;
}
.u-flip-text--y a:hover img {
  transform: rotateY(-180deg);
  opacity: 0;
}
.u-flip-text--y .u-flip-text__cap {
  transform: rotateY(90deg);
  transform-origin: 50% 0%;
}
.u-flip-text--y a:hover .u-flip-text__cap {
  transform: rotateY(0);
  opacity: 1;
  transition-delay: 0.15s;
}

.u-twist-text a {
  position: relative;
  display: block;
}
.u-twist-text img {
  transition: all 0.35s ease;
  backface-visibility: hidden;
  width: 100%;
  height: auto;
}
.u-twist-text__cap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.35s ease;
}
.u-twist-text--inward a:hover img {
  transform: rotate3d(-1, 1, 0, 100deg);
  opacity: 0;
}
.u-twist-text--inward .u-twist-text__cap {
  transform: rotate3d(1, -1, 0, 100deg);
}
.u-twist-text--inward a:hover .u-twist-text__cap {
  transform: rotate3d(0, 0, 0, 0deg);
  opacity: 1;
  transition-delay: 0.15s;
}
.u-twist-text--outward a:hover img {
  transform: rotate3d(-1, -1, 0, 100deg);
  opacity: 0;
}
.u-twist-text--outward .u-twist-text__cap {
  transform: rotate3d(1, 1, 0, 100deg);
}
.u-twist-text--outward a:hover .u-twist-text__cap {
  transform: rotate3d(0, 0, 0, 0deg);
  opacity: 1;
  transition-delay: 0.15s;
}

.u-action-zoom-text {
  position: relative;
}
.u-action-zoom-text__mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.u-action-zoom-text__mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.u-action-zoom-text img {
  transition: 0.3s ease-in-out;
  filter: blur(0);
}
.u-action-zoom-text__cap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.u-action-zoom-text:hover .u-action-zoom-text__mask::before {
  opacity: 1;
}
.u-action-zoom-text:hover .u-action-zoom-text__cap {
  opacity: 1;
}
.u-action-zoom-text--in:hover img {
  transform: scale(1.2);
  filter: blur(2px);
}
.u-action-zoom-text--out img {
  transform: scale(1.2);
}
.u-action-zoom-text--out:hover img {
  transform: scale(1);
  filter: blur(2px);
}

.u-opacity-gradient-text {
  position: relative;
}
.u-opacity-gradient-text__mask {
  position: relative;
  display: block;
  line-height: 0;
}
.u-opacity-gradient-text__mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(88, 182, 211, 0.6), rgba(229, 93, 135, 0.6));
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.u-opacity-gradient-text img {
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.u-opacity-gradient-text__cap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.u-opacity-gradient-text:hover img {
  opacity: 0.6;
}
.u-opacity-gradient-text:hover .u-opacity-gradient-text__mask::before {
  opacity: 1;
}
.u-opacity-gradient-text:hover .u-opacity-gradient-text__cap {
  opacity: 1;
}

.u-border-text {
  position: relative;
}
.u-border-text__mask {
  position: relative;
  display: block;
  line-height: 0;
  height: 100%;
  width: 100%;
}
.u-border-text__mask::before, .u-border-text__mask::after {
  content: "";
  position: absolute;
  top: 4%;
  right: 2.5%;
  bottom: 4%;
  left: 2.5%;
  z-index: 3;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.u-border-text__mask::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: scale(0, 1);
}
.u-border-text__mask::after {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale(1, 0);
}
.u-border-text img {
  display: block;
  width: 100%;
  height: auto;
}
.u-border-text__cap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.u-border-text:hover .u-border-text__mask::before, .u-border-text:hover .u-border-text__mask::after {
  opacity: 1;
  transform: scale(1);
}
.u-border-text:hover .u-border-text__cap {
  opacity: 1;
}

/*==================================
ランダムにテキスト出現する
===================================*/
.u-text-random-anime span {
  opacity: 0;
}

.is-inview .u-text-random-anime span {
  animation: text_randomanime_on 0.5s ease-out forwards;
}

@keyframes text_randomanime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.is-inview .u-text-random-anime span:nth-child(2n) {
  animation-delay: 0.5s;
}

.is-inview .u-text-random-anime span:nth-child(3n+1) {
  animation-delay: 0.15s;
}

/*==================================
 流れるテキスト
===================================*/
.u-slide-in {
  overflow: hidden;
  display: inline-block;
}
.u-slide-in__inner {
  display: inline-block;
}

/*左右のアニメーション*/
.u-left-anime,
.u-right-anime,
.u-up-anime,
.u-down-anime {
  opacity: 0;
}

.is-inview .js-slide-anime-left-right {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-inview .js-slide-anime-down-up {
  animation-name: slideTextY100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextY100 {
  from {
    transform: translateY(100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.is-inview .js-slide-anime-right-left {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-inview .js-slide-anime-up-down {
  animation-name: slideTextY-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*==================================
 くるくる回るテキスト
===================================*/
.u-roll-text--active .u-roll-text__char {
  transition-property: opacity, transform;
  transform: rotateY(360deg);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.u-roll-text__char {
  display: inline-block;
}

/*==================================
 ブラーテキスト
===================================*/
.u-blur-text {
  opacity: 0;
}

.u-blur-text--active {
  animation-name: uBlurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes uBlurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/*==================================
 タイピングーテキスト
===================================*/
.u-text-typing__char {
  display: none;
}

/* タイピングカーソル */
.u-text-typing::after {
  content: "|";
  animation: uTypingAnime 0.8s ease infinite;
}

@keyframes uTypingAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*==================================
 1文字ずつ出現テキスト
===================================*/
.u-each-text__char {
  opacity: 0;
}

.u-each-text.u-each-text--appear .u-each-text__char {
  animation: uTextAnimeOn 1s ease-out forwards;
}

@keyframes uTextAnimeOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================
背景色が伸びて出現
===================================*/
.u-bg-extend {
  animation-name: uBgExtendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes uBgExtendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 子要素フェードイン */
.u-bg-appear {
  animation-name: uBgExtendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes uBgExtendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 左から右伸びる背景アニメーション */
.u-bg-extend--lr::before {
  animation-name: uBgLrExtendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
}

@keyframes uBgLrExtendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* 右から左伸びる背景アニメーション */
.u-bg-extend--rl::before {
  animation-name: uBgRlExtendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
}

@keyframes uBgRlExtendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
.u-bg-extend--tb::before,
.u-bg-extend--bt::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/* 上から下 */
.u-bg-extend--tb::before {
  transform-origin: top;
  transform: scaleY(0);
  animation-name: uBgTbExtendAnime;
}

@keyframes uBgTbExtendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* 下から上 */
.u-bg-extend--bt::before {
  transform-origin: bottom;
  transform: scaleY(0);
  animation-name: uBgBtExtendAnime;
}

@keyframes uBgBtExtendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/* トリガークラス初期状態は透明に */
.js-bg-appear-trigger,
.js-bg-extend-trigger {
  opacity: 0;
}

/*==================================
 ほのかに光るテキスト
===================================*/
.u-glow-text__char {
  opacity: 0;
}

/* アニメーションで透過を0から1に変化させtext-shadowをつける */
.u-glow-text.u-glow-text--glow .u-glow-text__char {
  animation: cGlowTextOn 1s ease-out forwards;
}

@keyframes cGlowTextOn {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
/* ==========================================================================
   流体シェイプアニメーションユーティリティ
   ========================================================================= */
/**
 * .u-fluid-shape
 * 装飾目的のアニメーション要素に使用。
 * 幅と高さを設定し、背景色とアニメーションを適用。
 * 
 *  シェイプ作成サイト
 *  https://9elements.github.io/fancy-border-radius/
 */
.u-fluid-shape {
  animation-name: fluidrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  overflow: hidden;
}
.u-fluid-shape img {
  width: 100%;
}

@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: transparent;
  z-index: 2000;
  background-color: #343a40;
  transition: 0.3s;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header {
    background-color: transparent;
  }
}
@media screen and (min-width: 1280px) {
  .l-header.triggered {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0 28px -3px rgba(102, 102, 102, 0.5);
  }
}
.l-header__inner {
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.l-header__nav {
  text-align: center;
  display: none;
}
@media screen and (min-width: 1280px) {
  .l-header__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__ul {
  height: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
}
.l-header__li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.l-header__li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1px solid #fff;
  height: 10px;
}
.l-header__li:last-child > a {
  transition: 0.3s;
  padding: 10px 12px;
  background-color: #DE0715;
  color: #fff;
  border-radius: 50px;
}
.l-header__li:last-child > a:hover {
  background-color: #fff;
  color: #DE0715;
}
.l-header__li:last-child::after {
  border-right: none;
}
.l-header__li:last-child.current-menu-item a {
  background-color: #fff;
  color: #DE0715;
}
.l-header__li:last-child.current-menu-item a:hover {
  color: #ddd;
}
.l-header__li:nth-last-child(2)::after {
  border-right: none;
}
.l-header__li > a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 14px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #fff;
}
.l-header__li > a:hover {
  color: #DE0715;
}
.l-header__li.current-menu-item > a, .l-header__li.current-menu-parent > a {
  color: #DE0715;
}
.l-header .logo img {
  padding: 6px;
  width: 100px;
}
@media screen and (min-width: 960px) {
  .l-header .logo img {
    width: 190px;
  }
}

.l-footer {
  padding-bottom: 75px;
}
@media screen and (min-width: 960px) {
  .l-footer {
    padding-bottom: 0;
  }
}
.l-footer__map {
  width: 100%;
}
.l-footer__map iframe {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 820px) {
  .l-footer__map iframe {
    height: 400px;
  }
}
.l-footer__content {
  background-color: #212529;
  padding-bottom: 30px;
}
.l-footer__content-inner {
  width: 95%;
  margin: 0 auto;
  max-width: 1300px;
}
@media screen and (min-width: 1400px) {
  .l-footer__content-inner {
    gap: 0 40px;
  }
}
.l-footer__content-left {
  flex-basis: 40%;
}
@media screen and (min-width: 1400px) {
  .l-footer__content-left {
    display: flex;
    flex-basis: 50%;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  .l-footer__content-left::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 1px solid #fff;
    height: 80%;
  }
}
.l-footer__content-right {
  flex-basis: 60%;
}
@media screen and (min-width: 1400px) {
  .l-footer__content-right {
    display: flex;
    flex: 1;
    align-items: center;
  }
}
.l-footer__info {
  display: grid;
  grid-template-columns: 3em 1fr;
  row-gap: 1em;
  -moz-column-gap: 0;
       column-gap: 0;
  margin: 30px auto;
  width: 90%;
  color: #fff;
}
.l-footer__info-label {
  font-weight: bold;
  align-self: start;
}
.l-footer__info-data {
  line-height: 1.5;
}
.l-footer__info-data-tel {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 820px) {
  .l-footer__info-data-tel {
    font-size: 23px;
    line-height: 1.2;
  }
}
.l-footer__logo {
  max-width: 250px;
  margin: 0 auto;
}
@media screen and (min-width: 1400px) {
  .l-footer__logo {
    max-width: 150px;
  }
}
.l-footer__contact {
  text-align: center;
  justify-content: center;
  gap: 20px;
  width: 90%;
  margin: 40px auto;
}
@media screen and (min-width: 600px) {
  .l-footer__contact {
    margin: 0;
    width: auto;
  }
}
@media screen and (min-width: 1400px) {
  .l-footer__contact {
    display: inline-block;
    width: 320px;
  }
}
.l-footer__contact-button {
  flex-basis: 48%;
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .l-footer__contact-button {
    margin: 0;
  }
}
@media screen and (min-width: 1400px) {
  .l-footer__contact-button {
    margin-bottom: 10px;
  }
}
.l-footer__contact-button a {
  border: 1px solid #fff;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
}
.l-footer__contact-button a:hover {
  background-color: #ddd;
}
.l-footer__contact-button a img {
  width: 1.5em;
  height: 1.5em;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 8px;
}
.l-footer__nav {
  width: 90%;
  margin: 20px auto;
}
.l-footer__ul {
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 820px) {
  .l-footer__ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.l-footer__li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  display: inline-block;
}
@media screen and (min-width: 820px) {
  .l-footer__li a {
    padding: 10px;
  }
}
.l-footer__li a:hover {
  color: #DE0715;
}
.l-footer__banner {
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  width: 90%;
  flex-basis: 90%;
  max-width: 1000px;
}
.l-footer__banner-button {
  flex-basis: 48%;
}
.l-footer__banner-button a {
  background-color: #fff;
  padding: 20px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  text-align: center;
}
@media screen and (min-width: 820px) {
  .l-footer__banner-button {
    flex-basis: 31%;
  }
}

.copyright {
  text-align: center;
  margin-top: 30px;
  color: #fff;
}

#page-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5%;
  bottom: 90px;
  background: #DE0715;
  opacity: 0.8;
  z-index: 900;
  border-radius: 50px;
}
@media screen and (min-width: 600px) {
  #page-top {
    bottom: 5%;
  }
}
#page-top > a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 99px;
}
#page-top > a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-left-w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  position: absolute;
  top: 17px;
}

/*==================================
* Section
==================================*/
.l-section--black {
  background-color: #212529;
}

.l-section--gray-800 {
  background-color: #343a40;
}

.l-section--gray-600 {
  background-color: #6c757d;
}

.l-section--gray {
  background: #f5f5f5;
}

.l-section--green {
  background: #f1f9f6;
}

.l-section--yellow {
  background: #fbf9ee;
}

.l-hero {
  overflow: hidden;
  position: relative;
  padding-top: 50px;
  background-color: #212529;
}
@media screen and (min-width: 960px) {
  .l-hero {
    padding-top: 100px;
  }
}
.l-hero__inner {
  position: relative;
}
.l-hero__inner img {
  width: 100%;
}
.l-hero__title {
  position: absolute;
  bottom: 3%;
  left: 5%;
  font-size: clamp(2.6em, 10vw, 8em);
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .l-hero__title {
    bottom: 5%;
  }
}
.l-hero__title img {
  max-width: 500px;
  width: 70%;
  position: absolute;
  top: -3em;
}
@media screen and (min-width: 820px) {
  .l-hero__title img {
    top: -1em;
  }
}
.l-hero__title h2 {
  font-size: 1em;
  z-index: 300;
  color: #333;
  text-shadow: 1px 1px 1px #fff;
  line-height: 1.3;
}
.l-hero__title h2::first-letter {
  color: #DE0715;
}
.l-hero__title span {
  color: #DE0715;
  font-size: 0.8em;
  display: block;
  font-weight: 800;
  font-style: italic;
}

.l-hero-swiper {
  border-right: 0.5em solid #eee;
}

.l-hero-sub {
  position: relative;
}
.l-hero-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 4px solid #DE0715;
  z-index: 1000;
}
.l-hero-sub__content {
  position: relative;
}
.l-hero-sub__image {
  height: 500px;
}
.l-hero-sub__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.l-hero-sub__title {
  color: #fff;
  position: absolute;
  z-index: 1100;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.l-hero-sub__title--en {
  font-size: clamp(40px, 4vw, 60px);
  text-transform: uppercase;
}
.l-hero-sub__title--jp {
  font-size: 0.8em;
  display: block;
}

.swiper {
  overflow: visible !important;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper-slide-active > img {
  transform: none;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
  display: none;
}
@media screen and (min-width: 600px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
  background-image: url("../images/arrow-circle-right.svg");
  transform: rotate(180deg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  background-image: url("../images/arrow-circle-right.svg");
}

.swiper-pagination {
  bottom: -30px !important;
}

.c-breadcrumb {
  color: #fff;
  background-color: #6c757d;
}
.c-breadcrumb__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
  padding: 10px 0 10px 0;
}
@media screen and (min-width: 960px) {
  .c-breadcrumb__inner {
    padding: 30px 0 30px 0;
  }
}
.c-breadcrumb__inner i {
  margin: 0 10px;
}
.c-breadcrumb__inner a {
  color: #fff;
  text-decoration: none;
}

.c-button {
  position: relative;
  max-width: 300px;
  width: 100%;
  background-color: #DE0715;
  border: 1px solid #fff;
  padding: 15px 35px;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
}
.c-button::after {
  content: "";
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1em;
}
.c-button.float:hover {
  background-color: #a3a3a3;
  color: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.c-button.filled {
  background-color: #000;
  color: #fff;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.c-button.filled:hover {
  background-color: #fff;
  color: #000;
  box-shadow: none;
}
.c-button.shadow {
  box-shadow: none;
}
.c-button.shadow:hover {
  transform: translate(-0.3px, -0.3px);
  box-shadow: 2px 2px 4px 0 rgba(46, 88, 149, 0.6);
}
.c-button.solid {
  box-shadow: 2px 2px 0 0 #000;
  border-radius: 7px;
}
.c-button.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.c-button.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.c-button.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.c-button.slide-bg:hover {
  color: #fff;
}
.c-button.slide-bg:hover::before {
  transform: none;
}

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 1500;
  margin-top: 50px;
  padding-bottom: 0;
  background-color: #343a40;
  transition: height 0.5s ease;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .c-mobile-menu {
    display: none;
  }
}
.c-mobile-menu__inner {
  height: 100%;
  overflow-y: auto;
}
.c-mobile-menu__button {
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: #fff;
  transform: translateY(-50%);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  width: 42px;
  height: 42px;
  border-radius: 99%;
}
@media screen and (min-width: 1280px) {
  .c-mobile-menu__button {
    display: none;
  }
}
.c-mobile-menu__button span {
  background-color: #333;
  width: 25px;
  height: 2px;
  display: block;
  margin-bottom: 5px;
  transition: transform 0.7s;
}
.c-mobile-menu__button span:last-child {
  margin-bottom: 0;
}
.c-mobile-menu__button p {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.c-mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
@media screen and (min-width: 1280px) {
  .c-mobile-menu__cover {
    display: none;
  }
}
.c-mobile-menu__main {
  padding: 30px 0 20px;
  perspective: 2000px;
  transform-style: preserve-3d;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-mobile-menu__item {
  display: block;
  transform: translate3d(0, 0, -1000px);
  opacity: 0;
}
.c-mobile-menu__item > a {
  display: block;
  padding: 1em 1em 1em 2.5em;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 600;
  position: relative;
  border-bottom: 1px dotted #fff;
}
.c-mobile-menu__item > a:hover {
  color: #DE0715;
  background-color: #fff;
}
.c-mobile-menu__item > a:hover::after {
  background-image: url("../images/arrow-right.svg");
}
.c-mobile-menu__item > a::after {
  content: "";
  background-image: url("../images/arrow-right-w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
}
.c-mobile-menu--open .c-mobile-menu {
  height: 100%;
  padding-bottom: 80px;
}
.c-mobile-menu--open .c-mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.c-mobile-menu--open .c-mobile-menu__item {
  transform: none;
  opacity: 1;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(6) {
  transition-delay: 0.42s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(7) {
  transition-delay: 0.49s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(8) {
  transition-delay: 0.56s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(9) {
  transition-delay: 0.63s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(10) {
  transition-delay: 0.7s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(11) {
  transition-delay: 0.77s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(12) {
  transition-delay: 0.84s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(13) {
  transition-delay: 0.91s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(14) {
  transition-delay: 0.98s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(15) {
  transition-delay: 1.05s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(16) {
  transition-delay: 1.12s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(17) {
  transition-delay: 1.19s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(18) {
  transition-delay: 1.26s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(19) {
  transition-delay: 1.33s;
}
.c-mobile-menu--open .c-mobile-menu__item:nth-child(20) {
  transition-delay: 1.4s;
}
.c-mobile-menu--open .c-mobile-menu__button > span {
  background-color: #333;
}
.c-mobile-menu--open .c-mobile-menu__button > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(7px) rotate(135deg);
}
.c-mobile-menu--open .c-mobile-menu__button > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-15px) scaleX(0);
}
.c-mobile-menu--open .c-mobile-menu__button > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-7px) rotate(-135deg);
}

.c-wp-pagenavi {
  padding: 20px 0;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c-wp-pagenavi {
    font-size: 14px;
  }
}
.c-wp-pagenavi > a {
  border-radius: 20px;
}
.c-wp-pagenavi .pages {
  /* 左の表記 */
  margin-right: 20px;
  display: none;
}
.c-wp-pagenavi span.current {
  color: #fff;
  border-radius: 20px;
  border: none;
}
.c-wp-pagenavi .previouspostslink, .c-wp-pagenavi .nextpostslink {
  display: none;
}
.c-wp-pagenavi .first, .c-wp-pagenavi .extend {
  margin-right: 10px;
}

.c-wp-pagenavi .current,
.c-wp-pagenavi a.page {
  /* ボタン */
  display: inline-block;
  width: 30px;
  height: 30px;
  display: inline-grid;
  align-content: center;
  text-align: center;
  font-weight: 900;
}

.c-wp-pagenavi a.page:hover {
  /* マウスオーバー */
  color: #000;
}

.c-post-links {
  list-style: none;
  padding: 0;
  position: relative;
  margin-top: 30px;
  line-height: 1;
}
.c-post-links > div {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}
.c-post-links__all {
  padding-top: 20px;
  width: 100%;
  margin: 0 auto;
  clear: both;
}
.c-post-links__all a {
  text-decoration: none;
}
.c-post-links__all a::after {
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 600;
  margin-left: 5px;
}
.c-post-links__link-prev {
  position: relative;
  float: left;
}
.c-post-links__link-prev > a {
  position: relative;
  justify-content: flex-end;
  padding-right: 30px;
}
.c-post-links__link-prev > a::after {
  content: "\f061";
  font-family: "Font Awesome 5 free";
  font-weight: 600;
  position: absolute;
  left: 0px;
  transform: rotate(180deg);
}
.c-post-links__link-next {
  float: right;
  position: relative;
  border-left: 1px solid #dbdbdb;
}
.c-post-links__link-next > a {
  position: relative;
  justify-content: flex-start;
  padding-left: 30px;
}
.c-post-links__link-next > a::after {
  content: "\f061";
  font-family: "Font Awesome 5 free";
  font-weight: 600;
  position: absolute;
  right: 0px;
}
.c-post-links__link-prev, .c-post-links__link-next {
  width: 50%;
}
.c-post-links__link-prev > a, .c-post-links__link-next > a {
  font-size: 14px;
  padding: 5px 5px 5px;
  text-decoration: none;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  flex-wrap: wrap;
  height: 30px;
}

.c-fixed-banner {
  position: fixed;
  transition: all 0.3s ease;
  z-index: 100;
}
.c-fixed-banner--right {
  top: 70%;
  transform: translateY(-50%);
  right: -250px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 960px) {
  .c-fixed-banner--right {
    top: 70%;
  }
}
.c-fixed-banner--right.is-inview {
  right: 5px;
}
@media screen and (min-width: 820px) {
  .c-fixed-banner--right.is-inview {
    right: 20px;
  }
}
.c-fixed-banner--right .c-fixed-banner__inner {
  transform-origin: top right;
}
.c-fixed-banner--right .c-fixed-banner__inner a {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}
.c-fixed-banner--right .c-fixed-banner__inner a:hover {
  opacity: 0.8;
}
.c-fixed-banner--right .c-fixed-banner__inner a img {
  max-width: 150px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-fixed-banner--right .c-fixed-banner__inner a img {
    max-width: 250px;
  }
}
.c-fixed-banner--left {
  top: 70%;
  transform: translateY(-50%);
  left: -30px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 960px) {
  .c-fixed-banner--left {
    top: 70%;
  }
}
.c-fixed-banner--left.is-inview {
  left: 20px;
}
@media screen and (min-width: 820px) {
  .c-fixed-banner--left.is-inview {
    left: 30px;
  }
}
.c-fixed-banner--left .c-fixed-banner__inner {
  transform-origin: top right;
}
.c-fixed-banner--left .c-fixed-banner__inner ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.5em;
}
.c-fixed-banner--left .c-fixed-banner__inner ul a:hover {
  opacity: 0.8;
}
.c-fixed-banner--left .c-fixed-banner__inner ul img {
  width: 30px;
}
.c-fixed-banner--bottom {
  left: 50%;
  transform: translateX(-50%);
  bottom: -90px;
  top: auto;
  display: block;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-fixed-banner--bottom {
    display: none;
  }
}
.c-fixed-banner--bottom.is-inview {
  bottom: 0;
}
.c-fixed-banner--bottom .c-fixed-banner__inner {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #fff;
}
.c-fixed-banner--bottom .c-fixed-banner__contact {
  flex-basis: 50%;
  background-color: #E85705;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 2em 10px 1em;
  font-weight: bold;
}
.c-fixed-banner--bottom .c-fixed-banner__contact span {
  position: relative;
  font-size: 14px;
}
.c-fixed-banner--bottom .c-fixed-banner__contact span::after {
  content: "";
  background-image: url("../images/icon__mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  height: 1.5em;
  width: 1.5em;
}
.c-fixed-banner--bottom .c-fixed-banner__tel {
  flex-basis: 50%;
  background-color: #DE0715;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 2em 10px 1em;
  font-weight: bold;
}
.c-fixed-banner--bottom .c-fixed-banner__tel span {
  position: relative;
  font-size: 14px;
}
.c-fixed-banner--bottom .c-fixed-banner__tel span::after {
  content: "";
  background-image: url("../images/icon__line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  height: 1.5em;
  width: 1.5em;
}

.c-news-content__lists {
  padding: 0;
}
.c-news-content__list {
  list-style: none;
  align-items: center;
}
.c-news-content__link {
  display: flex;
  text-decoration: none;
  color: #fff;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #dddddd;
  transition: 0.3s;
}
.c-news-content__link:hover {
  color: #E85705;
}
.c-news-content__date {
  color: #DE0715;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-right: 3%;
  line-height: 1.2;
  font-weight: 900;
}
.c-news-content__date--ym {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.c-news-content__date--d {
  font-size: 2em;
}
.c-news-content__title {
  font-weight: 600;
}
.c-news-content__button {
  text-align: center;
}
.c-news-content__notinfo {
  text-align: center;
  color: #fff;
  padding: 30px 0;
}

.c-main-title {
  font-size: clamp(25px, 4vw, 40px);
}

.c-sub-title {
  font-size: clamp(16px, 2.5vw, 19px);
}

.c-section-title {
  font-family: "Barlow", serif;
  font-size: clamp(40px, 6vw, 70px);
}

.c-section-title-02 {
  text-align: center;
  margin-bottom: 2em;
}
.c-section-title-02 h2 {
  display: inline-block;
  font-size: clamp(40px, 8vw, 70px);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  color: #DE0715;
}
.c-section-title-02 p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: #fff;
}

.c-page-title {
  font-family: "Barlow", serif;
  font-size: clamp(30px, 5vw, 55px);
  text-align: center;
}

.c-content-title {
  font-size: clamp(20px, 3vw, 25px);
  text-align: center;
  position: relative;
  padding-bottom: 2em;
}
.c-content-title::after {
  position: absolute;
  content: "";
  height: 0.2em;
  width: 5%;
  min-width: 30px;
  background-color: #DE0715;
  left: 50%;
  transform: translateX(-50%);
}

.c-store-info {
  position: relative;
}
.c-store-info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000;
}
.c-store-info__inner {
  justify-content: center;
  align-items: center;
  gap: 5em;
}
.c-store-info__image {
  flex-basis: 40%;
  max-width: 500px;
  width: 80%;
  margin: 0 auto;
}
.c-store-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-store-info__text {
  flex-basis: 47%;
}
.c-store-info__text {
  color: #fff;
}
.c-store-info__tel {
  margin-bottom: 15px;
  position: relative;
  margin-left: 2em;
}
.c-store-info__tel::before {
  position: absolute;
  content: "";
  background-image: url("../images/icon-tel.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2em;
  height: 2em;
  top: 50%;
  left: -2.5em;
  transform: translateY(-40%);
}
.c-store-info__tel a {
  color: #fff;
  font-size: 35px;
  font-weight: 900;
}
.c-store-info__desc-info {
  margin-bottom: 10px;
}
.c-store-info__desc-info span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
.c-store-info__way {
  padding: 0;
  margin-top: 10px;
}
.c-store-info__way li {
  position: relative;
  list-style: none;
}
.c-store-info__map {
  width: 100%;
  height: 400px;
  margin-top: 30px;
}
.c-store-info__map iframe {
  width: 100%;
  height: 100%;
}

.c-price-01__container {
  border: 9px solid rgba(112, 112, 112, 0.25);
  background: rgba(0, 0, 0, 0.25);
  padding: 15px 15px 50px;
}
@media screen and (min-width: 960px) {
  .c-price-01__container {
    padding: 15px 60px 50px;
  }
}
.c-price-01__list {
  padding: 25px 0;
  border-bottom: 1px solid #555555;
}
.c-price-01__list__inner {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .c-price-01__list__inner {
    gap: 1em;
  }
}
.c-price-01__list__label {
  background: #373737;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-basis: 35%;
}
.c-price-01__list__label h3 {
  line-height: 1;
  font-size: clamp(40px, 4vw, 50px);
  background: linear-gradient(#454545 0%, #fff 50%, #5b5a5a 100%);
  background-position: center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.c-price-01__list__label p {
  color: #fff;
  font-weight: 600;
}
.c-price-01__list__label h6 {
  color: #fff;
}
.c-price-01__list__value {
  padding: 0.5em 0;
  flex: 1;
}
.c-price-01__list__value-main h3 {
  font-size: 40px;
  background: linear-gradient(#454545 0%, #fff 50%, #5b5a5a 100%);
  background-position: center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
@media screen and (min-width: 600px) {
  .c-price-01__list__value-main h3 {
    font-size: 60px;
  }
}
@media screen and (min-width: 960px) {
  .c-price-01__list__value-main h3 {
    font-size: 80px;
  }
}
.c-price-01__list__value-main h3 span {
  font-size: 20px;
  padding: 0 10px;
  color: #fff;
}
.c-price-01__list__value p {
  color: #fff;
}
.c-price-01__list__value h6 {
  font-size: 40px;
  color: #fff;
  line-height: 1;
}
.c-price-01__list__value h6 span {
  font-size: 13px;
}
.c-price-01__list__remarks p {
  color: #fff;
  margin-bottom: 10px;
}

.c-price-01__list--gold h3 {
  background: linear-gradient(#ffd42f 0%, #fff1a9 50%, #cba719 100%);
  -webkit-background-clip: text;
          background-clip: text;
}

.c-price-01__list--silver h3 {
  background: #f0f0f0;
  -webkit-background-clip: text;
          background-clip: text;
  color: #373737;
}

.c-video {
  max-width: 800px;
  margin: 0 auto;
}
.c-video__frame {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  width: 100%;
  height: 100%;
}
.c-video__frame.is-loaded iframe {
  opacity: 1;
  visibility: visible;
}
.c-video iframe {
  pointer-events: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  transition-property: opacity, visibility;
}

/*
　ミッション
================================*/
.c-program {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .c-program {
    width: 100%;
  }
}
.c-program ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 960px) {
  .c-program ul::after {
    width: 31%;
    height: 450px;
    margin-bottom: 40px;
  }
}
.c-program__item {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 30px;
}
.c-program__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0), #1f1f1f);
  opacity: 1;
  z-index: 10;
}
@media screen and (min-width: 960px) {
  .c-program__item::before {
    height: 60%;
  }
}
.c-program__item::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  transition: 1s all;
}
.c-program__item:hover::after {
  opacity: 0.9;
  transform: scale(1.2, 1.2);
}
.c-program__item:hover .c-program__desc {
  display: inline-block;
  opacity: 1;
  transition: 0.3s;
}
.c-program__item--01::after {
  background: url("../images/program-01.jpg") no-repeat center center/cover;
}
.c-program__item--02::after {
  background: url("../images/program-02.jpg") no-repeat center center/cover;
}
.c-program__item--03::after {
  background: url("../images/program-03.jpg") no-repeat center center/cover;
}
.c-program__item--04::after {
  background: url("../images/program-04.jpg") no-repeat center center/cover;
}
.c-program__item--05::after {
  background: url("../images/program-05.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 960px) {
  .c-program__item {
    width: 48%;
    height: 450px;
    margin-bottom: 40px;
  }
  .c-program__item:nth-child(n+3) {
    width: 30%;
  }
}
.c-program__item > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  z-index: 10;
}
.c-program__text {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 100;
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 820px) {
  .c-program__text {
    display: inline-block;
    height: auto;
  }
}
.c-program__title {
  margin-bottom: 10px;
}
.c-program__title > span {
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .c-program__title > span {
    line-height: 1.4;
  }
}
.c-program__title h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.c-program__title h3::first-letter {
  color: #DE0715;
}
.c-program__desc {
  font-weight: 600;
}
@media screen and (min-width: 820px) {
  .c-program__desc {
    display: none;
    opacity: 0;
  }
}

.c-club-info {
  position: relative;
  height: 350px;
}
@media screen and (min-width: 960px) {
  .c-club-info {
    height: 600px;
  }
}
.c-club-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #6d311b;
  border-radius: 10px;
  opacity: 0.3;
}
.c-club-info__image img {
  display: block;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 960px) {
  .c-club-info__image img {
    height: 600px;
  }
}
.c-club-info__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
@media screen and (min-width: 960px) {
  .c-club-info__inner {
    max-width: 600px;
    right: 0%;
    left: auto;
    transform: translate(-100px, -50%);
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.8);
  }
}
.c-club-info__inner h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  color: #DE0715;
}
@media screen and (min-width: 960px) {
  .c-club-info__inner h3 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: clamp(20px, 3vw, 28px);
  }
}
.c-club-info__inner p {
  line-height: 1.5;
  font-weight: bold;
  color: #333;
}
@media screen and (min-width: 960px) {
  .c-club-info__inner p {
    text-align: justify;
  }
}

.c-staff-list ul {
  padding: 0;
  list-style: none;
}
.c-staff-list__item {
  width: 100%;
  gap: 40px;
}
.c-staff-list__image {
  margin-bottom: 20px;
  text-align: center;
  flex-basis: 30%;
}
.c-staff-list__image a {
  display: block;
}
.c-staff-list__image a:hover {
  opacity: 0.8;
}
.c-staff-list__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.c-staff-list__text {
  margin-bottom: 10px;
  flex: 1;
}
.c-staff-list__desc {
  text-align: justify;
}
.c-staff-list__desc span {
  color: #DE0715;
  font-weight: bold;
  border-bottom: 1px solid #DE0715;
  display: block;
}
.c-staff-list__name {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: bold;
  position: relative;
  padding-left: 0.6em;
}
.c-staff-list__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 4px;
  height: 1em;
  background-color: #DE0715;
}
.c-staff-list__license {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .c-staff-list__license {
    font-size: 15px;
  }
}

.p-contact-404 {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .p-contact-404 {
    height: 60vh;
  }
}
.p-contact-404 h2 {
  font-size: clamp(6em, 6vw, 10em);
  text-align: center;
  line-height: 0.6em;
}
.p-contact-404 h2 > span {
  font-size: clamp(20px, 2vw, 25px);
}
.p-contact-404__btn {
  text-align: center;
}

.p-contact-thanks {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .p-contact-thanks {
    height: 60vh;
  }
}
.p-contact-thanks h2 {
  font-size: clamp(35px, 4vw, 60px);
  text-align: center;
}
.p-contact-thanks h2 > span {
  font-size: clamp(14px, 2vw, 16px);
}
.p-contact-thanks__btn {
  text-align: center;
}

.p-contact-text {
  max-width: 900px;
  width: 90%;
  margin: 0px auto;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.p-contact-text a {
  color: #DE0715;
}
.p-contact-text span {
  color: rgb(208, 0, 0);
}

.p-contact-message {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}
.p-contact-message h3 {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
}
.p-contact-message__desc {
  text-align: justify;
}
@media screen and (min-width: 820px) {
  .p-contact-message__desc {
    text-align: center;
  }
}
.p-contact-message .p-label--must {
  color: rgb(208, 0, 0);
  font-weight: 700;
  color: #fff;
  border-radius: 3px;
  font-size: 10px;
  padding: 2px 10px;
  letter-spacing: 2px;
  margin-right: 0.5em;
}

.p-contact-tel {
  background-color: #E85705;
  padding-top: 3em;
  padding-bottom: 3em;
  text-align: center;
}
.p-contact-tel__lead {
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.p-contact-tel__phone {
  margin-top: 0.3em;
  margin-bottom: 0.5em;
  line-height: 1;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-contact-tel__phone a {
  color: inherit;
  text-decoration: none;
  margin-bottom: 0.3em;
  display: inline-block;
}
.p-contact-tel__open {
  font-size: clamp(14px, 2vw, 16px);
}

.p-contact-form-02 .p-form-group {
  padding: 10px;
}
@media screen and (min-width: 820px) {
  .p-contact-form-02 .p-form-group {
    padding: 30px 10px;
    position: relative;
  }
}
.p-contact-form-02 .p-form-group .p-input-radio {
  width: auto;
}
.p-contact-form-02 .p-form-group label {
  padding: 10px 10px;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  font-size: clamp(14px, 2vw, 16px);
}
@media screen and (min-width: 820px) {
  .p-contact-form-02 .p-form-group label {
    flex-basis: 28%;
  }
}
.p-contact-form-02 .p-form-group label span {
  display: inline-block;
}
.p-contact-form-02 .p-form-group select,
.p-contact-form-02 .p-form-group input {
  box-sizing: border-box;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
  box-shadow: none;
  color: #333;
  flex: none;
  font-size: 15px;
  font-weight: 400;
  height: 100%;
  justify-content: center;
  letter-spacing: 0em;
  line-height: 1.4;
  opacity: 1;
  padding: 20px 20px 20px 20px;
  text-align: left;
  width: 100%;
  max-width: 100%;
  flex: 1;
}
.p-contact-form-02 .p-form-group textarea {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
  box-shadow: none;
  color: #333;
  flex: none;
  font-size: 15px;
  font-weight: 400;
  height: 280px;
  justify-content: center;
  letter-spacing: 0em;
  line-height: 1.75;
  opacity: 1;
  padding: 20px 20px 20px 20px;
  text-align: left;
  text-shadow: none;
  width: 100%;
  flex: 1;
}
@media screen and (min-width: 820px) {
  .p-contact-form-02 .p-form-group .error {
    position: absolute;
    bottom: 0;
    flex-basis: 100%;
  }
}
.p-contact-form-02 .p-form-group__start-date, .p-contact-form-02 .p-form-group__end-date {
  flex: 1;
  position: relative;
}
.p-contact-form-02 .p-form-group__start-date::after, .p-contact-form-02 .p-form-group__end-date::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 22px;
  width: 1em;
  height: 1em;
  background-image: url("../images/icon_calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.p-contact-form-02 .p-label--must {
  color: rgb(208, 0, 0);
}
.p-contact-form-02 .p-label--optional {
  background: #adacac;
}
.p-contact-form-02 .p-label--optional,
.p-contact-form-02 .p-label--must {
  font-weight: 700;
  color: rgb(208, 0, 0);
  border-radius: 3px;
  font-size: 10px;
  padding: 2px 10px;
  letter-spacing: 2px;
}
.p-contact-form-02__note a {
  color: #E85705;
}

.p-submit-button {
  text-align: center;
  margin-bottom: 10px;
}
.p-submit-button input {
  padding: 1em 2em;
  border: none;
  border-radius: 10px;
  min-width: 200px;
}
.p-submit-button input::before {
  background-color: #E85705;
  color: #fff;
}

.p-facilities__not-content {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-facilities__not-content h3 {
  font-size: clamp(2em, 2vw, 3em);
  text-align: center;
  line-height: 2;
}
.p-facilities__not-content h3 span {
  font-size: clamp(18px, 2vw, 25px);
}
.p-facilities__not-content p {
  text-align: center;
}

.p-privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.p-privacy-content .privacy-block > p {
  margin-bottom: 10px;
  text-align: justify;
}
.p-privacy-content .privacy-block:last-child {
  margin-bottom: 0 !important;
}
.p-privacy-content h3 {
  position: relative;
  padding-left: 30px;
}
.p-privacy-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  background-image: url("../images/icon-tag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  width: 15px;
  transform: rotate(136deg);
}
.p-privacy-content ul {
  padding: 0;
  list-style: none;
}
.p-privacy-content address {
  font-style: normal;
}

/*---年別アーカイブ-----------------------------------------------------------*/
@media screen and (min-width: 600px) {
  .p-archive-list {
    display: flex;
    justify-content: flex-end;
  }
}
.p-archive-list__inner {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-archive-list__inner {
    width: 30%;
    max-width: 200px;
  }
}
.p-archive-list__title {
  font-weight: bold;
  color: #DE0715;
  font-size: 13px;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #DE0715;
}
.p-archive-list__select {
  font-size: 13px;
  border: none;
  border: 1px solid #535353;
  padding: 1em 1.5em;
  border-radius: 5px;
  width: 100%;
  color: #535353;
}

/*ページナビ-----------------------------------------------------------*/
.wp-pagenavi {
  padding: 20px 0;
  font-size: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.wp-pagenavi a {
  color: #fff;
  padding: 5px 5px;
  border: none !important;
}
.wp-pagenavi .pages {
  /* 左の表記 */
  margin-right: 20px;
  display: none;
}
.wp-pagenavi span.current {
  color: #DE0715;
  border: none;
  position: relative;
}
.wp-pagenavi span.current::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #DE0715;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  width: 30px;
  height: 30px;
  display: inline-block;
  border: none;
}
.wp-pagenavi .extend {
  display: none;
}

.wp-pagenavi .current,
.wp-pagenavi a {
  /* ボタン */
  display: inline-block;
  border: none;
  width: 30px;
  height: 30px;
  display: inline-grid;
  text-align: center;
  font-weight: 900;
}

.wp-pagenavi a:hover {
  /* マウスオーバー */
  color: #fff;
}

.p-news-list {
  padding: 0;
}
.p-news-list li {
  list-style: none;
  align-items: center;
}
.p-news-list__link {
  display: flex;
  text-decoration: none;
  color: #fff;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #dddddd;
  transition: 0.3s;
}
.p-news-list__link:hover {
  color: #E85705;
}
.p-news-list__date {
  color: #DE0715;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-right: 3%;
  line-height: 1.2;
  font-weight: bold;
}
.p-news-list__date--ym {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.p-news-list__date--d {
  font-size: 2em;
}
.p-news-list__title {
  font-weight: 600;
}

.p-news-article__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
}
.p-news-article__header {
  padding: 3em 0;
  color: #fff;
  display: flex;
  align-items: center;
}
.p-news-article__body {
  background-color: #fff;
  border-radius: 10px;
  padding: 2em 5%;
  min-height: 300px;
}
.p-news-article__date {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-right: 3%;
  line-height: 1.2;
  font-weight: 900;
}
.p-news-article__date--ym {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.p-news-article__date--d {
  font-size: 2em;
}
.p-news-article__title {
  line-height: 1.4;
  font-size: clamp(19px, 3vw, 30px);
}

.p-single-page-nav {
  background-color: #212529;
  height: 10em;
  padding: 0 5%;
}
@media screen and (min-width: 820px) {
  .p-single-page-nav {
    position: relative;
  }
}
.p-single-page-nav__button {
  text-align: center;
}
@media screen and (min-width: 820px) {
  .p-single-page-nav__button {
    position: absolute;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
  }
}
.p-single-page-nav__button a {
  font-size: clamp(20px, 2vw, 25px);
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 0.5em 2em;
  border-radius: 10px;
  transition: 0.3s;
}
.p-single-page-nav__button a:hover {
  color: #E85705;
  border: 1px solid #E85705;
}

/*シングルページのページ送り*/
.p-post-links {
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
  list-style: none;
  padding: 0;
  display: flex;
}
@media screen and (min-width: 820px) {
  .p-post-links {
    position: absolute;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-post-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.p-post-links a:hover {
  color: #E85705;
}

.p-post-link {
  flex-basis: 50%;
  font-size: clamp(13px, 2vw, 16px);
  display: flex;
  font-weight: bold;
  align-items: center;
}
.p-post-link a {
  color: #fff;
  padding: 0.5em 1em;
  transition: 0.3s;
}
@media screen and (min-width: 600px) {
  .p-post-link a {
    padding: 1em 2em;
  }
}
.p-post-link a:hover {
  color: #E85705;
}

.p-post-link-next {
  text-align: right;
  justify-content: flex-end;
}
.p-post-link-next a {
  color: #fff;
  position: relative;
  transition: 0.3s;
}
.p-post-link-next a:hover {
  color: #E85705;
}
.p-post-link-next a::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background-image: url("../images/arrow_w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.p-post-link-prev a {
  position: relative;
  color: #fff;
  transition: 0.3s;
}
.p-post-link-prev a:hover {
  color: #E85705;
}
.p-post-link-prev a::after {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-image: url("../images/arrow_w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.p-greeting__inner {
  justify-content: center;
  gap: 2em;
}
.p-greeting__img {
  flex-basis: 60%;
}
.p-greeting__img img {
  border-radius: 20px;
}
.p-greeting__text {
  flex-basis: 35%;
  display: flex;
  align-items: center;
  color: #fff;
}
.p-greeting__text h3 {
  font-size: clamp(26px, 4vw, 35px);
  line-height: 1.2;
  margin-bottom: 1em;
}
.p-greeting__text h3 span {
  background-image: url("../images/text-bg-02.jpg");
  background-position: center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-greeting__text p {
  text-align: justify;
}

.p-club-info__inner {
  justify-content: center;
  gap: 2em;
}
.p-club-info__img {
  flex-basis: 60%;
}
.p-club-info__img img {
  border-radius: 20px;
}
.p-club-info__text {
  flex-basis: 35%;
  display: flex;
  align-items: center;
  color: #fff;
}
.p-club-info__text h3 {
  font-size: clamp(26px, 4vw, 35px);
  line-height: 1.2;
  margin-bottom: 1em;
}
.p-club-info__text h3 span {
  background-image: url("../images/text-bg-02.jpg");
  background-position: center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-club-info__text p {
  text-align: justify;
}

.p-online-store {
  position: relative;
}
.p-online-store::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000;
}
.p-online-store__inner {
  display: grid;
  grid-template-areas: "text" "image" "button";
  gap: 2em;
}
@media screen and (min-width: 960px) {
  .p-online-store__inner {
    grid-template-areas: "text image" "button image";
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.p-online-store__text {
  grid-area: text;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-online-store__text {
    text-align: left;
  }
}
.p-online-store__text h3 {
  color: #DE0715;
  font-size: clamp(45px, 5vw, 70px);
  margin-bottom: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.p-online-store__desc {
  margin: 20px 0;
}
.p-online-store__button {
  grid-area: button;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-online-store__button {
    margin-top: 0;
    text-align: left;
    grid-column: text;
    grid-area: button;
  }
}
.p-online-store__image {
  grid-area: image;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-online-store__image {
    width: 100%;
  }
}
.p-online-store__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-camp-event {
  position: relative;
}
.p-camp-event::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000;
}
.p-camp-event__inner {
  justify-content: center;
  align-items: center;
  gap: 3em;
}
.p-camp-event__image {
  flex-basis: 60%;
  max-width: 500px;
  margin: 0 auto;
}
.p-camp-event__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-camp-event__buttons {
  flex-basis: 40%;
  color: #fff;
  width: 100%;
  text-align: center;
}
.p-camp-event__buttons h3 {
  color: #DE0715;
  font-size: clamp(45px, 5vw, 70px);
  margin-bottom: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.p-camp-event__button {
  margin-bottom: 20px;
}

.p-schedule {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.p-sponsor {
  background-color: #343a40;
  width: 100%;
  padding: 6%;
  text-align: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 600px) {
  .p-sponsor {
    padding: 3%;
  }
}
.p-sponsor__link {
  flex-basis: 49%;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p-sponsor__link {
    margin: 0;
  }
}
.p-sponsor__link a img {
  height: 100px;
  margin: 0 auto;
}
.p-sponsor__link a:hover img {
  opacity: 0.8;
}/*# sourceMappingURL=layout.css.map */