@charset "UTF-8";
/***************************************************************
*
* CSS
* site name: RUC
*
***************************************************************/
/*Google font*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*--------------------------------------------------------
*
* 変数定義 import
*
--------------------------------------------------------*/
/*--------------------------------------------------------
*
* 変数定義
*
--------------------------------------------------------*/
/*カラー*/
/*メインビジュアル用の背景色（グラデーション）*/
/* 余白 */
/* 角丸 */
/* レイアウト transform */
/* アニメーション */
/*WEBフォント（フォントファミリー）*/
/*--------------------------------------------------------
*
* @MIXIN
*
--------------------------------------------------------*/
/*--------------------------------------------------------
*
* 矢印 arrow
*
--------------------------------------------------------*/
/*丸の中に入った矢印*/
/*--------------------------------------------------------
ローディング サンプル
--------------------------------------------------------*/
#sample-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background-color: #29baba;
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
  transition: opacity 0.6s ease-in-out, background-color 0.6s ease-in-out;
}
#sample-loader.variant-home {
  background-color: #29baba;
}
#sample-loader.variant-default {
  background-color: #29baba;
}
#sample-loader.is-complete {
  opacity: 0;
  pointer-events: none;
}

.sample-loader__spinner {
  /* リッチ見え：二重リング + ハイライト周回 + パルス */
  --size: 100px;
  --thick: 10px;
  --c1: rgba(255, 255, 255, 0.95);
  --c2: rgba(255, 255, 255, 0.2);
  width: var(--size);
  height: var(--size);
  position: relative;
  border-radius: 50%;
  /* fallback（mask非対応でも最低限回る） */
  border: var(--thick) solid rgba(255, 255, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: sample-spin 1.05s linear infinite;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}
@supports (-webkit-mask: none) or (mask: none) {
  .sample-loader__spinner {
    border: none;
    background: conic-gradient(from 20deg, transparent 0 8%, var(--c1) 8% 38%, var(--c2) 38% 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--thick)), #000 calc(100% - var(--thick) + 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - var(--thick)), #000 calc(100% - var(--thick) + 1px));
  }
}
.sample-loader__spinner::before {
  content: "";
  position: absolute;
  inset: calc(var(--thick) * 0.85);
  border-radius: 50%;
  opacity: 0.9;
  background: conic-gradient(from 200deg, transparent 0 55%, rgba(0, 0, 0, 0.25) 55% 85%, rgba(255, 255, 255, 0.25) 85% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--thick) * 0.7), #000 calc(100% - var(--thick) * 0.7 + 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - var(--thick) * 0.7), #000 calc(100% - var(--thick) * 0.7 + 1px));
  animation: sample-spin-rev 1.7s linear infinite;
  filter: blur(0.2px);
}
.sample-loader__spinner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 55%);
  mix-blend-mode: screen;
  animation: sample-orbit 1.05s linear infinite;
}

@keyframes sample-spin {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes sample-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes sample-orbit {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sample-loader__spinner,
  .sample-loader__spinner::before,
  .sample-loader__spinner::after {
    animation: none !important;
  }
}
/*--------------------------------------------------------
全体の親要素 初期化
--------------------------------------------------------*/
#body_wrap {
  font-family: "Noto Sans JP", sans-serif;
}
#body_wrap.home {
  background-color: #f8f8f8;
}
#body_wrap.home .post_content {
  padding: 0;
}

#body_wrap.page-template-sub-page {
  background-color: #f8f8f8;
}

/* TOP コンテンツ外枠 余白 */
.home .archive-title-wrap,
.page-template .archive-title-wrap {
  display: none;
}
.home #content,
.page-template #content {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  z-index: 1;
}
.home .l-article,
.page-template .l-article {
  max-width: 100%;
}
.home .swell-block-button a,
.page-template .swell-block-button a {
  padding-left: 16px;
  padding-right: 16px;
  color: white;
}

/* フルワイド サイト幅 padding */
.swell-block-fullWide__inner.l-container,
.l-inner {
  padding: 0 64px;
}
.swell-block-fullWide__inner.l-container .l-inset,
.l-inner .l-inset {
  padding: 128px 64px 64px;
  border-radius: 8px;
}
@media screen and (max-width: 599px) {
  .swell-block-fullWide__inner.l-container .l-inset,
  .l-inner .l-inset {
    padding: 48px 16px;
  }
}
@media (min-width: 1600px) {
  .swell-block-fullWide__inner.l-container,
  .l-inner {
    padding: 0 96px;
  }
}

/* 高さ100vhのセクション */
.full-height-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*--------------------------------------------------------------
ボタン
--------------------------------------------------------------*/
.btn-simple a {
  position: relative;
  color: #29baba;
  font-weight: 500;
  transition: 0.3s all;
}
.btn-simple a::before {
  position: absolute;
  content: "";
  top: calc(50% + 1px);
  right: -24px;
  transform: translate(0, -50%);
  transition: 0.3s ease-in-out;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon/arrow_circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.btn-simple a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  display: block;
  background: #29baba;
  width: 100%;
  height: 2px;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.btn-simple a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* インスタグラム用ボタン */
#sb_instagram .sb_instagram_header {
  display: none;
}
#sb_instagram #sbi_images {
  margin-bottom: 24px;
  padding: 0;
  gap: 24px !important;
}
#sb_instagram #sbi_load {
  /* もっとみるボタン */
}
#sb_instagram #sbi_load .sbi_load_btn {
  width: 256px;
  padding: 16px;
  border-radius: 4px;
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
  box-shadow: none;
}
#sb_instagram .sbi_follow_btn {
  /* Instagramを見にいくボタン */
}
#sb_instagram .sbi_follow_btn a {
  width: 256px;
  margin-top: 0;
  padding: 16px;
  border-radius: 4px;
}
#sb_instagram .sbi_follow_btn a:hover {
  box-shadow: none;
}
#sb_instagram .sbi_photo img {
  border-radius: 8px;
}
#sb_instagram span.sbi_btn_text,
#sb_instagram .sbi_follow_btn a {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: bold;
}

/* 無料体験レッスンのフォーム遷移ボタン */
.btn-free-lesson a {
  font-weight: 500;
}

/*--------------------------------------------------------------
カラム
--------------------------------------------------------------*/
.post_content .l-wrap {
  position: relative;
  margin-bottom: 0 !important;
  padding: 96px 0;
}
@media screen and (max-width: 959px) {
  .post_content .l-wrap {
    padding: 48px 0;
  }
}
.post_content .l-wrap > div {
  padding: 0 64px;
}
@media screen and (max-width: 959px) {
  .post_content .l-wrap > div {
    padding: 0 48px;
  }
}
@media screen and (max-width: 599px) {
  .post_content .l-wrap > div {
    padding: 0 16px;
  }
}

.space-bottom {
  padding-bottom: 64px;
}

.l-contents {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}
.l-contents.small {
  max-width: 900px;
}

.m-contents {
  max-width: 1024px;
  margin: 0 auto;
}

.s-contents {
  max-width: 880px !important;
  margin: 0 auto;
}

.side-nospace .swell-block-fullWide__inner.l-container {
  padding: 0 !important;
}

/* 2カラム 枠付き */
.two-column-frame {
  padding: 20px;
  gap: 0;
  border: 1px solid #29baba;
  border-radius: 5px;
}
.two-column-frame p {
  font-size: 14px;
}

/*--------------------------------------------------------------
2カラム
--------------------------------------------------------------*/
.simple-column-a {
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 599px) {
  .simple-column-a {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 599px) {
  .simple-column-a .column-heading {
    margin-left: 0 !important;
    margin-bottom: 16px !important;
  }
}
.simple-column-a .column-txt {
  max-width: 704px;
  width: calc(50% - 48px);
}
@media (max-width: 767px) {
  .simple-column-a .column-txt {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .simple-column-a .column-txt {
    width: auto;
  }
}
.simple-column-a .column-img {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 599px) {
  .simple-column-a .column-img {
    position: relative;
  }
}
@media screen and (max-width: 599px) {
  .simple-column-a:nth-of-type(odd)::before {
    right: -16px;
    height: calc(100% + 32px);
  }
}
.simple-column-a:nth-of-type(odd) .column-txt {
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .simple-column-a:nth-of-type(odd) .column-txt {
    margin: 0 0 0 var(--swl-clmn-mrgn--x);
  }
}
.simple-column-a:nth-of-type(odd) .column-copy {
  margin-right: -12px;
}
@media screen and (max-width: 599px) {
  .simple-column-a:nth-of-type(odd) .column-copy {
    margin-right: 0;
  }
}
.simple-column-a:nth-of-type(odd) .column-img {
  left: 0;
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .simple-column-a:nth-of-type(odd) .column-img {
    left: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 599px) {
  .simple-column-a:nth-of-type(even)::before {
    left: -16px;
  }
}
@media screen and (max-width: 599px) {
  .simple-column-a:nth-of-type(even) .swell-block-columns > div {
    flex-direction: column-reverse;
  }
}
.simple-column-a:nth-of-type(even) .column-txt {
  margin-left: var(--swl-clmn-mrgn--x);
}
.simple-column-a:nth-of-type(even) .column-img {
  right: 0;
}

/*--------------------------------------------------------------
テキスト
--------------------------------------------------------------*/
.price-txt {
  margin-top: -5px !important;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.price-txt:last-child {
  border: none;
}

.large-txt {
  padding-bottom: 6px;
  line-height: 1;
  font-size: 32px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.font-pop {
  letter-spacing: clamp(2px, 1vw, 10px);
}

.small-txt {
  font-size: 14px;
}

.txt-center {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .txt-center {
    text-align: left;
  }
}

.sub-heading {
  display: inline-block;
  margin-bottom: 8px !important;
  padding: 8px 16px 6px;
  line-height: 1;
  color: #29baba;
  border: 1px solid #29baba;
  border-radius: 2.6666666667px;
  letter-spacing: 4px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

/* 行間広めのリード文 */
.read-txt {
  line-height: 2;
  letter-spacing: 2px;
  font-size: clamp(16px, 1vw, 20px);
}

/* 下部マージン大 */
.bottom-margin-large {
  margin-bottom: 96px;
}
@media screen and (max-width: 959px) {
  .bottom-margin-large {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 599px) {
  .bottom-margin-large br {
    display: none;
  }
}

/*--------------------------------------------------------------
見出し H2 H3 H4
--------------------------------------------------------------*/
.home .post_content .p-blogParts,
.page-template .post_content .p-blogParts,
.blog .post_content .p-blogParts,
.archive .post_content .p-blogParts,
.single .post_content .p-blogParts,
.error404 .post_content .p-blogParts,
.search .post_content .p-blogParts {
  margin-bottom: 0;
}
.home .post_content .heading-content,
.page-template .post_content .heading-content,
.blog .post_content .heading-content,
.archive .post_content .heading-content,
.single .post_content .heading-content,
.error404 .post_content .heading-content,
.search .post_content .heading-content {
  width: auto;
  z-index: 1;
}
.home .post_content .section-title,
.page-template .post_content .section-title,
.blog .post_content .section-title,
.archive .post_content .section-title,
.single .post_content .section-title,
.error404 .post_content .section-title,
.search .post_content .section-title {
  position: relative;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.home .post_content .section-title .l-copy,
.page-template .post_content .section-title .l-copy,
.blog .post_content .section-title .l-copy,
.archive .post_content .section-title .l-copy,
.single .post_content .section-title .l-copy,
.error404 .post_content .section-title .l-copy,
.search .post_content .section-title .l-copy {
  color: #29baba;
  letter-spacing: clamp(1px, 1.2vw, 3px);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: bold;
}
.home .post_content .section-title h2,
.page-template .post_content .section-title h2,
.blog .post_content .section-title h2,
.archive .post_content .section-title h2,
.single .post_content .section-title h2,
.error404 .post_content .section-title h2,
.search .post_content .section-title h2 {
  /* 見出し H2 */
  position: relative;
  margin-top: 0;
  margin-bottom: clamp(24px, 4vw, 40px);
  padding: 0;
  background-color: transparent;
  color: #29baba;
  line-height: 1;
  letter-spacing: clamp(2px, 0.6vw, 6px);
  font-size: clamp(24px, 2.9vw, 40px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .home .post_content .section-title h2,
  .page-template .post_content .section-title h2,
  .blog .post_content .section-title h2,
  .archive .post_content .section-title h2,
  .single .post_content .section-title h2,
  .error404 .post_content .section-title h2,
  .search .post_content .section-title h2 {
    line-height: 1.4;
  }
}
.home .post_content .section-title h2.sentence-heading,
.page-template .post_content .section-title h2.sentence-heading,
.blog .post_content .section-title h2.sentence-heading,
.archive .post_content .section-title h2.sentence-heading,
.single .post_content .section-title h2.sentence-heading,
.error404 .post_content .section-title h2.sentence-heading,
.search .post_content .section-title h2.sentence-heading {
  line-height: 1.4;
  text-align: center;
  letter-spacing: clamp(2px, 0.6vw, 6px);
  font-size: clamp(24px, 3vw, 32px);
}
.home .post_content .section-title h2,
.page-template .post_content .section-title h2,
.blog .post_content .section-title h2,
.archive .post_content .section-title h2,
.single .post_content .section-title h2,
.error404 .post_content .section-title h2,
.search .post_content .section-title h2 {
  /* 見出し上の補足 小フォント */
}
.home .post_content .section-title h2 .heading-top,
.page-template .post_content .section-title h2 .heading-top,
.blog .post_content .section-title h2 .heading-top,
.archive .post_content .section-title h2 .heading-top,
.single .post_content .section-title h2 .heading-top,
.error404 .post_content .section-title h2 .heading-top,
.search .post_content .section-title h2 .heading-top {
  position: relative;
  top: 16px;
  display: block;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
}
.home .post_content .section-title h2,
.page-template .post_content .section-title h2,
.blog .post_content .section-title h2,
.archive .post_content .section-title h2,
.single .post_content .section-title h2,
.error404 .post_content .section-title h2,
.search .post_content .section-title h2 {
  /* 数字の大フォント */
}
.home .post_content .section-title h2 .font-large,
.page-template .post_content .section-title h2 .font-large,
.blog .post_content .section-title h2 .font-large,
.archive .post_content .section-title h2 .font-large,
.single .post_content .section-title h2 .font-large,
.error404 .post_content .section-title h2 .font-large,
.search .post_content .section-title h2 .font-large {
  padding-right: 2px;
  font-size: 64px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.home .post_content .section-title h2::before, .home .post_content .section-title h2::after,
.page-template .post_content .section-title h2::before,
.page-template .post_content .section-title h2::after,
.blog .post_content .section-title h2::before,
.blog .post_content .section-title h2::after,
.archive .post_content .section-title h2::before,
.archive .post_content .section-title h2::after,
.single .post_content .section-title h2::before,
.single .post_content .section-title h2::after,
.error404 .post_content .section-title h2::before,
.error404 .post_content .section-title h2::after,
.search .post_content .section-title h2::before,
.search .post_content .section-title h2::after {
  border: none;
}
.home .post_content .section-title h2.l-heading,
.page-template .post_content .section-title h2.l-heading,
.blog .post_content .section-title h2.l-heading,
.archive .post_content .section-title h2.l-heading,
.single .post_content .section-title h2.l-heading,
.error404 .post_content .section-title h2.l-heading,
.search .post_content .section-title h2.l-heading {
  line-height: 1.3 !important;
  font-feature-settings: "palt";
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* メインコピー */
}
.home .post_content .main-copy,
.page-template .post_content .main-copy,
.blog .post_content .main-copy,
.archive .post_content .main-copy,
.single .post_content .main-copy,
.error404 .post_content .main-copy,
.search .post_content .main-copy {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  font-weight: bold;
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* リード文: 単体 */
}
.home .post_content .l-read,
.page-template .post_content .l-read,
.blog .post_content .l-read,
.archive .post_content .l-read,
.single .post_content .l-read,
.error404 .post_content .l-read,
.search .post_content .l-read {
  margin-bottom: 24px;
  font-size: clamp(16px, 2vw, 20px);
}
@media screen and (max-width: 599px) {
  .home .post_content .l-read,
  .page-template .post_content .l-read,
  .blog .post_content .l-read,
  .archive .post_content .l-read,
  .single .post_content .l-read,
  .error404 .post_content .l-read,
  .search .post_content .l-read {
    line-height: 1.6;
  }
  .home .post_content .l-read br,
  .page-template .post_content .l-read br,
  .blog .post_content .l-read br,
  .archive .post_content .l-read br,
  .single .post_content .l-read br,
  .error404 .post_content .l-read br,
  .search .post_content .l-read br {
    display: none;
  }
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* 英語タイトル */
}
.home .post_content .sub-title-en,
.page-template .post_content .sub-title-en,
.blog .post_content .sub-title-en,
.archive .post_content .sub-title-en,
.single .post_content .sub-title-en,
.error404 .post_content .sub-title-en,
.search .post_content .sub-title-en {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  margin-bottom: 0;
  line-height: 0.7;
  letter-spacing: clamp(4px, 1.3vw, 32px);
  text-indent: clamp(4px, 1.3vw, 32px);
  color: #e7f6f6;
  text-transform: uppercase;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 100;
  font-family: "Roboto", sans-serif;
}
.home .post_content .sub-title-en.light-color,
.page-template .post_content .sub-title-en.light-color,
.blog .post_content .sub-title-en.light-color,
.archive .post_content .sub-title-en.light-color,
.single .post_content .sub-title-en.light-color,
.error404 .post_content .sub-title-en.light-color,
.search .post_content .sub-title-en.light-color {
  color: #3bc8c8;
}
@media screen and (max-width: 599px) {
  .home .post_content .sub-title-en,
  .page-template .post_content .sub-title-en,
  .blog .post_content .sub-title-en,
  .archive .post_content .sub-title-en,
  .single .post_content .sub-title-en,
  .error404 .post_content .sub-title-en,
  .search .post_content .sub-title-en {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}
.home .post_content .bg-mainColor .sub-title-en,
.page-template .post_content .bg-mainColor .sub-title-en,
.blog .post_content .bg-mainColor .sub-title-en,
.archive .post_content .bg-mainColor .sub-title-en,
.single .post_content .bg-mainColor .sub-title-en,
.error404 .post_content .bg-mainColor .sub-title-en,
.search .post_content .bg-mainColor .sub-title-en {
  color: #3bc8c8;
}
.home .post_content .bg-white,
.page-template .post_content .bg-white,
.blog .post_content .bg-white,
.archive .post_content .bg-white,
.single .post_content .bg-white,
.error404 .post_content .bg-white,
.search .post_content .bg-white {
  padding: clamp(16px, 5vw, 64px);
  background-color: #f8f8f8;
  border-radius: 8px;
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* ボーダーアクセント付き */
}
.home .post_content .heading-group,
.page-template .post_content .heading-group,
.blog .post_content .heading-group,
.archive .post_content .heading-group,
.single .post_content .heading-group,
.error404 .post_content .heading-group,
.search .post_content .heading-group {
  position: relative;
  margin-bottom: 48px;
}
.home .post_content .heading-group::before,
.page-template .post_content .heading-group::before,
.blog .post_content .heading-group::before,
.archive .post_content .heading-group::before,
.single .post_content .heading-group::before,
.error404 .post_content .heading-group::before,
.search .post_content .heading-group::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #29baba;
  z-index: -1;
}
.home .post_content .heading-group > div,
.page-template .post_content .heading-group > div,
.blog .post_content .heading-group > div,
.archive .post_content .heading-group > div,
.single .post_content .heading-group > div,
.error404 .post_content .heading-group > div,
.search .post_content .heading-group > div {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 4px solid #e9a719;
}
.home .post_content .heading-group,
.page-template .post_content .heading-group,
.blog .post_content .heading-group,
.archive .post_content .heading-group,
.single .post_content .heading-group,
.error404 .post_content .heading-group,
.search .post_content .heading-group {
  /* 通常の見出し */
}
.home .post_content .heading-group h2,
.page-template .post_content .heading-group h2,
.blog .post_content .heading-group h2,
.archive .post_content .heading-group h2,
.single .post_content .heading-group h2,
.error404 .post_content .heading-group h2,
.search .post_content .heading-group h2 {
  display: inline-block;
  margin-bottom: -1px !important;
  padding-bottom: 16px;
  text-indent: -4px !important;
}
@media screen and (max-width: 599px) {
  .home .post_content .heading-group h2,
  .page-template .post_content .heading-group h2,
  .blog .post_content .heading-group h2,
  .archive .post_content .heading-group h2,
  .single .post_content .heading-group h2,
  .error404 .post_content .heading-group h2,
  .search .post_content .heading-group h2 {
    text-indent: 0px !important;
  }
}
.home .post_content .heading-sub,
.page-template .post_content .heading-sub,
.blog .post_content .heading-sub,
.archive .post_content .heading-sub,
.single .post_content .heading-sub,
.error404 .post_content .heading-sub,
.search .post_content .heading-sub {
  position: relative;
  padding-bottom: 12px;
  letter-spacing: clamp(1px, 1vw, 8px);
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .home .post_content .heading-sub,
  .page-template .post_content .heading-sub,
  .blog .post_content .heading-sub,
  .archive .post_content .heading-sub,
  .single .post_content .heading-sub,
  .error404 .post_content .heading-sub,
  .search .post_content .heading-sub {
    letter-spacing: 1px;
  }
  .home .post_content .heading-sub br,
  .page-template .post_content .heading-sub br,
  .blog .post_content .heading-sub br,
  .archive .post_content .heading-sub br,
  .single .post_content .heading-sub br,
  .error404 .post_content .heading-sub br,
  .search .post_content .heading-sub br {
    display: none;
  }
}
.home .post_content .heading-group-left > div,
.page-template .post_content .heading-group-left > div,
.blog .post_content .heading-group-left > div,
.archive .post_content .heading-group-left > div,
.single .post_content .heading-group-left > div,
.error404 .post_content .heading-group-left > div,
.search .post_content .heading-group-left > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 48px);
}
@media screen and (max-width: 959px) {
  .home .post_content .heading-group-left > div,
  .page-template .post_content .heading-group-left > div,
  .blog .post_content .heading-group-left > div,
  .archive .post_content .heading-group-left > div,
  .single .post_content .heading-group-left > div,
  .error404 .post_content .heading-group-left > div,
  .search .post_content .heading-group-left > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.home .post_content .heading-group-left h2,
.page-template .post_content .heading-group-left h2,
.blog .post_content .heading-group-left h2,
.archive .post_content .heading-group-left h2,
.single .post_content .heading-group-left h2,
.error404 .post_content .heading-group-left h2,
.search .post_content .heading-group-left h2 {
  letter-spacing: clamp(1px, 1vw, 8px);
  line-height: 1.6;
  font-size: clamp(24px, 3vw, 32px);
  font-feature-settings: "palt";
}
@media screen and (max-width: 959px) {
  .home .post_content .heading-group-left h2,
  .page-template .post_content .heading-group-left h2,
  .blog .post_content .heading-group-left h2,
  .archive .post_content .heading-group-left h2,
  .single .post_content .heading-group-left h2,
  .error404 .post_content .heading-group-left h2,
  .search .post_content .heading-group-left h2 {
    text-align: center;
  }
  .home .post_content .heading-group-left h2 br:last-child,
  .page-template .post_content .heading-group-left h2 br:last-child,
  .blog .post_content .heading-group-left h2 br:last-child,
  .archive .post_content .heading-group-left h2 br:last-child,
  .single .post_content .heading-group-left h2 br:last-child,
  .error404 .post_content .heading-group-left h2 br:last-child,
  .search .post_content .heading-group-left h2 br:last-child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .home .post_content .heading-group-left h2 br,
  .page-template .post_content .heading-group-left h2 br,
  .blog .post_content .heading-group-left h2 br,
  .archive .post_content .heading-group-left h2 br,
  .single .post_content .heading-group-left h2 br,
  .error404 .post_content .heading-group-left h2 br,
  .search .post_content .heading-group-left h2 br {
    display: block !important;
  }
}
.home .post_content .heading-group-left .l-read,
.page-template .post_content .heading-group-left .l-read,
.blog .post_content .heading-group-left .l-read,
.archive .post_content .heading-group-left .l-read,
.single .post_content .heading-group-left .l-read,
.error404 .post_content .heading-group-left .l-read,
.search .post_content .heading-group-left .l-read {
  letter-spacing: 2px;
  font-size: clamp(16px, 1.6vw, 20px);
}
@media screen and (max-width: 959px) {
  .home .post_content .heading-group-left .l-read,
  .page-template .post_content .heading-group-left .l-read,
  .blog .post_content .heading-group-left .l-read,
  .archive .post_content .heading-group-left .l-read,
  .single .post_content .heading-group-left .l-read,
  .error404 .post_content .heading-group-left .l-read,
  .search .post_content .heading-group-left .l-read {
    text-align: center;
  }
  .home .post_content .heading-group-left .l-read br,
  .page-template .post_content .heading-group-left .l-read br,
  .blog .post_content .heading-group-left .l-read br,
  .archive .post_content .heading-group-left .l-read br,
  .single .post_content .heading-group-left .l-read br,
  .error404 .post_content .heading-group-left .l-read br,
  .search .post_content .heading-group-left .l-read br {
    display: none;
  }
}
.home .post_content .heading-center,
.page-template .post_content .heading-center,
.blog .post_content .heading-center,
.archive .post_content .heading-center,
.single .post_content .heading-center,
.error404 .post_content .heading-center,
.search .post_content .heading-center {
  position: relative;
  margin-bottom: 98px;
  border-left: 8px solid #29baba;
  border-right: 8px solid #29baba;
  border-radius: 8px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .home .post_content .heading-center,
  .page-template .post_content .heading-center,
  .blog .post_content .heading-center,
  .archive .post_content .heading-center,
  .single .post_content .heading-center,
  .error404 .post_content .heading-center,
  .search .post_content .heading-center {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 599px) {
  .home .post_content .heading-center,
  .page-template .post_content .heading-center,
  .blog .post_content .heading-center,
  .archive .post_content .heading-center,
  .single .post_content .heading-center,
  .error404 .post_content .heading-center,
  .search .post_content .heading-center {
    text-indent: 0;
    margin-bottom: 16px;
    border: 0;
  }
}
.home .post_content .heading-center h2,
.page-template .post_content .heading-center h2,
.blog .post_content .heading-center h2,
.archive .post_content .heading-center h2,
.single .post_content .heading-center h2,
.error404 .post_content .heading-center h2,
.search .post_content .heading-center h2 {
  margin-bottom: 16px !important;
  line-height: 1.4;
  text-indent: clamp(0px, 1vw, 16px);
}
.home .post_content .heading-center h2::before,
.page-template .post_content .heading-center h2::before,
.blog .post_content .heading-center h2::before,
.archive .post_content .heading-center h2::before,
.single .post_content .heading-center h2::before,
.error404 .post_content .heading-center h2::before,
.search .post_content .heading-center h2::before {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .home .post_content .heading-center h2,
  .page-template .post_content .heading-center h2,
  .blog .post_content .heading-center h2,
  .archive .post_content .heading-center h2,
  .single .post_content .heading-center h2,
  .error404 .post_content .heading-center h2,
  .search .post_content .heading-center h2 {
    text-align: left;
    text-indent: 0;
  }
  .home .post_content .heading-center h2 br,
  .page-template .post_content .heading-center h2 br,
  .blog .post_content .heading-center h2 br,
  .archive .post_content .heading-center h2 br,
  .single .post_content .heading-center h2 br,
  .error404 .post_content .heading-center h2 br,
  .search .post_content .heading-center h2 br {
    display: none;
  }
}
.home .post_content .heading-center .l-read,
.page-template .post_content .heading-center .l-read,
.blog .post_content .heading-center .l-read,
.archive .post_content .heading-center .l-read,
.single .post_content .heading-center .l-read,
.error404 .post_content .heading-center .l-read,
.search .post_content .heading-center .l-read {
  font-size: clamp(16px, 1.6vw, 20px);
}
.home .post_content h3,
.page-template .post_content h3,
.blog .post_content h3,
.archive .post_content h3,
.single .post_content h3,
.error404 .post_content h3,
.search .post_content h3 {
  margin-bottom: clamp(16px, 2vw, 24px);
  padding: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}
.home .post_content h3::before,
.page-template .post_content h3::before,
.blog .post_content h3::before,
.archive .post_content h3::before,
.single .post_content h3::before,
.error404 .post_content h3::before,
.search .post_content h3::before {
  content: none;
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* キャッチコピー */
}
.home .post_content .l-copy,
.page-template .post_content .l-copy,
.blog .post_content .l-copy,
.archive .post_content .l-copy,
.single .post_content .l-copy,
.error404 .post_content .l-copy,
.search .post_content .l-copy {
  font-size: clamp(18px, 2vw, 24px);
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* テーブルタグ 共通 */
}
.home .post_content .wp-block-table th,
.home .post_content .wp-block-table td,
.page-template .post_content .wp-block-table th,
.page-template .post_content .wp-block-table td,
.blog .post_content .wp-block-table th,
.blog .post_content .wp-block-table td,
.archive .post_content .wp-block-table th,
.archive .post_content .wp-block-table td,
.single .post_content .wp-block-table th,
.single .post_content .wp-block-table td,
.error404 .post_content .wp-block-table th,
.error404 .post_content .wp-block-table td,
.search .post_content .wp-block-table th,
.search .post_content .wp-block-table td {
  padding: 1em 0.5em;
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* CTAボタン */
}
.home .post_content .button-cta-group,
.page-template .post_content .button-cta-group,
.blog .post_content .button-cta-group,
.archive .post_content .button-cta-group,
.single .post_content .button-cta-group,
.error404 .post_content .button-cta-group,
.search .post_content .button-cta-group {
  max-width: 800px;
  margin: 40px auto 0;
}
.home .post_content .button-cta-group > div,
.page-template .post_content .button-cta-group > div,
.blog .post_content .button-cta-group > div,
.archive .post_content .button-cta-group > div,
.single .post_content .button-cta-group > div,
.error404 .post_content .button-cta-group > div,
.search .post_content .button-cta-group > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home .post_content .button-cta-group,
.page-template .post_content .button-cta-group,
.blog .post_content .button-cta-group,
.archive .post_content .button-cta-group,
.single .post_content .button-cta-group,
.error404 .post_content .button-cta-group,
.search .post_content .button-cta-group {
  /* CTAボタン上のテキスト */
}
.home .post_content .button-cta-group .button-heading,
.page-template .post_content .button-cta-group .button-heading,
.blog .post_content .button-cta-group .button-heading,
.archive .post_content .button-cta-group .button-heading,
.single .post_content .button-cta-group .button-heading,
.error404 .post_content .button-cta-group .button-heading,
.search .post_content .button-cta-group .button-heading {
  position: relative;
  display: inline-block;
  margin-bottom: -16px;
  padding: 4px 24px;
  color: #3c4141;
  border: 4px solid #e9a719;
  background-color: white;
  pointer-events: none;
  border-radius: 8px;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
  z-index: 1;
}
.home .post_content .button-cta-group,
.page-template .post_content .button-cta-group,
.blog .post_content .button-cta-group,
.archive .post_content .button-cta-group,
.single .post_content .button-cta-group,
.error404 .post_content .button-cta-group,
.search .post_content .button-cta-group {
  /* ボタンリンク */
}
.home .post_content .button-cta-group .button-link,
.page-template .post_content .button-cta-group .button-link,
.blog .post_content .button-cta-group .button-link,
.archive .post_content .button-cta-group .button-link,
.single .post_content .button-cta-group .button-link,
.error404 .post_content .button-cta-group .button-link,
.search .post_content .button-cta-group .button-link {
  max-width: 500px;
  width: 100%;
}
.home .post_content .button-cta-group a,
.page-template .post_content .button-cta-group a,
.blog .post_content .button-cta-group a,
.archive .post_content .button-cta-group a,
.single .post_content .button-cta-group a,
.error404 .post_content .button-cta-group a,
.search .post_content .button-cta-group a {
  padding: 24px 0 16px;
  font-size: 20px;
}
.home .post_content .simple-column img,
.page-template .post_content .simple-column img,
.blog .post_content .simple-column img,
.archive .post_content .simple-column img,
.single .post_content .simple-column img,
.error404 .post_content .simple-column img,
.search .post_content .simple-column img {
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.home .post_content .simple-column h3,
.page-template .post_content .simple-column h3,
.blog .post_content .simple-column h3,
.archive .post_content .simple-column h3,
.single .post_content .simple-column h3,
.error404 .post_content .simple-column h3,
.search .post_content .simple-column h3 {
  margin: 0 0 4px;
}
.home .post_content .simple-column p,
.page-template .post_content .simple-column p,
.blog .post_content .simple-column p,
.archive .post_content .simple-column p,
.single .post_content .simple-column p,
.error404 .post_content .simple-column p,
.search .post_content .simple-column p {
  margin: 0 0 8px;
}
.home .post_content .simple-column .menu-figure-grid p,
.page-template .post_content .simple-column .menu-figure-grid p,
.blog .post_content .simple-column .menu-figure-grid p,
.archive .post_content .simple-column .menu-figure-grid p,
.single .post_content .simple-column .menu-figure-grid p,
.error404 .post_content .simple-column .menu-figure-grid p,
.search .post_content .simple-column .menu-figure-grid p {
  margin: 0;
}
.home .post_content,
.page-template .post_content,
.blog .post_content,
.archive .post_content,
.single .post_content,
.error404 .post_content,
.search .post_content {
  /* フォントカラー: 白 */
}
.home .post_content .white-font,
.page-template .post_content .white-font,
.blog .post_content .white-font,
.archive .post_content .white-font,
.single .post_content .white-font,
.error404 .post_content .white-font,
.search .post_content .white-font {
  color: white !important;
}
.home,
.page-template,
.blog,
.archive,
.single,
.error404,
.search {
  /* 共通クラス utility */
}
.home .u-mb-normal,
.page-template .u-mb-normal,
.blog .u-mb-normal,
.archive .u-mb-normal,
.single .u-mb-normal,
.error404 .u-mb-normal,
.search .u-mb-normal {
  margin-bottom: clamp(32px, 8vw, 96px);
}
.home,
.page-template,
.blog,
.archive,
.single,
.error404,
.search {
  /* Swiper Navigation Customization */
}
.home .swiper-pagination-bullet-active,
.page-template .swiper-pagination-bullet-active,
.blog .swiper-pagination-bullet-active,
.archive .swiper-pagination-bullet-active,
.single .swiper-pagination-bullet-active,
.error404 .swiper-pagination-bullet-active,
.search .swiper-pagination-bullet-active {
  background-color: #29baba;
}
.home .swiper-button-next,
.page-template .swiper-button-next,
.blog .swiper-button-next,
.archive .swiper-button-next,
.single .swiper-button-next,
.error404 .swiper-button-next,
.search .swiper-button-next {
  right: 16px;
}
.home .swiper-button-prev,
.page-template .swiper-button-prev,
.blog .swiper-button-prev,
.archive .swiper-button-prev,
.single .swiper-button-prev,
.error404 .swiper-button-prev,
.search .swiper-button-prev {
  left: 16px;
}
.home,
.page-template,
.blog,
.archive,
.single,
.error404,
.search {
  /* メインスライダー 矢印ボタン */
}
.home .swiper-button-next,
.home .swiper-button-prev,
.page-template .swiper-button-next,
.page-template .swiper-button-prev,
.blog .swiper-button-next,
.blog .swiper-button-prev,
.archive .swiper-button-next,
.archive .swiper-button-prev,
.single .swiper-button-next,
.single .swiper-button-prev,
.error404 .swiper-button-next,
.error404 .swiper-button-prev,
.search .swiper-button-next,
.search .swiper-button-prev {
  background-color: #29baba;
  color: white;
  width: clamp(40px, 6vw, 64px);
  height: clamp(40px, 6vw, 64px);
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .home .swiper-button-next,
  .page-template .swiper-button-next,
  .blog .swiper-button-next,
  .archive .swiper-button-next,
  .single .swiper-button-next,
  .error404 .swiper-button-next,
  .search .swiper-button-next {
    right: 4px;
  }
  .home .swiper-button-prev,
  .page-template .swiper-button-prev,
  .blog .swiper-button-prev,
  .archive .swiper-button-prev,
  .single .swiper-button-prev,
  .error404 .swiper-button-prev,
  .search .swiper-button-prev {
    left: 4px;
  }
}

/* サブタイトル */
.sub-title {
  color: #29baba;
  letter-spacing: 6px;
  font-size: clamp(18px, 3vw, 32px);
}

/* 縦中央配置 */
.heading-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*--------------------------------------------------------------
header ヘッダー
--------------------------------------------------------------*/
/* ヘッダーを固定 */
@media (min-width: 960px) {
  .p-breadcrumb {
    margin-top: calc(var(--logo_size_pc) + 32px);
  }
}
.l-header {
  max-width: 100% !important;
  box-shadow: none;
  padding: 0;
  background: transparent;
  z-index: 102;
}

#body_wrap:not(.home) .l-header .l-header__inner.scrolling {
  background-color: transparent;
}

.l-header__inner {
  transition: 0.5s all;
}
.l-header__inner .c-gnav > .menu-item > a:after {
  bottom: -8px;
}

/* 固定追従 ヘッダー */
.-body-solid .l-fixHeader {
  box-shadow: none;
}
.-body-solid .l-fixHeader:before {
  background: transparent;
}
.-body-solid .l-fixHeader__gnav {
  display: none;
}

/* 下層ページのヘッダー幅をトップに合わせる */
.l-header .l-container,
.l-footer .l-container {
  max-width: 100% !important;
}

/* ヘッダーロゴ 固定追従 */
.l-header__logo {
  position: fixed;
  top: 40px;
}
@media screen and (max-width: 959px) {
  .l-header__logo {
    padding-left: 48px;
  }
}
@media screen and (max-width: 599px) {
  .l-header__logo {
    top: 24px;
    padding-left: 16px;
  }
}

/* ヘッダーメニュー */
.c-gnav {
  align-items: center;
}
.c-gnav > .menu-item {
  margin-right: 30px;
}
.c-gnav > .menu-item > a {
  padding: 0;
}
.c-gnav > .menu-item > a .ttl {
  color: #29baba;
  font-size: 16px;
  font-weight: 500;
}

/* description */
.l-header__bar {
  color: white;
}

/*--------------------------------------------------------------
セクション CSS
--------------------------------------------------------------*/
/* TOP コンテンツ外枠 余白 */
#body_wrap {
  padding-top: 96px;
  background-color: #f8f8f8;
  background-blend-mode: lighten;
}
@media screen and (max-width: 959px) {
  #body_wrap {
    padding-top: 48px;
  }
}

#body_wrap.home .archive-title-wrap {
  display: none;
}
#body_wrap.home .post_content {
  position: static;
}
#body_wrap.home #content {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  z-index: 1;
}
#body_wrap.home .l-article {
  max-width: 100%;
}

/* #content メインコンテンツ 固定ページの内容が反映される */
#body_wrap:not(.single-post, .blog, .category) #content {
  max-width: 100%;
}

/*--------------------------------------------------------------
*
* ハンバーガーボタン / ドロワーメニュー は _drawer_menu.scss で定義
*
--------------------------------------------------------------*/
/*--------------------------------------------------------------
メインビジュアル CSS
--------------------------------------------------------------*/
.p-mainVisual * {
  text-shadow: none;
}
.p-mainVisual__inner {
  padding-top: 40px !important;
}
@media screen and (max-width: 956px) {
  .p-mainVisual__inner {
    height: 770px !important;
  }
}
@media screen and (max-width: 599px) {
  .p-mainVisual__inner {
    height: 555px !important;
  }
}
@media screen and (max-width: 425px) {
  .p-mainVisual__inner {
    height: 535px !important;
  }
}
.p-mainVisual .swiper-slide img {
  border-radius: 8px;
}
.p-mainVisual .swiper-fade .swiper-slide img {
  overflow: hidden;
}
.p-mainVisual__textLayer {
  top: 32px;
  left: 0;
  transform: unset;
  justify-content: flex-end;
  max-width: 100%;
}
.p-mainVisual .hero-title-group {
  margin-top: auto;
  margin-bottom: -56px !important;
}
@media screen and (max-width: 959px) {
  .p-mainVisual .hero-title-group {
    margin-bottom: -32px !important;
  }
}
@media screen and (max-width: 599px) {
  .p-mainVisual .hero-title-group {
    margin-bottom: -48px !important;
  }
}
.p-mainVisual .hero-title-group .fadeTop1 {
  width: 100%;
}
.p-mainVisual .hero-title-group figure:first-child img {
  margin-bottom: -16px;
}
.p-mainVisual .hero-title-group img {
  width: 960px;
}
@media (min-width: 1600px) {
  .p-mainVisual .hero-title-group img {
    max-width: 1200px;
    width: calc(100% - 160px);
  }
}
@media (max-width: 1199px) {
  .p-mainVisual .hero-title-group img {
    width: 720px;
  }
}
.p-mainVisual {
  /* 中央以外は縮小（scale: 0.8）、中央は等倍（scale: 1.0） */
}
.p-mainVisual .swiper-slide {
  /* スライド自体はSwiperが transform を付与するため、内側レイヤーでスケール */
}
.p-mainVisual .swiper-slide .p-mainVisual__imgLayer,
.p-mainVisual .swiper-slide .p-mainVisual__textLayer {
  transform: scale(0.9);
  transform-origin: center center;
  transition: transform 0.5s ease;
  will-change: transform;
}
.p-mainVisual .swiper-slide-active .p-mainVisual__imgLayer,
.p-mainVisual .swiper-slide-active .p-mainVisual__textLayer,
.p-mainVisual .swiper-slide-duplicate-active .p-mainVisual__imgLayer,
.p-mainVisual .swiper-slide-duplicate-active .p-mainVisual__textLayer {
  transform: scale(1);
}
@media screen and (max-width: 959px) {
  .p-mainVisual .p-mainVisual__slide {
    width: 400px !important;
  }
}
@media screen and (max-width: 959px) and (max-width: 599px) {
  .p-mainVisual .p-mainVisual__slide {
    width: 280px !important;
  }
}
@media screen and (max-width: 959px) and (max-width: 425px) {
  .p-mainVisual .p-mainVisual__slide {
    width: 270px !important;
  }
}
@media screen and (max-width: 959px) {
  .p-mainVisual .p-mainVisual__slide {
    height: auto;
  }
  .p-mainVisual .p-mainVisual__imgLayer {
    height: auto;
    display: block;
  }
  .p-mainVisual .p-mainVisual__img.u-obf-cover {
    object-fit: contain !important;
    object-position: center !important;
    width: 100%;
    height: auto !important;
  }
  .p-mainVisual .p-mainVisual__imgLayer img {
    max-height: 72vh;
  }
}

/* 追従型ボタン 左下 */
.btn-contact-fixed {
  display: flex;
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 1;
}
.btn-contact-fixed svg.__icon {
  margin-left: 0 !important;
  color: white;
}
.btn-contact-fixed a {
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background-color: #e9a719;
  color: #e9a719;
  border-radius: 5px 0 0 5px;
  border-top: 3px solid white;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  border-right: none;
  transition: 0.3s;
}
.btn-contact-fixed a i {
  /* アイコン 吹き出し */
  margin: 0 0 10px 0 !important;
  font-size: 18px;
}
.btn-contact-fixed a span {
  /* 文字 縦書き */
  writing-mode: vertical-lr;
  color: white;
  font-size: 20px;
}
.btn-contact-fixed a:hover {
  background-color: #e34b30;
}

/*--------------------------------------------------------------
*
* メインビジュアルから下のコンテンツ 共通CSS
*
--------------------------------------------------------------*/
/*--------------------------------------------------------------
pikuup banner ピックアップバナー
--------------------------------------------------------------*/
.p-postSlider {
  display: none;
}

.section-menu.swell-block-fullWide {
  padding: 24px 0 !important;
}
.section-menu.swell-block-fullWide .column-img {
  display: flex;
  border-radius: 8px;
}

/*--------------------------------------------------------------
top-about 
--------------------------------------------------------------*/
.intro-section,
.about-section {
  height: auto;
  padding-bottom: clamp(40px, 9vw, 160px) !important;
}
@media screen and (max-width: 1024px) {
  .intro-section,
  .about-section {
    padding-top: 40px !important;
  }
}
.intro-section .p-topAbout__inner,
.about-section .p-topAbout__inner {
  position: relative;
  margin: 0 auto;
}
.intro-section .media-block > div,
.about-section .media-block > div {
  align-items: center;
}
@media screen and (max-width: 599px) {
  .intro-section .media-block > div,
  .about-section .media-block > div {
    gap: 40px;
  }
}
.intro-section .p-topAbout__circleText,
.about-section .p-topAbout__circleText {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.intro-section .p-topAbout__circleText img,
.about-section .p-topAbout__circleText img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 599px) {
  .intro-section .section-title p br,
  .about-section .section-title p br {
    display: none;
  }
}
.intro-section h2,
.about-section h2 {
  letter-spacing: clamp(1px, 0.8vw, 3px);
  font-feature-settings: "palt";
}
.intro-section,
.about-section {
  /* リード文 */
}
.intro-section .l-read,
.about-section .l-read {
  margin-bottom: clamp(24px, 3.8vw, 48px) !important;
  letter-spacing: clamp(1px, 0.8vw, 3px);
  font-size: clamp(16px, 1.6vw, 24px);
}
.intro-section,
.about-section {
  /* 説明文 */
}
.intro-section .intro-description p,
.about-section .intro-description p {
  margin-bottom: clamp(24px, 3.8vw, 48px) !important;
  line-height: 2.2;
  letter-spacing: clamp(1px, 0.8vw, 3px);
  font-size: clamp(14px, 1.6vw, 18px);
}
@media screen and (max-width: 1024px) {
  .intro-section .intro-description p,
  .about-section .intro-description p {
    line-height: 1.6;
  }
  .intro-section .intro-description p:not(.l-read),
  .about-section .intro-description p:not(.l-read) {
    margin-bottom: clamp(20px, 2vw, 24px) !important;
  }
  .intro-section .intro-description p:not(.l-read) br,
  .about-section .intro-description p:not(.l-read) br {
    display: none;
  }
}
.intro-section .p-topAbout__list,
.about-section .p-topAbout__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  z-index: 2;
}
.intro-section .p-topAbout__item,
.about-section .p-topAbout__item {
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.intro-section .p-topAbout__item.is-visible,
.about-section .p-topAbout__item.is-visible {
  opacity: 1;
  transform: scale(1);
}
.intro-section .p-topAbout__icon,
.about-section .p-topAbout__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}
.intro-section .p-topAbout__icon img,
.about-section .p-topAbout__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-section .p-topAbout__text,
.about-section .p-topAbout__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

/*--------------------------------------------------------
intro スクロール連動で背景変更・パララックス・テキストフェードイン
--------------------------------------------------------*/
/*--------------------------------------------------------
menu メニュー紹介
--------------------------------------------------------*/
/* 左スペースに縦文字 */
.left-space-wrap {
  padding-top: 48px;
  padding-bottom: 0;
}
@media screen and (max-width: 599px) {
  .left-space-wrap {
    padding-top: 32px;
  }
}

#pickup-menu .heading-group {
  margin-bottom: 0;
}
#pickup-menu {
  /* カードリンク hover */
}
#pickup-menu a.column-item {
  display: block;
  transform-origin: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
@media (hover: hover) {
  #pickup-menu a.column-item:hover {
    transform: scale(1.05);
  }
}
#pickup-menu {
  /* 拡大時の見切れ対策 */
}
#pickup-menu .column-img img {
  border-radius: 8px;
}
#pickup-menu .swiper {
  overflow: visible;
}
#pickup-menu {
  /* Swiperボタン 右下に設置 */
}
#pickup-menu .swiper-button-group {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
#pickup-menu .swiper-button-group span {
  position: relative;
}
#pickup-menu .swiper-button-group .swiper-button-next,
#pickup-menu .swiper-button-group .swiper-button-prev {
  bottom: -8px;
  /* 矢印を右下に配置 */
  top: auto;
  transform: none;
  width: 48px;
  height: 48px;
  background-color: rgba(41, 186, 186, 0.8);
  border-radius: 50%;
  right: 16px;
}
#pickup-menu .swiper-button-group .swiper-button-next::after,
#pickup-menu .swiper-button-group .swiper-button-prev::after {
  font-size: 28px;
}
#pickup-menu .l-read {
  text-align: center;
  color: #3c4141;
}

/*--------------------------------------------------------------
mainTab メインタブ
--------------------------------------------------------------*/
.mainTab-section.swell-block-fullWide {
  padding-top: clamp(48px, 10vw, 128px) !important;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 599px) {
  .mainTab-section.swell-block-fullWide {
    padding-bottom: 0 !important;
    border-radius: 0;
  }
}

/* タブ パターン1 */
.tab-original {
  /* タブボタン */
}
.tab-original .c-tabList {
  max-width: 1440px;
  margin: 0 auto;
  gap: 8px;
}
@media screen and (max-width: 599px) {
  #repair-menu .tab-original .c-tabList {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px !important;
    padding: 8px 0 !important;
  }
  #repair-menu .tab-original .c-tabList .c-tabList__button {
    border-radius: 8px; /* タブボタンの角を丸くする */
  }
  #repair-menu .tab-original .c-tabList__item {
    flex: none; /* タブボタンの幅を固定 */
  }
}
.tab-original .c-tabList__button {
  padding: 32px 8px 24px !important;
  border-radius: 8px 8px 0 0;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: bold;
  opacity: 1;
}
@media screen and (max-width: 959px) {
  .tab-original .c-tabList__button {
    padding: 16px 8px !important;
    font-size: clamp(18px, 2vw, 24px);
  }
}
.tab-original {
  /* ホバー時 選択時 */
}
.tab-original.is-style-default > .c-tabList .c-tabList__button:hover, .tab-original.is-style-default > .c-tabList .c-tabList__button[aria-selected=true] {
  background-color: #29baba;
  color: white;
}
.tab-original {
  /* タブコンテンツ */
}
.tab-original.is-style-default .c-tabBody {
  padding: 48px 0;
  border: none;
  background-color: #29baba;
}
@media screen and (max-width: 599px) {
  .tab-original.is-style-default .c-tabBody {
    padding-bottom: 48px;
  }
}
.tab-original.is-style-default .c-tabBody::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #29baba;
}
.tab-original.is-style-default .c-tabBody__item {
  max-width: 1440px;
  margin: 0 auto;
  /* 自動生成されるpタグ非表示 */
}
.tab-original.is-style-default .c-tabBody__item > p {
  display: none;
}

/* メインカラー背景時 */
.bg-mainColor {
  background-color: #29baba;
  /* タブ パターン1 */
}
.bg-mainColor .tab-original .c-tabList__button {
  color: white;
}
.bg-mainColor .tab-original {
  /* ホバー時 選択時 */
}
.bg-mainColor .tab-original.is-style-default > .c-tabList .c-tabList__button:hover, .bg-mainColor .tab-original.is-style-default > .c-tabList .c-tabList__button[aria-selected=true] {
  background-color: white;
  color: #29baba;
}
.bg-mainColor .tab-original {
  /* タブコンテンツ */
}
.bg-mainColor .tab-original.is-style-default .c-tabBody {
  background-color: white;
}
.bg-mainColor .tab-original.is-style-default .c-tabBody::before {
  background-color: white;
}

.post_content .mainTab-section .mainTab-content__heading {
  font-size: 20px;
  font-weight: 500;
}
.post_content .mainTab-section .mainTab-content .wp-block-table tr {
  border-top: 1px solid #eee;
}
.post_content .mainTab-section .mainTab-content .wp-block-table tr:last-child {
  border-bottom: 1px solid #eee;
}
.post_content .mainTab-section .mainTab-content .wp-block-table td,
.post_content .mainTab-section .mainTab-content .wp-block-table th {
  border: none;
}
.post_content .mainTab-section .mainTab-content .wp-block-table td {
  padding: 8px 0;
}
.post_content .mainTab-section .mainTab-content .wp-block-table td:first-child {
  width: 40px;
  padding-right: 8px;
}
.post_content .mainTab-section .mainTab-content .swl-inline-icon {
  font-size: 20px;
}

.button-block > div {
  display: flex;
  gap: 8px;
}
.button-block > div a {
  width: 100%;
}
.button-block .swell-block-button {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .button-block .swell-block-button:not(:last-child) {
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
top-case 修理実績
--------------------------------------------------------------*/
#top-case {
  padding-top: 10em !important;
}
@media screen and (max-width: 599px) {
  #top-case {
    padding-top: 64px !important;
  }
}

/*--------------------------------------------------------------
固定LINE相談CTA（画面右下）
--------------------------------------------------------------*/
.fixed-cta {
  position: fixed;
  right: 22px;
  bottom: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  z-index: 3;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .fixed-cta {
    display: none;
  }
}
.fixed-cta {
  /* 非表示状態（JSで付与） */
}
.fixed-cta.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.fixed-cta {
  /* Gutenbergラッパー調整 */
}
.fixed-cta > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fixed-cta .line-bubble {
  position: relative;
  margin: 0;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #0cb73a;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: fixedCta-bounceY 10s ease-out infinite;
}
.fixed-cta .line-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #0cb73a transparent transparent transparent;
}
.fixed-cta .wp-block-image {
  margin: 8px 0 0;
}
.fixed-cta .wp-block-image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.fixed-cta .line-copy {
  margin: 0;
  color: #0cb73a;
  line-height: 1.6;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

@keyframes fixedCta-bounceY {
  0% {
    transform: translateY(0);
  }
  3% {
    transform: translateY(-8px);
  }
  6% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-4px);
  }
  10%, 100% {
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
*
* footer widget フッター直前 CTAボタンエリア
*
--------------------------------------------------------------*/
.cta-section .c-bannerLink {
  position: relative;
  border: 3px solid white;
  border-radius: 8px;
}
.cta-section .c-bannerLink__text {
  top: calc(50% - 24px);
  left: 0;
  transform: translate(0, -50%);
  flex-direction: column-reverse;
  height: auto;
  padding: clamp(16px, 2vw, 24px) clamp(16px, 4vw, 48px);
}
@media (max-width: 767px) {
  .cta-section .c-bannerLink__text {
    top: calc(50% - 16px);
  }
}
.cta-section .c-bannerLink__title {
  letter-spacing: clamp(1px, 1vw, 2px);
  text-indent: -3px;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
}
.cta-section .c-bannerLink__description {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------
*
* footer フッター
*
--------------------------------------------------------*/
/*フッター*/
.l-footer {
  width: 100%;
  margin-top: 0;
  padding: 96px 0 48px !important;
}
@media screen and (max-width: 599px) {
  .l-footer {
    padding: 32px 0 96px !important;
  }
}
.l-footer {
  /* フッター メインコンテンツ */
}
.l-footer__foot {
  padding: 0 0 32px;
}
@media screen and (max-width: 599px) {
  .l-footer__foot {
    padding: 0 0 24px;
  }
}
.l-footer {
  /* 2カラム */
}
.l-footer .l-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .l-footer .l-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer .l-container {
    gap: 24px;
  }
}
.l-footer {
  /* フッターメニュー */
}
.l-footer .footer-nav-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 48px;
  /* フッター メニュー共通 */
}
.l-footer .footer-nav-wrap ul.l-footer__nav {
  column-gap: 24px;
}
@media screen and (max-width: 959px) {
  .l-footer .footer-nav-wrap ul.l-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .l-footer .footer-nav-wrap ul.l-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-footer .footer-nav-wrap ul.l-footer__nav > li {
  margin-right: 24px;
  margin-bottom: 24px;
}
.l-footer .footer-nav-wrap ul.l-footer__nav > li > a {
  position: relative;
  display: block;
  white-space: nowrap;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.l-footer .footer-nav-wrap ul.l-footer__nav > li > a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 4px;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(4px);
}
@media screen and (max-width: 1024px) {
  .l-footer .footer-nav-wrap ul.l-footer__nav > li > a {
    margin-bottom: 0;
  }
}
.l-footer .footer-nav-wrap ul.l-footer__nav > li a, .l-footer .footer-nav-wrap ul.l-footer__nav > li:first-child a {
  padding: 0;
  border: none !important;
}
.l-footer .footer-nav-wrap .l-footer__nav {
  height: fit-content;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .l-footer .footer-nav-wrap .l-footer__nav .sub-menu {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
  }
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item {
  width: 100%;
  margin-top: 8px;
  list-style: none;
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a {
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 599px) {
  .l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a {
    padding-left: 13px;
  }
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a {
  position: relative;
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(6px, 1vw, 10px);
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a::after {
  left: 0;
  right: auto;
  width: 8px;
  height: 8px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a::after {
    width: 4px;
    height: 8px;
  }
}
.l-footer .footer-nav-wrap .l-footer__nav .sub-menu .menu-item a:hover::after {
  transform: translate(4px, -50%);
}
.l-footer .footer-nav-wrap {
  /* フッター プライマリメニュー */
}
.l-footer .footer-nav-wrap .footer-primary {
  justify-content: space-between;
}
.l-footer .footer-nav-wrap .footer-primary > li > a {
  font-size: 16px !important;
}
@media screen and (max-width: 959px) {
  .l-footer .footer-nav-wrap .footer-primary {
    flex-direction: column;
    column-gap: 0 !important;
  }
}
.l-footer .footer-nav-wrap .footer-primary {
  /* 直下のli要素の最後だけ、グリッドの列を全結合する */
}
@media screen and (max-width: 599px) {
  .l-footer .footer-nav-wrap .footer-primary li:last-child {
    grid-column: 1/-1;
  }
}
.l-footer .footer-nav-wrap {
  /* フッターセカンダリメニュー */
}
.l-footer .footer-nav-wrap .footer-secondary .menu-item a {
  font-size: 13px !important;
  font-weight: 400;
}
.l-footer {
  /* フッター最下コンテンツ */
}
.l-footer .footer-before {
  position: relative;
  padding-top: 48px;
}
.l-footer .footer-before::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 128px);
  height: 1px;
  background-color: #119c9c;
}
.l-footer {
  /* フッターロゴ・アドレス */
}
.l-footer .footer-logo {
  margin-bottom: 16px;
}
@media screen and (max-width: 599px) {
  .l-footer .footer-logo {
    margin-bottom: 24px;
  }
  .l-footer .footer-logo .wp-block-image .alignleft {
    margin: 0;
  }
}
.l-footer .footer-logo img {
  width: 220px;
}
.l-footer .footer-logo p {
  font-size: 12px;
}
.l-footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  line-height: 1;
  font-size: 12px;
}
@media screen and (max-width: 599px) {
  .l-footer .copyright {
    padding: 0 16px;
  }
}

@media screen and (max-width: 599px) {
  /* ページトップボタン：追従ボタンとかぶらないよう前面＆位置調整 */
  .p-fixBtnWrap {
    bottom: 5.25em;
    z-index: 100;
  }
}
footer#footer a {
  font-size: 13px;
  transition: 0.3s ease-in-out;
}
footer#footer a:hover {
  color: white !important;
  text-decoration: none;
  opacity: 0.6;
}
footer#footer a:hover::before {
  content: none;
}

@keyframes lineAnime {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}
/*--------------------------------------------------------------
投稿 ブロックエディタ
--------------------------------------------------------------*/
.post-columns h3 {
  margin-bottom: clamp(16px, 3vw, 32px) !important;
}

.p-postList {
  /* サムネイル 枠角調整 */
}
.p-postList .c-postThumb {
  border-radius: 4px;
}

/*--------------------------------------------------------
*
* 共通 CSS
*
--------------------------------------------------------*/
.__pc {
  display: inherit;
}

.__sp {
  display: none;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .br-pc {
    display: none;
  }
}

.br-tb {
  display: none;
}
@media (max-width: 1199px) {
  .br-tb {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.u-show-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .u-show-sp {
    display: block;
  }
}

/* パンくずリスト */
#breadcrumb {
  margin-top: 0;
  padding: 20px 0;
  background-color: #29baba !important;
}
#breadcrumb ol li {
  color: white;
}

/* 画像非選択モード（ダウンロード不可） */
img {
  pointer-events: none;
}

.font-yColor {
  color: yellow;
}

/* ボタン: 店舗を探す LINE 個人 法人 */
.btn-contact .swell-block-columns__inner {
  justify-content: center;
}
.btn-contact .swell-block-columns__inner .swell-block-column {
  max-width: 270px;
}
.btn-contact a {
  flex-direction: row-reverse;
  justify-content: center;
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  font-size: 20px;
}
.btn-contact a .__icon {
  position: relative;
  left: 10px;
  margin-right: 0;
}

/* デフォルトのボタンリンク */
.button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  background-color: #29baba;
  color: #fff;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.button-link::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(6px, 1vw, 10px);
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.button-link:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.button-link {
  transition: transform 0.3s ease, background-color 0.2s ease;
}
@media screen and (max-width: 599px) {
  .button-link {
    padding: 12px;
  }
  .button-link::before {
    left: -10px;
    font-size: 16px;
  }
  .button-link::after {
    right: 8px;
    width: 6px;
    height: 10px;
  }
}
.button-link::before {
  position: relative;
  left: -8px;
  font-size: 20px;
}
.button-link:hover {
  transform: translateY(-1px);
}

.sp-button-content div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* LINEボタン */
.icon-line {
  background-color: #0cb73a;
}

.icon-previous::before {
  position: relative;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.icon-store::before {
  background-image: url("../images/icons/icon_shop/icon_store.svg");
}

.icon-store-white::before {
  background-image: url("../images/icons/icon_shop/icon_store_white.svg");
}

/* 2つ並びボタン */
.double-cta {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
}
.double-cta a {
  font-size: clamp(16px, 2vw, 20px);
}
@media screen and (max-width: 599px) {
  .double-cta .button-link::before {
    position: absolute;
    top: -8px;
    left: -8px;
    padding: 8px;
    border-radius: 50%;
  }
  .double-cta .icon-line::before {
    background-color: #0cb73a;
  }
  .double-cta .icon-phone::before {
    background-color: #29baba;
  }
}

/* 吹き出し以外 2つ並びボタン  */
.step-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
@media screen and (max-width: 599px) {
  .step-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.step-cta .button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* 吹き出し内のボタン LINE/店舗2つ並びのブログパーツ使用時 */
.menu-bubble .step-cta {
  justify-content: flex-start;
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .menu-bubble .step-cta {
    flex-direction: row;
  }
}
.menu-bubble .step-cta a {
  display: inline-block;
  width: auto;
  background-color: transparent;
  box-shadow: none;
}
.menu-bubble .step-cta a::before {
  left: -8px;
}
.menu-bubble .step-cta a::after {
  content: none;
}

/* ボタンの上余白 */
.button-topMargin .button-link {
  margin-top: clamp(16px, 2vw, 24px);
}

/*--------------------------------------------------------
フッター直前のコンテンツ
--------------------------------------------------------*/
/* フッターウィジェット 余白調整 */
.w-beforeFooter {
  margin: 0 auto;
}
.w-beforeFooter .swell-block-fullWide__inner.l-container,
.w-beforeFooter .l-inner {
  max-width: 1632px;
}

/* 店舗一覧・地図パーツ */
.store-list-parts {
  padding: clamp(48px, 9vw, 128px) 0 0;
}

/* iframe Google Map  */
.map-content-parts {
  padding: 0 0 96px;
  background-color: #29baba;
}
.map-content-parts iframe {
  height: 500px;
}

/* iframe 共通スタイル */
iframe {
  border: none;
  border-radius: 8px;
}

/*--------------------------------------------------------
固定フッターメニュー
--------------------------------------------------------*/
@media screen and (max-width: 959px) {
  /* ボタン 固定フッター（フローターボタン） */
  #fix_bottom_menu {
    bottom: 8px !important;
    width: calc(100% - 32px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
  #fix_bottom_menu::before {
    background-color: transparent;
  }
  #fix_bottom_menu .menu-item.menu_btn {
    display: none;
  }
  #fix_bottom_menu .menu_list {
    height: 100%;
    padding: 0;
  }
  #fix_bottom_menu .menu_list li {
    position: relative;
  }
  #fix_bottom_menu .menu_list li:nth-of-type(2) a {
    background-color: #e9a719;
  }
  #fix_bottom_menu .menu_list li:nth-of-type(3) a {
    background-color: #0cb73a;
  }
  #fix_bottom_menu .menu_list li:nth-of-type(4) a {
    background-color: #e2840d;
  }
  #fix_bottom_menu .menu_list li:before {
    position: absolute;
    top: calc(50% + 2px);
    left: 48px;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
  }
}
@media screen and (max-width: 959px) and (max-width: 599px) {
  #fix_bottom_menu .menu_list li:before {
    left: 16px;
    transform: translate(0, -50%);
    font-size: 20px;
  }
}
@media screen and (max-width: 959px) {
  #fix_bottom_menu .menu-item {
    position: relative;
  }
  #fix_bottom_menu .menu-item a {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    color: white;
    height: auto;
    padding: 16px;
    font-weight: bold;
    font-family: sans-serif;
  }
  #fix_bottom_menu .menu-item a span {
    margin-top: 0;
    font-size: clamp(14px, 2vw, 20px);
  }
  #fix_bottom_menu .menu-item a i {
    display: none;
  }
  #fix_bottom_menu .menu-item.fa-solid a {
    background-color: #29baba;
  }
  #fix_bottom_menu .fa-line:before,
  #fix_bottom_menu .fa-calculator:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.5;
    font-size: 28px;
    z-index: -1;
  }
}
@media screen and (max-width: 959px) {
  /* 追従型ボタン 左下 非表示 */
  .btn-contact-fixed {
    display: none;
  }
}
/*--------------------------------------------------------
post-columns 投稿カラム HOME画面
--------------------------------------------------------*/
.post_content .post-columns h3 {
  position: relative;
  padding-left: clamp(16px, 2vw, 24px);
  /* ボーダーアクセント */
}
.post_content .post-columns h3::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: #3c4141;
  border-radius: 1px;
}

/*--------------------------------------------------------------
404ページ
--------------------------------------------------------------*/
.error404 .archive-title-wrap,
.search .archive-title-wrap {
  display: none;
}

/*--------------------------------------------------------------
about関連セクション 共通
--------------------------------------------------------------*/
body .post_content .section-about {
  position: relative;
  padding-top: 96px !important;
  background-color: #f8f8f8;
  transition: background-color 0.6s ease;
  will-change: background-color;
}
@media screen and (max-width: 599px) {
  body .post_content .section-about {
    margin-top: -160px;
  }
}
body .post_content .section-about {
  /* スクロール連動で背景変更 */
}
body .post_content .section-about.is-active {
  background-color: #29baba;
}
body .post_content .section-about.is-active * {
  color: white !important;
}
body .post_content .section-about > div {
  padding: 0 16px;
}
body .post_content .section-about .about-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
body .post_content .section-about .about-images figure {
  position: absolute;
  margin: 0;
  opacity: 0.2;
  line-height: 0;
}
body .post_content .section-about .about-images figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
body .post_content .section-about .about-images figure:nth-child(1) {
  top: 0;
  left: 5%;
  width: 510px;
}
@media screen and (max-width: 1024px) {
  body .post_content .section-about .about-images figure:nth-child(1) {
    width: 380px;
    left: 0;
  }
}
@media (max-width: 850px) {
  body .post_content .section-about .about-images figure:nth-child(1) {
    width: 280px;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-images figure:nth-child(1) {
    width: 200px;
    left: 0;
  }
}
body .post_content .section-about .about-images figure:nth-child(2) {
  top: 15%;
  right: 5%;
  width: 442px;
}
@media screen and (max-width: 1024px) {
  body .post_content .section-about .about-images figure:nth-child(2) {
    width: 374px;
    top: 15%;
    right: 5%;
  }
}
@media (max-width: 850px) {
  body .post_content .section-about .about-images figure:nth-child(2) {
    width: 314px;
    top: 20%;
    right: 5%;
  }
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-images figure:nth-child(2) {
    width: 220px;
    top: 15%;
    right: 0;
  }
}
body .post_content .section-about .about-images figure:nth-child(3) {
  top: 70%;
  right: 0;
  width: 466px;
}
@media screen and (max-width: 1024px) {
  body .post_content .section-about .about-images figure:nth-child(3) {
    width: 378px;
    top: 78%;
    right: 12%;
  }
}
@media (max-width: 850px) {
  body .post_content .section-about .about-images figure:nth-child(3) {
    width: 318px;
    top: 78%;
    right: 5%;
  }
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-images figure:nth-child(3) {
    width: 260px;
    top: 75%;
    right: 10%;
  }
}
body .post_content .section-about .about-images figure:nth-child(4) {
  top: 50%;
  left: 7%;
  width: 466px;
}
@media screen and (max-width: 1024px) {
  body .post_content .section-about .about-images figure:nth-child(4) {
    width: 398px;
    top: 50%;
    left: 7%;
  }
}
@media (max-width: 850px) {
  body .post_content .section-about .about-images figure:nth-child(4) {
    width: 328px;
    top: 50%;
    left: 5%;
  }
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-images figure:nth-child(4) {
    width: 280px;
    top: 45%;
    left: 10%;
  }
}
body .post_content .section-about .about-images figure:nth-child(5) {
  bottom: -80px;
  left: 5%;
  width: 525px;
}
@media screen and (max-width: 1024px) {
  body .post_content .section-about .about-images figure:nth-child(5) {
    width: 424px;
    left: 0;
  }
}
@media (max-width: 850px) {
  body .post_content .section-about .about-images figure:nth-child(5) {
    width: 374px;
  }
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-images figure:nth-child(5) {
    width: 320px;
  }
}
body .post_content .section-about .about-contents {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  body .post_content .section-about .about-contents {
    max-width: 640px;
  }
}
body .post_content .section-about .about-contents {
  /* コンテンツの親要素 */
}
body .post_content .section-about .about-contents > div {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-contents > div {
    flex-direction: column;
  }
}
body .post_content .section-about .about-heading {
  position: sticky;
  top: 128px;
  align-self: flex-start;
  max-width: 110px;
  width: 100%;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-heading {
    position: relative;
    top: 0;
    align-self: auto;
    max-width: 100%;
    writing-mode: horizontal-tb;
  }
}
body .post_content .section-about .about-heading h2 {
  height: max-content;
  margin-right: 16px;
  margin-bottom: 16px;
  color: #29baba;
  line-height: 1;
  text-indent: -3px;
  text-align: left;
  letter-spacing: 4px;
  font-size: clamp(36px, 4vw, 48px);
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-heading h2 {
    margin-right: 0;
    line-height: 1.2;
  }
  body .post_content .section-about .about-heading h2 br {
    display: none;
  }
}
body .post_content .section-about .about-heading .heading-sub {
  text-align: left;
}
body .post_content .section-about .about-content {
  max-width: 570px;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
body .post_content .section-about .about-content .content-item {
  margin-bottom: 308px;
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-content .content-item {
    margin-bottom: 96px;
  }
}
body .post_content .section-about .about-content .content-item:last-child {
  margin-bottom: 0;
}
body .post_content .section-about .about-content .content-item h3 {
  display: inline-block;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 4px solid;
  line-height: 1;
  letter-spacing: 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-content .content-item h3 {
    margin-bottom: 16px;
    padding-bottom: 16px;
    line-height: 1.4;
    letter-spacing: 2px;
  }
}
body .post_content .section-about .about-content .content-item h3 .large-font {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
body .post_content .section-about .about-content .content-item p {
  margin: 0;
  line-height: 1.6;
  letter-spacing: clamp(2px, 1vw, 6px);
  font-size: clamp(16px, 2vw, 20px);
}
@media screen and (max-width: 599px) {
  body .post_content .section-about .about-content .content-item p {
    letter-spacing: 1px;
  }
  body .post_content .section-about .about-content .content-item p br {
    display: none;
  }
}

/*--------------------------------------------------------
JS用CSS（アコーディオン開閉）
--------------------------------------------------------*/
/* コンテンツの基本設定 */
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s ease-in-out;
}
.accordion-content.is-open {
  grid-template-rows: 1fr;
}
.accordion-content .accordion-inner {
  overflow: hidden;
}

.accordion-item {
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  background-color: #f2f2f2;
  color: #3c4141;
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion-header:hover {
  background-color: #f8f8f8;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.05) inset;
}
.accordion-header .accordion-icon {
  position: relative;
  width: 12px;
  height: 12px;
}
.accordion-header .accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #333 transparent;
  transition: transform 0.3s ease;
}
.accordion-header:not(.is-open) .accordion-icon::after {
  border-width: 6px 6px 0 6px;
  border-color: #3c4141 transparent transparent transparent;
}

.accordion-content .accordion-inner {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.accordion-content .accordion-block {
  padding: 24px;
}

/*--------------------------------------------------------
default template 下層ページ 
--------------------------------------------------------*/
.mainTab-content {
  position: relative;
  max-width: 1528px;
  margin: 0 auto;
  z-index: 1;
}

.menu-grid {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 48px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px 24px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px 16px;
  }
}
@media screen and (max-width: 599px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 8px;
    padding: 0;
  }
}
.menu-grid {
  /* アイコン大サイズ 約3:4 */
}
.menu-grid.icon-large {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.menu-grid.icon-large .item-grid .wp-block-image {
  width: 72px;
  height: 72px;
}
@media screen and (max-width: 959px) {
  .menu-grid.icon-large {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .menu-grid.icon-large .item-grid .wp-block-image {
    width: 56px;
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .menu-grid.icon-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 8px;
  }
}
.menu-grid.icon-landscape .item-grid .wp-block-image {
  width: 120px;
  height: 80px;
}
.menu-grid.icon-landscape .icon-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  background-color: rgba(60, 65, 65, 0.4);
  border-radius: 4px;
}
@media screen and (max-width: 599px) {
  .menu-grid.icon-landscape .item-grid > .wp-block-group__inner-container {
    flex-direction: column;
  }
  .menu-grid.icon-landscape .item-grid .wp-block-image {
    width: 100%;
    height: 80px;
  }
}

@media screen and (max-width: 959px) {
  .menu-grid.icon-large.sp-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid .wp-block-image {
    width: 146px;
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid .wp-block-image img {
    height: 112px;
  }
}
@media screen and (max-width: 599px) {
  .menu-grid.icon-large.sp-menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid .wp-block-image {
    width: 112px;
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid .wp-block-image img {
    height: 84px;
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid {
    /* 吹き出しの位置 */
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid:nth-of-type(odd).is-open .menu-bubble {
    left: 50%;
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid:nth-of-type(even).is-open .menu-bubble {
    left: 50%;
    /* 吹き出しの三角形 */
  }
  .menu-grid.icon-large.sp-menu-grid .item-grid:nth-of-type(even).is-open .menu-bubble::before {
    left: 80px;
    right: auto;
  }
}

.item-grid {
  position: relative;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .item-grid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 16px;
    pointer-events: auto;
  }
}
.item-grid:hover {
  transform: translateY(-2px);
}
.item-grid:hover .menu-bubble {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.item-grid {
  /* 「×」で閉じた場合：hover中でも非表示にする（mouseleaveで解除） */
}
.item-grid.is-bubble-closed .menu-bubble {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
}
.item-grid .wp-block-group__inner-container {
  display: contents;
}
.item-grid > .wp-block-group__inner-container {
  display: flex;
  gap: 8px;
}

.item-grid .wp-block-image {
  margin: 0;
  flex-shrink: 0;
  width: 36px;
  height: 100%;
}
.item-grid .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.text-group {
  flex: 2;
  margin-bottom: 0 !important;
}
.text-group .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-name {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.menu-figure-grid .wp-block-group__inner-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-figure-grid p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #424242;
  color: white;
  padding: clamp(2px, 0.3vw, 6px) clamp(8px, 0.5vw, 10px);
  border-radius: 6px;
  font-size: clamp(12px, 1.5vw, 13px);
  margin: 0;
  white-space: nowrap;
}

.menu-bubble {
  position: absolute;
  bottom: calc(100% + 2px);
  top: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border: 2px solid #00bcd4;
  border-radius: 12px;
  padding: clamp(16px, 1.5vw, 20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  min-width: 320px;
  max-width: 400px;
  width: max-content;
  /* 右上の閉じるボタン */
}
.menu-bubble .menu-bubble__close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #00bcd4;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.menu-bubble .menu-bubble__close::before {
  content: "×";
  font-size: 12px;
  line-height: 1;
}
.menu-bubble .menu-bubble__close:hover {
  background: rgba(0, 188, 212, 0.12);
}
@media screen and (max-width: 959px) {
  .menu-bubble {
    min-width: 280px;
    max-width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .menu-bubble {
    bottom: calc(100% + 12px);
  }
}
.menu-bubble::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 80px;
  border: 8px solid transparent;
  border-top-color: #00bcd4;
}
.menu-bubble .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-bubble .button-group {
  display: flex;
  gap: 4px 16px;
}
@media (hover: none) {
  .menu-bubble {
    display: none;
  }
  .item-grid.is-open .menu-bubble {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
@media screen and (hover: none) and (max-width: 599px) {
  .menu-bubble {
    /* スマホの場合、奇数番目のカードは左寄せ、偶数番目のカードは右寄せ */
  }
  .item-grid:nth-of-type(odd).is-open .menu-bubble {
    left: 85%;
  }
  .item-grid:nth-of-type(even).is-open .menu-bubble {
    left: 15%;
  }
  .item-grid:nth-of-type(even).is-open .menu-bubble::before {
    left: auto;
    right: 80px;
  }
}
@media (min-width: 769px) {
  .item-grid:hover .menu-bubble.item-grid:first-child .item-grid:hover .menu-bubble, .item-grid:hover .menu-bubble.item-grid:nth-child(2) .item-grid:hover .menu-bubble {
    transform: translateX(0) translateY(0);
  }
  .item-grid:hover .menu-bubble.item-grid:last-child .item-grid:hover .menu-bubble, .item-grid:hover .menu-bubble.item-grid:nth-last-child(2) .item-grid:hover .menu-bubble {
    transform: translateX(0) translateY(0);
  }
}

.menu-bubble-description {
  font-size: clamp(14px, 1.2vw, 16px);
  margin: 0;
}

.menu-bubble a {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #29baba;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: color 0.2s;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .menu-bubble a {
    padding: 0 0 0 16px;
  }
}
.menu-bubble a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300bcd4'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: all 0.2s;
}
.menu-bubble a:hover {
  color: #29baba;
}
.menu-bubble a:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230097a7'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  transform: translateX(3px) translateY(-50%);
}
.menu-bubble p {
  margin: 0;
}

.item-grid > .wp-block-group__inner-container > .wp-block-image,
.item-grid > .wp-block-group__inner-container > .text-group {
  display: inline-block;
  vertical-align: top;
}
.item-grid > .wp-block-group__inner-container > .text-group {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .item-grid > .wp-block-group__inner-container > .wp-block-image {
    margin-right: 0;
    width: 32px;
    height: 100%;
  }
}

.item-grid:focus-visible {
  outline: 2px solid #00bcd4;
  outline-offset: 2px;
}

@media print {
  .menu-bubble {
    display: none;
  }
  .item-grid {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
/*---------------------------------------------------------------------
  Repair Bottom Section (Links & Notes)
---------------------------------------------------------------------*/
.repair-bottom-section {
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .repair-bottom-section {
    margin: 40px auto 0;
  }
}

.repair-bottom-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .repair-bottom-grid {
    gap: 32px;
  }
}

.repair-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
  gap: 16px;
}
@media (max-width: 480px) {
  .repair-link-grid {
    /* 横スクロール（コンテンツ幅 740px 想定） */
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    /* グリッド指定を無効化 */
    grid-template-columns: unset;
  }
}

@media (max-width: 480px) {
  .repair-link-grid .repair-link-btn {
    flex: 0 0 180px; /* 173*4 + 16*3 = 740px */
    white-space: nowrap;
  }
}
.repair-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 16px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 959px) {
  .repair-link-btn {
    padding: 12px 16px 12px 8px;
  }
}
.repair-link-btn span {
  position: relative;
  z-index: 1;
}
.repair-link-btn {
  position: relative;
}
.repair-link-btn::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.repair-link-btn:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.repair-link-btn:hover {
  background-color: #f8f8f8;
}
.repair-link-btn:hover::after {
  transform: translate(4px, -50%);
}

.accessTab-content .tab-original.is-style-default .c-tabBody {
  padding-bottom: 96px;
}
@media screen and (max-width: 599px) {
  .accessTab-content .tab-original.is-style-default .c-tabBody {
    padding-bottom: 64px;
  }
}

.store-info-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  max-width: 1440px;
  margin: 0 auto;
  gap: 48px;
  background-color: transparent;
}
@media screen and (max-width: 959px) {
  .store-info-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .store-info-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* 左側: 店舗名リスト */
.store-list-area {
  max-width: 248px;
}
@media screen and (max-width: 959px) {
  .store-list-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .store-list-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    max-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .store-list-area {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-bottom: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 14px;
  }
}

.store-name-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 10px;
  background-color: #29baba;
  color: white;
  border: none;
  border-radius: 5px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
  padding-right: 52px;
}
.store-name-item:hover, .store-name-item.active {
  background-color: #3bc8c8;
}
.store-name-item {
  position: relative;
}
.store-name-item::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(6px, 1vw, 10px);
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.store-name-item:hover::after {
  transform: translateY(-50%) translateX(4px);
}
@media screen and (max-width: 768px) {
  .store-name-item {
    padding: 8px 16px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .store-name-item {
    padding: 8px 26px 8px 8px;
    line-height: 1.4;
    font-size: 14px;
  }
}

/* 右側: 店舗詳細エリア */
.store-details-area {
  flex: 2;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .store-details-area {
    box-shadow: none;
  }
}

/* 店舗詳細カード */
.store-detail-card {
  display: none;
  padding: 32px;
  overflow: hidden;
}
.store-detail-card.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .store-detail-card.active {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media screen and (max-width: 599px) {
  .store-detail-card {
    padding: 24px;
  }
}

.store-image-box {
  width: 100%;
  height: 100%;
}
.store-image-box img {
  width: 100%;
  height: 352px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  .store-image-box img {
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .store-image-box img {
    height: 178px;
  }
}

.store-data-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.store-name {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* 店舗情報 リストレイアウト・アイコンリスト  */
.data-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
  .data-list {
    padding-left: 0 !important;
  }
}
.data-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(8px, 1.2vw, 12px) 8px;
  font-size: clamp(14px, 1.2vw, 16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.data-list li.icon-item {
  position: relative;
  margin: 0;
  padding-left: 32px;
  min-height: 24px;
}
.data-list li.icon-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .data-list li.icon-item::before {
    top: 10px;
    width: 24px;
    height: 20px;
  }
}
.data-list li.icon-item.is-store::before {
  background-image: url("../images/icons/icon_shop/icon_store.svg");
}
.data-list li.icon-item.is-phone::before {
  background-image: url("../images/icons/icon_shop/icon_sp_finger.svg");
}
.data-list li.icon-item.is-time::before {
  background-image: url("../images/icons/icon_shop/icon_calender.svg");
}
.data-list li.icon-item.is-holiday::before {
  background-image: url("../images/icons/icon_shop/icon_close.svg");
}
.data-list li.icon-item.is-address::before {
  background-image: url("../images/icons/icon_shop/icon_pin.svg");
}
.data-list li.icon-item.is-access::before {
  background-image: url("../images/icons/icon_shop/icon_train.svg");
}
.data-list li.icon-item.is-parking::before {
  background-image: url("../images/icons/icon_shop/icon_car.svg");
}
.data-list li.icon-item.is-area-text::before {
  background-image: url("../images/icons/icon_shop/icon_walking.svg");
}
.data-list .icon {
  margin-right: 10px;
  color: #29baba;
  width: 25px;
  text-align: center;
}

/* 店舗詳細ボタン */
.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 14px 24px;
  background-color: #29baba;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.1s ease, background-color 0.2s ease;
  position: relative;
}
.details-button::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(6px, 1vw, 10px);
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.details-button:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.details-button:hover {
  transform: translateY(-1px);
}

/*--------------------------------------------------------
*
* 変数定義
*
--------------------------------------------------------*/
/*カラー*/
/*メインビジュアル用の背景色（グラデーション）*/
/* 余白 */
/* 角丸 */
/* レイアウト transform */
/* アニメーション */
/*WEBフォント（フォントファミリー）*/
/*--------------------------------------------------------
*
* @MIXIN
*
--------------------------------------------------------*/
/*--------------------------------------------------------
*
* 矢印 arrow
*
--------------------------------------------------------*/
/*丸の中に入った矢印*/
#top-feature {
  margin-bottom: 0;
}
#top-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background-color: #29baba;
  transition: width 0.3s ease;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 599px) {
  #top-feature {
    padding-top: 0 !important;
  }
}

.is-anim#top-feature::before {
  width: 30%;
}

.feature-crossfade {
  --fcf-steps: 5;
}
@media screen and (max-width: 768px) {
  .feature-crossfade {
    --cta-h: 80px;
  }
}
@media screen and (max-width: 599px) {
  .feature-crossfade {
    --cta-h: 4px;
  }
}
.feature-crossfade .fcf-wrapper {
  position: relative;
  height: calc(var(--fcf-steps) * 100vh);
}
.feature-crossfade .fcf-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .feature-crossfade .fcf-sticky {
    height: calc(100vh - var(--cta-h));
  }
  .feature-crossfade .fcf-sticky.is-fixed {
    height: calc(100vh - var(--cta-h));
  }
}
@media screen and (max-width: 599px) {
  .feature-crossfade .fcf-sticky {
    padding: 80px 0 64px;
  }
}
.feature-crossfade .fcf-canvas {
  position: relative;
  height: 100%;
  counter-reset: fcf-step;
}
.feature-crossfade .fcf-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  counter-increment: fcf-step;
}
@media screen and (max-width: 1024px) {
  .feature-crossfade .fcf-slide .fcf-slide {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .feature-crossfade .fcf-slide {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: 20px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 599px) {
  .feature-crossfade .fcf-slide {
    padding: 0;
  }
}
.feature-crossfade .fcf-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.feature-crossfade .fcf-text {
  max-width: 640px;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .feature-crossfade .fcf-text {
    margin: 0;
    order: 1;
  }
}
.feature-crossfade .fcf-kicker {
  margin: 0 0 16px;
  letter-spacing: 0.08em;
  display: inline-block;
}
.feature-crossfade .fcf-kicker::before {
  content: "[" counter(fcf-step, decimal-leading-zero) "]";
}
.feature-crossfade .fcf-title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 24px) !important;
  font-weight: bold;
}
.feature-crossfade .fcf-desc {
  margin: 0;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .feature-crossfade .fcf-desc {
    line-height: 1.6;
    font-size: 14px;
  }
  .feature-crossfade .fcf-desc br {
    display: none;
  }
}
.feature-crossfade .fcf-media {
  margin: 0;
  height: 90%;
}
@media screen and (max-width: 1024px) {
  .feature-crossfade .fcf-media .fcf-media {
    width: 100%;
    height: 45vh;
  }
}
@media screen and (max-width: 768px) {
  .feature-crossfade .fcf-media {
    order: 2;
  }
}
@media screen and (max-width: 599px) {
  .feature-crossfade .fcf-media {
    width: 100%;
    height: calc(80vh - 100%);
  }
}
.feature-crossfade .fcf-media img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  .feature-crossfade .fcf-media img {
    aspect-ratio: 4/3;
  }
}
.feature-crossfade .fcf-counter {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .feature-crossfade .fcf-counter {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: auto;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
}
@media screen and (max-width: 599px) {
  .feature-crossfade .fcf-counter {
    padding: 0;
    z-index: 1;
  }
}
.feature-crossfade .fcf-dot {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #29baba;
  background: #fff;
  color: #29baba;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 599px) {
  .feature-crossfade .fcf-dot {
    width: 32px;
    height: 32px;
    padding: 0;
    line-height: 1;
  }
}
.feature-crossfade .fcf-dot.is-active {
  background: #29baba;
  color: white;
}

/*--------------------------------------------------------
*
* 変数定義
*
--------------------------------------------------------*/
/*カラー*/
/*メインビジュアル用の背景色（グラデーション）*/
/* 余白 */
/* 角丸 */
/* レイアウト transform */
/* アニメーション */
/*WEBフォント（フォントファミリー）*/
/*--------------------------------------------------------------
テキスト一定スライダー
--------------------------------------------------------------*/
#top-device {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.text-slider {
  position: relative;
}
.text-slider__inner {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.text-slider__item {
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 80px;
  color: #3bc8c8;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  opacity: 1;
}
.text-slider {
  /* 前面スライダー（右→左） */
}
.text-slider.front {
  top: -16px;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .text-slider.front {
    top: -8px;
  }
}
.text-slider.front .text-slider__item {
  font-size: 96px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .text-slider.front .text-slider__item {
    font-size: 48px;
  }
}
.text-slider.front .text-slider__item {
  animation: front_loop 160s linear infinite;
}
.text-slider {
  /* 背面スライダー（左→右） */
}
.text-slider.back {
  top: 80px;
  left: 0;
  transform: rotate(4deg);
  font-size: 48px;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .text-slider.back {
    top: 48px;
  }
}
.text-slider.back .text-slider__item {
  color: white;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .text-slider.back .text-slider__item {
    font-size: 32px;
  }
}
.text-slider.back .text-slider__item {
  animation: back_loop 160s linear infinite;
}

/* アニメーション定義 front */
@keyframes front_loop {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
/* アニメーション定義 back */
@keyframes back_loop {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}
/*--------------------------------------------------------------
画像スライダー TOPページ
--------------------------------------------------------------*/
.loop-slide-group {
  padding: 12px 0;
  background-color: #29baba;
}

/* 画像スライダー （左から右） */
.loop-image-slider {
  display: flex;
  /* 通常のoverflowも残しつつ、Safari用にマスクをかける */
  overflow: hidden;
  /* Safariで画像が消えるのを防ぐ「型抜き」処理 */
  -webkit-mask-image: linear-gradient(white, white);
  mask-image: linear-gradient(white, white);
  /* GPU描画モード: 親要素の描画モードを安定させる */
  transform: translate3d(0, 0, 0);
  /* スクロール連動の拡大表示は無効化（画像サイズは固定） */
  --item-base-w: 320px;
  --img-h: 320px; /* 高さも同じにする */
  /* 既存のメディアクエリがあれば、変数を上書きするだけでOK（初期サイズ維持） */
}
@media screen and (max-width: 599px) {
  .loop-image-slider {
    --item-base-w: 180px;
    --img-h: 180px;
  }
}
.loop-image-slider__inner {
  display: flex;
  /* 無限ループの横移動を滑らかにする（GPU合成のヒント） */
  will-change: transform;
  animation: image_loop 50s linear infinite;
  transform: translate3d(0, 0, 0);
}
.loop-image-slider__item {
  width: var(--item-base-w); /* 計算結果を使う */
  margin-right: 12px;
  flex-shrink: 0; /* レイアウト崩れ防止 */
  transform: translate3d(0, 0, 0);
}
.loop-image-slider__item img {
  width: 100%;
  height: var(--img-h);
  object-fit: cover;
  /* LazyLoad対策 */
  opacity: 1 !important;
}
.loop-image-slider__item .lazyload,
.loop-image-slider__item .lazyloading {
  opacity: 1 !important;
  visibility: visible !important;
}

/* 画像スライダー （右から左） 他ページ共通設定 */
.loop-image-slider.right-to-left {
  margin-bottom: 0;
}
.loop-image-slider.right-to-left .loop-image-slider__inner {
  display: flex;
  animation: image_loop_right_to_left 50s linear infinite;
}

/*--------------------------------------------------------------
画像スライダー 買取ページ
--------------------------------------------------------------*/
/* デバイス購入スライダー */
.loop-slide-device {
  padding-bottom: 64px;
  position: relative;
  /* 100vh (pin height) + 1500px (pin duration) */
  min-height: calc(100vh + 1500px);
}
.loop-slide-device h2 {
  margin-bottom: 24px !important;
}
.loop-slide-device p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}
.loop-slide-device {
  /* stick inner container */
}
.loop-slide-device > .wp-block-group__inner-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.loop-slide-device .loop-image-slider {
  --item-base-w: 160px;
  --img-h: 160px;
  margin-bottom: 0 !important;
}
.loop-slide-device .loop-image-slider img {
  width: 100%;
  height: var(--img-h);
  object-fit: contain;
  vertical-align: bottom;
}
.loop-slide-device {
  /* 2つ並びボタン */
}
.loop-slide-device .double-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.loop-slide-device .sentence-heading {
  text-align: center;
  margin-bottom: 16px !important;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.loop-slide-device.is-shown .sentence-heading,
.loop-slide-device.is-shown .double-cta {
  opacity: 1;
  transform: none;
}

@keyframes image_loop {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes image_loop_right_to_left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.step-accordion {
  padding-top: 10em;
  /* 背景色 */
}
.step-accordion::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #29baba;
  width: var(--step-w, 0%);
  height: var(--step-h, 0%);
  border-radius: 8px;
  transform-origin: center center;
}
.step-accordion .swell-block-accordion.is-style-main .swell-block-accordion__body {
  padding: 0;
  border: none;
}
.step-accordion .swell-block-accordion.is-style-main .swell-block-accordion__title {
  border-radius: 8px;
}
.step-accordion .swell-block-accordion.is-style-main .swell-block-accordion__label {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.top-step-section {
  padding: 8px 0 24px;
}

.top-step__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(16px, 4vw, 48px);
  background-color: #fff;
  border-radius: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 36px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 599px) {
  .steps-grid {
    margin-bottom: 18px;
  }
}
.steps-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  transform: translateY(-50%);
  height: 4px;
  background-color: #29baba;
  z-index: 0;
}
@media screen and (max-width: 959px) {
  .steps-grid::before {
    left: 20%;
    top: 8px;
    bottom: auto;
    transform: translateY(0);
    width: 4px;
    height: calc(100% - 16px);
  }
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .step-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 16px;
  }
}

.step-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-body {
  width: 100%;
}

.step-title {
  display: flex;
  align-items: baseline;
  gap: clamp(6px, 1vw, 10px);
}

.step-index {
  color: #29baba;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1;
  position: relative;
  padding-right: clamp(14px, 1.5vw, 18px);
  font-family: "Roboto", sans-serif;
}
.step-index::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 1px;
  height: 16px;
  background-color: #29baba;
  transform: translateY(-50%) rotate(45deg);
}

.step-heading {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
}

.step-desc {
  margin: 0;
  color: #5d5d5d;
  line-height: 1.6;
  font-size: clamp(14px, 1.4vw, 16px);
}

/*--------------------------------------------------------
*
* 固定ページ CSS
*
--------------------------------------------------------*/
/*--------------------------------------------------------
page-template-sub-page デフォルトテンプレート
--------------------------------------------------------*/
.page-template-sub-page,
.page-template-default,
.blog,
.archive,
.single-store {
  padding-top: 136px;
  /* タイトルエリア */
}
.page-template-sub-page .page-header-area,
.page-template-sub-page .l-topTitleArea,
.page-template-default .page-header-area,
.page-template-default .l-topTitleArea,
.blog .page-header-area,
.blog .l-topTitleArea,
.archive .page-header-area,
.archive .l-topTitleArea,
.single-store .page-header-area,
.single-store .l-topTitleArea {
  position: relative;
  display: flex;
  align-items: center;
  margin: 48px 0;
  padding: 64px 0;
}
@media screen and (max-width: 599px) {
  .page-template-sub-page .page-header-area,
  .page-template-sub-page .l-topTitleArea,
  .page-template-default .page-header-area,
  .page-template-default .l-topTitleArea,
  .blog .page-header-area,
  .blog .l-topTitleArea,
  .archive .page-header-area,
  .archive .l-topTitleArea,
  .single-store .page-header-area,
  .single-store .l-topTitleArea {
    margin: 48px 0 0;
    padding: 0;
  }
}
.page-template-sub-page .page-header-area,
.page-template-sub-page .l-topTitleArea,
.page-template-default .page-header-area,
.page-template-default .l-topTitleArea,
.blog .page-header-area,
.blog .l-topTitleArea,
.archive .page-header-area,
.archive .l-topTitleArea,
.single-store .page-header-area,
.single-store .l-topTitleArea {
  /* 背景パターン */
}
.page-template-sub-page .page-header-area::before,
.page-template-sub-page .l-topTitleArea::before,
.page-template-default .page-header-area::before,
.page-template-default .l-topTitleArea::before,
.blog .page-header-area::before,
.blog .l-topTitleArea::before,
.archive .page-header-area::before,
.archive .l-topTitleArea::before,
.single-store .page-header-area::before,
.single-store .l-topTitleArea::before {
  position: absolute;
  content: "";
  top: 50%;
  left: auto;
  right: 100%;
  transform: translate(50%, -50%);
  width: 100vw;
  height: 100%;
  background-color: transparent;
  background-image: url(../images/object/pattern_dot_teal.svg);
  background-size: 10px;
  background-repeat: repeat;
  opacity: 0.1;
  z-index: -1;
}
.page-template-sub-page,
.page-template-default,
.blog,
.archive,
.single-store {
  /* アイキャッチエリア */
}
.page-template-sub-page .l-topTitleArea.c-filterLayer.-texture-dot:after,
.page-template-default .l-topTitleArea.c-filterLayer.-texture-dot:after,
.blog .l-topTitleArea.c-filterLayer.-texture-dot:after,
.archive .l-topTitleArea.c-filterLayer.-texture-dot:after,
.single-store .l-topTitleArea.c-filterLayer.-texture-dot:after {
  content: none;
}
.page-template-sub-page .l-topTitleArea,
.page-template-default .l-topTitleArea,
.blog .l-topTitleArea,
.archive .l-topTitleArea,
.single-store .l-topTitleArea {
  /* アイキャッチ画像  */
}
.page-template-sub-page .l-topTitleArea .c-filterLayer__img,
.page-template-default .l-topTitleArea .c-filterLayer__img,
.blog .l-topTitleArea .c-filterLayer__img,
.archive .l-topTitleArea .c-filterLayer__img,
.single-store .l-topTitleArea .c-filterLayer__img {
  display: none;
}
.page-template-sub-page .l-topTitleArea__body,
.page-template-default .l-topTitleArea__body,
.blog .l-topTitleArea__body,
.archive .l-topTitleArea__body,
.single-store .l-topTitleArea__body {
  position: relative;
  padding: 0 64px;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .page-template-sub-page .l-topTitleArea__body,
  .page-template-default .l-topTitleArea__body,
  .blog .l-topTitleArea__body,
  .archive .l-topTitleArea__body,
  .single-store .l-topTitleArea__body {
    padding: 0 16px;
  }
}
.page-template-sub-page,
.page-template-default,
.blog,
.archive,
.single-store {
  /* ページタイトル アイキャッチ画像上 中央配置 */
}
.page-template-sub-page h1.c-pageTitle,
.page-template-default h1.c-pageTitle,
.blog h1.c-pageTitle,
.archive h1.c-pageTitle,
.single-store h1.c-pageTitle {
  display: flex;
  flex-direction: column-reverse;
  align-items: baseline;
  justify-content: center;
  max-width: 1440px;
  color: #3c4141;
  gap: 4px;
  letter-spacing: clamp(1px, 0.3vw, 8px);
  text-shadow: none;
  text-indent: -2px;
  font-size: clamp(40px, 5vw, 56px);
  font-feature-settings: "palt";
}
.page-template-sub-page h1.c-pageTitle .c-pageTitle__subTitle,
.page-template-default h1.c-pageTitle .c-pageTitle__subTitle,
.blog h1.c-pageTitle .c-pageTitle__subTitle,
.archive h1.c-pageTitle .c-pageTitle__subTitle,
.single-store h1.c-pageTitle .c-pageTitle__subTitle {
  display: inline-block;
  margin-left: 0;
  margin-bottom: -8px !important;
  color: #29baba;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  text-shadow: none;
  text-indent: 2px;
  letter-spacing: clamp(2px, 1vw, 8px);
  opacity: 1;
  font-size: clamp(24px, 2vw, 26px);
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-style: inherit;
}

/* デフォルトページ ブログパーツのコンテンツのみ適用 */
.page-template-sub-page,
.page-template-default,
.blog,
.archive,
.single {
  /* タイトル アーカイブの記事一覧 */
}
.page-template-sub-page .archive-title-wrap,
.page-template-default .archive-title-wrap,
.blog .archive-title-wrap,
.archive .archive-title-wrap,
.single .archive-title-wrap {
  display: none;
}
.page-template-sub-page .l-article,
.page-template-default .l-article,
.blog .l-article,
.archive .l-article,
.single .l-article {
  max-width: 100%;
}
.page-template-sub-page .eyeCatch-area,
.page-template-default .eyeCatch-area,
.blog .eyeCatch-area,
.archive .eyeCatch-area,
.single .eyeCatch-area {
  position: relative;
}
.page-template-sub-page .eyeCatch-area .c-pageTitle,
.page-template-default .eyeCatch-area .c-pageTitle,
.blog .eyeCatch-area .c-pageTitle,
.archive .eyeCatch-area .c-pageTitle,
.single .eyeCatch-area .c-pageTitle {
  position: relative;
}
.page-template-sub-page .eyeCatch-area .c-pageTitle .c-pageTitle__inner,
.page-template-default .eyeCatch-area .c-pageTitle .c-pageTitle__inner,
.blog .eyeCatch-area .c-pageTitle .c-pageTitle__inner,
.archive .eyeCatch-area .c-pageTitle .c-pageTitle__inner,
.single .eyeCatch-area .c-pageTitle .c-pageTitle__inner {
  padding: 0 0 0 40px;
}
.page-template-sub-page .eyeCatch-area .c-pageTitle,
.page-template-default .eyeCatch-area .c-pageTitle,
.blog .eyeCatch-area .c-pageTitle,
.archive .eyeCatch-area .c-pageTitle,
.single .eyeCatch-area .c-pageTitle {
  /* サブタイトル */
}
.page-template-sub-page .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle,
.page-template-default .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle,
.blog .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle,
.archive .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle,
.single .eyeCatch-area .c-pageTitle .c-pageTitle__subTitle {
  position: relative;
}
.page-template-sub-page .eyeCatch-area .p-articleThumb img,
.page-template-default .eyeCatch-area .p-articleThumb img,
.blog .eyeCatch-area .p-articleThumb img,
.archive .eyeCatch-area .p-articleThumb img,
.single .eyeCatch-area .p-articleThumb img {
  width: calc(100% - 48px);
  height: 400px;
  object-fit: cover;
  object-position: bottom;
  margin-left: 48px;
  border-radius: 8px 0 0 8px;
  box-shadow: none;
}
.page-template-sub-page,
.page-template-default,
.blog,
.archive,
.single {
  /* テーブル */
}
.page-template-sub-page .wp-block-table tr td,
.page-template-sub-page .wp-block-table tr th,
.page-template-default .wp-block-table tr td,
.page-template-default .wp-block-table tr th,
.blog .wp-block-table tr td,
.blog .wp-block-table tr th,
.archive .wp-block-table tr td,
.archive .wp-block-table tr th,
.single .wp-block-table tr td,
.single .wp-block-table tr th {
  padding: 1em 0.5em;
  border: none;
  border-top: 1px solid #ccc;
}
.page-template-sub-page .wp-block-table tr:last-child,
.page-template-default .wp-block-table tr:last-child,
.blog .wp-block-table tr:last-child,
.archive .wp-block-table tr:last-child,
.single .wp-block-table tr:last-child {
  border-bottom: 1px solid #ccc;
}
.page-template-sub-page,
.page-template-default,
.blog,
.archive,
.single {
  /* 見出し H2 H3 */
}
.page-template-sub-page .heading-center,
.page-template-default .heading-center,
.blog .heading-center,
.archive .heading-center,
.single .heading-center {
  position: relative;
  text-align: center;
}

.blog #content,
.archive #content {
  padding: 0 64px 64px;
}
@media screen and (max-width: 959px) {
  .blog #content,
  .archive #content {
    padding: 0 32px;
  }
}
@media screen and (max-width: 599px) {
  .blog #content,
  .archive #content {
    padding: 0 16px;
  }
}

.single-store #content {
  margin-bottom: 0;
  padding: 0;
}
.single-store .l-sidebar {
  display: none;
}

.l-mainContent__inner > .post_content {
  margin: 0 auto;
}
.l-mainContent__inner > .post_content .txt-wrap h2 {
  font-size: clamp(32px, 4vw, 40px);
}
.l-mainContent__inner > .post_content .txt-wrap .l-contents .wp-block-group {
  margin-bottom: 30px;
}

#body_wrap.archive.category {
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  #body_wrap.archive.category {
    padding-top: 120px;
  }
}
@media screen and (max-width: 599px) {
  #body_wrap.archive.category {
    padding-top: 88px;
  }
}
#body_wrap.archive.category .archive-title-wrap {
  display: block;
  max-width: calc(var(--container_size, 0px) + var(--swl-pad_container, 0px) * 2);
  margin: 0 auto 48px;
  padding: 0 64px;
}
@media screen and (max-width: 959px) {
  #body_wrap.archive.category .archive-title-wrap {
    margin-bottom: 16px;
    padding: 0 32px;
  }
}
@media screen and (max-width: 599px) {
  #body_wrap.archive.category .archive-title-wrap {
    padding: 0 16px;
  }
}
#body_wrap.archive.category .page-title {
  position: relative;
  padding: 16px 64px;
  color: white;
  background-color: #29baba;
  border-radius: 8px;
  font-size: 24px;
}
@media screen and (max-width: 959px) {
  #body_wrap.archive.category .page-title {
    padding: 8px 64px;
  }
}
@media screen and (max-width: 599px) {
  #body_wrap.archive.category .page-title {
    padding: 8px 48px;
    font-size: 20px;
  }
}
#body_wrap.archive.category .page-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/icon_regular/icon_folder_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 599px) {
  #body_wrap.archive.category .page-title::before {
    left: 18px;
    width: 18px;
    height: 18px;
  }
}

/*--------------------------------------------------------
店舗一覧ページ / 詳細ページ post-type-archive-store のみ適用
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .post-type-archive-store .page-header-area,
  .single-store .page-header-area {
    margin: 0 0 20px;
    padding: 48px 0 24px;
  }
}

/*--------------------------------------------------------
*
* ページ内リンクリスト
*
--------------------------------------------------------*/
/* ページ内リンクリスト */
#page-index {
  padding-top: 0;
}
#page-index .swell-block-columns__inner {
  justify-content: center;
}
#page-index .swell-block-column {
  width: auto;
}
#page-index .swell-block-column:not(:last-child) .swell-block-button__link {
  margin-right: 48px;
}
#page-index .swell-block-column:not(:last-child) .swell-block-button__link::before {
  position: absolute;
  content: "";
  top: 0;
  right: -32px;
  width: 1px;
  height: 100%;
  background-color: #29baba;
}
#page-index .swell-block-button__link {
  position: relative;
  padding: 0 48px 0 0;
  color: #29baba;
  background-color: transparent;
  box-shadow: none;
}
#page-index .swell-block-button__link::after {
  right: 0;
  width: 16px;
  height: 8px;
  background-image: url(../images/icon/arrow_black_bottom.svg);
}
#page-index .swell-block-button__link:hover::after {
  transform: translate(0, 2px);
}

.two-column-normal {
  position: relative;
  height: 100%;
}
.two-column-normal:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 599px) {
  .two-column-normal:not(:last-child) {
    margin-bottom: 24px;
  }
}
.two-column-normal > div {
  max-width: 1380px;
  margin: 0 auto 96px;
  gap: 48px;
}
@media screen and (max-width: 599px) {
  .two-column-normal > div {
    gap: 24px;
  }
}

.post_content #shop-page .shop-section {
  padding-top: 0 !important;
  padding-bottom: clamp(48px, 10vw, 128px) !important;
}
@media screen and (max-width: 599px) {
  .post_content #shop-page .shop-section {
    padding-top: 48px !important;
  }
}
.post_content #shop-page .shop-section .shop-content:not(:last-child) {
  margin-bottom: 128px !important;
}
.post_content #shop-page .shop-section .shop-content .column-img {
  flex: 1;
}
.post_content #shop-page .shop-section .shop-content .column-img figure {
  height: 100%;
}
.post_content #shop-page .shop-section .shop-content img {
  height: 100%;
  object-fit: cover;
}
.post_content #shop-page .shop-section .shop-content__heading {
  letter-spacing: 1px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: bold;
}

.page-template-sub-page .u-obf-cover,
.page-template-default .u-obf-cover {
  object-position: bottom;
}
.page-template-sub-page,
.page-template-default {
  /* 全体の余白調整 */
}
.page-template-sub-page #content,
.page-template-default #content {
  margin-bottom: 0;
  padding: 0;
}
.page-template-sub-page .post_content,
.page-template-default .post_content {
  padding: 0;
}
.page-template-sub-page .no-padding-wrap .no-padding-inner .two-column-a,
.page-template-default .no-padding-wrap .no-padding-inner .two-column-a {
  max-width: 1440px;
  margin: 0 auto 60px;
}

/*--------------------------------------------------------------
top-index リンクボタン 4つ並び
--------------------------------------------------------------*/
.three-column-overall {
  margin-bottom: 0;
}
.three-column-overall a {
  position: relative;
  display: block;
  padding: 16px 24px;
  background-color: white;
  border-radius: clamp(4px, 2vw, 8px);
  box-shadow: 0 0 24px rgba(41, 186, 186, 0.1);
  font-weight: 500;
  transition-duration: 0.6s;
}
.three-column-overall a::after {
  position: absolute;
  content: "";
  top: calc(50% + 1px);
  right: 24px;
  transform: translate(0, -50%);
  font-weight: bold;
  font-family: "Font Awesome 6 Free";
  width: 7px;
  height: 16px;
  background-image: url("../images/icon/arrow_triangle_normal.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition-duration: 0.3s;
}
@media screen and (max-width: 599px) {
  .three-column-overall a::after {
    right: 12px;
  }
}
.three-column-overall a .heading-txt {
  letter-spacing: clamp(1px, 1vw, 4px);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: bold;
}
.three-column-overall a .count-txt {
  margin-bottom: -4px;
  color: #3bc8c8;
  line-height: 1.4;
  letter-spacing: clamp(0px, 1vw, 2px);
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
.three-column-overall a .count-txt.black {
  color: #3c4141;
}
.three-column-overall a:hover {
  opacity: 1;
  box-shadow: 0 0 32px rgba(60, 65, 65, 0.2);
}
.three-column-overall a:hover {
  box-shadow: 0 0 32px rgba(60, 65, 65, 0.3);
}
.three-column-overall a:hover::after {
  transform: translate(0, calc(-50% + 4px));
}

/*--------------------------------------------------------
3カラム推奨  上下テキスト＋中心にアイコン リッチカラム
--------------------------------------------------------*/
/* 横並びカラム */
.icon-group > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
@media screen and (max-width: 599px) {
  .icon-group > div {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.icon-group > div {
  /* 「最大6つ」という制約を厳密に守る場合 */
  margin-inline: auto; /* コンテナを中央寄せにする場合 */
}
.icon-group .group-item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-group .group-item figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 14vw, 160px);
  height: clamp(96px, 14vw, 160px);
  padding: 0 8px;
}
.icon-group .group-item figure::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 3px solid white;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .icon-group .group-item img {
    height: 56px;
  }
}
.icon-group .text-description {
  line-height: 1.4;
  font-size: clamp(13px, 1.2vw, 16px);
}
@media screen and (max-width: 599px) {
  .icon-group.icon-three-group .group-item img {
    height: auto;
  }
}

/* 交互にカラー変更 */
.icon-group .group-item:nth-of-type(odd) figure::before {
  background-color: #29baba;
  border-radius: 8px;
}
.icon-group .group-item:nth-of-type(odd) .text-bubble {
  background-color: #29baba;
}
.icon-group .group-item:nth-of-type(odd) .text-bubble::after {
  border-color: #29baba transparent transparent transparent;
}
.icon-group .group-item:nth-of-type(even) figure::before {
  background-color: #e9a719;
  border-radius: 50%;
}
.icon-group .group-item:nth-of-type(even) .text-bubble {
  background-color: #e9a719;
}
.icon-group .group-item:nth-of-type(even) .text-bubble::after {
  border-color: #e9a719 transparent transparent transparent;
}

/* 全て正方形 */
.icon-group.all-square .group-item:nth-of-type(even) figure::before {
  border-radius: 8px;
}

/* フキダシ（ベース） */
.icon-group .text-bubble {
  position: relative;
  display: inline-block;
  max-width: 160px;
  width: 100%;
  color: white;
  padding: clamp(8px, 1vw, 12px) 4px;
  border-radius: 8px;
  line-height: 1.4;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: bold;
  font-feature-settings: "palt";
  will-change: transform;
  animation: textBubbleBounce 8s ease-in-out infinite;
}
.icon-group .text-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 12px 12px 0 12px;
}

@keyframes textBubbleBounce {
  0% {
    transform: translateY(0);
  }
  2% {
    transform: translateY(-10px);
  }
  4% {
    transform: translateY(0);
  }
  6% {
    transform: translateY(-6px);
  }
  8% {
    transform: translateY(0);
  }
  10%, 100% {
    transform: translateY(0);
  }
}
.icon-group .group-item:nth-of-type(10n + 1) .text-bubble {
  animation-delay: 0s;
}
.icon-group .group-item:nth-of-type(10n + 2) .text-bubble {
  animation-delay: 1s;
}
.icon-group .group-item:nth-of-type(10n + 3) .text-bubble {
  animation-delay: 2s;
}
.icon-group .group-item:nth-of-type(10n + 4) .text-bubble {
  animation-delay: 3s;
}
.icon-group .group-item:nth-of-type(10n + 5) .text-bubble {
  animation-delay: 4s;
}
.icon-group .group-item:nth-of-type(10n + 6) .text-bubble {
  animation-delay: 5s;
}
.icon-group .group-item:nth-of-type(10n + 7) .text-bubble {
  animation-delay: 6s;
}
.icon-group .group-item:nth-of-type(10n + 8) .text-bubble {
  animation-delay: 7s;
}
.icon-group .group-item:nth-of-type(10n + 9) .text-bubble {
  animation-delay: 8s;
}
.icon-group .group-item:nth-of-type(10n) .text-bubble {
  animation-delay: 9s;
}

/*--------------------------------------------------------
3カラム推奨  上下テキスト＋中心にアイコン リッチカラム
--------------------------------------------------------*/
.icon-column-a .column-item:nth-child(2 of .column-item), .icon-column-a .column-item:nth-child(5 of .column-item) {
  margin-top: 48px;
}
.icon-column-a .column-item:nth-child(3 of .column-item), .icon-column-a .column-item:nth-child(6 of .column-item) {
  margin-top: 96px;
}
.icon-column-a .column-item h3::before {
  content: none;
}
.icon-column-a .column-item figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}
.icon-column-a .column-item figure img {
  height: auto;
}
.icon-column-a .text-group > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .icon-column-a .text-group > div {
    align-items: flex-start;
  }
}
@media screen and (max-width: 959px) {
  .icon-column-a .text-group h3 {
    margin-bottom: 0;
    text-align: left;
  }
  .icon-column-a .text-group p {
    font-size: clamp(14px, 1.6vw, 16px);
  }
}
.icon-column-a .l-read {
  display: inline-block;
  padding: 2px 16px;
  border: 2px solid #29baba;
  border-radius: 8px;
}
.icon-column-a {
  /* 959px以下 */
}
@media screen and (max-width: 959px) {
  .icon-column-a .column-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    margin-bottom: 64px;
  }
  .icon-column-a .column-item .text-group {
    flex: 1.5;
  }
  .icon-column-a .column-item > figure {
    flex: 1;
  }
  .icon-column-a .column-item:nth-child(2 of .column-item), .icon-column-a .column-item:nth-child(3 of .column-item), .icon-column-a .column-item:nth-child(5 of .column-item), .icon-column-a .column-item:nth-child(6 of .column-item) {
    margin-top: 0;
  }
  .icon-column-a #service .heading-center {
    margin-bottom: 24px;
  }
  .icon-column-a #service h3,
  .icon-column-a #service .txt-center {
    text-align: left;
  }
}
.icon-column-a {
  /* 599px以下 */
}
@media screen and (max-width: 599px) {
  .icon-column-a .column-item {
    margin-bottom: 0;
    gap: 12px;
  }
  .icon-column-a .column-item figure {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icon-column-a .column-item figure::before {
    top: auto;
    bottom: -16px;
    transform: translate(-50%, 0%);
    width: 240px;
    height: 40px;
  }
}

/* ボタン3つ並び */
.index-button-group > div {
  display: flex;
  gap: 24px;
}
.index-button-group > div .swell-block-button {
  flex: 1;
}
.index-button-group > div .swell-block-button a {
  width: 100%;
  height: 80px;
}

/*--------------------------------------------------------------
faq よくある質問
--------------------------------------------------------------*/
#faq .swell-block-faq .faq_q,
#faq .swell-block-faq .faq_a {
  font-size: clamp(16px, 2vw, 18px);
}

/*--------------------------------------------------------------
features 特徴
--------------------------------------------------------------*/
/*--------------------------------------------------------
*
* テンプレート
*
--------------------------------------------------------*/
.count-content .swell-block-column {
  counter-increment: flow-counter;
}
.count-content .swell-block-column figure {
  position: relative;
}
.count-content .swell-block-column figure::before {
  position: absolute;
  content: "";
  content: counter(flow-counter, decimal-leading-zero);
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #f50d8d;
  color: white;
  border-radius: 5px 0 0 0;
  mix-blend-mode: multiply;
  font-size: 24px;
}
.count-content .swell-block-column figure img {
  border-radius: 5px;
}

/* 2カラム 修理内容 */
.two-column-a {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  background-color: white;
  /*PC:2カラム SP:1カラム*/
}
.two-column-a .column-item {
  counter-increment: flow-counter;
}
.two-column-a .column-item .swell-block-columns__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  height: auto;
  margin: 0 auto 140px;
  padding-top: 60px;
}
.two-column-a .column-item .swell-block-columns__inner:last-child {
  margin-bottom: 0;
}
.two-column-a .column-item .swell-block-columns__inner {
  /*見出し*/
}
.two-column-a .column-item .swell-block-columns__inner .item-heading {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 125px;
  z-index: 3;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  line-height: 0.75;
  font-size: 90px;
  font-family: "Roboto", sans-serif;
  z-index: -1;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading::after {
  content: counter(flow-counter, decimal-leading-zero);
  left: 50px;
  color: #f2f2f2;
  font-style: italic;
  font-size: 90px;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading h3 {
  position: relative;
  padding-bottom: 0;
  letter-spacing: 2px;
  line-height: 1;
  font-size: 32px;
  font-family: "Roboto", sans-serif;
  z-index: 2;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading h3::before {
  content: none;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list {
  margin-bottom: 0;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner {
  flex-direction: row;
  justify-content: flex-start;
  padding: 0;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner .swell-block-column {
  display: inline-block;
  width: auto;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 2px 5px;
  border: 1px solid #3c4141;
  border-radius: 5px;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner .swell-block-column:last-child {
  margin-bottom: 10px !important;
}
.two-column-a .column-item .swell-block-columns__inner .item-heading .detail-list .swell-block-columns__inner .swell-block-column p {
  font-size: 14px;
}
.two-column-a .column-item .swell-block-columns__inner {
  /*画像 右*/
}
.two-column-a .column-item .swell-block-columns__inner .column-img {
  position: absolute;
  top: 0;
  left: 510px;
  flex: 1;
  width: 80%;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 2;
}
.two-column-a .column-item .swell-block-columns__inner .column-img figure img {
  width: 730px;
  height: 480px;
  object-fit: cover;
}
.two-column-a .column-item .swell-block-columns__inner {
  /*説明文 左*/
}
.two-column-a .column-item .swell-block-columns__inner .description {
  position: relative;
  max-width: 600px;
  width: 50%;
  margin-left: 0;
  padding: 30px 0 60px 60px;
  z-index: 1;
}
.two-column-a .column-item .swell-block-columns__inner .description::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: calc(100vw - 60px);
  opacity: 0.9;
  z-index: -1;
  background-image: url("../images/texcha_01.png");
  background-repeat: repeat;
  background-size: 30px;
}
.two-column-a .column-item .swell-block-columns__inner .description .service-txt {
  margin-bottom: 30px;
}
.two-column-a .column-item:nth-of-type(even) {
  /*見出し*/
}
.two-column-a .column-item:nth-of-type(even) .item-heading {
  width: 605px;
  margin-left: auto;
  padding-left: 95px;
}
.two-column-a .column-item:nth-of-type(even) .item-heading::after {
  left: 0;
}
.two-column-a .column-item:nth-of-type(even) {
  /*画像 右*/
}
.two-column-a .column-item:nth-of-type(even) .column-img {
  left: auto;
  right: 510px;
}
.two-column-a .column-item:nth-of-type(even) .column-img figure img {
  margin-left: auto;
}
.two-column-a .column-item:nth-of-type(even) {
  /*説明文 左*/
}
.two-column-a .column-item:nth-of-type(even) .description {
  margin-right: 0;
  padding-left: 0;
  margin-left: auto;
  padding-right: 60px;
}
.two-column-a .column-item:nth-of-type(even) .description::before {
  left: auto;
  right: 0;
}

/* 2カラム 枠あり */
.two-column-b {
  position: relative;
}
.two-column-b h4 {
  position: absolute;
  top: 0;
  left: calc(50% + 16px);
  width: 50%;
}
.two-column-b .swell-block-column {
  margin-top: 48px;
}
.two-column-b .swell-block-column:last-child {
  margin-bottom: 60px !important;
}

/* 吹き出し */
.bubble-content {
  position: relative;
}
.bubble-content .bubble-message {
  position: absolute;
  top: 0;
  left: 120px;
  padding-left: 15px;
  font-size: 12px;
}
.bubble-content .bubble-message::before, .bubble-content .bubble-message::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: #3c4141;
}
.bubble-content .bubble-message::before {
  left: 0;
}
.bubble-content .bubble-message::after {
  right: -15px;
}
.bubble-content {
  /* 吹き出し 余白調整 */
}
.bubble-content .c-balloon__body {
  padding: 24px 24px 8px;
}
.bubble-content {
  /* シルエット 透過 */
}
.bubble-content .c-balloon .c-balloon__iconImg {
  box-shadow: 0 0 30px #ccc;
  opacity: 0.8;
}

/* カラム 見出し付きテキスト */
.column-copy h4 {
  z-index: 1;
}

/* カラム テーブル 料金表など */
.column-table .wp-block-table td:first-child {
  min-width: 90px;
  background-color: #3c4141;
  color: white;
  font-weight: 400;
}
.column-table .wp-block-table td:not(:first-child) {
  background-color: white;
}
.column-table .wp-block-table td:first-child {
  background-color: #3c4141;
  color: white;
}

.fadeBottom-first {
  opacity: 0;
}
.fadeBottom-first.fadeHead {
  opacity: 1;
  animation: fadeHead 1s ease-out forwards;
}

@keyframes fadeHead {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------
*
* スライダー
*
--------------------------------------------------------*/
.slide-a {
  /* スライダー 矢印 */
}
.slide-a .slick-arrow {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50px;
  transition-duration: 0.8s;
  z-index: 1;
}
.slide-a .slick-arrow::before {
  position: absolute;
  content: "" !important;
  top: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 30px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
}
.slide-a .slick-arrow {
  /* スライダー 矢印 左 */
}
.slide-a .slick-arrow.slick-prev {
  left: 16px;
}
.slide-a .slick-arrow.slick-prev::before {
  left: 0;
  background-image: url("../images/icon/arrow_left.svg");
}
.slide-a .slick-arrow {
  /* スライダー 矢印 右 */
}
.slide-a .slick-arrow.slick-next {
  right: 16px;
}
.slide-a .slick-arrow.slick-next::before {
  right: 0;
  background-image: url("../images/icon/arrow_right.svg");
}
.slide-a {
  /* スライダー 下余白調整（ボタンとの隙間） */
}
.slide-a.slick-dotted.slick-slider {
  margin-bottom: 48px;
}
.slide-a {
  /* スライダー コンテンツ */
}
.slide-a .slick-slide {
  /* アイテム 左右の余白調整 */
  margin: 10px;
}
.slide-a .slick-slide:nth-of-type(2n) {
  /* 1点ごとに下に配置ズラし */
  margin-top: 30px;
}
.slide-a .slick-slide figure {
  /* 画像: 商品 */
  position: relative;
  margin-bottom: 0;
}
.slide-a .slick-slide figure img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.slide-a .slick-slide .wp-block-column {
  /* テキスト: 品名 価格 */
  position: relative;
  padding: 5px 10px;
  background-color: #3c4141;
  color: white;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  z-index: 1;
}
.slide-a .slick-slide .wp-block-column p {
  margin-bottom: 0;
}
.slide-a .slick-slide .wp-block-column p:nth-child(1) {
  /* テキスト: 品名 */
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/*--------------------------------------------------------
*
* ハンバーガーボタン
*
--------------------------------------------------------*/
/* ハンバーガーボタン 大枠 SWELL */
.l-header__menuBtn {
  position: relative;
}
.l-header__menuBtn .c-iconBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: transparent;
  padding: 0;
  border: none;
}
.l-header__menuBtn .c-iconBtn .c-iconBtn__label {
  color: white;
  line-height: 1px;
  letter-spacing: 3px;
  text-indent: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}

/* ハンバーガーボタン 背景 シェイプ */
.l-header__menuBtn.sp_ {
  display: block !important;
  width: 64px;
  height: 64px;
  background-color: #29baba;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.5s all;
}
@media screen and (max-width: 599px) {
  .l-header__menuBtn.sp_ {
    width: 48px;
    height: 48px;
  }
}

.sp-header-btn {
  position: fixed;
  top: 32px;
  right: 36px;
  z-index: 100;
  transition: 0.5s all;
}
@media screen and (max-width: 599px) {
  .sp-header-btn {
    top: 18px;
    right: 16px;
  }
}

/* ハンバーガーボタン 本体 SWELL */
.hamburger {
  position: relative;
  height: 20px;
  transition: transform 0.6s ease;
}
.hamburger .hamburger-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 2px;
  background-color: white;
  transform-origin: center center;
  transition: width 0.25s ease, transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
}
.hamburger .hamburger-line:nth-of-type(1) {
  top: 0;
}
.hamburger .hamburger-line:nth-of-type(2) {
  top: 9px;
}
.hamburger .hamburger-line:nth-of-type(3) {
  top: 18px;
}
@media screen and (max-width: 599px) {
  .hamburger {
    height: 16px;
  }
  .hamburger .hamburger-line {
    width: 30px;
  }
  .hamburger .hamburger-line:nth-of-type(1) {
    top: 0;
  }
  .hamburger .hamburger-line:nth-of-type(2) {
    top: 7px;
  }
  .hamburger .hamburger-line:nth-of-type(3) {
    top: 14px;
  }
}

/* ハンバーガー：ホバー時のライン長さ変化（PC想定） */
.l-header__menuBtn:not(.is-active):hover .hamburger-line:nth-of-type(2) {
  width: 16px;
}
.l-header__menuBtn:not(.is-active):hover .hamburger-line:nth-of-type(3) {
  width: 28px;
}

/* ハンバーガー：開閉アニメーション（クリック/タップ時） */
.l-header__menuBtn.is-active .hamburger {
  transform: rotate(360deg);
}
.l-header__menuBtn.is-active .hamburger-line:nth-of-type(2) {
  opacity: 0;
}
.l-header__menuBtn.is-active .hamburger-line:nth-of-type(1) {
  top: 9px;
  transform: translateX(-50%) rotate(45deg);
}
.l-header__menuBtn.is-active .hamburger-line:nth-of-type(3) {
  top: 9px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ヘッダーメニュー ハンバーガーボタン表示 */
@media (min-width: 960px) {
  .-series .l-header__inner {
    /* ハンバーガーボタンの上下位置調整 */
    align-items: center;
    padding: 0 64px;
  }
  .-series .l-header__logo {
    padding: 0;
  }
  .-series .l-header__gnav {
    display: none;
  }
  .p-spMenu {
    display: block;
    /* 開閉メニューを有効 */
  }
}
/*--------------------------------------------------------
*
* ドロワーメニュー
*
--------------------------------------------------------*/
/* メニュー */
.-left .p-spMenu__inner {
  left: 0;
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}

[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

.p-spMenu html.is-drawer-open,
.p-spMenu body.is-drawer-open {
  overflow: hidden;
  height: 100%;
}
.p-spMenu {
  /* 背景 */
}
.p-spMenu__inner {
  width: 100vw;
  padding: 20px;
}
@media screen and (max-width: 959px) {
  .p-spMenu__inner {
    height: 100vh;
    height: 100dvh;
    padding: 0;
  }
}
.p-spMenu__inner::before {
  background-color: #29baba;
}
.p-spMenu {
  /* ボディ */
}
.p-spMenu__body {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  background-color: white;
  border-radius: 8px;
}
@media screen and (max-width: 959px) {
  .p-spMenu__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* メニュー内の上下スクロールぼかし背景 */
  }
  .p-spMenu__body::before, .p-spMenu__body::after {
    position: fixed;
    content: "";
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .p-spMenu__body::before {
    top: 0;
    height: 96px;
    background-image: linear-gradient(to bottom, white 0%, white 80%, transparent 100%);
  }
  .p-spMenu__body::after {
    bottom: 0;
    height: 72px;
    background-image: linear-gradient(to bottom, transparent 0%, white 40%, white 100%);
  }
}
.p-spMenu {
  /* ナビゲーション */
}
.p-spMenu__nav {
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 96px 48px 48px;
  background-color: white;
  border-radius: 8px;
  position: relative; /* 右パネルの基準 */
}
@media screen and (max-width: 959px) {
  .p-spMenu__nav {
    flex-direction: column;
    padding: 0 24px;
    height: 100%;
    max-height: calc(100dvh - 48px);
    min-height: 0;
  }
}
.p-spMenu {
  /* 閉じるボタン */
}
.p-spMenu__closeBtn {
  display: none;
}
.p-spMenu__nav-secondary-sub {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .p-spMenu__nav-secondary-sub {
    align-items: flex-start;
    padding-bottom: 64px;
  }
}
.p-spMenu__nav-secondary-sub .menu--secondary-sub {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-spMenu__nav-secondary-sub .menu--secondary-sub .menu-item {
  position: relative;
  padding-left: 24px;
}
.p-spMenu__nav-secondary-sub .menu--secondary-sub .menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-image: url(../images/icons/icon_arrow/arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.p-spMenu__nav-secondary-sub .menu--secondary-sub .menu-item:hover::after {
  transform: translateY(-50%) translateX(4px);
}
@media screen and (max-width: 599px) {
  .p-spMenu__nav-secondary-sub .menu--secondary-sub .menu-item {
    padding-left: 16px;
  }
  .p-spMenu__nav-secondary-sub .menu--secondary-sub .menu-item::after {
    width: 4px;
  }
}
.p-spMenu {
  /* ロゴ */
}
.p-spMenu .c-widget__title {
  display: none;
}
.p-spMenu .c-listMenu a {
  padding: 20px 0;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  .p-spMenu .c-listMenu a {
    padding: 12px 0 12px 24px;
  }
}
.p-spMenu .c-listMenu a:before {
  content: none;
}
@media screen and (max-width: 959px) {
  .p-spMenu .c-listMenu a:before {
    content: "\e921";
    font-size: 10px;
  }
}
.p-spMenu {
  /* メニューレイアウト */
}
.p-spMenu ul.c-spnav {
  display: block;
  width: calc(50% - 160px);
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .p-spMenu ul.c-spnav {
    width: 100%;
    margin-bottom: 24px;
    padding-top: 128px;
  }
}
@media screen and (max-width: 599px) {
  .p-spMenu ul.c-spnav {
    padding-top: 96px;
  }
}
.p-spMenu ul.c-spnav > li.menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.p-spMenu ul.c-spnav > li.menu-item > a {
  border-bottom: none;
}
@media screen and (max-width: 959px) {
  .p-spMenu ul.c-spnav > li.menu-item > a {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .p-spMenu ul.c-spnav > li.menu-item > a {
    font-size: 18px;
  }
}
.p-spMenu ul.c-spnav li.menu-item-has-children {
  position: relative;
}
.p-spMenu ul.c-spnav li.menu-item-has-children::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #29baba;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .p-spMenu ul.c-spnav li.menu-item-has-children::after {
    top: 12px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #f4f4f4;
    border-radius: 50%;
    line-height: 0;
    transform: translateY(0);
  }
}
@media screen and (max-width: 599px) {
  .p-spMenu ul.c-spnav li.menu-item-has-children::after {
    top: 8px;
  }
}
.p-spMenu ul.c-spnav li.menu-item-has-children.is-open::after {
  content: "-";
}
@media screen and (max-width: 959px) {
  .p-spMenu ul.c-spnav li.menu-item-has-children.is-open::after {
    padding-bottom: 4px;
  }
}
.p-spMenu ul.c-spnav {
  /* 初期状態は閉じる（JSでslide制御） */
}
.p-spMenu ul.c-spnav .sub-menu {
  display: none;
}
@media screen and (max-width: 959px) {
  .p-spMenu ul.c-spnav .sub-menu a {
    padding: 12px 0 12px 32px;
    font-size: clamp(13px, 1.8vw, 20px);
  }
  .p-spMenu ul.c-spnav .sub-menu a:last-child {
    border-bottom: none;
  }
  .p-spMenu ul.c-spnav .sub-menu li.menu-item:last-child {
    margin-bottom: 16px;
    border-bottom: none;
  }
}
.p-spMenu {
  /* 右側ポップアップパネル（PC用） */
}
@media (min-width: 960px) {
  .p-spMenu .drawer-subpanel {
    position: absolute;
    top: 48px;
    right: 286px;
    max-width: 800px;
    width: calc(50% - 160px);
    min-height: 100px;
    padding: 24px;
    background-color: #f8f8f8;
    border-radius: 8px;
    display: none;
  }
  .p-spMenu .drawer-subpanel.is-open {
    display: block;
  }
  .p-spMenu .drawer-subpanel__inner {
    width: 100%;
    max-height: calc(100vh - 200px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0; /* 子要素のスクロールを許可 */
  }
  .p-spMenu .drawer-subpanel__title {
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    position: relative;
  }
  .p-spMenu .drawer-subpanel__title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/icon_arrow/arrow_left_black_02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.8;
    transition: 0.3s ease-in-out all;
  }
  .p-spMenu .drawer-subpanel__title:hover {
    color: #29baba;
  }
  .p-spMenu .drawer-subpanel ul {
    margin: 0;
    padding: 0 0 0 8px;
    list-style: none;
    flex: 1 1 auto;
    min-height: 0; /* flex 子要素として縮められるようにする */
    max-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .p-spMenu .drawer-subpanel ul li {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    padding-left: 24px;
  }
  .p-spMenu .drawer-subpanel ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-image: url(../images/icons/icon_arrow/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.3s ease-in-out all;
  }
  .p-spMenu .drawer-subpanel ul li:hover::after {
    transform: translateY(-50%) translateX(4px);
  }
  .p-spMenu .drawer-subpanel ul li a {
    display: inline-block;
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .p-spMenu .drawer-subpanel ul li a:hover {
    color: #29baba;
  }
  .p-spMenu .drawer-subpanel ul li:last-child {
    border-bottom: none;
  }
}

/*--------------------------------------------------------
*
* 変数定義
*
--------------------------------------------------------*/
/*カラー*/
/*メインビジュアル用の背景色（グラデーション）*/
/* 余白 */
/* 角丸 */
/* レイアウト transform */
/* アニメーション */
/*WEBフォント（フォントファミリー）*/
.service-list .swell-block-column {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  background-color: #f8f8f8;
  border-radius: 8px;
}
.service-list .swell-block-column h3 {
  position: relative;
  padding-left: 40px;
}
.service-list .swell-block-column h3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}
.service-list .swell-block-column.service-repair h3::before {
  background-image: url("../images/icons/icon_service/icon_service_repair.png");
}
.service-list .swell-block-column.service-buying h3::before {
  background-image: url("../images/icons/icon_service/icon_service_buying.png");
}
.service-list .swell-block-column.service-used h3::before {
  background-image: url("../images/icons/icon_service/icon_service_used.png");
}
.service-list .swell-block-column.service-corporate h3::before {
  background-image: url("../images/icons/icon_service/icon_service_corporate.png");
}
.service-list .swell-block-column.service-web h3::before {
  background-image: url("../images/icons/icon_service/icon_service_web.png");
}
.service-list .swell-block-column.service-design h3::before {
  background-image: url("../images/icons/icon_service/icon_service_design.png");
}
.service-list .swell-block-column.service-tshirt h3::before {
  background-image: url("../images/icons/icon_service/icon_service_tshirt.png");
}

/*--------------------------------------------------------
*
* 店舗一覧 / 店舗詳細ページ ※post_contentタグなしバージョン
* ※ デフォルト設定は style.scss に記載
*
--------------------------------------------------------*/
.post-type-archive-store #content {
  margin-bottom: 0;
  padding-bottom: 96px;
}

.store-archive,
.store-single {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.store-archive .section-title,
.store-single .section-title {
  position: relative;
}
.store-archive .section-title .l-copy,
.store-single .section-title .l-copy {
  color: #29baba;
  letter-spacing: clamp(1px, 1.2vw, 3px);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: bold;
}
.store-archive,
.store-single {
  /* ACCESSタイトル非表示 */
}
.store-archive .access-title,
.store-single .access-title {
  display: none;
}
.store-archive h2,
.store-single h2 {
  /* 見出し H2 */
  position: relative;
  margin-top: 0;
  margin-bottom: 56px;
  padding: 0;
  background-color: transparent;
  color: #29baba;
  line-height: 1;
  letter-spacing: clamp(2px, 0.6vw, 6px);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 1;
  /* フォントカラー: 白 */
}
.store-archive h2.white-font,
.store-single h2.white-font {
  color: white;
}
.store-archive h2,
.store-single h2 {
  /* 見出し上の補足 小フォント */
}
.store-archive h2 .heading-top,
.store-single h2 .heading-top {
  position: relative;
  top: 16px;
  display: block;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
}
.store-archive h2,
.store-single h2 {
  /* 数字の大フォント */
}
.store-archive h2 .font-large,
.store-single h2 .font-large {
  padding-right: 2px;
  font-size: 96px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.store-archive h2::before, .store-archive h2::after,
.store-single h2::before,
.store-single h2::after {
  border: none;
}
.store-archive,
.store-single {
  /* リード文: 単体 */
}
.store-archive .l-read,
.store-single .l-read {
  margin-bottom: 24px;
  font-size: clamp(16px, 2vw, 20px);
}
.store-archive,
.store-single {
  /* 英語タイトル */
}
.store-archive .sub-title-en,
.store-single .sub-title-en {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  line-height: 0.7;
  letter-spacing: 32px;
  text-indent: 32px;
  color: #e7f6f6;
  text-transform: uppercase;
  font-size: 96px;
  font-weight: 100;
  font-family: "Roboto", sans-serif;
}
.store-archive .bg-mainColor .sub-title-en,
.store-single .bg-mainColor .sub-title-en {
  color: #3bc8c8;
}
.store-archive,
.store-single {
  /* ボーダーアクセント付き */
}
.store-archive .heading-group,
.store-single .heading-group {
  position: relative;
  margin-bottom: 48px;
}
.store-archive .heading-group::before,
.store-single .heading-group::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #29baba;
  z-index: -1;
}
.store-archive .heading-group > div,
.store-single .heading-group > div {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 4px solid #e9a719;
}
.store-archive .heading-group,
.store-single .heading-group {
  /* 通常の見出し */
}
.store-archive .heading-group h2,
.store-single .heading-group h2 {
  display: inline-block;
  margin-bottom: -1px !important;
  padding-bottom: 16px;
  text-indent: -4px !important;
}
@media screen and (max-width: 599px) {
  .store-archive .heading-group h2,
  .store-single .heading-group h2 {
    text-indent: 0px !important;
  }
}
.store-archive .heading-sub,
.store-single .heading-sub {
  position: relative;
  padding-bottom: 12px;
  letter-spacing: clamp(1px, 1vw, 8px);
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .store-archive .heading-sub,
  .store-single .heading-sub {
    letter-spacing: 1px;
  }
  .store-archive .heading-sub br,
  .store-single .heading-sub br {
    display: none;
  }
}
.store-archive .heading-group-left > div,
.store-single .heading-group-left > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 48px);
}
@media screen and (max-width: 959px) {
  .store-archive .heading-group-left > div,
  .store-single .heading-group-left > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.store-archive .heading-group-left h2,
.store-single .heading-group-left h2 {
  letter-spacing: clamp(1px, 1vw, 8px);
  line-height: 1.6;
  font-size: clamp(28px, 3vw, 40px);
  font-feature-settings: "palt";
}
@media screen and (max-width: 959px) {
  .store-archive .heading-group-left h2,
  .store-single .heading-group-left h2 {
    text-align: center;
  }
  .store-archive .heading-group-left h2 br:last-child,
  .store-single .heading-group-left h2 br:last-child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .store-archive .heading-group-left h2 br,
  .store-single .heading-group-left h2 br {
    display: block !important;
  }
}
.store-archive .heading-group-left .l-read,
.store-single .heading-group-left .l-read {
  letter-spacing: 2px;
  font-size: clamp(16px, 1.6vw, 24px);
}
@media screen and (max-width: 959px) {
  .store-archive .heading-group-left .l-read,
  .store-single .heading-group-left .l-read {
    text-align: center;
  }
  .store-archive .heading-group-left .l-read br,
  .store-single .heading-group-left .l-read br {
    display: none;
  }
}
.store-archive .heading-center,
.store-single .heading-center {
  position: relative;
  margin-bottom: 98px;
  border-left: 8px solid #29baba;
  border-right: 8px solid #29baba;
  border-radius: 8px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .store-archive .heading-center,
  .store-single .heading-center {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 599px) {
  .store-archive .heading-center,
  .store-single .heading-center {
    text-indent: 0;
    margin-bottom: 16px;
    border: 0;
  }
}
.store-archive .heading-center h2,
.store-single .heading-center h2 {
  margin-bottom: 16px !important;
  line-height: 1.4;
  text-indent: clamp(0px, 1vw, 16px);
}
.store-archive .heading-center h2::before,
.store-single .heading-center h2::before {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .store-archive .heading-center h2,
  .store-single .heading-center h2 {
    text-align: left;
    text-indent: 0;
  }
  .store-archive .heading-center h2 br,
  .store-single .heading-center h2 br {
    display: none;
  }
}
.store-archive .heading-center .l-read,
.store-single .heading-center .l-read {
  font-size: clamp(18px, 2vw, 24px);
}
.store-archive h3,
.store-single h3 {
  margin-bottom: 20px;
  padding: 0;
  font-size: clamp(18px, 2vw, 24px);
}
.store-archive h3::before,
.store-single h3::before {
  content: none;
}
.store-archive,
.store-single {
  /* キャッチコピー */
}
.store-archive .l-copy,
.store-single .l-copy {
  font-size: clamp(18px, 2vw, 24px);
}
.store-archive,
.store-single {
  /* テーブルタグ 共通 */
}
.store-archive .wp-block-table th,
.store-archive .wp-block-table td,
.store-single .wp-block-table th,
.store-single .wp-block-table td {
  padding: 1em 0.5em;
}
.store-archive,
.store-single {
  /* CTAボタン */
}
.store-archive .button-cta-group,
.store-single .button-cta-group {
  max-width: 800px;
  margin: 40px auto 0;
}
.store-archive .button-cta-group > div,
.store-single .button-cta-group > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.store-archive .button-cta-group,
.store-single .button-cta-group {
  /* CTAボタン上のテキスト */
}
.store-archive .button-cta-group .button-heading,
.store-single .button-cta-group .button-heading {
  position: relative;
  display: inline-block;
  margin-bottom: -16px;
  padding: 4px 24px;
  color: #3c4141;
  border: 4px solid #e9a719;
  background-color: white;
  pointer-events: none;
  border-radius: 8px;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
  z-index: 1;
}
.store-archive .button-cta-group,
.store-single .button-cta-group {
  /* ボタンリンク */
}
.store-archive .button-cta-group .button-link,
.store-single .button-cta-group .button-link {
  max-width: 500px;
  width: 100%;
}
.store-archive .button-cta-group a,
.store-single .button-cta-group a {
  padding: 24px 0 16px;
  font-size: 20px;
}
.store-archive .store-archive.container,
.store-single .store-archive.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

/*--------------------------------------------------------
*
* 店舗一覧スタイル archive-store.php
*
--------------------------------------------------------*/
/* タイトルエリア */
.archive-header .archive-title {
  letter-spacing: 4px;
  font-size: clamp(32px, 4vw, 48px);
}
.archive-header .archive-description {
  font-size: clamp(16px, 2vw, 24px);
}

/* 全店舗クイックリンク */
.link-map {
  display: flex;
  gap: 48px;
}
.link-map > .p-blogParts {
  flex: 1.5 1 auto;
}

.store-quick-links {
  flex: 1 1 auto;
  margin: 1.5rem 0 2.5rem;
}
.store-quick-links__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 1023px) {
  .store-quick-links__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 781px) {
  .store-quick-links__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .store-quick-links__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.store-quick-links__link {
  display: block;
  width: 100%;
  padding: 10px 12px;
  color: #3c4141;
  border: 1px solid #3c4141;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.store-quick-links__link::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.store-quick-links__link:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.store-quick-links__link:hover {
  background-color: #f8f8f8;
}
.store-quick-links__link:hover::after {
  transform: translate(4px, -50%);
}

/* 店舗一覧エリア */
.store-group {
  padding-bottom: clamp(48px, 8vw, 128px);
}
.store-group:last-child {
  padding-bottom: 0;
}

.store-list.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .store-list.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .store-list.grid {
    grid-template-columns: 1fr;
  }
}

/* 店舗カード */
.store-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.store-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.store-data-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.store-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-content {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

/* 店舗タイトル */
.store-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

/* 店舗PR */
.store-pr {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

/* 店舗営業時間 */
.store-hours {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* 店舗電話 */
.store-tel {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* 店舗定休日 */
.store-holiday {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* 店舗電話リンク */
.store-tel a {
  color: #007bff;
  text-decoration: none;
}

/* 店舗カテゴリ */
.store-taxonomies span {
  display: inline-block;
  background: #f2f2f2;
  color: #333;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
  margin-right: 0.3rem;
}

/* 店舗詳細ボタン */
.btn-detail {
  display: block;
  margin-top: 0.6rem;
  background: #007bff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

.btn-detail:hover {
  background: #0056b3;
}

/* 店舗がない場合 */
.no-store {
  text-align: center;
  padding: 3rem;
  color: #777;
}

/* ====== 店舗個別ページ ====== */
.post-type-archive-store.-sidebar-on #sidebar,
.store-template-default.-sidebar-on #sidebar {
  display: none;
}

.store-single.container {
  max-width: 1528px;
  width: 100%;
  margin: 0 auto;
}

.store-single__article {
  padding-bottom: clamp(48px, 8vw, 96px);
}

.store-single__title {
  margin-bottom: 0.5rem;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
}

.store-single__pr {
  color: #666;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 599px) {
  .store-single__pr {
    margin-bottom: 0;
  }
}

/* サマリー：左に画像、右に情報（PC）、縦並び（SP） */
.store-single__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 959px) {
  .store-single__summary {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 599px) {
  .store-single__summary {
    gap: 24px;
  }
}

.store-single__thumb {
  border-radius: 12px;
  overflow: hidden;
}

.store-single__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-info__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.store-info__list {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 10px;
  column-gap: 12px;
  margin: 0 0 16px;
}
.store-info__list dt {
  color: #333;
  font-weight: 600;
}
.store-info__list dd {
  margin: 0;
}
@media screen and (max-width: 599px) {
  .store-info__list {
    grid-template-columns: 100%;
  }
  .store-info__list dt {
    margin-top: 8px;
  }
}

.store-contact {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.store-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  flex: 1 1 0;
}
.store-contact .btn-tel {
  background: #00a0e9;
  color: #fff;
}
.store-contact .btn-line {
  background: #00c300;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .store-contact {
    flex-direction: column;
  }
}

.store-single .store-menu .tab-original.is-style-default .c-tabBody {
  padding: clamp(32px, 4vw, 48px) 0;
}

.store-single .step-accordion {
  padding-top: 0 !important;
}

/* mapは .store-map のみに限定してCSS出力を最小化 */
.store-map .map-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.store-map .map-wrap iframe,
.store-map .map-wrap img {
  width: 100%;
  height: 420px;
  display: block;
}

/* Catalog (generic) list - match store list look */
.catalog-info-container {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  gap: 48px;
  background-color: transparent;
}
@media screen and (max-width: 959px) {
  .catalog-info-container {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .catalog-info-container {
    flex-direction: column;
  }
}

.catalog-list-area {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  max-width: 248px;
}
@media screen and (max-width: 959px) {
  .catalog-list-area {
    flex-direction: row;
    justify-content: center;
    max-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .catalog-list-area {
    flex-wrap: wrap;
  }
}

.catalog-name-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  background-color: #29baba;
  color: white;
  border: none;
  border-radius: 8px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
  padding-right: 52px;
}
.catalog-name-item:hover, .catalog-name-item.active {
  background-color: #3bc8c8;
}
.catalog-name-item {
  position: relative;
}
.catalog-name-item::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(6px, 1vw, 10px);
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.catalog-name-item:hover::after {
  transform: translateY(-50%) translateX(4px);
}
@media screen and (max-width: 959px) {
  .catalog-name-item {
    justify-content: center;
    width: 100px;
    height: 48px;
    padding: 0 24px 0 12px;
  }
}

.catalog-name-group {
  border-radius: 8px;
  overflow: hidden;
  /* SP時：absolute なサブリストの高さ分だけ「押し下げスペース」を確保する */
}
@media screen and (max-width: 959px) {
  .catalog-name-group {
    position: relative;
    overflow: visible;
    padding-bottom: 0;
    transition: padding-bottom 0.3s ease;
  }
  .catalog-name-group.is-expanded {
    padding-bottom: 148px;
  }
}
@media screen and (max-width: 959px) and (max-width: 599px) {
  .catalog-name-group.is-expanded {
    padding-bottom: 196px;
  }
}
@media screen and (max-width: 599px) {
  .catalog-name-group {
    position: static;
  }
}
.catalog-name-group .catalog-name-item {
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}
@media screen and (max-width: 959px) {
  .catalog-name-group .catalog-name-item {
    width: 100%;
    border-radius: 8px;
  }
}

.catalog-sublist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 0;
  padding: 0 12px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  border-radius: 0 0 8px 8px;
}
@media screen and (max-width: 959px) {
  .catalog-sublist {
    position: absolute;
    top: 60px;
    left: calc(50% + 20px);
    transform: translateX(-50%);
    max-width: 540px;
    width: calc(100vw - 32px);
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    border-radius: 8px;
    overflow-y: scroll !important; /* hiddenに勝つために念のため指定 */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
    overscroll-behavior-y: contain; /* スクロール連鎖防止 */
  }
}
@media screen and (max-width: 599px) {
  .catalog-sublist {
    display: flex;
    flex-wrap: wrap;
    left: 0;
    transform: translateX(0);
  }
}
.catalog-sublist li {
  margin: 0;
  list-style: none;
  border: none;
}

.catalog-subitem {
  display: block;
  width: 100%;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  padding-left: 24px;
}
.catalog-subitem::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-image: url(../images/icons/icon_arrow/arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.catalog-subitem:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.catalog-subitem {
  padding: 12px 0 12px 16px;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .catalog-subitem {
    padding: 12px 16px 12px 16px;
  }
}

.catalog-details-area {
  position: relative;
  flex: 2;
  height: fit-content;
  background-color: white;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .catalog-details-area {
    width: 100%;
  }
}

.catalog-detail-card {
  display: none;
  padding: clamp(24px, 3vw, 32px) clamp(16px, 2.8vw, 32px);
  overflow: hidden;
}
.catalog-detail-card.active {
  display: grid;
  grid-template-columns: 200px 1fr; /* left fixed 280px, right fluid */
  gap: 24px;
  align-items: stretch;
}
@media screen and (max-width: 599px) {
  .catalog-detail-card.active {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.catalog-image-box {
  width: 100%;
  height: 100%;
}
.catalog-image-box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 959px) {
  .catalog-image-box img {
    height: 220px;
  }
}
@media screen and (max-width: 599px) {
  .catalog-image-box img {
    height: 160px;
  }
}

.catalog-data-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-data-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-height: 245px;
  overflow-y: scroll; /* always show vertical scrollbar when scrollable */
  overflow-x: hidden;
  scrollbar-gutter: stable; /* keep space for scrollbar to make it obvious */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}
.catalog-data-list::-webkit-scrollbar {
  width: 8px;
}
.catalog-data-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.catalog-data-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
}
.catalog-data-list {
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 959px) {
  .catalog-data-list {
    max-height: 140px;
  }
}
@media screen and (max-width: 599px) {
  .catalog-data-list {
    padding-left: 0 !important;
  }
}
.catalog-data-list li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-size: 16px;
  border: none;
}
.catalog-data-list li::after {
  content: "／";
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.3);
}
.catalog-data-list li:last-child::after {
  content: "";
  margin: 0;
}

.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 14px 24px;
  background-color: #29baba;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.1s ease, background-color 0.2s ease;
  position: relative;
}
.details-button::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(6px, 1vw, 10px);
  height: clamp(10px, 1.1vw, 12px);
  background-image: url(../images/icons/icon_arrow/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease-in-out all;
}
.details-button:hover::after {
  transform: translateY(-50%) translateX(4px);
}

@media screen and (max-width: 959px) {
  #repair-campaign.swell-block-fullWide {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/*--------------------------------------------------------
*
* 変数定義
*
--------------------------------------------------------*/
/*カラー*/
/*メインビジュアル用の背景色（グラデーション）*/
/* 余白 */
/* 角丸 */
/* レイアウト transform */
/* アニメーション */
/*WEBフォント（フォントファミリー）*/
.buying-trouble {
  margin-bottom: 128px;
}
@media screen and (max-width: 599px) {
  .buying-trouble {
    margin-bottom: 64px;
  }
}
.buying-trouble::before {
  position: absolute;
  content: "";
  bottom: -128px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 128px solid #29baba;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
}
@media screen and (max-width: 599px) {
  .buying-trouble::before {
    bottom: -64px;
    border-top: 64px solid #29baba;
  }
}

.buying-section {
  position: relative;
  /* 0-900 (images) + 500 (hold) + 1000 (scale) ≒ 2400px + viewport */
  height: calc(100vh + 1600px);
}

.buying-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.buying-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  /* Add will-change and transform origin for scaling */
  transform-origin: center center;
  will-change: transform, opacity;
  transition: opacity 0.5s ease;
  /* flexbox */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.buying-step.is-active {
  opacity: 1;
  pointer-events: auto;
}
.buying-step.step-1 {
  justify-content: center;
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .buying-step.step-1 {
    padding-top: clamp(80px, 8vw, 88px);
  }
}
.buying-step.step-1 h2 {
  margin-bottom: 24px !important;
  font-size: clamp(32px, 4vw, 48px);
}

.buying__bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .buying__bubbles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .buying__bubbles {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 10px;
  }
}
.buying__bubbles.illust {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: 0;
}
.buying__bubbles.illust .buying__bubble {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: clamp(100px, 16vw, 200px); /* Adjust image size */
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.buying__bubbles.illust .buying__bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.buying__bubbles.illust .buying__bubble::after {
  content: none;
}
.buying__bubbles.illust .buying__bubble img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.buying__bubble {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 16px;
  background: #fff;
  border: 6px solid #f8f8f8;
  border-radius: 12px;
  line-height: 1.6;
  color: #3c4141;
}
@media screen and (max-width: 599px) {
  .buying__bubble {
    flex-direction: column;
    padding: 12px 0 0;
  }
}
.buying__bubble {
  /* 吹き出しの三角（下側） */
}
.buying__bubble::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #f8f8f8 transparent transparent transparent;
}
.buying__bubble p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 959px) {
  .buying__bubble p {
    font-size: clamp(20px, 2.5vw, 24px);
  }
}
@media screen and (max-width: 599px) {
  .buying__bubble p {
    font-size: 13px;
  }
}
.buying__bubble {
  /* 左アイコン（丸背景） */
}
.buying__bubble .buying__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #f7f7f7;
}
.buying__bubble .buying__icon img {
  width: 44px;
  height: 86px;
  object-fit: contain;
  display: block;
}
.buying {
  /* Solution copy group */
}
.buying__solution {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.buying__solution .copy-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.buying__solution .sub-copy__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.buying__solution .char-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vw, 56px);
  height: clamp(40px, 5vw, 56px);
  border-radius: 50%;
  border: 2px solid currentColor; /* follow text color (white-font) */
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1;
}
.buying {
  /* Solution cards */
}
.buying-solution__content {
  position: relative;
  top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
}
@media screen and (max-width: 599px) {
  .buying-solution__content {
    top: 0;
    grid-template-columns: 1fr;
  }
}
.buying-solution__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .buying-solution__item {
    padding: 8px 16px 16px;
  }
}
@media screen and (max-width: 599px) {
  .buying-solution__item {
    flex-direction: row;
    gap: 16px;
  }
}
.buying-solution__item .item__icon {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 216px;
  height: 216px;
  padding-top: 20px;
  border-radius: 50%;
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .buying-solution__item .item__icon {
    width: auto;
    border-radius: 99px;
  }
}
@media screen and (max-width: 599px) {
  .buying-solution__item .item__icon {
    width: 64px;
    height: auto;
  }
}
.buying-solution__item .item__icon img {
  width: 97px;
  height: 153px;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 599px) {
  .buying-solution__item .item__icon img {
    height: auto;
  }
}
.buying-solution__item .item__body {
  display: grid;
  gap: 8px;
}
@media screen and (max-width: 599px) {
  .buying-solution__item .item__body {
    justify-items: start;
  }
}
.buying-solution__item .item__title {
  margin: 0 !important;
  font-size: 18px;
  font-weight: 700;
  color: #3c4141;
  text-align: center;
}
.buying-solution__item .item__desc {
  margin: 0;
  color: #3c4141;
  text-align: left;
  line-height: 1.8;
  font-size: 14px;
  opacity: 0.9;
}

.post_content .buying-solution__item .item__icon {
  margin-top: -24px !important;
}
@media screen and (max-width: 599px) {
  .post_content .buying-solution__item .item__icon {
    margin-top: 0 !important;
  }
}

/*--------------------------------------------------------
 * Step 4: 当店が高く売れる理由セクション
 *  - 現状の HTML 構造に合わせて、疑似要素で背景を構成
 *--------------------------------------------------------*/
/* セクション全体の余白・カウンターリセット */
.feature-cards {
  position: relative;
  padding: clamp(16px, 3vw, 32px) 0;
  counter-reset: feature-reason-step;
}
@media screen and (max-width: 599px) {
  .feature-cards {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.feature-cards {
  /* 各カード（01 / 02 / 03 のカウンターとドット背景） */
}
.feature-cards__card {
  position: relative;
  max-width: 1024px;
  margin: 0 auto clamp(48px, 10vw, 128px);
  padding-top: 48px;
  counter-increment: feature-reason-step;
}
@media screen and (max-width: 599px) {
  .feature-cards__card {
    padding-top: 0;
  }
}
.feature-cards__card {
  /* カウンター番号 */
}
.feature-cards__card::before {
  content: counter(feature-reason-step, decimal-leading-zero);
  position: absolute;
  top: 36px;
  left: 93%;
  transform: translateX(-50%);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: clamp(64px, 6.5vw, 96px);
  color: rgba(3, 180, 170, 0.3);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .feature-cards__card::before {
    top: -24px;
    left: auto;
    right: 20px;
    transform: unset;
  }
}
.feature-cards__card {
  /* ドット背景 */
}
.feature-cards__card::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 88%;
  max-width: 860px;
  height: 80%;
  transform: translateX(-50%);
  background-image: url("../images/object/pattern_dot_teal.svg");
  background-size: 10px;
  background-repeat: repeat;
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .feature-cards__card::after {
    top: 24px;
    left: auto;
    right: -16px;
    width: 100%;
    height: 100%;
    transform: translateX(0%);
  }
}
.feature-cards {
  /* 偶数カード */
}
.feature-cards__card:nth-of-type(even)::before {
  left: 6%;
}
.feature-cards__card:nth-of-type(even) .feature-cards__card-item {
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  /* 左下のサークルオブジェクトをカードに紐づけ */
}
.feature-cards__card:nth-of-type(even) .feature-cards__card-item::after {
  left: auto;
  right: -80px;
}
@media screen and (max-width: 599px) {
  .feature-cards__card:nth-of-type(even) .feature-cards__card-item {
    grid-template-columns: 1fr;
  }
}
.feature-cards__card:nth-of-type(even) .feature-cards__image {
  order: 2;
}
@media screen and (max-width: 599px) {
  .feature-cards__card:nth-of-type(even) .feature-cards__image {
    order: 1;
  }
}
.feature-cards__card:nth-of-type(even) .feature-cards__text {
  left: 48px;
  order: 1;
}
@media screen and (max-width: 599px) {
  .feature-cards__card:nth-of-type(even) .feature-cards__text {
    left: 0;
  }
}
.feature-cards {
  /* 画像＋テキストの1カード本体 */
}
.feature-cards__card-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .feature-cards__card-item {
    grid-template-columns: 1fr;
  }
}
.feature-cards__card-item {
  /* 左下のサークルオブジェクトをカードに紐づけ */
}
.feature-cards__card-item::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(3, 180, 170, 0.4);
  box-sizing: border-box;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .feature-cards__card-item::after {
    left: -40px;
    bottom: -120px;
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 599px) {
  .feature-cards__card-item::after {
    display: none;
  }
}
.feature-cards__image {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .feature-cards__image {
    height: 220px;
  }
}
.feature-cards__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-cards {
  /* テキストグループ */
}
.feature-cards__text {
  position: relative;
  left: -48px;
  display: flex;
  align-self: center;
  flex-direction: column;
  margin-top: 128px;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .feature-cards__text {
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .feature-cards__text {
    margin-top: 0;
    width: calc(100% - 32px);
  }
}
.feature-cards__text {
  /* テキストグループの背景 */
}
.feature-cards__text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 96px);
  height: calc(100% + 96px);
  background-color: #f8f8f8;
  border-radius: 8px !important;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .feature-cards__text::after {
    width: calc(100% + 32px);
    height: calc(100% + 48px);
  }
}
.feature-cards__text {
  /* カードタイトル */
}
.feature-cards__text h3 {
  margin: 0;
  letter-spacing: 2px;
  font-size: clamp(16px, 2vw, 20px) !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .feature-cards__text h3 {
    letter-spacing: 0.4px;
  }
}
.feature-cards__text {
  /* 通常テキスト */
}
.feature-cards__text p {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 2;
  letter-spacing: 0.05em;
  color: #3c4141;
}
@media screen and (max-width: 599px) {
  .feature-cards__text p {
    line-height: 1.6;
  }
}
.feature-cards__text {
  /* タグエリア */
}
.feature-cards__text .feature-cards__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.feature-cards__text {
  /* タグ */
}
.feature-cards__text .feature-cards__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #29baba;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #29baba;
  background-color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .feature-cards__text .feature-cards__tag {
    padding: 4px 8px;
  }
}

/* 対応エリア */
.buying-area .swell-block-accordion {
  margin-top: 24px;
}

/*--------------------------------------------------------
 * Step 6: 高く売るためのポイント（縦リスト＋ホバー画像）
 *--------------------------------------------------------*/
.feature-tips {
  padding-top: 0;
}
.feature-tips__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.feature-tips__list {
  list-style: none;
  margin: 0;
  padding: 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  counter-reset: feature-tips;
}
.feature-tips__item {
  position: relative;
  padding: clamp(24px, 3vw, 32px) 0;
  padding-left: 88px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  counter-increment: feature-tips;
}
@media screen and (max-width: 959px) {
  .feature-tips__item {
    padding: 20px 16px 20px 48px;
  }
}
.feature-tips {
  /* 各行の番号を li の疑似要素で表示 */
}
.feature-tips__item::before {
  content: counter(feature-tips, decimal-leading-zero) ".";
  position: absolute;
  top: 32px;
  left: 0;
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2vw, 20px);
  letter-spacing: 0.2em;
  color: #3c4141;
  opacity: 0.75;
}
@media screen and (max-width: 959px) {
  .feature-tips__item::before {
    top: 24px;
  }
}
@media screen and (max-width: 599px) {
  .feature-tips__item::before {
    top: 18px;
  }
}
.feature-tips__head {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.feature-tips__titles {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(4px, 1.2vw, 12px);
  align-items: baseline;
}
@media screen and (max-width: 599px) {
  .feature-tips__titles {
    flex-direction: column;
  }
}
.feature-tips__title-en {
  font-family: "Roboto", sans-serif;
  font-size: clamp(16px, 2.6vw, 26px);
  letter-spacing: 0.12em;
  color: #29baba;
}
.feature-tips__title-ja {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #3c4141;
}
.feature-tips__desc {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #3c4141;
  max-width: 600px;
}
.feature-tips {
  /* ホバーで表示される画像 */
}
.feature-tips__image {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%) translateX(16px);
  width: 44%;
  max-width: 400px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
}
.feature-tips__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1200px) {
  .feature-tips__image {
    right: -24px;
    width: 48%;
  }
}
@media screen and (max-width: 959px) {
  .feature-tips__image {
    display: none;
  }
}
.feature-tips {
  /* ホバー時に画像を表示 */
}
.feature-tips__item:hover .feature-tips__image, .feature-tips__item:focus-within .feature-tips__image {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/*--------------------------------------------------------
 * 中古販売セクション
 *--------------------------------------------------------*/
.used-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 1199px) {
  .used-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .used-grid {
    grid-template-columns: 1fr;
  }
}

.used-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.used-card:hover {
  transform: translateY(-4px);
}
.used-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.used-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.used-card:hover .used-card__image img {
  transform: scale(0.95);
}
.used-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 20px;
}
.used-card__title {
  text-align: center;
}
.used-card__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.8;
}
.used-card__link {
  margin-top: auto;
  font-size: 13px;
}
.used-card__link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #29baba;
  font-weight: bold;
  text-decoration: none;
}
.used-card__link a::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../images/icons/icon_arrow/arrow_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  transform: translateX(0);
  transition: transform 0.2s ease;
}
.used-card__link a:hover::after {
  transform: translateX(3px);
}

/*--------------------------------------------------------
 フィード横スライド Swiper
--------------------------------------------------------*/
/* EyeSmart Swiper Styles */
#swiper-feed {
  display: flex;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
#swiper-feed .swiper-wrapper {
  height: auto;
}
@media screen and (max-width: 599px) {
  #swiper-feed .swiper-slide {
    height: auto;
  }
}
#swiper-feed {
  /* スライド共通設定 */
}
#swiper-feed .es-slide {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
}
@media (max-width: 767px) {
  #swiper-feed .es-slide {
    padding: 24px 16px 36px;
  }
}
#swiper-feed .es-slide__header {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 500;
}
#swiper-feed .es-slide__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1.5rem;
}
#swiper-feed .es-slide__icon {
  padding: 1rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
}
#swiper-feed .es-slide__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
  white-space: pre-line;
  margin: 1rem 0;
}
#swiper-feed .es-slide__divider {
  width: 3rem;
  height: 4px;
  background-color: #e5e7eb;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
#swiper-feed .es-slide__text {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.625;
  white-space: pre-line;
  margin: 0;
}
#swiper-feed .es-slide__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}
#swiper-feed .es-slide__badge {
  font-size: 0.75rem; /* 12px */
  font-weight: 700;
  color: #6b7280;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  display: inline-block;
}
#swiper-feed .es-slide__number {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  font-size: 0.75rem;
  color: #d1d5db;
  font-family: monospace;
}
#swiper-feed .es-slide__brand {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
}
#swiper-feed .es-slide {
  /* CTA Button (Slide 5) */
}
#swiper-feed .es-slide__cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #2563eb;
  color: white !important;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  line-height: 1.4;
}
#swiper-feed .es-slide__cta-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
@media screen and (max-width: 599px) {
  #swiper-feed .swiper-button-prev {
    left: -8px;
  }
  #swiper-feed .swiper-button-next {
    right: -8px;
  }
}
#swiper-feed .swiper-button-prev::after,
#swiper-feed .swiper-button-next::after {
  font-size: 24px;
  font-weight: bold;
}
#swiper-feed .swiper-button-prev.swiper-button-disabled,
#swiper-feed .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}

/*--------------------------------------------------------
 EyeSmart Swiper：レイアウト拡張（#swiper-feed の既存定義は変更しない）
 左：画像＋吹き出し / 右：見出し＋横並びリスト＋補足
--------------------------------------------------------*/
.es-swiper-container .es-slide__layout {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 24px;
  padding-right: 48px;
}
@media screen and (max-width: 959px) {
  .es-swiper-container .es-slide__layout {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-right: 0;
  }
}
.es-swiper-container .es-slide__media {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .es-swiper-container .es-slide__media {
    flex-basis: auto;
  }
}
.es-swiper-container .es-slide__image {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.es-swiper-container .es-slide__image img,
.es-swiper-container .es-slide__image svg {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: contain;
}
@media (max-width: 767px) {
  .es-swiper-container .es-slide__image img,
  .es-swiper-container .es-slide__image svg {
    aspect-ratio: 3/2;
    height: auto;
  }
}
.es-swiper-container .es-slide__image svg {
  width: 72px;
  height: 72px;
}
.es-swiper-container .es-slide__bubble {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: white;
  background: #3c4141;
  font-weight: bold;
}
.es-swiper-container .es-slide__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #3c4141 transparent transparent transparent;
}
.es-swiper-container .es-slide__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.es-swiper-container .es-slide__heading {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #3c4141;
}
@media (max-width: 767px) {
  .es-swiper-container .es-slide__heading {
    font-size: 20px;
  }
}
.es-swiper-container .es-slide__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.es-swiper-container .es-slide__points li {
  padding: 6px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}
.es-swiper-container .es-slide__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
}

/*--------------------------------------------------------
 シームレス Swiper：seamless-swiper
--------------------------------------------------------*/
#swiper-feed.seamless-swiper {
  max-width: 660px;
}
#swiper-feed.seamless-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
#swiper-feed.seamless-swiper .es-slide {
  padding: 0;
}
#swiper-feed.seamless-swiper .es-slide .es-slide__layout {
  padding: 0;
}

/*--------------------------------------------------------
 続きを見るボタン　隠れた要素が表示
--------------------------------------------------------*/
/* コンテナ（見た目の調整用） */
.accordion-wrapper {
  max-width: 1024px;
  margin: 0 auto 48px;
  background-color: white;
  border-radius: 8px;
}

/* 隠れる要素 */
.hide-text {
  margin-bottom: 24px;
}

/* 続きを見るボタン */
.readmore {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  margin: 0 auto;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.readmore:hover {
  background-color: #555;
}
.readmore::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-bottom: 2px;
}
.readmore.on-click {
  background-color: #666;
}
.readmore.on-click::after {
  transform: rotate(225deg);
  margin-bottom: -2px;
}

.hero-pattern {
  background-color: #f8fafc;
  background-image: radial-gradient(#29baba 0.5px, transparent 0.5px), radial-gradient(#29baba 0.5px, #f8fafc 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.8;
}

.loader {
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #29baba;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ai-sparkle {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(41, 186, 186, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(41, 186, 186, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(41, 186, 186, 0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.media-text-section .swell-block-fullWide__inner.l-container {
  padding: 0;
}
@media screen and (max-width: 599px) {
  .media-text-section .swell-block-fullWide__inner.l-container {
    padding: 0 16px;
  }
  .media-text-section .swell-block-fullWide__inner.l-container br {
    display: none;
  }
}

/* スプリッドレイアウト */
.p-media-text {
  position: relative;
}
.p-media-text > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 128px; /* 画像とテキストの間隔 */
}
@media screen and (max-width: 599px) {
  .p-media-text > div {
    gap: 24px;
  }
}
.p-media-text {
  /* テキストブロックコンテナ */
}
.p-media-text__body {
  position: relative;
  flex: 1;
  max-width: 465px;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-media-text__body {
    max-width: clamp(380px, 38vw, 450px);
  }
}
@media screen and (max-width: 599px) {
  .p-media-text__body {
    max-width: 100%;
  }
}
.p-media-text__body:nth-child(2 of .p-media-text__body) {
  margin-right: calc(50% - 160px);
}
@media screen and (max-width: 959px) {
  .p-media-text__body:nth-child(2 of .p-media-text__body) {
    margin-right: auto;
    margin-left: 32px;
  }
}
@media screen and (max-width: 599px) {
  .p-media-text__body:nth-child(2 of .p-media-text__body) {
    margin-right: 0;
    margin-left: 0;
  }
}
.p-media-text__body p {
  line-height: 2;
  font-size: clamp(14px, 1.6vw, 16px);
}
@media screen and (max-width: 959px) {
  .p-media-text__body p {
    line-height: 1.6;
  }
  .p-media-text__body p br {
    display: none;
  }
}
.p-media-text {
  /* スプリッドレイアウト用の画像 */
}
.p-media-text__figure {
  position: absolute;
  inset: 0;
  max-width: 1512px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  /* SPでは画像を中央に配置 */
}
@media screen and (max-width: 599px) {
  .p-media-text__figure {
    position: relative;
    display: flex;
    justify-content: center;
    height: 200px;
    gap: 16px;
  }
}
.p-media-text__figure img {
  display: block;
  object-fit: cover;
  /* チラつき防止のおまじない */
  backface-visibility: hidden;
  will-change: transform;
}
.p-media-text__figure > figure {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  line-height: 0;
  /* SPでは画像を中央に配置 */
}
@media screen and (max-width: 599px) {
  .p-media-text__figure > figure {
    position: relative;
  }
}
.p-media-text__figure > figure {
  /* 左上 */
}
.p-media-text__figure > figure:nth-child(1 of figure) {
  top: -20px;
  left: -48px;
  max-width: 394px;
  height: 300px;
}
.p-media-text__figure > figure:nth-child(1 of figure) img {
  height: 154%;
}
@media screen and (max-width: 1200px) {
  .p-media-text__figure > figure:nth-child(1 of figure) {
    top: -20px;
    left: auto;
    right: 83%;
    max-width: 280px;
    height: 380px;
  }
}
@media screen and (max-width: 599px) {
  .p-media-text__figure > figure:nth-child(1 of figure) {
    top: 16px;
    right: 0;
    max-width: 180px;
    height: 180px;
  }
}
.p-media-text__figure > figure {
  /* 右上 */
}
.p-media-text__figure > figure:nth-child(2 of figure) {
  top: 80px;
  right: -8px;
  max-width: 280px;
  height: 480px;
}
.p-media-text__figure > figure:nth-child(2 of figure) img {
  height: 140%;
}
@media screen and (max-width: 1200px) {
  .p-media-text__figure > figure:nth-child(2 of figure) {
    top: 160px;
    right: auto;
    left: 83%;
    max-width: 160px;
    height: 420px;
  }
}
@media screen and (max-width: 599px) {
  .p-media-text__figure > figure:nth-child(2 of figure) {
    top: -8px;
    left: 0;
    max-width: 180px;
    height: 180px;
  }
}
.p-media-text__figure > figure {
  /* 右下 */
}
.p-media-text__figure > figure:nth-child(3 of figure) {
  bottom: 0;
  right: 292px;
  max-width: 280px;
  height: 420px;
}
.p-media-text__figure > figure:nth-child(3 of figure) img {
  height: 144%;
}
@media screen and (max-width: 1200px) {
  .p-media-text__figure > figure:nth-child(3 of figure) {
    bottom: 0;
    right: auto;
    left: 60%;
    max-width: 160px;
    height: 360px;
  }
}
@media screen and (max-width: 599px) {
  .p-media-text__figure > figure:nth-child(3 of figure) {
    bottom: 32px;
    left: 0;
    max-width: 180px;
    height: 180px;
  }
}

.cta-copy1 {
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 64px;
  gap: 48px;
  background-color: #29baba;
  border-radius: 8px;
}
@media screen and (max-width: 959px) {
  .cta-copy1 {
    flex-direction: column;
    gap: 16px;
    padding: 32px;
  }
}
.cta-copy1 > div {
  color: white;
}
.cta-copy1__title {
  flex: 1;
}
.cta-copy1__text {
  flex: 1;
}
.cta-copy1.bg-white > div {
  color: inherit;
}
.cta-copy1.bg-white h3 {
  color: #29baba;
}

/*--------------------------------------------------------------
flow PCでタイトル追従するフロー型レイアウト
--------------------------------------------------------------*/
/* 他でも使用するため# id="flow" で統一 */
.flow-section .l-contents .swell-block-columns__inner {
  justify-content: space-between;
  align-items: flex-start;
}
.flow-section .heading-content {
  position: sticky;
  top: 160px;
}
@media screen and (max-width: 959px) {
  .flow-section .heading-content h2.l-heading br {
    display: none;
  }
}
.flow-section .swell-block-step__title {
  margin-bottom: 16px;
  color: #29baba;
  font-size: clamp(18px, 2vw, 24px) !important;
}
.flow-section .swell-block-step .wp-block-columns {
  align-items: flex-start;
}
.flow-section .swell-block-step .wp-block-columns figure {
  width: 100%;
  margin-right: 16px;
}
.flow-section .swell-block-step .wp-block-columns figure img {
  object-fit: cover;
  border-radius: 8px;
}
.flow-section .swell-block-step .wp-block-columns .event-heading {
  margin-bottom: 4px;
  color: #29baba;
  font-size: 20px;
  font-weight: 500;
}

/*--------------------------------------------------------
AI Advisor (inline)
--------------------------------------------------------*/
.ai-advisor__textarea {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  resize: vertical;
  color: txt-color;
  background: white;
  box-shadow: inset 0 0 0 2px rgba(15, 23, 42, 0.06);
}

.ai-advisor__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22), inset 0 0 0 2px rgba(15, 23, 42, 0.06);
}

.ai-advisor__cta {
  margin-top: 16px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  background: #3bc8c8;
  color: white;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.ai-advisor__cta:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}

.ai-advisor__cta:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.ai-advisor__ctaIcon {
  font-size: 16px;
}

.ai-feedback {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #eaf4ff;
  font-weight: bold;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.8rem;
  border-radius: 8px;
}
.ai-feedback .ai-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(41, 186, 186, 0.3);
  border-top-color: #29baba;
  border-radius: 50%;
  animation: aiSpin 0.8s linear infinite;
}

.ai-error-msg {
  margin-top: 1rem;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  background: rgba(239, 68, 68, 0.22);
  padding: 0.5rem;
  border-radius: 6px;
}

/* Result area */
.ai-advisor-result__head {
  margin: 18px 0 12px;
}

.ai-advisor-result__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #3c4141;
}

.ai-advisor-result__summary {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.ai-advisor-result__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media screen and (max-width: 959px) {
  .ai-advisor-result__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 599px) {
  .ai-advisor-result__grid {
    grid-template-columns: 1fr;
  }
}
.ai-advisor-result__card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 14px 14px 12px;
}

.ai-advisor-result__cardTitle {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.ai-advisor-result__cardGoal {
  margin: 0 0 10px;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

.ai-advisor-result__list {
  margin: 0;
  padding-left: 18px;
}

.ai-advisor-result__listItem {
  margin: 0 0 8px;
}

.ai-advisor-result__itemTitle {
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
}

.ai-advisor-result__itemNote {
  margin-top: 2px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.ai-advisor-result__cta {
  margin-top: 10px;
  border-radius: 10px;
  background: #f1f5f9;
  padding: 10px 10px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  align-items: start;
}

.ai-advisor-result__ctaLabel {
  font-weight: 800;
  font-size: 12px;
  color: #0f172a;
}

.ai-advisor-result__ctaText {
  font-size: 12px;
  color: #334155;
  line-height: 1.6;
}

.ai-advisor-result__next {
  margin-top: 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 14px;
}

.ai-advisor-result__nextTitle {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.ai-advisor-result__nextList {
  margin: 0;
  padding-left: 18px;
}

.ai-advisor-result__nextItem {
  margin: 0 0 6px;
  color: #334155;
  line-height: 1.7;
}

.ai-advisor-result__pre {
  background: #0b1220;
  color: #e2e8f0;
  padding: 12px;
  border-radius: 10px;
  overflow: auto;
  white-space: pre-wrap;
}

@keyframes aiSpin {
  to {
    transform: rotate(360deg);
  }
}
.fade-video-wrap > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .fade-video-wrap > div {
    flex-direction: column-reverse;
    gap: 32px;
  }
}
.fade-video-wrap > div .text-block {
  max-width: 640px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .fade-video-wrap > div .text-block {
    max-width: 100%;
    width: 100%;
  }
}

/* 縦中央寄せ */
.fade-video-wrap.align-center > div {
  align-items: center;
}

/* ビデオコンテナ */
.fade-video-container {
  position: sticky;
  top: 0;
  right: 0;
  max-width: 720px;
  width: 50%;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .fade-video-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
.fade-video-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #f8f8f8;
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}
.fade-video-container {
  /* ビデオコンテナ半分の高さ */
}
.fade-video-container.half-height {
  height: 70vh;
}
@media screen and (max-width: 959px) {
  .fade-video-container.half-height {
    height: 100%;
  }
}

/* ビデオ */
.fade-video {
  --fade-ms: 600ms;
  opacity: 0;
  transition: opacity var(--fade-ms) ease;
  will-change: opacity;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}

/* ビデオアクティブ */
.fade-video.is-active {
  opacity: 1;
}

/* 動き苦手な人向けメディアクエリ */
@media (prefers-reduced-motion: reduce) {
  .fade-video {
    transition: none;
  }
}
/*--------------------------------------------------------
 パララックス効果用
--------------------------------------------------------*/
/* パララックス対象のコンテナ */
@media screen and (max-width: 599px) {
  .production-menu-grid.menu-grid.icon-large .item-grid:nth-child(odd) .menu-bubble {
    left: 0 !important;
    transform: translateX(0px) translateY(0);
  }
  .production-menu-grid.menu-grid.icon-large .item-grid:nth-child(even) .menu-bubble {
    left: auto !important;
    right: 0 !important;
    transform: translateX(0px) translateY(0);
  }
  .production-menu-grid.menu-grid.icon-large .item-grid:nth-child(even) .menu-bubble::before {
    left: auto !important;
    right: 80px !important;
  }
}
@media screen and (max-width: 599px) {
  .production-menu-grid.menu-grid.icon-large {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 599px) {
  .production-menu-grid.menu-grid.icon-large .item-grid > .wp-block-group__inner-container {
    flex-direction: column;
  }
}
.production-menu-grid.menu-grid.icon-large .item-grid .wp-block-image {
  width: 96px;
  height: 187px;
}
@media screen and (max-width: 599px) {
  .production-menu-grid.menu-grid.icon-large .item-grid .wp-block-image {
    width: 100%;
    height: auto;
  }
  .production-menu-grid.menu-grid.icon-large .item-grid .wp-block-image img {
    height: 224px;
  }
}

/*--------------------------------------------------------
レスポンシブ 部分的
--------------------------------------------------------*/
@media screen and (max-width: 1199px) {
  /* 最右カラム 非表示 */
  .post_content .cv-wrap .swell-block-columns__inner {
    justify-content: flex-end;
  }
  .column-blank {
    display: none;
  }
}
/*---------------------------------------------------------------
*
* レスポンシブ CSS max-width: 1023px
*
---------------------------------------------------------------*/
@media screen and (max-width: 1099px) {
  /*--------------------------------------------------------------
    余白調整 
    --------------------------------------------------------------*/
  /* メインビジュアル、TOP講師紹介 左余白 */
  .left-space-wrap {
    padding-left: 0;
  }
  #teacher .service-column {
    margin-left: 48px;
  }
  #teacher .service-column::before {
    left: -48px !important;
  }
  /*--------------------------------------------------------------
    fv メインビジュアル 
    --------------------------------------------------------------*/
  /* 余白 */
  /*--------------------------------------------------------------
    cv 冒頭CVボタン
    --------------------------------------------------------------*/
  .post_content .cv-wrap {
    padding: 12px 24px;
    /* 右寄せ */
  }
  .post_content .cv-wrap .swell-block-columns__inner {
    gap: 24px;
    justify-content: center;
  }
  .post_content .cv-wrap {
    /* 幅 660px */
  }
  .post_content .cv-wrap.first-cv .l-contents {
    width: auto;
    max-width: 530px;
    margin-top: 16px !important;
  }
  .post_content .cv-wrap.first-cv .l-contents::after {
    right: auto;
    left: -24px;
    width: 190px;
    height: 320px;
    background-image: url(../images/cv/cv_person_02.png);
  }
  .post_content .cv-wrap.first-cv .l-contents .swell-block-columns__inner {
    flex-direction: column;
    align-items: flex-end;
  }
  .post_content .cv-wrap.first-cv .l-contents .swell-block-column:not(:first-child) figure img {
    max-width: 230px;
  }
  .post_content .cv-wrap.first-cv .l-contents a {
    height: auto;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 1024px) {
  /*--------------- ボタン ----------------*/
  .btn-heading {
    padding: 0 16px;
  }
  /* 追従型ボタン 左下 非表示 */
  .btn-contact-fixed {
    display: none;
  }
  /* ページトップボタン */
  .p-fixBtnWrap {
    bottom: 4.5em;
    right: 1.2em;
  }
}
/*---------------------------------------------------------------
*
* レスポンシブ max-width: 959px
*
---------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  /*--------------- 共通 ----------------*/
  .__pc {
    display: none;
  }
  .__sp {
    display: inherit;
  }
  .dot-circle::before {
    top: 16px;
    left: -48px;
    width: 170px;
    height: 200px;
  }
  .dot-circle::after {
    top: -72px;
    right: -24px;
    width: 210px;
    height: 200px;
  }
  /*--------------- 外枠 ----------------*/
  .swell-block-fullWide .l-inner, .swell-block-fullWide__inner.l-container {
    padding: 0 48px;
  }
  .swell-block-fullWide#booking {
    padding: 0 !important;
  }
  /*--------------- ヘッダー ----------------*/
  .l-header__inner {
    padding: 16px 0;
  }
  .c-iconBtn {
    background-color: inherit;
    border: none;
  }
  .-img .c-headLogo__link {
    padding: 0;
  }
  .-img .c-headLogo__link .c-headLogo__img {
    filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.5));
  }
  .l-header {
    position: fixed !important;
  }
  .l-header__customBtn.sp_ {
    display: none;
  }
  /*--------------- ボタン ----------------*/
  .btn-heading {
    padding: 0 16px;
  }
  /*--------------------------------------------------------------
    top-index ページメニュー 4つ並び
    --------------------------------------------------------------*/
  #top-index {
    padding: 0;
  }
  /*--------------- menu list ----------------*/
  /* 3カラム 全幅 */
  .three-column-overall .swell-block-column {
    margin-bottom: 16px;
  }
  .three-column-overall .swell-block-column figure {
    height: 80px;
  }
  .three-column-overall .swell-block-column figure img {
    height: 100%;
  }
  .three-column-overall .swell-block-column .swell-block-button {
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    height: 80px;
  }
  .three-column-overall .swell-block-column .swell-block-button .swell-block-button__link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  /*--------------------------------------------------------------
    features 特徴
    --------------------------------------------------------------*/
  #features .column-heading {
    text-align: center;
  }
  #features .column-heading h3 {
    font-size: clamp(20px, 3vw, 32px);
  }
  #features .sub-heading {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background-color: rgba(248, 248, 248, 0.8);
    border-radius: 4px;
    z-index: 1;
  }
  #features .simple-column-a {
    margin-bottom: 48px;
  }
  #features .simple-column-a .column-txt {
    max-width: 100%;
    width: 100%;
  }
  #features .simple-column-a .column-img {
    position: relative;
    top: 0;
    width: 100%;
  }
  #features .simple-column-a:nth-of-type(odd) .column-img {
    margin-left: var(--swl-clmn-mrgn--x);
  }
  #features .simple-column-a:nth-of-type(odd) .column-txt {
    margin-left: var(--swl-clmn-mrgn--x);
  }
  #features .simple-column-a:nth-of-type(odd) .column-copy {
    margin-right: 0;
  }
  #features .simple-column-a:nth-of-type(even) .swell-block-columns__inner {
    flex-direction: column-reverse;
  }
  #features .simple-column-a:nth-of-type(even) .column-txt {
    width: calc(100% - 16px);
  }
  #features .simple-column-a:nth-of-type(even) .column-img {
    width: calc(100% - 16px);
    right: 0;
  }
  #features .simple-column-a:nth-child(2) {
    height: 100%;
  }
  /*--------------------------------------------------------------
    event イベント紹介
    --------------------------------------------------------------*/
  #event {
    padding-bottom: 80px !important;
  }
  /*--------------- flowセクション  ----------------*/
  .flow-section .heading-content {
    position: relative;
    top: 0;
  }
  .flow-section .l-contents {
    margin-bottom: 32px;
  }
  /*--------------------------------------------------------
    message 私たちについて
    --------------------------------------------------------*/
  .carrier-contents .swell-block-columns__inner {
    flex-direction: column-reverse;
  }
  .carrier-contents .swell-block-columns__inner:nth-last-child(1) img {
    height: 360px;
    object-fit: contain;
  }
  /*--------------------------------------------------------------
    CTAボタンエリア
    --------------------------------------------------------------*/
  .swell-block-fullWide.cta-section, .swell-block-fullWide.map-section {
    padding: 0 !important;
  }
  /*--------------------------------------------------------------
    背景の装飾
    --------------------------------------------------------------*/
  /* コース・料金｜Instagram */
  #course::before,
  .sns-section::before {
    top: -24px;
    width: 220px;
    height: 220px;
  }
  #course::after,
  .sns-section::after {
    right: -112px;
    top: -80px;
    width: 220px;
    height: 430px;
  }
  /*--------------------------------------------------------------
    *
    * デフォルトテンプレート
    *
    *--------------------------------------------------------------*/
  .page-template-sub-page .post_content {
    margin-top: 0;
  }
  .page-template-sub-page .summary-content {
    margin-bottom: 0 !important;
    padding: 0 20px 48px;
  }
  /*--------------------------------------------------------------
    *
    * event イベント紹介
    *
    *--------------------------------------------------------------*/
  .two-column-review .column-img {
    position: relative;
    top: 0;
    width: calc(var(--clmn-w) - var(--swl-clmn-mrgn--x));
    margin: 0 0 0 var(--swl-clmn-mrgn--x);
    overflow: hidden;
  }
  .two-column-review .column-img img {
    height: 300px;
  }
  .two-column-review .column-heading {
    margin-bottom: clamp(24px, 4vw, 40px);
  }
  .two-column-review .column-heading h2 {
    text-align: center;
  }
  .two-column-review .swell-block-columns__inner {
    flex-direction: column-reverse;
  }
  .two-column-review {
    /* 以下テキストブロック */
  }
  .two-column-review .column-copy {
    width: calc(var(--clmn-w) - var(--swl-clmn-mrgn--x));
  }
}
/*---------------------------------------------------------------
*
* レスポンシブ max-width: 781px
*
---------------------------------------------------------------*/
@media screen and (max-width: 781px) {
  /*--------------- テキスト ----------------*/
  .br-tb {
    display: block;
  }
  .large-txt {
    font-size: 26px;
  }
  .post_content .profile-detail .heading-middle {
    align-items: center;
  }
  .post_content .profile-detail h2::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .post_content .profile-detail .heading-sub {
    text-align: center;
  }
  .post_content .profile-detail .heading-sub::before {
    left: -25px;
  }
  /*--------------- ヘッダー ----------------*/
  /* 電話番号 */
  .header-phone-sp a {
    padding: 4px 8px 4px 32px;
  }
  .header-phone-sp .header-tel {
    letter-spacing: 1px;
    font-size: 18px;
  }
  .header-phone-sp .header-tel::before {
    left: -22px;
  }
  .header-phone-sp .operation-time .txt {
    margin-right: 0;
  }
  /*--------------- メインビジュアル ----------------*/
  /* タイトル トラブル例 */
  .mv-title-content {
    max-width: 350px;
  }
  .mv-title-content .mv-title-box .content-trouble {
    position: relative;
    margin-bottom: 15px;
    padding-left: 80px;
  }
  .mv-title-content .mv-title-box .content-trouble::before {
    position: absolute;
    content: "";
    top: 0;
    left: 15px;
    width: 70px;
    height: 70px;
    background-image: url(../images/icon/icon_driver_pink.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner {
    margin: 0 !important;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column {
    margin: 0 7px 7px 0 !important;
    padding: 5px 10px;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column:not(:first-child) {
    margin-right: 0 !important;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column:last-child {
    margin-bottom: 0 !important;
    padding: 5px 18px;
  }
  .mv-title-content .mv-title-box .content-trouble .swell-block-columns__inner .swell-block-column p {
    font-size: 14px;
  }
  .mv-title-content .mv-title-box .main-title {
    margin-bottom: 5px;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner {
    margin: 0 !important;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column {
    margin: 0 auto !important;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column h1 {
    display: inherit;
    padding-left: 0;
    line-height: 1;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column h1::before {
    content: none;
  }
  .mv-title-content .mv-title-box .main-title .swell-block-columns__inner .swell-block-column h1 .font-yColor {
    line-height: 1.4;
  }
  .mv-title-content .mv-title-box .content-solution {
    margin-bottom: 50px !important;
  }
  .mv-title-content .mv-title-box .content-solution .swell-block-columns__inner {
    margin: 0;
  }
  .mv-title-content .mv-title-box .content-solution .swell-block-columns__inner .swell-block-column {
    margin: 0 7px 0 0 !important;
    padding: 5px 10px;
  }
  .mv-title-content .mv-title-box .content-solution .swell-block-columns__inner .swell-block-column p {
    font-size: 14px;
  }
  .mv-title-content .mv-btn a {
    width: 280px;
    font-size: 16px;
  }
  /*--------------- cv cvボタン ----------------*/
  .cv-main-pc {
    display: none;
  }
  .cv-main-sp {
    display: block;
  }
  .main-cv .cv-feature {
    width: 50%;
    max-width: 390px;
  }
  .main-cv .cv-person {
    bottom: 52px;
    width: 44%;
  }
  /*--------------- footer widget フッター直前 access ----------------*/
  #before_footer_widget .access-wrap {
    /* アクセス */
  }
  #before_footer_widget .access-wrap .footer-map iframe {
    /* ビル写真 Googleマップ */
    height: 400px;
  }
  /*--------------- カラム ----------------*/
  /* 2カラム 枠あり */
  .two-column-b h4 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
  .two-column-b .swell-block-column {
    margin-top: 0;
    margin-bottom: inherit !important;
  }
  /*--------------- デフォルトテンプレート ----------------*/
  .page-template-sub-page .summary-content {
    align-items: flex-start !important;
    margin-bottom: 10px !important;
  }
  .page-template-sub-page .summary-content p {
    display: contents;
  }
  .page-template-sub-page .no-space-table.wp-block-group {
    flex-wrap: wrap;
  }
  .page-template-sub-page .no-space-table.wp-block-group .wp-block-table {
    width: 48%;
  }
  .page-template-sub-page .no-space-table.wp-block-group table tr td:last-child {
    width: 30px;
  }
}
/*---------------------------------------------------------------
*
* レスポンシブ max-width: 599px / 499px
*
---------------------------------------------------------------*/
@media screen and (max-width: 599px) {
  /*--------------- 共通CSS ----------------*/
  .br-sp {
    display: block !important;
  }
  .swell-block-fullWide .l-inner,
  .swell-block-fullWide__inner.l-container,
  .l-inner {
    padding: 0 16px;
  }
  .shining::before {
    top: -40px;
    right: -20px;
    transform: unset;
  }
  .btn-heading .banzai::before, .btn-heading .banzai::after {
    content: none !important;
  }
  .dot-circle::before {
    top: 96px;
    left: -48px;
    width: 118px;
    height: 141px;
  }
  .dot-circle::after {
    top: -72px;
    right: -16px;
    width: 120px;
    height: 120px;
  }
  /*--------------- ボタン ----------------*/
  /* ボタン用 見出し */
  .btn-heading {
    padding: 0;
    line-height: 1.6;
  }
  .btn-heading p {
    text-align: left;
  }
  .btn-heading br {
    display: none;
  }
  /*--------------------------------------------------------
  3カラム推奨  上下テキスト＋中心にアイコン リッチカラム
  --------------------------------------------------------*/
  .space-bottom {
    padding-bottom: 48px;
  }
  /*--------------- テキスト ----------------*/
  .large-txt {
    font-size: clamp(24px, 2vw, 26px);
  }
  .heading-line .heading-bg-txt {
    margin-bottom: -65px;
    font-size: 65px;
  }
  /* 見出し下 補足テキスト */
  .txt-center.pc {
    text-align: left;
  }
  .txt-center.pc br {
    display: none;
  }
  .btn-heading .sun-burst {
    text-align: center;
    font-size: 19px;
  }
  .btn-heading .sun-burst::before {
    left: -16px;
  }
  .bg-txt {
    letter-spacing: 5px;
  }
  /*--------------------------------------------------------------
    Instagram
    --------------------------------------------------------------*/
  /* インスタグラム用ボタン */
  /*--------------- デフォルトテンプレート ----------------*/
  .page-template-sub-page,
  .page-template-default {
    /* 全体の余白調整 */
  }
  .page-template-sub-page #content,
  .page-template-default #content {
    padding: 0px 0 0;
  }
  /* サービス 目次 */
  .service-index {
    gap: 5px !important;
  }
  .service-index figure {
    width: 110px;
  }
  /*--------------------------------------------------------------
    course コース・料金
    --------------------------------------------------------------*/
  /* コース メニューリスト */
  #page-index {
    padding-top: 48px !important;
  }
  /* コース別カテゴリー */
  #service .column-section .two-column-normal {
    margin-bottom: 48px;
  }
  #service .column-section {
    /* 画像ブロック */
  }
  #service .column-section .column-img {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin-bottom: -48px;
  }
  #service .column-section .column-img img {
    height: 220px;
    object-position: center !important;
    border-radius: 0 8px 8px 0;
  }
  #service .column-section {
    /* 以下テキストブロック */
  }
  #service .column-section .column-copy {
    width: calc(var(--clmn-w) - var(--swl-clmn-mrgn--x));
    margin: 0 0 0 var(--swl-clmn-mrgn--x);
  }
  #service .column-section .column-copy .column-heading {
    display: inline-block;
    width: auto;
    margin-bottom: 0 !important;
    padding: 16px;
    background-color: #f0f3f6;
    border-radius: 4px;
    font-feature-settings: "palt";
  }
  #service .column-section .column-copy .column-heading h2 {
    letter-spacing: 1.5px;
  }
  #service .column-section #chamber .column-copy .column-heading h2 {
    letter-spacing: 0;
  }
  #course-category {
    padding-bottom: 0;
  }
  #course-category .student-review-box {
    padding: 16px;
  }
  #course-category {
    /* 室内楽 カテゴリー */
  }
  #course-category #chamber {
    /* 以下テキストブロック */
  }
  #course-category #chamber .column-img img {
    height: 220px;
  }
  #course-category #chamber {
    /* 以下テキストブロック */
  }
  #course-category #chamber .column-copy .column-heading {
    margin-bottom: 16px !important;
  }
  .btn-free-lesson {
    text-align: center !important;
  }
  /*--------------------------------------------------------------
    teacher 講師紹介
    --------------------------------------------------------------*/
  .staff-section:not(:last-child) {
    padding-bottom: 0px !important;
  }
  .staff-section .l-contents .swell-block-columns__inner {
    gap: 0;
  }
  .staff-section .l-contents .swell-block-columns__inner .u-mb-30 {
    margin-bottom: 12px !important;
  }
  .staff-section .column-eyecatch {
    margin-bottom: 0 !important;
  }
  .staff-section .column-eyecatch > div {
    display: flex;
    gap: 16px;
  }
  .staff-section .column-eyecatch > div > figure {
    width: 70%;
  }
  .staff-section .column-eyecatch > div > figure img {
    width: 100%;
    height: 230px;
    border-radius: 4px;
  }
  .staff-section .column-eyecatch .name-column > div {
    display: block;
  }
  .staff-section .column-eyecatch .name-column > div .course-name {
    font-size: 14px;
  }
  .staff-section .column-eyecatch .name-column > div .teacher-name {
    display: block;
    margin-bottom: 16px;
  }
  .staff-section .column-eyecatch .name-column > div .teacher-name .teacher-name__ja::before {
    content: none;
  }
  .staff-section .column-eyecatch .name-column > div > figure {
    width: 100%;
  }
  .staff-section .column-eyecatch .name-column > div > figure img {
    height: 120px;
    border-radius: 4px;
  }
  .staff-section .main-content {
    width: calc(var(--clmn-w) - var(--swl-clmn-mrgn--x));
  }
  /*--------------------------------------------------------
    event イベント紹介
    --------------------------------------------------------*/
  .two-column-review .column-heading .wp-block-group__inner-container {
    text-align: center;
  }
  .two-column-review .column-img img {
    height: 220px;
  }
  .two-column-review .column-heading h2 {
    letter-spacing: 2px !important;
    text-align: center;
    font-size: 24px;
    font-feature-settings: "palt";
  }
  .two-column-review .read-txt {
    position: relative;
    display: inline-block;
    margin-bottom: 12px !important;
    padding: 8px 8px 3px 0;
    color: white;
    text-indent: 0;
    font-size: 20px;
  }
  .two-column-review .read-txt::before, .two-column-review .read-txt::after {
    z-index: -1;
  }
  .two-column-review .read-txt::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 48px);
    background-color: #29baba;
    border-radius: 2.6666666667px;
    font-weight: bold;
  }
  .two-column-review .read-txt::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-family: "Font Awesome 6 Free";
    width: 100vw;
    height: 1px;
    background-color: #29baba;
  }
  /*--------------------------------------------------------
    contact お問い合わせフォーム
    --------------------------------------------------------*/
  .contact-wrap .l-heading::before {
    top: -60px;
  }
}
@media screen and (max-width: 499px) {
  .post_content .cv-wrap.first-cv {
    padding-top: 64px;
  }
  .post_content .cv-wrap.first-cv .l-contents {
    padding: 0;
    border-radius: 0;
    border: none;
  }
  .post_content .cv-wrap.first-cv .l-contents::after {
    left: calc(50% - 150px);
    bottom: auto;
    top: -100px;
    width: 300px;
    height: 138px;
    background-image: url(../images/cv/cv_person_right_bubble_sp.png);
  }
  .post_content .cv-wrap.first-cv .l-contents .swell-block-columns__inner {
    align-items: center;
  }
  .three-column-overall a {
    padding: 12px;
  }
  #work .l-inner::before, #work .l-inner::after {
    content: none;
  }
}

/*# sourceMappingURL=style.css.map */
