@charset "UTF-8";
/*==================================
* Base Typography - body
* サイト全体のベーステキスト設定
* フォント、サイズ、行間、字間を整える
==================================*/
body {
  font-family: "Zen Kaku Gothic New", 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-front-store-message__buttons, .p-archive-shop__block, .p-archive-shop__buttons, .p-prex-feature__block__body, .p-prex-beauty-comparison, .p-support__block__inner, .p-flow__block, .c-faq__content, .c-menu-list, .c-info-banner, .c-banner-col3 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .u-flex--md, .p-front-store-message__buttons, .p-archive-shop__block, .p-archive-shop__buttons, .p-prex-feature__block__body, .p-prex-beauty-comparison, .p-support__block__inner, .p-flow__block, .c-faq__content, .c-menu-list, .c-info-banner, .c-banner-col3 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.u-flex--lr, .p-front-company__inner, .p-shop__message, .p-archive-shop__text__inner, .p-archive-shop-area__inner, .c-form tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 820px) {
  .u-flex--lr, .p-front-company__inner, .p-shop__message, .p-archive-shop__text__inner, .p-archive-shop-area__inner, .c-form tr {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.u-flex--lg, .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-news-wrapper, .p-related-posts__lists, .c-news-content__link {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/*==================================
* font-family
==================================*/
.u-font--gothic, .p-front-company__text, .p-front-company__info, .p-front-works__text, .p-single-prize__meta-title, .p-search-content, .p-sidebar-list, .p-sidebar-yearly, .p-related-posts__link, .p-archive-prize__meta-title, .p-prex-comparison, .p-prex-feature__block__head::after, .p-prex-beauty-comparison, .c-estate-search-07 li, .p-contact-button__button a, .c-section-title-08__inner p, .c-faq__text, .c-menu-list__text, .c-post-slider-01__title h3, .c-fixed-banner, .c-news-content-02__desc, .c-news-content__list, .c-banner-col3__text, .c-mobile-menu__contact-button a, .c-mobile-menu__page-link-button a, .c-breadcrumb, .l-footer, .p-page-top__button, .l-header__li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-font--mincho, .p-single-prize__title h2, .p-related-posts__title, .p-archive-prize__head-text h3, .p-archive-prize__title h2, .p-recruit__head-text h3, .p-recruit-block__text h3, .p-prex__head-text h3, .p-prex-feature__text h3, .p-prex-feature__block__head, .p-prex-beauty__head-text h3, .p-prex-design__head-text h3, .p-contact__head-text h3, .p-loan__head-text h3, .p-loan__block h3, .p-support__head-text h3, .p-support__block h3, .p-flow__head-text h3, .p-flow__block__text h3, .c-section-title-08__inner h2, .c-faq summary, .c-section-title p, .c-section-title-02 span, .c-section-title-03 h2, .c-content-title, .c-content-title-02 span, .c-content-title-03 h2,
.c-content-title-03 h3, .l-hero-sub__title > span, .u-bracket--slash {
  font-family: "Zen Old Mincho", serif;
}

.u-font--en, .p-single-prize__more, .p-archive-prize__more, .p-archive-work__more, .c-section-title-08__inner p span, .c-post-slider-01__title span, .c-section-title h2, .c-content-title-02 h2,
.c-content-title-02 h3, .c-arrow-button, .c-arrow-button-02, .l-hero-sub__title em {
  font-family: "Lexend", sans-serif;
}

/*==================================
* font-size
==================================*/
.u-font-size--sm, .p-front-works__term-list li a, .p-single-prize__term-list li a, .p-archive-prize__term-list li a, .p-archive-work__term-list li a, .p-archive-shop-area__list li a, .c-form__privacy, .c-details-list dl, .c-news-content__title, .c-news-content__notinfo p, .c-post-links__all a, .c-button {
  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%, #F08307 75%);
}

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

/*==================================
* テキストブラケット（記号装飾）
==================================*/
.u-bracket--slash {
  position: relative;
  font-weight: inherit;
  font-size: inherit;
  color: currentColor;
  display: inline-block;
}
.u-bracket--slash::before, .u-bracket--slash::after {
  display: inline-block;
  line-height: 1;
  font-weight: inherit;
  font-size: inherit;
  color: currentColor;
  position: absolute;
  bottom: 7px;
}
.u-bracket--slash::before {
  content: "＼";
  left: -1.5em;
}
.u-bracket--slash::after {
  content: "／";
  right: -1.5em;
}

/*==================================
* align
==================================*/
.u-text-top {
  vertical-align: top !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-middle {
  vertical-align: middle !important;
}

.u-text-bottom {
  vertical-align: bottom !important;
}

@media screen and (min-width: 960px) {
  .u-text-pc-center {
    text-align: center;
  }
}

/*==================================
* font-weight
==================================*/
.u-fw-300 {
  font-weight: 300 !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-600 {
  font-weight: 600 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fw-800 {
  font-weight: 800 !important;
}

.u-fw-900 {
  font-weight: 900 !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

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

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

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

.u-pb--lg, .p-front-store-message, .p-company-recruit, .p-contact-button {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--lg, .p-front-store-message, .p-company-recruit, .p-contact-button {
    padding-bottom: 120px !important;
  }
}

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

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

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

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

.u-mb--md, .p-front-works__text, .p-front-works__achievement, .p-single-prize__shop, .p-single-prize__button, .p-single-work__button, .p-search-content, .p-single-post__button, .p-archive-shop__block, .p-prex-comparison__block, .p-prex-feature__block, .p-prex-beauty-comparison__block, .p-contact-thanks h2, .p-loan__block, .p-support__block, .c-legal-content .c-legal-block, .c-form, .c-form__privacy, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-section-title-08, .c-post-links, .c-mobile-menu__page-link, .c-mobile-menu__sns {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--md, .p-front-works__text, .p-front-works__achievement, .p-single-prize__shop, .p-single-prize__button, .p-single-work__button, .p-search-content, .p-single-post__button, .p-archive-shop__block, .p-prex-comparison__block, .p-prex-feature__block, .p-prex-beauty-comparison__block, .p-contact-thanks h2, .p-loan__block, .p-support__block, .c-legal-content .c-legal-block, .c-form, .c-form__privacy, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-section-title-08, .c-post-links, .c-mobile-menu__page-link, .c-mobile-menu__sns {
    margin-bottom: 60px !important;
  }
}

.u-mb--lr, .p-recruit__head-text, .p-contact-404 h2 {
  margin-bottom: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--lr, .p-recruit__head-text, .p-contact-404 h2 {
    margin-bottom: 100px !important;
  }
}

.u-mb--lg, .p-single-prize, .p-single-prize__term-links, .p-archive-prize, .p-archive-prize__term-links, .p-archive-work__term-links {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--lg, .p-single-prize, .p-single-prize__term-links, .p-archive-prize, .p-archive-prize__term-links, .p-archive-work__term-links {
    margin-bottom: 120px !important;
  }
}

/*==================================
* Margin Top
==================================*/
.u-mt--sm, .p-single-prize__inner, .p-archive-prize__inner, .p-company-recruit__button, .p-contact-button__button, .c-mobile-menu__contact, .c-mobile-menu__page-link, .c-mobile-menu__page-link-button {
  margin-top: 16px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--sm, .p-single-prize__inner, .p-archive-prize__inner, .p-company-recruit__button, .p-contact-button__button, .c-mobile-menu__contact, .c-mobile-menu__page-link, .c-mobile-menu__page-link-button {
    margin-top: 25px !important;
  }
}

.u-mt--md, .p-front-store-message__buttons, .p-single-prize__head-text, .p-work-content__meta, .p-shop__map, .p-news-wrapper, .wp-pagenavi, .p-archive-prize__head-text, .p-archive-work__inner, .p-archive-shop__inner, .p-archive-shop-area__inner, .p-prex__head-text, .p-prex-comparison, .p-prex-feature__text, .p-prex-feature__content, .p-prex-beauty__head-text, .p-prex-beauty-comparison, .p-prex-design__head-text, .p-contact__head-text, .p-loan__head-text, .p-support__head-text, .p-company-map, .c-legal-content, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-slick-gallery-wrapper, .c-faq, .c-mobile-menu__sns {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--md, .p-front-store-message__buttons, .p-single-prize__head-text, .p-work-content__meta, .p-shop__map, .p-news-wrapper, .wp-pagenavi, .p-archive-prize__head-text, .p-archive-work__inner, .p-archive-shop__inner, .p-archive-shop-area__inner, .p-prex__head-text, .p-prex-comparison, .p-prex-feature__text, .p-prex-feature__content, .p-prex-beauty__head-text, .p-prex-beauty-comparison, .p-prex-design__head-text, .p-contact__head-text, .p-loan__head-text, .p-support__head-text, .p-company-map, .c-legal-content, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-slick-gallery-wrapper, .c-faq, .c-mobile-menu__sns {
    margin-top: 60px !important;
  }
}

.u-mt--lr, .p-front-works__term-links, .p-front-works__button, .p-single-prize__notinfo__button, .p-single-prize__term-links, .p-archive-prize, .p-archive-prize__notinfo__button, .p-archive-prize__term-links, .p-archive-work__notinfo__button, .p-archive-work__term-links, .p-archive-shop-area__links, .p-contact-404, .p-contact-404__button, .p-contact-thanks, .p-contact-thanks__button, .p-loan__content, .p-support__content, .p-flow__content {
  margin-top: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--lr, .p-front-works__term-links, .p-front-works__button, .p-single-prize__notinfo__button, .p-single-prize__term-links, .p-archive-prize, .p-archive-prize__notinfo__button, .p-archive-prize__term-links, .p-archive-work__notinfo__button, .p-archive-work__term-links, .p-archive-shop-area__links, .p-contact-404, .p-contact-404__button, .p-contact-thanks, .p-contact-thanks__button, .p-loan__content, .p-support__content, .p-flow__content {
    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-front-store-message__inner, .p-front-company .c-content-title, .p-front-company__inner, .p-front-store-list, .p-front-works__text, .p-front-works__achievement, .p-front-works__term-links, .p-archive-shop-area__links, .p-border-line::after, .l-section__container, .l-footer__content {
  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;
}
.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.5s ease-in-out;
}
.u-action-zoom-in__mask:hover img {
  transform: scale(1.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*==================================
 ほのかに光るテキスト
===================================*/
.u-glow-text {
  visibility: hidden;
}

.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%;
  display: flex;
  align-items: center;
  background-color: transparent;
  z-index: 2000;
  transition: 0.3s;
  height: 50px;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 100px;
  }
}
.l-header.triggered {
  background-color: rgba(255, 255, 255, 0.8);
  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.triggered .l-header__logo-trigger {
  display: none;
}
.l-header.triggered .l-header__logo-triggered {
  display: inline-block;
}
.l-header.triggered .l-header__li a,
.l-header.triggered .l-header__sns a {
  opacity: 1;
}
.l-header__inner {
  margin: 0 auto;
  width: 95%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .l-header__inner {
    align-items: center;
  }
}
.l-header__nav {
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__sns {
  width: 30px;
}
.l-header__sns a {
  opacity: 0;
}
.l-header__sns a:hover {
  opacity: 0.6 !important;
}
.l-header__ul {
  height: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
}
.l-header__li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.l-header__li a {
  position: relative;
  text-decoration: none;
  padding: 5px 9px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #333;
  opacity: 0;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 960px) {
  .l-header__li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__li a {
    font-size: 18px;
    padding: 5px 14px;
  }
}
.l-header__li a:hover {
  color: #F08307;
}
.l-header__li.current-menu-item > a, .l-header__li.current-menu-parent > a {
  color: #F08307;
}
.l-header__logo {
  width: 140px;
  padding: 5px;
}
@media screen and (min-width: 960px) {
  .l-header__logo {
    padding: 10px 0;
    width: 270px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__logo {
    width: 300px;
  }
}
.l-header__logo a {
  display: flex;
}
.l-header__logo-trigger {
  display: inline-block;
}
.l-header__logo-triggered {
  display: none;
}

.l-footer {
  background-color: #8FC31F;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-footer {
    padding-bottom: 10px;
  }
}
.l-footer__menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.l-footer__parent-menu {
  display: inline-block;
  width: 100%;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  padding-left: 1em;
  display: inline-block;
  width: 100%;
  border-bottom: 0.1px solid #e6ffb4;
  position: relative;
}
@media screen and (min-width: 820px) {
  .l-footer__parent-menu {
    padding: 3px 0;
    padding-left: 1em;
  }
}
.l-footer__parent-menu::before {
  content: "";
  background-image: url("../images/arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  left: 0;
  height: 10px;
  width: 10px;
}
.l-footer__parent-menu:hover {
  opacity: 0.8;
}
.l-footer__sub-menu {
  padding: 0;
  list-style: none;
}
.l-footer__sub-menu a {
  color: #fff;
  text-decoration: none;
  padding: 3px 0;
  display: inline-block;
  width: 100%;
}
.l-footer__sub-menu a:hover {
  opacity: 0.8;
}
.l-footer__contact-btn {
  text-align: center;
}
.l-footer__contact-btn span {
  position: relative;
}
.l-footer__contact-btn span::before {
  content: "";
  background-image: url("../images/mail-mark.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -1.5em;
  top: 50%;
  transform: translateY(calc(-50% + 3px));
  height: 0.8em;
  width: 1em;
}
.l-footer__bottom {
  padding: 1em 0;
  font-size: clamp(14px, 2vw, 16px);
}
.l-footer__copyright {
  color: #fff;
  text-align: center;
}
.l-footer__bottom__links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 10px;
}
@media screen and (min-width: 820px) {
  .l-footer__bottom__links {
    grid-template-columns: repeat(4, auto);
    gap: 2em;
  }
}
.l-footer__bottom__links a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0 5px;
  font-size: clamp(14px, 2vw, 15px);
}
.l-footer__bottom__links a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 0.8em;
  background-color: #fff;
}
@media screen and (min-width: 820px) {
  .l-footer__bottom__links a::after {
    right: -15px;
  }
}
.l-footer__bottom__links a:nth-child(2n)::after {
  content: none;
}
@media screen and (min-width: 820px) {
  .l-footer__bottom__links a::after {
    content: "";
  }
  .l-footer__bottom__links a:nth-child(2n)::after {
    content: "";
  }
  .l-footer__bottom__links a:nth-child(4n)::after {
    content: none;
  }
}
.l-footer__bottom__links a:last-child::after {
  content: none;
}

.p-page-top {
  padding: 20px 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-page-top {
    padding: 30px 0;
  }
}
.p-page-top__button {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.1px;
  display: inline-block;
  font-size: 14px;
}
.p-page-top__button span {
  position: absolute;
  bottom: 23px;
  display: inline-block;
  width: 100%;
  z-index: 100;
}
.p-page-top__button span::before {
  content: "";
  background-image: url("../images/arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.p-page-top__button img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.3;
  display: inline-block;
  margin: 0 auto;
}

.l-hero {
  position: relative;
}
.l-hero__inner {
  overflow: hidden;
}
.l-hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100%;
  color: #fff;
  text-align: center;
}
.l-hero__title img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  .l-hero__title img {
    max-width: 200px;
  }
}
.l-hero__title p {
  margin-top: 1em;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: 3px;
}
.l-hero__slide {
  width: 100%;
  height: 100vh;
  position: relative;
}
.l-hero__slide picture {
  width: 100%;
  height: 100%;
  display: block;
}
.l-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: transform 7s ease;
}
.swiper-slide-active .l-hero__image {
  transform: scale(1);
}
.swiper-slide-next .l-hero__image, .swiper-slide-prev .l-hero__image {
  transform: scale(1.1);
}

.l-hero-sub {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-height: 800px;
  margin: 0 auto;
}
.l-hero-sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.l-hero-sub__inner {
  position: relative;
}
.l-hero-sub__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 40px));
  font-size: clamp(1.4em, 3vw, 2em);
  z-index: 300;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}
.l-hero-sub__title em {
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 0;
  display: block;
  font-weight: 500;
  position: relative;
  font-style: normal;
}
.l-hero-sub__title > span {
  display: block;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
}
.l-hero-sub__date {
  margin-top: 0.3em;
  font-size: 0.6em;
  font-weight: 800;
}
.l-hero-sub picture {
  aspect-ratio: 4/5;
}
@media screen and (min-width: 600px) {
  .l-hero-sub picture {
    aspect-ratio: 3/2;
  }
}
@media screen and (min-width: 820px) {
  .l-hero-sub picture {
    aspect-ratio: 3/1;
  }
}
.l-hero-sub picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 30%;
     object-position: 0 30%;
}

/*==================================
* 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: #F2F2F2;
}

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

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

.swiper {
  overflow: visible !important;
}

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

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

.swiper-pagination {
  position: absolute !important;
  bottom: -40px !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  background-color: #ccc !important;
  opacity: 1 !important;
  transition: background-color 0.3s !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8FC31F !important;
}

.c-breadcrumb {
  color: #535353;
  font-size: 13px;
  background-color: #F2F2F2;
}
.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: #535353;
  text-decoration: none;
}
.c-breadcrumb__inner .current-item {
  color: #8FC31F;
  font-weight: 600;
}

.c-button {
  min-width: 200px;
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  padding: 13px 35px;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.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: #000;
  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-button--green {
  background-color: #8FC31F;
}

.c-arrow-button {
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  letter-spacing: 0.1em;
  position: relative;
  box-sizing: border-box;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.5s ease-out;
  padding-right: 1em;
  transition: 0.3s;
}
.c-arrow-button:hover {
  color: #8FC31F;
}
.c-arrow-button:hover::after {
  right: -8px;
  background-image: url("../images/arrow-green.svg");
}
.c-arrow-button::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 8px;
  right: 0px;
  background-image: url("../images/arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transition: 0.3s;
}

.c-arrow-button-02 {
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  letter-spacing: 0.1em;
  position: relative;
  box-sizing: border-box;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.5s ease-out;
  padding-right: 1em;
  transition: 0.3s;
}
.c-arrow-button-02:hover {
  color: #8FC31F;
}
.c-arrow-button-02:hover::before {
  left: -15px;
  background-image: url("../images/arrow-green.svg");
}
.c-arrow-button-02::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 10px;
  left: -13px;
  background-image: url("../images/arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  transition: 0.3s;
}

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 1500;
  padding-bottom: 0;
  background-color: #fff;
  transition: height 0.5s ease;
}
@media screen and (min-width: 820px) {
  .c-mobile-menu {
    display: none;
  }
}
.c-mobile-menu__inner {
  height: 100%;
  overflow-y: auto;
}
.c-mobile-menu__button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__button {
    display: none;
  }
}
.c-mobile-menu__button span {
  background-color: #fff;
  width: 25px;
  height: 2px;
  display: block;
  margin-bottom: 5px;
  transition: transform 0.7s;
}
.c-mobile-menu__button span:last-child {
  margin-bottom: 0;
}
.c-mobile-menu__button p {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.c-mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.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 #333;
}
.c-mobile-menu__item > a:hover {
  color: #8FC31F;
  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 .l-header.triggered {
  box-shadow: none;
}
.c-mobile-menu--open .l-header__logo-trigger {
  display: none;
}
.c-mobile-menu--open .l-header__logo-triggered {
  display: inline-block;
}
.c-mobile-menu--open .c-mobile-menu {
  height: 100%;
  padding-top: 50px;
}
.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: #fff;
}
.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 {
  max-width: 500px;
  margin: 0 auto;
  width: 90%;
}
.c-mobile-menu__contact-button a {
  text-align: center;
  background-color: #F08307;
  color: #fff;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}
.c-mobile-menu__contact-button a:hover {
  background-color: #888;
}
.c-mobile-menu__contact-button a::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-mobile-menu__contact-button a span {
  position: relative;
}
.c-mobile-menu__contact-button a span::before {
  content: "";
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  z-index: 100;
  background-image: url("../images/icon_mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-mobile-menu__page-link {
  max-width: 500px;
  margin: 0 auto;
  width: 90%;
}
.c-mobile-menu__page-link-button a {
  background-color: #fff;
  color: #333;
  width: 100%;
  padding: 20px 13px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  box-shadow: 1px 1px 10px rgba(136, 136, 136, 0.2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.c-mobile-menu__page-link-button a:hover {
  background-color: #ccc;
}
.c-mobile-menu__page-link-button a::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-mobile-menu__page-link-button a::before {
  content: "";
  width: 1.3em;
  height: 1.3em;
  background-image: url("../images/icon_flow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  margin-right: 5px;
}
.c-mobile-menu__page-link-button a span {
  font-size: 0.8em;
  color: #8FC31F;
  margin-left: 5px;
}
.c-mobile-menu__page-link-button:nth-child(2) a::before {
  background-image: url("../images/icon_faq.png");
}
.c-mobile-menu__page-link-button:nth-child(3) a::before {
  background-image: url("../images/icon_loan.png");
}
.c-mobile-menu__sns {
  text-align: center;
}
.c-mobile-menu__sns a {
  width: 40px;
  width: 40px;
  padding: 5px;
  border-radius: 50%;
  background-color: #F5F5F5;
  display: inline-block;
}
.c-mobile-menu__sns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.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: #8FC31F;
  border: none;
  position: relative;
}
.wp-pagenavi span.current::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #8FC31F;
  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: #8FC31F;
}

.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-main-title {
  font-size: clamp(25px, 4vw, 40px);
}

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

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

.c-section-title-02 h2,
.c-section-title-02 h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  padding-top: 10px;
  line-height: 1.3;
  text-align: center;
}
.c-section-title-02 span {
  position: relative;
  display: inline-block;
}
.c-section-title-02 span::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 3px;
  background-color: #8FC31F;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.c-section-title-03 {
  text-align: center;
  margin-bottom: 2em;
}
.c-section-title-03 h2 {
  display: inline-block;
  font-size: clamp(23px, 3vw, 35px);
  letter-spacing: 0.1px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}
.c-section-title-03 p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
}

.c-content-title h2,
.c-content-title h3 {
  font-size: clamp(22px, 2vw, 30px);
  display: block;
  font-weight: 900;
  color: #333;
  line-height: 1;
  display: flex;
}
.c-content-title h2::before,
.c-content-title h3::before {
  content: "";
  width: 1.2em;
  height: 1.1em;
  background-image: url("../images/logo-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.c-content-title span {
  display: block;
  font-size: clamp(12px, 2vw, 14px);
  color: #e10000;
  font-weight: 600;
}

.c-content-title--tohoku h2::before,
.c-content-title--tohoku h3::before {
  background-image: url("../images/tohoku-logo-mark.png");
}

.c-content-title-02 h2,
.c-content-title-02 h3 {
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 35px);
  display: block;
  font-weight: 600;
  color: #8FC31F;
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.1px;
}
.c-content-title-02 span {
  display: block;
  font-size: clamp(12px, 2vw, 14px);
}

.c-content-title-03 {
  margin-bottom: 1em;
  text-align: center;
}
.c-content-title-03 h2,
.c-content-title-03 h3 {
  font-size: clamp(23px, 4vw, 30px);
  display: block;
  font-weight: 700;
}

.c-banner-col3 {
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}
.c-banner-col3__block {
  flex-basis: 48%;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .c-banner-col3__block {
    flex-basis: 31.5%;
  }
}
.c-banner-col3__block a {
  text-decoration: none;
  color: #333;
}
.c-banner-col3__text {
  padding: 10px 0;
}
.c-banner-col3__text h3 {
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
}
.c-banner-col3__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
}
.c-banner-col3__image img {
  aspect-ratio: 3/2;
}

.c-news-content__head {
  display: flex;
  justify-content: space-between;
}
.c-news-content__lists {
  padding: 0;
}
.c-news-content__list {
  width: 100%;
  list-style: none;
  border-bottom: 1px dashed #333;
}
.c-news-content__link {
  color: #333;
  text-decoration: none;
  padding: 10px 0;
}
.c-news-content__link:hover {
  color: #8FC31F;
}
.c-news-content__link:hover .c-news-content__title::after {
  background-image: url("../images/arrow-green.svg");
}
.c-news-content__meta {
  flex-basis: 100%;
}
@media screen and (min-width: 600px) {
  .c-news-content__meta {
    flex-basis: 25%;
  }
}
.c-news-content__meta > time {
  font-weight: 600;
  display: inline-block;
  min-width: 132px;
  font-size: clamp(14px, 2vw, 15px);
}
@media screen and (min-width: 600px) {
  .c-news-content__meta > time {
    min-width: 140px;
  }
}
.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: 1;
  }
}
.c-news-content__title::after {
  content: "";
  background-image: url("../images/arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  height: 10px;
  width: 10px;
}
.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: #707070;
  padding: 2px 4px;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  color: white;
}
.c-news-content__category--parent {
  background-color: #8FC31F;
}
.c-news-content__category--topics {
  background-color: #8FC31F;
}
.c-news-content__category--event {
  background-color: #F08307;
}
.c-news-content__notinfo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.c-news-content__notinfo p {
  font-weight: 600;
}

.c-news-content-02__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
  list-style: none;
  gap: 2em 1em;
}
@media screen and (min-width: 600px) {
  .c-news-content-02__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .c-news-content-02__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-news-content-02__list a {
  text-decoration: none;
  color: #333;
}
.c-news-content-02__desc-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
}
.c-news-content-02__desc-meta time {
  position: relative;
  padding-left: 1.3em;
}
.c-news-content-02__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;
}
.c-news-content-02__categories {
  padding: 0;
  list-style: none;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.c-news-content-02__categories li {
  padding-left: 1em;
}
.c-news-content-02__categories li:first-child {
  position: relative;
}
.c-news-content-02__categories li:first-child::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;
}
.c-news-content-02__categories li:first-child::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1em;
  background-color: #535353;
  right: -6px;
  top: 5px;
}
.c-news-content-02__image {
  width: 100%;
  transform: none;
}
.c-news-content-02__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-news-content-02__title {
  font-weight: 600;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.c-news-content-02__excerpt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.c-news-content-02__notinfo {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-info-banner {
  justify-content: space-between;
  gap: 15px;
}
.c-info-banner__item {
  flex-basis: 48%;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}
@media screen and (min-width: 960px) {
  .c-info-banner__item {
    flex-basis: 32%;
  }
}
.c-info-banner__image img {
  width: 100%;
  height: 100%;
}
.c-info-banner__text {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  line-height: 1;
  z-index: 12;
  background-color: rgba(143, 195, 31, 0.8);
  width: 100%;
  padding: 10px;
}
.c-info-banner__text h3 {
  font-weight: bold;
  display: flex;
}
.c-info-banner__text h3::before {
  content: "";
  height: 1em;
  width: 1em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.c-info-banner__text--flow h3::before {
  background-image: url("../images/icon_flow-white.png");
}
.c-info-banner__text--faq h3::before {
  background-image: url("../images/icon_faq-white.png");
}
.c-info-banner__text--loan h3::before {
  background-image: url("../images/icon_loan-white.png");
}
.c-info-banner__arrow {
  position: relative;
  width: 100%;
  height: inherit;
}
.c-info-banner__arrow::before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 18px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: solid 1px #fff;
  border-radius: 100px;
  z-index: 12;
}
.c-info-banner__arrow::after {
  content: "";
  position: absolute;
  bottom: 13px;
  right: 26px;
  z-index: 12;
  background-image: url("../images/arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  transform: rotate(90deg);
}

.c-info-banner--col1 {
  margin-top: 30px;
}
.c-info-banner--col1 .c-info-banner__item {
  flex-basis: 100%;
}
@media screen and (min-width: 600px) {
  .c-info-banner--col1 .c-info-banner__item {
    flex-basis: 48.5%;
  }
}
@media screen and (min-width: 960px) {
  .c-info-banner--col1 .c-info-banner__item {
    flex-basis: 100% !important;
  }
}

.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: #F08307;
  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;
  display: block;
}
.c-fixed-banner--right .c-fixed-banner__inner a span::after {
  content: "";
  background-image: url("../images/icon_mail.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: #8FC31F;
  padding: 2em 0.8em;
  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;
}
.c-fixed-banner--left .c-fixed-banner__inner a span {
  position: relative;
  margin-top: 1em;
  display: block;
}
.c-fixed-banner--left .c-fixed-banner__inner a span::after {
  content: "";
  background-image: url("../images/icon_location.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  height: 1.5em;
  width: 1.3em;
}
.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: #8FC31F;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  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_location.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
}
.c-fixed-banner--bottom .c-fixed-banner__right {
  flex-basis: 50%;
  background-color: #F08307;
  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-post-slider-01 {
  overflow: hidden;
  max-width: 2000px;
  margin: 0 auto;
}
.c-post-slider-01 .c-section-title-02 {
  text-align: center;
}
.c-post-slider-01 .c-section-title-02 h2::before {
  content: none;
}
.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 a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.c-post-slider-01__image img {
  aspect-ratio: 5/4;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post-slider-01__title {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  padding: 1em;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  text-align: center;
}
.c-post-slider-01__title span {
  background-color: #000;
  color: #fff;
  position: absolute;
  right: 0;
  top: -27.3px;
  padding: 2px 30px;
  font-size: 13px;
}
.c-post-slider-01__title h3 {
  font-size: clamp(15px, 2vw, 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-post-slider-01__not-info {
  text-align: center;
  padding: 50px 0;
}

.c-details-list {
  display: block;
}
@media screen and (min-width: 600px) {
  .c-details-list {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 0;
  }
}
.c-details-list dl {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .c-details-list dl {
    display: contents;
  }
}
.c-details-list dl:first-child dd {
  border-top: 1px solid #adadad;
}
.c-details-list dl:first-child dd:nth-child(1) {
  border-top: 1px solid #8FC31F;
}
.c-details-list dd {
  padding: 5px 20px;
}
.c-details-list dd:nth-child(1) {
  text-align: left;
  padding: 5px 20px;
  font-weight: 700;
  border-bottom: 1px solid #8FC31F;
  font-size: clamp(15px, 1.5vw, 17px);
}
@media screen and (min-width: 600px) {
  .c-details-list dd:nth-child(1) {
    padding: 20px;
    padding-right: 10px;
  }
}
.c-details-list dd:nth-child(1) span {
  font-size: 14px;
  display: block;
}
@media screen and (min-width: 600px) {
  .c-details-list dd {
    padding: 20px;
    border-bottom: 1px solid #adadad;
  }
}

.c-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #8FC31F;
  z-index: 10000;
  text-align: center;
  color: #fff;
  pointer-events: none;
}
.c-splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  pointer-events: auto;
  font-size: clamp(20px, 3vw, 28px);
}
.c-splash__bg {
  display: none;
  position: fixed;
  background-color: #8FC31F;
  z-index: 1000;
}
.c-splash__bg--center-left {
  top: 0;
  right: 50%;
  width: 100%;
  height: 100vh;
  transform: scaleX(1);
  transform-origin: right;
  animation-name: splash-slide-center-left;
}
.c-splash__bg--center-right {
  top: 0;
  left: 50%;
  width: 100%;
  height: 100vh;
  transform: scaleX(1);
  transform-origin: left;
  animation-name: splash-slide-center-right;
}
.c-splash__bg--center-top {
  left: 0;
  bottom: 50%;
  width: 100%;
  height: 100vh;
  transform: scaleY(1);
  transform-origin: bottom;
  animation-name: splash-slide-center-top;
}
.c-splash__bg--center-bottom {
  left: 0;
  top: 50%;
  width: 100%;
  height: 100vh;
  transform: scaleY(1);
  transform-origin: top;
  animation-name: splash-slide-center-bottom;
}

@keyframes splash-slide-center-right {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes splash-slide-center-left {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
@keyframes splash-slide-center-top {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
@keyframes splash-slide-center-bottom {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.is-splash #l-global-container {
  background-color: #8FC31F;
  position: relative;
  z-index: 1000;
}
body.is-splash #l-global-container.is-splash-active {
  background: #fff;
  position: static;
}
body.is-splash #l-global-container.is-splash-active .c-splash__bg--center-left,
body.is-splash #l-global-container.is-splash-active .c-splash__bg--center-right,
body.is-splash #l-global-container.is-splash-active .c-splash__bg--center-top,
body.is-splash #l-global-container.is-splash-active .c-splash__bg--center-bottom {
  display: block;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
body.is-splash #l-global-container.is-preload #l-container {
  opacity: 0;
}
body.is-splash #l-global-container.is-splash-active #l-container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.c-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #8FC31F;
  z-index: 9999;
  text-align: center;
  color: #fff;
  pointer-events: none;
}
.c-splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  pointer-events: auto;
}
.c-splash__bg {
  display: none;
  position: fixed;
  background-color: #8FC31F;
  z-index: 1000;
}

body.is-splash #l-global-container.is-preload #l-container {
  opacity: 0 !important;
}
body.is-splash #l-global-container.is-splash-active .c-splash__bg {
  display: block;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
body.is-splash .c-splash__bg--down {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: scaleY(0);
  transform-origin: top;
  animation-name: splash-slide-down;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes splash-slide-down {
  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);
  }
}
body.is-splash .c-splash__bg--up {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: scaleY(0);
  transform-origin: bottom;
  animation-name: splash-slide-up;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes splash-slide-up {
  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);
  }
}
body.is-splash .c-splash__bg--right {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation-name: splash-slide-right;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes splash-slide-right {
  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);
  }
}
body.is-splash .c-splash__bg--left {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  animation-name: splash-slide-left;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes splash-slide-left {
  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);
  }
}
body.is-splash #l-global-container.is-splash-active #l-container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.c-scroll-down {
  position: absolute;
  z-index: 1000;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.c-scroll-down__text {
  display: none;
}
@media screen and (min-width: 960px) {
  .c-scroll-down__text {
    display: block;
  }
}
.c-scroll-down__text-head {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  text-align: center;
}
.c-scroll-down__text-body {
  position: relative;
  height: 6em;
  overflow-y: hidden;
}
.c-scroll-down__text-body:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.2rem;
  height: 100%;
  background-color: #fff;
  border-radius: 2px;
}
.c-scroll-down__text-body:after {
  content: "";
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.2rem;
  height: 2em;
  background-color: #8FC31F;
  border-radius: 2px;
  animation: scrollBarAnimation 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes scrollBarAnimation {
  0% {
    top: -4.8rem;
  }
  70% {
    top: 8.2rem;
  }
  100% {
    top: 13rem;
  }
}
.c-menu-list {
  padding: 0;
  list-style: none;
  justify-content: space-between;
  gap: 10px 0;
}
.c-menu-list a {
  border: 2px solid #8FC31F;
  display: inline-block;
  transition: 0.3s;
}
.c-menu-list a:hover {
  border: 2px solid #000;
}
.c-menu-list a:hover .c-menu-list__text {
  background-color: rgba(0, 0, 0, 0.7);
}
.c-menu-list__block {
  position: relative;
}
@media screen and (min-width: 600px) {
  .c-menu-list__block {
    flex-basis: 49%;
  }
}
@media screen and (min-width: 960px) {
  .c-menu-list__block {
    flex-basis: 32%;
  }
}
.c-menu-list__text {
  position: absolute;
  bottom: 6px;
  left: 0;
  background-color: rgba(143, 195, 31, 0.7);
  padding: 5px;
  width: 100%;
  color: #fff;
  transition: 0.3s;
  font-weight: 600;
}
.c-menu-list__text p {
  display: flex;
  align-items: center;
}
.c-menu-list__text p::before {
  content: "";
  height: 1em;
  width: 1em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.c-menu-list__text--faq p::before {
  background-image: url("../images/icon_faq-white.png");
}
.c-menu-list__text--loan p::before {
  background-image: url("../images/icon_loan-white.png");
}
.c-menu-list__text--support p::before {
  background-image: url("../images/icon_support-white.png");
}

.c-faq h3 {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 25px);
  margin-bottom: 1em;
}
.c-faq summary {
  background-color: #333333;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 1px 1px 1px 0 rgb(241, 241, 241);
  padding: 25px 30px 25px 10px;
  position: relative;
  list-style: none;
  transition: 0.3s;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-size: clamp(16px, 3vw, 23px);
}
@media screen and (min-width: 600px) {
  .c-faq summary {
    padding: 25px 30px 25px 30px;
  }
}
.c-faq summary span {
  font-size: 1.3em;
}
.c-faq summary::before {
  width: 18px;
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 48px;
  height: 1px;
  z-index: 10;
}
.c-faq summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 48px;
  height: 20px;
  width: 20px;
  display: block;
  width: 18px;
  height: 1px;
  background-color: #fff;
  transform: rotate(-90deg);
  transition: all 0.5s 0s ease;
}
.c-faq details {
  margin-bottom: 10px;
  position: relative;
  transition: 0.3s;
}
.c-faq details .c-faq__content {
  padding: 25px 10px 25px 10px;
  opacity: 0;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .c-faq details .c-faq__content {
    padding: 25px 20px 25px 26px;
  }
}
.c-faq details[open] .c-faq__content {
  opacity: 1;
}
.c-faq details[open] summary {
  border-bottom: 2px solid #535353;
  padding: 25px 30px 10px 10px;
}
@media screen and (min-width: 600px) {
  .c-faq details[open] summary {
    padding: 25px 30px 10px 30px;
  }
}
.c-faq details[open] summary::after {
  transform: rotate(0);
}
.c-faq__content {
  justify-content: space-between;
  gap: 20px;
}
.c-faq__image {
  flex-basis: 30%;
  width: 90%;
  margin: 0 auto;
}
.c-faq__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-faq__text {
  flex: 1;
}

.c-slick-gallery-wrapper {
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .c-slick-gallery-wrapper {
    overflow: visible;
  }
}

@media screen and (min-width: 600px) {
  .c-slick-gallery {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.c-slick-gallery__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.c-slick-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-slick-gallery__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.c-slick-gallery .slick-slide.slick-center.c-slick-gallery__image::after {
  opacity: 0;
  pointer-events: none;
}
.c-slick-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 10px;
  height: 10px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 820px) {
  .c-slick-gallery__arrow {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50px;
  }
}
.c-slick-gallery__arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-slick-gallery__arrow--prev {
  left: 2%;
}
.c-slick-gallery__arrow--prev::before {
  background-image: url("../images/icon-arrow-left.svg");
}
.c-slick-gallery__arrow--next {
  right: 2%;
}
.c-slick-gallery__arrow--next::before {
  background-image: url("../images/icon-arrow-right.svg");
}

.c-slick-gallery-thumbnail {
  margin: 0 auto;
  width: 100%;
}
.c-slick-gallery-thumbnail__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.c-slick-gallery-thumbnail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-slick-gallery-thumbnail__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  background-color: transparent;
  border: none;
  width: 10px;
  height: 10px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 820px) {
  .c-slick-gallery-thumbnail__arrow {
    width: 30px;
    height: 30px;
  }
}
.c-slick-gallery-thumbnail__arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-slick-gallery-thumbnail__arrow--prev {
  left: -40px;
}
.c-slick-gallery-thumbnail__arrow--prev::before {
  background-image: url("../images/icon-arrow-left.svg");
}
.c-slick-gallery-thumbnail__arrow--next {
  right: -40px;
}
.c-slick-gallery-thumbnail__arrow--next::before {
  background-image: url("../images/icon-arrow-right.svg");
}

.slick-slider .slick-slide {
  margin: 0 0.1em;
}

.slick-slider .slick-list {
  margin: 0 0.1em;
}

.slick-next {
  right: 11% !important;
  width: 50px;
  height: 50px;
}

.slick-prev {
  left: 11% !important;
  width: 50px;
  height: 50px;
}

.slick-arrow {
  z-index: 2 !important;
}

.slick-prev:before,
.slick-next:before {
  opacity: 1;
}
@media screen and (min-width: 960px) {
  .slick-prev:before,
  .slick-next:before {
    font-size: 30px !important;
  }
}

/*
　セクションタイトル
================================*/
.c-section-title-08 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 0 40px 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #F2F2F2;
}
@media screen and (min-width: 1280px) {
  .c-section-title-08 {
    aspect-ratio: 4/1;
    max-height: 350px;
  }
}
.c-section-title-08::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.c-section-title-08__image {
  position: absolute;
  top: 0;
  left: 0;
}
.c-section-title-08__image {
  width: 100%;
  height: 100%;
}
.c-section-title-08__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% 65%;
     object-position: 40% 65%;
  display: block;
}
.c-section-title-08__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  color: #fff;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-section-title-08__inner p {
  margin-bottom: 20px;
  font-weight: bold;
}
.c-section-title-08__inner p span {
  display: block;
  font-size: clamp(40px, 10vw, 70px);
  line-height: 1;
  letter-spacing: 0.1px;
}
.c-section-title-08__inner p span::first-letter {
  color: #8FC31F;
}
.c-section-title-08__inner h2 {
  font-size: clamp(25px, 4vw, 40px);
  font-weight: 900;
  text-shadow: 1px 2px 3px #333;
  line-height: 1.4;
  text-align: center;
}

.c-form-content {
  max-width: 1080px;
  margin: 0 auto;
}
.c-form-content h3 {
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  margin-bottom: 1em;
}
.c-form-content .must {
  font-weight: 700;
  font-size: 12px;
}
.c-form-content__note {
  color: rgb(198, 1, 1);
  text-align: right;
}

/* Contact Form7 */
.c-form {
  box-sizing: border-box;
  width: 100%;
}
.c-form input,
.c-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 10px 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 17px;
}
.c-form input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  padding: 0.75em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
}
.c-form input[type=date]::-webkit-date-and-time-value {
  text-align: left;
  height: auto;
}
.c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 12px 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
  font-size: 17px;
  color: #333 !important;
}
.c-form select:focus {
  color: #333 !important;
}
.c-form tr {
  border-bottom: 2px dotted #ddd;
}
@media screen and (min-width: 820px) {
  .c-form tr {
    justify-content: space-between;
    align-items: center;
  }
}
.c-form th {
  padding: 10px 0 0 0;
  font-weight: bold;
  flex-basis: 28%;
  color: #333;
  height: -webkit-fill-available;
  height: auto;
  text-align: left;
}
@media screen and (min-width: 820px) {
  .c-form th {
    padding: 30px 15px;
  }
}
@media screen and (min-width: 820px) {
  .c-form th.c-form-textarea {
    min-height: 130px;
  }
}
.c-form th > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .c-form th {
    margin-bottom: 0;
  }
}
.c-form td {
  flex-basis: 70%;
  padding: 10px 0;
}
@media screen and (min-width: 820px) {
  .c-form td {
    padding: 0;
  }
}
.c-form td.c-form-flex p {
  display: flex;
  justify-content: space-between;
}
.c-form td.c-form-flex p span {
  flex-basis: 49%;
}
.c-form td.c-form-flex--date p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.c-form td.c-form-flex--date p span {
  flex-basis: 100%;
}
@media screen and (min-width: 960px) {
  .c-form td.c-form-flex--date p span {
    flex-basis: 40%;
  }
}
.c-form td.c-form-flex--date p span:first-child {
  width: 100px;
  flex-basis: 100px;
}
.c-form td.c-form-radio .wpcf7-form-control {
  width: 100%;
  display: inline-block;
}
.c-form td.c-form-radio .wpcf7-form-control .wpcf7-list-item {
  color: #333;
  width: 100%;
}
@media screen and (min-width: 820px) {
  .c-form td.c-form-radio .wpcf7-form-control .wpcf7-list-item {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .c-form td.c-form-radio .wpcf7-form-control .wpcf7-list-item {
    width: 30%;
  }
}
.c-form td.c-form-radio input {
  width: auto;
}
.c-form td.c-form-age input {
  width: auto;
}
.c-form td.c-from-checkbox .wpcf7-checkbox {
  text-align: center;
}
.c-form .must {
  background-color: #c60101;
  color: #fff;
  padding: 3px 5px;
  font-weight: 600;
}
.c-form .optional {
  background-color: #ddd;
  color: #333;
}
.c-form .optional,
.c-form .must {
  font-weight: 700;
  border-radius: 3px;
  font-size: 10px;
  padding: 2px 10px;
  letter-spacing: 2px;
  margin-right: 5px;
}
.c-form .wpcf7-list-item {
  margin-left: 0;
}
.c-form__privacy {
  color: #333;
}
.c-form__privacy a {
  color: #333;
}

.c-form__privacy-check {
  background-color: #ddd;
  border: 1px solid #ddd;
  padding: 20px 5px;
  text-align: center;
  margin: 10px auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  max-width: 400px;
  height: 100px;
}
.c-form__privacy-check .c-form__privacy-text {
  color: #555;
  font-size: 14px;
  transition: color 0.3s;
}
.c-form__privacy-check:has(input:checked) {
  background-color: #8FC31F;
  border-color: #fff !important;
  font-weight: bold;
}
.c-form__privacy-check:has(input:checked) .c-form__privacy-text {
  color: #fff !important;
  font-weight: bold;
}

.c-form__button {
  text-align: center;
}
.c-form__button input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  height: 100px;
  padding: 1.2em 2em;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: #fff;
  background-color: #ccc;
  border: none;
  cursor: not-allowed;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
@media screen and (min-width: 960px) {
  .c-form__button input[type=submit] {
    width: 70%;
    font-size: 1.1rem;
  }
}
.c-form__button input[type=submit]:hover {
  opacity: 0.9;
}
.c-form__button input[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.c-form__button input[type=submit]:not([disabled]) {
  background-color: #3b82f6;
  cursor: pointer;
}

.wpcf7-form.is-error .c-form__button input[type=submit] {
  background-color: #facc15 !important;
  cursor: pointer;
}

.wpcf7-form.invalid .c-form__button input[type=submit] {
  background-color: #d9534f !important;
  cursor: pointer;
}

.wpcf7-form.sent .c-form__button input[type=submit] {
  background-color: #8FC31F !important;
  cursor: default;
}

.wpcf7-spinner {
  display: none;
}

/* ラジオボタン本体は隠す（アクセシビリティ配慮版） */
.wpcf7 input[type=radio],
.wpcf7 input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.c-form__privacy-check input[type=checkbox] {
  position: static;
  opacity: 1;
  width: auto;
  height: auto;
}

/* ラベルの調整 */
.wpcf7 .wpcf7-list-item label {
  position: relative;
  padding-left: 24px; /* ボックスの分だけ余白 */
  cursor: pointer;
  margin-right: 15px;
}

/* 枠線チェックボックス */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #707070;
  background-color: #fdfbf0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* 枠線ラジオボタン */
.wpcf7 .wpcf7-radio .wpcf7-list-item label::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #707070;
  background-color: #fdfbf0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}

/* チェック時のアイコン */
/* 共通：チェック時のアイコン */
.wpcf7 .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #8FC31F;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  opacity: 1;
}

.wpcf7 .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  width: 16px;
  height: 14px;
  background: url("../images/radio-check.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  opacity: 1;
}

.c-legal-content {
  max-width: 900px;
  margin: 0 auto;
}
.c-legal-content .c-legal-block > p {
  margin-bottom: 20px;
  text-align: justify;
}
.c-legal-content .c-legal-block:last-child {
  margin-bottom: 0 !important;
}
.c-legal-content h3 {
  font-size: clamp(18px, 2vw, 21px);
  margin-bottom: 10px;
}
.c-legal-content h4 {
  font-size: clamp(15px, 1.8vw, 16px);
}
.c-legal-content ul, .c-legal-content ol {
  padding: 0;
  padding-left: 1.3em;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
}
.c-legal-content address {
  font-style: normal;
}
.c-legal-content address p span {
  font-size: 14px;
}

.p-contact-button p {
  text-align: center;
}
.p-contact-button__button {
  text-align: center;
}
.p-contact-button__button a {
  background-color: #F08307;
  color: #fff;
  max-width: 500px;
  width: 90%;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}
.p-contact-button__button a:hover {
  background-color: #888;
}
.p-contact-button__button a::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;
}
.p-contact-button__button a span {
  position: relative;
}
.p-contact-button__button a span::before {
  content: "";
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  z-index: 100;
  background-image: url("../images/icon_mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*
　区切り線
================================*/
.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;
}

.p-company-message {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 820px) {
  .p-company-message {
    flex-direction: row;
    gap: 40px;
  }
}
.p-company-message__image {
  flex: 0 0 50%;
}
.p-company-message__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-company-message__text {
  flex: 1;
  line-height: 1.8;
  position: relative;
  display: flex;
  align-items: center;
}
.p-company-message__text::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background-image: url("../images/company-bg-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.1;
}

.p-company-map iframe {
  width: 100% !important;
}

.p-company-recruit p {
  text-align: center;
}
.p-company-recruit__button {
  text-align: center;
}
.p-company-recruit__button a {
  background-color: #000;
  color: #fff;
  max-width: 300px;
  width: 90%;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}
.p-company-recruit__button a:hover {
  background-color: #888;
}
.p-company-recruit__button a::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;
}

.p-flow__head-text h3 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  .p-flow__head-text h3 {
    text-align: center;
  }
}
@media screen and (min-width: 820px) {
  .p-flow__head-text p {
    text-align: center;
  }
}
.p-flow__block {
  gap: 20px;
  padding: 40px 20px 20px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .p-flow__block {
    padding: 40px 30px;
  }
}
.p-flow__block::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 1.2rem 0.8rem 0 0.8rem;
  z-index: 10;
}
.p-flow__block:nth-child(odd) {
  background-color: #f2f2f2;
}
.p-flow__block:nth-child(odd)::after {
  border-color: #f2f2f2 transparent transparent transparent;
}
.p-flow__block__image {
  flex-basis: 30%;
}
.p-flow__block__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.p-flow__block__text {
  flex: 1;
}
.p-flow__block__text h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 1em;
  color: #8FC31F;
}
.p-flow__block__note {
  border: 1px solid #333;
  padding: 10px 0;
  margin-top: 10px;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 15px);
}
.p-flow__block__button {
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .p-flow__block__button {
    text-align: end;
  }
}
.p-flow__block__button .c-button {
  background-color: #8FC31F;
}

.p-support__head-text h3 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
  .p-support__head-text h3 {
    text-align: center;
  }
}
@media screen and (min-width: 820px) {
  .p-support__head-text p {
    text-align: center;
  }
}
.p-support__block h3 {
  color: #8FC31F;
  text-align: center;
  border-bottom: 1px solid #8FC31F;
  font-size: clamp(19px, 3vw, 25px);
  margin-bottom: 0.5em;
}
.p-support__block__inner {
  gap: 20px;
}
.p-support__block__text {
  flex: 1;
}
.p-support__block__image {
  flex-basis: 30%;
  margin: 0 auto;
  width: 80%;
}
@media screen and (min-width: 600px) {
  .p-support__block__image {
    width: 100%;
  }
}

.p-loan {
  max-width: 900px;
  margin: 0 auto;
}
.p-loan__head-text h3 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
  .p-loan__head-text h3 {
    text-align: center;
  }
}
@media screen and (min-width: 820px) {
  .p-loan__head-text p {
    text-align: center;
  }
}
.p-loan__block h3 {
  color: #8FC31F;
  font-size: clamp(19px, 3vw, 25px);
  margin-bottom: 0.5em;
}
.p-loan__block__text ol {
  padding: 0;
  list-style-position: inside;
}
.p-loan__block__text table {
  margin-top: 10px;
  width: 100%;
  border-collapse: collapse;
  color: #333;
  text-align: left;
  border: 1px solid #ddd;
}
.p-loan__block__text th,
.p-loan__block__text td {
  padding: 8px 12px;
  border: 1px solid #ddd;
  vertical-align: middle;
}
.p-loan__block__text thead th {
  background-color: #f7f7f7;
  font-weight: 700;
  text-align: center;
}
.p-loan__block__text tbody tr td {
  text-align: right;
}
.p-loan__block__text tbody tr:last-child td {
  border-bottom: none;
}

.p-contact {
  max-width: 900px;
  margin: 0 auto;
}
.p-contact__head-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-contact__head-text h3 {
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}
.p-contact__head-text p {
  text-align: center;
}
.p-contact__head-text .must {
  background-color: #c60101;
  color: #fff;
  font-weight: 700;
  border-radius: 3px;
  font-size: 10px;
  padding: 2px 10px;
  letter-spacing: 2px;
  margin-right: 5px;
}
.p-contact__head-text-date {
  margin-top: 1em;
  border: 1px solid #333;
  padding: 5px 20px;
  display: inline-block;
}

/*
　検索カテゴリー07
================================*/
.c-estate-search-07 {
  width: 100%;
  padding: 40px 0;
}
.c-estate-search-07 ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 12px;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .c-estate-search-07 ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
  }
}
@media screen and (min-width: 820px) {
  .c-estate-search-07 ul {
    gap: 23px;
  }
}
.c-estate-search-07 li {
  background-color: #fff;
  border: 2px solid #8FC31F;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .c-estate-search-07 li {
    padding: 10px 7px;
    gap: 8px;
  }
}
@media screen and (min-width: 820px) {
  .c-estate-search-07 li {
    padding: 15px 20px;
  }
}
.c-estate-search-07 li:nth-child(2) img {
  position: relative;
  left: -5px;
  scale: 1.1;
}
.c-estate-search-07 li:not(:last-of-type)::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 0.8rem 0 0.8rem;
  border-color: #ddd transparent transparent transparent;
  top: auto;
  bottom: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .c-estate-search-07 li {
    flex-direction: row;
  }
  .c-estate-search-07 li:not(:last-of-type)::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: -1.2rem;
    transform: translateY(-50%);
    border-width: 0.8rem 0 0.8rem 1.2rem;
    border-color: transparent transparent transparent #ddd;
  }
}
@media screen and (min-width: 820px) {
  .c-estate-search-07 li:not(:last-of-type)::after {
    right: -1.5rem;
  }
}
.c-estate-search-07 img {
  width: 28px;
  height: auto;
  display: block;
}
@media screen and (min-width: 820px) {
  .c-estate-search-07 img {
    width: 32px;
  }
}
.c-estate-search-07 small {
  color: #8FC31F;
  font-weight: 800;
}
.c-estate-search-07 p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 820px) {
  .c-estate-search-07 p {
    font-size: 17px;
  }
}

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

.p-prex {
  max-width: 900px;
  margin: 0 auto;
}
.p-prex__head-image--prex {
  max-width: 350px;
  margin: 3em auto 0;
  width: 60%;
}
.p-prex__head-text h3 {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 820px) {
  .p-prex__head-text p {
    text-align: center;
  }
}

.p-prex-comparison {
  max-width: 800px;
  margin: 0 auto;
}
.p-prex-comparison__block {
  border: 1px solid #8FC31F;
}
.p-prex-comparison__block--traditional {
  border: 1px solid #6F6F6F;
}
.p-prex-comparison__block--traditional .p-prex-comparison__title {
  background-color: #6F6F6F;
}
.p-prex-comparison__text {
  text-align: center;
  margin-top: 30px;
  padding: 0 10px;
}
.p-prex-comparison__title {
  text-align: center;
  color: #fff;
  background-color: #8FC31F;
  padding: 20px;
}
.p-prex-comparison__flow {
  padding: 10px;
}
@media screen and (min-width: 960px) {
  .p-prex-comparison__flow {
    padding: 30px 40px;
  }
}
.p-prex-comparison__images {
  display: flex;
  padding: 10px;
  gap: 1%;
}
@media screen and (min-width: 960px) {
  .p-prex-comparison__images {
    padding: 30px 40px;
  }
}
.p-prex-comparison__image {
  flex-basis: 49%;
}

.p-prex-feature {
  max-width: 1000px;
  margin: 0 auto;
}
.p-prex-feature__text {
  text-align: center;
}
.p-prex-feature__text h3 {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 500;
}
.p-prex-feature__block:last-child {
  margin-bottom: 0 !important;
}
.p-prex-feature__block__head {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  position: relative;
}
.p-prex-feature__block__head::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  z-index: 10;
  line-height: 0.9;
}
.p-prex-feature__block__head--01::after {
  content: "1";
}
.p-prex-feature__block__head--02::after {
  content: "2";
}
.p-prex-feature__block__head--03::after {
  content: "3";
}
.p-prex-feature__block__head h3 {
  font-size: clamp(21px, 3vw, 30px);
}
.p-prex-feature__block__head p {
  font-size: clamp(17px, 3vw, 19px);
}
.p-prex-feature__block__body {
  gap: 20px;
  padding: 10px;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .p-prex-feature__block__body {
    padding: 30px 20px;
  }
}
.p-prex-feature__block__image {
  flex-basis: 30%;
}
.p-prex-feature__block__text {
  flex: 1;
}

.p-prex-beauty__head-text h3 {
  font-weight: 500;
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
  font-size: clamp(19px, 3vw, 25px);
}
@media screen and (min-width: 600px) {
  .p-prex-beauty__head-text h3 {
    text-align: center;
  }
}
@media screen and (min-width: 820px) {
  .p-prex-beauty__head-text p {
    text-align: center;
  }
}

.p-prex-beauty-comparison {
  max-width: 1000px;
  margin: 0 auto;
  gap: 1%;
}
.p-prex-beauty-comparison__block {
  border: 1px solid #8FC31F;
  flex-basis: 49%;
}
.p-prex-beauty-comparison__block--traditional {
  border: 1px solid #6F6F6F;
}
.p-prex-beauty-comparison__block--traditional .p-prex-beauty-comparison__title {
  background-color: #6F6F6F;
}
.p-prex-beauty-comparison__title {
  text-align: center;
  color: #fff;
  background-color: #8FC31F;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .p-prex-beauty-comparison__title {
    padding: 20px;
  }
}
.p-prex-beauty-comparison__image {
  padding: 10px;
}
@media screen and (min-width: 960px) {
  .p-prex-beauty-comparison__image {
    padding: 30px 40px;
  }
}
.p-prex-beauty-comparison__image img {
  margin: 0 auto;
}

.p-prex-design__head-text h3 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 820px) {
  .p-prex-design__head-text p {
    text-align: center;
  }
}
.p-prex-design__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 1%;
  max-width: 800px;
  margin: 30px auto 0;
}
@media screen and (min-width: 600px) {
  .p-prex-design__images {
    margin: 50px auto 0;
  }
}
.p-prex-design__image {
  flex-basis: 49%;
}

.p-sitemap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 600px) {
  .p-sitemap__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-sitemap__category {
  border-bottom: 1px solid #ccc;
  padding-bottom: 16px;
}
.p-sitemap__heading {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #8FC31F;
  margin-bottom: 12px;
}
.p-sitemap__heading a {
  color: #8FC31F;
  text-decoration: none;
}
.p-sitemap__heading a:hover {
  opacity: 0.7;
}
.p-sitemap__heading .p-sitemap__icon {
  transform: rotate(136deg);
  height: 15px;
  width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin-right: 8px;
}
.p-sitemap__subheading {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}
.p-sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-sitemap__item {
  font-size: 14px;
  margin-bottom: 4px;
}
.p-sitemap__item a {
  color: #333;
  text-decoration: none;
}
.p-sitemap__item a:hover {
  text-decoration: underline;
}

.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-recruit__head-text h3 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  .p-recruit__head-text h3 {
    text-align: center;
  }
}
@media screen and (min-width: 820px) {
  .p-recruit__head-text p {
    text-align: center;
  }
}

.p-recruit-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 820px) {
  .p-recruit-block {
    flex-direction: row;
    gap: 40px;
  }
}
.p-recruit-block__image {
  flex: 0 0 50%;
}
.p-recruit-block__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-recruit-block__text {
  flex: 1;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
.p-recruit-block__text h3 {
  font-size: clamp(18px, 3vw, 23px);
  font-weight: 500;
  margin-bottom: 1em;
}

.p-recruit-overview__no-recruit {
  text-align: center;
  padding: 40px 0;
  font-size: clamp(15px, 2vw, 18px);
}

.p-archive-shop__block {
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .p-archive-shop__block {
    gap: 30px;
  }
}
.p-archive-shop__image {
  flex-basis: 30%;
}
.p-archive-shop__image img {
  aspect-ratio: 3/2;
}
.p-archive-shop__title {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
}
.p-archive-shop__text {
  flex: 1;
  padding: 10px 8px;
}
@media screen and (min-width: 600px) {
  .p-archive-shop__text {
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-archive-shop__text {
    padding: 20px 0;
  }
}
.p-archive-shop__info {
  list-style: none;
  padding: 0;
  flex: 1;
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 10px;
}
.p-archive-shop__buttons {
  flex-basis: 24%;
  gap: 1%;
  font-weight: 600;
}
@media screen and (min-width: 820px) {
  .p-archive-shop__buttons {
    display: inline-block;
    flex-basis: 35%;
  }
}
.p-archive-shop__tel, .p-archive-shop__link {
  margin-bottom: 10px;
  flex-basis: 49%;
}
.p-archive-shop__tel a, .p-archive-shop__link a {
  background-color: #8FC31F;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: clamp(15px, 1.8vw, 16px);
  transition: 0.3s;
}
.p-archive-shop__tel a:hover, .p-archive-shop__link a:hover {
  background-color: #a3a3a3;
  color: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.p-archive-shop__tel span {
  position: relative;
}
.p-archive-shop__tel span::before {
  content: "";
  position: absolute;
  background-image: url("../images/icon_tel.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  z-index: 10;
  left: -1em;
  top: 5px;
}
.p-archive-shop__link {
  margin-bottom: 0;
  position: relative;
}
.p-archive-shop__link a {
  background-color: #000;
}
.p-archive-shop__link::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;
}

.p-archive-shop-area__inner {
  gap: 30px 60px;
}
.p-archive-shop-area__image {
  flex-basis: 40%;
  max-width: 500px;
  margin: 0 auto;
}
.p-archive-shop-area__text {
  flex: 1;
}
.p-archive-shop-area__text dl {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f6f6f6;
}
.p-archive-shop-area__text dl span {
  margin-right: 5px;
}
.p-archive-shop-area__text dt {
  margin-bottom: 10px;
}
.p-archive-shop-area__text dd {
  padding-left: 1.3em;
}
.p-archive-shop-area__list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.p-archive-shop-area__list li a {
  width: 100%;
  position: relative;
  display: inline-block;
  border: 1px solid #a3a3a3;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.p-archive-shop-area__list li a::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-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-archive-shop-area__list li a:hover {
  background-color: #F08307;
  color: #fff;
}
.p-archive-shop-area__list li a:hover::after {
  background-image: url("../images/arrow-white.svg");
}

.p-archive-work .c-section-title-02 h2 {
  font-size: clamp(17px, 3vw, 30px);
  line-height: 1.5;
}
.p-archive-work__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .p-archive-work__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .p-archive-work__inner--col4 {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-archive-work__block {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-archive-work__block:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.p-archive-work__block:hover .p-archive-work__more {
  background-color: #8FC31F;
}
.p-archive-work__image {
  position: relative;
  overflow: hidden;
}
.p-archive-work__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  aspect-ratio: 4/3;
}
.p-archive-work__image .u-action-zoom-in__mask:hover img {
  transform: scale(1.05);
}
.p-archive-work__more {
  background-color: #000;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 20px;
  font-size: 12px;
  line-height: 1;
  z-index: 10;
  transition: 0.3s;
}
.p-archive-work__title {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  display: flex;
  justify-content: center;
}
.p-archive-work__title h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  max-height: 3.2em;
}
@media screen and (min-width: 960px) {
  .p-archive-work__title h3 {
    font-size: 16px;
  }
}
.p-archive-work__notinfo {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-archive-work__notinfo__button .c-button {
  border: 1px solid #000;
  color: #000;
}
.p-archive-work__notinfo__button .c-button::after {
  background-image: url("../images/arrow-black.svg");
}
.p-archive-work__term-list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .p-archive-work__term-list {
    grid-template-columns: repeat(auto-fit, minmax(165px, 230px));
  }
}
.p-archive-work__term-list li a {
  width: 100%;
  position: relative;
  display: inline-block;
  border: 1px solid #000;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
.p-archive-work__term-list li a::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-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-archive-work__term-list li a:hover {
  background-color: #8FC31F;
  color: #fff;
  border: 1px solid #8FC31F;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.p-archive-work__term-list li a:hover::after {
  background-image: url("../images/arrow-white.svg");
}
.p-archive-work__term-list .is-current a {
  background-color: #8FC31F;
  color: #fff;
  border: 1px solid #8FC31F;
  pointer-events: none;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.p-archive-work__term-list .is-current a::after {
  background-image: none;
}

.p-archive-prize:last-child {
  margin-bottom: 0 !important;
}
.p-archive-prize .c-section-title-02 h2 {
  font-size: clamp(17px, 3vw, 30px);
  line-height: 1.5;
}
.p-archive-prize__head-text {
  display: flex;
  justify-content: center;
}
.p-archive-prize__head-text h3 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  margin-bottom: 1em;
  text-align: center;
}
.p-archive-prize__title {
  background-color: #000;
  color: #fff;
  padding: 10px 1em;
  position: relative;
}
.p-archive-prize__title h2 {
  font-size: clamp(20px, 3vw, 25px);
  position: relative;
}
.p-archive-prize__title h2::after {
  content: "";
  position: absolute;
  width: 30%;
  max-width: 200px;
  aspect-ratio: 3/1;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
}
.p-archive-prize--awards2012 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2012.png");
}
.p-archive-prize--awards2013 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2013.png");
}
.p-archive-prize--awards2014 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2014.png");
}
.p-archive-prize--awards2015 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2015.png");
}
.p-archive-prize--awards2016 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2016.png");
}
.p-archive-prize--awards2017 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2017.png");
}
.p-archive-prize--awards2018 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2018.png");
}
.p-archive-prize--awards2019 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2019.png");
}
.p-archive-prize--awards2020 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2020.png");
}
.p-archive-prize--awards2021 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2021.png");
}
.p-archive-prize--awards2022 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2022.png");
}
.p-archive-prize--awards2023 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2023.png");
}
.p-archive-prize--awards2024 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2024.png");
}
.p-archive-prize--awards2025 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2025.png");
}
.p-archive-prize--awards2026 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2026.png");
}
.p-archive-prize--awards2027 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2027.png");
}
.p-archive-prize--awards2028 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2028.png");
}
.p-archive-prize--awards2029 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2029.png");
}
.p-archive-prize--awards2030 .p-archive-prize__title h2::after {
  background-image: url("../images/prize__awards2030.png");
}
.p-archive-prize__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .p-archive-prize__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .p-archive-prize__inner--col4 {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-archive-prize__block {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-archive-prize__block:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.p-archive-prize__block:hover .p-archive-prize__more {
  background-color: #8FC31F;
}
.p-archive-prize__image {
  position: relative;
  overflow: hidden;
}
.p-archive-prize__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  aspect-ratio: 4/3;
}
.p-archive-prize__image .u-action-zoom-in__mask:hover img {
  transform: scale(1.05);
}
.p-archive-prize__more {
  background-color: #000;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 20px;
  font-size: 12px;
  line-height: 1;
  z-index: 10;
  transition: 0.3s;
}
.p-archive-prize__text {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  padding: 10px 5px;
}
.p-archive-prize__text h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  max-height: 3.2em;
}
@media screen and (min-width: 960px) {
  .p-archive-prize__text h3 {
    font-size: 16px;
  }
}
.p-archive-prize__meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 5px;
  font-size: 14px;
}
.p-archive-prize__meta-title {
  background-color: #333;
  color: #fff;
  padding: 0 8px;
  font-weight: 600;
}
.p-archive-prize__meta-title.is-gold {
  background-color: #beb334;
}
.p-archive-prize__meta-title.is-silver {
  background-color: #b0b0b0;
}
.p-archive-prize__meta-title.is-bronz {
  background-color: #573a0d;
}
.p-archive-prize__notinfo {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-archive-prize__notinfo__button .c-button {
  border: 1px solid #000;
  color: #000;
}
.p-archive-prize__notinfo__button .c-button::after {
  background-image: url("../images/arrow-black.svg");
}
.p-archive-prize__term-list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .p-archive-prize__term-list {
    grid-template-columns: repeat(auto-fit, minmax(165px, 230px));
  }
}
.p-archive-prize__term-list li a {
  width: 100%;
  position: relative;
  display: inline-block;
  border: 1px solid #000;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
.p-archive-prize__term-list li a::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-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-archive-prize__term-list li a:hover {
  background-color: #8FC31F;
  color: #fff;
  border: 1px solid #8FC31F;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.p-archive-prize__term-list li a:hover::after {
  background-image: url("../images/arrow-white.svg");
}
.p-archive-prize__term-list .is-current a {
  background-color: #8FC31F;
  color: #fff;
  border: 1px solid #8FC31F;
  pointer-events: none;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.p-archive-prize__term-list .is-current a::after {
  background-image: none;
}

.p-news-content {
  flex-basis: 70%;
  position: relative;
  margin-bottom: 20px;
}
.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);
  }
}
.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: 1px solid #ccc;
  overflow: hidden;
}
.p-news-content__image img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-content__title {
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-news-content__excerpt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  font-size: 15px;
}
.p-news-content__notinfo {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
　投稿ページの検索欄
================================*/
@media screen and (min-width: 960px) {
  .p-news-content__lists--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.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: #8FC31F;
  border: none;
  position: relative;
}
.wp-pagenavi span.current::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #8FC31F;
  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: #8FC31F;
}

.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 10px;
  min-height: 300px;
}
@media screen and (min-width: 600px) {
  .p-news-article__body {
    padding: 2em 3%;
  }
}
.p-news-article__body h2 {
  font-size: clamp(19px, 3vw, 23px);
  margin-bottom: 10px;
  line-height: 1.5;
  color: #8FC31F;
}
.p-news-article__body h3 {
  font-size: clamp(19px, 3vw, 23px);
  margin-bottom: 10px;
  line-height: 1.5;
  color: #F08307;
}
.p-news-article__body h4 {
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.p-news-article__body h4::before {
  content: "";
  height: 1em;
  width: 3px;
  margin-right: 5px;
  background-color: #8FC31F;
}
.p-news-article__body h5 {
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
.p-news-article__body h5::before {
  content: "";
  height: 1em;
  width: 2px;
  background-color: #8FC31F;
}
.p-news-article__body h6 {
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
.p-news-article__body h6::before {
  content: "";
  height: 1em;
  width: 2px;
  background-color: #8FC31F;
}
.p-news-article__body p,
.p-news-article__body img {
  margin-bottom: 20px;
}
.p-news-article__body table {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-news-article__body ul {
  padding-left: 0.5em;
  list-style-position: inside;
  margin-bottom: 20px;
  list-style: none;
}
.p-news-article__body ul li {
  display: flex;
  align-items: baseline;
}
.p-news-article__body ul li::before {
  content: "";
  background-image: url("../images/icon_check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.5em;
  height: 0.5em;
  margin-right: 5px;
}
.p-news-article__date {
  line-height: 1.2;
  font-weight: 900;
}
.p-news-article__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-news-article__category-item {
  border: 1px solid #ddd;
  padding: 2px 3px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}
.p-news-article__category-item:hover {
  opacity: 0.7;
}
.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: #000;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/*
　投稿ページの検索欄
================================*/
.p-search-content {
  border: 1px solid #000;
}
.p-search-content__title {
  background-color: #000;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.p-search-content form {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
}
.p-search-content input {
  flex-basis: 78%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-search-content button {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

/*
　サイドバーの最新記事
================================*/
.p-sidebar-list {
  margin-bottom: 20px;
}
.p-sidebar-list__title {
  background-color: #000;
  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: 14px;
  width: 100%;
  line-height: 1.3;
}
.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-list--category .p-sidebar-list__archive-list {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 8px;
}
.p-sidebar-list--category .p-sidebar-list__archive-list::-webkit-scrollbar {
  width: 6px;
}
.p-sidebar-list--category .p-sidebar-list__archive-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.p-sidebar-list--category .p-sidebar-list__archive-list::-webkit-scrollbar-track {
  background-color: transparent;
}

.p-sidebar-yearly {
  display: flex;
  gap: 3px;
}
.p-sidebar-yearly__title {
  background-color: #000;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 60px;
}
.p-sidebar-yearly__select {
  flex: 1;
  font-size: 17px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 2px 5px;
}

.p-related-posts__title {
  font-size: clamp(23px, 3vw, 30px);
  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-related-posts__desc p {
  font-size: clamp(13px, 1.8vw, 15px);
}

.p-single-post__button {
  text-align: center;
}

.p-shop__message {
  gap: 20px;
}
.p-shop__message__image {
  flex-basis: 30%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  .p-shop__message__image {
    max-width: none;
  }
}
.p-shop__message__image img {
  width: 100%;
  aspect-ratio: 3/2;
  border: 1px solid #ddd;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-shop__message__text {
  flex: 1;
}

.p-shop__map {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 600px) {
  .p-shop__map {
    aspect-ratio: 3/1;
  }
}
.p-shop__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.p-shop__map-link {
  margin-top: 16px;
  text-align: center;
}
.p-shop__map-link .c-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: #8FC31F;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}
.p-shop__map-link .c-button:hover {
  opacity: 0.8;
}

.p-work-content__desc {
  max-width: 900px;
  margin: 0 auto;
}
.p-work-content__meta {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.p-work-content__taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-work-content__taxonomy--shop {
  background-color: #000;
  color: #fff;
}
.p-work-content__term {
  border: 1px solid #000;
  padding: 2px 3px;
}

.p-single-work__button {
  text-align: center;
}

.p-single-prize .c-section-title-02 h2 {
  font-size: clamp(17px, 3vw, 30px);
  line-height: 1.5;
}
.p-single-prize__head-text {
  display: flex;
  justify-content: center;
}
.p-single-prize__head-text h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
}
.p-single-prize__title {
  background-color: #000;
  color: #fff;
  padding: 10px 1em;
  position: relative;
}
.p-single-prize__title h2 {
  font-size: clamp(20px, 3vw, 25px);
  position: relative;
}
.p-single-prize__title h2::after {
  content: "";
  position: absolute;
  width: 30%;
  max-width: 200px;
  aspect-ratio: 3/1;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
}
.p-single-prize--awards2012 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2012.png");
}
.p-single-prize--awards2013 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2013.png");
}
.p-single-prize--awards2014 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2014.png");
}
.p-single-prize--awards2015 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2015.png");
}
.p-single-prize--awards2016 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2016.png");
}
.p-single-prize--awards2017 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2017.png");
}
.p-single-prize--awards2018 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2018.png");
}
.p-single-prize--awards2019 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2019.png");
}
.p-single-prize--awards2020 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2020.png");
}
.p-single-prize--awards2021 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2021.png");
}
.p-single-prize--awards2022 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2022.png");
}
.p-single-prize--awards2023 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2023.png");
}
.p-single-prize--awards2024 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2024.png");
}
.p-single-prize--awards2025 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2025.png");
}
.p-single-prize--awards2026 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2026.png");
}
.p-single-prize--awards2027 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2027.png");
}
.p-single-prize--awards2028 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2028.png");
}
.p-single-prize--awards2029 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2029.png");
}
.p-single-prize--awards2030 .p-single-prize__title h2::after {
  background-image: url("../images/prize__awards2030.png");
}
.p-single-prize__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .p-single-prize__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .p-single-prize__inner--col4 {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-single-prize__block {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-single-prize__block:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.p-single-prize__block:hover .p-single-prize__more {
  background-color: #8FC31F;
}
.p-single-prize__image {
  position: relative;
  overflow: hidden;
}
.p-single-prize__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  aspect-ratio: 4/3;
}
.p-single-prize__image .u-action-zoom-in__mask:hover img {
  transform: scale(1.05);
}
.p-single-prize__more {
  background-color: #000;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 20px;
  font-size: 12px;
  line-height: 1;
  z-index: 10;
  transition: 0.3s;
}
.p-single-prize__text {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  padding: 10px 5px;
}
.p-single-prize__text h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  max-height: 3.2em;
}
@media screen and (min-width: 960px) {
  .p-single-prize__text h3 {
    font-size: 16px;
  }
}
.p-single-prize__meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 5px;
  font-size: clamp(14px, 1.8vw, 17px);
}
.p-single-prize__meta-title {
  background-color: #333;
  color: #fff;
  padding: 0 8px;
  font-weight: 600;
}
.p-single-prize__meta-title.is-gold {
  background-color: #beb334;
}
.p-single-prize__meta-title.is-silver {
  background-color: #b0b0b0;
}
.p-single-prize__meta-title.is-bronz {
  background-color: #573a0d;
}
.p-single-prize__notinfo {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-single-prize__notinfo__button .c-button {
  border: 1px solid #000;
  color: #000;
}
.p-single-prize__notinfo__button .c-button::after {
  background-image: url("../images/arrow-black.svg");
}
.p-single-prize__term-list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .p-single-prize__term-list {
    grid-template-columns: repeat(auto-fit, minmax(165px, 230px));
  }
}
.p-single-prize__term-list li a {
  width: 100%;
  position: relative;
  display: inline-block;
  border: 1px solid #000;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
.p-single-prize__term-list li a::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-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-single-prize__term-list li a:hover {
  background-color: #8FC31F;
  color: #fff;
  border: 1px solid #8FC31F;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.p-single-prize__term-list li a:hover::after {
  background-image: url("../images/arrow-white.svg");
}
.p-single-prize__term-list .is-current a {
  background-color: #8FC31F;
  color: #fff;
  border: 1px solid #8FC31F;
  pointer-events: none;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.p-single-prize__term-list .is-current a::after {
  background-image: none;
}

.p-single-work-content__desc {
  max-width: 900px;
  margin: 0 auto;
}

.p-single-prize__shop {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}
.p-single-prize__shop span {
  border: 1px solid #000;
  padding: 2px 3px;
}
.p-single-prize__button {
  text-align: center;
}

.p-info-banner-slide {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-info-banner-slide {
    width: 100%;
    margin: 0 auto;
    max-width: 2000px;
  }
}
.p-info-banner-slide__list img {
  width: 100%;
  aspect-ratio: 600/305;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.p-front-store-message {
  background-image: url("../images/front-store-message-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.p-front-store-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.p-front-store-message__inner {
  position: relative;
  z-index: 1;
}
.p-front-store-message__inner h2 {
  font-size: clamp(23px, 3.5vw, 36px);
  color: #fff;
  text-align: center;
  margin-bottom: 1em;
}
.p-front-store-message__text {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .p-front-store-message__text {
    text-align: center;
  }
}
.p-front-store-message__text p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: #fff;
}
.p-front-store-message__buttons {
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}
.p-front-store-message__buttons a {
  flex: 1 1 1;
}
.p-front-store-message__buttons a:hover {
  background-color: #8FC31F;
}

.p-front-company {
  background-color: #f2f2f2;
}
.p-front-company__inner {
  gap: 20px;
}
@media screen and (min-width: 820px) {
  .p-front-company__inner {
    justify-content: space-between;
    gap: 40px;
  }
}
.p-front-company__image {
  flex: 0 0 40%;
}
.p-front-company__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-front-company__text {
  flex: 1;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}
.p-front-company__title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: #8FC31F;
  margin-bottom: 10px;
  line-height: 1.3;
}
.p-front-company__info {
  padding: 10px 0;
  margin-top: 20px;
}
.p-front-company__info h3 {
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
}
.p-front-company__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

.p-front-store-list {
  width: 100%;
}

.p-front-works {
  position: relative;
  z-index: 100;
}
.p-front-works .c-section-title {
  color: #fff;
}
.p-front-works .c-section-title h2 {
  color: #fff;
}
.p-front-works__bg {
  background-image: url("../images/front-works__bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: bottom;
}
.p-front-works__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.p-front-works__bg::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../images/logo-bg.png");
  width: 70%;
  max-width: 600px;
  aspect-ratio: 10/9;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
}
.p-front-works__text {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 600;
  text-align: center;
}
.p-front-works__achievement {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 3.5vw, 32px);
  line-height: 1;
  align-items: flex-end;
  color: #fff;
}
.p-front-works__achievement-text {
  display: inline;
}
.p-front-works__achievement-count {
  display: inline;
}
.p-front-works__achievement-number {
  font-size: 1.8em;
  line-height: 1;
  display: inline-block;
}
.p-front-works__achievement-label {
  line-height: 1;
  display: inline-block;
}
.p-front-works__term-list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .p-front-works__term-list {
    grid-template-columns: repeat(auto-fit, minmax(165px, 230px));
  }
}
.p-front-works__term-list li a {
  width: 100%;
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.p-front-works__term-list li a::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;
}
.p-front-works__term-list li a:hover {
  background-color: #F08307;
}
.p-front-works__button {
  text-align: center;
  position: relative;
  z-index: 100;
}

.p-event-calendar {
  position: relative;
  /* 上部にグローバルナビ配置 */
}
.p-event-calendar .xo-event-calendar .month-header .month-prev,
.p-event-calendar .xo-event-calendar .month-header .month-next {
  display: none;
}
.p-event-calendar .xo-event-calendar .xo-month-wrap {
  padding: 10px;
  background-color: #fafafa;
  border-radius: 10px;
}
.p-event-calendar .xo-event-calendar table.xo-month {
  width: 100%;
  border-collapse: collapse;
  border: none;
  /* 日付の数字（table.month-dayname 内） */
  /* イベント用スペースの高さ調整（ズレ防止） */
}
.p-event-calendar .xo-event-calendar table.xo-month .calendar-caption {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  margin-bottom: 20px;
}
.p-event-calendar .xo-event-calendar table.xo-month th,
.p-event-calendar .xo-event-calendar table.xo-month td {
  border: none;
  background-color: transparent;
}
.p-event-calendar .xo-event-calendar table.xo-month .month-dayname td {
  position: relative;
  width: 14.2857142857%;
  height: 45px;
  text-align: center;
  vertical-align: middle;
  /* 今日 */
  /* 祝日 */
}
.p-event-calendar .xo-event-calendar table.xo-month .month-dayname td div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: transparent;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: initial;
}
.p-event-calendar .xo-event-calendar table.xo-month .month-dayname td .today {
  border: 0.5px solid #333;
  color: #333;
}
.p-event-calendar .xo-event-calendar table.xo-month .month-dayname td .holiday-all {
  background-color: #fddde6 !important;
  color: #c03;
}
.p-event-calendar .xo-event-calendar table.xo-month .month-event-space td {
  height: 0;
  padding: 0;
}
.p-event-calendar .xo-months {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 960px) {
  .p-event-calendar .xo-months {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.p-event-calendar .p-event-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.p-event-calendar .p-event-calendar__nav button {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-event-calendar .p-event-calendar__nav button:hover {
  opacity: 0.7;
}
.p-event-calendar .p-event-calendar__nav .month-prev {
  transform: rotate(-90deg);
}
.p-event-calendar .p-event-calendar__nav .month-next {
  transform: rotate(90deg);
}
.p-event-calendar .p-event-calendar__nav .month-today {
  font-weight: 600;
  font-size: 14px;
  background-color: #333;
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
}
.p-event-calendar .holiday-titles {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
.p-event-calendar .holiday-title span {
  border-radius: 50%;
}

.p-instagram-content {
  max-width: 1080px;
  margin: 0 auto;
}/*# sourceMappingURL=layout.css.map */