@charset "UTF-8";
/*==================================
* Base Typography - body
* サイト全体のベーステキスト設定
* フォント、サイズ、行間、字間を整える
==================================*/
body {
  font-family: "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-support__inner, .p-approach__inner, .p-feature-cards__list, .p-partner-banner, .p-voice__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .u-flex--md, .p-support__inner, .p-approach__inner, .p-feature-cards__list, .p-partner-banner, .p-voice__inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

.u-flex--lg, .p-staff__block, .p-news-wrapper, .p-related-posts__lists, .c-news-content__link {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .u-flex--lg, .p-staff__block, .p-news-wrapper, .p-related-posts__lists, .c-news-content__link {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/*==================================
* font-family
==================================*/
.u-font--gothic, .c-fixed-banner {
  font-family: "Noto Sans JP", sans-serif;
}

.u-font--mincho {
  font-family: "Barlow Condensed", sans-serif;
}

/*==================================
* font-size
==================================*/
.u-font-size--sm, .c-news-content__title, .c-news-content__notinfo p, .c-post-links__all a, .c-button, .copyright {
  font-size: clamp(14px, 1.8vw, 16px);
}

.u-font-size--md {
  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-marker {
  background: linear-gradient(transparent 70%, #FFF799 70%);
}

.u-text-marker--orange {
  background: linear-gradient(transparent 75%, #D4A018 75%);
}

.u-text-marker--red {
  background: linear-gradient(transparent 75%, #ff0000 75%);
  font-weight: 600;
}

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

.u-pb--md {
  padding-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--md {
    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 {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--lg {
    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 {
  padding-top: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-pt--lr {
    padding-top: 100px !important;
  }
}

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

/*==================================
* Margin Bottom
==================================*/
.u-mb--sm, .p-related-posts__title, .p-search-results, .c-section-title-03, .c-wp-pagenavi {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--sm, .p-related-posts__title, .p-search-results, .c-section-title-03, .c-wp-pagenavi {
    margin-bottom: 25px !important;
  }
}

.u-mb--md, .p-staff__block, .p-search-content, .c-post-links, .l-footer__content__inner, .l-footer__map {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--md, .p-staff__block, .p-search-content, .c-post-links, .l-footer__content__inner, .l-footer__map {
    margin-bottom: 60px !important;
  }
}

.u-mb--lr, .p-contact-404 h2, .c-news-content__lists {
  margin-bottom: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--lr, .p-contact-404 h2, .c-news-content__lists {
    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 {
  margin-top: 16px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--sm {
    margin-top: 25px !important;
  }
}

.u-mt--md, .p-guidebook-present__button, .p-approach, .p-partner-banner, .p-partner__content, .p-partner__pmaker, .p-partner__button, .p-voice, .p-voice__button, .p-staff, .p-faq, .p-step-cards, .wp-pagenavi, .c-post-slider-01, .c-news-content, .c-wp-pagenavi, .c-mobile-menu__contact-button {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--md, .p-guidebook-present__button, .p-approach, .p-partner-banner, .p-partner__content, .p-partner__pmaker, .p-partner__button, .p-voice, .p-voice__button, .p-staff, .p-faq, .p-step-cards, .wp-pagenavi, .c-post-slider-01, .c-news-content, .c-wp-pagenavi, .c-mobile-menu__contact-button {
    margin-top: 60px !important;
  }
}

.u-mt--lr, .p-support, .p-contact-404, .p-contact-404__button, .c-post-slider-01__btn {
  margin-top: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--lr, .p-support, .p-contact-404, .p-contact-404__button, .c-post-slider-01__btn {
    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-border-line::after, .l-section__container {
  width: 95%;
  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-sm {
  display: block;
}
@media screen and (min-width: 480px) {
  .u-hidden-sm {
    display: none;
  }
}

.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;
  }
}

/*==================================
* 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;
  overflow: hidden;
}
.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;
}

/*==================================
  流れるテキストアニメーション Utility
===================================*/
/*
概要：
スクロールに応じてテキストや要素が
左右・上下からスライドインして表示されるアニメーションユーティリティ。

JSが各方向のクラス（.u-left-anime / .u-right-anime / .u-up-anime / .u-down-anime）
を監視し、ビューポート内に入ると対応する
「.js-slide-anime-*」クラスを自動付与します。

構造：
--------------------------------------------------
<div class="u-slide-in u-left-anime">
    <span class="u-left-anime__inner">
        <h2>テキストや見出し</h2>
    </span>
</div>

・.u-slide-in … マスク領域（overflow:hidden）
・.u-left-anime … スライドアニメーションの対象（方向を指定）
・.u-left-anime__inner … 実際に動く要素（translateでスライド）
--------------------------------------------------

方向別クラス一覧：
・.u-left-anime       → 左から右へ流れる
・.u-right-anime      → 右から左へ流れる
・.u-up-anime         → 下から上へ流れる
・.u-down-anime       → 上から下へ流れる

ポイント：
・.u-slide-in はマスク専用。常に併用推奨。
・外側（.u-slide-in + .u-*-anime）は display:block;
・内側（.u-*-anime__inner）は display:inline-block; が基本。
・テキスト以外（画像やボタン）にも使用可能。
・is-inview クラス依存は廃止。JS付与クラスで直接制御。

使用例：
--------------------------------------------------
<!-- 左から流れる見出し -->
<div class="c-content-card-01__title u-slide-in u-left-anime">
    <span class="u-left-anime__inner">
        <h2>住宅業界30年以上!</h2>
    </span>
</div>
--------------------------------------------------

備考：
・animation-duration, timing は任意で調整可能。
・別方向アニメはクラス名の差し替えのみで共通利用可。
*/
/*==================================
  実装開始
===================================*/
.u-slide-in {
  overflow: hidden;
  display: block;
}
.u-slide-in__inner {
  display: inline-block;
}

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

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

.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;
  }
}
.js-slide-anime-right-left {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.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: #fff;
  z-index: 2000;
  transition: 0.3s;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 80px;
  }
}
@media screen and (min-width: 960px) {
  .l-header.triggered {
    box-shadow: 0px 0 28px -3px rgba(102, 102, 102, 0.5);
  }
  .l-header.triggered .l-header__li::after {
    border-right: 1px solid #fff;
  }
}
.l-header__inner {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}
.l-header__nav {
  text-align: center;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .l-header__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__ul {
  height: 100%;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header__ul {
    display: flex;
  }
}
.l-header__li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.l-header__li > a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 8px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}
@media screen and (min-width: 1280px) {
  .l-header__li > a {
    font-size: 16px;
    padding: 5px 14px;
  }
}
.l-header__li > a:hover {
  color: #7E0119;
}
.l-header__li.current-menu-item > a, .l-header__li.current-menu-parent > a {
  color: #D4A018;
}
.l-header__logo {
  padding-left: 1%;
  flex: 1;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  transform: translateY(10%);
  line-height: 1.2;
  color: #7E0119;
  font-size: clamp(12px, 1.5vw, 23px);
  letter-spacing: 0.05px;
  text-decoration: none;
}
.l-header__logo img {
  height: 30px;
}
@media screen and (min-width: 600px) {
  .l-header__logo img {
    height: 40px;
  }
}
.l-header__logo span {
  margin-top: 5px;
  margin-left: 5px;
}
.l-header__sns-icons {
  padding: 0;
  list-style: none;
  display: flex;
  height: 100%;
  margin-right: 43px;
}
@media screen and (min-width: 960px) {
  .l-header__sns-icons {
    margin-right: 0;
    margin-left: 10px;
  }
}
.l-header__sns-icons li {
  height: 100%;
  width: 50px;
}
.l-header__sns-icons li:nth-child(1) a {
  background-color: #7E0119;
}
.l-header__sns-icons li:nth-child(2) a {
  background-color: #D4A018;
}
@media screen and (min-width: 960px) {
  .l-header__sns-icons li:nth-child(2) a img {
    position: relative;
    top: 13px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__sns-icons li {
    width: 80px;
  }
}
.l-header__sns-icons li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.3s;
  text-decoration: none;
  color: #fff;
}
.l-header__sns-icons li a:hover {
  background-color: #ddd;
}
.l-header__sns-icons li a img {
  width: 50%;
  height: 50%;
  margin: 0 auto;
}
.l-header__sns-icons li a span {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header__sns-icons li a span {
    display: inline;
    font-size: 12px;
    font-weight: 600;
    margin: 0 auto;
  }
}

.l-footer {
  padding-bottom: 54px;
}
@media screen and (min-width: 960px) {
  .l-footer {
    padding-bottom: 0;
  }
}
.l-footer__content {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
@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 {
    flex-basis: 35%;
    gap: 20px;
    position: relative;
  }
}
.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 {
  border-top: 1px solid #eee;
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 12px 0;
  font-size: 14px;
  line-height: 1.6;
  padding: 5px 0 24px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .l-footer__info {
    grid-template-columns: 160px 1fr;
    font-size: 15px;
    padding: 15px 24px 32px;
  }
}
.l-footer__info-label {
  font-weight: 700;
  border-bottom: 1px solid #eee;
  padding-right: 12px;
  padding-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .l-footer__info-label {
    padding-bottom: 10px;
  }
}
.l-footer__info-data {
  word-break: break-word;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .l-footer__info-data {
    padding-bottom: 10px;
  }
}
.l-footer__logo {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .l-footer__logo {
    margin: 0;
    max-width: none;
    margin-bottom: 0;
  }
}
.l-footer__map iframe {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 820px) {
  .l-footer__map iframe {
    height: 400px;
  }
}

.copyright {
  text-align: center;
  background-color: #7E0119;
  padding: 20px 0;
  color: #fff;
}

#page-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5%;
  bottom: 90px;
  background: #7E0119;
  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: 15px;
  height: 18px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 15px;
}

/*==================================
* Section
==================================*/
.l-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 960px) {
  .l-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

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

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

.l-section--pink {
  background: #F0E7E5;
}

.l-hero {
  overflow: hidden;
  position: relative;
  padding-top: 50px;
}
@media screen and (min-width: 960px) {
  .l-hero {
    padding-top: 80px;
  }
}
.l-hero__title {
  position: absolute;
  bottom: 10%;
  left: 7%;
  z-index: 1000;
}
.l-hero__title h2 {
  font-weight: 900;
  font-size: clamp(27px, 7vw, 70px);
  letter-spacing: 3px;
  line-height: 1.3;
  color: white;
  text-shadow: #7E0119 3px 3px 3px, #7E0119 -3px -3px 3px, #7E0119 -3px 3px 3px, #7E0119 3px -3px 3px, #7E0119 3px 0px 3px, #7E0119 -3px 0px 3px, #7E0119 0px 3px 3px, #7E0119 0px -3px 3px;
}
.l-hero__title h2 em {
  font-style: normal;
  font-size: 1.6em;
}
.l-hero__title p {
  text-align: right;
  color: #7E0119;
}
.l-hero__slide {
  width: 100%;
  position: relative;
}
.l-hero__slide picture {
  width: 100%;
  height: 100%;
}
.l-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 7s ease;
}
.swiper-slide-active .l-hero__image {
  transform: scale(1.1);
}
.swiper-slide-next .l-hero__image, .swiper-slide-prev .l-hero__image {
  transform: scale(1);
}

.l-hero-sub {
  padding-top: 50px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-hero-sub {
    padding-top: 80px;
  }
}
.l-hero-sub__inner {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .l-hero-sub__inner {
    height: 500px;
  }
}
.l-hero-sub__image {
  width: 100%;
  height: auto;
  position: relative;
}
.l-hero-sub__image picture,
.l-hero-sub__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .l-hero-sub__image {
    height: 100%;
  }
}
.l-hero-sub__image::after {
  position: absolute;
  content: "";
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.l-hero-sub__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
}
.l-hero-sub__title h2 {
  margin-bottom: 0;
  font-weight: 800;
  color: #fff;
  font-size: clamp(30px, 5vw, 60px);
  letter-spacing: 0.05em;
}
.l-hero-sub__date {
  color: #fff;
  font-size: clamp(20px, 5vw, 25px);
  font-weight: bold;
}

.swiper {
  overflow: visible !important;
}

.swiper-slide-active > img {
  transform: none;
}
.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.swiper-button-next,
.swiper-button-prev {
  width: 2em;
  height: 2em;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.5em;
  font-weight: bold;
  color: #333;
}

.c-breadcrumb {
  color: #7E0119;
  font-size: 13px;
}
.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: #333;
  text-decoration: none;
}

.c-button {
  min-width: 250px;
  position: relative;
  display: inline-block;
  padding: 13px 35px;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background-color: #333;
  border-radius: 50px;
}
.c-button::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 10px;
  z-index: 100;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.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-arrow-button {
  width: 200px;
  display: inline-block;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
  padding: 0 1.5em;
  padding-bottom: 10px;
  box-sizing: border-box;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1em;
  text-decoration: none;
  transition: 0.5s ease-out;
}
.c-arrow-button:hover::before {
  left: 10px;
}
.c-arrow-button:hover::after {
  right: -11px;
}
.c-arrow-button::before {
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.c-arrow-button::after {
  content: "";
  width: 10px;
  height: 1.5px;
  position: absolute;
  bottom: 3px;
  right: -1px;
  background-color: #fff;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.c-mobile-menu {
  padding-top: 50px;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 1500;
  padding-bottom: 0;
  background-color: #F0E7E5;
  transition: height 0.5s ease;
}
@media screen and (min-width: 960px) {
  .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: 25px;
  height: 25px;
  border-radius: 99%;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__button {
    display: none;
  }
}
.c-mobile-menu__button span {
  background-color: #7E0119;
  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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.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: #333;
  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: #D4A018;
  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.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%;
}
.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: #7E0119;
}
.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-mobile-menu__contact-button {
  text-align: center;
}
.c-mobile-menu__contact-button .c-button {
  min-width: 320px;
  text-align: left;
  padding: 13px 10px 13px 80px;
  font-size: 14px;
  background-color: #D4A018;
  margin-top: 10px;
}
.c-mobile-menu__contact-button .c-button::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 25px;
  background-image: url("../images/icon-yoyaku.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 2em;
  height: 2em;
}

.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 {
  display: none;
  position: fixed;
  transition: all 0.3s ease;
  z-index: 300;
}
.c-fixed-banner--right {
  top: 70%;
  transform: translateY(-50%);
  right: -80px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 960px) {
  .c-fixed-banner--right {
    display: block;
  }
}
.c-fixed-banner--right.is-inview {
  right: 0;
}
.c-fixed-banner--right .c-fixed-banner__inner {
  transform-origin: top right;
}
.c-fixed-banner--right .c-fixed-banner__inner a {
  display: inline-block;
  color: #fff;
  background-color: #F0E7E5;
  padding: 2em 0.8em;
  text-decoration: none;
  letter-spacing: 6px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 10px 0 0 10px;
  border: solid 2px #fff;
  border-right: none;
  min-height: -moz-max-content;
  min-height: max-content;
  transition: 0.3s;
}
.c-fixed-banner--right .c-fixed-banner__inner a span {
  position: relative;
  margin-top: 1em;
}
.c-fixed-banner--right .c-fixed-banner__inner a span::after {
  content: "";
  background-image: url("../images/mail-mark.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  height: 0.8em;
  width: 1em;
}
.c-fixed-banner--right .c-fixed-banner__inner a:hover {
  background-color: #a3a3a3;
  color: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.c-fixed-banner--left {
  top: 70%;
  transform: translateY(-50%);
  left: -80px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 960px) {
  .c-fixed-banner--left {
    display: block;
  }
}
.c-fixed-banner--left.is-inview {
  left: 0;
}
.c-fixed-banner--left .c-fixed-banner__inner {
  transform-origin: top left;
}
.c-fixed-banner--left .c-fixed-banner__inner a {
  display: inline-block;
  color: #fff;
  background-color: #D4A018;
  padding: 3em 0.8em 1em;
  text-decoration: none;
  letter-spacing: 6px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 0 10px 10px 0;
  border: solid 2px #fff;
  border-left: 0;
  min-height: -moz-max-content;
  min-height: max-content;
  transition: 0.3s;
  line-height: 1.3;
}
.c-fixed-banner--left .c-fixed-banner__inner a span {
  position: relative;
  display: block;
}
.c-fixed-banner--left .c-fixed-banner__inner a span::after {
  content: "";
  background-image: url("../images/icon-yoyaku.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  width: 20px;
}
.c-fixed-banner--left .c-fixed-banner__inner a:hover {
  background-color: #a3a3a3;
  color: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.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__left {
  flex-basis: 50%;
  background-color: #7E0119;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  font-size: 13px;
}
.c-fixed-banner--bottom .c-fixed-banner__left span {
  position: relative;
  margin-left: 10px;
}
.c-fixed-banner--bottom .c-fixed-banner__left span::after {
  content: "";
  background-image: url("../images/icon_tel.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
}
.c-fixed-banner--bottom .c-fixed-banner__right {
  flex-basis: 50%;
  background-color: #F0E7E5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  font-size: 13px;
}
.c-fixed-banner--bottom .c-fixed-banner__right span {
  position: relative;
  margin-left: 10px;
  text-align: right;
}
.c-fixed-banner--bottom .c-fixed-banner__right span::after {
  content: "";
  background-image: url("../images/icon_mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(calc(-50% + 3px));
  height: 15px;
  width: 15px;
}
.c-fixed-banner--bottom .c-fixed-banner__contact {
  width: 100%;
  background-color: #D4A018;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  justify-content: center;
}
.c-fixed-banner--bottom .c-fixed-banner__contact span {
  position: relative;
  display: block;
}
.c-fixed-banner--bottom .c-fixed-banner__contact span::after {
  content: "";
  background-image: url("../images/icon-yoyaku.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 32px;
}

.c-news-content__bg {
  position: relative;
}
.c-news-content__bg::after {
  content: "";
  background-image: url("../images/news-content-bg.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 200px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .c-news-content__bg::after {
    background-size: contain;
    height: 300px;
  }
}
.c-news-content__lists {
  padding: 0;
}
.c-news-content__list {
  width: 100%;
  padding: 10px 0;
  list-style: none;
  border-bottom: 1px dashed #333;
}
.c-news-content__link {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
.c-news-content__link:hover {
  color: #7E0119;
}
.c-news-content__head {
  flex-basis: 35%;
}
.c-news-content__head > time {
  font-weight: 600;
  display: inline-block;
  min-width: 132px;
  color: #7E0119;
}
@media screen and (min-width: 600px) {
  .c-news-content__head > time {
    min-width: 150px;
  }
}
@media screen and (min-width: 960px) {
  .c-news-content__head > time {
    margin-right: 30px;
    min-width: 150px;
  }
}
.c-news-content__title {
  font-weight: 600;
  position: relative;
  padding-right: 11px;
  flex-basis: 100%;
}
@media screen and (min-width: 960px) {
  .c-news-content__title {
    flex-basis: 65%;
  }
}
.c-news-content__title::after {
  content: "";
  background-image: url("../images/arrow-red.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 1em;
  width: 1em;
}
.c-news-content__categories {
  min-width: 55px;
  font-size: 10px;
  font-weight: 600;
  margin-right: 6px;
  padding: 2px 4px;
  border-radius: 2px;
  flex-basis: 18%;
  display: inline-block;
}
.c-news-content__category {
  list-style-type: none;
  text-align: center;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 2px;
  background-color: #333333;
  padding: 2px 4px;
  width: 70px;
  display: inline-block;
  color: white;
}
.c-news-content__button {
  text-align: center;
  position: relative;
  z-index: 100;
}
.c-news-content__notinfo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.c-news-content__notinfo p {
  font-weight: 600;
}

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

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

.c-section-title h2, .c-section-title h3 {
  color: #7E0119;
  font-size: clamp(22px, 2vw, 30px);
  text-align: center;
  line-height: 1.5;
}
.c-section-title p {
  text-align: center;
  font-weight: 600;
}

.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: 900;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
}
.c-section-title-02 p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: #D4A018;
}

.c-section-title-03 h2,
.c-section-title-03 h3 {
  text-transform: uppercase;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 0;
  display: block;
  font-weight: 800;
  color: #333;
  position: relative;
  padding-top: 10px;
  line-height: 1.2;
  font-family: "Barlow Condensed", sans-serif;
}
.c-section-title-03 h2::before,
.c-section-title-03 h3::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 1px;
  background-color: #D4A018;
  left: 0;
  top: 0;
}
.c-section-title-03 span {
  display: block;
  font-size: clamp(12px, 2vw, 14px);
  color: #D4A018;
  font-weight: 600;
}

.c-section-title-04 {
  text-align: center;
  margin-bottom: 1em;
}
.c-section-title-04 h3 {
  font-size: clamp(22px, 2vw, 30px);
  position: relative;
  text-align: center;
  font-weight: 900;
  line-height: 1.5;
}
.c-section-title-04 h3::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icon-pikapika.png");
}
@media screen and (min-width: 960px) {
  .c-section-title-04 h3 {
    text-align: center;
  }
}

.c-content-card-01 {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 820px) {
  .c-content-card-01 {
    padding-bottom: 150px;
  }
}
.c-content-card-01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #F0E7E5;
  width: 100%;
  height: 65%;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .c-content-card-01::after {
    height: 50%;
  }
}
.c-content-card-01__inner {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .c-content-card-01__image {
    flex-basis: 60%;
  }
}
.c-content-card-01__image img {
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .c-content-card-01__image img {
    border-radius: 30px 0 0 30px;
    aspect-ratio: 5/4;
  }
}
@media screen and (min-width: 1280px) {
  .c-content-card-01__image img {
    aspect-ratio: 5/3;
  }
}
.c-content-card-01__desc {
  width: 90%;
  position: relative;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7E0119;
  padding: 20px 15px;
  border-radius: 10px;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .c-content-card-01__desc {
    border-radius: 0 30px 30px 0;
    position: absolute;
    width: 70%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .c-content-card-01__desc {
    width: 60%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    padding-right: 10%;
  }
}
.c-content-card-01__title {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .c-content-card-01__title {
    text-align: left;
  }
}
.c-content-card-01__title h2 {
  line-height: 1.5;
}
.c-content-card-01__title h2 em {
  font-style: normal;
  font-size: 1.2em;
}
.c-content-card-01__text {
  font-weight: 500;
  text-align: justify;
}
.c-content-card-01__text p {
  margin-bottom: 10px;
}
.c-content-card-01__box {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  color: #333;
  justify-content: space-between;
  gap: 10px;
}
.c-content-card-01__box li {
  background-color: #fff;
  border-radius: 10px;
  flex-basis: 48.3%;
  padding: 15px 8px;
}
@media screen and (min-width: 600px) {
  .c-content-card-01__box li {
    flex-basis: 32%;
  }
}
.c-content-card-01__box li img {
  width: 70px;
  margin: 10px auto 0;
}
.c-content-card-01__box li p {
  display: flex;
  justify-content: center;
  line-height: 1.2;
  font-size: 13px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .c-content-card-01--row {
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: 20%;
  }
}

@media screen and (min-width: 960px) {
  .c-content-card-01--reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
}

.c-trouble {
  max-width: 900px;
  margin: 30px auto 0;
}
.c-trouble__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.c-trouble__list li {
  margin-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  align-content: flex-start;
  width: 100%;
  gap: 10px 0;
}
@media screen and (min-width: 600px) {
  .c-trouble__list li {
    flex-basis: 49%;
  }
}
.c-trouble img {
  width: 12%;
}
@media screen and (min-width: 600px) {
  .c-trouble img {
    width: 10%;
  }
}
.c-trouble p {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 820px) {
  .c-trouble p {
    font-size: 18px;
  }
}
.c-trouble p span {
  background: linear-gradient(transparent 60%, #fff799 60%);
}
.c-trouble__comment {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 50px;
  box-sizing: border-box;
  flex: 1;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c-trouble__comment {
    padding: 10px;
  }
}
.c-trouble__comment:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -23px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 20px solid #fff;
  z-index: 0;
}
.c-trouble__text {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 18px);
}

.c-post-slider-01 {
  overflow: hidden;
}
.c-post-slider-01__desc {
  width: 90%;
  margin: 0 auto 3em;
  max-width: 1200px;
  text-align: center;
}
.c-post-slider-01__lists {
  list-style: none;
  padding: 0;
  width: 33.3333333333%;
}
.c-post-slider-01__list {
  position: relative;
  overflow: hidden;
}
.c-post-slider-01__list:hover .c-post-slider-01__title {
  opacity: 1;
  transform: translateY(0);
}
.c-post-slider-01__list.swiper-slide-active {
  opacity: 1;
  transform: translateY(0);
}
.c-post-slider-01__list.swiper-slide-active .c-post-slider-01__title {
  opacity: 1;
  transform: translateY(0);
}
.c-post-slider-01__img {
  aspect-ratio: 4/5;
}
.c-post-slider-01__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post-slider-01__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  opacity: 1;
  transform: translateY(63px);
  transition: all 0.6s ease;
}
.c-post-slider-01__title h3 {
  font-size: clamp(15px, 2vw, 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-post-slider-01__btn {
  text-align: center;
}
.c-post-slider-01__not-info {
  text-align: center;
  padding: 50px 0;
}

.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(18px, 2vw, 25px);
}
.p-contact-404__button {
  text-align: center;
}

.p-news-content__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
  list-style: none;
  gap: 2em 1.4em;
}
@media screen and (min-width: 600px) {
  .p-news-content__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-news-content__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-news-content__list a {
  text-decoration: none;
  color: #333;
}
.p-news-content__desc-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
}
.p-news-content__desc-meta time {
  position: relative;
  padding-left: 1.3em;
}
.p-news-content__desc-meta time::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url("../images/icon_time.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 6px;
}
.p-news-content__category {
  padding: 0;
  list-style: none;
}
.p-news-content__category li {
  position: relative;
  padding-left: 1.3em;
}
.p-news-content__category li::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url("../images/icon_folder.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 6px;
}
.p-news-content__desc {
  padding: 10px;
}
.p-news-content__image {
  width: 100%;
  transform: none;
  border-radius: 10px;
  border: 1px solid #ccc;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.p-news-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-news-content__title {
  font-weight: 600;
  margin-bottom: 0.5em;
}
.p-news-content__excerpt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.p-news-content__notinfo {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-search-results h3 {
  font-size: clamp(20px, 3vw, 28px);
}

/*ページナビ-----------*/
.wp-pagenavi {
  padding: 20px 0;
  font-size: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.wp-pagenavi a {
  color: #333;
  padding: 5px 5px;
  border: none !important;
}
.wp-pagenavi .pages {
  /* 左の表記 */
  margin-right: 20px;
  display: none;
}
.wp-pagenavi span.current {
  color: #7E0119;
  border: none;
  position: relative;
}
.wp-pagenavi span.current::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #7E0119;
  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: #7E0119;
}

.p-news-wrapper {
  justify-content: space-between;
}

.p-news-article {
  flex-basis: 70%;
  position: relative;
  margin-bottom: 40px;
}
.p-news-article::before {
  content: "";
  height: 3px;
  width: calc(100% + 2px);
  display: block;
  background: #161c21;
  position: absolute;
  top: -1px;
  left: -1px;
}
.p-news-article__inner {
  border: 1px solid #ddd;
}
.p-news-article__header {
  padding: 2em 5%;
  color: #333;
}
.p-news-article__header img {
  display: inline-block;
  width: 18px;
}
.p-news-article__body {
  background-color: #fff;
  border-radius: 10px;
  padding: 2em 5%;
  min-height: 300px;
}
.p-news-article__body h2 {
  font-size: clamp(19px, 2.5vw, 23px);
  margin-bottom: 10px;
  line-height: 1.5;
}
.p-news-article__body h3 {
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
  line-height: 1.5;
}
.p-news-article__body p,
.p-news-article__body ul,
.p-news-article__body img {
  margin-bottom: 10px;
}
.p-news-article__date {
  line-height: 1.2;
  font-weight: 900;
}
.p-news-article__title {
  line-height: 1.4;
  font-size: clamp(19px, 3vw, 30px);
}
.p-news-article__thumb {
  width: 100%;
  margin-bottom: 2em;
  aspect-ratio: 9/5;
}
.p-news-article__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

/*シングルページのページ送り*/
.p-post-links {
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
  list-style: none;
  padding: 0;
  display: flex;
}
.p-post-links a {
  color: #333;
  text-decoration: none;
}

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

.p-post-link-next {
  text-align: right;
  justify-content: flex-end;
}
.p-post-link-next a {
  position: relative;
}
.p-post-link-next a::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.p-post-link-prev a {
  position: relative;
}
.p-post-link-prev a::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/arrow-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.p-post-sidebar {
  flex-basis: 27%;
  position: relative;
}
.p-post-sidebar__inner {
  position: sticky;
  top: 130px;
}
.p-post-sidebar__title {
  background-color: #7E0119;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.p-search-content {
  border: 1px solid #7E0119;
}
.p-search-content__title {
  background-color: #7E0119;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.p-search-content form {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.p-search-content input {
  flex-basis: 78%;
}
.p-search-content button {
  background-color: #7E0119;
  color: #fff;
  border: 1px solid #7E0119;
}

.p-sidebar-list {
  margin-bottom: 20px;
}
.p-sidebar-list__title {
  background-color: #7E0119;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.p-sidebar-list__archive-list {
  padding: 0;
  list-style: none;
}
.p-sidebar-list__archive-list a {
  display: inline-block;
  padding: 10px;
  color: #535353;
  text-decoration: none;
  border-bottom: 1px solid #eeeeee;
  font-size: 15px;
  width: 100%;
}
.p-sidebar-list__archive-list a span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-sidebar-yearly {
  display: flex;
  gap: 3px;
}
.p-sidebar-yearly__title {
  background-color: #7E0119;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 60px;
}
.p-sidebar-yearly__select {
  flex: 1;
  font-size: 14px;
}

.p-related-posts__title {
  font-size: clamp(23px, 3.5vw, 36px);
  border-bottom: 1px solid #535353;
}
.p-related-posts__lists {
  justify-content: space-between;
  gap: 20px;
}
.p-related-posts__item {
  flex-basis: 48%;
}
.p-related-posts__link {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #333;
}
.p-related-posts__thumb {
  flex-basis: 20%;
  aspect-ratio: 1/1;
}
.p-related-posts__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-related-posts__content {
  flex-basis: 78%;
}
.p-related-posts__content h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  font-size: clamp(14px, 1.8vw, 16px);
}
.p-related-posts__meta {
  display: flex;
  margin-top: 10px;
  font-size: 13px;
  gap: 1em;
}
.p-related-posts__meta time {
  position: relative;
  padding-left: 1.3em;
}
.p-related-posts__meta time::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url("../images/icon_time.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 6px;
}
.p-related-posts__category {
  padding: 0;
  list-style: none;
}
.p-related-posts__category li {
  position: relative;
  padding-left: 1.3em;
}
.p-related-posts__category li::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url("../images/icon_folder.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 6px;
}
.p-related-posts__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.p-works-title {
  transform: rotate(-5deg);
  width: 85%;
  max-width: 400px;
  margin: 0 auto;
}
.p-works-title h2 {
  text-align: center;
  font-size: clamp(19px, 2.5vw, 24px);
  line-height: 1.3;
}
.p-works-title h2 span {
  background-color: #7E0119;
  padding: 6px 25px 7px 25px;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  position: relative;
}
.p-works-title h2 span:after {
  position: absolute;
  right: 50%;
  bottom: -1.2rem;
  transform: translateX(50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #7E0119 transparent transparent transparent;
  border-width: 1.2rem 0.8rem 0 0.8rem;
}

.p-guidebook-present {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 820px) {
  .p-guidebook-present {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.p-guidebook-present__image {
  flex: 0 0 40%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.p-guidebook-present__image::after {
  content: "大満足の49P掲載";
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: #222;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.p-guidebook-present__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-guidebook-present__text {
  flex: 1;
  line-height: 1.8;
}
.p-guidebook-present__text h3 {
  text-align: center;
  color: #7E0119;
  margin-bottom: 10px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .p-guidebook-present__text h3 {
    text-align: left;
  }
}
.p-guidebook-present__button {
  text-align: center;
}
.p-guidebook-present__button .c-button {
  min-width: 320px;
  text-align: left;
  padding: 13px 10px 13px 80px;
  font-size: 14px;
  background-color: #D4A018;
  margin-top: 10px;
}
.p-guidebook-present__button .c-button::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 25px;
  background-image: url("../images/icon-yoyaku.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 2em;
  height: 2em;
}

.p-support-title {
  text-align: center;
}
.p-support-title h2 {
  display: flex;
  align-items: center;
  transform: translateY(10%);
  justify-content: center;
  line-height: 1;
  color: #7E0119;
  font-size: clamp(22px, 2vw, 30px);
}
.p-support-title img {
  height: 48px;
}
@media screen and (min-width: 820px) {
  .p-support-title img {
    height: 65px;
  }
}
.p-support-title span {
  margin-top: 15px;
}

.p-support__inner {
  gap: 30px 10px;
  justify-content: space-between;
}
.p-support__block {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 10px 10px;
  flex-basis: 49%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-support__block {
    flex-basis: 32%;
    padding: 40px 20px 20px;
  }
}
.p-support__block::before {
  content: "";
  color: #fff;
  background-color: #D4A018;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
}
.p-support__block h3 {
  text-align: center;
  color: #7E0119;
  margin-bottom: 1em;
  line-height: 1.4;
  font-weight: 900;
}
.p-support__block:nth-of-type(1)::before {
  content: "1";
}
.p-support__block:nth-of-type(2)::before {
  content: "2";
}
.p-support__block:nth-of-type(3)::before {
  content: "3";
}

.p-approach__inner {
  justify-content: space-between;
  gap: 20px;
}
.p-approach__image {
  flex-basis: 47%;
}
.p-approach__image img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-approach__text {
  flex-basis: 49%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-approach__text dl dt {
  font-size: clamp(20px, 3vw, 23px);
  color: #7E0119;
  font-weight: bold;
}
.p-approach__text dl dd {
  font-weight: bold;
}
.p-approach__text dl dd:nth-child(2) {
  margin-bottom: 10px;
}

.p-message-banner {
  background-image: url("../images/front__message-banner.jpg");
  aspect-ratio: 3/2;
  background-size: cover;
  position: relative;
  background-position: center;
}
@media screen and (min-width: 600px) {
  .p-message-banner {
    aspect-ratio: 2/1;
  }
}
@media screen and (min-width: 960px) {
  .p-message-banner {
    aspect-ratio: 3/1;
  }
}
.p-message-banner::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-message-banner__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.p-message-banner__text {
  color: #fff;
  position: relative;
  z-index: 100;
  text-align: center;
}
.p-message-banner__text h3 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 900;
}
.p-message-banner__text span {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
}

.p-feature-cards-title h2 {
  font-size: clamp(20px, 3vw, 30px);
  text-align: center;
  line-height: 1.3;
}

.p-feature-cards {
  max-width: 800px;
  margin: 40px auto 0;
}
.p-feature-cards__list {
  justify-content: space-between;
  gap: 30px 20px;
}
.p-feature-cards__item {
  border: 2px solid #7E0119;
  border-radius: 10px;
  flex-basis: 48%;
  padding: 20px;
}
@media screen and (min-width: 820px) {
  .p-feature-cards__item {
    padding: 20px 30px;
  }
}
.p-feature-cards__item h3 {
  color: #7E0119;
  text-align: center;
  font-size: clamp(17px, 2vw, 19px);
  margin-bottom: 10px;
}
.p-feature-cards__icon {
  margin: 0 auto 20px;
  width: 100px;
}
.p-feature-cards__desc {
  padding: 0;
  padding-left: 20px;
  font-size: 15px;
}

.p-partner-banner {
  justify-content: space-between;
  gap: 10px;
}
.p-partner-banner__item {
  background-color: #7E0119;
  color: #fff;
  padding: 20px;
  flex-basis: 49%;
  display: flex;
  border-radius: 10px;
}
@media screen and (min-width: 820px) {
  .p-partner-banner__item {
    flex-basis: 32%;
  }
}
.p-partner-banner__item p {
  font-weight: bold;
}
.p-partner-banner__icon {
  width: 30px;
  background-image: url("../images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-partner__content p {
  font-weight: 600;
  display: flex;
  justify-content: center;
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 10px;
  text-align: center;
}
.p-partner__image {
  max-width: 400px;
  margin: 0 auto;
}
.p-partner__image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-partner__pmaker img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-partner__button {
  text-align: center;
}

/*
　お客さまの声
================================*/
.p-voice__inner {
  gap: 20px 10px;
  justify-content: space-between;
}
.p-voice__block {
  flex-basis: 48%;
  padding: 10px;
  border-radius: 10px;
  background-color: #f7f7f7;
}
@media screen and (min-width: 600px) {
  .p-voice__block {
    padding: 20px;
  }
}
@media screen and (min-width: 820px) {
  .p-voice__block {
    padding: 30px;
  }
}
.p-voice__block a {
  color: #333;
  text-decoration: none;
}
.p-voice__image {
  border-radius: 10px;
}
.p-voice__image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.p-voice__text {
  padding-top: 20px;
}
.p-voice__text h3 {
  color: #7E0119;
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
}
.p-voice__text p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-voice__button {
  width: 100%;
  text-align: center;
}

/*
　スタッフ紹介
================================*/
.p-staff-title {
  text-align: center;
}
.p-staff-title h2,
.p-staff-title h3 {
  display: flex;
  align-items: center;
  transform: translateY(10%);
  justify-content: center;
  line-height: 1;
  color: #7E0119;
  font-size: clamp(22px, 2vw, 30px);
}
.p-staff-title h2 {
  letter-spacing: 0.1px;
}
.p-staff-title img {
  height: 40px;
}
@media screen and (min-width: 820px) {
  .p-staff-title img {
    height: 65px;
  }
}
.p-staff-title span {
  font-size: 15px;
  margin-top: 15px;
  font-size: clamp(15px, 3vw, 28px);
}

.p-staff__block {
  padding: 10px;
  border-radius: 10px;
  background-color: #f7f7f7;
  gap: 20px 30px;
  justify-content: space-between;
}
.p-staff__block:last-child {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 600px) {
  .p-staff__block {
    padding: 20px;
  }
}
@media screen and (min-width: 820px) {
  .p-staff__block {
    padding: 40px;
  }
}
.p-staff__image {
  flex-basis: 30%;
  min-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-staff__image {
    flex-basis: 40%;
  }
}
.p-staff__image img {
  border-radius: 10px;
}
.p-staff__text {
  flex: 1;
}
.p-staff__name {
  color: #7E0119;
  font-size: clamp(17px, 2.5vw, 19px);
  margin-bottom: 10px;
  font-weight: 600;
}
.p-staff__name span {
  font-size: 0.8em;
}
.p-staff__name h3 {
  line-height: 1;
}
.p-staff__career {
  margin-bottom: 20px;
}
.p-staff__career dt {
  background-color: #D4A018;
  color: #fff;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.5;
  font-size: clamp(16px, 2.5vw, 19px);
}
.p-staff__career-list {
  padding: 0;
  list-style: none;
}

/*
　よくある質問
================================*/
.p-faq__item {
  margin-bottom: 2.4em;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.p-faq__question {
  background-color: #7E0119;
  color: #fff;
  font-weight: 700;
  padding: 1em;
  font-size: clamp(15px, 2vw, 18px);
}
.p-faq__answer {
  background-color: #f8f8f8;
  padding: 1em;
  font-size: 1em;
  line-height: 1.8;
}

.p-step-title h2 {
  text-align: center;
  font-size: clamp(19px, 2.5vw, 24px);
}
.p-step-title h2 span {
  background-color: #7E0119;
  padding: 6px 10px 7px 10px;
  width: 80%;
  max-width: 370px;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  position: relative;
}
.p-step-title h2 span:after {
  position: absolute;
  right: 50%;
  bottom: -1.2rem;
  transform: translateX(50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #7E0119 transparent transparent transparent;
  border-width: 1.2rem 0.8rem 0 0.8rem;
}

.p-step-cards {
  margin: 0 auto;
}
.p-step-cards__list {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media screen and (min-width: 960px) {
  .p-step-cards__list {
    gap: 40px 24px;
  }
}
.p-step-cards__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.p-step-cards__item h3 {
  color: #7E0119;
  text-align: center;
  font-size: clamp(17px, 2vw, 19px);
  margin-bottom: 10px;
}
.p-step-cards__icon {
  margin: 0 auto 20px;
}
.p-step-cards__icon img {
  height: 100px;
  margin: 0 auto;
}
.p-step-cards__desc {
  padding: 0;
  padding-left: 20px;
  font-size: 15px;
}

/*
　区切り線
================================*/
.p-border-line {
  background-color: #fff;
  position: relative;
}
.p-border-line::after {
  content: "";
  display: block;
  border-bottom: 0.5px solid #ccc;
  width: 100%;
}
.p-border-line--bg-pink {
  background-color: #F0E7E5;
}/*# sourceMappingURL=layout.css.map */