@charset "UTF-8";
/*==================================
* Base Typography - body
* サイト全体のベーステキスト設定
* フォント、サイズ、行間、字間を整える
==================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #1D2B4D;
  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-strengths__item, .p-news-content__link, .l-hero__buttons {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .u-flex--md, .p-strengths__item, .p-news-content__link, .l-hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

.u-flex--lr, .p-casual-talk-cta, .p-recruit-cta, .p-single-recruit-cta {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 820px) {
  .u-flex--lr, .p-casual-talk-cta, .p-recruit-cta, .p-single-recruit-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

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

.u-font--en, .p-recruit__job__title span, .p-casual-talk-cta__title p, .p-recruit-cta__title p, .p-single-recruit-cta__title p, .wp-pagenavi a,
.wp-pagenavi span, .c-section-title p, .l-hero-sub__title p, #page-top a::after {
  font-family: "Source Sans 3", sans-serif;
}

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

.u-font-size--md {
  font-size: clamp(16px, 2.5vw, 19px);
}

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

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

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

/*==================================
* マーカー
==================================*/
.u-text-marker {
  background: linear-gradient(transparent 70%, #FFF799 70%);
}

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

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

/*==================================
* テキストブラケット（記号装飾）
==================================*/
.u-bracket--slash {
  position: relative;
  font-weight: inherit;
  font-size: inherit;
  color: currentColor;
  display: inline-block;
}
.u-bracket--slash::before, .u-bracket--slash::after {
  display: inline-block;
  line-height: 1;
  font-weight: inherit;
  font-size: inherit;
  color: currentColor;
  position: absolute;
  bottom: 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 {
  padding-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-pb--md {
    padding-bottom: 60px !important;
  }
}

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

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

/*==================================
* Padding Top
==================================*/
.u-pt--md {
  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 {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--sm {
    margin-bottom: 25px !important;
  }
}

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

.u-mb--lr {
  margin-bottom: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--lr {
    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, .wp-pagenavi {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--md, .wp-pagenavi {
    margin-top: 60px !important;
  }
}

.u-mt--lr {
  margin-top: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--lr {
    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, .l-hero-sub__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
}

/*==================================
* 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-show-xl {
  display: none;
}
@media screen and (min-width: 1280px) {
  .u-show-xl {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: transparent;
  z-index: 2000;
  transition: 0.3s;
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding-top: 33px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header {
    padding-top: 30px;
  }
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 25px 0 30px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    margin: 0 30px;
  }
}
.l-header__nav {
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(102, 102, 102, 0.2);
    background-color: #fff;
    border-radius: 50px;
    padding: 8px 10px 8px clamp(10px, 1.5625vw, 15px);
  }
}
@media screen and (min-width: 1280px) {
  .l-header__nav {
    padding: 8px 10px 8px clamp(10px, 4.140625vw, 53px);
  }
}
.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, 0.7291666667vw, 13px);
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #1D2B4D;
  font-size: 14px;
  transition: 0.3s ease;
  letter-spacing: 0.04em;
}
.l-header__li a:hover {
  color: #FB8549;
}
.l-header__li:first-child a {
  padding-left: 0;
}
.l-header__li:last-child a {
  padding-right: clamp(10px, 0.8333333333vw, 35px);
}
.l-header__button {
  padding: 0 5px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.l-header__button:first-child {
  padding-left: 0;
}
.l-header__button:last-child {
  padding-right: 0;
}
.l-header__button .c-button {
  min-width: 193px;
  padding: 13px 49px 13px 19px;
  letter-spacing: 0.04em;
}

.l-header__logo {
  position: absolute;
  top: 35px;
  left: 30px;
  line-height: 1;
  z-index: 2500;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    top: 44px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__logo {
    top: 42px;
  }
}
.l-header__logo img {
  width: 100%;
  max-width: 137px;
  height: 29px;
  aspect-ratio: 192/41;
}
@media screen and (min-width: 960px) {
  .l-header__logo img {
    max-width: 192px;
    width: clamp(150px, 15.625vw, 192px);
    height: 40px;
    aspect-ratio: 192/40.56;
  }
}
@media screen and (min-width: 1920px) {
  .l-header__logo img {
    max-width: 192px;
    width: 192px;
    height: 40px;
    aspect-ratio: 192/40.56;
  }
}
.l-header__logo--main {
  display: block;
}
.l-header__logo--white {
  display: none;
}
.l-header__logo a {
  display: flex;
}

.l-footer {
  background: #E86D2F;
  padding-top: 52px;
  padding-bottom: 52px;
}
@media screen and (min-width: 820px) {
  .l-footer {
    position: relative;
    z-index: 0;
    padding-bottom: 76px;
    padding-top: 0;
    background-color: rgb(250, 248, 246);
  }
  .l-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 58%;
    background-color: #fff;
    z-index: -1;
  }
}
.l-footer__logo {
  max-width: 210px;
}
@media screen and (min-width: 820px) {
  .l-footer__logo {
    margin: 0;
  }
}
.l-footer__text {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 185%;
  letter-spacing: 0.216px;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 960px) {
  .l-footer__text {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 177.778% */
    letter-spacing: 0.259px;
    margin-top: 41px;
    margin-bottom: 34px;
  }
}
.l-footer__info {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #FFF3EA;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.23px;
}
.l-footer__info-data {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
  line-height: 32px;
}
.l-footer__info-data a {
  color: #fff;
  text-decoration: underline;
  text-decoration: none;
}
.l-footer__info-data a:hover {
  opacity: 0.8;
}
.l-footer__content {
  margin: 0 30px;
  background-color: #e86d2f;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    margin: 0 60px;
  }
}
@media screen and (min-width: 820px) {
  .l-footer__content {
    border-radius: 20px;
    padding: clamp(20px, 5vw, 73px) clamp(20px, 5vw, 88px);
    padding-bottom: clamp(20px, 3vw, 30px);
    margin: 0 auto;
    width: 90%;
    max-width: 1440px;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__content {
    padding: 73px 88px;
    padding-bottom: 30px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__content {
    padding: 73px 88px;
    padding-bottom: 0;
    margin: 0 auto;
  }
}
.l-footer__content-left {
  flex-basis: 53%;
}
@media screen and (min-width: 1920px) {
  .l-footer__content-left {
    flex-basis: 500px;
  }
}
.l-footer__content-right {
  flex-basis: 40%;
}
@media screen and (min-width: 1920px) {
  .l-footer__content-right {
    flex-basis: 510px;
  }
}
.l-footer__nav {
  display: grid;
  gap: 20px;
  margin-top: 70px;
}
@media screen and (min-width: 600px) {
  .l-footer__nav {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .l-footer__nav {
    margin-top: 0;
  }
}
@media screen and (min-width: 1920px) {
  .l-footer__nav {
    gap: 100px;
    grid-template-columns: repeat(auto-fit, minmax(103px, 1fr));
  }
}
.l-footer__nav-block {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .l-footer__nav-block {
    width: 113px;
  }
}
.l-footer__nav-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 22.5px */
  letter-spacing: 0.259px;
  margin-bottom: 15px;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .l-footer__nav-title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 102.273% */
    letter-spacing: 0.317px;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__nav-title {
    margin-bottom: 37px;
  }
}
.l-footer__ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
@media screen and (min-width: 1280px) {
  .l-footer__ul {
    gap: 31px;
  }
}
@media screen and (min-width: 600px) {
  .l-footer__ul-item {
    flex-basis: 100%;
  }
}
.l-footer__ul-item a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: #FFF3EA;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
  letter-spacing: 0.23px;
}
@media screen and (min-width: 960px) {
  .l-footer__ul-item a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.l-footer__ul-item a:hover {
  opacity: 0.7;
}
.l-footer__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 260px));
  gap: 20px;
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .l-footer__buttons {
    margin-top: 41px;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 240px));
  }
}
.l-footer__button {
  display: flex;
}
.l-footer__button .c-button {
  width: 100%;
  max-width: 265px;
  height: 52px;
  border: none;
}
@media screen and (min-width: 960px) {
  .l-footer__button .c-button {
    width: 240px;
    height: 43px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px; /* 100% */
    letter-spacing: 0.006px;
    padding: 14px 45px 14px 20px;
  }
}

.copyright {
  text-align: center;
  margin-top: 70px;
  padding-top: 27px;
  padding-bottom: 27px;
  border-top: 1px solid #fff;
  color: #fff;
  flex-basis: 100%;
  font-size: 11px;
  font-weight: 400;
  line-height: 125%; /* 13.75px */
  letter-spacing: 0.158px;
}
@media screen and (min-width: 960px) {
  .copyright {
    margin-top: 52px;
    padding-top: 29px;
    padding-bottom: 29px;
  }
}

#page-top {
  width: 44px;
  height: 44px;
  position: fixed;
  right: 5%;
  bottom: 90px;
  background: #FB8549;
  z-index: 10000;
  border-radius: 50px;
}
@media screen and (min-width: 600px) {
  #page-top {
    bottom: 5%;
  }
}
#page-top a {
  position: relative;
  display: block;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  height: 100%;
  width: 100%;
}
#page-top a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 5px));
}
#page-top a::after {
  position: absolute;
  content: "TOP";
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  bottom: 8px;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  line-height: 14px; /* 127.273% */
  letter-spacing: 0.055px;
}

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

.l-section__bottom--lg {
  padding-bottom: 118px;
}
@media screen and (min-width: 960px) {
  .l-section__bottom--lg {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1280px) {
  .l-section__bottom--lg {
    padding-bottom: clamp(120px, 30vw, 250px);
  }
}

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

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

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

.l-section--orange {
  background: #F7A33E;
  z-index: 0;
}

.l-section--beige-gradient {
  position: relative;
}
.l-section--beige-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background: linear-gradient(to bottom, rgba(250, 248, 246, 0) 0%, rgba(250, 248, 246, 0.5) 50%, rgb(250, 248, 246) 100%);
  z-index: -1;
}

.l-section--beige {
  background: rgb(250, 248, 246);
}

.l-section__container {
  margin: 0 30px;
}
@media screen and (min-width: 768px) {
  .l-section__container {
    margin: 0 60px;
  }
}
@media screen and (min-width: 960px) {
  .l-section__container {
    margin: 0 auto;
    width: 90%;
    max-width: 1434px;
  }
}

.l-section--foreground {
  position: relative;
  z-index: 1;
}

.l-hero {
  overflow: hidden;
  position: relative;
  padding-top: 80px;
  padding-bottom: 70px;
}
@media screen and (min-width: 960px) {
  .l-hero {
    overflow: visible;
    padding-top: 100px;
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .l-hero {
    overflow: visible;
    padding-top: 100px;
    padding-bottom: clamp(160px, 20vw, 200px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero {
    overflow: visible;
    padding-top: 100px;
    padding-bottom: 357px;
  }
}
.l-hero__inner {
  position: relative;
  flex-direction: column-reverse;
  margin: 0 30px;
  max-width: 1440px;
  padding-top: 40px;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .l-hero__inner {
    flex-direction: row;
    margin: 0 60px;
    gap: 31px;
  }
}
@media screen and (min-width: 960px) {
  .l-hero__inner {
    margin: 0 auto;
    width: 90%;
    gap: 60px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__inner {
    margin: 0 auto;
    width: 90%;
    gap: 95px;
    margin-top: 48px;
  }
}
.l-hero__text {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 300;
}
@media screen and (min-width: 768px) {
  .l-hero__text {
    max-width: none;
    flex-basis: 49%;
  }
}
@media screen and (min-width: 1280px) {
  .l-hero__text {
    max-width: none;
    flex-basis: 45%;
  }
}
@media screen and (min-width: 768px) {
  .l-hero__text img {
    transform: translateX(-15px);
  }
}
.l-hero__lead {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: clamp(14px, 2vw, 30px);
  line-height: 125%;
  letter-spacing: 0.288px;
}
@media screen and (min-width: 768px) {
  .l-hero__lead {
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 820px) {
  .l-hero__lead {
    font-size: clamp(18px, 4vw, 26px);
  }
}
@media screen and (min-width: 1280px) {
  .l-hero__lead {
    margin-bottom: clamp(30px, 1.5625vw, 40px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__lead {
    margin-bottom: 26px;
  }
}
.l-hero__note {
  margin-top: 16px;
  font-weight: 500;
  text-align: justify;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.202px;
}
@media screen and (min-width: 768px) {
  .l-hero__note {
    margin-top: 33px;
  }
}
@media screen and (min-width: 820px) {
  .l-hero__note {
    line-height: 227.778%;
    font-size: clamp(16px, 3vw, 17px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__note {
    line-height: 227.778%;
    margin-top: 58px;
    font-size: clamp(16px, 3vw, 18px);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.259px;
  }
}
.l-hero__buttons {
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .l-hero__buttons {
    max-width: none;
    justify-content: flex-start;
    margin-top: 21px;
    width: 140%;
  }
}
@media screen and (min-width: 960px) {
  .l-hero__buttons {
    margin-bottom: clamp(30px, 2.6041666667vw, 50px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__buttons {
    margin-top: 52px;
  }
}
.l-hero__buttons .c-button {
  flex-basis: 47%;
}
@media screen and (min-width: 820px) {
  .l-hero__buttons .c-button {
    margin: 0;
    min-width: auto;
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__buttons .c-button {
    margin: 0;
    max-width: 213px;
    min-width: auto;
    padding: 19px 45px 19px 30px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 100% */
    letter-spacing: 0.72px;
  }
}

.l-hero__image {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 890.2/826.4;
  max-width: 295px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .l-hero__image {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .l-hero__image {
    max-width: 289px;
    flex: 1;
    max-width: none;
    transform: translateY(-20px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__image {
    max-width: 289px;
    flex: 1;
    max-width: none;
    transform: scale(1.1);
  }
}

.l-hero__mask,
.l-hero__sides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.l-hero__mask {
  -webkit-mask-image: url("../images/hero-m__mask.svg");
  mask-image: url("../images/hero-m__mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  z-index: 100;
}

.l-hero__mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-hero__mask picture {
  width: 100%;
  height: 100%;
}

.l-hero__sides img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.l-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 200;
}

.l-hero__decor-item {
  position: absolute;
  transform-origin: center;
  will-change: transform;
  transform: translate(50%, -50%);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  --float-dist: -6px;
}
@media screen and (min-width: 960px) {
  .l-hero__decor-item {
    --float-dist: -15px;
  }
}
.l-hero__decor-item.is-01 {
  top: 49%;
  right: calc(20% - 20px);
  width: clamp(68px, 10vw, 270px);
}
@media screen and (min-width: 600px) {
  .l-hero__decor-item.is-01 {
    top: 49%;
    right: calc(20% - 50px);
  }
}
@media screen and (min-width: 768px) {
  .l-hero__decor-item.is-01 {
    top: 68%;
    right: calc(32% - 20px);
    width: 80px;
    opacity: 0.8;
  }
}
@media screen and (min-width: 960px) {
  .l-hero__decor-item.is-01 {
    top: calc(75% - 20px);
    right: 32%;
    width: clamp(80px, 10vw, 100px);
  }
}
@media screen and (min-width: 1280px) {
  .l-hero__decor-item.is-01 {
    top: 82%;
    right: 32%;
    width: clamp(80px, 10vw, 140px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__decor-item.is-01 {
    top: 82%;
    right: 37%;
    width: clamp(80px, 10vw, 140px);
  }
}
.l-hero__decor-item.is-02 {
  top: 52%;
  right: 93%;
  width: 130px;
  opacity: 0.8;
}
@media screen and (min-width: 600px) {
  .l-hero__decor-item.is-02 {
    right: 85%;
    width: clamp(100px, 5vw, 140px);
  }
}
@media screen and (min-width: 768px) {
  .l-hero__decor-item.is-02 {
    top: 68%;
    right: 50%;
    width: 150px;
  }
}
@media screen and (min-width: 960px) {
  .l-hero__decor-item.is-02 {
    top: 86%;
    right: 68%;
    width: clamp(200px, 15vw, 290px);
  }
}
@media screen and (min-width: 1280px) {
  .l-hero__decor-item.is-02 {
    top: 86%;
    right: 66%;
    width: clamp(200px, 15vw, 300px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__decor-item.is-02 {
    top: 79%;
    right: 66%;
    width: 326px;
  }
}
.l-hero__decor-item.is-03 {
  top: 30%;
  right: 94%;
  width: 99px;
  height: 79px;
}
@media screen and (min-width: 600px) {
  .l-hero__decor-item.is-03 {
    right: 85%;
    width: clamp(100px, 5vw, 140px);
  }
}
@media screen and (min-width: 768px) {
  .l-hero__decor-item.is-03 {
    top: 36%;
    right: 51%;
    width: 52px;
    opacity: 0.9;
  }
}
@media screen and (min-width: 960px) {
  .l-hero__decor-item.is-03 {
    top: 36%;
    right: calc(58% - 100px);
    width: clamp(60px, 5vw, 94px);
  }
}
@media screen and (min-width: 1280px) {
  .l-hero__decor-item.is-03 {
    width: 80px;
    top: calc(54% + 100px);
    right: calc(58% - 60px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__decor-item.is-03 {
    width: 94px;
    top: calc(54% + 20px);
    right: calc(58% - 80px);
  }
}
.l-hero__decor-item.is-04 {
  top: 9%;
  right: 0%;
  width: clamp(133px, 6vw, 140px);
}
@media screen and (min-width: 768px) {
  .l-hero__decor-item.is-04 {
    top: 16%;
    right: -2%;
    width: 150px;
  }
}
@media screen and (min-width: 960px) {
  .l-hero__decor-item.is-04 {
    top: 16%;
    right: 0%;
    width: 110px;
  }
}
@media screen and (min-width: 1280px) {
  .l-hero__decor-item.is-04 {
    top: 16%;
    right: 0%;
    width: clamp(130px, 6vw, 200px);
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__decor-item.is-04 {
    top: 16%;
    right: -1%;
    width: 312px;
  }
}
.l-hero__decor-item.is-05 {
  top: 8%;
  right: 40%;
  width: clamp(79px, 6vw, 140px);
}
@media screen and (min-width: 768px) {
  .l-hero__decor-item.is-05 {
    top: 43%;
    right: 4%;
    width: 60px;
    opacity: 0.6;
  }
}
@media screen and (min-width: 960px) {
  .l-hero__decor-item.is-05 {
    top: calc(50% + 20px);
    right: 2%;
    width: 90px;
  }
}
@media screen and (min-width: 1920px) {
  .l-hero__decor-item.is-05 {
    top: calc(50% + 20px);
    right: 7%;
    width: 111px;
  }
}

@keyframes float-y-01 {
  0%, 100% {
    transform: translate(10%, -10%) translate3d(0, 0, 0);
  }
  50% {
    transform: translate(10%, -10%) translate3d(0, var(--float-dist), 0);
  }
}
@keyframes float-y-02 {
  0%, 100% {
    transform: translate(10%, -10%) translate3d(0, 0, 0);
  }
  50% {
    transform: translate(10%, -10%) translate3d(0, calc(var(--float-dist) * -0.7), 0);
  }
}
@keyframes float-y-03 {
  0%, 100% {
    transform: translate(10%, -10%) translate3d(0, 0, 0) rotate(-10.358deg);
  }
  50% {
    transform: translate(10%, -10%) translate3d(0, calc(var(--float-dist) * -0.7), 0) rotate(-10.358deg);
  }
}
@keyframes float-y-04 {
  0%, 100% {
    transform: translate(10%, -10%) translate3d(0, 0, 0) rotate(-10deg);
  }
  50% {
    transform: translate(10%, -10%) translate3d(0, calc(var(--float-dist) * -0.7), 0) rotate(-10deg);
  }
}
@media screen and (min-width: 768px) {
  @keyframes float-y-03 {
    0%, 100% {
      transform: translate(50%, -10%) translate3d(0, 0, 0);
    }
    50% {
      transform: translate(50%, -10%) translate3d(0, calc(var(--float-dist) * -0.7), 0);
    }
  }
  @keyframes float-y-04 {
    0%, 100% {
      transform: translate(50%, -10%) translate3d(0, 0, 0);
    }
    50% {
      transform: translate(50%, -10%) translate3d(0, calc(var(--float-dist) * -0.7), 0);
    }
  }
}
.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;
}

.l-hero-sub {
  padding-top: 80px;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 70px;
}
@media screen and (min-width: 960px) {
  .l-hero-sub {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
.l-hero-sub__decor {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  aspect-ratio: 1/1;
  pointer-events: none;
  z-index: -1;
  max-width: 190px;
}
@media screen and (min-width: 600px) {
  .l-hero-sub__decor {
    max-width: none;
  }
}
.l-hero-sub__decor-item {
  position: absolute;
  top: -30px;
  right: 20px;
  width: clamp(200px, 30vw, 500px);
}
@media screen and (min-width: 600px) {
  .l-hero-sub__decor-item {
    top: 0;
    width: clamp(250px, 38vw, 500px);
    right: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-hero-sub__decor-item {
    right: 14%;
    width: clamp(250px, 38vw, 580px);
  }
}
.l-hero-sub__title {
  margin-top: 60px;
}
@media screen and (min-width: 960px) {
  .l-hero-sub__title {
    margin-top: 0;
  }
}
.l-hero-sub__title p {
  font-size: 45px;
  font-weight: 700;
  line-height: 53.793px;
  /* 119.54% */
  letter-spacing: 0.225px;
  font-style: italic;
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .l-hero-sub__title p {
    font-size: clamp(60px, 7vw, 120px);
    line-height: 100%; /* 100% */
    letter-spacing: 0.6px;
    margin-bottom: 11px;
  }
}
.l-hero-sub__title h1 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  /* 17.5px */
  letter-spacing: 0.202px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .l-hero-sub__title h1 {
    font-size: clamp(16px, 1.3020833333vw, 24px);
    line-height: 30px; /* 125% */
    letter-spacing: 0.346px;
    margin-bottom: 16px;
  }
}
.l-hero-sub__title h1::before {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../images/icon-title.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  flex-shrink: 0;
  transform: translateY(0.1em);
}
@media screen and (min-width: 960px) {
  .l-hero-sub__title h1::before {
    width: 13px;
    height: 13px;
    margin-right: 10px;
  }
}
.l-hero-sub__title h1::before {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../images/icon-title.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
  transform: translateY(0.1em);
}
@media screen and (min-width: 960px) {
  .l-hero-sub__title h1::before {
    width: 13px;
    height: 13px;
    margin-right: 10px;
  }
}

.c-breadcrumb {
  position: relative;
  z-index: 100;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 13.75px */
  letter-spacing: 0.158px;
  font-size: 11px;
}
@media screen and (min-width: 960px) {
  .c-breadcrumb {
    font-size: 12px;
    line-height: 15px; /* 125% */
    letter-spacing: 0.173px;
  }
}
.c-breadcrumb__inner i {
  margin: 0 10px;
}
.c-breadcrumb__inner a {
  color: #1D2B4D;
  font-size: 11px;
  text-decoration: none;
  margin-right: 10px;
}
@media screen and (min-width: 960px) {
  .c-breadcrumb__inner a {
    font-size: 12px;
    line-height: 15px; /* 125% */
    letter-spacing: 0.173px;
  }
}
.c-breadcrumb__inner .current-item {
  margin-left: 10px;
}

/* 1. アニメーション定義 */
@keyframes arrow-slide-effect {
  0% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) translateX(25px);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) translateX(-25px);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.c-button {
  /* --- 基本レイアウト --- */
  max-width: 207px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 45px 16px 26px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  line-height: 1.3;
  background: linear-gradient(57.12deg, #ea7525 19.3%, #ffb648 80.04%);
  color: #fff;
  /* --- 1. 白丸の土台（背景） --- */
}
.c-button::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 10;
  transition: transform 0.3s ease;
}
.c-button {
  /* --- 2. 矢印アイコン（動く方） --- */
}
.c-button::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url(../images/icon-arrow-right-orange.svg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11; /* 丸より上に */
  pointer-events: none;
  display: block;
}
.c-button {
  /* --- ホバー共通アクション --- */
}
.c-button:hover::after {
  transform: translateY(-50%) scale(1.1);
}
.c-button:hover::before {
  animation: arrow-slide-effect 0.4s ease-in-out forwards;
}
.c-button {
  /* --- バリエーション：青ボタン --- */
}
.c-button-blue {
  border-radius: 30px;
  background: linear-gradient(90deg, #083799 0%, #0D5AB6 52.41%, #449AE6 100%);
}
.c-button-blue::before {
  background-image: url(../images/icon-arrow-right-blue.svg);
}
.c-button {
  /* --- バリエーション：白背景シリーズ --- */
}
.c-button-white--blue {
  border: 1px solid #2E7AD5;
  background: #fff;
  color: #2E7AD5;
}
.c-button-white--blue::after {
  background-color: #2E7AD5;
}
.c-button-white--blue::before {
  background-image: url(../images/icon-arrow-right-white.svg);
}
.c-button-white--orange {
  border: 1px solid #FB9B4C;
  background: #fff;
  color: #FB8549;
}
.c-button-white--orange::after {
  background: linear-gradient(0deg, #FB8549 0%, #FB8549 100%);
}
.c-button-white--orange::before {
  background-image: url(../images/icon-arrow-right-white.svg);
}
.c-button {
  /* --- 特殊修飾クラス --- */
}
.c-button.float:hover {
  background: #a3a3a3;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.c-button.filled {
  background: #000;
  color: #fff;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.c-button.filled:hover {
  background: #fff;
  color: #000;
}
.c-button.shadow:hover {
  transform: translate(-0.3px, -0.3px);
  box-shadow: 2px 2px 4px 0 rgba(46, 88, 149, 0.6);
}
.c-button.solid {
  box-shadow: 2px 2px 0 0 #000;
  border-radius: 7px;
}
.c-button.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.c-button {
  /* 競合解消版：背景がスライドするエフェクト */
}
.c-button.slide-bg {
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.4s ease;
}
.c-button.slide-bg:hover {
  background-position: 0 0;
}

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: auto;
  z-index: 1500;
  background-color: #E86D2F;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu {
    display: none;
  }
}
.c-mobile-menu__inner {
  height: 100%;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 600px) {
  .c-mobile-menu__inner {
    height: auto;
  }
}
.c-mobile-menu__button {
  border-radius: 44px;
  background: linear-gradient(1deg, #EA7525 5.78%, #F39033 93.08%);
  box-shadow: 0 3px 3px 0 rgba(97, 71, 39, 0.07);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  width: 44px;
  height: 44px;
  aspect-ratio: 1/1;
  border-radius: 99%;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__button {
    display: none;
  }
}
.c-mobile-menu__button span {
  background-color: #fff;
  width: 19px;
  height: 1px;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.c-mobile-menu__button span:nth-child(1) {
  margin-bottom: 3.5px;
}
.c-mobile-menu__button span:nth-child(2) {
  margin-top: 3.5px;
}
.c-mobile-menu__main {
  padding: 160px 0 125px;
  perspective: 2000px;
  transform-style: preserve-3d;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .c-mobile-menu__main {
    padding: 0 0 125px;
  }
}
.c-mobile-menu__item {
  display: block;
}
.c-mobile-menu__item a {
  display: block;
  padding: 10px 1em;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.c-mobile-menu .l-header__logo--main {
  display: inline-block;
}
.c-mobile-menu .l-header__logo--white {
  display: none;
}
.c-mobile-menu--open .l-header__logo--main {
  display: none;
}
.c-mobile-menu--open .l-header__logo--white {
  display: inline-block;
}
.c-mobile-menu--open .c-mobile-menu {
  transform: translateX(0);
}
.c-mobile-menu--open .c-mobile-menu__button {
  background: none;
  box-shadow: none;
}
.c-mobile-menu--open .c-mobile-menu__button > span {
  background-color: #fff;
}
.c-mobile-menu--open .c-mobile-menu__button > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(4px) rotate(45deg);
}
.c-mobile-menu--open .c-mobile-menu__button > span:nth-child(2) {
  transition-delay: 140ms;
  transform: translateY(-4px) rotate(-45deg);
}
.c-mobile-menu__contact-button {
  width: 100%;
  text-align: center;
}
.c-mobile-menu__contact-button:first-child {
  margin-bottom: 10px;
}
.c-mobile-menu__contact-button .c-button {
  margin: 0 auto;
  min-width: 215px;
  height: 52px;
  border: none;
}

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

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

.c-fixed-banner {
  display: none;
  position: fixed;
  transition: all 0.3s ease;
  z-index: 100;
}
.c-fixed-banner--right {
  top: 70%;
  transform: translateY(-50%);
  right: -80px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1280px) {
  .c-fixed-banner--right {
    display: block;
  }
}
.c-fixed-banner--right.is-inview {
  right: 0;
}
.c-fixed-banner--right .c-fixed-banner__inner {
  transform-origin: top right;
}
.c-fixed-banner--right .c-fixed-banner__inner a {
  display: inline-block;
  color: #fff;
  background-color: #083D9E;
  padding: 2em 0.8em;
  text-decoration: none;
  letter-spacing: 6px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px 0 0 10px;
  border: solid 2px #fff;
  min-height: 260px;
  transition: 0.3s;
}
.c-fixed-banner--right .c-fixed-banner__inner a span {
  position: relative;
  margin-top: 1em;
}
.c-fixed-banner--right .c-fixed-banner__inner a span::after {
  content: "";
  background-image: url("../images/mail-mark.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  height: 0.8em;
  width: 1em;
}
.c-fixed-banner--right .c-fixed-banner__inner a:hover {
  background-color: #a3a3a3;
  color: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.c-fixed-banner--bottom {
  left: 50%;
  transform: translateX(-50%);
  bottom: -90px;
  top: auto;
  display: block;
  width: 100%;
  font-size: clamp(12px, 3vw, 16px);
}
@media screen and (min-width: 820px) {
  .c-fixed-banner--bottom {
    display: none;
  }
}
.c-fixed-banner--bottom.is-inview {
  bottom: 0;
}
.c-fixed-banner--bottom .c-fixed-banner__inner {
  display: flex;
  justify-content: space-between;
}
.c-fixed-banner--bottom .c-fixed-banner__right {
  flex-basis: 50%;
  background: linear-gradient(57deg, #EA7525 13.95%, #FAA53F 80.01%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 13px 10px 13px 30px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%; /* 17.92px */
  letter-spacing: 0.56px;
}
.c-fixed-banner--bottom .c-fixed-banner__right span {
  position: relative;
  margin-left: 1em;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .c-fixed-banner--bottom .c-fixed-banner__right span {
    justify-content: center;
  }
}
.c-fixed-banner--bottom .c-fixed-banner__right span::after {
  position: absolute;
  right: 10px;
  content: "";
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 100;
  background-image: url(../images/icon-arrow-right-orange.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2px;
  position: absolute;
  right: 0;
}
.c-fixed-banner--bottom .c-fixed-banner__left {
  flex-basis: 50%;
  background: linear-gradient(90deg, #083799 0.03%, #0D5AB6 56.83%, #449AE6 108.43%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 13px 10px 13px 30px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%; /* 17.92px */
  letter-spacing: 0.56px;
}
@media screen and (min-width: 480px) {
  .c-fixed-banner--bottom .c-fixed-banner__left {
    padding: 13px 30px;
  }
}
.c-fixed-banner--bottom .c-fixed-banner__left span {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .c-fixed-banner--bottom .c-fixed-banner__left span {
    justify-content: center;
  }
}
.c-fixed-banner--bottom .c-fixed-banner__left span::after {
  content: "";
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 100;
  background-image: url(../images/icon-arrow-right-blue.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2px;
  display: inline-block;
  position: absolute;
  right: 0;
}

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

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

.c-section-title p {
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  font-style: italic;
  font-weight: 700;
  line-height: 119.54%;
  letter-spacing: 0.225px;
}
@media screen and (min-width: 960px) {
  .c-section-title p {
    font-size: clamp(60px, 7vw, 120px);
    line-height: 1;
    letter-spacing: 0.6px;
  }
}
.c-section-title h2 {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 125%; /* 17.5px */
  letter-spacing: 0.202px;
}
@media screen and (min-width: 768px) {
  .c-section-title h2 {
    font-weight: 600;
    line-height: 125%; /* 17.5px */
    letter-spacing: 0.202px;
  }
}
@media screen and (min-width: 960px) {
  .c-section-title h2 {
    font-size: clamp(16px, 1.3020833333vw, 24px);
    line-height: 30px;
    letter-spacing: 0.346px;
    margin-bottom: 16px;
  }
}
.c-section-title h2::before {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../images/icon-title.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  flex-shrink: 0;
  transform: translateY(0.1em);
}
@media screen and (min-width: 960px) {
  .c-section-title h2::before {
    width: 13px;
    height: 13px;
    margin-right: 10px;
  }
}
.c-section-title--center {
  text-align: center;
}
.c-section-title--center h2 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 0.202px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .c-section-title--center h2 {
    font-size: clamp(16px, 1.3020833333vw, 24px);
    line-height: 30px;
    letter-spacing: 0.346px;
  }
}
.c-section-title--center h2::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../images/icon-title.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 8px;
  flex-shrink: 0;
  transform: translateY(0.1em) rotate(180deg);
}
@media screen and (min-width: 960px) {
  .c-section-title--center h2::after {
    width: 13px;
    height: 13px;
    margin-left: 10px;
  }
}

.c-section-title-02 {
  text-align: left;
  margin-bottom: 46px;
}
@media screen and (min-width: 960px) {
  .c-section-title-02 {
    margin-bottom: 88px;
  }
}
.c-section-title-02 span {
  display: block;
  color: #FB8549;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%; /* 12px */
  letter-spacing: 0.06px;
  margin-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .c-section-title-02 span {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px; /* 125% */
    letter-spacing: 0.08px;
  }
}
.c-section-title-02 h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 22.5px */
  letter-spacing: 0.324px;
}
@media screen and (min-width: 960px) {
  .c-section-title-02 h2 {
    font-size: clamp(24px, 1.3541666667vw, 26px);
    font-style: normal;
    font-weight: 700;
    line-height: 163.462%;
    letter-spacing: 0.468px;
  }
}
@media screen and (min-width: 1920px) {
  .c-section-title-02 h2 {
    font-size: 26px;
    line-height: 163.462%; /* 163.462% */
    letter-spacing: 0.468px;
  }
}

@media screen and (min-width: 960px) {
  .c-news-content__wrapper {
    padding-top: 165px;
  }
}
.c-news-content__description {
  color: #EF5000;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.202px;
  margin-top: 18px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EEEBE9;
}
@media screen and (min-width: 600px) {
  .c-news-content__description {
    font-size: clamp(15px, 0.9375vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: 0.259px;
    margin-top: clamp(20px, 2.0833333333vw, 40px);
    padding-bottom: clamp(50px, 4.4270833333vw, 85px);
  }
}
.c-news-content__lists {
  padding: 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .c-news-content__lists {
    margin-bottom: 80px;
  }
}
.c-news-content__list {
  width: 100%;
  list-style: none;
  border-bottom: 1px solid #EEEBE9;
}
.c-news-content__link {
  color: #1D2B4D;
  text-decoration: none;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .c-news-content__link {
    padding: 39px 35px;
    gap: 40px;
  }
}
.c-news-content__link:hover {
  background-color: #FFFBF3;
}
.c-news-content__link:hover .c-news-content__title span::after {
  transform: scale(1.1);
}
.c-news-content__link:hover .c-news-content__title span::before {
  top: 50%;
  animation: arrow-slide-effect 0.4s ease-in-out forwards;
}
.c-news-content__head {
  line-height: initial;
}
@media screen and (min-width: 960px) {
  .c-news-content__head {
    flex-basis: 200px;
  }
}
.c-news-content__head time {
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.173px;
}
@media screen and (min-width: 960px) {
  .c-news-content__head time {
    font-size: 13px;
    line-height: 17.5px;
    letter-spacing: 0.187px;
    margin-right: 15px;
  }
}
.c-news-content__title {
  color: #1D2B4D;
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 163%;
  letter-spacing: 0.27px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media screen and (min-width: 960px) {
  .c-news-content__title {
    flex: 1;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
    letter-spacing: 0.259px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
.c-news-content__title span {
  position: relative;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  display: block;
  align-self: flex-end;
}
@media screen and (min-width: 960px) {
  .c-news-content__title span {
    align-self: auto;
    width: 25px;
    height: 25px;
  }
}
.c-news-content__title span {
  /* --- 1. 白丸の土台（背景） --- */
}
.c-news-content__title span::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FB8549;
  border-radius: 50%;
  z-index: 10;
  transition: transform 0.3s ease;
}
.c-news-content__title span {
  /* --- 2. 矢印アイコン（動く方） --- */
}
.c-news-content__title span::before {
  content: "";
  position: absolute;
  top: 50%;
  inset: 0;
  background-image: url("../images/icon-arrow-right-white.svg");
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11;
  pointer-events: none;
  display: block;
}
.c-news-content__categories {
  margin-left: 10px;
  padding: 0;
  flex-basis: 18%;
  display: inline-block;
}
.c-news-content__category {
  list-style-type: none;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  background-color: #FB8549;
  padding: 3px 20px;
  color: white;
  font-size: 11px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 0.158px;
  width: 85px;
}
@media screen and (min-width: 960px) {
  .c-news-content__category {
    width: 106px;
    padding: 3px 20px 3px 20px;
  }
}
.c-news-content__button .c-button {
  margin: 0 auto;
  padding: 16px 26px;
  max-width: 225px;
}
@media screen and (min-width: 960px) {
  .c-news-content__button .c-button {
    max-width: 270px;
    padding: 20px 30px;
  }
}
.c-news-content__button .c-button::after {
  width: 28px;
  height: 28px;
}
.c-news-content__notinfo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.c-news-content__notinfo p {
  font-weight: 600;
}

.p-page-content {
  min-height: 1000px;
  max-width: 1440px;
}

@media screen and (min-width: 960px) {
  .p-news-content {
    margin: 0 30px;
  }
}
.p-news-content__lists {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}
.p-news-content__list {
  border-bottom: 1px solid #eee;
}
.p-news-content__list:first-child .p-news-content__link {
  padding-top: 0;
}
.p-news-content__link {
  gap: 20px;
  text-decoration: none;
  color: #1D2B4D;
  padding-top: clamp(30px, 2.5vw, 63px);
  padding-bottom: clamp(25px, 2.5vw, 63px);
}
@media screen and (min-width: 600px) {
  .p-news-content__link {
    align-items: center;
  }
}
@media screen and (min-width: 820px) {
  .p-news-content__link {
    align-items: flex-start;
    gap: 40px;
  }
}
.p-news-content__image {
  flex-shrink: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .p-news-content__image {
    max-width: 300px;
    flex-basis: 30%;
  }
}
@media screen and (min-width: 820px) {
  .p-news-content__image {
    flex-basis: 30%;
  }
}
.p-news-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 367.3/244.8;
}
@media screen and (min-width: 600px) {
  .p-news-content__image img {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 820px) {
  .p-news-content__image img {
    aspect-ratio: 600/371;
  }
}
.p-news-content__desc {
  flex: 1;
}
.p-news-content__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}
.p-news-content__meta time {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 15px */
  letter-spacing: 0.173px;
}
@media screen and (min-width: 960px) {
  .p-news-content__meta time {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.5px; /* 134.615% */
    letter-spacing: 0.187px;
  }
}
.p-news-content__category-label {
  background: linear-gradient(0deg, #FB8549 0%, #FB8549 100%);
  color: #fff;
  padding: 3px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 13.75px */
  letter-spacing: 0.158px;
}
.p-news-content__title {
  margin-top: 10px;
  margin-bottom: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 163%; /* 24.45px */
  letter-spacing: 0.27px;
}
@media screen and (min-width: 960px) {
  .p-news-content__title {
    font-size: clamp(18px, 1.1458333333vw, 22px);
    font-style: normal;
    font-weight: 600;
    line-height: 27.5px; /* 125% */
    letter-spacing: 0.317px;
  }
}
.p-news-content__excerpt {
  margin-bottom: 14px;
}
.p-news-content__excerpt p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 21.84px */
  letter-spacing: 0.098px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-news-content__excerpt p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.p-news-content__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #FB8549;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 107.692% */
  letter-spacing: 0.005px;
}
@media screen and (min-width: 960px) {
  .p-news-content__more {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px; /* 100% */
    letter-spacing: 0.006px;
    margin-top: 35px;
  }
}
.p-news-content__more span {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .p-news-content__more span {
    gap: 15px;
  }
}
.p-news-content__more span::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #FB8549;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 960px) {
  .p-news-content__more span::after {
    width: 25px;
    height: 25px;
  }
}
.p-news-content__more {
  /* 矢印アイコンは span の position: relative + ::before で重ねる */
}
.p-news-content__more span {
  position: relative;
}
.p-news-content__more span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-image: url(../images/icon-arrow-right-white.svg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11;
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .p-news-content__more span::before {
    width: 25px;
    height: 25px;
  }
}
.p-news-content__link:hover .p-news-content__image .u-action-zoom-in__mask img {
  transform: scale(1.2);
}
.p-news-content__link:hover .p-news-content__more span::after {
  transform: scale(1.1);
}
.p-news-content__link:hover .p-news-content__more span::before {
  animation: arrow-slide-effect 0.4s ease-in-out forwards;
}

.p-category-filter {
  margin-top: 43px;
  max-width: 450px;
  width: 90%;
}
@media screen and (min-width: 960px) {
  .p-category-filter {
    margin-top: 55px;
    width: 100%;
  }
}
.p-category-filter__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
  list-style: none;
  padding: 0;
}
.p-category-filter__link {
  display: inline-block;
  padding: 3px 20px;
  border-radius: 50px;
  border: 1px solid #FB8549;
  background-color: #fff;
  color: #FB8549;
  text-decoration: none;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 134%; /* 17.42px */
  letter-spacing: 0.187px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .p-category-filter__link {
    padding: 6px 25px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 17.5px; /* 109.375% */
    letter-spacing: 0.23px;
  }
}
.p-category-filter__link:hover, .p-category-filter__link.is-active {
  background-color: #FB8549;
  border-color: #FB8549;
  color: #fff;
}

/* ページナビ -----------*/
@keyframes pagenavi-arrow-effect {
  0% {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -50%) translateX(20px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
  }
}
.wp-pagenavi {
  padding: 50px 70px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 960px) {
  .wp-pagenavi {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  color: #FB8549;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  transition: all 0.3s ease;
  line-height: 1;
  position: relative;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 36px; /* 200% */
  letter-spacing: 0.09px;
  padding: 0 7.5px;
  width: 0;
}
@media screen and (min-width: 960px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    line-height: 36px; /* 138.462% */
    letter-spacing: 0.13px;
  }
}
.wp-pagenavi a:hover::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #FB8549;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.wp-pagenavi span.current {
  color: #FB8549;
  border: none;
  position: relative;
  background: transparent;
  width: 0;
  line-height: 1;
  font-weight: 500;
}
.wp-pagenavi span.current::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #FB8549;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #fff;
  background-color: #FB8549;
  border: 1px solid #FB8549 !important;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  margin-left: 10px;
}
@media screen and (min-width: 960px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 35px;
    height: 35px;
    margin-left: 45px;
  }
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color: #FB8549;
  opacity: 0.8;
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  animation: pagenavi-arrow-effect 0.4s ease-in-out forwards;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/icon-arrow-right-white.svg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}
.wp-pagenavi .previouspostslink {
  margin-right: 10px;
  margin-left: 0px;
  transform: rotate(180deg);
}
@media screen and (min-width: 960px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 45px;
  }
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  display: none;
}

.p-single-post__container {
  border-bottom: 1px solid #eee;
}

.p-single-post__wrapper {
  margin-top: 30px;
  padding-bottom: 72px;
}
@media screen and (min-width: 960px) {
  .p-single-post__wrapper {
    margin-left: 20%;
  }
}
@media screen and (min-width: 1280px) {
  .p-single-post__wrapper {
    margin-left: 30%;
  }
}
@media screen and (min-width: 1920px) {
  .p-single-post__wrapper {
    margin-left: 515px;
    width: 925px;
  }
}

.p-single-head {
  margin-top: 40px;
  margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .p-single-head {
    margin-top: 60px;
    margin-bottom: 100px;
  }
}
.p-single-head__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}
.p-single-head__meta time {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 15px */
  letter-spacing: 0.173px;
}
@media screen and (min-width: 960px) {
  .p-single-head__meta time {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.5px; /* 134.615% */
    letter-spacing: 0.187px;
  }
}
.p-single-head__category {
  background-color: #FB8549;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 13.75px */
  letter-spacing: 0.158px;
  padding: 3px 20px;
  border-radius: 20px;
}
@media screen and (min-width: 960px) {
  .p-single-head__category {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 17.5px; /* 134.615% */
    letter-spacing: 0.187px;
  }
}
.p-single-head__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 163%; /* 29.34px */
  letter-spacing: 0.324px;
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .p-single-head__title {
    font-size: clamp(20px, 1.6666666667vw, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: 52.2px; /* 163.125% */
    letter-spacing: 0.576px;
  }
}

.p-single-post__eyecatch {
  margin-bottom: 30px;
}
.p-single-post__eyecatch img {
  width: 100%;
  height: auto;
  aspect-ratio: 440.86/293.84;
  border-radius: 17px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single-post__content {
  line-height: 1.8;
  font-size: clamp(16px, 2vw, 17px);
}
.p-single-post__content p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 21.84px */
  letter-spacing: 0.098px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content p a {
  color: #FB8549;
  text-decoration: underline;
  transition: opacity 0.3s;
  word-break: break-all;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 21.84px */
  letter-spacing: 0.098px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content p a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content p a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.p-single-post__content p a[target=_blank] {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  text-decoration: none;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 21.84px */
  letter-spacing: 0.098px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content p a[target=_blank] {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content p a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-image: url("../images/icon-link.svg");
          mask-image: url("../images/icon-link.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform: translateY(-0.05em);
}
.p-single-post__content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 163%; /* 26.08px */
  letter-spacing: 0.288px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: clamp(18px, 1.3541666667vw, 26px);
    font-style: normal;
    font-weight: 700;
    line-height: 42.5px; /* 163.462% */
    letter-spacing: 0.468px;
  }
}
.p-single-post__content h3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 163%; /* 22.82px */
  letter-spacing: 0.202px;
  border-bottom: 1px solid #C5C5C5;
  margin-top: 25px;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content h3 {
    margin-top: 40px;
    padding-bottom: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
    letter-spacing: 0.259px;
  }
}
.p-single-post__content h4 {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 163%; /* 21.19px */
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content h4 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.5px; /* 165.625% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content h4::before {
  content: "";
  width: 2px;
  height: 13px;
  background-color: #1D2B4D;
  margin-right: 8px;
  flex-shrink: 0;
}
.p-single-post__content h4 strong {
  font-weight: bold;
  line-height: inherit;
  display: block;
}
.p-single-post__content ul,
.p-single-post__content ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 1.5em;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 21.84px */
  letter-spacing: 0.098px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content ul,
  .p-single-post__content ol {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content li {
  margin-bottom: 0.5em;
}
.p-single-post__content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: separate !important;
  border-spacing: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
  white-space: nowrap;
  table-layout: auto !important;
}
@media screen and (min-width: 600px) {
  .p-single-post__content table {
    display: table;
  }
}
@media screen and (min-width: 960px) {
  .p-single-post__content table {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.p-single-post__content table th {
  background-color: #F78146;
  color: #fff;
  padding: 12px 15px;
  font-weight: bold;
  text-align: center;
  border: none !important;
  border-right: 1px solid #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 148%; /* 19.24px */
  letter-spacing: 0.098px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content table th {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px; /* 143.75% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content table th:last-child {
  border-right: none;
}
.p-single-post__content table td {
  padding: 12px 15px;
  background-color: #F7F7F6;
  border: none !important;
  border-spacing: 1px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%; /* 19.24px */
  letter-spacing: 0.098px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content table td {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content table tr {
  border: none;
}
.p-single-post__content blockquote.wp-block-quote {
  position: relative;
  margin: 15px 0;
  background-color: #F7F7F6;
  border: none;
  box-sizing: border-box;
  color: #586585;
  display: flex;
  padding: 13px 15px 12px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
@media screen and (min-width: 600px) {
  .p-single-post__content blockquote.wp-block-quote {
    padding: 20px 25px;
    margin: 20px 0;
  }
}
.p-single-post__content blockquote.wp-block-quote p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 21.84px */
  letter-spacing: 0.098px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content blockquote.wp-block-quote p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.p-single-post__content {
  /* 「追加CSSクラス」に is-style-note と入れた時だけ適用される */
  /* 全体の余白 */
}
.p-single-post__content .wp-block-details.is-style-note {
  border: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-single-post__content {
  /* サマリー（※印の部分） */
}
.p-single-post__content .wp-block-details.is-style-note summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%; /* 18.48px */
  letter-spacing: 0.083px;
  margin-left: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .p-single-post__content .wp-block-details.is-style-note summary {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    letter-spacing: 0.173px;
  }
}
.p-single-post__content {
  /* Safari向けの矢印消し */
}
.p-single-post__content .wp-block-details.is-style-note summary::-webkit-details-marker {
  display: none;
}
.p-single-post__content {
  /* 擬似要素で「※」を付与 */
}
.p-single-post__content .wp-block-details.is-style-note summary::before {
  content: "※";
  margin-right: 0.5em;
  font-weight: bold;
}
.p-single-post__button {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 50px;
}
.p-single-post__button .c-button {
  margin: 0 auto;
  min-width: 224px;
  height: 52px;
}

.p-single-recruit-cta {
  padding: 36px 30px 36px 30px;
  border-radius: 14px;
  background: linear-gradient(51deg, #FF8C3D 43.92%, #FFBC5F 101.01%);
  position: relative;
  width: 100%;
  margin: 70px auto 0;
}
@media screen and (min-width: 1280px) {
  .p-single-recruit-cta {
    padding: 40px 70px 50px;
    border-radius: 20px;
    background: linear-gradient(29deg, #FF8C3D 41.32%, #FFBC5F 89.38%);
  }
}
@media screen and (min-width: 1920px) {
  .p-single-recruit-cta {
    padding: 53px 88px 67px;
  }
}
.p-single-recruit-cta__wrapper {
  overflow: hidden;
}
.p-single-recruit-cta__text {
  flex: 1;
  color: #fff;
}
.p-single-recruit-cta__text p {
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 185%; /* 25.9px */
  letter-spacing: 0.202px;
}
.p-single-recruit-cta__title {
  margin-bottom: clamp(15px, 2vw, 20px);
}
.p-single-recruit-cta__title p {
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%; /* 12px */
  letter-spacing: 0.06px;
  color: #FFEBA1;
  margin-bottom: 4px;
}
@media screen and (min-width: 960px) {
  .p-single-recruit-cta__title p {
    font-size: 16px;
    line-height: 20px; /* 125% */
    letter-spacing: 0.08px;
  }
}
.p-single-recruit-cta__title h2 {
  display: flex;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 163%; /* 29.34px */
  letter-spacing: 0.324px;
  margin-bottom: 9px;
}
@media screen and (min-width: 960px) {
  .p-single-recruit-cta__title h2 {
    font-size: clamp(20px, 1.6666666667vw, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: 42.5px; /* 132.813% */
    letter-spacing: 0.576px;
    margin-bottom: 13px;
  }
}
.p-single-recruit-cta__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 17px;
  width: 100%;
  max-width: 550px;
}
@media screen and (min-width: 820px) {
  .p-single-recruit-cta__buttons {
    grid-template-columns: repeat(2, 255px);
    margin-top: 29px;
  }
}
@media screen and (min-width: 960px) {
  .p-single-recruit-cta__buttons {
    grid-template-columns: repeat(2, 255px);
    margin-top: 29px;
  }
}
@media screen and (min-width: 1280px) {
  .p-single-recruit-cta__buttons {
    grid-template-columns: repeat(2, 328px);
    max-width: 676px;
  }
}
.p-single-recruit-cta__button .c-button {
  width: 100%;
  max-width: 255px;
  height: 52px;
  margin: 0 auto;
  border: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.56px;
}
@media screen and (min-width: 480px) {
  .p-single-recruit-cta__button .c-button {
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-single-recruit-cta__button .c-button {
    max-width: 328px;
    padding: 19px 45px 19px 30px;
  }
}

.p-section__wrapper {
  position: relative;
  overflow: hidden;
}

.p-section__bg::before {
  content: "";
  position: absolute;
  width: 240vw;
  aspect-ratio: 6/7;
  max-width: 1900px;
  max-height: 1900px;
  border-radius: 50%;
  z-index: -1;
  top: -70vw;
  left: 3vw;
  background: linear-gradient(90deg, rgba(246, 242, 234, 0.7) 0%, rgba(250, 248, 246, 0.7) 30.29%, rgba(249, 249, 249, 0.7) 100%);
}
@media screen and (min-width: 768px) {
  .p-section__bg::before {
    aspect-ratio: 1/1;
    left: 3vw;
    top: -61vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-section__bg::before {
    width: none;
    height: none;
    max-width: 100%;
    transform: scale(1.05);
    max-height: none;
    top: -26vw;
    left: 5vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-section__bg::before {
    transform: scale(1.1);
    top: -19vw;
    left: 6vw;
  }
}

/* 配置（必要に応じて top/left/width を調整） */
.p-section__bg-band {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.p-section__bg-band-svg {
  position: absolute;
  top: 89%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  width: 130vw;
  max-width: none;
  height: auto;
  overflow: visible;
  max-width: 160%;
}
@media screen and (min-width: 600px) {
  .p-section__bg-band-svg {
    width: 140vw;
    top: 75%;
  }
}
@media screen and (min-width: 768px) {
  .p-section__bg-band-svg {
    transform: translate(-50%, -50%) rotate(-12deg);
    width: 110vw;
    top: 79%;
  }
}
@media screen and (min-width: 960px) {
  .p-section__bg-band-svg {
    left: 50%;
    top: 72%;
    width: 100vw;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.p-section__bg-band-path {
  stroke-dasharray: 2600;
  stroke-dashoffset: -2600;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.55, 0.05, 0.67, 0.19);
  stroke-width: 240;
}
@media screen and (min-width: 768px) {
  .p-section__bg-band-path {
    stroke-width: 170;
  }
}
@media screen and (min-width: 820px) {
  .p-section__bg-band-path {
    stroke-width: 120;
  }
}

/* 画面に入ったら描く */
.p-section__bg-band-svg.is-bg-band-inview .p-section__bg-band-path {
  stroke-dashoffset: 0;
  right: -10%;
}

/*
　増山建設の強み
================================*/
.p-strengths {
  gap: 30px;
  margin: 0 30px;
}
@media screen and (min-width: 768px) {
  .p-strengths {
    margin: 0 60px;
  }
}
@media screen and (min-width: 960px) {
  .p-strengths {
    margin: 0 auto;
    width: 90%;
    gap: 9%;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths {
    gap: 8%;
  }
}
.p-strengths__description {
  margin-top: 16px;
  line-height: 200%;
  color: #EF5000;
  text-align: justify;
  letter-spacing: 1.44%;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.202px;
}
@media screen and (min-width: 960px) {
  .p-strengths__description {
    line-height: 2;
    max-width: 551px;
    font-size: 18px;
    margin-top: 40px;
  }
}
.p-strengths__block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 960px) {
  .p-strengths__block {
    flex-basis: 54%;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths__block {
    flex-basis: 56%;
  }
}
@media screen and (min-width: 1920px) {
  .p-strengths__block {
    flex-basis: 46%;
  }
}
.p-strengths__item {
  align-items: center;
  gap: 21px;
  padding: 36px 30px 30px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 2.308px 2.308px 2.308px 0 rgba(246, 242, 237, 0.7);
}
@media screen and (min-width: 600px) {
  .p-strengths__item {
    padding: 33px 52px;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-strengths__item {
    padding: 33px 50px;
    gap: 40px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths__item {
    max-width: 700px;
    padding: 37px 35px 49px 35px;
    gap: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .p-strengths__item {
    border-radius: 20px;
    min-width: 700px;
    padding: 37px 52px 49px 35px;
    gap: 40px;
  }
}
.p-strengths__icon {
  min-width: 80px;
}
@media screen and (min-width: 600px) {
  .p-strengths__icon {
    min-width: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths__icon {
    min-width: 112px;
  }
}
.p-strengths__icon--01 img {
  width: auto;
  height: 83px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-strengths__icon--01 img {
    height: 86px;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths__icon--01 img {
    height: 115px;
  }
}
.p-strengths__icon--02 img {
  width: auto;
  height: 73px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-strengths__icon--02 img {
    height: 85px;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths__icon--02 img {
    height: 98px;
  }
}
.p-strengths__icon--03 img {
  width: auto;
  height: 93px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-strengths__icon--03 img {
    height: 107px;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths__icon--03 img {
    height: 124px;
  }
}
.p-strengths__content {
  flex: 1;
}
.p-strengths__title {
  font-size: 16px;
  color: #1D2B4D;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.288px;
}
@media screen and (min-width: 600px) {
  .p-strengths__title {
    text-align: left;
    line-height: 1;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 820px) {
  .p-strengths__title {
    font-size: clamp(18px, 1.3541666667vw, 26px);
    margin-bottom: 15px;
  }
}
.p-strengths__text {
  line-height: 180%;
  letter-spacing: 0.187px;
  text-align: justify;
  font-weight: 500;
  font-size: 13px;
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .p-strengths__text {
    max-width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .p-strengths__text {
    font-size: 16px;
    max-width: -moz-fit-content;
    max-width: fit-content;
    flex-basis: 37%;
    line-height: 32px;
    letter-spacing: 0.23px;
  }
}
@media screen and (min-width: 1280px) {
  .p-strengths__text {
    font-size: 16px;
    max-width: -moz-fit-content;
    max-width: fit-content;
    flex-basis: 34%;
    line-height: 32px;
    letter-spacing: 0.23px;
  }
}
@media screen and (min-width: 1920px) {
  .p-strengths__text {
    font-size: 16px;
    font-size: 16px;
    max-width: -moz-fit-content;
    max-width: fit-content;
    flex-basis: 45%;
    line-height: 32px;
    letter-spacing: 0.23px;
  }
}

/*
　Works
================================*/
.p-works .c-section-title {
  color: #fff;
}
.p-works .c-section-title h2::before {
  background-image: url("../images/icon-title--02.svg");
}
@media screen and (min-width: 960px) {
  .p-works__wrapper {
    padding-top: 117px !important;
    padding-bottom: 105px !important;
  }
}
.p-works__description {
  margin-top: 18px;
  line-height: 200%;
  color: #fff;
  text-align: justify;
  letter-spacing: 1.44%;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .p-works__description {
    font-size: 18px;
    margin-top: 40px;
    line-height: 41px; /* 227.778% */
    letter-spacing: 0.259px;
  }
}
.p-works__content {
  display: grid;
  gap: 30px 24px;
  margin-top: 35px;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
}
@media screen and (min-width: 600px) {
  .p-works__content {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(283px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .p-works__content {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .p-works__content {
    margin-top: 77px;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  }
}
@media screen and (min-width: 1920px) {
  .p-works__content {
    grid-template-columns: repeat(auto-fit, minmax(426px, 1fr));
  }
}
.p-works__block {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.p-works__block:hover .u-action-zoom-in__mask img {
  transform: scale(1.2);
}
.p-works__block__title {
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 10px 20px 6px;
  border-radius: 14px 14px 0 0;
  color: #FB8549;
  font-weight: bold;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 214px;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.288px;
}
@media screen and (min-width: 1280px) {
  .p-works__block__title {
    font-size: clamp(20px, 1.3541666667vw, 26px);
    line-height: 30px;
    letter-spacing: 0.468px;
    padding: 14px 25px 10px;
    max-width: 287px;
    border-radius: 20px 20px 0 0;
  }
}
.p-works__block__title span {
  font-size: 12px;
  margin-left: 5px;
  line-height: 172.023%; /* 172.023% */
  letter-spacing: 0.12px;
}
@media screen and (min-width: 1280px) {
  .p-works__block__title span {
    font-size: clamp(14px, 0.8333333333vw, 16px);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16px;
  }
}
.p-works__block__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -32px;
  width: 2rem;
  height: 2rem;
  background: #fff;
  z-index: 1;
}
.p-works__block__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -32px;
  width: 2rem;
  height: 2rem;
  background: #F7A33E;
  border-bottom-left-radius: 14px;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-works__block__title::after {
    border-bottom-left-radius: 20px;
  }
}
.p-works__block__body {
  background-color: #fff;
  padding: 10px;
  border-radius: 0 14px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 960px) {
  .p-works__block__body {
    padding: 13px;
    border-radius: 0 20px 20px 20px;
  }
}
.p-works__block__image-link {
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 960px) {
  .p-works__block__image-link {
    padding: 5px;
  }
}
.p-works__block__image {
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-works__block__image .u-action-zoom-in__mask {
  border-radius: 14px;
}
@media screen and (min-width: 960px) {
  .p-works__block__image .u-action-zoom-in__mask {
    border-radius: 17px;
  }
}
.p-works__block__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  aspect-ratio: 214/139;
}
@media screen and (min-width: 960px) {
  .p-works__block__image img {
    border-radius: 17px;
  }
}
.p-works__block__link {
  display: inline-flex !important;
  align-items: center;
  color: #FB8549;
  text-decoration: none;
  width: 100%;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.005px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 820px) {
  .p-works__block__link {
    gap: 15px;
  }
}
@media screen and (min-width: 960px) {
  .p-works__block__link {
    font-size: 14px;
    margin-top: 25px;
    gap: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .p-works__block__link {
    font-size: 14px;
    margin-top: 30px;
  }
}
.p-works__block__link {
  /* --- 1. 白丸の土台（背景） --- */
}
.p-works__block__link::after {
  content: "";
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  background-color: #FB8549;
  border-radius: 50%;
  z-index: 10;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 960px) {
  .p-works__block__link::after {
    width: 25px;
    height: 25px;
  }
}
.p-works__block__link {
  /* --- 2. 矢印アイコン（動く方） --- */
}
.p-works__block__link::before {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  position: absolute;
  flex-shrink: 0;
  background-image: url(../images/icon-arrow-right-white.svg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11; /* 丸より上に */
  pointer-events: none;
  display: block;
}
@media screen and (min-width: 960px) {
  .p-works__block__link::before {
    width: 25px;
    height: 25px;
  }
}
.p-works__block__link:hover::after, .p-works__block:hover .p-works__block__link::after {
  transform: scale(1.1);
}
.p-works__block__link:hover::before, .p-works__block:hover .p-works__block__link::before {
  animation: arrow-slide-effect 0.4s ease-in-out forwards;
}
.p-works__block__text {
  padding: 21px 10px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 960px) {
  .p-works__block__text {
    padding: 21px 12px 12px;
  }
}
.p-works__block__text h4 {
  font-size: 15px;
  margin-bottom: 11px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 0.216px;
}
@media screen and (min-width: 820px) {
  .p-works__block__text h4 {
    font-size: clamp(16px, 0.9895833333vw, 18px);
    line-height: 30px;
    letter-spacing: 0.259px;
    margin-bottom: 10px;
  }
}
.p-works__block__text p {
  flex: 1;
  font-size: 13px;
  text-align: justify;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: 0.098px;
}
@media screen and (min-width: 820px) {
  .p-works__block__text p {
    font-size: clamp(14px, 0.8854166667vw, 16px);
    line-height: 200%;
    letter-spacing: 0.23px;
  }
}
.p-works__decor__wrapper {
  position: relative;
}
.p-works__decor {
  position: absolute;
  top: calc(-31vw - 20px);
  right: 0;
  width: 63%;
  aspect-ratio: 1/1;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-works__decor {
    top: calc(-31vw - 10px);
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .p-works__decor {
    top: calc(-17vw - 10px);
    width: 40%;
  }
}
.p-works__decor-item {
  position: absolute;
  top: 0;
  right: -35px;
  width: clamp(220px, 52vw, 600px);
}
@media screen and (min-width: 768px) {
  .p-works__decor-item {
    right: -45px;
    width: clamp(200px, 48vw, 600px);
  }
}
@media screen and (min-width: 768px) {
  .p-works__decor-item {
    right: 5px;
    width: clamp(200px, 65vw, 700px);
  }
}

/*
　採用情報
================================*/
.p-recruit__content {
  position: relative;
}
.p-recruit__decor {
  position: absolute;
  width: 100%;
}
.p-recruit__decor-item--left {
  position: absolute;
  top: calc(-0.58 * clamp(180px, 20vw, 230px) + 50px);
  left: -22px;
  width: clamp(150px, 29vw, 300px);
}
@media screen and (min-width: 1280px) {
  .p-recruit__decor-item--left {
    left: -70px;
    top: calc(-0.58 * clamp(180px, 20vw, 230px) + 100px);
  }
}
.p-recruit__decor-item--right {
  position: absolute;
  top: calc(0.42 * clamp(350px, 20vw, 230px) + 70px);
  right: -22px;
  width: clamp(140px, 26vw, 300px);
}
@media screen and (min-width: 1280px) {
  .p-recruit__decor-item--right {
    right: -70px;
    top: calc(0.42 * clamp(350px, 20vw, 230px) + 210px);
  }
}
.p-recruit__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-recruit__text p {
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.202px;
}
@media screen and (min-width: 600px) {
  .p-recruit__text p {
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.23px;
  }
}
@media screen and (min-width: 820px) {
  .p-recruit__text p {
    text-align: center;
    line-height: 2;
    font-size: 18px;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: 0.259px;
  }
}
.p-recruit__read {
  margin-top: 35px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 41px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 600px) {
  .p-recruit__read {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    margin-top: 35px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 41px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit__read {
    margin-top: clamp(40px, 10vw, 80px);
    margin-bottom: clamp(43px, 10vw, 82px);
    max-width: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit__read {
    max-width: 600px;
  }
}
.p-recruit__block {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 20px;
  margin-top: 35px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-recruit__block {
    margin-top: clamp(100px, 10vw, 161px);
    gap: 25px;
  }
}
.p-recruit__block__item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 24px 30px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 480px) {
  .p-recruit__block__item {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit__block__item {
    padding: 37px 37px 49px;
    gap: 25px;
    border-radius: 20px;
  }
}
.p-recruit__block__icon {
  flex-shrink: 0;
}
.p-recruit__block__icon img {
  width: 60px;
  height: auto;
}
@media screen and (min-width: 600px) {
  .p-recruit__block__icon img {
    width: 80px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit__block__icon img {
    width: 100px;
  }
}
.p-recruit__block__content {
  flex: 1;
}
.p-recruit__block__title {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.27px;
  margin-bottom: 9px;
}
@media screen and (min-width: 480px) {
  .p-recruit__block__title {
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) {
  .p-recruit__block__title {
    text-align: center;
    font-size: clamp(18px, 1.1979166667vw, 22px);
    line-height: 32.5px;
    letter-spacing: 0.396px;
    margin-bottom: 15px;
  }
}
.p-recruit__block__text {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.187px;
}
@media screen and (min-width: 480px) {
  .p-recruit__block__text {
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .p-recruit__block__text {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.23px;
  }
}
.p-recruit__job {
  padding-top: 70px;
  padding-bottom: 45px;
  border-bottom: 1px solid #FB8549;
}
@media screen and (min-width: 960px) {
  .p-recruit__job {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
.p-recruit__job__head {
  border-bottom: 1px solid #FB8549;
  margin-bottom: 45px;
}
.p-recruit__job__title {
  position: relative;
  display: inline-block;
  background: rgb(250, 248, 246);
  padding: 15px 30px 5px 19px;
  padding-bottom: 0;
  border-top-right-radius: 14px;
  font-weight: bold;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-top: 1px solid #FB8549;
  border-right: 1px solid #FB8549;
  bottom: -5.3px;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .p-recruit__job__title {
    padding: 22px 30px 5px 35px;
  }
}
.p-recruit__job__title h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.324px;
  margin-top: 3px;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__title h3 {
    font-size: clamp(20px, 2.0833333333vw, 26px);
    letter-spacing: 0.468px;
  }
}
.p-recruit__job__title span {
  color: #FB8549;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%; /* 12px */
  letter-spacing: 0.06px;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__title span {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.08px;
  }
}
.p-recruit__job__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -32px;
  width: 2rem;
  height: 2rem;
  background: rgb(250, 248, 246);
  z-index: 1;
}
.p-recruit__job__title::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: -32px;
  width: 2rem;
  height: 2rem;
  background: rgb(250, 248, 246);
  border-left: 1px solid #FB8549;
  border-bottom: 1px solid #FB8549;
  border-bottom-left-radius: 14px;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-recruit__job__title::after {
    bottom: 4px;
  }
}
.p-recruit__job__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 34px 24px;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 600px) {
  .p-recruit__job__list {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(283px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__job__list {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .p-recruit__job__list {
    margin: 0 30px;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit__job__list {
    gap: 50px;
  }
}
@media screen and (min-width: 1920px) {
  .p-recruit__job__list {
    grid-template-columns: repeat(auto-fit, minmax(421px, 1fr));
  }
}
.p-recruit__job__item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.p-recruit__job__item a:hover .u-action-zoom-in__mask img {
  transform: scale(1.2);
}
.p-recruit__job__image {
  aspect-ratio: 441.21/294.07;
  overflow: hidden;
  border-radius: 12px;
}
@media screen and (min-width: 960px) {
  .p-recruit__job__image {
    border-radius: 17px;
  }
}
.p-recruit__job__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__job__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-recruit__job__body h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.288px;
  margin-bottom: 16px;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__body h4 {
    font-size: clamp(18px, 1.1979166667vw, 22px);
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.396px;
    margin-bottom: 18px;
  }
}
.p-recruit__job__name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.p-recruit__job__label {
  background-color: #FB8549;
  color: #fff;
  padding: 3px 20px;
  border-radius: 50px;
  line-height: 1;
  font-size: 11px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 0.158px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__label {
    font-size: 13px;
    font-weight: 600;
    line-height: 134.615%;
    letter-spacing: 0.187px;
  }
}
.p-recruit__job__salary {
  color: #FB8549;
  margin-top: 11px;
  font-size: 15px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.27px;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__salary {
    font-size: clamp(16px, 0.9895833333vw, 18px);
    line-height: 125%;
    letter-spacing: 0.324px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit__job__salary {
    margin-top: 24px;
  }
}
.p-recruit__job__desc {
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: 0.187px;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.23px;
  }
}
.p-recruit__job__more {
  color: #FB8549;
  text-align: right;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 13px;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.005px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__more {
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.006px;
    gap: 15px;
  }
}
.p-recruit__job__more {
  /* --- 1. 白丸の土台（背景） --- */
}
.p-recruit__job__more::after {
  content: "";
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  background-color: #FB8549;
  border-radius: 50%;
  z-index: 10;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__more::after {
    width: 25px;
    height: 25px;
  }
}
.p-recruit__job__more {
  /* --- 2. 矢印アイコン（動く方） --- */
}
.p-recruit__job__more::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  background-image: url(../images/icon-arrow-right-white.svg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11; /* 丸より上に */
  pointer-events: none;
  display: block;
}
@media screen and (min-width: 820px) {
  .p-recruit__job__more::before {
    width: 25px;
    height: 25px;
  }
}
.p-recruit__job__more:hover::after, .p-recruit__job__item a:hover .p-recruit__job__more::after {
  transform: scale(1.1);
}
.p-recruit__job__more:hover::before, .p-recruit__job__item a:hover .p-recruit__job__more::before {
  animation: arrow-slide-effect 0.4s ease-in-out forwards;
}
.p-recruit__job__button {
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .p-recruit__job__button {
    margin-top: 66px;
  }
}
.p-recruit__job__button .c-button {
  margin: 0 auto;
  max-width: 225px;
}

.p-casual-talk {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-casual-talk__wrapper {
    padding-bottom: 160px;
  }
}
.p-casual-talk__text {
  width: 100%;
  max-width: 600px;
  line-height: 1.6;
}
@media screen and (min-width: 820px) {
  .p-casual-talk__text {
    flex: 1;
  }
}
.p-casual-talk__description {
  margin-top: 18px;
  color: #EF5000;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.202px;
}
@media screen and (min-width: 600px) {
  .p-casual-talk__description {
    margin-top: clamp(20px, 5vw, 40px);
    font-size: clamp(16px, 0.8854166667vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 41px; /* 227.778% */
    letter-spacing: 0.259px;
  }
}
.p-casual-talk__block {
  display: grid;
  gap: 20px;
  margin-top: 35px;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .p-casual-talk__block {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .p-casual-talk__block {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media screen and (min-width: 1280px) {
  .p-casual-talk__block {
    gap: 25px;
    margin-top: 85px;
    grid-template-columns: none;
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1920px) {
  .p-casual-talk__block {
    grid-template-columns: none;
    display: flex;
    justify-content: flex-end;
  }
}
.p-casual-talk__item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 24px 30px;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 2.308px 2.308px 2.308px 0 rgba(246, 242, 237, 0.7);
}
@media screen and (min-width: 480px) {
  .p-casual-talk__item {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 37px 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-casual-talk__item {
    width: 340px;
    height: 326px;
    padding: 37px 37px;
  }
}
.p-casual-talk__icon {
  flex-shrink: 0;
}
.p-casual-talk__icon img {
  width: 60px;
  height: auto;
}
@media screen and (min-width: 960px) {
  .p-casual-talk__icon img {
    width: clamp(60px, 15vw, 100px);
  }
}
.p-casual-talk__content {
  flex: 1;
}
.p-casual-talk__content__title {
  color: #1D2B4D;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 18.75px */
  letter-spacing: 0.27px;
  margin-bottom: 9px;
}
@media screen and (min-width: 480px) {
  .p-casual-talk__content__title {
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  .p-casual-talk__content__title {
    font-size: clamp(16px, 1.1458333333vw, 22px);
    font-style: normal;
    font-weight: 700;
    line-height: 32.5px;
    letter-spacing: 0.396px;
    text-align: center;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1920px) {
  .p-casual-talk__content__title {
    font-size: 22px;
  }
}
.p-casual-talk__content__text {
  color: #1D2B4D;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 23.4px */
  letter-spacing: 0.187px;
}
@media screen and (min-width: 480px) {
  .p-casual-talk__content__text {
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  .p-casual-talk__content__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 200% */
    letter-spacing: 0.23px;
  }
}
.p-casual-talk__button {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 820px) {
  .p-casual-talk__button {
    justify-content: flex-end;
    margin-top: 80px;
  }
}
.p-casual-talk__button .c-button {
  width: 100%;
  max-width: 267px;
  height: 52px;
  margin: 0 auto;
  padding: 16px 26px;
}
@media screen and (min-width: 820px) {
  .p-casual-talk__button .c-button {
    margin: 0;
  }
}

.p-casual-talk-cta {
  padding: 39px 25px 47px 25px;
  border-radius: 14px;
  background: linear-gradient(51deg, #FF8C3D 43.92%, #FFBC5F 101.01%);
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-casual-talk-cta {
    padding: 40px 70px 50px;
    border-radius: 20px;
    background: linear-gradient(29deg, #FF8C3D 41.32%, #FFBC5F 89.38%);
  }
}
@media screen and (min-width: 1280px) {
  .p-casual-talk-cta {
    padding: 53px 88px 67px;
  }
}
.p-casual-talk-cta__wrapper {
  overflow: hidden;
}
.p-casual-talk-cta__container {
  padding-top: 122px;
}
@media screen and (min-width: 960px) {
  .p-casual-talk-cta__container {
    padding-top: clamp(150px, 20vw, 188px);
    padding-bottom: clamp(70px, 20vw, 105px);
  }
}
.p-casual-talk-cta__text {
  flex: 1;
  color: #fff;
  position: relative;
  z-index: 10;
  max-width: 550px;
}
.p-casual-talk-cta__text p {
  line-height: 1.8;
  font-weight: bold;
}
.p-casual-talk-cta__title {
  margin-bottom: 31px;
}
@media screen and (min-width: 820px) {
  .p-casual-talk-cta__title {
    margin-bottom: 46px;
  }
}
.p-casual-talk-cta__title p {
  display: inline-block;
  font-style: italic;
  color: #FFEBA1;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.06px;
}
@media screen and (min-width: 600px) {
  .p-casual-talk-cta__title p {
    font-size: 14px;
  }
}
@media screen and (min-width: 820px) {
  .p-casual-talk-cta__title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.08px;
  }
}
.p-casual-talk-cta__title h2 {
  margin-top: 4px;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  line-height: 163%;
  letter-spacing: 0.324px;
}
@media screen and (min-width: 820px) {
  .p-casual-talk-cta__title h2 {
    margin-top: 0;
    font-size: clamp(21px, 1.40625vw, 26px);
    font-weight: 700;
    line-height: 42.5px;
    letter-spacing: 0.468px;
  }
}
.p-casual-talk-cta__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 31px;
}
@media screen and (min-width: 820px) {
  .p-casual-talk-cta__buttons {
    grid-template-columns: repeat(2, minmax(0, 100%));
  }
}
@media screen and (min-width: 960px) {
  .p-casual-talk-cta__buttons {
    grid-template-columns: repeat(2, minmax(0, 100%));
    min-width: 676px;
  }
}
.p-casual-talk-cta__button .c-button {
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
  border: none;
}
@media screen and (min-width: 600px) {
  .p-casual-talk-cta__button .c-button {
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-casual-talk-cta__button .c-button {
    max-width: 328px;
    padding: 19px 45px 19px 30px;
  }
}
.p-casual-talk-cta__image {
  position: absolute;
  top: -60px;
  right: -30px;
  width: 100%;
  max-width: clamp(230px, 50vw, 300px);
  z-index: 1;
  flex: 1;
}
@media screen and (min-width: 820px) {
  .p-casual-talk-cta__image {
    right: -40px;
    top: -50px;
    max-width: clamp(100px, 30vw, 260px);
  }
}
@media screen and (min-width: 960px) {
  .p-casual-talk-cta__image {
    right: -40px;
    top: -60px;
    transform: translateY(-9%);
    max-width: clamp(100px, 30vw, 260px);
  }
}
.p-casual-talk-cta__image picture,
.p-casual-talk-cta__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 960px) {
  .p-casual-talk-cta__image {
    max-width: 45%;
  }
}
.p-casual-talk-cta__image-bottom {
  position: absolute;
  bottom: -40px;
  left: 0;
}
@media screen and (min-width: 960px) {
  .p-casual-talk-cta__image-bottom {
    display: none;
  }
}

.p-recruit-cta {
  padding: 37px 25px 58px 25px;
  border-radius: 14px;
  background: linear-gradient(51deg, #FF8C3D 43.92%, #FFBC5F 101.01%);
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-recruit-cta {
    padding: 40px 70px 50px;
    border-radius: 20px;
    background: linear-gradient(29deg, #FF8C3D 41.32%, #FFBC5F 89.38%);
  }
}
@media screen and (min-width: 1920px) {
  .p-recruit-cta {
    padding: 48px 88px 70px;
  }
}
.p-recruit-cta__wrapper {
  position: relative;
  padding-top: 56px;
  padding-bottom: 100px;
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__wrapper {
    padding-top: 100px;
    padding-bottom: 210px;
  }
}
.p-recruit-cta__wrapper {
  /* SVG自体の配置 */
}
.p-recruit-cta__wrapper .p-section__bg-band-svg {
  top: 78%;
}
@media screen and (min-width: 768px) {
  .p-recruit-cta__wrapper .p-section__bg-band-svg {
    top: 70%;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__wrapper .p-section__bg-band-svg {
    top: 61%;
  }
}
.p-recruit-cta__text {
  flex: 1;
  color: #fff;
  position: relative;
  z-index: 10;
  max-width: 553px;
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__text {
    max-width: 692px;
  }
}
.p-recruit-cta__text p {
  color: #FFF;
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 185%; /* 25.9px */
  letter-spacing: 0.202px;
}
@media screen and (min-width: 600px) {
  .p-recruit-cta__text p {
    line-height: 1.8;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px; /* 187.5% */
    letter-spacing: 0.23px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__text p {
    font-size: clamp(16px, 0.9375vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 41px; /* 227.778% */
    letter-spacing: 0.259px;
  }
}
.p-recruit-cta__title {
  margin-bottom: 12px;
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__title {
    margin-bottom: 31px;
  }
}
.p-recruit-cta__title p {
  color: #FFD396;
  font-size: 45px;
  font-style: italic;
  font-weight: 700;
  line-height: 53.793px; /* 119.54% */
  letter-spacing: 0.225px;
}
@media screen and (min-width: 768px) {
  .p-recruit-cta__title p {
    font-size: 60px;
    line-height: 72px; /* 120% */
    letter-spacing: 0.3px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__title p {
    font-size: clamp(60px, 6.3020833333vw, 120px);
    font-weight: 700;
    line-height: 120px; /* 100% */
    letter-spacing: 0.6px;
  }
}
.p-recruit-cta__title h2 {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 163%; /* 29.34px */
  letter-spacing: 0.324px;
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .p-recruit-cta__title h2 {
    font-size: 24px;
    line-height: 39px; /* 162.5% */
    letter-spacing: 0.432px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__title h2 {
    font-size: clamp(24px, 1.71875vw, 32px);
    font-weight: 700;
    line-height: 42.5px; /* 132.813% */
    letter-spacing: 0.576px;
  }
}
.p-recruit-cta__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 31px;
}
@media screen and (min-width: 820px) {
  .p-recruit-cta__buttons {
    grid-template-columns: repeat(2, minmax(0, 100%));
  }
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__buttons {
    grid-template-columns: repeat(2, minmax(0, 100%));
    min-width: 676px;
    margin-top: 36px;
  }
}
.p-recruit-cta__button .c-button {
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
  border: none;
}
@media screen and (min-width: 600px) {
  .p-recruit-cta__button .c-button {
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__button .c-button {
    max-width: 328px;
    padding: 19px 45px 19px 30px;
  }
}
.p-recruit-cta__image {
  position: absolute;
  top: -33px;
  right: -30px;
  width: 100%;
  max-width: clamp(100px, 30vw, 150px);
  z-index: 1;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-recruit-cta__image {
    top: -50px;
    right: -40px;
    max-width: 180px;
  }
}
@media screen and (min-width: 820px) {
  .p-recruit-cta__image {
    top: -50px;
    max-width: 140px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit-cta__image {
    right: -20px;
    top: -50px;
    max-width: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .p-recruit-cta__image {
    right: -20px;
    top: -90px;
    max-width: 600px;
  }
}
@media screen and (min-width: 1920px) {
  .p-recruit-cta__image {
    right: -20px;
    top: -90px;
    max-width: 600px;
  }
}
.p-recruit-cta__image picture,
.p-recruit-cta__image img {
  width: 100%;
  height: auto;
  display: block;
}/*# sourceMappingURL=layout.css.map */