@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Shippori+Mincho+B1:wght@500;600&display=swap');

/*-----------------------

         変数

-----------------------*/
:root {
  --baseColor: #646464;
  --mainColor: #d65789;
  --subColor: #9771a5;
  --accentColor: #7dc9c7;
  --colorW: #ffffff;
  --base50Color: #b2b2b2;
  --base10Color: #efefef;
  --main50Color: #eaabc4;
  --sub50Color: #cbb8d2;
  --accent50Color: #bee4e3;
  --main10Color: #faeef3;
  --sub10Color: #f5f1f6;
  --accent10Color: #f2faf9;
  /* メインビジュアルのキャッチ用半透明グラデーションバー */
  --mvBar: linear-gradient(135deg, rgba(214, 87, 137, 0.92) 0%, rgba(151, 113, 165, 0.92) 100%);
}

/*-----------------------

         COMMON

-----------------------*/
body {
  width: 100%;
  color: var(--baseColor);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  /* 英数字＝EB Garamond／和文＝Shippori Mincho B1（先頭にGaramondを置き欧文だけ差し替え） */
  font-family: 'EB Garamond', "Shippori Mincho B1", "Noto Serif JP", serif;
}

/*-----------------------

         HEADER

-----------------------*/
header {
  padding: 1.8rem 12.5rem 0 3.5rem;
  border-bottom: none;
}
.hdr-inner {
  align-items: center;
  padding-bottom: 1rem;
}
header .right-Area {
  align-items: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

/* マイページメニュー */
.mypage-list::before {
  background: var(--mainColor) !important;
}

/* ログインリンク */
header p.login a,
header .right-Area .login a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--baseColor);
}
header p.login img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* ログインアイコンを webp画像 → メインカラーのSVG人物アイコンに（PCヘッダー/ドロワー/SP 共通）。
   mask で形を抜き、色は background-color: var(--mainColor) で着色。 */
header .login a img { display: none; }
header .login a::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  background-color: var(--mainColor);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2c-4.418 0-8 2.239-8 5v1h16v-1c0-2.761-3.582-5-8-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2c-4.418 0-8 2.239-8 5v1h16v-1c0-2.761-3.582-5-8-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* SPヘッダーのログインアイコン（テキスト併記なので小さめ） */
header .sp .login.sp-login a::before { width: 1.5rem; height: 1.5rem; }

/* 会員ログインをピンク枠ボタン化（PCヘッダー右上のみ／ドロワー・他リンクは対象外）。
   サロン・店舗を探す(.btn-shop)と同系の白地＋ピンク枠＋ピンク文字。 */
header .right-Area .login { margin: 0; }
header .right-Area .login a {
  background: #fff;
  border: 1.5px solid var(--mainColor);
  color: var(--mainColor) !important;
  border-radius: 10rem;
  /* お問い合わせ(.hdr-btn)の padding:0.65rem 1.8rem(枠なし)と外形を揃える。
     枠1.5pxぶんを padding から差し引く（box計算で同じ高さ・余白に）。 */
  padding: calc(0.65rem - 1.5px) calc(1.8rem - 1.5px);
  line-height: 1.4;
  font-weight: 600;
  transition: background 0.2s;
}
header .right-Area .login a:hover {
  background: var(--main10Color);
  text-decoration: none !important;
}

/* ドロワー内のログイン＋SPヘッダーのログインも、会員ログインと同じピンク枠ボタンに。 */
header .drawer-nav .login a,
header .sp .sp-login a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1.5px solid var(--mainColor);
  color: var(--mainColor) !important;
  border-radius: 10rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background 0.2s;
}
/* ドロワーは「アイコン＋ログイン」のピル（PCボタンと同じ外形）。中央寄せ。 */
header .drawer-nav .login { text-align: center; }
header .drawer-nav .login a {
  padding: calc(0.65rem - 1.5px) calc(1.8rem - 1.5px);
  line-height: 1.4;
}
/* SPヘッダーは「アイコン＋会員ログイン」をコンパクトな枠ボタンで。 */
header .sp .sp-login a {
  padding: 0.4rem 1.1rem;
  gap: 0.3rem;
  font-size: 1.1rem;
}
header .drawer-nav .login a:hover,
header .sp .sp-login a:hover { background: var(--main10Color); }

/* ヘッダーボタン共通 */
.hdr-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 10rem !important;
  padding: 0.65rem 1.8rem !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none !important;
  transition: opacity 0.2s;
  border: none !important;
  cursor: pointer;
}
.hdr-btn:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

/* お問い合わせボタン */
.btn-inquiry {
  background: var(--subColor) !important;
  color: #fff !important;
}

/* サロン・店舗を探すボタン */
.btn-shop {
  background: #fff !important;
  border: 1.5px solid var(--mainColor) !important;
  color: var(--mainColor) !important;
}

/* ハンバーガー - mainColor円形・白2本線 */
.drawer-hamburger {
  position: fixed !important;
  top: 1.2rem !important;
  right: 2rem !important;
  width: 7.6rem !important;
  height: 7.6rem !important;
  padding: 0 !important;
  background: var(--mainColor) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1100 !important;
}
/* アイコン（白2本線・中央・短め・間隔狭め） */
.drawer-hamburger-icon {
  background-color: transparent !important;
  height: 2px !important;
  margin-top: 0 !important;
  width: 40% !important;
}
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  background-color: #fff !important;
  height: 2px !important;
  width: 100% !important;
}
.drawer-hamburger-icon:before {
  top: -3px !important;
}
.drawer-hamburger-icon:after {
  top: 3px !important;
}
.drawer-open .drawer-hamburger {
  background: var(--mainColor) !important;
}
.drawer-open .drawer-hamburger-icon:before {
  top: 0 !important;
}
.drawer-open .drawer-hamburger-icon:after {
  top: 0 !important;
}
.drawer-hamburger .text {
  display: none;
}

/* ナビゲーション */
.navi {
  justify-content: flex-end;
  padding-bottom: 0.8rem;
  margin: 0.5rem 0 0;
}
header nav ul > li a {
  font-size: 1.4rem;
  font-weight: 500;
}
header nav ul > li:not(:last-child) a::after {
  content: "｜";
  padding: 0 0.8rem;
  color: var(--base50Color);
  font-weight: 300;
}

/*-----------------------

         FOOTER

-----------------------*/
footer.main-footer {
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  padding: 5rem 0 3rem;
  margin-top: 9rem;
  border-top: none;
}
.ftr-navi .ftr-navi-main,
.ftr-navi .ftr-navi-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  gap: 0;
  margin: 0;
}
.ftr-navi .ftr-navi-main {
  margin-bottom: 1.5rem;
}
.ftr-navi .ftr-navi-sub {
  margin-bottom: 3rem;
}
.ftr-navi li {
  display: inline-flex;
  align-items: center;
  line-height: 2;
}
.ftr-navi .ftr-navi-main li:not(:last-child)::after {
  content: "／";
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0.8rem;
  font-weight: 300;
}
.ftr-navi .ftr-navi-sub li:not(:last-child)::after {
  content: "／";
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0.8rem;
  font-weight: 300;
}
.ftr-navi a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}
.ftr-navi a:hover {
  color: #fff;
  opacity: 0.8;
}
footer p.logo {
  padding-top: 2.5rem;
  max-width: 22rem;
  margin: 0 auto;
}
footer p.logo img {
  width: 100%;
  height: auto;
}
.ftr-address {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.9;
  margin: 2rem 0 0.5rem;
  letter-spacing: 0.03em;
}
footer.main-footer p.copy {
  padding: 0.5rem 0 1rem;
}
footer.main-footer p.copy small {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}
.copylight strong {
  color: #fff !important;
  font-weight: 400;
  font-size: 1.2rem;
}

/*-----------------------

      重要事項・免責事項

-----------------------*/
.disclaimer-wrap {
  margin-top: clamp(5rem, 5vw, 9rem);
  margin-bottom: 0;
}
.disclaimer-wrap + footer.main-footer {
  margin-top: 4rem;
}
.disclaimer-inner {
  /* コンテンツ幅をFAQ（.ct-inner-narrow）に合わせる */
  max-width: 86rem;
  margin-inline: auto;
  background: var(--main10Color);
  border-radius: 0.8rem;
  padding: 2.5rem 3rem 2rem;
  position: relative;
  padding-top: 3.5rem;
}
.disclaimer-tag {
  display: inline-block;
  background: var(--mainColor);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.35rem 1.6rem 0.45rem;
  border-radius: 10rem;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  position: absolute;
  top: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
}
/* 見出し付きセクション形式 */
.disclaimer-sections {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.disclaimer-block {
  margin: 0;
}
.disclaimer-heading {
  /* mainColorの軽いトーン（デザインカンプ実測値） */
  color: #e489ac;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 0.3rem;
  letter-spacing: 0.03em;
}
.disclaimer-block p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--baseColor);
  margin: 0;
}

/*-----------------------

      免責下部バナー
      （PC:footer-banner_pc / SP:footer-banner_sp を .pc/.sp で出し分け）

-----------------------*/
.footer-banner-wrap {
  /* 免責(margin-bottom:0)とフッターの間隔を担保 */
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.footer-banner-wrap .container {
  /* デザイン準拠：中央寄せの小さめバナー */
  max-width: 80rem;
  margin-inline: auto;
}
.footer-banner-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s;
}
.footer-banner-link:hover {
  opacity: 0.9;
}
.footer-banner-img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width:559px) {
  .footer-banner-wrap {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

/*-----------------------

      下層ページ タイトルエリア

-----------------------*/
.content-header {
  background: transparent !important;
  text-align: center;
  padding: 7rem 5vw 3rem !important;
  margin-bottom: 0 !important;
}
/* 下層ページのコンテンツ余白（タイトル直下のセクションとの間隔を詰める） */
.container:has(> .content-wrapper) { margin-bottom: clamp(1.5rem, 3vw, 3rem) !important; }
.page-header {
  font-size: clamp(5rem, 8vw, 12rem) !important;
  font-style: normal !important;
  font-family: 'EB Garamond', serif !important;
  font-weight: 400 !important;
  text-align: center !important;
  padding-inline: 0 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.2;
  border-bottom: none;
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
}
.content-header::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 90rem;
  margin: 3rem auto 0;
  height: 1px;
  background: linear-gradient(90deg, var(--mainColor), var(--subColor));
  border-top: none;
}

/*-----------------------

      下層ページ サブタイトル

-----------------------*/
.page-subtitle {
  display: block !important;
  font-family: "Shippori Mincho B1", serif !important;
  font-style: normal !important;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem) !important;
  font-weight: 500 !important;
  color: var(--baseColor) !important;
  -webkit-text-fill-color: var(--baseColor) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  letter-spacing: 0.1em !important;
  margin-top: 1.5rem !important;
}

/*-----------------------

      SP ログインアイコン

-----------------------*/
.sp .hdr-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
}
.sp .hdr-inner h1 {
  flex: 1;
  min-width: 0;
}
.sp-login {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sp-login img,
.sp-login .img-circle {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: block;
}

/*-----------------------

      メインビジュアル

-----------------------*/
/* 写真コラージュ（PC/SP出し分けはHTMLのpictureで対応） */
.top-mv {
  margin-bottom: 0;
}
.top-mv-wrap {
  position: relative;
  line-height: 0;
}
.top-mv-photo img {
  width: 100vw;
  display: block;
}

/* 写真にオーバーレイするキャッチコピー（左端を揃えて縦積み） */
.top-mv-catch {
  position: absolute;
  left: clamp(2rem, 8vw, 14rem);
  bottom: clamp(0.5rem, 1.2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 1.6vw, 2.2rem);
  line-height: 1.4;
}
/* リード・タイトルとも同じグラデーションバー */
.top-mv-lead,
.top-mv-title {
  margin: 0;
  color: var(--colorW);
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 0.6rem;
  background: var(--mvBar);
}
.top-mv-lead {
  padding: 0.25rem 2rem 0.35rem;
  font-size: clamp(2rem, 3.2vw, 4rem);
}
.top-mv-title {
  display: inline-block;
  padding: 0.35rem 2rem 0.5rem;
  font-size: clamp(2.4rem, 4vw, 5.2rem);
}
/* PCは「ヘルシー耳ツボダイエット」を1本のバーで表示 */
.top-mv-title span {
  display: inline;
}

/* 写真下のリード文（左端をキャッチに揃える） */
.top-mv-sub {
  text-align: left;
  margin: 2.5rem 0 0;
  padding-left: clamp(2rem, 8vw, 14rem);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 500;
  color: var(--baseColor);
  letter-spacing: 0.05em;
}
/* SP専用の改行（PCでは無効） */
.br-sp {
  display: none;
}
/* メインビジュアル SP（縦型コラージュ・左寄せ／下地は左端に密着） */
@media screen and (max-width:559px) {
  .top-mv-catch {
    left: 0;
    right: auto;
    transform: none;
    bottom: clamp(4rem, 13vw, 6rem);
    align-items: flex-start;
    width: auto;
    max-width: 100%;
    text-align: left;
  }
  /* リード・タイトルとも左端は直角（密着）・右角のみ丸める */
  .top-mv-lead {
    padding: 0.3rem 1.6rem 0.4rem;
    font-size: clamp(2rem, 7vw, 3rem);
    border-radius: 0 0.6rem 0.6rem 0;
  }
  /* SPは「ヘルシー」「耳ツボダイエット」を2本のバーに分けて表示 */
  .top-mv-title {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0;
    background: none;
  }
  .top-mv-title span {
    display: inline-block;
    padding: 0.3rem 1.6rem 0.5rem;
    font-size: clamp(2.6rem, 10vw, 4rem);
    border-radius: 0 0.6rem 0.6rem 0;
    background: var(--mvBar);
  }
  .top-mv-sub {
    margin-top: 1.8rem;
    padding-left: 1.6rem;
    text-align: left;
    font-size: clamp(1.8rem, 5.2vw, 2.4rem);
  }
  .br-sp {
    display: inline;
  }
}

/*-----------------------

      追従CTAボタン
      （PC:右側フローティング / SP:画面下部固定）

-----------------------*/
.floating-cta {
  position: fixed;
  right: clamp(1rem, 2vw, 3rem);
  top: 58%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}
.floating-cta a {
  display: block;
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.floating-cta a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.floating-cta img {
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2));
}
.floating-cta img.cta-sp {
  display: none;
}
/* メニュー展開中は追従CTAを隠す */
.drawer-open .floating-cta {
  display: none;
}
.floating-cta-salon img.cta-pc {
  width: clamp(10.5rem, 11.5vw, 13.5rem);
}
/* グラデ正円は少し左にずらして配置（重なりは作らない） */
.floating-cta-apply {
  margin-right: 1rem;
}
.floating-cta-apply img.cta-pc {
  width: clamp(10rem, 10.5vw, 12.5rem);
}

/* SP：画面下部に横ピルを左右半分ずつ固定（半透明黒の下地付き） */
@media screen and (max-width:559px) {
  .floating-cta {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.7rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
  }
  .floating-cta a {
    flex: 1 1 50%;
    min-width: 0;
    margin: 0;
  }
  .floating-cta img.cta-pc {
    display: none;
  }
  .floating-cta img.cta-sp {
    display: block;
    width: 100%;
    filter: none;
  }
  /* 固定バーで隠れないよう本文末尾に余白（トップページのみ） */
  .body-page-detail-top {
    padding-bottom: clamp(7rem, 19vw, 9rem) !important;
  }
}

/*-----------------------

      レスポンシブ

-----------------------*/
@media screen and (max-width:1440px) {
  header .navi .flex {
    justify-content: flex-end;
  }
}
@media screen and (max-width:1368px) {}
@media screen and (max-width:1280px) {}
@media screen and (max-width:1024px) {
  header {
    padding: 1.5rem 11rem 0 2rem;
  }
  .hdr-btn {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
  }
}
@media screen and (max-width:559px) {
  .disclaimer-inner {
    padding: 3rem 2rem 1.5rem;
  }
  .disclaimer-heading,
  .disclaimer-block p {
    font-size: 1.3rem;
  }
  .disclaimer-sections {
    gap: 1.3rem;
  }
  header {
    /* 右はハンバーガー(right:1rem＋丸ボタン約5rem)用の確保。会員ログインを近づけるため8rem→6.5remに */
    padding: 1.2rem 6.5rem 1rem 1rem;
    border-bottom: none;
  }
  .hdr-inner {
    padding-bottom: 0;
  }
  .hdr-btn {
    display: none;
  }
  .drawer-hamburger {
    width: 5rem !important;
    height: 5rem !important;
    right: 1rem !important;
    top: 1rem !important;
  }
  /* SPは円が小さいので線の間隔も詰める */
  .drawer-hamburger-icon:before {
    top: -2px !important;
  }
  .drawer-hamburger-icon:after {
    top: 2px !important;
  }
  .ftr-navi .ftr-navi-main,
  .ftr-navi .ftr-navi-sub {
    flex-direction: column;
    align-items: center;
  }
  .ftr-navi .ftr-navi-main li:not(:last-child)::after,
  .ftr-navi .ftr-navi-sub li:not(:last-child)::after {
    display: none;
  }
  footer.main-footer {
    margin-top: 5rem;
  }
  .content-header {
    padding: 4rem 5vw 3rem !important;
  }
  .page-header {
    font-size: clamp(3.5rem, 10vw, 7rem) !important;
  }
}
@media screen and (max-width:375px) {}
@media screen and (max-width:361px) {}

/*-----------------------

      加盟店一覧ページ

-----------------------*/
.body-participating-list .participating-search {
  text-align: center;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--base10Color);
  margin-bottom: 4rem;
}
.body-participating-list .search-inner {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.body-participating-list .search-label {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--mainColor);
  white-space: nowrap;
}
.body-participating-list .search-select-wrap {
  position: relative;
}
.body-participating-list .search-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.6rem solid var(--baseColor);
  pointer-events: none;
}
.body-participating-list .search-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid var(--base50Color);
  border-radius: 0.4rem;
  padding: 0.7rem 3.5rem 0.7rem 1.2rem;
  font-size: 1.5rem;
  color: var(--baseColor);
  min-width: 20rem;
  cursor: pointer;
  line-height: 1.5;
}
.body-participating-list .participating-list-section {
  margin-bottom: 2rem;
}
.body-participating-list .participating-list-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--baseColor);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.body-participating-list .participating-list-heading::before {
  content: "■";
  color: var(--mainColor);
  font-size: 1.6rem;
}
.body-participating-list .participating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 5rem;
}
.body-participating-list .participating-card {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--base10Color);
}
.body-participating-list .shop-info {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.body-participating-list .shop-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.body-participating-list .shop-info-row dt {
  background: var(--main50Color);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 0.3rem;
  white-space: nowrap;
  width: 7.5em;
  min-width: 7.5em;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.7;
}
.body-participating-list .shop-info-row dd {
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 0;
  word-break: break-all;
}
.body-participating-list .shop-info-row dd.shop-name {
  color: var(--mainColor);
  font-size: 1.6rem;
  font-weight: 600;
  word-break: normal;
}
.body-participating-list .shop-info-row dd a {
  color: var(--mainColor);
  text-decoration: underline;
}
.body-participating-list .shop-info-row dd a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.body-participating-list .map-btn {
  display: inline-block;
  border: 1px solid var(--base50Color);
  border-radius: 0.3rem;
  padding: 0 0.6rem;
  font-size: 1.2rem;
  color: var(--baseColor) !important;
  text-decoration: none !important;
  margin-left: 0.3rem;
  line-height: 1.7;
  vertical-align: middle;
}
.body-participating-list .map-btn:hover {
  background: var(--base10Color);
  text-decoration: none !important;
}
.sns-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  color: #fff !important;
  font-size: 1.4rem;
  text-decoration: none !important;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.sns-icon:hover {
  opacity: 0.75;
  text-decoration: none !important;
}
.sns-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.sns-line {
  background: #06c755;
}
.sns-facebook {
  background: #1877f2;
}
.sns-x {
  background: #000;
}
.sns-youtube {
  background: #ff0000;
}
.sns-line span,
.sns-x span {
  font-size: 1rem;
  font-weight: 700;
  font-family: sans-serif;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
}
.sns-x span {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .body-participating-list .participating-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/*-----------------------

      共通バッジ

-----------------------*/
.instructor-badge {
  display: inline-flex;
  align-items: center;
  background: var(--mainColor);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.25rem 0.9rem;
  border-radius: 10rem;
  line-height: 1.5;
  white-space: nowrap;
}

/*-----------------------

      認定講師一覧

-----------------------*/
.body-instructor-list .instructor-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.body-instructor-list .accordion-item {
  margin: 0;
  padding: 0;
}
.body-instructor-list .accordion-item summary {
  list-style: none;
  cursor: pointer;
  background: var(--main10Color);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--baseColor);
  position: relative;
  border-radius: 0.3rem;
  user-select: none;
}
.body-instructor-list .accordion-item summary::-webkit-details-marker {
  display: none;
}
.body-instructor-list .accordion-item summary::before {
  content: "♦";
  color: var(--mainColor);
  font-size: 1.2rem;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.body-instructor-list .accordion-item summary::after {
  content: "▼";
  position: absolute;
  right: 2rem;
  font-size: 1rem;
  color: var(--baseColor);
}
.body-instructor-list .accordion-item[open] summary::after {
  content: "▲";
}
.body-instructor-list .accordion-body {
  padding: 3rem 0;
}
.body-instructor-list .instructor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.body-instructor-list .instructor-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
}
.body-instructor-list .instructor-card:hover {
  opacity: 0.85;
}
.body-instructor-list .instructor-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.body-instructor-list .instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.body-instructor-list .instructor-badge {
  margin-bottom: 0.4rem;
}
.body-instructor-list .instructor-card-meta {
  text-align: center;
  padding-top: 0.6rem;
}
.body-instructor-list .instructor-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--baseColor);
  margin-bottom: 0.5rem;
  text-align: center;
}
.body-instructor-list .instructor-card-area-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .body-instructor-list .instructor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 559px) {
  .body-instructor-list .accordion-item summary {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
  .body-instructor-list .instructor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/*-----------------------

      認定講師紹介

-----------------------*/
.body-instructor-detail .instructor-detail {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
.body-instructor-detail .instructor-detail-left {
  flex-shrink: 0;
  width: 26rem;
  text-align: center;
}
.body-instructor-detail .instructor-detail-photo {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
.body-instructor-detail .instructor-detail-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.body-instructor-detail .instructor-detail-name-sub {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--baseColor);
}
.body-instructor-detail .instructor-detail-right {
  flex: 1;
  min-width: 0;
}
.body-instructor-detail .instructor-detail-name {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--baseColor);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.body-instructor-detail .instructor-detail-area-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.instructor-detail-area-label {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--base50Color);
}
.body-instructor-detail .instructor-detail-sns {
  margin-bottom: 3rem;
}
.body-instructor-detail .instructor-detail-section {
  margin-bottom: 3.5rem;
}
.body-instructor-detail .instructor-detail-section-heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
  padding: 0.3rem 0 0.9rem 1.2rem;
  border-left: 4px solid var(--mainColor);
  border-bottom: 1px solid var(--main50Color);
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.body-instructor-detail .instructor-detail-section p {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--baseColor);
}
.body-instructor-detail .instructor-detail-section p:last-child {
  margin-bottom: 0;
}
.body-instructor-detail .instructor-detail-inquiry {
  margin-top: 3rem;
}
.body-instructor-detail .instructor-inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.1rem 5rem;
  border-radius: 10rem;
  text-decoration: none !important;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
  box-shadow: 0 4px 16px rgba(214, 87, 137, 0.25);
}
.body-instructor-detail .instructor-inquiry-btn:hover {
  opacity: 0.8;
  color: #fff !important;
}
/* 一覧へ戻るリンク（認定講師紹介 等）＝ btn-outline 風 */
.cd-back {
  margin-top: 4rem;
  text-align: center;
}
.cd-back__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30rem;
  padding: 1.4rem 5.5rem;
  border: 1px solid var(--mainColor);
  border-radius: 10rem;
  background: #fff;
  color: var(--mainColor) !important;
  text-decoration: none !important;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.cd-back__link::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background-color: var(--mainColor);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12'%3E%3Cpath d='M1.5 1l5 5-5 5' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
/* 事例紹介/コラムの戻るボタン（.btn-outline:hover）と同じ：薄ピンクが乗るだけに統一 */
.cd-back__link:hover { background: var(--main10Color); }
@media screen and (max-width: 559px) {
  .cd-back__link {
    min-width: 0;
    width: 100%;
    max-width: 32rem;
    padding: 1.3rem 4.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 559px) {
  .body-instructor-detail .instructor-detail-inquiry {
    text-align: center;
  }
}
@media screen and (max-width: 559px) {
  .body-instructor-detail .instructor-detail {
    flex-direction: column;
    gap: 2.5rem;
  }
  .body-instructor-detail .instructor-detail-left {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
  }
  .body-instructor-detail .instructor-detail-name {
    text-align: center;
  }
  .body-instructor-detail .instructor-detail-area-row {
    justify-content: center;
  }
  .body-instructor-detail .instructor-detail-sns {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 559px) {
  .body-participating-list .participating-search {
    padding: 2rem 0 2rem;
    margin-bottom: 3rem;
  }
  .body-participating-list .search-inner {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .body-participating-list .search-select-wrap {
    width: 100%;
  }
  .body-participating-list .search-select {
    width: 100%;
    min-width: unset;
  }
  .body-participating-list .participating-list-heading {
    font-size: 1.6rem;
  }
  .body-participating-list .shop-info-row dt {
    font-size: 1.2rem;
    width: 6.5em;
    min-width: 6.5em;
  }
  .body-participating-list .shop-info-row dd {
    font-size: 1.4rem;
  }
  .body-participating-list .shop-info-row dd.shop-name {
    font-size: 1.5rem;
  }
}

/*=======================================================

      トップページ コンテンツ

=======================================================*/
.top-content {
  font-family: 'EB Garamond', "Shippori Mincho B1", "Noto Serif JP", serif;
  color: var(--baseColor);
  overflow-x: hidden;
}
.ct-sec {
  padding: clamp(5rem, 7vw, 9rem) 0;
  position: relative;
}
.ct-inner {
  width: 100%;
  max-width: 112rem;
  margin: 0 auto;
  padding: 0 3rem;
}
.ct-inner-narrow {
  max-width: 86rem;
}

/* --- 共通：セクション見出し --- */
.sec-head {
  text-align: center;
  margin-bottom: clamp(3rem, 4vw, 4.5rem);
}
.sec-mark {
  width: auto;
  height: clamp(6rem, 6.5vw, 8rem);
  margin: 0 auto 1.2rem;
  display: block;
}
.sec-title {
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin: 0;
  color: var(--baseColor);
}
.sec-title-slash::before,
.sec-title-slash::after {
  content: "/";
  color: var(--baseColor);
  font-weight: 400;
  margin: 0 1.2em;
  font-size: 0.8em;
  vertical-align: 0.05em;
}
.sec-en {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--base50Color);
  margin: 0.8rem 0 0;
  text-align: center;
}
/* base.css の p{text-align:justify} を中央寄せ段落で打ち消す */
.ct-lead p,
.about-body p,
.merit-cols p {
  text-align: center;
}

/* --- 共通：リード文 --- */
.ct-lead {
  text-align: center;
  font-size: clamp(1.5rem, 1.7vw, 1.7rem);
  line-height: 2;
  margin-bottom: clamp(3rem, 4vw, 4.5rem);
}
.ct-lead p { margin: 0 0 1.2em; }
.ct-lead p:last-child { margin-bottom: 0; }

/* --- 共通：ボタン --- */
.ct-btn-wrap { text-align: center; margin-top: clamp(3rem, 4vw, 4.5rem); }
.btn-grad {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 32rem;
  padding: 1.6rem 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 18px rgba(214, 87, 137, 0.28);
  transition: opacity 0.2s, transform 0.2s;
}
.btn-grad .en {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
}
.btn-grad:hover { opacity: 0.9; transform: translateY(-2px); color: #fff !important; }

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30rem;
  padding: 1.4rem 5.5rem;
  border: 1px solid var(--mainColor);
  border-radius: 10rem;
  background: #fff;
  color: var(--mainColor) !important;
  text-decoration: none !important;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
/* 右側に配置する塗り円＋白い「>」シェブロン */
.btn-outline .ico-plus {
  position: absolute;
  right: 1.4rem; top: 50%;
  transform: translateY(-50%);
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--mainColor);
}
.btn-outline .ico-plus::before {
  content: "";
  position: absolute;
  top: 50%; left: 44%;
  width: 0.7rem; height: 0.7rem;
  border-top: 1.6px solid #fff;
  border-right: 1.6px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn-outline:hover { background: var(--main10Color); }

/* --- 共通：背景の透かし文字 --- */
.watermark {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: 'EB Garamond', serif;
  font-size: clamp(4rem, 9vw, 11rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--main10Color);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

/*--- Instagram ---*/
.insta-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 0 clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 500;
}
.insta-head img { width: clamp(3.4rem, 4vw, 4.4rem); height: auto; }
.insta-head span { font-size: clamp(1.8rem, 2.4vw, 2.6rem); color: var(--baseColor); letter-spacing: 0.06em; }
.insta-head em { font-family: 'EB Garamond', serif; font-style: normal; font-weight: 500; font-size: 1.35em; color: var(--mainColor); }
/* 写真：全幅で端から端まで連なる角丸サムネのストリップ（両端は見切れ） */
.insta-grid {
  list-style: none; margin: 0; padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.8rem;
  overflow: hidden;
}
.insta-grid li { flex: 0 0 auto; width: clamp(15rem, 13vw, 20rem); }
.insta-grid a { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 1.2rem; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s; }
.insta-grid a:hover img { opacity: 0.85; }

/* Instagram埋め込み（.card）の投稿を中央寄せ。
   .card に max-width を掛けると elfsight が幅に合わせて枚数・サイズを再計算してしまう
   （4枚・小→3枚・大になる）ため、幅は全幅のまま据え置き、配置(justify-content)だけ中央に。 */
.ct-insta .card { width: 100%; }
.ct-insta .embed { width: 100%; }
.ct-insta .eapps-instagram-feed-posts-inner,
.ct-insta .eapps-instagram-feed-posts-view { justify-content: center !important; }

/*--- 最新のお知らせ ---*/
.news-head {
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 2.5rem;
}
.news-head .en {
  font-family: 'EB Garamond', serif;
  font-size: 0.6em;
  font-style: normal;
  color: var(--mainColor);
  margin-left: 1rem;
  letter-spacing: 0.06em;
}
.news-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--base10Color); }
.news-item { border-bottom: 1px solid var(--base10Color); }
/* バッジ・日付／タイトルの2段構成 */
.news-item a {
  display: flex; flex-direction: column; gap: 0.8rem;
  padding: 1.8rem 0.5rem;
  text-decoration: none !important; color: var(--baseColor);
  transition: opacity 0.2s;
}
.news-item a:hover { opacity: 0.7; }
.news-meta { display: flex; align-items: center; gap: 1.4rem; }
.news-tag {
  background: var(--sub50Color); color: #fff;
  font-size: 1.2rem; font-weight: 500;
  padding: 0.3rem 1.2rem; border-radius: 10rem; letter-spacing: 0.05em;
}
.news-date { font-family: 'EB Garamond', serif; font-size: 1.4rem; color: var(--main50Color); letter-spacing: 0.05em; }
.news-text { font-size: 1.5rem; line-height: 1.6; }

/*--- About JSEAR ---*/
.ct-about {
  position: relative;
  /* 透かしの上半分が乗る白い余白を上に確保 */
  margin-top: clamp(7rem, 11vw, 13rem);
  padding-top: 0;
  /* 透かしの中央（=セクション上端）からピンク背景が始まる */
  background: linear-gradient(180deg, var(--main10Color) 0%, var(--sub10Color) 100%);
}
.about-head {
  position: relative;
  text-align: center;
  padding: clamp(10rem, 13vw, 15rem) 2rem clamp(2rem, 3vw, 3rem);
}
/* 全幅の透かし（上端中央を基準に上下に跨る／About=main・JSEAR=sub） */
.ct-about .watermark {
  top: 0;
  transform: translate(-50%, -50%);
  font-size: clamp(4.4rem, 15.5vw, 23rem);
  line-height: 1;
  letter-spacing: 0.02em;
  word-spacing: 0.2em;
  color: rgba(214, 87, 137, 0.15);
}
/* 透かし中央に重ねる大きめロゴ（透かしより少し下げて配置） */
.about-logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -8%);
  height: clamp(8rem, 10vw, 11.5rem);
  width: auto;
  z-index: 1;
}
/* tenant.css 等が img / .fr-view img に position:relative を当てると、
   .about-logo の left:50% が「通常位置から右へ50%ずらす」意味になり右へ飛ぶ。
   絶対配置を強制し、親(.about-head)の中央へ戻す。 */
.ct-about .about-logo {
  position: absolute !important;
  left: 50% !important;
  transform: translate(-50%, -8%) !important;
}
.about-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--mainColor);
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.about-head .sec-en {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-body { text-align: center; font-size: clamp(1.5rem, 1.7vw, 1.7rem); line-height: 2.1; margin-bottom: clamp(3rem, 4vw, 4rem); }
.about-body p { margin: 0 0 1.6em; }
.about-body p:last-child { margin-bottom: 0; }
.about-movie { max-width: 64rem; margin: 0 auto; }
.movie-thumb { position: relative; display: block; border-radius: 0.6rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.movie-thumb img { width: 100%; height: auto; display: block; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 6.4rem; height: 6.4rem; border-radius: 50%;
  background: rgba(214, 87, 137, 0.9);
  transition: background 0.2s;
}
.play-btn::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 1.1rem 0 1.1rem 1.8rem;
  border-color: transparent transparent transparent #fff;
}
.movie-thumb:hover .play-btn { background: var(--mainColor); }
/* about-movie 動画：ネイティブcontrolsを使わず、中央の再生ボタンでタップ再生/停止。
   再生中は再生ボタンをフェードアウト（クリックは下の動画へ通す）。 */
.movie-thumb video { width: 100%; height: auto; display: block; }
.movie-thumb.js-video-toggle { cursor: pointer; }
.movie-thumb .play-btn { transition: background 0.2s, opacity 0.25s; }
.movie-thumb.is-playing .play-btn { opacity: 0; pointer-events: none; }

/*--- 共通：タグ／グラデ見出し（とは） ---*/
.ct-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  color: #fff; font-family: 'EB Garamond', serif; font-size: 1.3rem;
  letter-spacing: 0.1em; padding: 0.4rem 1.6rem; border-radius: 0.4rem; margin-bottom: 1.6rem;
}
.ct-heading-grad {
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  font-weight: 600; letter-spacing: 0.06em; line-height: 1.4; margin: 0 0 2rem;
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/*--- ヘルシー耳ツボダイエットとは ---*/
/* タイトルは全幅で文章・写真にまたがる */
.toha-head { margin-bottom: clamp(2.5rem, 3.5vw, 4rem); }
.toha-head .ct-heading-grad { margin-bottom: 0; }
/* 文章｜写真の2カラム（上端揃え） */
.ct-toha-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 6rem); align-items: start;
}
.toha-text p { font-size: 1.5rem; line-height: 2; margin: 0 0 1.6em; }
.toha-text .btn-grad { margin-top: 1rem; }
.toha-img img {
  width: 100%; height: auto; display: block;
  border-radius: 16rem 1.6rem 1.6rem 1.6rem;
}

/*--- 開業の魅力 ---*/
.ct-merit {
  background: var(--sub10Color);
  border-radius: 4rem 4rem 0 0;
}
.merit-card {
  background: #fff;
  border-radius: 2rem;
  padding: clamp(6.5rem, 8vw, 9rem) clamp(2.5rem, 4vw, 5rem) clamp(3.5rem, 5vw, 6rem);
  box-shadow: 0 10px 40px rgba(151, 113, 165, 0.1);
}
/* ロゴを大きく＆白カード上端から少し上にはみ出す */
.ct-merit .sec-mark {
  height: clamp(6rem, 6.5vw, 8rem);
  margin-top: clamp(-10rem, -9vw, -7rem);
}
.merit-cols {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3vw, 3.5rem);
}
.merit-cols li { text-align: center; }
.merit-cols img { width: 100%; height: auto; border-radius: 1rem; margin-bottom: 1.2rem; }
.merit-cols h3 { font-size: clamp(1.7rem, 2vw, 2rem); font-weight: 600; color: var(--mainColor); margin: 0 0 0.6rem; letter-spacing: 0.05em; }
.merit-cols p { font-size: 1.4rem; color: var(--baseColor); margin: 0; }

/*--- 研修・サポート体制 ---*/
.support-cols {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 3.5vw, 4rem);
}
.support-cols figure { position: relative; margin: 0 0 1.6rem; border-radius: 1rem; overflow: hidden; }
.support-cols figure img { width: 100%; height: 100%; aspect-ratio: 1 / 0.78; object-fit: cover; display: block; }
.support-tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%);
  color: #fff; font-size: 1.3rem; font-weight: 500;
  padding: 0.4rem 1.4rem; border-radius: 10rem; letter-spacing: 0.05em;
}
.support-cols h3 { font-size: clamp(1.8rem, 2.1vw, 2.1rem); font-weight: 600; color: var(--mainColor); margin: 0 0 1rem; letter-spacing: 0.04em; }
.support-cols p { font-size: 1.4rem; line-height: 1.9; margin: 0; }
.support-note {
  max-width: 80rem;
  margin: clamp(3.5rem, 4.5vw, 5rem) auto 0;
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  line-height: 2;
}

/*--- 事例紹介 ---*/
.ct-case { padding-top: 0; }
/* 写真は全体が収まるよう原寸比で表示（クロップしない） */
.case-hero { margin-bottom: 0; }
.case-hero img {
  width: 100%; height: auto; display: block;
  border-radius: 0 0 clamp(4rem, 6vw, 7rem) 0;
}
/* 写真下の大きな英語タイトル（全幅・写真に寄せて・淡いmain→subグラデ） */
.case-bigtitle {
  padding: 0 clamp(1.5rem, 2.5vw, 4rem);
  margin: clamp(0.5rem, 1vw, 1.2rem) 0 clamp(2rem, 3vw, 3rem);
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 13rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--main50Color) 0%, var(--sub50Color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* 見出し：ロゴ＋（Case Studies／事例紹介）を左寄せ横並び＋下に罫線 */
.case-head {
  display: flex; align-items: center; gap: 1.4rem;
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid #dcdcdc;
}
.case-mark { height: clamp(5rem, 5.5vw, 6.5rem); width: auto; flex-shrink: 0; }
.case-head-text { display: flex; flex-direction: column; line-height: 1.3; }
.case-en {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--mainColor), var(--subColor));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.case-title { font-size: clamp(2.2rem, 2.8vw, 3rem); font-weight: 600; color: var(--baseColor); letter-spacing: 0.08em; }
.case-note { font-size: clamp(1.3rem, 1.5vw, 1.5rem); color: var(--subColor); text-align: left; margin: 0 0 clamp(3rem, 4vw, 4.5rem); }
.case-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 3vw, 3.5rem);
}
.case-card a { display: block; text-decoration: none !important; color: var(--baseColor); transition: opacity 0.2s; }
.case-card a:hover { opacity: 0.85; }
.case-thumb { position: relative; display: block; margin-bottom: 2.6rem; }
.case-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; border-radius: 1rem; }
/* バッジ：横は写真左端に揃え、縦は写真下端に半分かかる（subColor系） */
.case-tag {
  position: absolute; left: 0; bottom: 0; transform: translateY(50%);
  background: var(--subColor); color: #fff; font-size: 1.2rem;
  padding: 0.35rem 1.4rem; border-radius: 10rem; letter-spacing: 0.05em;
}
.case-card h3 { font-size: clamp(1.6rem, 1.9vw, 1.9rem); font-weight: 600; color: var(--mainColor); margin: 0 0 0.8rem; line-height: 1.5; }
.case-card p { font-size: 1.35rem; line-height: 1.8; margin: 0 0 1rem; color: var(--baseColor); white-space: pre-line; }
.case-date { font-size: 1.3rem; color: var(--mainColor); letter-spacing: 0.04em; }

/*--- 開業までの流れ ---*/
.flow-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: stretch; justify-content: center; gap: 3rem;
}
.flow-step { position: relative; flex: 1; min-width: 0; }
/* STEP01は他より幅広に */
.flow-step:nth-child(1) { flex: 1.5; }
/* STEP02は他より少し幅広に */
.flow-step:nth-child(1) { flex: 1.05; }
/* カラーボックス（STEP毎に背景色を変える／高さは全て揃える） */
.flow-box {
  height: 100%;
  box-sizing: border-box;
  border-radius: 1rem;
  padding: clamp(2.2rem, 2.6vw, 3rem) clamp(1.6rem, 2vw, 2.4rem) clamp(2rem, 2.4vw, 2.8rem);
  text-align: center;
}
.flow-step:nth-child(1) .flow-box { background: var(--main10Color); }
.flow-step:nth-child(2) .flow-box,
.flow-step:nth-child(3) .flow-box { background: #ece4ee; }
.flow-step-final .flow-box { background: #fbf6fb; border: 1.5px solid var(--mainColor); }
/* ステップ間の矢印（高さを出す／STEP02・03の右はsubColor） */
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -2.1rem; transform: translateY(-50%);
  width: 0; height: 0;
  border-style: solid; border-width: 1.5rem 0 1.5rem 1.4rem;
  border-color: transparent transparent transparent var(--mainColor);
}
.flow-step:nth-child(2)::after,
.flow-step:nth-child(3)::after {
  border-color: transparent transparent transparent var(--subColor);
}
/* STEP番号ピル */
.flow-no {
  display: inline-block;
  font-family: 'EB Garamond', serif; font-size: clamp(1.6rem, 1.9vw, 2rem);
  letter-spacing: 0.1em; line-height: 1;
  background: #fff; color: var(--mainColor);
  padding: 0.6rem 2rem; border-radius: 10rem; margin-bottom: 1.6rem;
}
/* STEP02・03のピル文字はsubColor */
.flow-step:nth-child(2) .flow-no,
.flow-step:nth-child(3) .flow-no { color: var(--subColor); }
.flow-no-fill { background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%); color: #fff; }
/* 見出し（大きな見出し＋小さな続き、STEP毎に色） */
.flow-h { margin: 0 0 1.2rem; font-weight: 600; letter-spacing: 0.04em; line-height: 1.35; }
.flow-h-main { color: var(--mainColor); }
.flow-h-sub { color: var(--subColor); }
.flow-h-lg { display: block; font-size: clamp(1.6rem, 1.85vw, 2.1rem); }
.flow-h-sm { display: block; font-size: clamp(1.35rem, 1.6vw, 1.6rem); }
.flow-box p { font-size: 1.3rem; line-height: 1.9; margin: 0; text-align: left; color: var(--baseColor); }
/* 検索ボタン：ボックス高さに含めず（フロー外）、下端に半分かかる＝ボックスは小さくなる */
.flow-step-lead .flow-box { position: relative; padding-bottom: clamp(3rem, 3.6vw, 4rem); }
.search-link {
  position: absolute; z-index: 1;
  left: clamp(1.6rem, 2vw, 2.4rem); right: clamp(1.6rem, 2vw, 2.4rem);
  bottom: 0; transform: translateY(50%); margin: 0;
}
.search-link img { width: 100%; height: auto; display: block; }
/* 吹き出しバッジ */
.flow-badge {
  position: absolute; top: -1.7rem; left: 3rem; z-index: 2;
  background: var(--mainColor); color: #fff; font-size: 1.3rem; white-space: nowrap;
  padding: 0.5rem 1.6rem; border-radius: 0.8rem; letter-spacing: 0.04em;
}
.flow-badge::after {
  content: ""; position: absolute; left: 2.2rem; bottom: -0.6rem;
  border-style: solid; border-width: 0.7rem 0.6rem 0 0.6rem;
  border-color: var(--mainColor) transparent transparent transparent;
}
/* STEP01下の注釈（ボックス高さに影響しないよう絶対配置で下にぶら下げる） */
.flow-note {
  position: absolute; top: 100%; left: 0; width: 100%;
  margin: 3.4rem 0 0; font-size: 1.2rem; line-height: 1.7;
  color: var(--mainColor); text-align: left;
}

/*--- よくある質問 ---*/
.faq-list { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--base10Color); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.8rem 5rem 1.8rem 0.5rem;
  font-size: 1.5rem; line-height: 1.6; color: var(--baseColor); font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { color: var(--mainColor); font-family: 'EB Garamond', serif; font-size: 1.8rem; font-weight: 600; flex-shrink: 0; }
.faq-item summary::after {
  content: ""; position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  background-color: var(--subColor);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-a {
  display: flex; gap: 1.2rem;
  background: var(--main10Color); border-radius: 0.6rem;
  padding: 1.8rem 2rem; margin: 0 0 1.8rem;
  font-size: 1.45rem; line-height: 1.9;
}
.faq-a-mark { color: var(--subColor); font-family: 'EB Garamond', serif; font-size: 1.8rem; font-weight: 600; flex-shrink: 0; }

/*=======================================================
      トップページ コンテンツ レスポンシブ
=======================================================*/
@media screen and (max-width: 900px) {
  .insta-grid li { width: clamp(13rem, 20vw, 16rem); }
  .ct-toha-grid { grid-template-columns: 1fr; }
  .toha-img { max-width: 48rem; margin: 0 auto; }
  .merit-cols { gap: 1.5rem; }
  .support-cols { grid-template-columns: 1fr; max-width: 48rem; margin: 0 auto; gap: 3rem; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { flex-direction: column; gap: 3.4rem; }
  .flow-step { flex: none; }
  .flow-step:nth-child(1) { flex: none; }
  .flow-note { position: static; width: auto; margin-bottom: 0; }
  .flow-step:not(:last-child)::after {
    top: auto; right: 50%; bottom: -2.4rem; transform: translateX(50%);
    border-width: 1.2rem 0.9rem 0 0.9rem;
    border-color: var(--mainColor) transparent transparent transparent;
  }
}
@media screen and (max-width: 559px) {
  .ct-sec { padding: 5rem 0; }
  .ct-inner { padding: 0 2rem; }
  .insta-grid { gap: 0.5rem; }
  .insta-grid li { width: clamp(11rem, 30vw, 14rem); }
  .case-bigtitle { white-space: normal; }
  .news-item a { flex-wrap: wrap; gap: 0.8rem 1.2rem; padding: 1.4rem 0.3rem; }
  .news-text { flex-basis: 100%; }
  .merit-cols { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; gap: 2.5rem; }
  .case-grid { grid-template-columns: 1fr; max-width: 34rem; margin: 0 auto; }
  .btn-grad, .btn-outline { min-width: 0; width: 100%; max-width: 32rem; }
  .sec-title-slash::before, .sec-title-slash::after { margin: 0 0.6em; }
}

/*=======================================================
      About ページ
=======================================================*/
/* PC専用の改行（SPでは無効化） */
.br-pc { display: inline; }
/* --- メソッド概要 見出し --- */
.ab-method { padding-top: clamp(0.5rem, 1.2vw, 1.2rem); padding-bottom: clamp(2rem, 3vw, 3rem); }
.ab-support { padding-top: clamp(1rem, 2vw, 2rem); }
.ab-mhead { position: relative; text-align: center; padding: clamp(3rem, 5vw, 6rem) 2rem clamp(2.5rem, 3.5vw, 3.5rem); }
.ab-mhead .watermark {
  top: 50%; transform: translate(-50%, -50%);
  font-size: clamp(6rem, 15vw, 19rem);
  color: rgba(214, 87, 137, 0.10);
}
.ab-method .about-logo {
  position: relative; left: auto; top: auto; transform: none; z-index: 1;
  margin: 0 auto 1rem; height: clamp(5.5rem, 6.5vw, 7.5rem); width: auto; display: block;
}
.ab-mhead-lead { position: relative; z-index: 1; text-align: center; font-size: clamp(1.4rem, 1.7vw, 1.7rem); color: var(--baseColor); margin: 0 0 0.4rem; letter-spacing: 0.08em; }
.ab-mhead-title {
  position: relative; z-index: 1; margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.4rem); font-weight: 600; letter-spacing: 0.1em;
  color: var(--mainColor);
}
.ab-mhead .sec-en { position: relative; z-index: 1; }
/* 数式見出し */
.ab-formula { text-align: center; font-size: clamp(1.5rem, 2vw, 2.3rem); font-weight: 600; color: var(--baseColor); letter-spacing: 0.04em; margin: 0 0 clamp(3rem, 4vw, 4rem); line-height: 1.6; }
.ab-formula span { color: var(--mainColor); margin: 0 0.2em; }
/* 3つの円 */
.ab-circles { list-style: none; margin: 0 0 clamp(3rem, 4vw, 4rem); padding: 0; display: flex; align-items: flex-start; justify-content: center; gap: clamp(0.8rem, 1.5vw, 1.8rem); }
.ab-circle { flex: 1 1 0; max-width: 26rem; text-align: center; }
.ab-circle-img { display: block; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin: 0 auto 1.4rem; }
.ab-circle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-circle h3 { font-size: clamp(1.6rem, 1.9vw, 2rem); font-weight: 600; color: var(--mainColor); margin: 0 auto 1rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--main50Color); width: fit-content; }
.ab-circle p { font-size: 1.3rem; line-height: 1.8; color: var(--baseColor); text-align: center; margin: 0; }
.ab-circle-x { flex: 0 0 auto; align-self: center; }
.ab-circle-x img { width: clamp(2.4rem, 3vw, 3.4rem); height: auto; display: block; }
/* リード文 */
.ab-lead { text-align: center; font-size: clamp(1.4rem, 1.6vw, 1.6rem); line-height: 2; margin-bottom: clamp(2.5rem, 3vw, 3rem); }
.ab-lead p { margin: 0 0 1.2em; text-align: center; }
.ab-lead p:last-child { margin-bottom: 0; }
/* 注釈ボックス */
.ab-note { background: var(--main10Color); border-radius: 0.8rem; padding: clamp(2rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 3rem); max-width: 78rem; margin: 0 auto; }
.ab-note p { font-size: 1.25rem; line-height: 1.8; color: var(--mainColor); margin: 0 0 0.8rem; text-align: left; }
.ab-note p:last-child { margin-bottom: 0; }

/* --- サポート2カード --- */
.ab-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 3vw, 3.5rem); }
.ab-scard { border-radius: 1.6rem; padding: clamp(2.5rem, 3.5vw, 4rem) clamp(2rem, 3vw, 3.5rem); box-shadow: 0 8px 30px rgba(151, 113, 165, 0.08); }
.ab-scard-meal { background: var(--main10Color); border: 1.5px solid var(--main50Color); }
.ab-scard-life { background: var(--sub10Color); border: 1.5px solid var(--sub50Color); }
/* ヘッダー：ロゴ＋（リード／タイトル）2段組 */
.ab-scard-head { display: flex; align-items: center; gap: 1.2rem; margin: 0 0 1.6rem; }
.ab-scard-mark { height: clamp(4.5rem, 5.5vw, 6rem); width: auto; flex-shrink: 0; }
.ab-scard-htext { display: flex; flex-direction: column; }
.ab-scard-lead { font-size: 1.4rem; color: var(--main50Color); margin: 0 0 0.3rem; }
.ab-scard-life .ab-scard-lead { color: var(--sub50Color); }
.ab-scard-title { display: flex; align-items: baseline; gap: 1rem; margin: 0; font-weight: 600; flex-wrap: wrap; }
.ab-scard-title span { font-size: clamp(2rem, 2.4vw, 2.6rem); color: var(--baseColor); letter-spacing: 0.05em; }
.ab-scard-title em { font-family: 'EB Garamond', serif; font-style: normal; font-size: 1.4rem; color: var(--base50Color); letter-spacing: 0.08em; }
.ab-scard-body { font-size: 1.4rem; line-height: 1.9; margin: 0 0 1.2rem; text-align: left; }
.ab-scard-note { font-size: 1.2rem; line-height: 1.7; color: var(--main50Color); margin: 0 0 1.8rem; text-align: left; }
.ab-scard-life .ab-scard-note { color: var(--sub50Color); }
.ab-scard-icons { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 2.2vw, 2.4rem) 1rem; }
.ab-scard-icons li { text-align: center; }
.ab-scard-icons img { width: 100%; max-width: 11rem; aspect-ratio: 1; border-radius: 50%; object-fit: cover; margin: 0 auto 0.6rem; display: block; }
.ab-scard-icons span { font-size: 1.15rem; line-height: 1.4; display: block; }
.ab-scard-meal .ab-scard-icons span { color: var(--mainColor); }
.ab-scard-life .ab-scard-icons span { color: var(--subColor); }

/* --- 続けられる仕組み --- */
.ab-mech { padding-bottom: clamp(2rem, 3vw, 3rem); }
.ab-mech-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
.ab-mech-img img { width: 100%; height: auto; display: block; }
.ab-mech-en { font-family: 'EB Garamond', serif; font-size: 1.4rem; letter-spacing: 0.1em; color: var(--subColor); margin: 0 0 0.8rem; }
.ab-mech-h { font-size: clamp(2.2rem, 2.8vw, 3rem); font-weight: 600; color: var(--mainColor); line-height: 1.4; margin: 0 0 1.6rem; }
.ab-mech-text > p { font-size: 1.4rem; line-height: 1.9; margin: 0 0 1.2rem; text-align: left; }
.ab-mech-strong { color: var(--mainColor); }
.ab-mech-note { font-size: 1.2rem; color: var(--mainColor); }
.ab-mech-btns { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.8rem; align-items: flex-start; }
.ab-mech-btns .btn-grad { min-width: 32rem; }

/* --- 安全性 / 実践の経験と知見 --- */
.ab-twobox { padding-top: clamp(1rem, 2vw, 2rem); }
.ab-twobox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 3vw, 3.5rem); align-items: stretch; }
.ab-box { border-radius: 1.6rem; padding: clamp(2.5rem, 3.5vw, 4rem) clamp(2rem, 3vw, 3.5rem); }
.ab-box-safety { background: var(--main10Color); }
.ab-box-insight { background: var(--sub10Color); }
.ab-box-lead { font-size: 1.4rem; color: var(--baseColor); margin: 0 0 0.3rem; }
.ab-box-title { font-size: clamp(2.2rem, 2.6vw, 2.8rem); font-weight: 600; color: var(--baseColor); margin: 0 0 1.4rem; letter-spacing: 0.05em; }
.ab-box-safety .ab-box-title { color: var(--mainColor); }
.ab-box-insight .ab-box-title { color: var(--subColor); }
.ab-box-title em { font-family: 'EB Garamond', serif; font-style: normal; font-size: 1.4rem; color: var(--base50Color); margin-left: 1rem; letter-spacing: 0.08em; }
.ab-box > p { font-size: 1.4rem; line-height: 1.9; text-align: left; margin: 0 0 1.2rem; }
.ab-box-sub { color: var(--subColor); font-weight: 600; font-size: clamp(1.6rem, 1.9vw, 1.9rem); }
.ab-box-note { font-size: 1.2rem; color: var(--base50Color); }
.ab-box-insight .ab-box-note { color: var(--subColor); }
.ab-box-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.ab-box-list li { font-size: 1.35rem; line-height: 1.8; padding-left: 1.2em; position: relative; color: var(--mainColor); }
.ab-box-list li::before { content: "・"; position: absolute; left: 0; }
.ab-box-insight .ct-btn-wrap { margin-top: 2rem; }
.ab-box-insight .btn-grad { min-width: 0; width: 100%; }

/* --- 研究会概要テーブル --- */
.ab-table { margin: 0; }
.ab-table > div { display: flex; gap: 2rem; padding: 1.6rem clamp(1.5rem, 2.5vw, 3rem); }
.ab-table > div:nth-child(odd) { background: var(--sub10Color); }
.ab-table dt { flex: 0 0 11rem; margin: 0; font-size: 1.4rem; font-weight: 500; color: var(--base50Color); letter-spacing: 0.05em; }
.ab-table dd { flex: 1; margin: 0; font-size: 1.4rem; line-height: 1.7; color: var(--baseColor); }

/* --- About レスポンシブ --- */
@media screen and (max-width: 900px) {
  .ab-support-grid { grid-template-columns: 1fr; max-width: 52rem; margin: 0 auto; gap: 2.5rem; }
  .ab-mech-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab-mech-img { max-width: 42rem; margin: 0 auto; }
  .ab-mech-btns { align-items: stretch; }
  .ab-mech-btns .btn-grad { min-width: 0; }
  .ab-twobox-grid { grid-template-columns: 1fr; max-width: 52rem; margin: 0 auto; }
}
@media screen and (max-width: 559px) {
  .br-pc { display: none; }
  .ab-circles { flex-wrap: wrap; gap: 1.2rem; }
  .ab-circle { flex: 1 1 40%; max-width: none; }
  .ab-circle-x { display: none; }
  .ab-scard-icons { gap: 1.2rem 0.6rem; }
  .ab-scard-icons span { font-size: 1.05rem; }
  .ab-table > div { flex-direction: column; gap: 0.4rem; padding: 1.2rem 1.5rem; }
  .ab-table dt { flex: none; }
}


/*=== Business ページ ===*/

/* 共通：センター寄せのリード／注釈（base.css の p{justify} を上書き） */
.bz-lead { text-align: center; font-size: clamp(1.5rem, 1.8vw, 1.8rem); color: var(--baseColor); line-height: 1.9; margin: 0 auto clamp(1.5rem, 2vw, 2rem); max-width: 86rem; }
.bz-note-c { text-align: center; font-size: clamp(1.2rem, 1.4vw, 1.4rem); color: var(--mainColor); line-height: 1.8; margin: 0 auto clamp(3rem, 4vw, 4.5rem); max-width: 86rem; }
.bz-lead-big { text-align: center; font-size: clamp(1.8rem, 2.4vw, 2.6rem); font-weight: 600; color: var(--baseColor); letter-spacing: 0.04em; margin: 0 0 1.6rem; }

/* 収益モデル：3カードグリッド */
.bz-rev-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 3.5vw, 4rem); }
.bz-rev-thumb { position: relative; display: block; margin-bottom: 2.4rem; }
.bz-rev-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 1.2rem; }
.bz-rev-tag { position: absolute; left: 1.2rem; bottom: 1.2rem; background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%); color: #fff; font-size: 1.3rem; padding: 0.4rem 1.6rem; border-radius: 10rem; letter-spacing: 0.06em; }
.bz-rev-card h3 { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; min-height: 3em; font-size: clamp(1.7rem, 2vw, 2rem); font-weight: 600; color: var(--mainColor); margin: 0 0 1.2rem; line-height: 1.5; }
.bz-rev-card p { font-size: 1.4rem; line-height: 1.9; color: var(--baseColor); }

/* 社会背景：2カラム（テキスト＋円グラフ） */
.bz-social { background: var(--main10Color); border-radius: clamp(2rem, 3vw, 3.5rem); padding: clamp(3.5rem, 5vw, 6rem); display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(3rem, 4vw, 5rem); align-items: center; }
.bz-social .case-head { align-items: flex-end; }
.bz-social-en { font-family: 'EB Garamond', serif; font-size: clamp(1.3rem, 1.5vw, 1.6rem); letter-spacing: 0.1em; color: var(--subColor); }
.bz-social-ttl { font-size: clamp(2.2rem, 2.8vw, 3rem); font-weight: 600; color: var(--baseColor); letter-spacing: 0.08em; }
.bz-social-h { font-size: clamp(2.2rem, 3vw, 3.4rem); font-weight: 600; color: var(--subColor); line-height: 1.5; letter-spacing: 0.04em; margin: 0 0 0.8rem; }
.bz-social-suben { font-family: 'EB Garamond', serif; font-size: clamp(1.4rem, 1.7vw, 1.8rem); color: var(--mainColor); letter-spacing: 0.06em; margin: 0 0 2rem; text-align: left; }
.bz-social-text > p { font-size: 1.45rem; line-height: 1.95; color: var(--baseColor); margin: 0 0 1.4rem; }
.bz-social-note { font-size: 1.25rem !important; line-height: 1.8 !important; color: var(--mainColor) !important; }
.bz-social-chart { text-align: center; }
.bz-social-chart img { width: 100%; max-width: 40rem; height: auto; }
.bz-social-cap { font-size: 1.2rem; color: var(--baseColor); margin: 1rem 0 0; text-align: center; }
.bz-cap-link { color: var(--mainColor); text-decoration: underline; }

/* 導入メリット：3カラム */
.bz-merit-grid { list-style: none; margin: 0 0 clamp(3.5rem, 5vw, 6rem); padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 3.5vw, 4rem); }
.bz-merit-img img { width: 100%; height: auto; display: block; border-radius: 1.6rem; }
.bz-merit-card h3 { text-align: center; font-size: clamp(1.7rem, 2vw, 2rem); font-weight: 600; color: var(--subColor); margin: 1.8rem 0 1rem; }
.bz-merit-card p { text-align: left; font-size: 1.4rem; line-height: 1.9; color: var(--baseColor); }

/* 導入にあたっての注意事項ボックス */
.bz-notice { position: relative; background: var(--sub10Color); border-radius: clamp(1.6rem, 2.5vw, 2.4rem); padding: clamp(3.5rem, 4.5vw, 5rem) clamp(2.5rem, 4vw, 5rem) clamp(3rem, 4vw, 4.5rem); }
.bz-notice-tag { position: absolute; top: 0; left: clamp(2.5rem, 4vw, 5rem); transform: translateY(-50%); width: max-content; background: var(--subColor); color: #fff; font-size: clamp(1.3rem, 1.5vw, 1.5rem); padding: 0.6rem 2.4rem; border-radius: 10rem; letter-spacing: 0.06em; }
.bz-notice ul { list-style: none; margin: 0; padding: 0; max-width: 92rem; }
.bz-notice li { position: relative; padding-left: 1.6rem; font-size: 1.4rem; line-height: 1.9; color: var(--baseColor); text-align: justify; margin-bottom: 0.6rem; }
.bz-notice li::before { content: "・"; position: absolute; left: 0; color: var(--baseColor); }

/* 充実した研修制度（淡いラベンダー背景セクション） */
.bz-training-sec { background: var(--sub10Color); }
.bz-training-box { position: relative; background: #fff; border-radius: clamp(2.5rem, 4vw, 5rem); padding: clamp(2.5rem, 3.5vw, 4rem) clamp(2.5rem, 4vw, 5rem) clamp(4rem, 6vw, 7rem); text-align: center; overflow: visible; }
/* セクションロゴをボックス上端から少しはみ出させる */
.bz-training-box .sec-mark { margin-top: calc(-1 * clamp(4rem, 5vw, 5.5rem)); position: relative; }
.bz-training-h { font-size: clamp(2.2rem, 3vw, 3.4rem); font-weight: 600; color: var(--subColor); letter-spacing: 0.04em; margin: 0 0 1.8rem; }
.bz-training-body { text-align: center; font-size: clamp(1.5rem, 1.8vw, 1.8rem); line-height: 1.9; color: var(--baseColor); max-width: 78rem; margin: 0 auto 1.4rem; }
.bz-training-note { text-align: center; font-size: 1.25rem; line-height: 1.8; color: var(--subColor); max-width: 78rem; margin: 0 auto clamp(3rem, 4vw, 4rem); }
.bz-points { list-style: none; margin: 0 auto clamp(3rem, 4vw, 4rem); padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3vw, 4rem); max-width: 86rem; }
.bz-points li { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.bz-point-no { font-family: 'EB Garamond', serif; font-weight: 400; font-size: clamp(2.4rem, 3.2vw, 3.6rem); color: rgba(151, 113, 165, 0.38); letter-spacing: 0.04em; }
.bz-point-ttl { font-size: clamp(1.5rem, 1.7vw, 1.7rem); font-weight: 600; color: var(--mainColor); }
.bz-training-photo { max-width: 92rem; margin: 0 auto; }
.bz-training-photo img { width: 100%; height: auto; display: block; border-radius: 1.6rem; }

/* 事例紹介の写真は16:9（共通 .case-thumb に依存） */
.bz-case .case-thumb img { aspect-ratio: 16 / 9; }

/* ---- Business レスポンシブ ---- */
@media screen and (max-width: 900px) {
  .bz-rev-grid, .bz-merit-grid { grid-template-columns: 1fr; max-width: 42rem; margin-inline: auto; }
  .bz-merit-grid { margin-bottom: clamp(3rem, 5vw, 5rem); }
  .bz-social { grid-template-columns: 1fr; }
  .bz-social-chart { order: -1; }
  .bz-points { grid-template-columns: 1fr; gap: 2.4rem; max-width: 32rem; }
}
@media screen and (max-width: 559px) {
  .bz-social { padding: clamp(2.5rem, 6vw, 3.5rem); }
  .bz-training-photo { margin: 0 calc(-1 * clamp(2rem, 5vw, 3rem)); }
}


/*=== Foundation ページ ===*/

/* 概要：箱に入らない中央寄せ注釈 */
.ab-lead-note { text-align: center; font-size: clamp(1.25rem, 1.45vw, 1.45rem); line-height: 1.9; color: var(--baseColor); max-width: 82rem; margin: 0 auto clamp(2rem, 2.5vw, 2.5rem); }
/* 概要セクション：注意書きボックス下の余白を広めに確保 */
.fd-method { padding-bottom: clamp(5rem, 7vw, 8rem); }
.fd-note-link { color: var(--subColor); text-decoration: underline; }

/* 研修制度ボックス：4つのPoint */
.fd-training-box { padding-bottom: clamp(4rem, 6vw, 7rem); }
.fd-points { list-style: none; margin: clamp(2rem, 3vw, 3rem) 0 clamp(3.5rem, 5vw, 5rem); padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(2rem, 2.5vw, 3rem); }
.fd-point { text-align: center; }
.fd-point-no { display: block; font-family: 'EB Garamond', serif; font-weight: 400; font-size: clamp(1.7rem, 2vw, 2.1rem); color: var(--sub50Color); letter-spacing: 0.05em; margin-bottom: 1rem; }
.fd-point-ico { display: flex; justify-content: center; align-items: center; height: clamp(5rem, 6vw, 6.5rem); margin-bottom: 1.2rem; }
.fd-point-ico img { max-height: 100%; width: auto; }
.fd-point h4 { font-size: clamp(1.5rem, 1.8vw, 1.8rem); font-weight: 600; color: var(--subColor); margin: 0 0 1rem; }
.fd-point p { font-size: 1.3rem; line-height: 1.8; color: var(--baseColor); text-align: left; margin: 0; }
.fd-point-note { font-size: 1.15rem !important; line-height: 1.7 !important; color: var(--mainColor) !important; margin-top: 0.8rem !important; }

/* 費用の概要ボックス */
.fd-cost { position: relative; background: var(--sub10Color); border-radius: clamp(1.4rem, 2vw, 2rem); padding: clamp(2.5rem, 3.5vw, 4rem) clamp(2.5rem, 3.5vw, 4rem); text-align: left; overflow: hidden; }
.fd-cost-img { position: absolute; top: 0; right: 0; width: clamp(18rem, 26vw, 30rem); }
.fd-cost-img img { width: 100%; height: auto; display: block; }
.fd-cost-title { display: flex; align-items: center; gap: 0.8rem; font-size: clamp(1.7rem, 2vw, 2rem); font-weight: 600; color: var(--subColor); margin: 0 0 1.6rem; }
.fd-cost-mark { width: 1.6rem; height: 1.6rem; background: var(--subColor); border-radius: 0.3rem; flex-shrink: 0; }
.fd-cost-list { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.fd-cost-list li { position: relative; padding-left: 1.4rem; font-size: 1.4rem; line-height: 1.95; color: var(--baseColor); }
.fd-cost-list li::before { content: "・"; position: absolute; left: 0; }
.fd-cost-total { font-size: clamp(1.5rem, 1.7vw, 1.7rem); font-weight: 600; color: var(--subColor); margin: 0 0 1.2rem; }
.fd-cost-note { font-size: 1.2rem; line-height: 1.8; color: var(--baseColor); margin: 0; }

/* 研修コンテンツ・集客支援リスト */
.fd-cl-list { list-style: none; margin: clamp(2.5rem, 3.5vw, 4rem) 0 0; padding: 0; }
.fd-cl-item { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 4vw, 5rem); align-items: center; margin-bottom: clamp(3rem, 4vw, 4.5rem); }
.fd-cl-item:last-child { margin-bottom: 0; }
.fd-cl-thumb { position: relative; display: block; }
.fd-cl-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; border-radius: 1.2rem; }
.fd-cl-text h3 { font-size: clamp(1.8rem, 2.2vw, 2.3rem); font-weight: 600; color: var(--mainColor); margin: 0 0 0.4rem; }
.fd-cl-en { font-family: 'EB Garamond', serif; font-size: clamp(1.3rem, 1.5vw, 1.6rem); color: var(--mainColor); letter-spacing: 0.06em; margin: 0 0 1.4rem; text-align: left; }
.fd-cl-text > p { font-size: 1.45rem; line-height: 1.95; color: var(--baseColor); margin: 0; }
.fd-cl-note { font-size: 1.2rem !important; line-height: 1.8 !important; color: var(--mainColor) !important; margin-top: 1rem !important; }

/* 大切なお知らせ */
.fd-notice { background: var(--main10Color); border-radius: clamp(2rem, 3vw, 3.5rem); overflow: hidden; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
.fd-notice-text { padding: clamp(3rem, 4.5vw, 5.5rem); }
/* 見出しを1行に収めるため少し小さく */
.fd-notice .bz-social-h { font-size: clamp(1.9rem, 2.5vw, 2.9rem); }
.fd-notice-list { list-style: none; margin: 0; padding: 0; }
.fd-notice-list li { position: relative; padding-left: 1.4rem; font-size: 1.3rem; line-height: 1.9; color: var(--baseColor); text-align: justify; margin-bottom: 1rem; }
.fd-notice-list li::before { content: "・"; position: absolute; left: 0; }
/* 写真：上端を左見出しの罫線に合わせ、全体がボックス内に収まるよう表示 */
.fd-notice-img { display: flex; align-items: flex-start; justify-content: center; padding: calc(clamp(3rem, 4.5vw, 5.5rem) + clamp(5rem, 5.5vw, 6.5rem) + clamp(1.5rem, 2vw, 2rem)) clamp(3rem, 4.5vw, 5.5rem) clamp(3rem, 4.5vw, 5.5rem) 0; }
.fd-notice-img img { width: 100%; height: auto; max-height: 100%; object-fit: contain; border-radius: 1.6rem; }

/* 事業説明会のご案内 CTA */
.fd-cta { background: var(--main10Color); border: 1.5px solid var(--main50Color); border-radius: clamp(2rem, 3vw, 3.5rem); display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: end; }
/* ロゴをテキスト全体の左に置き、英字・タイトル・本文・ボタンの左を揃える。
   左カラムの内容を写真へ近づけるため、左パディングを大きめに確保 */
.fd-cta-text { display: flex; align-items: flex-start; gap: 1.4rem; padding: clamp(3rem, 4.5vw, 5.5rem) clamp(3rem, 4.5vw, 5.5rem) clamp(3rem, 4.5vw, 5.5rem) clamp(5rem, 9vw, 11rem); }
.fd-cta-mark { height: clamp(4.5rem, 5vw, 6rem); width: auto; flex-shrink: 0; }
.fd-cta-main { flex: 1; min-width: 0; }
.fd-cta-en { font-family: 'EB Garamond', serif; font-size: clamp(1.3rem, 1.5vw, 1.6rem); color: var(--subColor); letter-spacing: 0.08em; margin: 0 0 0.2rem; text-align: left; }
.fd-cta-title { font-size: clamp(2.2rem, 3vw, 3.2rem); font-weight: 600; color: var(--mainColor); margin: 0 0 1.6rem; }
.fd-cta-body { font-size: 1.45rem; line-height: 1.9; color: var(--baseColor); margin: 0 0 1rem; text-align: left; }
.fd-cta-note { font-size: 1.2rem; line-height: 1.8; color: var(--mainColor); margin: 0 0 2.4rem; text-align: left; }
.fd-cta-btn .btn-grad { min-width: 0; }
.fd-cta-img { align-self: end; text-align: center; }
.fd-cta-img img { max-width: 24rem; width: 100%; height: auto; display: block; margin: 0 auto; }

/* ---- Foundation レスポンシブ ---- */
@media screen and (max-width: 900px) {
  .fd-points { grid-template-columns: repeat(2, 1fr); gap: clamp(2.5rem, 4vw, 3.5rem); }
  .fd-cost { padding-top: clamp(16rem, 30vw, 22rem); }
  .fd-cost-img { width: clamp(14rem, 40vw, 22rem); }
  .fd-cl-item { grid-template-columns: 1fr; gap: 1.8rem; max-width: 48rem; margin-inline: auto; }
  .fd-cl-thumb::before { width: 4rem; height: 4rem; top: -1rem; left: -1rem; }
  .fd-notice, .fd-cta { grid-template-columns: 1fr; }
  .fd-notice-img { order: -1; padding: 0; }
  .fd-notice-img img { max-height: 26rem; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 0; }
  .fd-cta-img { max-width: 34rem; margin: 0 auto; }
}
@media screen and (max-width: 559px) {
  .fd-points { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; }
}

/*=======================================================
      お知らせ / コラム / よくある質問 ページ
=======================================================*/

/* --- カテゴリタブ（一覧ページ共通） --- */
.list-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: clamp(3rem, 4vw, 4.5rem); }
.list-tab { font-size: 1.4rem; padding: 0.7rem 2.2rem; border-radius: 10rem; border: 1px solid var(--base10Color); color: var(--baseColor); text-decoration: none !important; transition: all 0.2s; }
.list-tab:hover { border-color: var(--mainColor); color: var(--mainColor); }
.list-tab.is-active { background: linear-gradient(135deg, var(--mainColor) 0%, var(--subColor) 100%); border-color: transparent; color: #fff; }

/* --- ページャー（一覧ページ共通） --- */
.pager { display: flex; justify-content: center; align-items: center; gap: 0.8rem; margin-top: clamp(3.5rem, 5vw, 5rem); }
.pager-num, .pager-arrow { display: inline-flex; align-items: center; justify-content: center; min-width: 4rem; height: 4rem; padding: 0 1.4rem; border-radius: 0.8rem; border: 1px solid var(--base10Color); font-family: 'EB Garamond', serif; font-size: 1.5rem; color: var(--baseColor); text-decoration: none !important; transition: all 0.2s; }
.pager-num:hover, .pager-arrow:hover { border-color: var(--mainColor); color: var(--mainColor); }
.pager-num.is-current { background: var(--mainColor); border-color: var(--mainColor); color: #fff; }
.pager-arrow.is-disabled { opacity: 0.4; pointer-events: none; }

/* 一覧0件時の表示 */
.list-empty { text-align: center; font-size: clamp(1.4rem, 1.6vw, 1.6rem); color: var(--base50Color); padding: clamp(3rem, 6vw, 6rem) 0; margin: 0; }

/* --- 記事詳細（お知らせ / コラム共通） --- */
.article-head { border-bottom: 1px solid var(--base10Color); padding-bottom: clamp(2rem, 2.5vw, 2.5rem); margin-bottom: clamp(2.5rem, 3.5vw, 3.5rem); }
.article-title { font-size: clamp(2.2rem, 3.2vw, 3.4rem); font-weight: 600; color: var(--baseColor); line-height: 1.5; letter-spacing: 0.03em; margin: 1.2rem 0 0; }
.article-hero { margin: 0 0 clamp(2.5rem, 3.5vw, 3.5rem); }
.article-hero img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 1.6rem; display: block; }
.article-body { font-size: 1.5rem; line-height: 2; color: var(--baseColor); }
.article-body p { margin: 0 0 1.6rem; text-align: justify; }
.article-body h3 { font-size: clamp(1.9rem, 2.3vw, 2.3rem); font-weight: 600; color: var(--mainColor); margin: clamp(3rem, 4vw, 4rem) 0 1.4rem; padding-left: 1.4rem; border-left: 4px solid var(--mainColor); line-height: 1.5; }
.article-body ul { list-style: none; padding: clamp(2rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 3rem); margin: 0 0 1.6rem; background: var(--sub10Color); border-radius: 1.2rem; }
.article-body li { position: relative; padding-left: 1.6rem; line-height: 1.9; }
.article-body li + li { margin-top: 0.6rem; }
.article-body li::before { content: "・"; position: absolute; left: 0; color: var(--mainColor); }
.article-body blockquote { margin: 0 0 1.6rem; padding: clamp(1.8rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 3rem); background: var(--main10Color); border-radius: 1.2rem; color: var(--mainColor); font-weight: 600; }
.article-figure { margin: clamp(2.5rem, 3.5vw, 3.5rem) 0; }
.article-figure img { width: 100%; height: auto; border-radius: 1.6rem; display: block; }
.article-figure figcaption { font-size: 1.25rem; color: var(--base50Color); text-align: center; margin-top: 1rem; }
.article-note { font-size: 1.25rem; line-height: 1.8; color: var(--mainColor); margin: clamp(2.5rem, 3vw, 3rem) 0 0; }

/* 記事のメタ（お知らせ＝news-meta再利用 / コラム＝col-meta） */
.article-head .news-meta, .article-head .col-meta { margin-bottom: 0; }

/* --- コラム一覧カードグリッド --- */
.col-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 3vw, 3.5rem) clamp(2.5rem, 3vw, 3.5rem); }
.col-card a { display: block; text-decoration: none !important; color: var(--baseColor); transition: opacity 0.2s; }
.col-card a:hover { opacity: 0.85; }
.col-thumb { display: block; margin-bottom: 1.6rem; border-radius: 1.2rem; overflow: hidden; }
.col-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.col-meta { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.9rem; }
.col-cat { background: var(--sub50Color); color: #fff; font-size: 1.2rem; font-weight: 500; padding: 0.3rem 1.2rem; border-radius: 10rem; letter-spacing: 0.05em; }
.col-date { font-family: 'EB Garamond', serif; font-size: 1.4rem; color: var(--main50Color); letter-spacing: 0.05em; }
.col-title { font-size: clamp(1.7rem, 2vw, 2rem); font-weight: 600; color: var(--mainColor); line-height: 1.5; margin: 0 0 0.8rem; }
.col-excerpt { font-size: 1.35rem; line-height: 1.8; color: var(--baseColor); text-align: justify; margin: 0; }

/* --- よくある質問（カテゴリ別） --- */
.faq-group { margin-bottom: clamp(3.5rem, 5vw, 5.5rem); }
.faq-group:last-of-type { margin-bottom: 0; }
.faq-cat { font-size: clamp(1.9rem, 2.4vw, 2.4rem); font-weight: 600; color: var(--mainColor); letter-spacing: 0.05em; margin: 0 0 1.5rem; padding-left: 1.4rem; border-left: 4px solid var(--mainColor); line-height: 1.4; }
.faq-contact { text-align: center; margin-top: clamp(4rem, 6vw, 6rem); padding-top: clamp(3rem, 4vw, 4rem); border-top: 1px solid var(--base10Color); }
.faq-contact-lead { font-size: 1.5rem; line-height: 1.8; color: var(--baseColor); margin: 0 0 2rem; }
/* トップ等の軽い問い合わせ注記（区切り線なし・余白控えめ） */
.faq-note { text-align: center; font-size: 1.4rem; line-height: 1.8; color: var(--baseColor); margin: clamp(2rem, 3vw, 3rem) 0 0; }
/* faq-a 内にインライン要素（リンク等）を入れても崩れないよう、回答本文を1アイテムに */
.faq-a-body { flex: 1; min-width: 0; }
/* 本文中インラインリンク（青リンクにせずブランド色の上品な下線リンク） */
.faq-link {
  color: var(--mainColor);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--main50Color);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.25em;
  transition: color 0.2s, text-decoration-color 0.2s, opacity 0.2s;
}
.faq-link:hover {
  color: var(--subColor);
  text-decoration-color: var(--subColor);
  opacity: 0.85;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 900px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 559px) {
  .col-grid { grid-template-columns: 1fr; max-width: 36rem; margin: 0 auto; }
  .list-tabs { gap: 0.6rem; }
  .list-tab { font-size: 1.25rem; padding: 0.55rem 1.6rem; }
  .pager-num, .pager-arrow { min-width: 3.4rem; height: 3.4rem; font-size: 1.4rem; padding: 0 1rem; }
}


/*=======================================================

      ▼ ここから下は現行 overwrite.css から継承
        （修正版デザインに含まれない会員システム用スタイル）
        - STG表示用（skin-staging）
        - 加盟店 管理／編集ページ
        - 掲示板（body-news 詳細・一覧 / body-shelf-comment モーダル）

=======================================================*/

/*----STG色なし---*/
body.skin-staging nav {
  background-color: unset !important;
}

/*----ページヘッダ中央寄せ---*/
body.skin-staging .page-header {
  background-position: center top !important;
  position: static !important;
  left: auto !important;
  transform: none !important;
  display: block !important;
  align-items: normal !important;
}

@media screen and (min-width: 992px) {
  .page-header {
    width: auto !important;
    padding-left: 0 !important;
  }
}

/* =========================================================
 * 加盟店 管理／編集ページ
 * ======================================================= */

/* 操作ボタン群の余白 */
.body-participating-manage .btn-toolbar,
.body-participating-edit .btn-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

/* 一覧テーブルをカード風に */
.body-participating-manage .table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border: 1px solid var(--main50Color, #eaabc4);
  border-radius: 0.8rem;
  overflow: hidden;
  font-size: 1.5rem;
}

.body-participating-manage .table>thead>tr>th {
  background: var(--main10Color, #faeef3);
  color: var(--mainColor, #d65789);
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid var(--main50Color, #eaabc4);
  padding: 1.4rem 1.6rem;
}

.body-participating-manage .table>tbody>tr>td {
  padding: 1.4rem 1.6rem;
  border: none;
  border-top: 1px solid var(--base10Color, #efefef);
  vertical-align: middle;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.body-participating-manage .table>tbody>tr:hover>td {
  background: var(--sub10Color, #f5f1f6);
}

/* ボタン共通（角丸・サイズ） */
.body-participating-manage .btn,
.body-participating-edit .btn {
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 500;
}

/* 主ボタン（新規登録・保存） */
.body-participating-manage .btn-primary,
.body-participating-edit .btn-primary {
  background: var(--mainColor, #d65789);
  border-color: var(--mainColor, #d65789);
}

.body-participating-manage .btn-primary:hover,
.body-participating-manage .btn-primary:focus,
.body-participating-edit .btn-primary:hover,
.body-participating-edit .btn-primary:focus {
  background: var(--mainColor, #d65789);
  border-color: var(--mainColor, #d65789);
  opacity: 0.85;
}

/* 副ボタン（戻る等） */
.body-participating-manage .btn-default,
.body-participating-edit .btn-default {
  background: #fff;
  border: 1px solid var(--main50Color, #eaabc4);
  color: var(--mainColor, #d65789);
}

.body-participating-manage .btn-default:hover,
.body-participating-manage .btn-default:focus,
.body-participating-edit .btn-default:hover,
.body-participating-edit .btn-default:focus {
  background: var(--main10Color, #faeef3);
  color: var(--mainColor, #d65789);
}

/* 削除ボタン */
.body-participating-manage .btn-danger {
  background: #d9737f;
  border-color: #d9737f;
}

.body-participating-manage .btn-danger:hover,
.body-participating-manage .btn-danger:focus {
  background: #c75f6c;
  border-color: #c75f6c;
}

/* 操作セル：編集／削除を横並びに */
.body-participating-manage .shop-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.body-participating-manage .shop-actions form {
  margin: 0;
}

.body-participating-manage .shop-actions .btn {
  min-width: 7rem;
  padding: 0.6rem 1.8rem;
}

/* 公開設定バッジ */
.body-participating-manage .shop-koukai-badge {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
}

.body-participating-manage .shop-koukai-badge.is-public {
  background: var(--main10Color, #faeef3);
  color: var(--mainColor, #d65789);
}

.body-participating-manage .shop-koukai-badge.is-private {
  background: var(--base10Color, #efefef);
  color: var(--base50Color, #b2b2b2);
}

/* 編集フォーム */
.body-participating-edit .form-group {
  margin-bottom: 2rem;
}

.body-participating-edit .control-label {
  color: var(--baseColor, #646464);
  font-weight: 600;
  font-size: 1.5rem;
}

.body-participating-edit .radio-label {
  margin-right: 1.8rem;
}

.body-participating-edit .required {
  margin-left: 0.6rem;
  padding: 0.1rem 0.8rem;
  font-size: 1.1rem;
  color: #fff;
  background: var(--mainColor, #d65789);
  border-radius: 0.3rem;
}

/* =========================================================
 * プロフィール画面：加盟店情報の登録・編集ボタン
 * ======================================================= */
.participating-link-footer {
  text-align: center;
  margin: 3rem 0 1rem;
}

.participating-link-footer a.btn-participating-link {
  display: inline-block;
  padding: 1.1rem 4rem;
  border-radius: 10rem;
  background: var(--mainColor, #d65789);
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(214, 87, 137, 0.25);
  transition: opacity 0.2s ease;
}

.participating-link-footer a.btn-participating-link:hover,
.participating-link-footer a.btn-participating-link:focus {
  opacity: 0.85;
  color: #fff !important;
  text-decoration: none !important;
}

/* SP：一覧テーブルを行ごとのカードに積み替える */
@media screen and (max-width: 559px) {
  .body-participating-manage .table {
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .body-participating-manage .table>thead {
    display: none;
  }

  .body-participating-manage .table,
  .body-participating-manage .table>tbody,
  .body-participating-manage .table>tbody>tr,
  .body-participating-manage .table>tbody>tr>td {
    display: block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .body-participating-manage .table>tbody>tr {
    border: 1px solid var(--main50Color, #eaabc4);
    border-radius: 0.8rem;
    margin-bottom: 1.4rem;
    padding: 0.6rem 0.4rem;
    background: #fff;
  }

  .body-participating-manage .table>tbody>tr>td {
    border: none;
    padding: 0.8rem 1.6rem;
  }

  .body-participating-manage .table>tbody>tr>td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mainColor, #d65789);
  }

  .body-participating-manage .table>tbody>tr>td:first-child {
    font-size: 1.7rem;
    font-weight: 600;
  }

  .body-participating-manage .shop-actions>a.btn,
  .body-participating-manage .shop-actions>form {
    flex: 0 0 auto;
  }
}

/*-----------------------

      掲示板 詳細（body-news / detail）

-----------------------*/
/* 投稿者・本文エリア */
.body-news .detail .img-circle.img-profile {
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 1.5rem;
}

.body-news .detail p {
  font-size: 1.6rem;
  line-height: 1.9;
}

/* いいね数 */
.body-news .detail .good-count {
  font-size: 1.5rem;
  margin-left: 0.3rem;
}

/* コメントする・編集・返信ボタン */
.body-news .btn-default {
  border-radius: 10rem;
  border: 1px solid var(--mainColor);
  background: #fff;
  color: var(--mainColor);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.6rem 1.8rem;
}

.body-news .btn-default:hover,
.body-news .btn-default:focus {
  background: var(--main10Color);
  color: var(--mainColor);
  border-color: var(--mainColor);
}

/* コメント投稿者名・日時 */
.body-news .comment-user-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

/* 区切り線 */
.body-news .detail hr,
.body-news .row hr {
  border-top: 1px solid var(--base10Color);
}

/* 一覧に戻る */
.body-news .single-pager {
  margin-top: 4rem;
  text-align: center;
}

.body-news .single-pager a {
  display: inline-block;
  color: var(--mainColor);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.body-news .single-pager a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/*-----------------------

      掲示板 新規投稿モーダル（body-shelf-comment）

-----------------------*/
.body-shelf-comment .modal-title {
  color: var(--mainColor);
  font-weight: 600;
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
}

.body-shelf-comment .modal-body .control-label {
  color: var(--baseColor);
  font-weight: 600;
  font-size: 1.5rem;
}

.body-shelf-comment .modal-body .form-control {
  font-size: 1.5rem;
  border-radius: 0.4rem;
}

.body-shelf-comment .modal-body .form-control:focus {
  border-color: var(--mainColor);
  box-shadow: 0 0 0 0.15rem var(--main50Color);
}

/* 投稿・更新ボタン */
.body-shelf-comment .modal-footer .btn-primary,
.body-shelf-comment .modal-footer .btn-default:not(.pull-left) {
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.7rem 2.4rem;
}

.body-shelf-comment .modal-footer .btn-primary,
.body-shelf-comment .modal-footer [data-event="create"] {
  background: var(--mainColor);
  border-color: var(--mainColor);
  color: #fff;
}

.body-shelf-comment .modal-footer [data-event="create"]:hover {
  opacity: 0.85;
  color: #fff;
}

/* 閉じる・キャンセル（投稿モーダル＋画像切り取りモーダル 共通） */
.body-shelf-comment .modal-footer .btn-default.pull-left {
  background: #fff;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  border-radius: 10rem;
  font-weight: 500;
  padding: 0.7rem 2.4rem;
}

.body-shelf-comment .modal-footer .btn-default.pull-left:hover,
.body-shelf-comment .modal-footer .btn-default.pull-left:focus {
  background: var(--main10Color);
  border-color: var(--mainColor);
  color: var(--mainColor);
}

/* 削除 */
.body-shelf-comment .modal-footer .btn-danger {
  background: #fff;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  border-radius: 10rem;
  font-weight: 500;
  padding: 0.7rem 2.4rem;
}

.body-shelf-comment .modal-footer .btn-danger:hover,
.body-shelf-comment .modal-footer .btn-danger:focus {
  background: var(--main10Color);
  border-color: var(--mainColor);
  color: var(--mainColor);
}

/*-----------------------

      掲示板（body-news）カテゴリタブ＋一覧

-----------------------*/
.body-news .cat-Area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.body-news .cat-Area ul li a {
  display: inline-block;
  color: var(--mainColor);
  background: #fff;
  border: solid 2px var(--mainColor);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.206rem + 0.518vw, 2.2rem);
  padding: 1rem 2rem;
  border-radius: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.body-news .cat-Area ul li a:hover {
  opacity: 0.8;
}

.body-news .cat-Area ul li.current a {
  color: #fff;
  background: var(--mainColor);
  border-color: var(--mainColor);
  white-space: nowrap;
}

/* 投稿カード一覧 */
.body-news .card-row {
  margin-top: 5rem;
}

.body-news .portfolio-item .card {
  border-radius: 12px;
  overflow: hidden;
}

.body-news .card-text a {
  color: var(--mainColor);
}

/* いいね（ハート・件数）の下線とリンク色を消す */
.body-news a[data-event="good"],
.body-news a[data-event="good-list"] {
  text-decoration: none !important;
  color: inherit;
}

/* 新規投稿するボタン（一覧）：右の検索入力エリアと高さを合わせる */
.body-news .box-tools {
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

.body-news .btn-primary {
  background: var(--mainColor);
  border-color: var(--mainColor);
  color: #fff;
  border-radius: 10rem;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.206rem + 0.518vw, 2.2rem);
  padding: 0 2.6rem;
  height: 100%;
  white-space: nowrap;
}

.body-news .btn-primary:hover,
.body-news .btn-primary:focus {
  background: var(--mainColor);
  border-color: var(--mainColor);
  color: #fff;
  opacity: 0.85;
}

/* 画像切り取りモーダルの幅を固定（はみ出し・黒余白防止） */
.body-shelf-comment .modal-dialog.modal-lg {
  width: 760px;
  max-width: 96%;
}

/*=======================================================

      下層ページ見出しの余白を画面幅に追従（全体調整・強制上書き）
      タイトルが clamp(5rem,8vw,12rem) で伸縮するため、
      周辺余白（padding/サブタイトル/区切り線）も同じく vw 追従にして
      画面サイズによる「間延び」を防ぐ。広い画面の値は従来どおり。

=======================================================*/
.content-header {
  padding-top: clamp(4rem, 5vw, 8rem) !important;
  padding-bottom: clamp(2rem, 3vw, 5rem) !important;
}
.page-subtitle {
  margin-top: clamp(1rem, 1.5vw, 2rem) !important;
}
/* 区切り線の上余白：広い画面ほど大きく（最大5rem）、狭い画面は小さく（最小2rem）
   → 狭くなっても広い画面の余白を超えない＝間延びしない */
.content-header::after {
  margin-top: clamp(2rem, 3.5vw, 5rem) !important;
}

/* SP：区切り線の下〜本文（タブ）までの余白が空きすぎるのを詰める
   （小さい画面はタイトルも小さいので、見出し下の余白も比率を合わせて圧縮） */
@media screen and (max-width: 559px) {
  .content-header { padding-bottom: 1rem !important; }
  .content-header::after { margin-top: 1.5rem !important; }
  .top-content > .ct-sec:first-child { padding-top: 3rem !important; }
}

/* 下層ページ見出しの右ずれ修正（コンソール診断で確定）。
   旧テーマ由来の全幅指定（width:100vw 等）が content-header / page-header に残り、
   page-header(Column)が親(content-header)を突き抜けて右へはみ出していた。
   両方を通常幅にして親の中で中央に揃える。 */
.content-header {
  width: 100% !important;
  max-width: 100% !important;
  left: auto !important;
  transform: none !important;
}
.content-header .page-header,
body.skin-staging .page-header {
  width: auto !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  display: block !important;
}
/* 横はみ出し（100vwヒーロー／オフキャンバスdrawer等）のクリップ。
   clip は position:fixed の要素（閉じたdrawer）を切れず、スマホで右に漏れて横スクロール＝右余白が出る。
   hidden をルート(html)だけに掛けると、fixedを含む水平オーバーフローを切れる。
   body には掛けない（html+body 両方に hidden を掛けると縦バーが2本＝二重スクロールになるため）。 */
html { overflow-x: hidden; }
/* スマホのみ：閉じたオフキャンバスdrawer等（position:fixedで幅が画面より広い）が
   右へ漏れて横スクロール＝右余白になるのを、bodyにもoverflow-x:hiddenを掛けて抑止。
   モバイルはオーバーレイスクロールバーのため、bodyに掛けても縦バー2本（二重スクロール）にはならない。
   PCには掛けない（PCはこの指定をhtmlのみに留め二重スクロールを回避）。 */
@media screen and (max-width: 559px) {
  body { overflow-x: hidden; }
  /* 閉じたオフキャンバスdrawer(position:fixed・幅が画面より広い)が右へ15px漏れて
     横スクロール＝右余白になる対策。左端を画面右端ぴったり(left:100%)に置き、はみ出しを0に。
     開く時は自分の幅ぶん(translateX(-100%))スライドインさせる。 */
  .drawer--right .drawer-nav {
    right: auto !important;
    left: 100% !important;
  }
  .drawer--right.drawer-open .drawer-nav {
    transform: translateX(-100%) !important;
  }
}

/* MV（.top-mv.wide）を画面全幅フルブリードに（中央寄せ）。
   .container が 1280px固定・中央寄せのため、そこから抜け出して左右を画面端へ。
   left:50% + translateX(-50%) は content-header と同じ確実な方式（margin両掛けは過剰でNG）。
   Froala の max-width:100% も解除。はみ出し（スクロールバー幅）は overflow-x:hidden でクリップ。 */
.top-mv {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translateX(-50%) !important;
}

.top-mv-photo img {
  width: 100% !important;
  max-width: none !important;
  display: block;
}

/* カスタムデザインページ（top / business / about / foundation / case 等）の本文コンテナを
   1280px固定 → 全幅に（左右余白を無くす）。これらは共通で <main class="top-content"> を持つため、
   それを含むコンテナだけを対象にする＝通常記事ページ（.top-content 無し）は1280pxのまま。
   セクション背景を画面幅いっぱいに。本文の横幅は各 .ct-inner / .ct-inner-narrow が中央寄せで
   制御するため、文章・動画の見た目幅は維持される。免責・フッターの .container は .top-content を
   含まないので対象外＝中央寄せのまま。 */
.container:has(.top-content) {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/*-------------------------0623宗政追記----------------------------*/
/*導入事例CSS*/
.col-title{
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.body-page-list-case .list-tabs{
	display:none;
}

/*=== お役立ちコンテンツ 一覧 ===*/
.oyaku-lead {
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  line-height: 1.9;
  color: var(--baseColor);
  margin: 0 auto clamp(3rem, 4vw, 4.5rem);
  max-width: 72rem;
}

.oyaku-group {
  margin-bottom: clamp(3.5rem, 5vw, 5.5rem);
}

.oyaku-group:last-child {
  margin-bottom: 0;
}

.oyaku-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--base10Color);
}

.oyaku-list li {
  border-bottom: 1px solid var(--base10Color);
}

.oyaku-list a {
  position: relative;
  display: block;
  padding: 1.8rem 0.5rem 1.8rem 2rem;
  text-decoration: none !important;
  color: var(--baseColor);
  font-size: clamp(1.45rem, 1.7vw, 1.6rem);
  line-height: 1.7;
  transition: color 0.2s;
}

.oyaku-list a::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 2.6rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid var(--mainColor);
  border-right: 2px solid var(--mainColor);
  transform: rotate(45deg);
}

.oyaku-list a:hover {
  color: var(--mainColor);
}

/*トップ導入事例CSS*/
.case-grid .case-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* シェアアイコン非表示 */
.sns-list, .sns-detail {
  display: none !important;
}

/* 下層ページ: 和文のみのタイトル（特定商取引法に基づく表記 等）の調整  */
.content-wrapper .page-header:not(:has(.page-subtitle)) {
  font-size: clamp(3.4rem, 5vw, 6.4rem) !important;
  line-height: 1.3 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  height: auto !important; /* tenant.css の height:150px 固定を解除（縮小後は下に空白が残るため） */
  /* タイトルは可変長のため、収まらない場合は自動で折り返す */
  white-space: normal !important;
  overflow-wrap: anywhere;
  text-wrap: balance; /* 折り返し時に各行の長さを均等にする（非対応ブラウザでは無視される） */
}
/* タイトルと区切り線の間隔（上側のみ）を、和文タイトルページのみ詰める。
   区切り線の下側の余白（.content-header の padding-bottom）は元のまま */
.content-wrapper .content-header:not(:has(.page-subtitle))::after {
  margin-top: 1.6rem !important;
}

/* Instagram: 埋め込み 投稿募集中 */
.ct-inner.insta-coming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 5vw, 7rem);
  /* 白背景と同化しないよう枠で囲む（.merit-card のカード表現に合わせる） */
  width: calc(100% - 4rem);
  max-width: 104rem;
  background: #fff;
  border: 1px solid var(--main50Color);
  border-radius: 2rem;
  padding: clamp(3rem, 4.5vw, 5.5rem) clamp(2rem, 4vw, 6rem);
  box-shadow: 0 10px 40px rgba(151, 113, 165, 0.1);
}
.insta-coming-text { flex: 0 1 48rem; min-width: 0; }
.insta-coming-lead { width: 100%; height: auto; }
.insta-coming-photos { display: block; width: 100%; height: auto; margin-top: clamp(2rem, 2.5vw, 3rem); }
.insta-coming-map { flex: 0 1 50rem; min-width: 0; }
.insta-coming-map img { width: 100%; height: auto; }
@media screen and (max-width: 900px) {
  .ct-inner.insta-coming { flex-direction: column; gap: 3rem; }
  .insta-coming-map { order: -1; width: 100%; max-width: 44rem; flex-basis: auto; }
  .insta-coming-text { width: 100%; max-width: 48rem; flex-basis: auto; }
}
