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

@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Th.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/*==================================
* 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, .c-news-content__lists, .c-news-content__button, .c-faq__content, .c-cta__button, .l-footer__nav, .l-footer__ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .u-flex--md, .c-news-content__lists, .c-news-content__button, .c-faq__content, .c-cta__button, .l-footer__nav, .l-footer__ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.u-flex--lr, .p-usecase, .c-form tr, .c-feature__block, .l-hero__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 820px) {
  .u-flex--lr, .p-usecase, .c-form tr, .c-feature__block, .l-hero__inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

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

.u-font--number, .p-solution__number span, .p-service__number span {
  font-family: "Poppins", sans-serif;
}

.u-font--en {
  font-family: "Lato", sans-serif;
}

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

.u-font-size--md, .p-privacy-content h2 {
  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%, #e86c00 75%);
}

.u-text-marker--red {
  background: linear-gradient(transparent 75%, #ab3400 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, .p-trouble {
  padding-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-pt--md, .p-trouble {
    padding-top: 60px !important;
  }
}

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

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

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

.u-mb--md, .p-solution__list, .p-price-plan__text, .p-news-article__block, .p-search-content, .p-contact-thanks h1, .p-profile-article__block, .p-privacy-content .p-privacy-block, .c-form-content__button, .c-form, .c-form__privacy, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-post-links {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mb--md, .p-solution__list, .p-price-plan__text, .p-news-article__block, .p-search-content, .p-contact-thanks h1, .p-profile-article__block, .p-privacy-content .p-privacy-block, .c-form-content__button, .c-form, .c-form__privacy, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-post-links {
    margin-bottom: 60px !important;
  }
}

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

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

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

.u-mt--md, .p-usecase, .p-solution__list, .p-service__list, .p-service__text, .wp-pagenavi, .p-profile-wrapper, .c-news-content__lists, .c-news-content__button, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-faq, .c-feature {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--md, .p-usecase, .p-solution__list, .p-service__list, .p-service__text, .wp-pagenavi, .p-profile-wrapper, .c-news-content__lists, .c-news-content__button, .c-form__privacy__text, .c-form__privacy-check .c-form__privacy-text, .c-faq, .c-feature {
    margin-top: 60px !important;
  }
}

.u-mt--lr, .p-contact-thanks, .p-contact-thanks__button, .p-contact-404, .p-contact-404__button, .c-mobile-menu__contact-button {
  margin-top: 60px !important;
}
@media screen and (min-width: 960px) {
  .u-mt--lr, .p-contact-thanks, .p-contact-thanks__button, .p-contact-404, .p-contact-404__button, .c-mobile-menu__contact-button {
    margin-top: 100px !important;
  }
}

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

/*==================================
* Content Width Utility
==================================*/
.u-content-width, .l-section__container, .l-hero-sub-02__inner {
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}

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

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

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

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

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

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

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

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

.u-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%;
  height: 55px;
  display: flex;
  align-items: center;
  background-color: #fff;
  z-index: 2000;
  transition: 0.3s;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 100px;
  }
}
@media screen and (min-width: 960px) {
  .l-header.triggered {
    box-shadow: 0px 0 28px -3px rgba(102, 102, 102, 0.5);
  }
  .l-header.triggered .l-header__li::after {
    border-right: 1px solid #fff;
  }
}
.l-header__inner {
  margin: 0 auto;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.l-header__nav {
  text-align: center;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .l-header__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__ul {
  height: 100%;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header__ul {
    display: flex;
  }
}
.l-header__li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.l-header__li a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 8px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #333;
  font-size: 15px;
  transition: 0.1s;
}
@media screen and (min-width: 1280px) {
  .l-header__li a {
    font-size: 16px;
    padding: 5px 14px;
  }
}
.l-header__li a:hover {
  color: #0360E5;
  translate: 0px -4px;
}
.l-header__logo {
  flex: 1;
}
.l-header__logo a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transform: translateY(10%);
  line-height: 1.3;
  color: #333;
  font-size: clamp(11px, 1.2vw, 16px);
  letter-spacing: 0.05px;
  text-decoration: none;
  width: 100%;
}
.l-header__logo img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 960px) {
  .l-header__logo img {
    height: 50px;
  }
}
.l-header__logo span {
  margin-left: 5px;
  display: none;
}
@media screen and (min-width: 600px) {
  .l-header__logo span {
    display: inline-block;
    width: auto;
    line-height: 1;
  }
}
.l-header__button {
  margin-right: 40px;
  height: 90%;
  max-height: 50px;
  display: none;
}
.l-header__button .c-button-03::after {
  background-image: url("../images/icon_mail-blue.svg");
  height: 30px;
  width: 26px;
}
@media screen and (min-width: 960px) {
  .l-header__button {
    display: flex;
    margin-right: 0;
    margin-left: 10px;
  }
}

.l-footer {
  padding: 30px 0 50px 0;
  background-color: #f5f5f5;
}
@media screen and (min-width: 600px) {
  .l-footer {
    padding: 30px 0;
  }
}
.l-footer__inner {
  width: 95%;
  margin: 0 auto;
}
.l-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 820px) {
  .l-footer__logo {
    justify-content: flex-end;
  }
}
.l-footer__logo-img {
  max-width: 300px;
}
.l-footer__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid #0360E5;
  border-top: 1px solid #0360E5;
  margin-bottom: 20px;
  padding: 30px 0;
}
.l-footer__ul {
  list-style: none;
  padding: 0;
}
.l-footer__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .l-footer__li {
    margin-left: 0;
    margin-right: 30px;
  }
}
.l-footer__li > a {
  color: #333;
  text-decoration: none;
  display: block;
  font-weight: 500;
}
.l-footer > .logo {
  font-size: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .l-footer > .logo {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 960px) {
  .l-footer > .logo {
    font-size: 30px;
    justify-content: flex-end;
  }
}
.l-footer__insta {
  width: 25px;
  height: auto;
  display: inline-block !important;
}
.l-footer__copyright {
  text-align: center;
  font-size: 14px;
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  #page-top {
    bottom: 120px;
  }
}
#page-top a {
  display: block;
  overflow: hidden;
  border-radius: 50px;
}
#page-top img {
  width: 50px; /* お好みで調整 */
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 17px;
  background: #fff;
}
#page-top::after {
  position: absolute;
  content: "PAGETOP";
  font-size: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #8c8a8a;
}

.l-hero {
  padding-top: 55px;
  background: linear-gradient(#a6d8ff, #fff, #fff);
}
@media screen and (min-width: 960px) {
  .l-hero {
    padding-top: 100px;
  }
}
.l-hero__inner {
  overflow: hidden;
  position: relative;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: clamp(6.5rem, 4.5rem + 8.89vw, 6rem) 0;
}
.l-hero__title {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}
.l-hero__title h1 {
  font-weight: 900;
  font-size: clamp(25px, 5vw, 47px);
  letter-spacing: 2px;
  line-height: 1.3;
  color: #333;
  text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
}
.l-hero__title h1 em {
  font-style: normal;
  font-size: 1.2em;
  color: #EF857D;
}
@media screen and (min-width: 820px) {
  .l-hero__title h1 {
    font-size: clamp(26px, 3.4vw, 60px);
  }
}
.l-hero__title p {
  margin-top: 1em;
  font-size: clamp(18px, 2vw, 22px);
  color: #666;
  line-height: 1.5;
}
.l-hero__image {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  .l-hero__image {
    width: 50%;
    flex-basis: 50%;
  }
}

.l-hero-sub {
  padding-top: 55px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-hero-sub {
    padding-top: 100px;
  }
}
.l-hero-sub__inner {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .l-hero-sub__inner {
    height: 500px;
  }
}
.l-hero-sub__image {
  width: 100%;
  height: auto;
}
.l-hero-sub__image picture,
.l-hero-sub__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .l-hero-sub__image {
    height: 100%;
  }
}
.l-hero-sub__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
}
.l-hero-sub__title h1 {
  margin-bottom: 0;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 60px);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.l-hero-sub__title p {
  display: block;
  font-size: clamp(18px, 3vw, 23px);
  letter-spacing: 0.5px;
}
.l-hero-sub__date {
  font-size: clamp(18px, 3vw, 23px);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.l-hero-sub-02 {
  padding-top: 55px;
}
@media screen and (min-width: 960px) {
  .l-hero-sub-02 {
    padding-top: 100px;
  }
}
.l-hero-sub-02__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  height: 200px;
}
@media screen and (min-width: 960px) {
  .l-hero-sub-02__inner {
    height: 300px;
  }
}
.l-hero-sub-02__inner h1 {
  font-size: clamp(40px, 7vw, 80px);
  text-transform: uppercase;
  line-height: 1.1;
}
.l-hero-sub-02__inner p {
  display: block;
  width: 100%;
  font-weight: 600;
}

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

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

.l-section--blue {
  background: #0360E5;
}

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

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

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

.c-button {
  min-width: 200px;
  position: relative;
  display: inline-block;
  border: 1px solid #000;
  padding: 13px 35px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
.c-button::after {
  content: "";
  width: 35px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  background: #000;
  z-index: 100;
}
.c-button.float:hover {
  background-color: #a3a3a3;
  color: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.c-button.filled {
  background-color: #000;
  color: #fff;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.c-button.filled:hover {
  background-color: #fff;
  color: #000;
  box-shadow: none;
}
.c-button.shadow {
  box-shadow: none;
}
.c-button.shadow:hover {
  transform: translate(-0.3px, -0.3px);
  box-shadow: 2px 2px 4px 0 rgba(46, 88, 149, 0.6);
}
.c-button.solid {
  box-shadow: 2px 2px 0 0 #000;
  border-radius: 7px;
}
.c-button.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.c-button.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.c-button.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.c-button.slide-bg:hover {
  color: #fff;
}
.c-button.slide-bg:hover::before {
  transform: none;
}

.c-arrow-button {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
  padding: 0 1.5em 0 0.5em;
  padding-bottom: 10px;
  box-sizing: border-box;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1em;
  text-decoration: none;
  transition: 0.5s ease-out;
}
.c-arrow-button:hover::before {
  left: 10px;
}
.c-arrow-button:hover::after {
  right: -11px;
}
.c-arrow-button::before {
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #333;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.c-arrow-button::after {
  content: "";
  width: 10px;
  height: 1.5px;
  position: absolute;
  bottom: 3px;
  right: -1px;
  background-color: #333;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.c-button-02 {
  align-items: flex-end;
  background: linear-gradient(180deg, rgb(255, 219, 34) 0%, rgb(242, 193, 20) 100%);
  border-bottom: 3px solid #cb922e;
  border-left: 0px solid #cb922e;
  border-radius: 100px;
  border-right: 0px solid #cb922e;
  border-top: 0px solid #cb922e;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.07);
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0px;
  height: auto;
  justify-content: center;
  padding: 22px 24px 22px 24px;
  max-width: 500px;
  width: 100%;
  display: inline-block;
  color: #333;
  text-decoration: none;
  position: relative;
  cursor: url("../images/icon-cursor.svg"), auto;
}
.c-button-02:hover {
  border-bottom: 3px solid #f2c114;
  border-left: 0px solid #f2c114;
  border-right: 0px solid #f2c114;
  border-top: 0px solid #f2c114;
  transform: translate(0px, 3px);
  transition-duration: 100ms;
}
.c-button-02 span {
  position: absolute;
  top: -1.2em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 100px;
  padding: 3px 5px;
  display: inline-block;
  width: 85%;
  margin: 0 auto;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
}
.c-button-02 span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.6rem 0 0.6rem;
  z-index: 10;
  border-color: #fff transparent transparent transparent;
}
.c-button-02 p {
  font-weight: 900;
  font-size: clamp(18px, 3vw, 22px);
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(5px);
}
.c-button-02 p::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background-image: url("../images/icon_mail-blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  margin-left: 5px;
}
.c-button-02--chatwork {
  background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
  border-bottom: 3px solid #e94e3c;
}
.c-button-02--chatwork:hover {
  border-bottom: 3px solid #fff;
  border-left: 0px solid #e94e3c;
  border-right: 0px solid #e94e3c;
  border-top: 0px solid #e94e3c;
  transform: translate(0px, 3px);
  transition-duration: 100ms;
}
.c-button-02--chatwork p:after {
  width: 1.5em;
  height: 1.5em;
  background-image: url("../images/icon-chatwork.svg");
}
.c-button-02--chatwork span {
  background-color: #e76051;
  color: #fff;
}
.c-button-02--chatwork span::after {
  border-color: #e76051 transparent transparent transparent;
}

.c-button-03 {
  margin: 5px 0;
  padding: 5px 0;
  text-decoration: none;
  font-size: 14px;
  padding-inline: 2em 1.4em;
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1em;
  padding-inline: 3.2em 1.6em;
  border-radius: 100px;
  background-blend-mode: multiply;
  background: linear-gradient(to bottom, #4A9BFF, #0360E5);
  background-size: 200% 100%;
  animation: shine 4s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
  transition: transform 0.4s cubic-bezier(0.722, 0.057, 0.018, 1.982);
  position: relative;
  cursor: url("../images/icon-cursor.svg"), auto;
}
@media screen and (min-width: 960px) {
  .c-button-03 {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.c-button-03::after {
  content: "";
  display: block;
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../images/icon-arrow.svg") no-repeat center/contain;
}
.c-button-03 .shine {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 100px;
  background-blend-mode: multiply;
  background: linear-gradient(-38deg, transparent 50%, rgba(255, 255, 255, 0.5) 60%, transparent 70%);
  background-size: 200% 100%;
  animation: shine 2s infinite;
  animation-delay: 4s;
  animation-timing-function: linear;
  transition: transform 0.4s cubic-bezier(0.722, 0.057, 0.018, 1.982);
}

@keyframes shine {
  0% {
    background-position-x: 100%;
  }
  50% {
    background-position-x: -100%;
  }
  100% {
    background-position-x: -100%;
  }
}
.c-mobile-menu {
  padding-top: 50px;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 1500;
  padding-bottom: 0;
  background-color: #00A8ED;
  transition: height 0.1s ease;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu {
    display: none;
  }
}
.c-mobile-menu__inner {
  height: 100%;
  overflow-y: auto;
}
.c-mobile-menu__button {
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: #fff;
  transform: translateY(-50%);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  width: 25px;
  height: 25px;
  border-radius: 99%;
}
@media screen and (min-width: 960px) {
  .c-mobile-menu__button {
    display: none;
  }
}
.c-mobile-menu__button span {
  background-color: #0360E5;
  width: 25px;
  height: 2px;
  display: block;
  margin-bottom: 5px;
  transition: transform 0.7s;
}
.c-mobile-menu__button span:last-child {
  margin-bottom: 0;
}
.c-mobile-menu__button p {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.c-mobile-menu__cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.c-mobile-menu__main {
  padding: 30px 0 20px;
  perspective: 2000px;
  transform-style: preserve-3d;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-mobile-menu__item {
  display: block;
  transform: translate3d(0, 0, -1000px);
  opacity: 0;
}
.c-mobile-menu__item a {
  display: block;
  padding: 1em 1em 1em 2.5em;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 600;
  position: relative;
  border-bottom: 1px dotted #fff;
}
.c-mobile-menu__item a:hover {
  color: #FAC03C;
  background-color: #fff;
}
.c-mobile-menu__item a:hover::after {
  background-image: url("../images/arrow-right.svg");
}
.c-mobile-menu__item a::after {
  content: "";
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
}
.c-mobile-menu__contact-button {
  margin: 0 auto 30px;
  width: 95%;
}

.is-menu-open .c-mobile-menu {
  height: 100%;
}
.is-menu-open .c-mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.is-menu-open .c-mobile-menu__item {
  transform: none;
  opacity: 1;
}
.is-menu-open .c-mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.is-menu-open .c-mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.is-menu-open .c-mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.is-menu-open .c-mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.is-menu-open .c-mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.is-menu-open .c-mobile-menu__item:nth-child(6) {
  transition-delay: 0.42s;
}
.is-menu-open .c-mobile-menu__item:nth-child(7) {
  transition-delay: 0.49s;
}
.is-menu-open .c-mobile-menu__item:nth-child(8) {
  transition-delay: 0.56s;
}
.is-menu-open .c-mobile-menu__item:nth-child(9) {
  transition-delay: 0.63s;
}
.is-menu-open .c-mobile-menu__item:nth-child(10) {
  transition-delay: 0.7s;
}
.is-menu-open .c-mobile-menu__item:nth-child(11) {
  transition-delay: 0.77s;
}
.is-menu-open .c-mobile-menu__item:nth-child(12) {
  transition-delay: 0.84s;
}
.is-menu-open .c-mobile-menu__item:nth-child(13) {
  transition-delay: 0.91s;
}
.is-menu-open .c-mobile-menu__item:nth-child(14) {
  transition-delay: 0.98s;
}
.is-menu-open .c-mobile-menu__item:nth-child(15) {
  transition-delay: 1.05s;
}
.is-menu-open .c-mobile-menu__item:nth-child(16) {
  transition-delay: 1.12s;
}
.is-menu-open .c-mobile-menu__item:nth-child(17) {
  transition-delay: 1.19s;
}
.is-menu-open .c-mobile-menu__item:nth-child(18) {
  transition-delay: 1.26s;
}
.is-menu-open .c-mobile-menu__item:nth-child(19) {
  transition-delay: 1.33s;
}
.is-menu-open .c-mobile-menu__item:nth-child(20) {
  transition-delay: 1.4s;
}
.is-menu-open .c-mobile-menu__button > span {
  background-color: #0360E5;
}
.is-menu-open .c-mobile-menu__button > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(7px) rotate(135deg);
}
.is-menu-open .c-mobile-menu__button > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-15px) scaleX(0);
}
.is-menu-open .c-mobile-menu__button > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-7px) rotate(-135deg);
}

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

.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__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-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-prev, .c-post-links__link-next {
  width: 50%;
}
.c-post-links__link-prev > a, .c-post-links__link-next > a {
  font-size: 14px;
  padding: 5px 5px 5px;
  text-decoration: none;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  flex-wrap: wrap;
  height: 30px;
}

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

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

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

.c-section-title {
  display: flex;
  justify-content: center;
  text-align: center;
}
.c-section-title h2 {
  display: inline-block;
  font-size: clamp(23px, 4vw, 45px);
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.c-section-title h2 em {
  font-style: normal;
  color: #EF857D;
  font-size: 1.1em;
}
.c-section-title--white {
  color: #fff;
}
.c-section-title--white em {
  color: #FFDB23 !important;
}

.c-section-title-02 {
  text-align: center;
  margin-bottom: 2em;
}
.c-section-title-02 h2 {
  display: inline-block;
  font-size: clamp(30px, 5vw, 45px);
  letter-spacing: 0.1px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
.c-section-title-02 p {
  font-size: clamp(15px, 2vw, 16px);
  font-weight: 600;
  color: #0360E5;
}

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

.c-content-title {
  padding: 10px;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  background-color: #FAC03C;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  position: relative;
  margin-bottom: 1.5em;
}
.c-content-title:before {
  position: absolute;
  display: block;
  pointer-events: none;
  content: "";
  bottom: calc(2px - 1.5em);
  left: 1.5em;
  width: 0;
  height: 0;
  visibility: visible;
  border: 0.75em solid transparent;
  border-top-color: #FAC03C;
}

/*
　背景カラー
================================*/
.c-title-bg {
  margin-bottom: 30px;
  padding: 15px;
  background: #0360E5;
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}
.c-title-bg h2,
.c-title-bg h3 {
  font-size: clamp(19px, 3vw, 40px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
.c-title-bg h2 em,
.c-title-bg h3 em {
  font-style: normal;
  color: #FAC03C;
  font-size: 1.1em;
}
.c-title-bg::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 0.8rem 0 0.8rem;
  z-index: 10;
  border-color: #0360E5 transparent transparent transparent;
}

.c-feature__content {
  overflow: hidden;
}
.c-feature__text {
  font-size: clamp(16px, 2vw, 17px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: justify;
  color: #535353;
}
@media screen and (min-width: 960px) {
  .c-feature__text {
    text-align: center;
  }
}
.c-feature__text em {
  font-size: 1.1em;
  color: #333;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  display: inline-block;
  width: 100%;
  line-height: 1.2;
}
.c-feature__button {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.c-feature__block {
  margin-top: 20px;
  gap: 20px;
  padding: 10px;
  border-radius: 10px;
}
.c-feature__block:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 820px) {
  .c-feature__block {
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    padding: 20px 30px;
  }
}
@media screen and (min-width: 820px) {
  .c-feature__block--row-reverse {
    flex-direction: row-reverse;
  }
}
.c-feature__block__image {
  flex-basis: 36%;
}
.c-feature__block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  max-width: 170px;
  margin: 0 auto;
}
.c-feature__block__title > p {
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 600;
}
.c-feature__block__title h3 {
  position: relative;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: clamp(18px, 3vw, 28px);
}
.c-feature__block__title h3::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -0.5em;
  height: 1em;
  width: 3px;
  background-color: #00A8ED;
}
.c-feature__block__text {
  flex: 1;
  font-size: clamp(15px, 2vw, 17px);
  padding: 1em 0;
}
@media screen and (min-width: 600px) {
  .c-feature__block__text {
    padding: 1em;
  }
}
.c-feature__block__text p {
  text-align: justify;
}

.c-cta__button {
  justify-content: center;
  gap: 50px 30px;
  align-items: center;
}

.c-flow {
  margin: 0 auto;
  width: 95%;
  max-width: 1400px;
}
.c-flow__number {
  position: absolute;
  left: 10px;
  top: 30px;
  line-height: 1;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: flex;
}
.c-flow__number span {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2.5em;
  line-height: 0;
}
.c-flow__wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
  padding-top: 50px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.c-flow__wrapper::-webkit-scrollbar {
  height: 8px;
}
.c-flow__wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.c-flow__wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.c-flow__item {
  scroll-snap-align: start;
  width: 300px;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  box-shadow: 5px 5px 5px 0 rgba(48, 38, 36, 0.1);
  height: auto;
  padding: 3.2rem 1.5rem 1.7rem 1.5rem;
  box-sizing: border-box;
  border-radius: 32px;
}
.c-flow__item:not(:last-of-type):after {
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #0360E5;
  border-width: 0.8rem 0 0.8rem 1.2rem;
}
.c-flow__image {
  max-width: 100px;
  margin: 0 auto;
  width: 100%;
}
.c-flow__text {
  padding-top: 20px;
}
.c-flow__text h3 {
  font-size: 19px;
  text-align: center;
  color: #EF857D;
  font-weight: 900;
  margin-bottom: 10px;
}
.c-flow__text p {
  font-size: 15px;
  color: #535353;
}
.c-flow__note {
  font-size: 15px;
  color: #909090;
  display: flex;
  align-items: flex-start;
  gap: 6px 3px;
  line-height: 1.3;
  margin-top: 10px;
}
.c-flow__note::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  background-image: url("../images/icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.c-flow__scroll {
  font-size: 15px;
  color: #909090;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.c-flow__scroll::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #909090;
  margin-left: 5px;
}

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

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

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

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

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

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

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

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

.wpcf7-spinner {
  display: none;
}

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

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

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

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

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

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

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

.c-news-content__lead {
  display: flex;
  justify-content: center;
}
.c-news-content__lists {
  gap: 1%;
  padding: 0;
}
.c-news-content__list {
  flex-basis: 49%;
  margin-bottom: 20px;
  list-style: none;
}
@media screen and (min-width: 960px) {
  .c-news-content__list {
    flex-basis: 32%;
    margin-bottom: 0;
  }
}
.c-news-content__list a {
  text-decoration: none;
  color: #333;
}
.c-news-content__desc-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.c-news-content__category {
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #fff;
}
.c-news-content__category--news {
  background-color: #0360E5;
  padding: 2px 5px;
  border-radius: 5px;
  border: 0.3px solid #fff;
}
.c-news-content__category--column {
  background-color: #00A8ED;
  padding: 2px 5px;
  border-radius: 5px;
  border: 0.3px solid #fff;
}
.c-news-content__category--production {
  background-color: #FAC03C;
  padding: 2px 5px;
  border-radius: 5px;
  border: 0.3px solid #fff;
}
.c-news-content__desc {
  padding: 10px;
}
.c-news-content__image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  border: 1px solid #535353;
  border-radius: 10px;
}
.c-news-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.c-news-content__title {
  font-weight: 600;
}
.c-news-content__button {
  justify-content: center;
  gap: 1em;
}
.c-news-content__button a {
  border: 1px solid #0360E5;
  padding: 13px 35px;
  border-radius: 50px;
  color: #0360E5;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
.c-news-content__button a:hover {
  background-color: #efefef;
}
.c-news-content__button a::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 15px;
  width: 1.5em;
  height: 1.5em;
  background-image: url("../images/arrow-circle-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.c-news-content__notinfo {
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.p-profile-wrapper {
  justify-content: space-between;
  gap: 20px;
}

.p-profile-article {
  flex: 1;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .p-profile-article {
    margin-bottom: 0;
  }
}
.p-profile-article::before {
  content: "";
  height: 3px;
  width: calc(100% + 2px);
  display: block;
  background: #161c21;
  position: absolute;
  top: -1px;
  left: -1px;
}
.p-profile-article__header {
  padding: 2em 20px;
  color: #333;
}
@media screen and (min-width: 960px) {
  .p-profile-article__header {
    padding: 2em;
  }
}
.p-profile-article__header img {
  display: inline-block;
  width: 18px;
}
.p-profile-article__body {
  background-color: #fff;
  border-radius: 10px;
  padding: 2em 20px;
  min-height: 300px;
}
@media screen and (min-width: 960px) {
  .p-profile-article__body {
    padding: 2em;
  }
}
.p-profile-article__body h4 {
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.p-profile-article__body h4::before {
  content: "";
  height: 1em;
  width: 3px;
  margin-right: 5px;
  background-color: #0360E5;
}
.p-profile-article__body h5 {
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
.p-profile-article__body h5::before {
  content: "";
  height: 1em;
  width: 2px;
  background-color: #0360E5;
}
.p-profile-article__body h6 {
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
.p-profile-article__body h6::before {
  content: "";
  height: 1em;
  width: 2px;
  background-color: #0360E5;
}
.p-profile-article__body p,
.p-profile-article__body img {
  margin-bottom: 20px;
}
.p-profile-article__body table {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-profile-article__body ul {
  padding-left: 0.5em;
  list-style-position: inside;
  margin-bottom: 20px;
  list-style: none;
}
.p-profile-article__body ul li {
  display: flex;
  align-items: baseline;
}
.p-profile-article__body ul li::before {
  content: "";
  background-image: url("../images/icon_check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.5em;
  height: 0.5em;
  margin-right: 5px;
}
.p-profile-article__block:last-child {
  margin-bottom: 0 !important;
}
.p-profile-article__date {
  line-height: 1.2;
  font-weight: 900;
}
.p-profile-article__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-profile-article__category-item {
  border: 1px solid #ddd;
  padding: 2px 3px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}
.p-profile-article__category-item:hover {
  opacity: 0.7;
}
.p-profile-article__title {
  line-height: 1.4;
  font-size: clamp(19px, 2.5vw, 29px);
}
.p-profile-article__thumb {
  width: 100%;
  margin-bottom: 2em;
  aspect-ratio: 9/5;
}
.p-profile-article__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.p-profile-sidebar {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-profile-sidebar {
    width: 27%;
  }
}
.p-profile-sidebar__inner {
  position: sticky;
  top: 130px;
}
.p-profile-sidebar__title {
  background-color: #000;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.p-profile-meta {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 2em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-profile-meta {
    flex-direction: row;
    padding-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-profile-meta {
    flex-direction: column;
  }
}
.p-profile-meta__thumb {
  margin: 0 auto;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .p-profile-meta__thumb {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-profile-meta__thumb {
    margin-bottom: 0;
    padding: 40px 0 10px;
  }
}
.p-profile-meta__thumb img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #ddd;
}
.p-profile-meta__title {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  text-align: center;
}
.p-profile-meta__body {
  position: relative;
  padding: 60px 5% 1em;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .p-profile-meta__body {
    flex: 1;
    min-height: -moz-max-content;
    min-height: max-content;
    height: auto;
    padding: 1em 5%;
  }
}
@media screen and (min-width: 960px) {
  .p-profile-meta__body {
    flex: 1;
    min-height: -moz-max-content;
    min-height: max-content;
    height: auto;
    padding: 60px 5% 1em;
  }
}
.p-profile-meta__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 200px;
  background: rgb(253, 246, 241);
  border-radius: 100% 100% 0 0;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 600px) {
  .p-profile-meta__body::before {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .p-profile-meta__body::before {
    display: block;
  }
}
.p-profile-meta__body::after {
  content: "";
  position: absolute;
  inset: 160px 0 0 0;
  background: -webkit-linear-gradient(0deg, rgb(253, 246, 241) 0%, rgb(253, 246, 241) 51.39%, rgb(253, 246, 241) 100%);
  z-index: 0;
}
@media screen and (min-width: 600px) {
  .p-profile-meta__body::after {
    inset: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-profile-meta__body::after {
    inset: 160px 0 0 0;
  }
}
.p-profile-meta__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.p-profile-meta__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-profile-meta__item dt {
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 16px);
  width: 50px;
}
.p-profile-meta__item dd {
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 16px);
  text-align: right;
  flex: 1;
  line-height: 1.3;
}

.c-city {
  position: relative;
  overflow: hidden;
}
.c-city__catch {
  position: relative;
  z-index: 100;
  pointer-events: none;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  height: 100%;
}
.c-city__catch p {
  font-weight: 900;
  font-size: clamp(25px, 3vw, 50px);
  letter-spacing: 3px;
  line-height: 1.3;
  color: #333;
  text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
}
.c-city__catch p em {
  font-style: normal;
  font-size: 1.2em;
  color: #ef857d;
}
.c-city__inner {
  position: relative;
  height: 60vh;
  background: linear-gradient(#a6d8ff, #fff, #fff);
  overflow-x: hidden;
}
@media screen and (min-width: 600px) {
  .c-city__inner {
    height: 70vh;
  }
}

.hero__checkbox {
  z-index: 200;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 85px;
  height: 32px;
  border-radius: 25px;
  background: linear-gradient(0deg, #d8d8d8, #cccccc);
  border-top: 0.02em solid #ececec;
  border-bottom: 0.02em solid #ececec;
}
.hero__checkbox-inner {
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  bottom: 6px;
  border-radius: 20px;
  background: linear-gradient(0deg, #a5a5a5, #717171);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}
.hero__checkbox-toggle {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(0deg, #ccc, #e4e4e4);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-top: 0.04em solid #ececec;
  border-bottom: 0.01em solid #ececec;
  transition: 0.5s;
  cursor: pointer;
}
.hero__checkbox-toggle::before {
  content: "";
  background-image: url("../images/icon-nosound.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 4px;
  left: 4px;
}

.js-sun {
  position: absolute;
  top: 100px;
  left: 55%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 50px #fff;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (min-width: 960px) {
  .js-sun {
    width: 100px;
    height: 100px;
  }
}

.is-dark .c-city__inner {
  background: #222833;
}
.is-dark .c-city__catch {
  display: flex;
}
.is-dark .js-sun {
  left: 45%;
  box-shadow: 0 0 0 #fff;
}
.is-dark .js-sun::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: #222833;
  border-radius: 50%;
}

.is-sound .hero__checkbox-toggle {
  left: 47px;
}
.is-sound .hero__checkbox-toggle::before {
  content: "";
  background-image: url("../images/icon-sound.svg");
}

.is-sound .hero__checkbox-inner {
  background: linear-gradient(0deg, #ffeb57, #d7c118);
}

.c-city__moreover {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 280px;
  background: url("../images/city__moreover.png");
  background-size: 1500px;
  background-repeat: repeat-x;
  z-index: 1;
  animation-name: scroll-bg;
  animation-duration: 300s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.c-city__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 280px;
  background: url("../images/city__bg.svg");
  background-size: 1500px;
  background-repeat: repeat-x;
  z-index: 1;
  animation-name: scroll-bg;
  animation-duration: 300s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes scroll-bg {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -1500px;
  }
}
@keyframes slide-x {
  0% {
    transform: translateX(var(--start-offset)) rotateY(var(--rotate, 0));
  }
  100% {
    transform: translateX(var(--distance)) rotateY(var(--rotate, 0));
  }
}
.c-city__car,
.c-city__track,
.c-city__kansen,
.c-city__shiden {
  position: absolute;
  animation-name: slide-x;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.c-city__car {
  width: 110px;
  height: auto;
  z-index: 15;
}

.c-city__track {
  width: 150px;
  height: auto;
  z-index: 20;
}

.c-city__kansen {
  width: 450px;
  height: auto;
}

.c-city__shiden {
  width: 140px;
  height: auto;
  z-index: 10;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
　お役に立てます
================================*/
.p-usecase {
  overflow: hidden;
  padding: 0;
  justify-content: space-between;
}
.p-usecase__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 20px 15px 10px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 8px;
}
.p-usecase__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 820px) {
  .p-usecase__item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 820px) {
  .p-usecase__item {
    width: 48.5%;
    padding: 16px 20px;
  }
}
@media screen and (min-width: 820px) {
  .p-usecase__item:nth-child(n+3) {
    margin-top: 20px;
  }
}
.p-usecase__image {
  margin-right: 15px;
  width: clamp(60px, 10.15625vw, 78px);
  height: auto;
  font-size: 0;
}
.p-usecase__image img {
  width: 100%;
}
@media screen and (min-width: 820px) {
  .p-usecase__image {
    margin-right: 25px;
    width: clamp(60px, 6.8421052632vw, 78px);
  }
}
.p-usecase__text {
  font-size: clamp(17px, 2.6041666667vw, 20px);
  font-weight: bold;
  line-height: 1.4;
}
.p-usecase__text span {
  font-size: clamp(23px, 3.6458333333vw, 28px);
  color: #0360E5;
  font-weight: 900;
}
@media screen and (min-width: 820px) {
  .p-usecase__text span {
    font-size: clamp(25px, 2.8070175439vw, 32px);
  }
}
@media screen and (min-width: 820px) {
  .p-usecase__text {
    font-size: clamp(19px, 1.9298245614vw, 22px);
    line-height: 1.4;
  }
}

/*
　プロフィール
================================*/
.p-profile-intro {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .p-profile-intro {
    flex-direction: row;
    gap: 20px;
  }
}
.p-profile-intro__thumb {
  margin: 0 auto;
}
.p-profile-intro__thumb img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #ddd;
}
.p-profile-intro__title {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  text-align: center;
}
.p-profile-intro__body {
  position: relative;
  padding: 20px 5% 20px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .p-profile-intro__body {
    flex: 1;
    min-height: -moz-max-content;
    min-height: max-content;
    height: auto;
    padding: 1em 2%;
  }
}
.p-profile-intro__button {
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p-profile-intro__button {
    text-align: left;
  }
}

.p-trouble {
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  gap: 20px 30px;
}
.p-trouble__image {
  flex-basis: 40%;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-trouble__image {
    max-width: none;
  }
}
.p-trouble__text {
  margin-top: 30px;
  flex: 1;
}
.p-trouble__list {
  margin: 0;
}
.p-trouble__item {
  background-color: #fff;
  padding: 15px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.p-trouble__title {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  font-size: 1.1em;
}
.p-trouble__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ef857d;
  background-image: url("../images/icon-checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.814em 0.5125em;
}
.p-trouble__desc {
  margin-top: 6px;
  padding-left: 30px;
  font-weight: normal;
  line-height: 1.6;
}
.p-trouble__note {
  margin-top: 2em;
  flex-basis: 100%;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (min-width: 600px) {
  .p-trouble__note {
    line-height: 1.4;
  }
}
.p-trouble__note em {
  font-style: normal;
  color: #0360E5;
  font-size: clamp(16px, 2.5vw, 25px);
}
.p-trouble__note span {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  color: #666;
  margin-top: 1em;
  font-size: clamp(15px, 2vw, 17px);
}

.p-solution__list {
  list-style: none;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .p-solution__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-inline: auto;
  }
}
.p-solution__item {
  background-color: #f5f5f5;
  border-radius: 32px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .p-solution__item {
    padding: 16px 25px;
  }
}
.p-solution__item h3 {
  color: #3b5bdb;
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.p-solution__item--01 h3 {
  color: #3b5bdb;
}
.p-solution__item--01 .p-solution__number span {
  -webkit-text-stroke-color: #3b5bdb;
}
.p-solution__item--02 h3 {
  color: #5130b0;
}
.p-solution__item--02 .p-solution__number span {
  -webkit-text-stroke-color: #5130b0;
}
.p-solution__item--03 h3 {
  color: #e86c00;
}
.p-solution__item--03 .p-solution__number span {
  -webkit-text-stroke-color: #e86c00;
}
.p-solution__item--04 h3 {
  color: #ab3400;
}
.p-solution__item--04 .p-solution__number span {
  -webkit-text-stroke-color: #ab3400;
}
.p-solution__number span {
  color: rgba(0, 0, 0, 0);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  height: auto;
  letter-spacing: 0em;
  line-height: 1.4;
  text-align: center;
  width: auto;
  max-width: 100%;
  justify-content: center;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #5130b0;
}
.p-solution__text {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  .p-solution__text {
    text-align: center;
  }
}
.p-solution__text em {
  font-size: 1.1em;
  color: #0360E5;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
}

.p-service__list {
  list-style: none;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.p-service__item {
  background-color: #f5f5f5;
  border-radius: 32px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .p-service__item {
    padding: 16px 25px;
  }
}
.p-service__item h3 {
  color: #3b5bdb;
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.p-service__item small {
  color: #535353;
}
.p-service__item--01 h3 {
  color: #3b5bdb;
}
.p-service__item--01 .p-service__number span {
  -webkit-text-stroke-color: #3b5bdb;
}
.p-service__item--02 h3 {
  color: #5130b0;
}
.p-service__item--02 .p-service__number span {
  -webkit-text-stroke-color: #5130b0;
}
.p-service__item--03 h3 {
  color: #e86c00;
}
.p-service__item--03 .p-service__number span {
  -webkit-text-stroke-color: #e86c00;
}
.p-service__item--04 h3 {
  color: #ab3400;
}
.p-service__item--04 .p-service__number span {
  -webkit-text-stroke-color: #ab3400;
}
.p-service__number span {
  color: rgba(0, 0, 0, 0);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  height: auto;
  letter-spacing: 0em;
  line-height: 1.4;
  text-align: center;
  width: auto;
  max-width: 100%;
  justify-content: center;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #5130b0;
}
.p-service__js-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0px 8px 12px -2px rgba(0, 0, 0, 0.16);
  border-radius: 32px;
}
.p-service__js-content__inner {
  background: linear-gradient(#fff, #fff) padding-box transparent;
  border: 6px solid transparent;
  border-radius: 32px;
  padding: 40px 4px;
}
@media screen and (min-width: 480px) {
  .p-service__js-content__inner {
    padding: 40px 10px;
  }
}
.p-service__js-content__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #facc15, #ff6ec4);
  border-radius: 32px;
}
.p-service__js-content__pointer {
  width: 5rem;
  aspect-ratio: 1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  offset-path: border-box;
  offset-anchor: 100% 50%;
  animation: trail 8s infinite linear;
}
.p-service__js-content__pointer:nth-of-type(2) {
  animation-delay: -4s;
}
@keyframes trail {
  100% {
    offset-distance: 100%;
  }
}
.p-service__js-head {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .p-service__js-head {
    margin-bottom: 30px;
  }
}
.p-service__js-label {
  display: inline-block;
  font-size: clamp(17px, 3vw, 24px);
  color: #fff;
  background-color: #FAC03C;
  border-radius: 30px;
  padding: 6px 30px;
  font-weight: 900;
  position: relative;
  line-height: 1.2;
  text-align: center;
}
.p-service__js-label::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 0.8rem 0 0.8rem;
  z-index: 10;
  border-color: #FAC03C transparent transparent transparent;
}
.p-service__js-title {
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .p-service__js-title {
    text-align: center;
  }
}
.p-service__js-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 5px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
@media screen and (min-width: 600px) {
  .p-service__js-list {
    gap: 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-service__js-list {
    gap: 32px;
  }
}
.p-service__js-item {
  background-color: rgba(224, 224, 224, 0.2);
  border: 3px solid rgba(250, 204, 21, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-service__js-item:nth-child(1) {
  animation-delay: 0s;
}
.p-service__js-item:nth-child(2) {
  animation-delay: 0.2s;
}
.p-service__js-item:nth-child(3) {
  animation-delay: 0.4s;
}
.p-service__js-item:nth-child(4) {
  animation-delay: 0.6s;
}
.p-service__js-item:nth-child(5) {
  animation-delay: 0.8s;
}
.p-service__js-item:nth-child(6) {
  animation-delay: 1s;
}
.p-service__js-item:nth-child(7) {
  animation-delay: 1.2s;
}
.p-service__js-item:nth-child(8) {
  animation-delay: 1.4s;
}
.p-service__js-item:nth-child(9) {
  animation-delay: 1.6s;
}
.p-service__js-item:nth-child(10) {
  animation-delay: 1.8s;
}
.p-service__js-icon {
  height: 50px;
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
}
.p-service__js-name {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}
.p-service__text {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 800;
  display: flex;
  justify-content: center;
  text-align: justify;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .p-service__text {
    text-align: center;
  }
}
.p-service__text em {
  font-size: 1.2em;
  color: #0360E5;
  font-style: normal;
}

.p-price-plan {
  padding-top: 20px;
}
.p-price-plan__text {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  align-items: center;
}
.p-price-plan__text h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
  margin-bottom: 1em;
  font-weight: 800;
  text-align: center;
}
.p-price-plan__text h3 em {
  color: #0360E5;
}
.p-price-plan__text h4 {
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.6;
  font-weight: 800;
}
@media screen and (min-width: 960px) {
  .p-price-plan__text h4 {
    text-align: center;
  }
}
.p-price-plan__text p {
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 600;
}
.p-price-plan__inner {
  max-width: 960px;
  margin: 0 auto;
}
.p-price-plan__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .p-price-plan__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
.p-price-plan__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .p-price-plan__list {
    gap: 24px;
  }
}
.p-price-plan__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 960px) {
  .p-price-plan__item {
    padding: 32px 40px;
  }
}
.p-price-plan__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.p-price-plan__item--01 {
  border-left: 6px solid #007bff;
}
.p-price-plan__item--02 {
  border-left: 6px solid #5130b0;
}
.p-price-plan__item--03 {
  border-left: 6px solid #e86c00;
}
.p-price-plan__item--04 {
  border-left: 6px solid #ab3400;
}
.p-price-plan__item--05 {
  border-left: 6px solid #FAC03C;
}
.p-price-plan__item--06 {
  border-left: 6px solid #000;
}
.p-price-plan__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.p-price-plan__name {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}
.p-price-plan__price {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.p-price-plan__body__text {
  font-size: clamp(15px, 3vw, 17px);
  font-weight: 600;
  color: #555;
  line-height: 1.8;
}
.p-price-plan__body__list {
  padding-left: 10px;
  list-style: disc;
}
.p-price-plan__body__list li {
  font-size: clamp(15px, 3vw, 17px);
  font-weight: 600;
  color: #555;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.p-price-plan__note {
  margin-top: 3em;
}/*# sourceMappingURL=layout.css.map */