@charset "UTF-8";
/*==================================
* Base Typography - body
* サイト全体のベーステキスト設定
* フォント、サイズ、行間、字間を整える
==================================*/
html {
  /* スクロールバーの出現/消滅による横幅のずれを防ぐ */
  scrollbar-gutter: stable;
}

body {
  font-family: "din-2014", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  letter-spacing: 0.01px;
  /* Webフォントを滑らかに表示するための設定 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #665448;
  font-weight: 500;
}

/*==================================
* 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-single-header__title, .p-recruit-list__content, .c-faq__content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .u-flex--md, .p-single-header__title, .p-recruit-list__content, .c-faq__content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.u-flex--lr, .p-partners-content, .p-store-location__item, .l-hero-sub__title {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 820px) {
  .u-flex--lr, .p-partners-content, .p-store-location__item, .l-hero-sub__title {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.u-flex--lg, .p-recruit-content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .u-flex--lg, .p-recruit-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/*==================================
* font-family (Utilities)
==================================*/
/* 日本語ゴシック体：Zen Kaku Gothic New */
.u-font--gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* 英語専用フォント：DIN 2014 */
.u-font--en, .c-mobile-menu__en {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-stretch: condensed;
  letter-spacing: -0.02em;
}

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

.u-font-size--md, .p-privacy-content h3 {
  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: 10px;
}
.u-bracket--slash::before {
  content: "＼";
  left: -1em;
}
.u-bracket--slash::after {
  content: "／";
  right: -1em;
}

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

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

.u-pb--md, .l-hero-sub-partners, .p-single-header {
  padding-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--md, .l-hero-sub-partners, .p-single-header {
    padding-bottom: 60px !important;
  }
}

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

.u-pb--lg, .p-single-content__body {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--lg, .p-single-content__body {
    padding-bottom: 120px !important;
  }
}

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

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

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

/*==================================
* Margin Bottom
==================================*/
.u-mb--sm, .p-partners-content__text h2, .wp-pagenavi, .p-privacy-content h3, .p-recruit-content__title {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--sm, .p-partners-content__text h2, .wp-pagenavi, .p-privacy-content h3, .p-recruit-content__title {
    margin-bottom: 25px !important;
  }
}

.u-mb--md, .p-home-menu___description, .p-archive-list, .l-hero-sub-contact__description, .p-privacy-content .p-privacy-block, .p-store-location__area-title, .l-hero-sub-recruit__description, .p-franchise-contact__description, .p-office-salad-contact__description, .c-post-links {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--md, .p-home-menu___description, .p-archive-list, .l-hero-sub-contact__description, .p-privacy-content .p-privacy-block, .p-store-location__area-title, .l-hero-sub-recruit__description, .p-franchise-contact__description, .p-office-salad-contact__description, .c-post-links {
    margin-bottom: 60px !important;
  }
}

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

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

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

.u-mt--md, .p-home-menu___description, .p-home-menu__toppings,
.p-home-menu__dressings, .p-media__slide, .p-partners-details, .p-partners-detail__button, .wp-pagenavi, .l-hero-sub-contact__description, .l-hero-sub-recruit__description, .p-recruit-list, .p-franchise-recommend, .p-franchise-achievement, .p-franchise-flow, .p-subscription-ticket__button, .c-image-text-block-03__button, .c-faq, .c-post-slider-01__controls {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--md, .p-home-menu___description, .p-home-menu__toppings,
  .p-home-menu__dressings, .p-media__slide, .p-partners-details, .p-partners-detail__button, .wp-pagenavi, .l-hero-sub-contact__description, .l-hero-sub-recruit__description, .p-recruit-list, .p-franchise-recommend, .p-franchise-achievement, .p-franchise-flow, .p-subscription-ticket__button, .c-image-text-block-03__button, .c-faq, .c-post-slider-01__controls {
    margin-top: 60px !important;
  }
}

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

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

/*==================================
* Content Width Utility
==================================*/
.u-content-width, .p-home-concept__description, .p-office-salad-partners__content, .l-section__container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.u-content-width--sm, .l-section__container--sm {
  width: 90%;
  margin: 0 auto;
  max-width: 980px;
}

.u-content-width--md, .l-section__container--md {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}

.u-content-width, .p-home-concept__description, .p-office-salad-partners__content, .l-section__container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: transparent;
  z-index: 2000;
  transition: 0.3s;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 80px;
    background-color: #528A40;
  }
}
@media screen and (min-width: 960px) {
  .l-header.triggered {
    box-shadow: 0px 0 28px -3px rgba(102, 102, 102, 0.5);
  }
  .l-header.triggered .l-header__li::after {
    border-right: 1px solid #fff;
  }
  .l-header.triggered a {
    color: #fff;
  }
}
.l-header__inner {
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.l-header__nav {
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header__nav {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__ul {
  height: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
}
.l-header__li {
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__li a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px clamp(5px, 1.1vw, 13px);
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 18px);
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-stretch: condensed;
  letter-spacing: -0.02em;
}
.l-header__li a:hover {
  color: #FFF8E8;
}
.l-header__li.current-menu-item a, .l-header__li.current-menu-parent a {
  color: #FFF8E8;
}
.l-header__logo a {
  width: clamp(140px, 15vw, 190px);
  display: flex;
}
.l-header__logo a img {
  width: 100%;
  display: flex;
}
.l-header__logo-trigger {
  display: inline-block;
}
.l-header__logo-triggered {
  display: none;
}

.l-footer {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-footer {
    display: block;
  }
}

.l-footer-sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .l-footer-sp {
    display: none;
  }
}

.l-footer-sp {
  background-color: #528A40;
}
.l-footer-sp__app {
  background: linear-gradient(to bottom, #fff 0 28%, #528A40 28% 100%);
  padding-top: 24px;
  padding-bottom: 50px;
}
.l-footer-sp__app p {
  text-align: center;
  margin: 0;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
}
.l-footer-sp__app__image {
  width: 72%;
  margin: 18px auto 0;
  max-width: 300px;
}
.l-footer-sp__app__image img {
  width: 100%;
  display: block;
}
.l-footer-sp__app__buttons {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.l-footer-sp__app__buttons a {
  width: clamp(132px, 41vw, 150px);
  height: 44px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer-sp__app__buttons img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer-sp__image {
  height: 260px;
  overflow: hidden;
}
.l-footer-sp__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.l-footer-sp__inner {
  padding-bottom: 30px;
  background-color: #528A40;
}
.l-footer-sp__menu {
  padding-top: 70px;
}
.l-footer-sp__nav {
  width: 90%;
  margin: 60px auto 0;
}
.l-footer-sp__logo {
  max-width: 250px;
  margin: 0 auto;
}
.l-footer-sp__logo a,
.l-footer-sp__logo img {
  display: block;
  width: 100%;
}
.l-footer-sp__contact {
  text-align: center;
  width: 90%;
  margin: 38px auto 0;
}
.l-footer-sp__contact-button {
  max-width: 300px;
  margin: 0 auto 20px;
  width: 100%;
}
.l-footer-sp__contact-button:last-child {
  margin-bottom: 0;
}
.l-footer-sp__contact-button .c-button {
  max-width: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-color: #fff;
  color: #528A40;
  background-color: #FFF8E8;
}
.l-footer-sp__contact-button .c-button--instagram {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
.l-footer-sp__contact-button .c-button--instagram span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.l-footer-sp__contact-button .c-button--instagram span::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-insta.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 16px;
}

.l-footer {
  background-color: #528A40;
}
.l-footer__image {
  overflow: hidden;
}
.l-footer__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.l-footer__inner {
  background-color: #528A40;
}
.l-footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.l-footer__col {
  min-height: 320px;
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer__col + .l-footer__col {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.l-footer__col--brand {
  justify-content: center;
}
.l-footer__col--nav {
  justify-content: center;
}
.l-footer__col--app {
  position: relative;
  justify-content: center;
}
.l-footer__col--app p {
  margin: 18px 0 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}
.l-footer__logo {
  width: min(250px, 78%);
}
.l-footer__logo a,
.l-footer__logo img {
  width: 100%;
  display: block;
}
.l-footer__contact {
  margin-top: 36px;
  width: min(280px, 100%);
}
.l-footer__contact-button {
  width: 100%;
  margin-bottom: 16px;
}
.l-footer__contact-button:last-child {
  margin-bottom: 0;
}
.l-footer__contact-button .c-button {
  max-width: none;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 20px;
  border-color: #fff;
  color: #528A40;
  background-color: #FFF8E8;
}
.l-footer__contact-button .c-button--instagram {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
.l-footer__contact-button .c-button--instagram span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.l-footer__contact-button .c-button--instagram span::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-insta.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 16px;
}
.l-footer__nav {
  width: 100%;
}
.l-footer__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.l-footer__li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  padding: 6px 0;
  font-size: 20px;
}
.l-footer__app {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 168px;
  position: relative;
}
.l-footer__app__image {
  width: min(290px, 92%);
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.l-footer__app__image img {
  width: 100%;
  display: block;
}
.l-footer__app__buttons {
  margin-top: 18px;
  width: min(290px, 92%);
}
.l-footer__app__buttons .c-button {
  max-width: none;
  width: 100%;
  border-color: transparent;
  background-color: #154B05;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: center;
}
.l-footer .copyright {
  text-align: center;
  margin-top: 0;
  padding: 20px 16px 24px;
}

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

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

#page-top-sp {
  bottom: 20px;
}

body:has(.p-home-menu__modal.is-active) #page-top {
  z-index: 1;
}
body:has(.p-home-menu__modal.is-active) #page-top-sp {
  z-index: 1;
}
body:has(.p-home-menu__modal.is-active) .l-header {
  z-index: 1;
}

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

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

.l-section--green {
  background: #528A40;
}

.l-section--beige {
  background: #FFF8E8;
}

.swiper {
  overflow: visible !important;
}

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

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

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

.l-main-visual {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .l-main-visual {
    padding-top: 80px;
  }
}
.l-main-visual__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.l-main-visual__title {
  position: absolute;
  inset: 0;
  padding: clamp(16px, 3vw, 32px);
  z-index: 2;
}
.l-main-visual__title h2 {
  margin: 0;
  color: #fff;
  line-height: 1.2;
  font-size: 10vw;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.02em;
  transform-origin: center;
  font-size: clamp(70px, 10vw, 90px);
  position: absolute;
  bottom: 6%;
  left: 10%;
}
@media screen and (min-width: 960px) {
  .l-main-visual__title h2 {
    font-size: clamp(80px, 10vw, 100px);
    bottom: 6%;
    left: 15%;
    line-height: 1.3;
  }
}
.l-main-visual .video-fix {
  display: block;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 960px) {
  .l-main-visual .video-fix {
    height: 100vh;
    -o-object-position: center;
       object-position: center;
  }
}
.l-main-visual .l-main-visual__scroll {
  position: absolute;
  right: clamp(12px, 3vw, 40px);
  bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
  z-index: 5;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  opacity: 0.95;
  height: 100px;
}
@media screen and (min-width: 960px) {
  .l-main-visual .l-main-visual__scroll {
    right: 40px;
    bottom: -20px;
  }
}
.l-main-visual .l-main-visual__scroll-line {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  position: relative;
  overflow: hidden;
  left: 7px;
  top: 0;
}
.l-main-visual .l-main-visual__scroll-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  transform: translateY(-120%);
  animation: lMainScrollLine 1.6s linear infinite;
  will-change: transform;
}
@keyframes lMainScrollLine {
  0% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(220%);
  }
}
.l-main-visual .l-main-visual__scroll-text {
  font-size: 15px;
  display: block;
  transform: rotate(90deg);
}
.l-main-visual .l-main-visual__scroll:hover {
  opacity: 1;
}

.l-hero-sub {
  padding-bottom: clamp(50px, 8vw, 120px);
  padding-top: clamp(120px, 13vw, 180px);
  margin-top: 50px;
  line-height: 1;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 820px) {
  .l-hero-sub {
    width: 90%;
  }
}
@media screen and (min-width: 1280px) {
  .l-hero-sub {
    max-width: 1200px;
  }
}
.l-hero-sub__title {
  gap: 5px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  .l-hero-sub__title {
    gap: 10px;
    align-items: flex-end;
    width: 100%;
  }
}
.l-hero-sub__title h1 {
  display: block;
  font-weight: 800;
  line-height: 1.4;
  font-size: clamp(16px, 2vw, 20px);
  color: #665448;
}
.l-hero-sub__title span {
  font-size: clamp(40px, 6vw, 60px);
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  color: #665448;
  position: relative;
  letter-spacing: 0.01px;
}
.l-hero-sub__image {
  margin-top: clamp(40px, 4vw, 60px);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.l-hero-sub__image img {
  width: 100%;
  display: block;
}
.l-hero-sub__description, .l-hero-sub__description--md {
  line-height: 1.9;
  color: #665448;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  margin-top: clamp(50px, 6vw, 78px);
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .l-hero-sub__description, .l-hero-sub__description--md {
    text-align: center;
  }
}
.l-hero-sub__description--md {
  font-size: clamp(20px, 2vw, 24px);
}
@media screen and (min-width: 600px) {
  .l-hero-sub__description--md {
    font-size: clamp(18px, 2vw, 20px);
  }
}

.l-hero-sub__franchise-description {
  line-height: 1.8;
  color: #665448;
  font-size: clamp(17px, 1.6vw, 22px);
  text-align: center;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  margin-top: clamp(100px, 4vw, 100px);
  margin-bottom: clamp(100px, 4vw, 100px);
}

.c-breadcrumb {
  color: #000;
}
.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: #000;
  text-decoration: none;
}

.c-button {
  max-width: 300px;
  width: 100%;
  position: relative;
  display: inline-block;
  border: 2px solid #FFF8E8;
  padding: 13px 35px;
  cursor: pointer;
  transition: all 0.3s;
  color: #FFF8E8;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button--main {
  border-color: #fff;
  color: #fff;
  background-color: #528A40;
}

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1500;
  background-color: #528A40;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-mobile-menu__inner {
  height: 100%;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 90px;
  align-content: start;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 600px) {
  .c-mobile-menu__inner {
    grid-template-columns: repeat(auto-fit, minmax(310px, auto));
    gap: 30px 40px;
    padding-bottom: 80px;
    width: 84%;
    margin: 0 auto;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .c-mobile-menu__inner {
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    gap: 48px 60px;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-40%);
    z-index: 10;
  }
}
.c-mobile-menu__button {
  position: relative;
  background-color: #528A40;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  width: 74px;
  height: 38px;
  border-radius: 99%;
  padding: 0;
}
.c-mobile-menu__button span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  background-color: #fff;
  width: clamp(40px, 5vw, 84px);
  height: 1px;
  transition: transform 0.35s, top 0.35s;
}
.c-mobile-menu__button span:nth-child(1) {
  top: calc(50% - 4px);
}
.c-mobile-menu__button span:nth-child(2) {
  top: calc(50% + 4px);
}
.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__block {
  opacity: 0;
  transform: translateX(50px);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  width: 74%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__block--nav1 {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.c-mobile-menu__block--nav2 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__block--nav2 {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.c-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  max-width: 300px;
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__links {
    margin: 0;
    margin-top: 20px;
  }
}
.c-mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-mobile-menu__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.c-mobile-menu__item > a {
  display: flex;
  flex-direction: column;
  padding: 0.75em 0;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-mobile-menu__item > a:hover {
  opacity: 0.6;
}
.c-mobile-menu__en {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__en {
    font-size: clamp(40px, 3vw, 50px);
  }
}
.c-mobile-menu__en--small {
  font-size: 32px;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__en--small {
    font-size: clamp(30px, 3vw, 38px);
  }
}
.c-mobile-menu__ja {
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.c-mobile-menu__sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background-color 0.3s, border-color 0.3s;
}
.c-mobile-menu__sns-btn svg {
  flex-shrink: 0;
}
.c-mobile-menu__sns-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.c-mobile-menu__contact-btn {
  display: block;
  padding: 14px 20px;
  background-color: #FFF8E8;
  color: #528A40;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity 0.3s;
}
.c-mobile-menu__contact-btn:hover {
  opacity: 0.85;
}
.c-mobile-menu__block--app {
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__block--app {
    margin-top: 0;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.c-mobile-menu__app {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 168px;
  position: relative;
}
.c-mobile-menu__app__image {
  width: min(290px, 92%);
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__app__image {
    width: 100%;
    max-width: 400px;
  }
}
.c-mobile-menu__app__image img {
  width: 100%;
  display: block;
}
.c-mobile-menu__app__buttons {
  margin: 0 auto;
  margin-top: 20px;
  width: min(300px, 92%);
}
.c-mobile-menu__app__buttons p {
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
}
.c-mobile-menu__app__buttons .c-button {
  max-width: none;
  width: 100%;
  border-color: transparent;
  background-color: #154B05;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: center;
}
.c-mobile-menu__deco {
  display: none;
}
@media screen and (min-width: 1280px) {
  .c-mobile-menu__deco {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
}
.c-mobile-menu__deco-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(260px, 100vw, 500px);
  height: auto;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__deco-logo {
    display: block;
    width: clamp(260px, 70vw, 900px);
    height: auto;
  }
  .c-mobile-menu__deco-logo img {
    width: 100%;
  }
}
.c-mobile-menu__logo--sp {
  width: 100%;
  height: auto;
  margin-top: 100px;
}
@media screen and (min-width: 600px) {
  .c-mobile-menu__logo--sp {
    display: none;
  }
}
.c-mobile-menu__deco-illust {
  display: none;
}
@media screen and (min-width: 1280px) {
  .c-mobile-menu__deco-illust {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    height: 90vh;
  }
  .c-mobile-menu__deco-illust img {
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-mobile-menu--open .l-header__nav,
.c-mobile-menu--open .l-header__logo {
  opacity: 0;
  visibility: hidden;
}
.c-mobile-menu--open .l-header.triggered {
  box-shadow: none;
}
.c-mobile-menu--open .l-header {
  background-color: transparent;
}
.c-mobile-menu--open .c-mobile-menu {
  transform: translateX(0);
}
.c-mobile-menu--open .c-mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.c-mobile-menu--open .c-mobile-menu__block {
  transform: none;
  opacity: 1;
}
.c-mobile-menu--open .c-mobile-menu__block--nav1 {
  transition-delay: 0.1s;
}
.c-mobile-menu--open .c-mobile-menu__block--nav2 {
  transition-delay: 0.22s;
}
.c-mobile-menu--open .c-mobile-menu__block--app {
  transition-delay: 0.34s;
}
.c-mobile-menu--open .c-mobile-menu__button {
  background-color: transparent;
}
.c-mobile-menu--open .c-mobile-menu__button > span {
  background-color: #fff;
  top: 50%;
}
.c-mobile-menu--open .c-mobile-menu__button > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateX(-50%) rotate(20deg);
}
.c-mobile-menu--open .c-mobile-menu__button > span:nth-child(2) {
  transition-delay: 70ms;
  transform: translateX(-50%) rotate(-20deg);
}

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

.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 h2 {
  font-family: "din-2014", sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  color: #528A40;
}
.c-section-title--outline h2 {
  font-size: clamp(50px, 6vw, 80px);
  color: transparent;
  -webkit-text-stroke: 1px #655448;
}

.c-section-title--jp h2 {
  font-size: clamp(25px, 4vw, 40px);
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  color: #528A40;
}

.c-section-title--md h2 {
  font-size: clamp(22px, 4vw, 30px);
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  color: #655448;
}

.c-section-title--orange h2 {
  font-size: clamp(24px, 4vw, 40px);
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  color: #EC5000;
}

.c-section-title-02 h2 {
  font-family: "din-2014", sans-serif;
  font-size: clamp(50px, 6vw, 80px);
  line-height: 1.2;
  font-weight: 700;
}

.c-post-slider-01-wrap .c-section-title-02 {
  margin-bottom: 0;
  position: relative;
  margin-left: clamp(5%, 6vw, 15%);
}
.c-post-slider-01-wrap .c-section-title-02 h2 {
  position: relative;
  transform: translateY(calc(-100% - 5px));
  color: #528A40;
  font-size: clamp(40px, 6vw, 70px);
}
@media screen and (min-width: 960px) {
  .c-post-slider-01-wrap .c-section-title-02 h2 {
    transform: translateY(calc(-100% - 14px));
    font-size: clamp(70px, 6vw, 80px);
  }
}

.c-post-slider-01 {
  overflow: hidden;
}
.c-post-slider-01__inner {
  position: relative;
}
.c-post-slider-01__content {
  position: relative;
  overflow: hidden !important;
  overflow-x: clip;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
}
.c-post-slider-01__content.swiper {
  overflow: hidden !important;
}
@media screen and (min-width: 600px) {
  .c-post-slider-01__content {
    margin-left: 10%;
  }
}
.c-post-slider-01__content.is-few {
  width: 90%;
  margin-left: auto;
}
.c-post-slider-01__arrows {
  position: static;
  width: auto;
  pointer-events: auto;
  transform: none;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 26px);
}
.c-post-slider-01__arrows .swiper-button-prev,
.c-post-slider-01__arrows .swiper-button-next {
  position: static;
  margin: 0;
  transform: none;
  z-index: 10;
  pointer-events: auto;
  border: 0;
  width: clamp(22px, 5.6vw, 34px);
  height: clamp(22px, 5.6vw, 34px);
  color: #665448;
}
.c-post-slider-01__arrows .swiper-button-prev::after,
.c-post-slider-01__arrows .swiper-button-next::after {
  font-size: clamp(14px, 2.2vw, 24px);
  color: currentColor;
  font-weight: 900;
}
.c-post-slider-01__arrows .swiper-button-prev {
  left: auto;
}
.c-post-slider-01__arrows .swiper-button-next {
  right: auto;
}
.c-post-slider-01__arrows.is-hidden {
  display: none;
}
.c-post-slider-01__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: clamp(18px, 4vw, 42px);
}
@media screen and (min-width: 960px) {
  .c-post-slider-01__controls {
    left: 15%;
  }
}
.c-post-slider-01__lists {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px 2%;
}
@media screen and (min-width: 960px) {
  .c-post-slider-01__lists {
    gap: 25px 10px;
  }
}
.c-post-slider-01__lists.is-slider {
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: row;
}
.c-post-slider-01__lists.is-slider .c-post-slider-01__list {
  flex-basis: auto;
}
.c-post-slider-01__list {
  flex-basis: 49%;
}
@media screen and (min-width: 960px) {
  .c-post-slider-01__list {
    flex-basis: 32%;
  }
}
@media screen and (min-width: 1280px) {
  .c-post-slider-01__list {
    flex-basis: 24%;
  }
}
.c-post-slider-01__list a {
  text-decoration: none;
  color: #665448;
}
.c-post-slider-01__desc-meta {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 0 5px;
  margin-bottom: 5px;
  font-weight: 500;
}
.c-post-slider-01__desc-meta time {
  position: relative;
  line-height: 1.2;
  width: 100%;
  letter-spacing: 0.01px;
}
@media screen and (min-width: 480px) {
  .c-post-slider-01__desc-meta time {
    width: auto;
  }
}
.c-post-slider-01__desc {
  padding: 10px 8px;
}
.c-post-slider-01__image {
  width: 100%;
  height: auto;
  transform: none;
  background-color: #F1EFE2;
  aspect-ratio: 1/1;
}
.c-post-slider-01__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(224, 220, 211, 0.1);
}
.c-post-slider-01__title {
  font-weight: 500;
  margin-bottom: 0.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .c-post-slider-01__title {
    font-size: 16px;
    line-height: 1.5;
  }
}
.c-post-slider-01__button {
  margin-top: 0;
  text-align: center;
}
.c-post-slider-01__button .c-button {
  max-width: none;
  min-width: clamp(170px, 36vw, 230px);
  padding: clamp(10px, 2.2vw, 14px) clamp(20px, 4.5vw, 44px);
  line-height: 1;
}
.c-post-slider-01__not-info {
  text-align: center;
  padding: 50px 0;
}

.c-faq {
  border-bottom: 1px solid #eeeeee;
}
.c-faq h3 {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 25px);
  margin-bottom: 1em;
}
.c-faq summary {
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-bottom: none;
  padding: 25px 30px 25px 10px;
  position: relative;
  list-style: none;
  transition: 0.3s;
  font-weight: 600;
  cursor: pointer;
}
@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 {
  content: "Q.";
  display: inline-block;
  margin-right: 8px;
  font-weight: 500;
  font-size: 1em;
}
.c-faq summary::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-arrow.svg");
  transition: transform 0.28s ease, filter 0.28s ease;
}
.c-faq details {
  position: relative;
}
.c-faq details .c-faq__content {
  padding: 25px 10px 25px 10px;
  background-color: #fff;
}
.c-faq details .c-faq__content::before {
  content: "A.";
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 600px) {
  .c-faq details .c-faq__content {
    padding: 25px 20px 25px 26px;
  }
}
.c-faq details[open] summary {
  border-bottom: 1px solid #eeeeee;
}
.c-faq details.is-open summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.c-faq__content {
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .c-faq__content {
    gap: 10px;
  }
}
.c-faq__text {
  flex: 1;
}

.c-image-text-block-03 {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 820px) {
  .c-image-text-block-03 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title  image" "text   image" "button button";
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 0;
    align-items: center;
  }
}
@media screen and (min-width: 820px) {
  .c-image-text-block-03--row-reverse {
    grid-template-areas: "image text";
  }
}
.c-image-text-block-03__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 820px) {
  .c-image-text-block-03__image {
    grid-area: image;
    align-self: stretch;
  }
}
.c-image-text-block-03__text {
  font-size: 16px;
  line-height: 1.8;
}
.c-image-text-block-03__text span {
  color: #528A40;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
}
.c-image-text-block-03__text p {
  text-align: justify;
  font-size: clamp(15px, 1.8vw, 18px);
}
.c-image-text-block-03__text dl {
  margin-top: 30px;
  font-size: clamp(14px, 1.8vw, 16px);
}
.c-image-text-block-03__text dt {
  font-weight: 600;
  margin-bottom: 6px;
}
@media screen and (min-width: 820px) {
  .c-image-text-block-03__text {
    grid-area: text;
    align-self: start;
  }
}
.c-image-text-block-03__title {
  color: #528A40;
}
@media screen and (min-width: 820px) {
  .c-image-text-block-03__title {
    grid-area: title;
    align-self: end;
    margin-bottom: 20px;
  }
}
.c-image-text-block-03__title span {
  display: block;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.4;
  font-weight: 500;
}
.c-image-text-block-03__title h2 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.07px;
}
.c-image-text-block-03__button {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .c-image-text-block-03__button {
    grid-area: button;
  }
}
.c-image-text-block-03__button .c-button {
  max-width: 360px;
  padding: 20px 35px;
}

.c-scroll-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  /* 画像を固定表示して、スクロール時に後続コンテンツが上に被さるパターン */
}
.c-scroll-bg img,
.c-scroll-bg .l-main-visual__main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.c-scroll-bg__image img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.c-scroll-bg {
  /* 代替：疑似要素で背景画像を指定することも可能
  &:before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      width: 100%;
      height: 100vh;
      background-size: cover;
  }
  */
}

.l-main-content-zoom {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

/* 汎用：`c-scroll-bg` の次に来るコンテンツを上に被せる */
.c-scroll-bg + * {
  position: relative;
  z-index: 3;
  background-color: #fff;
}

html.is-splash-skip .c-splash {
  display: none;
}

.c-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFF8E8;
  z-index: 10000;
  pointer-events: none;
}
.c-splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10003;
}
.c-splash__logo img {
  display: block;
  width: clamp(120px, 16vw, 220px);
  height: auto;
}
.c-splash__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(76vmin + 160px);
  height: calc(76vmin + 160px);
  z-index: 10002;
  animation: splash-orbit-cw 20s linear infinite;
}
.c-splash__veg {
  position: absolute;
  transform: translate(-50%, -50%);
}
.c-splash__veg img {
  display: block;
  width: clamp(80px, 20vmin, 160px);
  height: auto;
  animation: splash-orbit-ccw 20s linear infinite;
}
.c-splash__veg--1 {
  left: 50%;
  top: calc(50% - 38vmin);
}
.c-splash__veg--2 {
  left: calc(50% + 26.9vmin);
  top: calc(50% - 26.9vmin);
}
.c-splash__veg--3 {
  left: calc(50% + 38vmin);
  top: 50%;
}
.c-splash__veg--4 {
  left: calc(50% + 26.9vmin);
  top: calc(50% + 26.9vmin);
}
.c-splash__veg--5 {
  left: 50%;
  top: calc(50% + 38vmin);
}
.c-splash__veg--6 {
  left: calc(50% - 26.9vmin);
  top: calc(50% + 26.9vmin);
}
.c-splash__veg--7 {
  left: calc(50% - 38vmin);
  top: 50%;
}
.c-splash__veg--8 {
  left: calc(50% - 26.9vmin);
  top: calc(50% - 26.9vmin);
}

@keyframes splash-orbit-cw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes splash-orbit-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.is-splash #l-global-container {
  background-color: #FFF8E8;
  transition: background-color 0.8s ease;
}
body.is-splash #l-global-container.is-splash-active {
  background-color: #fff;
}
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;
}

/* Contact Form (c-form) styles used by Contact Form 7 markup */
.c-form {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  color: #665448;
}
.c-form p br {
  display: none;
}
.c-form__list {
  margin-bottom: 20px;
}
.c-form__label {
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 5px;
}
.c-form__label small {
  display: inline-block;
  line-height: 1.4;
  width: 100%;
}
.c-form label {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
.c-form input,
.c-form textarea,
.c-form select {
  display: block;
  width: 100%;
}
.c-form .c-form__radio-group .wpcf7-list-item {
  width: 100%;
  margin-left: 0;
}
.c-form .c-form__radio-group .wpcf7-list-item.last label {
  margin-bottom: 0;
}
.c-form .c-form__radio-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  cursor: pointer;
}
.c-form .c-form__radio-group .wpcf7-list-item label input {
  width: auto;
  margin-top: 0;
}
.c-form .c-form__radio-group,
.c-form .c-form .wpcf7-radio,
.c-form .c-form .wpcf7-list {
  border: 1px solid #535353;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: transparent;
}
.c-form .c-form > label > .wpcf7-list,
.c-form .c-form > label > .wpcf7-radio {
  border: 1px solid #535353;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-form .c-form > label > .wpcf7-list .wpcf7-list-item,
.c-form .c-form > label > .wpcf7-radio .wpcf7-list-item {
  width: 100%;
}
.c-form .c-form > label > .wpcf7-list .wpcf7-list-item label,
.c-form .c-form > label > .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  cursor: pointer;
}
.c-form {
  /* Inputs / textarea */
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form textarea,
.c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #535353;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 17px;
  color: #665448;
  background: transparent;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
  width: 100%;
}
.c-form textarea {
  min-height: clamp(140px, 22vh, 260px);
  resize: vertical;
  padding-top: 14px;
}
.c-form input:focus,
.c-form textarea:focus,
.c-form select:focus {
  border-color: #528A40;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.c-form {
  /* Placeholder color */
}
.c-form ::-moz-placeholder {
  color: #cfcfcf;
}
.c-form ::placeholder {
  color: #cfcfcf;
}
.c-form {
  /* Acceptance checkbox */
}
.c-form .c-form__accept {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 18px;
  font-weight: 700;
}
.c-form .c-form__footer p {
  display: flex;
  justify-content: space-between;
}
.c-form .c-form__footer p button {
  border: none;
  background: none;
  text-decoration: underline;
  color: #00A3F8;
  cursor: pointer;
}
.c-form {
  /* Submit button */
}
.c-form .wpcf7-form-control.wpcf7-submit,
.c-form input[type=submit],
.c-form button[type=submit] {
  display: inline-block;
  padding: 8px 20px;
  min-width: 180px;
  border-radius: 50px;
  background: transparent;
  color: #665448;
  font-weight: 700;
  cursor: pointer;
  width: auto;
  border: 1px solid #665448;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.08s ease;
}
.c-form .wpcf7-form-control.wpcf7-submit:hover,
.c-form input[type=submit]:hover,
.c-form button[type=submit]:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}
.c-form {
  /* Small helper spacing for required mark */
}
.c-form .wpcf7-validates-as-required::after {
  content: "*";
  color: #FF0000;
  margin-left: 6px;
  font-weight: 700;
}
.c-form .wpcf7-acceptance span {
  margin-left: 0;
}
.c-form .wpcf7-acceptance span input {
  margin-bottom: 0;
}
.c-form .wpcf7-spinner {
  display: none;
}

.c-form__required {
  color: #ff0000;
}

.p-subscription-ticket__price {
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
  color: #665448;
  margin-top: clamp(20px, 4vw, 30px);
}
.p-subscription-ticket__button {
  text-align: center;
}
.p-subscription-ticket__button .c-button {
  max-width: 360px;
  padding: 20px 35px;
}
.p-subscription-ticket__button p {
  font-weight: 600;
}

.p-subscription-plan__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.p-subscription-plan__tab {
  position: relative;
  min-width: 96px;
  padding: clamp(8px, 1.5vw, 12px) clamp(20px, 4vw, 40px);
  border: 2px solid #d9cfbb;
  color: #c8ba9d;
  text-align: center;
  line-height: 1;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 700;
}
.p-subscription-plan__tab::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #d9cfbb;
}
.p-subscription-plan__tab--active {
  border-color: #528A40;
  color: #528A40;
}
.p-subscription-plan__tab--active::after {
  border-top-color: #528A40;
}
.p-subscription-plan__card--hidden {
  display: none !important;
}
.p-subscription-plan__card {
  margin-top: 30px;
  border: 10px solid #528A40;
  padding: 40px 10px;
}
@media screen and (min-width: 480px) {
  .p-subscription-plan__card {
    padding: 60px 20px;
  }
}
@media screen and (min-width: 820px) {
  .p-subscription-plan__card {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 50px 40px;
    border: 16px solid #528A40;
  }
}
.p-subscription-plan__course h3 {
  font-size: clamp(24px, 5vw, 35px);
  line-height: 1.3;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01px;
}
@media screen and (min-width: 820px) {
  .p-subscription-plan__course {
    flex: 1;
  }
}
.p-subscription-plan__course--standard h3 {
  color: #528A40;
}
.p-subscription-plan__course--premium h3 {
  color: #EC5000;
}
.p-subscription-plan__course-head {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  margin-top: 22px;
}
.p-subscription-plan__cups {
  font-size: clamp(25px, 5vw, 35px);
  line-height: 1;
  font-weight: 700;
  color: #655448;
  letter-spacing: 0.01px;
}
.p-subscription-plan__recover {
  font-size: clamp(15px, 2.4vw, 16px);
  line-height: 1.4;
  color: #655448;
  font-weight: 600;
}
.p-subscription-plan__monthly {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 0 auto;
  margin-top: 20px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #d9cfbb;
  width: 90%;
}
.p-subscription-plan__label {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  margin-right: 12px;
}
.p-subscription-plan__price {
  font-size: clamp(40px, 13vw, 60px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01px;
}
.p-subscription-plan__yen {
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  margin-left: 8px;
}
.p-subscription-plan__monthly--main {
  color: #528A40;
}
.p-subscription-plan__monthly--accent {
  color: #EC5000;
}
.p-subscription-plan__unit-price {
  margin-top: 14px;
  font-size: clamp(13px, 2.4vw, 16px);
  line-height: 1.5;
  color: #655448;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.p-subscription-plan__unit-price span {
  display: inline-block;
  margin-left: 12px;
  font-size: clamp(20px, 7vw, 30px);
  line-height: 1;
  font-weight: 600;
  color: #655448;
  letter-spacing: 0.01px;
}
.p-subscription-plan__unit-price-yen {
  font-size: clamp(16px, 3vw, 20px) !important;
}
.p-subscription-plan__divider {
  height: 2px;
  background: #c7bfb6;
  margin: 36px 0;
}
@media screen and (min-width: 820px) {
  .p-subscription-plan__divider {
    width: 2px;
    height: auto;
    margin: 0 40px;
  }
}
.p-subscription-plan__notes {
  margin-top: 34px;
}
.p-subscription-plan__notes h3 {
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.4;
  font-weight: 700;
  color: #655448;
  padding-bottom: 10px;
  border-bottom: 5px solid #528A40;
}
.p-subscription-plan__notes p {
  margin-top: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: #655448;
  text-align: justify;
}
.p-subscription-plan___image {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.p-subscription-plan___image img {
  display: block;
  flex: 1 1 0;
  width: 100%;
  max-width: 320px;
  height: auto;
}
@media screen and (min-width: 820px) {
  .p-subscription-plan___image {
    flex-wrap: nowrap;
  }
  .p-subscription-plan___image img {
    max-width: none;
  }
}

.p-subscription-voice {
  max-width: 900px;
  margin: 0 auto;
}
.p-subscription-voice__list {
  margin-top: clamp(50px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 7vw, 70px);
}
.p-subscription-voice__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 820px) {
  .p-subscription-voice__item {
    flex-direction: row;
    align-items: center;
    gap: clamp(30px, 5vw, 60px);
  }
}
@media screen and (min-width: 820px) {
  .p-subscription-voice__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.p-subscription-voice__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.p-subscription-voice__image {
  width: clamp(130px, 32vw, 180px);
  height: clamp(130px, 32vw, 180px);
  border-radius: 50%;
  background-color: #FFF8E8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .p-subscription-voice__image {
    width: 180px;
    height: 180px;
  }
}
.p-subscription-voice__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-subscription-voice__profile {
  margin-top: 12px;
  font-size: clamp(13px, 2.5vw, 15px);
  color: #655448;
  text-align: center;
}
@media screen and (min-width: 820px) {
  .p-subscription-voice__body {
    flex: 1;
  }
}
.p-subscription-voice__heading {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: #528A40;
}
.p-subscription-voice__text {
  margin-top: 16px;
  font-size: clamp(15px, 2.5vw, 16px);
  line-height: 1.9;
  color: #665448;
  text-align: justify;
}

.p-subscription-choice___description {
  margin-top: 20px;
  line-height: 1.8;
  color: #665448;
  font-size: clamp(16px, 1.6vw, 18px);
  text-align: center;
  font-weight: bold;
}
.p-subscription-choice___image {
  max-width: 900px;
  margin: 0 auto;
}
.p-subscription-choice___image img {
  display: block;
  width: 100%;
  height: auto;
}
.p-subscription-choice__button {
  text-align: center;
}
.p-subscription-choice__button p {
  font-weight: 600;
}
.p-subscription-choice__button .c-button {
  max-width: 360px;
  padding: 20px 35px;
}

.p-subscription-easy__notes {
  margin-top: 34px;
}
.p-subscription-easy__notes h3 {
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.4;
  font-weight: 700;
  color: #655448;
  padding-bottom: 10px;
  border-bottom: 5px solid #528A40;
}
.p-subscription-easy__notes h3___image {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.p-subscription-easy__notes h3___image img {
  display: block;
  flex: 0 0 calc((100% - 48px) / 3);
  width: 100%;
  max-width: 280px;
  height: auto;
}
.p-subscription-easy__notes h3___image::-webkit-scrollbar {
  height: 8px;
}
.p-subscription-easy__notes h3___image::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
@media screen and (min-width: 820px) {
  .p-subscription-easy__notes h3___image img {
    flex: 1 1 0;
    max-width: none;
  }
}
.p-subscription-easy__notes p {
  margin-top: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: #655448;
  text-align: justify;
}
.p-subscription-easy__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 30px auto;
  gap: 10px;
}
@media screen and (min-width: 820px) {
  .p-subscription-easy__image-container {
    gap: 24px;
    margin: 60px auto;
  }
}
.p-subscription-easy__item {
  flex: 1;
  text-align: center;
  position: relative;
}
.p-subscription-easy__item:not(:last-child)::after {
  content: "▶︎";
  position: absolute;
  top: 40%;
  right: -12px;
  color: #528A40;
  font-size: 12px;
  transform: translateY(-50%);
}
@media screen and (min-width: 820px) {
  .p-subscription-easy__item:not(:last-child)::after {
    right: -40px;
    font-size: 30px;
  }
}
.p-subscription-easy__item img {
  width: 100%;
  height: auto;
  max-width: 280px;
  margin: 0 auto;
}
.p-subscription-easy__item p {
  margin-top: 10px;
  font-size: clamp(12px, 2.5vw, 16px);
  line-height: 1.4;
  font-weight: 700;
  color: #528A40;
}

.p-subscription-app {
  position: relative;
  overflow: visible;
}
.p-subscription-app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35vh;
  background-image: url("../images/subscription-app-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
  pointer-events: none;
  max-height: 450px;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .p-subscription-app::before {
    top: 40%;
    left: 0;
    width: 49%;
    transform: none;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
  }
}
.p-subscription-app__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.p-subscription-app__visual {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__visual {
    width: 50%;
  }
}
.p-subscription-app__visual__image {
  margin: 0 auto;
  width: 70%;
  margin-top: 100px;
  max-width: 500px;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__visual__image {
    margin-top: 0;
    margin: 0;
  }
}
.p-subscription-app__visual__image .p-subscription-app__phone {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 0 auto;
}
.p-subscription-app__content {
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__content {
    width: 45%;
  }
}
.p-subscription-app__title {
  font-size: clamp(70px, 8vw, 80px);
  line-height: 1.05;
  color: #665448;
  font-weight: 600;
  margin-bottom: 12px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  letter-spacing: 0.01px;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__title {
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-subscription-app__title {
    margin: 0;
  }
}
.p-subscription-app__lead {
  font-size: clamp(15px, 3.2vw, 16px);
  color: #655448;
  margin-bottom: 20px;
  font-weight: 600;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__lead {
    margin: 0;
    width: 100%;
  }
}
.p-subscription-app__badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 12px;
}
.p-subscription-app__badges .p-subscription-app__badge {
  display: inline-block;
}
.p-subscription-app__badges .p-subscription-app__badge img {
  display: block;
  height: 44px;
  width: auto;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: space-between;
  }
}
@media screen and (min-width: 960px) {
  .p-subscription-app__visual {
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-subscription-app__content {
    flex: 1 1 auto;
  }
}
.p-subscription-app__title {
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__title {
    font-size: 56px;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 960px) {
  .p-subscription-app__badges {
    justify-content: flex-start;
    margin-top: 26px;
  }
}
.p-subscription-app__badge__box {
  display: inline-block;
}
.p-subscription-app__badge__box img {
  width: 100%;
  height: auto;
  display: none;
  width: 120px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-subscription-app__badge__box img {
    display: block;
    margin-bottom: 10px;
  }
}

/*
* p-office-salad-point
* 福利厚生プランのポイント
==================================*/
.p-office-salad-point {
  counter-reset: point-counter;
}
.p-office-salad-point__list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 60px);
  margin-top: clamp(24px, 4vw, 40px);
  list-style: none;
  padding: 0;
}
.p-office-salad-point__item {
  counter-increment: point-counter;
  padding-top: clamp(20px, 3vw, 28px);
}
@media screen and (min-width: 820px) {
  .p-office-salad-point__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto 1fr;
    -moz-column-gap: clamp(24px, 3vw, 40px);
         column-gap: clamp(24px, 3vw, 40px);
    align-items: start;
  }
}
.p-office-salad-point__item::before {
  content: counter(point-counter, decimal-leading-zero);
  display: block;
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 700;
  color: #528A40;
  line-height: 1;
  margin-bottom: clamp(8px, 1.5vw, 14px);
}
@media screen and (min-width: 820px) {
  .p-office-salad-point__item::before {
    grid-column: 1;
    grid-row: 1/-1;
    margin-bottom: 0;
  }
}
.p-office-salad-point__item h3 {
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 700;
  color: #528A40;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (min-width: 820px) {
  .p-office-salad-point__item h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    margin-top: 20px;
  }
}
@media screen and (min-width: 820px) {
  .p-office-salad-point__item p, .p-office-salad-point__item > ul {
    grid-column: 2;
  }
}
.p-office-salad-point__item p {
  font-size: clamp(14px, 2vw, 16px);
  color: #665448;
  line-height: 1.9;
}
.p-office-salad-point__item p + p {
  margin-top: clamp(12px, 2vw, 16px);
}
.p-office-salad-point__item > ul {
  margin-top: clamp(10px, 1.5vw, 14px);
  margin-bottom: clamp(12px, 2vw, 16px);
  padding: 0;
  list-style: none;
}
.p-office-salad-point__item > ul li {
  font-size: clamp(14px, 2vw, 16px);
  color: #665448;
  line-height: 1.9;
}

.p-office-salad-contact__description {
  margin-top: 20px;
  line-height: 1.8;
  color: #665448;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 820px) {
  .p-office-salad-contact__description {
    text-align: center;
  }
}

/*
* 導入企業様
==================================*/
.p-office-salad-partners__container {
  background-color: #FFF8E8;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  margin-top: clamp(20px, 6vw, 40px);
}
.p-office-salad-partners__content {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (min-width: 600px) {
  .p-office-salad-partners__content {
    grid-template-columns: repeat(auto-fit, 220px);
    justify-content: center;
    gap: 20px;
  }
  .p-office-salad-partners__content:has(> li:nth-child(5)) {
    grid-template-columns: repeat(4, 220px);
  }
}
.p-office-salad-partners__item a {
  display: block;
  background: #fff;
  overflow: hidden;
  transition: opacity 0.3s;
}
.p-office-salad-partners__item a:hover {
  opacity: 0.75;
}
.p-office-salad-partners__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 22/9;
}

/*
　こんな方におすすめ
================================*/
.p-franchise-recommend__bubble {
  position: relative;
  z-index: 1;
  background-color: #FFF8E8;
  padding: clamp(32px, 4vw, 48px) clamp(10px, 7vw, 80px);
  margin: 0 auto;
  margin-bottom: -80px;
  max-width: clamp(370px, 72%, 850px);
  width: 90%;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}
.p-franchise-recommend__bubble::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-top: 32px solid #FFF8E8;
}
.p-franchise-recommend__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 3vw, 28px);
}
.p-franchise-recommend__item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 14px);
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 700;
  color: #665448;
  line-height: 1.5;
}
.p-franchise-recommend__item::before {
  content: "";
  background-image: url("../images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(22px, 2.8vw, 28px);
  height: clamp(22px, 2.8vw, 28px);
  flex-shrink: 0;
}
.p-franchise-recommend__image-wrap {
  position: relative;
  overflow: hidden;
}
.p-franchise-recommend__image-wrap img {
  display: block;
  width: 100%;
  height: clamp(250px, 40vw, 400px);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-franchise-recommend__catchcopy {
  position: absolute;
  bottom: clamp(60px, 10vw, 130px);
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(20px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01px;
}

/*
　今、チョップドサラダ専門店が人気！
================================*/
.p-franchise-popular {
  overflow: hidden;
}
@media screen and (min-width: 820px) {
  .p-franchise-popular {
    overflow: visible;
    position: relative;
  }
}
.p-franchise-popular__circle-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 40px);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 820px) {
  .p-franchise-popular__circle-wrap {
    position: absolute;
    left: max(50% - 640px, 5%);
    top: 50%;
    transform: translateY(-35%);
    margin-top: 0;
    justify-content: flex-start;
  }
}
.p-franchise-popular__circle {
  position: relative;
  width: clamp(260px, 65vw, 400px);
  height: clamp(260px, 65vw, 400px);
}
@media screen and (min-width: 820px) {
  .p-franchise-popular__circle {
    width: clamp(320px, 28vw, 440px);
    height: clamp(320px, 28vw, 440px);
  }
}
.p-franchise-popular__circle img, .p-franchise-popular__circle__bowl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-franchise-popular__circle__text {
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  animation: franchise-bowl-spin 12s linear infinite;
  transform-origin: center center;
  transform: translate(-50%, -50%);
}
@keyframes franchise-bowl-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.p-franchise-popular__body {
  background-color: #528A40;
  margin-top: clamp(-200px, -32.5vw, -160px);
  padding-top: calc(clamp(150px, 32.5vw, 200px) + clamp(24px, 3vw, 40px));
  padding-bottom: clamp(40px, 6vw, 64px);
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 820px) {
  .p-franchise-popular__body {
    margin-top: 60px;
    padding-top: clamp(48px, 5vw, 60px);
    padding-bottom: clamp(48px, 5vw, 60px);
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
  }
}
.p-franchise-popular__body p {
  color: #fff;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
@media screen and (min-width: 820px) {
  .p-franchise-popular__body p {
    max-width: 560px;
    font-size: clamp(14px, 1.4vw, 16px);
  }
}
@media screen and (min-width: 820px) {
  .p-franchise-popular__body .l-section__container {
    padding-left: calc(clamp(320px, 28vw, 440px) + clamp(32px, 4vw, 56px));
  }
}

/*
　VEGE&meの特徴
================================*/
.p-franchise-features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: features-counter;
  list-style: none;
  padding: 0;
  margin-top: clamp(32px, 5vw, 56px);
  gap: clamp(32px, 4vw, 48px);
}
.p-franchise-features__item {
  counter-increment: features-counter;
  position: relative;
  padding-top: clamp(48px, 7vw, 72px);
}
.p-franchise-features__title {
  position: relative;
  font-size: clamp(23px, 2.4vw, 25px);
  font-weight: 700;
  color: #528A40;
  margin-bottom: 60px;
  line-height: 1.4;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.p-franchise-features__title::before {
  content: counter(features-counter, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(1.3);
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
  color: #F3EBD8;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}
.p-franchise-features__text {
  position: relative;
  color: #665448;
  line-height: 1.9;
  text-align: justify;
  font-size: clamp(14px, 2vw, 16px);
}

/*
　店舗実績
================================*/
.p-franchise-achievement {
  margin-top: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "media" "info" "desc";
  gap: clamp(30px, 3vw, 40px);
}
@media screen and (min-width: 820px) {
  .p-franchise-achievement {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "media info" "desc  desc";
    -moz-column-gap: clamp(32px, 4vw, 56px);
         column-gap: clamp(32px, 4vw, 56px);
    row-gap: clamp(24px, 3vw, 40px);
    align-items: start;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
  }
}
.p-franchise-achievement__media {
  grid-area: media;
  position: relative;
}
.p-franchise-achievement__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 820px) {
  .p-franchise-achievement__media img {
    aspect-ratio: 4/3;
  }
}
.p-franchise-achievement__info {
  grid-area: info;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  .p-franchise-achievement__info {
    width: 100%;
  }
}
.p-franchise-achievement__name {
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 700;
  color: #665448;
  margin-bottom: 10px;
  line-height: 1.4;
}
.p-franchise-achievement__table {
  display: flex;
  flex-direction: column;
}
.p-franchise-achievement__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0 5px;
  border-bottom: 1px solid #ddd;
  gap: 12px;
}
.p-franchise-achievement__row dt {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #665448;
  font-weight: 600;
  flex-shrink: 0;
}
.p-franchise-achievement__row dd {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #665448;
  text-align: right;
  font-weight: 600;
}
.p-franchise-achievement__val {
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 700;
  color: #665448;
  letter-spacing: -0.02em;
  margin: 0 2px;
}
.p-franchise-achievement__val--md {
  font-size: clamp(28px, 4vw, 44px);
}
.p-franchise-achievement__desc {
  grid-area: desc;
  color: #665448;
  line-height: 2;
  margin: 0 auto;
  width: 90%;
  text-align: justify;
}
@media screen and (min-width: 820px) {
  .p-franchise-achievement__desc {
    text-align: center;
    width: 100%;
  }
}

/*
　サービス導入の流れ
================================*/
.p-franchise-flow {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 5vw, 50px);
}
@media screen and (min-width: 820px) {
  .p-franchise-flow {
    max-width: 820px;
    margin: 0 auto;
  }
}
.p-franchise-flow__item {
  position: relative;
  background-color: #528A40;
  width: 100%;
  display: grid;
  grid-template-columns: clamp(56px, 12vw, 80px) 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: clamp(16px, 3vw, 24px);
       column-gap: clamp(16px, 3vw, 24px);
  align-items: center;
  padding: clamp(20px, 3vw, 28px) 5%;
}
.p-franchise-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: calc(5% + clamp(56px, 12vw, 80px) / 2);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: clamp(12px, 2vw, 18px) solid transparent;
  border-right: clamp(12px, 2vw, 18px) solid transparent;
  border-top: clamp(12px, 2vw, 18px) solid #528A40;
  z-index: 1;
}
@media screen and (min-width: 820px) {
  .p-franchise-flow__item {
    grid-template-columns: clamp(80px, 10vw, 120px) clamp(160px, 14vw, 200px) 1fr;
    grid-template-rows: 1fr;
    padding-left: max(50% - 1200px / 2, 5%);
    padding-right: max(50% - 1200px / 2, 5%);
    gap: 0 clamp(24px, 3vw, 40px);
  }
  .p-franchise-flow__item:not(:last-child)::after {
    left: calc(max(50% - 1200px / 2, 5%) + clamp(80px, 10vw, 120px) / 2);
    bottom: -16px;
    border-left-width: clamp(16px, 2vw, 22px);
    border-right-width: clamp(16px, 2vw, 22px);
    border-top-width: clamp(16px, 2vw, 22px);
  }
}
.p-franchise-flow__num {
  grid-column: 1;
  grid-row: 1/3;
  align-self: center;
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: scaleY(1.3);
}
@media screen and (min-width: 820px) {
  .p-franchise-flow__num {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(48px, 6vw, 80px);
  }
}
.p-franchise-flow__title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media screen and (min-width: 820px) {
  .p-franchise-flow__title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-bottom: 0;
  }
}
.p-franchise-flow__text {
  grid-column: 2;
  grid-row: 2;
  color: #fff;
  line-height: 1.6;
}
@media screen and (min-width: 820px) {
  .p-franchise-flow__text {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }
}

.p-franchise-contact__description {
  margin-top: 20px;
  line-height: 1.8;
  color: #665448;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: bold;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .p-franchise-contact__description {
    text-align: center;
  }
}
.p-franchise-contact__button {
  text-align: center;
}

@keyframes franchise-bowl-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*
* 
* Hero (about)
==================================*/
.l-hero-sub-about {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.l-hero-sub-about__image {
  position: absolute;
  inset: 0;
}
.l-hero-sub-about__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-hero-sub-about__title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
}
.l-hero-sub-about__title h1 {
  margin: 0;
  color: #fff;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 10vw;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  transform-origin: center;
}
@media screen and (min-width: 820px) {
  .l-hero-sub-about__title h1 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: clamp(50px, 5vw, 70px);
  }
}
.l-hero-sub-about__title h1 span {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 600;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .l-hero-sub-about__title h1 span {
    display: inline;
    transform: none;
  }
}

.p-about__title {
  color: #528A40;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(26px, 5vw, 35px);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  transform-origin: center;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-top: clamp(50px, 5vw, 40px);
  padding-bottom: 100px;
}
@media screen and (min-width: 600px) {
  .p-about__title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: clamp(30px, 4vw, 40px);
    padding-bottom: 30px;
  }
}
.p-about__title h2 span {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 600;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .p-about__title h2 span {
    display: inline;
    transform: none;
  }
}

.p-about__description {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 820px) {
  .p-about__description {
    text-align: center;
  }
}

/*
* 
* サラダボウル回転セクション
==================================*/
.p-about-saladbowl {
  /* SP: 左右にはみ出して見せる（横スクロール防止） */
  overflow: hidden;
}
.p-about-saladbowl__inner {
  position: relative;
  width: 140vw;
  margin: 0 auto;
  transform: translateX(-50%);
  left: 50%;
}
.p-about-saladbowl__bowl {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.p-about-saladbowl__text {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  animation: saladbowl-spin 12s linear infinite;
  transform-origin: center center;
}
.p-about-saladbowl {
  /* sm以上：はみ出しなし */
}
@media screen and (min-width: 480px) {
  .p-about-saladbowl {
    overflow: visible;
  }
  .p-about-saladbowl__inner {
    width: min(560px, 70vw);
    transform: none;
    left: auto;
  }
}

@keyframes saladbowl-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*
* 
* こだわりセクション
==================================*/
.p-about-feature {
  margin-bottom: 60px;
}
@media screen and (min-width: 960px) {
  .p-about-feature {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
  }
  .p-about-feature:nth-child(even) .p-about-feature__text {
    display: flex;
    justify-content: flex-end;
  }
  .p-about-feature:nth-child(even) .p-about-feature__header {
    display: flex;
    align-items: flex-end;
  }
  .p-about-feature:last-child {
    border-bottom: none;
  }
}
.p-about-feature {
  /* PC: 偶数アイテムは画像右・テキスト左 */
}
.p-about-feature--reverse {
  margin-bottom: 60px;
}
@media screen and (min-width: 960px) {
  .p-about-feature--reverse {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
  }
  .p-about-feature--reverse .p-about-feature__inner {
    grid-template-areas: "header media" "text   media";
  }
}
.p-about-feature__inner {
  display: grid;
  grid-template-areas: "header" "media" "text";
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .p-about-feature__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "media header" "media text";
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0;
  }
}
.p-about-feature__media {
  grid-area: media;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .p-about-feature__media {
    margin-bottom: 0;
    padding-top: 10%;
  }
}
.p-about-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.p-about-feature__header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 90%;
}
@media screen and (min-width: 960px) {
  .p-about-feature__header {
    width: 100%;
    margin: 0;
    padding-top: 10%;
    justify-content: flex-end;
    padding: 30px 50px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 960px) {
  .p-about-feature__header__inner {
    min-width: 500px;
  }
}
.p-about-feature__label {
  font-size: clamp(15px, 2vw, 16px);
  color: #528A40;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.p-about-feature__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  color: #528A40;
  margin-bottom: 10px;
}
.p-about-feature__text {
  grid-area: text;
  line-height: 1.9;
  width: 90%;
  margin: 0 auto;
  text-align: justify;
  font-size: clamp(15px, 3vw, 16px);
}
@media screen and (min-width: 960px) {
  .p-about-feature__text {
    width: 100%;
    margin: 0;
    padding: 30px 50px;
    padding-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-about-feature__text__inner {
    max-width: 500px;
  }
}
.p-about-feature__center-line {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .p-about-feature__center-line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 110%;
    background-color: #ddd;
    opacity: 0.5;
  }
}
.p-about-feature__wrapper {
  max-width: 2500px;
  margin: 0 auto;
  padding: 1em 0 0;
}
@media screen and (min-width: 960px) {
  .p-about-feature__wrapper {
    padding: clamp(60px, 7vw, 120px) 0 10em;
  }
}

.l-hero-sub-recruit {
  padding-top: clamp(80px, 13vw, 200px);
  margin-top: 50px;
  line-height: 1;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .l-hero-sub-recruit {
    max-width: 1200px;
  }
}
.l-hero-sub-recruit__title {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 2;
}
.l-hero-sub-recruit__title p {
  display: block;
  font-weight: 800;
  line-height: 1.4;
  font-size: clamp(16px, 2vw, 20px);
  color: #665448;
}
.l-hero-sub-recruit__title h1 {
  font-size: clamp(40px, 5vw, 50px);
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  color: #665448;
  position: relative;
  letter-spacing: 0.01px;
}
.l-hero-sub-recruit__description {
  line-height: 1.8;
  color: #665448;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .l-hero-sub-recruit__description {
    text-align: center;
  }
}

.p-recruit-content {
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .p-recruit-content {
    flex-direction: row;
    gap: 40px;
    padding: 20px 30px;
  }
}
.p-recruit-content__image {
  flex-basis: 48%;
}
.p-recruit-content__image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 960px) {
  .p-recruit-content__image img {
    max-height: none;
  }
}
.p-recruit-content__text {
  flex: 1;
}
.p-recruit-content__text p {
  line-height: 1.8;
  font-size: clamp(15px, 2vw, 16px);
}
.p-recruit-content__title h2 {
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.4;
  font-weight: 700;
  color: #528A40;
}

.p-recruit-list {
  border-bottom: 1px solid #eeeeee;
}
.p-recruit-list__title {
  font-size: clamp(20px, 2.5vw, 23px);
  margin-bottom: 1em;
  text-align: center;
  color: #fff;
  background-color: #528A40;
  padding: 1em 0;
}
.p-recruit-list__description {
  padding: 10px;
  color: #665448;
}
@media screen and (min-width: 600px) {
  .p-recruit-list__description {
    padding: clamp(20px, 10vw, 40px) 0;
    text-align: center;
  }
}
.p-recruit-list h3 {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 23px);
  margin-bottom: 1em;
}
.p-recruit-list summary {
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-bottom: none;
  padding: 25px 30px 25px 10px;
  position: relative;
  list-style: none;
  transition: 0.3s;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .p-recruit-list summary {
    padding: 25px 30px 25px 30px;
  }
}
.p-recruit-list summary span {
  font-size: 1.3em;
}
.p-recruit-list summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-arrow.svg");
  transition: transform 0.28s ease, filter 0.28s ease;
}
.p-recruit-list details {
  position: relative;
  border-top: none;
}
.p-recruit-list details .p-recruit-list__content {
  padding: 0;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .p-recruit-list details .p-recruit-list__content {
    padding: 0;
  }
}
.p-recruit-list details[open] summary {
  border-bottom: 1px solid #eeeeee;
}
.p-recruit-list details.is-open summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.p-recruit-list__table {
  width: 100%;
  border-collapse: collapse;
}
.p-recruit-list__table tr {
  border-bottom: 1px solid #eeeeee;
}
.p-recruit-list__table tr:last-child {
  border-bottom: none;
}
.p-recruit-list__table th {
  width: 110px;
  padding: 1em 10px;
  font-weight: 600;
  font-size: 13px;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .p-recruit-list__table th {
    width: 150px;
    padding: 1.5em;
    font-size: 15px;
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .p-recruit-list__table th {
    width: 180px;
    padding: 1.5em 1em;
    font-size: 15px;
  }
}
.p-recruit-list__table td {
  padding: 1em 10px;
  font-size: 13px;
  vertical-align: top;
}
@media screen and (min-width: 600px) {
  .p-recruit-list__table td {
    padding: 1.5em 1em;
    font-size: 15px;
  }
}
.p-recruit-list__content {
  justify-content: space-between;
  gap: 20px;
}
.p-recruit-list__text {
  flex: 1;
}

.p-store-location {
  max-width: 1200px;
  margin: 0 auto;
}
.p-store-location:last-child {
  margin-bottom: 0 !important;
}
.p-store-location__area-title {
  background: #5a4a3a;
  color: #fff;
  padding: 0.5em 1em;
}
.p-store-location__area-title h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
@media screen and (min-width: 600px) {
  .p-store-location__area-title h2 {
    font-size: 22px;
  }
}
.p-store-location__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4em;
}
@media screen and (min-width: 820px) {
  .p-store-location__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4em;
  }
}
.p-store-location__item {
  position: relative;
  line-height: 1.4;
  margin: 0 auto;
  width: 90%;
}
.p-store-location__item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2em;
  width: 100%;
  background: #e0e0e0;
  height: 1px;
}
.p-store-location__item {
  /* SP: 1カラム - 最後のアイテムは線なし */
}
.p-store-location__item:nth-last-child(1)::before {
  display: none;
}
@media screen and (min-width: 820px) {
  .p-store-location__item {
    width: 100%;
    padding: 10px;
  }
  .p-store-location__item:nth-last-child(1)::before, .p-store-location__item:nth-last-child(2)::before {
    display: none;
  }
  .p-store-location__item:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: -2em;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e0e0e0;
  }
  .p-store-location__item:nth-last-child(1)::after {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .p-store-location__item {
    gap: 20px;
  }
}
.p-store-location__store-name {
  font-size: 18px;
  font-weight: 700;
  color: #655448;
  line-height: 1.4;
}
@media screen and (min-width: 820px) {
  .p-store-location__store-name {
    font-size: 18px;
    flex-basis: 20%;
    min-width: 100px;
  }
}
.p-store-location__info {
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.7px;
  flex: 1;
}
.p-store-location__row {
  display: flex;
}
.p-store-location__label {
  flex-shrink: 0;
  color: #665448;
  font-weight: 500;
}
.p-store-location__label::after {
  content: "：";
  margin-left: 0.2em;
}
.p-store-location__label--wide {
  letter-spacing: 2px;
}
.p-store-location__label--no-after {
  margin-right: 7px;
}
.p-store-location__label--no-after::after {
  display: none;
}
.p-store-location__text {
  flex: 1;
  color: #665448;
  margin-bottom: 10px;
}
.p-store-location__links {
  display: flex;
  gap: 1em;
  margin-top: 1em;
  flex-wrap: wrap;
}
.p-store-location__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5em 0;
  background: #fff;
  border: none;
  border-bottom: 1px solid #665448;
  color: #665448;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  line-height: 1;
}
.p-store-location__link:hover {
  opacity: 0.6;
}
.p-store-location__link--instagram img {
  flex-shrink: 0;
  height: 1em;
  width: 1em;
  display: inline-block;
}

.l-hero-sub-privacy-policy {
  padding-top: clamp(80px, 13vw, 200px);
  margin-top: 50px;
  line-height: 1;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .l-hero-sub-privacy-policy {
    max-width: 1200px;
  }
}
.l-hero-sub-privacy-policy__title {
  width: 90%;
  margin: 0 auto;
  line-height: 2;
}
.l-hero-sub-privacy-policy__title p {
  display: block;
  font-weight: 800;
  line-height: 1.4;
  font-size: clamp(16px, 2vw, 20px);
  color: #665448;
}
.l-hero-sub-privacy-policy__title h1 {
  font-size: clamp(30px, 5vw, 50px);
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  color: #665448;
  position: relative;
  letter-spacing: 0.01px;
}

.p-privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.p-privacy-content .p-privacy-block > p {
  margin-bottom: 10px;
  text-align: justify;
}
.p-privacy-content .p-privacy-block:last-child {
  margin-bottom: 0 !important;
}
.p-privacy-content ul {
  padding: 0;
  list-style: none;
}
.p-privacy-content address {
  font-style: normal;
}

/*
* 
* Hero (company)
==================================*/
@media screen and (min-width: 1280px) {
  .l-hero-sub-company {
    padding-top: 80px;
  }
}
.l-hero-sub-company__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company__title {
  color: #528A40;
  line-height: 1.4;
  /* SP: 縦書き表示 */
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(26px, 5vw, 35px);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  transform-origin: center;
  text-align: end;
  display: flex;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-top: clamp(50px, 5vw, 40px);
  padding-bottom: 100px;
}
@media screen and (min-width: 600px) {
  .p-company__title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: clamp(30px, 4vw, 40px);
    text-align: center;
  }
}

.p-company__description {
  margin: 0 auto;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.8;
  display: flex;
  justify-content: center;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  .p-company__description {
    text-align: center;
  }
}

.p-company__image {
  margin: 40px auto 0;
  width: 100%;
  max-width: 960px;
}
.p-company__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company__staff-info {
  text-align: right;
  width: 100%;
  margin-top: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 960px) {
  .p-company__staff-info {
    padding-right: 0;
  }
}

/*
* 
* Mission / Vision / Value
==================================*/
.p-company-mission {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 600px) {
  .p-company-mission {
    gap: 70px;
  }
}
.p-company-mission__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 600px) {
  .p-company-mission__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 20px;
    align-items: start;
  }
}
.p-company-mission__label {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #528A40;
  padding-top: 8px;
}
@media screen and (min-width: 600px) {
  .p-company-mission__label {
    font-size: clamp(16px, 3vw, 20px);
  }
}
.p-company-mission__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-company-mission__heading {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: bold;
  color: #528A40;
  line-height: 1.3;
  margin: 0;
}
.p-company-mission__text {
  line-height: 1.9;
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
}
.p-company-mission__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-company-mission__list li {
  line-height: 1.6;
}
.p-company-mission__list li::before {
  content: "・";
  color: #528A40;
  margin-right: 4px;
}

/*
* 
* Company Outline (緑背景テーブル)
==================================*/
.p-company-outline__wrapper {
  margin-bottom: 70px;
}
@media screen and (min-width: 960px) {
  .p-company-outline__wrapper {
    margin-bottom: 0;
  }
}
.p-company-outline__title {
  text-align: center;
  color: #fff;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.01px;
  margin: 0 0 48px;
}
.p-company-outline__table {
  width: 100%;
  border-collapse: collapse;
}
.p-company-outline__table tr {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.p-company-outline__table tr:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.p-company-outline__table th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 24px 16px 24px 0;
  width: 100px;
  vertical-align: top;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .p-company-outline__table th {
    width: 160px;
    text-align: right;
    padding-right: 40px;
  }
}
.p-company-outline__table td {
  color: #fff;
  padding: 24px 0;
  line-height: 1.9;
  vertical-align: top;
}

.p-hero-sub-thanks {
  padding-top: clamp(80px, 15vw, 300px);
  margin-top: 50px;
  line-height: 1;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .p-hero-sub-thanks {
    max-width: 1200px;
  }
}
.p-hero-sub-thanks__title {
  width: 90%;
  margin: 0 auto;
}
.p-hero-sub-thanks__title h1 {
  line-height: 1.4;
  font-size: clamp(25px, 5vw, 40px);
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  color: #665448;
  position: relative;
  letter-spacing: 0.01px;
}

.p-contact-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(40px, 10vw, 100px);
}
@media screen and (min-width: 600px) {
  .p-contact-thanks__inner {
    text-align: center;
  }
}
.p-contact-thanks__image {
  max-width: 200px;
  margin: 0 auto;
  margin-top: 50px;
  width: 70%;
}
.p-contact-thanks__image img {
  max-width: 100%;
  height: auto;
}

.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__btn {
  text-align: center;
}

.p-app {
  position: relative;
  overflow: visible;
  padding-bottom: 70px;
}
@media screen and (min-width: 960px) {
  .p-app {
    margin-top: 80px;
    padding-bottom: 0;
  }
}
.p-app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55vh;
  background-image: url("../images/app-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
  max-height: 800px;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .p-app::before {
    top: 0;
    left: 0;
    width: 49%;
    transform: none;
    background-position: center center;
    background-size: cover;
    height: 100%;
    max-height: none;
  }
}
.p-app::after {
  content: "";
  height: 100px;
  width: 100%;
  height: 150px;
  background-color: #528A40;
  z-index: -1;
  display: none;
}
@media screen and (min-width: 960px) {
  .p-app::after {
    display: block;
  }
}
.p-app__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (min-width: 960px) {
  .p-app__inner {
    gap: clamp(30px, 5vw, 70px);
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: center;
    padding: 80px 0;
  }
}
.p-app__visual {
  width: 100%;
}
.p-app__visual__image {
  margin: 0 auto;
  width: 70%;
  margin-top: 100px;
  max-width: 300px;
}
@media screen and (min-width: 960px) {
  .p-app__visual__image {
    margin-top: 0;
    margin: 0 auto;
  }
}
.p-app__visual__image .p-app__phone {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.p-app__content {
  max-width: 600px;
  width: 100%;
}
.p-app__title {
  font-size: clamp(70px, 8vw, 80px);
  line-height: 1.05;
  color: #665448;
  font-weight: 600;
  margin-bottom: 12px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  letter-spacing: 0.01px;
}
@media screen and (min-width: 960px) {
  .p-app__title {
    margin: 0;
  }
}
.p-app__lead {
  font-size: clamp(15px, 3.2vw, 16px);
  color: #655448;
  margin-bottom: 20px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-app__lead {
    margin: 0;
    width: 100%;
  }
}
.p-app__badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 50px;
}
.p-app__badges .p-app__badge {
  display: flex;
}
.p-app__badges .p-app__badge img {
  display: block;
  height: 44px;
  width: auto;
}
@media screen and (min-width: 960px) {
  .p-app__visual {
    margin: 0;
  }
}
.p-app__content {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-app__content {
    flex: 1 1 auto;
    margin-right: 20px;
  }
}
.p-app__title {
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .p-app__title {
    font-size: 56px;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 960px) {
  .p-app__badges {
    justify-content: flex-start;
    margin-top: 26px;
  }
}
.p-app__badge__box {
  display: inline-block;
}
.p-app__badge__box img {
  height: auto;
  display: none;
  width: 130px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-app__badge__box img {
    display: block;
    margin-bottom: 10px;
  }
}
.p-app__list {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .p-app__list {
    font-size: 16px;
  }
}
.p-app__list li {
  margin-bottom: 6px;
}

.l-hero-sub-contact {
  padding-top: clamp(80px, 13vw, 200px);
  margin-top: 50px;
  line-height: 1;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .l-hero-sub-contact {
    max-width: 1200px;
  }
}
.l-hero-sub-contact__title {
  width: 90%;
  margin: 0 auto;
  line-height: 2;
}
.l-hero-sub-contact__title h1 {
  font-size: clamp(30px, 5vw, 50px);
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  color: #528A40;
  position: relative;
  letter-spacing: 0.01px;
}
.l-hero-sub-contact__description {
  line-height: 1.8;
  color: #665448;
  font-size: clamp(15px, 1.6vw, 18px);
  text-align: center;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
}

/*
　カテゴリリスト
================================*/
.p-archive-list {
  margin-bottom: 2em;
}
.p-archive-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-archive-list__item a {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: #fff;
  color: #666;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
  line-height: 1;
  border: 0.5px solid #528A40;
}
.p-archive-list__item a:hover {
  background-color: #e0e0e0;
  color: #333;
}
.p-archive-list__item.is-active a {
  background: #528A40;
  color: #fff;
  font-weight: 600;
}

/*
　投稿リスト
================================*/
.p-news-content ul {
  list-style: none;
}
.p-news-content__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
  gap: 2em 1.4em;
}
@media screen and (min-width: 600px) {
  .p-news-content__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-news-content__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-news-content__list {
  background-color: #fff;
  border-radius: 10px 0 10px 0;
}
.p-news-content__list a {
  text-decoration: none;
  color: #665448;
}
.p-news-content__desc-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}
.p-news-content__desc {
  padding: 10px;
}
.p-news-content__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.p-news-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(224, 220, 211, 0.3);
}
.p-news-content__title {
  font-weight: 600;
  margin-bottom: 0.5em;
  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: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  font-size: clamp(14px, 2vw, 16px);
}
.p-news-content__notinfo {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
　ページナビ
================================*/
.wp-pagenavi {
  padding: 20px 0;
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 600px) {
  .wp-pagenavi {
    font-size: 14px;
    gap: 10px;
  }
}
.wp-pagenavi > a {
  color: #999;
  text-decoration: none;
}
.wp-pagenavi .pages {
  /* 左の表記 */
  display: none;
}
.wp-pagenavi span.current {
  background: #528A40;
  color: #fff;
  border-radius: 5px;
  border: none;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover {
  color: #333;
}
.wp-pagenavi .first, .wp-pagenavi .last {
  display: none;
}
.wp-pagenavi .extend {
  display: none;
}

.wp-pagenavi .current,
.wp-pagenavi a.page {
  /* ボタン */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  color: #999;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}

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

.p-news-title {
  padding: 3em 0 1em;
  color: #333;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 1em;
}
.p-news-title h3 {
  line-height: 1.4;
  font-size: clamp(19px, 3vw, 30px);
}

.p-single-header {
  padding-top: clamp(60px, 13vw, 100px);
  margin-top: 50px;
  line-height: 1;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .p-single-header {
    max-width: 1200px;
  }
}
.p-single-header__title {
  gap: 5px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p-single-header__title {
    gap: 10px;
    align-items: flex-end;
    width: 100%;
  }
}
.p-single-header__title h1 {
  display: block;
  font-weight: 800;
  line-height: 1.4;
  font-size: clamp(16px, 2vw, 20px);
  color: #665448;
}
.p-single-header__title span {
  font-size: clamp(40px, 6vw, 60px);
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  color: #665448;
  position: relative;
  letter-spacing: 0.01px;
}
.p-single-header__image {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-single-header__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 19/10;
}

.p-single-content__title h1 {
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 600;
  color: #665448;
}

.p-single-content__time {
  font-size: clamp(15px, 2vw, 16px);
  color: #665448;
  margin-top: 5px;
}

.p-single-content__body {
  margin: 0 auto;
  max-width: 900px;
  margin-top: clamp(40px, 4vw, 100px);
  line-height: 1.8;
}
.p-single-content__body p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-single-content__body p a {
  color: #528A40;
  text-decoration: underline;
  transition: opacity 0.3s;
  word-break: break-all;
}
.p-single-content__body p a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.p-single-content__body h2 {
  font-size: clamp(22px, 4vw, 28px);
  margin: clamp(40px, 4vw, 60px) 0 clamp(15px, 2vw, 20px);
  font-weight: 700;
}
.p-single-content__body h3 {
  font-size: clamp(20px, 3vw, 22px);
  margin: clamp(25px, 3vw, 40px) 0 clamp(15px, 2vw, 20px);
  padding-bottom: clamp(10px, 1.5vw, 15px);
  border-bottom: 2px solid #eee;
  font-weight: 500;
}
.p-single-content__body h4 {
  font-size: clamp(18px, 2.5vw, 20px);
  margin: clamp(25px, 3vw, 40px) 0 clamp(15px, 2vw, 20px);
  display: flex;
  align-items: center;
  line-height: 1.5;
  color: #665448;
}
.p-single-content__body h4::before {
  content: "";
  width: 3px;
  height: 1em;
  background-color: #665448;
  margin-right: 0.5em;
  flex-shrink: 0;
}
.p-single-content__body h4 strong {
  font-weight: bold;
  line-height: inherit;
  display: block;
}
.p-single-content__body ul,
.p-single-content__body ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 1.5em;
  line-height: 1.4;
}
.p-single-content__body li {
  margin-bottom: 0.5em;
}
.p-single-content__body img {
  max-width: 100%;
  display: block;
  margin: 40px auto;
}

.p-single-page-nav {
  max-width: 600px;
  margin: 0 auto;
}
.p-single-page-nav__button {
  text-align: center;
}
.p-single-page-nav__button .c-button {
  max-width: none;
  min-width: clamp(100px, 36vw, 230px);
  padding: clamp(10px, 2.2vw, 14px) clamp(20px, 4.5vw, 44px);
  line-height: 1;
  color: #fff;
}

/*シングルページのページ送り*/
.p-post-links {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}
.p-post-links a {
  color: #333;
  text-decoration: none;
}

.p-post-link {
  flex-basis: 50%;
  font-size: clamp(12px, 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: -2px;
  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: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.l-hero-sub-partners {
  padding-top: clamp(60px, 13vw, 180px);
  margin-top: 50px;
  line-height: 1;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .l-hero-sub-partners {
    max-width: 1200px;
  }
}
.l-hero-sub-partners__title {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .l-hero-sub-partners__title {
    width: 100%;
  }
}
.l-hero-sub-partners__title h1 {
  display: block;
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(22px, 4vw, 30px);
  color: #665448;
  text-align: center;
}
.l-hero-sub-partners__image {
  margin-top: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.l-hero-sub-partners__image img {
  width: 100%;
  max-height: 500px;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-partners-content {
  margin-bottom: 20px;
  gap: 20px;
}
@media screen and (min-width: 820px) {
  .p-partners-content {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.p-partners-content__image {
  flex-basis: 46%;
}
.p-partners-content__image img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-partners-content__text {
  flex: 1;
  padding: 1em;
}
.p-partners-content__text h2 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 700;
}
.p-partners-content__text p {
  text-align: justify;
  line-height: 1.8;
}

.p-partners-details {
  border-top: 1px solid #ddd;
  max-width: 800px;
  margin: 0 auto;
}
.p-partners-details__row {
  display: flex;
  align-items: baseline;
  gap: 1em;
  padding: 1.4em 0;
  border-bottom: 1px solid #ddd;
}
.p-partners-details__row dt {
  min-width: 100px;
  font-weight: 600;
  flex-shrink: 0;
}
@media screen and (min-width: 600px) {
  .p-partners-details__row dt {
    min-width: 140px;
  }
}
.p-partners-details__row dd {
  flex: 1;
  line-height: 1.8;
}

.p-partners-detail__button {
  text-align: center;
}

.p-home-concept {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
}
.p-home-concept__inner {
  position: relative;
  min-height: clamp(320px, 38vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home-concept__main-visual {
  position: relative;
  z-index: 10;
  width: clamp(280px, 33vw, 560px);
}
.p-home-concept__salad-bowl img {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-concept__copy {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-70%, -45%);
  z-index: 11;
  transform: translate(-10%, -75%);
}
.p-home-concept__copy h2 {
  color: #528A40;
  font-size: clamp(28px, 5vw, 68px);
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .p-home-concept__copy {
    transform: translate(-58%, -42%);
  }
}
.p-home-concept__bg-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.p-home-concept__slider-wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: infinite-scroll 60s linear infinite;
}
.p-home-concept__vegetable-list {
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
}
.p-home-concept__vegetable-list li {
  flex: 0 0 auto;
}
.p-home-concept__vegetable-list img {
  height: clamp(120px, 15vw, 200px);
  width: auto;
}
.p-home-concept__description {
  margin-top: clamp(28px, 5vw, 64px);
  text-align: center;
}
.p-home-concept__description p {
  line-height: 2;
  color: #665448;
  font-weight: bold;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.7px;
}

/* アニメーションの定義：左へ流れる */
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-home-menu___description {
  line-height: 1.8;
  color: #665448;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.7px;
  text-align: center;
  font-weight: bold;
}
.p-home-menu___banner {
  max-width: 900px;
  margin: 0 auto;
}
.p-home-menu___banner img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-home-menu___banner:hover img, .p-home-menu___banner:focus-within img {
  transform: translateY(-2px);
  opacity: 0.8;
}
.p-home-menu__region-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(40px, 5vw, 60px);
}
.p-home-menu__region-tab {
  position: relative;
  min-width: 96px;
  padding: clamp(8px, 1.5vw, 12px) clamp(20px, 4vw, 40px);
  border: 2px solid #d9cfbb;
  color: #c8ba9d;
  text-align: center;
  line-height: 1;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 700;
  cursor: pointer;
  background-color: transparent;
  font-family: inherit;
  transition: all 0.3s ease;
}
.p-home-menu__region-tab::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #d9cfbb;
  transition: border-top-color 0.3s ease;
}
.p-home-menu__region-tab:hover {
  transform: translateY(-2px);
}
.p-home-menu__region-tab.is-active {
  border-color: #528A40;
  color: #528A40;
}
.p-home-menu__region-tab.is-active::after {
  border-top-color: #528A40;
}
.p-home-menu__grid {
  margin-top: clamp(40px, 5vw, 56px);
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  transform: translateY(0);
}
.p-home-menu__section {
  margin-bottom: clamp(48px, 7vw, 80px);
}
.p-home-menu__section--smoothie {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.p-home-menu__section-title {
  text-align: center;
  font-size: clamp(30px, 3vw, 33px);
  font-weight: 700;
  color: #528A40;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.p-home-menu__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 600px) {
  .p-home-menu__items {
    grid-template-columns: repeat(auto-fit, 198px);
    justify-content: center;
  }
}
@media screen and (min-width: 820px) {
  .p-home-menu__items {
    gap: 38px;
    grid-template-columns: repeat(auto-fit, 220px);
  }
}
@media screen and (min-width: 1280px) {
  .p-home-menu__items:has(> li:nth-child(5)) {
    grid-template-columns: repeat(4, 220px);
  }
}
.p-home-menu__item {
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: center;
}
.p-home-menu__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.p-home-menu__item-link .u-action-zoom-in {
  overflow: visible;
}
.p-home-menu__item-link:hover, .p-home-menu__item-link:focus {
  outline: none;
}
.p-home-menu__item-image {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: clamp(12px, 2vw, 16px);
}
.p-home-menu__item-image .u-action-zoom-in__mask {
  overflow: visible;
}
.p-home-menu__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.p-home-menu__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-home-menu__item-title-ja {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.4;
  margin: 0 0 4px 0;
  font-weight: 500;
}
.p-home-menu__item-title-en {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-break: break-word;
}
.p-home-menu__item-price {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #EC5000;
}
.p-home-menu__loading {
  text-align: center;
  padding: clamp(32px, 5vw, 64px);
  color: #999;
  font-size: 16px;
}
.p-home-menu__loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 48px);
  min-height: 120px;
  color: #665448;
  font-weight: 700;
}
.p-home-menu__loading-spinner svg {
  width: 40px;
  height: 40px;
}
.p-home-menu__loading-spinner .p-home-menu__loading-text {
  font-weight: 700;
  color: #665448;
  font-size: clamp(14px, 1.6vw, 16px);
}
.p-home-menu__no-items {
  text-align: center;
  padding: clamp(32px, 5vw, 64px);
  color: #999;
  font-size: clamp(14px, 1.2vw, 16px);
}
.p-home-menu__modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-home-menu__modal.is-active {
  display: flex;
  opacity: 1;
}
.p-home-menu__modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.p-home-menu__modal-content {
  position: relative;
  z-index: 1001;
  background-color: #fff;
  border-radius: 16px;
  width: 90%;
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}
@media screen and (min-width: 600px) {
  .p-home-menu__modal-content {
    max-width: 900px;
  }
}
.p-home-menu__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1002;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.p-home-menu__modal-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #333;
}
.p-home-menu__modal-close span:first-child {
  transform: rotate(45deg);
}
.p-home-menu__modal-close span:last-child {
  transform: rotate(-45deg);
}
.p-home-menu__modal-close:hover span {
  background-color: #528A40;
}
.p-home-menu__modal-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 5vw, 40px);
  padding: clamp(10px, 5vw, 50px);
}
@media screen and (min-width: 600px) {
  .p-home-menu__modal-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 50px);
  }
}
.p-home-menu__modal-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 30px 30px 0 30px;
}
@media screen and (min-width: 600px) {
  .p-home-menu__modal-image {
    aspect-ratio: auto;
    height: 100%;
    padding: 30px;
  }
}
.p-home-menu__modal-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-home-menu__modal-body {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 3vw, 20px);
}
.p-home-menu__modal-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}
.p-home-menu__modal-title-wrapper {
  flex: 1;
}
.p-home-menu__modal-title-ja {
  font-size: 15px;
  color: #999;
  font-weight: 500;
  line-height: 1.2;
}
.p-home-menu__modal-title-en {
  font-size: clamp(29px, 6vw, 35px);
  font-weight: 700;
  color: #665448;
  line-height: 1.3;
  margin: 0;
}
.p-home-menu__modal-kcal-display {
  text-align: right;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}
.p-home-menu__modal-kcal-display .label {
  font-size: 14px;
  line-height: 1;
  margin-left: 1px;
}
.p-home-menu__modal-kcal-display .value {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.1px;
}
.p-home-menu__modal-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.p-home-menu__modal-nutrition-item {
  margin-bottom: 0;
  text-align: center;
  position: relative;
  font-size: 16px;
  line-height: 1.4;
}
.p-home-menu__modal-nutrition-item:last-child {
  margin-bottom: 0;
}
.p-home-menu__modal-nutrition-item p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.p-home-menu__modal-nutrition-item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #ccc;
}
.p-home-menu__modal-nutrition-item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #ccc;
}
.p-home-menu__modal-nutrition-kcal {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  margin: 8px 0 0 0;
}
.p-home-menu__modal-nutrition-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.p-home-menu__modal-nutrition-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #ccc;
}
.p-home-menu__modal-nutrition-row::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #ccc;
}
.p-home-menu__modal-nutrition-note {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
  font-weight: 500;
  text-align: right;
}
.p-home-menu__modal-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #528A40;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.p-home-menu__modal-section-title--dressing {
  color: #EC5000;
}
.p-home-menu__modal-section p {
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.8;
  color: #665448;
  margin: 0;
}

/**
 * ========== トッピング & ドレッシング表示 ==========
 */
.p-home-topping__group {
  padding: clamp(20px, 3vw, 32px);
  position: relative;
}
.p-home-topping__group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #CBB88B 0, #CBB88B 4px, transparent 4px, transparent 8px);
}
.p-home-topping__group:last-child {
  padding-bottom: clamp(40px, 5vw, 60px);
}
.p-home-topping__group:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #CBB88B 0, #CBB88B 4px, transparent 4px, transparent 8px);
}
.p-home-topping__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2.5vw, 24px);
  margin-bottom: 16px;
}
@media screen and (min-width: 600px) {
  .p-home-topping__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 820px) {
  .p-home-topping__columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-home-topping__columns {
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-home-topping__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-home-topping__column li {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.8;
  color: #665448;
  margin: 0;
  width: -moz-max-content;
  width: max-content;
}
.p-home-topping__price {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #EC5000;
  text-align: right;
}
.p-home-topping__section-title {
  text-align: center;
  font-size: clamp(30px, 3vw, 33px);
  font-weight: 700;
  color: #528A40;
  margin-bottom: clamp(20px, 3vw, 30px);
}

/**
 * ========== ドレッシング表示 ==========
 */
.p-home-dressing__section-title {
  text-align: center;
  font-size: clamp(30px, 3vw, 33px);
  font-weight: 700;
  color: #528A40;
  margin-bottom: clamp(20px, 3vw, 30px);
}
.p-home-dressing__group {
  padding: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(40px, 5vw, 60px);
  margin-bottom: clamp(20px, 3vw, 32px);
  position: relative;
}
.p-home-dressing__group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #CBB88B 0, #CBB88B 4px, transparent 4px, transparent 8px);
}
.p-home-dressing__group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #CBB88B 0, #CBB88B 4px, transparent 4px, transparent 8px);
}
.p-home-dressing__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  margin-bottom: clamp(12px, 2vw, 20px);
}
.p-home-dressing__columns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(0px, 1vw, 4px) clamp(24px, 6vw, 80px);
}
@media screen and (min-width: 820px) {
  .p-home-dressing__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-home-dressing__column {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-home-dressing__item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 2;
  color: #665448;
}
.p-home-dressing__item-name {
  white-space: nowrap;
}
.p-home-dressing__item-line {
  flex: 1;
  border-bottom: 1px solid #ccc;
  min-width: 16px;
}
.p-home-dressing__item-kcal {
  white-space: nowrap;
  font-size: clamp(15px, 3vw, 18px);
}
.p-home-dressing__price {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #EC5000;
}
.p-home-dressing__allergy {
  text-align: center;
  margin-top: clamp(40px, 3vw, 60px);
}
.p-home-dressing__allergy-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.p-home-dressing__allergy-link a {
  text-decoration: none;
  color: #665448;
  display: flex;
  align-items: center;
}
.p-home-dressing__allergy-link a:hover {
  opacity: 0.8;
}
.p-home-dressing__allergy-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/menu-pdf.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-home-menu__toppings,
.p-home-menu__dressings {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  transform: translateY(0);
  max-width: 900px;
  margin: 0 auto;
}

.p-home-menu__grid.is-hidden,
.p-home-menu__toppings.is-hidden,
.p-home-menu__dressings.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.p-home-banners {
  max-width: 900px;
  margin: 0 auto;
}
.p-home-banners__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4.2vw, 72px);
  justify-content: center;
  flex-direction: column;
}
.p-home-banners__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.p-home-banners__bg-track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: pHomePortalBgSlideLeft 34s linear infinite;
}
.p-home-banners__bg-track img {
  flex: 0 0 auto;
  display: block;
  width: clamp(900px, 150vw, 3000px);
  height: auto;
  max-width: none;
}
.p-home-banners__item img {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-home-banners__item:hover img, .p-home-banners__item:focus-visible img {
  transform: translateY(-2px);
}

.p-home-portal__bg-wrap {
  position: relative;
  overflow: hidden;
}
.p-home-portal__bg-wrap .l-section__container {
  position: relative;
  z-index: 1;
}

.p-home-portal {
  max-width: 900px;
  margin: 0 auto;
}
.p-home-portal__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4.2vw, 72px);
  justify-content: center;
  flex-direction: column;
}
.p-home-portal__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.p-home-portal__bg-track {
  position: relative;
  top: 25px;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: pHomePortalBgSlideLeft 34s linear infinite;
}
@media screen and (min-width: 960px) {
  .p-home-portal__bg-track {
    top: 0;
  }
}
.p-home-portal__bg-track img {
  flex: 0 0 auto;
  display: block;
  width: clamp(620px, 100vw, 2500px);
  height: auto;
  max-width: none;
}
.p-home-portal__item img {
  display: block;
  box-shadow: 0 8px 10px -12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-home-portal__item:hover img, .p-home-portal__item:focus-visible img {
  transform: translateY(-2px);
}

.p-media {
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px) 0;
}

.p-media__slide {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4.2vw, 72px);
  width: -moz-max-content;
  width: max-content;
  animation: pMediaSlideLeft 60s linear infinite;
}
.p-media__slide li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.p-media__slide img {
  display: block;
  width: auto;
  height: clamp(34px, 4.2vw, 60px);
  -o-object-fit: contain;
     object-fit: contain;
}
.p-media__slide li:nth-child(4n+3) img {
  height: clamp(72px, 8vw, 122px);
}

@keyframes pMediaSlideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pHomePortalBgSlideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=layout.css.map */