@charset "utf-8";

/* ==========================================================================
   PC/SP 表示切り替え用ユーティリティ
   （HTML構造そのものが異なる箇所を出し分けるためのクラス）
   ========================================================================== */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 750px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* ==========================================================================
   テキスト画像をテキスト化したコンポーネント（PC/SP共通のスタイル）
   サイズや位置などデバイス差分はPC/SPそれぞれのブロックで上書きする
   ========================================================================== */

/* 見出し（英単語+日本語サブタイトル） */
.titleGraphic {
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  color: #383838;
  line-height: 1.05;
}

.titleGraphic--system,
.titleGraphic--rule,
.titleGraphic--calendar,
.titleGraphic--cat {
  display: flex;
  align-items: center;
  justify-content: center;
}

.titleGraphic--cat {
  justify-content: flex-start;
}

.titleGraphic__accent {
  display: inline-block;
  margin-right: 0.06em;
  color: inherit;
  font-size: 2.6em;
  font-weight: 900;
  line-height: 1;
}

/* セクション見出しの頭文字アクセント：各背景に馴染む落ち着いた色で管理 */
:root {
  --accent-cat: #8a6234;       /* 猫紹介（バタークリーム背景）：木目ブラウン */
  --accent-system: #a1545f;    /* システム（ピンクのベール背景）：くすみローズ */
  --accent-rule: #7d6790;      /* ルール（ラベンダー背景）：くすみプラム */
  --accent-calendar: #83592f;  /* カレンダー（木目ストライプ背景）：濃い木目 */

  /* フッター背景：ナチュラルな明るめグレージュ。ページ全体をやさしくまとめる。
     背景が明るいため文字色は白ではなく濃色(--footer-text)で可読性を確保する。 */
  --footer-bg: #f0e1c4;
  --footer-text: #3a342b;   /* 明るいグレージュ背景で十分なコントラストの濃い温かみブラウン */
}

/* ============================================================
   SNSアイコン（ヘッダー／フッター共通）
   X・Instagram・LINE を同一サイズ・同一余白・同一ホバーで統一。
   円形バッジのブランドSVGをそのまま使い視認性を保ちつつ、
   サイズ・間隔・配置を揃えてサイトのナチュラルな世界観に馴染ませる。
   旧float/table/絶対配置レイアウトは各SNSリストで解除し、これに統一。
   ============================================================ */
.snsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  -webkit-box-pack: center;
     -ms-flex-pack: center;
        justify-content: center;
  gap: clamp(10px, 2.4vw, 16px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.snsList__item {
  margin: 0;
  padding: 0;
  float: none;
  display: block;
}

/* リンク＝クリック領域。アイコン周囲に余白を持たせタップしやすくする */
.snsLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  -webkit-box-pack: center;
     -ms-flex-pack: center;
        justify-content: center;
  padding: 6px;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
          transition: opacity 0.2s ease, transform 0.2s ease;
}

.snsIcon {
  display: block;
  width: clamp(38px, 8.5vw, 46px);
  height: auto;
  border-radius: 50%;
}

/* ホバー／フォーカス：控えめにふわっと持ち上げ、少しだけ透過 */
.snsLink:hover,
.snsLink:focus-visible {
  opacity: 0.82;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.snsLink:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .snsLink,
  .snsLink:hover,
  .snsLink:focus-visible { -webkit-transform: none; transform: none; }
}

/* ============================================================
   追従ヘッダー（PCのみ）
   既存 headerNav が画面外へ出たら、上部にコンパクトな固定ヘッダーを
   スッと表示する。左：ロゴ／右：ナビ＋SNS の横一列。
   中身は sticky-header.js が既存要素を複製して生成する。
   SP（max-width:750px）では display:none のまま影響なし。
   ============================================================ */
.stickyHeader {
  display: none;
}

@media only screen and (min-width: 750.02px) {
  .stickyHeader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    /* 温かみのある淡いクリーム＋ぼかしでコンテンツを邪魔しない上品な質感 */
    background-color: rgba(250, 243, 229, 0.85);
    -webkit-backdrop-filter: saturate(1.1) blur(10px);
            backdrop-filter: saturate(1.1) blur(10px);
    border-bottom: 1px solid rgba(138, 98, 52, 0.12);
    -webkit-box-shadow: 0 2px 14px rgba(92, 55, 12, 0.14);
            box-shadow: 0 2px 14px rgba(92, 55, 12, 0.14);
    /* 非表示：上へスライド＋フェード */
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: opacity 0.32s ease, -webkit-transform 0.32s ease, visibility 0s linear 0.32s;
            transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
    will-change: transform, opacity;
  }

  .stickyHeader.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.32s ease, -webkit-transform 0.32s ease;
            transition: opacity 0.32s ease, transform 0.32s ease;
  }

  .stickyHeader__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  /* 左：ロゴ（コンパクト） */
  .stickyHeader__logo {
    -webkit-box-flex: 0;
       -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
            align-items: center;
    line-height: 0;
  }
  .stickyHeader__logo img {
    display: block;
    height: 20px;
    width: auto;
  }

  /* 右：ナビ＋SNS */
  .stickyHeader__right {
    -webkit-box-flex: 1;
       -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
       -ms-flex-pack: end;
            justify-content: flex-end;
    gap: clamp(12px, 2vw, 26px);
    min-width: 0;
  }

  /* ナビ（既存 headerNav__wrap を複製。横並びに調整） */
  .stickyHeader__nav .headerNav__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
            align-items: center;
    gap: clamp(2px, 0.8vw, 12px);
    margin: 0;
  }
  .stickyHeader__nav .headerNav__item {
    float: none;
    padding: 0;
  }
  .stickyHeader__nav .headerNav__item + .headerNav__item {
    padding-left: 0;
  }
  .stickyHeader__nav .headerNav__item a {
    padding: 8px 6px;
    font-size: clamp(13px, 1.05vw, 15px);
    color: #4a3a29;
    white-space: nowrap;
  }
  /* ホバー色は既存の .headerNav__item--x a:hover がそのまま適用される */

  /* SNS（既存 headerSNS__wrap を複製。バー内では一回り小さく） */
  .stickyHeader__sns .snsList {
    gap: 2px;
  }
  .stickyHeader__sns .snsLink {
    padding: 3px;
  }
  .stickyHeader__sns .snsIcon {
    width: 30px;
  }
  .stickyHeader__sns .snsLink:focus-visible {
    outline-color: rgba(138, 98, 52, 0.6);
  }
}

/* ============================================================
   FAQ（よくある質問）※FAQページで使用
   ・カテゴリ（.faqCategory）＞ アコーディオン項目（.faqList__item）の2階層。
   ・カテゴリ見出しは sticky でスクロール中も現在地が分かる。
   ・画像不使用。Q/A・カテゴリ見出しはCSSのみで表現。
   ・カテゴリや項目はHTMLブロックを増やすだけで拡張でき、崩れない。
   ・clamp/em/％で自己完結レスポンシブ。開閉は faq.js（jQuery slideToggle）。
   ============================================================ */
.faq {
  margin: 0;
}

/* カテゴリ（1ブロック＝1カテゴリ） */
.faqCategory + .faqCategory {
  margin-top: clamp(26px, 5vw, 46px);
}

/* カテゴリ見出し：他ページのタイトルと同じフォントで、木の温もりの帯。
   sticky で、そのカテゴリを読んでいる間は上部に留まり現在地が分かる */
.faqCategory__title {
  position: -webkit-sticky;
  /* position: sticky; */
  top: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  gap: 0.55em;
  margin: 0 0 clamp(6px, 1.6vw, 12px);
  padding: clamp(10px, 2.4vw, 14px) clamp(10px, 2.2vw, 16px);
  background-color: #f6eccf;              /* 不透明のクリーム帯（下の項目が透けない） */
  border-radius: 12px;
  color: #7a4f28;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 4.2vw, 21px);
  letter-spacing: 0.04em;
  line-height: 1.4;
  -webkit-box-shadow: 0 2px 10px rgba(92, 55, 12, 0.08);
          box-shadow: 0 2px 10px rgba(92, 55, 12, 0.08);
}
/* 見出し左のアクセントバー（画像不使用・CSSのみ） */
.faqCategory__title::before {
  content: "";
  -webkit-box-flex: 0;
     -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  width: 6px;
  height: 1.15em;
  border-radius: 3px;
  background-color: #a1545f;              /* サイトのローズアクセント */
}

/* PCはスクロール時に追従ヘッダー（約55px）が出るため、その下に留める */
@media only screen and (min-width: 750.02px) {
  .faqCategory__title {
    top: 58px;
  }
}

.faqList {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.faqList__item {
  border-bottom: 1px dashed rgba(115, 99, 87, 0.5);
}
.faqList__item:first-child {
  border-top: 1px dashed rgba(115, 99, 87, 0.5);
}

/* Q行（クリック領域＝アクセシブルなbutton） */
.faqList__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  gap: clamp(10px, 2.5vw, 16px);
  width: 100%;
  margin: 0;
  padding: clamp(15px, 3.2vw, 22px) clamp(2px, 1.2vw, 8px);
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  color: #383838;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: background-color 0.2s ease;
          transition: background-color 0.2s ease;
}
.faqList__q:hover,
.faqList__q:focus-visible {
  background-color: rgba(161, 84, 95, 0.06);
}
.faqList__q:focus-visible {
  outline: 2px solid rgba(161, 84, 95, 0.5);
  outline-offset: -2px;
}

/* Q・A のマーク（円＋文字、CSSのみ・一目で判別） */
.faqList__mark {
  -webkit-box-flex: 0;
     -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  -webkit-box-pack: center;
     -ms-flex-pack: center;
        justify-content: center;
  width: clamp(30px, 7vw, 38px);
  height: clamp(30px, 7vw, 38px);
  border-radius: 50%;
  color: #fff;
  background-color: #a1545f;           /* Q：システムのローズ */
  font-family: 'Fredoka', 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.6vw, 19px);
  line-height: 1;
}
.faqList__mark--a {
  background-color: #8a6234;           /* A：木のブラウン */
}

.faqList__qtext {
  -webkit-box-flex: 1;
     -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  font-weight: 700;
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.6;
}

/* 開閉インジケーター（シェブロン。開くと反転） */
.faqList__toggle {
  -webkit-box-flex: 0;
     -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-left: clamp(6px, 1.5vw, 12px);
  border-right: 2px solid #a1545f;
  border-bottom: 2px solid #a1545f;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
          transition: transform 0.3s ease;
}
.faqList__q[aria-expanded="true"] .faqList__toggle {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/* A（回答パネル）：初期は閉じる。faq.jsのslideToggle（＝display:block）で開閉するため、
   外枠はブロック、内側で flex レイアウト（A円マーク＋回答文の横並び）にする */
.faqList__a {
  display: none;
}
.faqList__aInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
     -ms-flex-align: start;
        align-items: flex-start;
  gap: clamp(10px, 2.5vw, 16px);
  padding: 0 clamp(2px, 1.2vw, 8px) clamp(18px, 3.4vw, 24px);
}
.faqList__atext {
  -webkit-box-flex: 1;
     -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  margin: 0;
  padding-top: clamp(3px, 1vw, 6px);
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.9;
  color: #4a4034;
}

@media (prefers-reduced-motion: reduce) {
  .faqList__toggle { -webkit-transition: none; transition: none; }
}

#cat .titleGraphic__accent { color: var(--accent-cat); }
#system .titleGraphic__accent { color: var(--accent-system); }
#rule .titleGraphic__accent { color: var(--accent-rule); }
#calendar .titleGraphic__accent { color: var(--accent-calendar); }

/* ============================================================
   セクションのサブタイトル（全 .sectionTitle__sub 共通ルール）
   見出しに次ぐ情報という優先順位は保ちつつ、PC/SPともに
   無理なく読めるサイズへ。clamp()で画面幅に応じて自然にスケールし、
   小さすぎ・大きすぎを防ぐ。行間もゆとりを持たせて可読性を確保。
   ※font-size / line-height / 文字色 / 太さはここで一元管理。
     余白（margin）はPC=横並び／SP=縦積みで異なるため各ブロックで指定。
   ============================================================ */
.sectionTitle__sub {
  color: #383838;
  font-weight: bold;
  font-size: clamp(14px, calc(0.6vw + 11.5px), 20px);
  line-height: 1.7;
}

/* ============================================================
   猫プロフィール ポップアップ（モーダル）
   - 一覧のカードは「画像＋名前＋"プロフィールを見る"ボタン」のみ表示し、
     写真と名前が主役のシンプルなレイアウトにする
   - タイプ（性格）・詳細（種類・誕生日など）はポップアップ内で表示する
   - ボタン（またはカードのどこでも）クリック/タップ or Enter/Space で開き、
     そのカードの内容を複製して表示する
   - 表示内容はHTML側の各カードに集約されているため、画像や項目を
     増やしてもモーダル側のHTML/JSは変更不要（拡張しやすい設計）
   - PC/SP共通。サイズはclamp/vwでレスポンシブに調整
   ============================================================ */

/* 一覧はシンプルに：タイプ・詳細はカードに出さず、ポップアップに集約する */
.catList__item > .cat__type,
.catList__item > .cat__detail {
  display: none;
}

/* リンク（クリック範囲）は catList__item 全体。
   カードのどこをクリック/タップ/Enter/Space しても開く */
.catList__item {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* ホバー/フォーカス時、写真をふわっと持ち上げて反応を示す */
.catList__item:hover .cat__image img,
.catList__item:focus-visible .cat__image img {
  -webkit-transform: translateY(-3px);
     -moz-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: -webkit-transform 0.25s ease;
          transition: transform 0.25s ease;
}

/* キーボード操作時、カード全体にフォーカスリングを表示 */
.catList__item:focus-visible {
  outline: 3px solid rgba(138, 98, 52, 0.55);
  outline-offset: 6px;
  border-radius: 14px;
}

/* 「プロフィールを見る」ボタン風ラベル（実体はspan。クリックはカード全体が担う）。
   一目でタップできると分かる上品なピル型 */
.cat__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  gap: 0.4em;
  margin-top: 0.9em;
  padding: 0.55em 1.35em;
  border: 1.5px solid #d8c19a;
  border-radius: 999px;
  background-color: #fff;
  color: #8a6234;
  font-size: clamp(11px, 3vw, 14px);
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.4;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.1s ease;
          transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.cat__more__arrow {
  font-weight: bold;
  -webkit-transition: -webkit-transform 0.2s ease;
          transition: transform 0.2s ease;
}

/* hover：カードのどこをホバーしてもボタン風ラベルが塗りつぶしに変化 */
.catList__item:hover .cat__more,
.catList__item:focus-visible .cat__more {
  background-color: #8a6234;
  border-color: #8a6234;
  color: #fff;
  box-shadow: 0 6px 16px rgba(92, 55, 12, 0.22);
}
.catList__item:hover .cat__more__arrow,
.catList__item:focus-visible .cat__more__arrow {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* active：押下（タップ/クリック）時に少し沈む */
.catList__item:active .cat__more {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(92, 55, 12, 0.25);
}

/* ポップアップ内には複製されたボタンを出さない */
.catModal__body .cat__more {
  display: none;
}

/* オーバーレイ全体 */
.catModal[hidden] {
  display: none;
}

.catModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  -webkit-box-pack: center;
     -ms-flex-pack: center;
        justify-content: center;
  padding: 5vw;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.catModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 24, 4, 0.55);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.catModal__dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fffdf8;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(60, 34, 6, 0.35);
  padding: clamp(28px, 6vw, 44px) clamp(20px, 6vw, 36px) clamp(28px, 7vw, 44px);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  -webkit-animation: catModalIn 0.28s ease;
          animation: catModalIn 0.28s ease;
}

@-webkit-keyframes catModalIn {
  from { opacity: 0; -webkit-transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; -webkit-transform: none; }
}
@keyframes catModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.catModal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #8a6234;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.catModal__close:hover {
  color: #5c370c;
}

/* モーダル内に複製されたカード内容の見た目調整 */
.catModal__body .cat__image {
  width: clamp(150px, 45vw, 190px);
  max-width: none;
  margin: 0 auto;
}

.catModal__body .cat__name {
  display: inline-block;
  margin-top: 1em;
  font-size: 1.15em;
}

/* プロフィール本文のタイポグラフィ（type/detailで統一ルール）。
   sectionTitle__sub と同様、clamp()で全幅を自然にスケールさせ、
   極端に小さくならないようにする。type（性格）を一段大きく＝優先度上、
   detail（種類・誕生日）はそれに次ぐサイズ。行間・余白もゆとりを確保 */
.catModal__body .cat__type {
  margin-top: 0.8em;
  font-size: clamp(17px, calc(0.35vw + 14.7px), 21px);
  line-height: 1.65;
}

.catModal__body .cat__detail {
  display: block;
  margin-top: 1.1em;
  color: #6b5535;
  font-size: clamp(16px, calc(0.3vw + 13.7px), 19px);
  line-height: 1.9;
}

/* モーダル内の色テーマ（枠色・名前ピル）はカードの色クラスをJSで付与 */
.catModal__body.green .cat__image img { border-color: #a9d7cf; }
.catModal__body.orange .cat__image img { border-color: #f4c98f; }
.catModal__body.yerrow .cat__image img { border-color: #f2dc9b; }
.catModal__body.pink .cat__image img { border-color: #f9bcc7; }
.catModal__body.green .cat__name { background-color: #a9d7cf; }
.catModal__body.orange .cat__name { background-color: #f4c98f; }
.catModal__body.yerrow .cat__name { background-color: #f2dc9b; }
.catModal__body.pink .cat__name { background-color: #f9bcc7; }

@media (prefers-reduced-motion: reduce) {
  .catModal__dialog { -webkit-animation: none; animation: none; }
  .catList__item:hover .cat__image img,
  .catList__item:focus-visible .cat__image img { -webkit-transform: none; transform: none; }
}

.titleGraphic__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.titleGraphic__en {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.titleGraphic__ja {
  display: block;
  font-weight: 700;
}

.titleGraphic__ja::before {
  content: "＜ ";
}

.titleGraphic__ja::after {
  content: " ＞";
}

/* キャッチコピー（丸バッジ付きの1文字を強調） */
.catchCopy__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6em;
  min-height: 1.6em;
  border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
  color: #fff;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 900;
}

.catchCopy__badge--brown {
  background-color: #5c370c;
}

.catchCopy__badge--pink {
  background-color: #ff8094;
}


.conceptSlides .bx-controls {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 78px;
  text-align: center;
  z-index: 5;
}

.conceptSlides .bx-pager {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
}

.conceptSlides .bx-pager-item {
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

/* ページネーション：サイトのブランドカラー（ピンク#ff8094／ブラウン#5c370c）と
   丸みのあるデザインに合わせる。aは当たり判定、::beforeが見た目のドット。
   アクティブは横長のピルにして一目で分かるようにする */
.conceptSlides .bx-pager.bx-default-pager a {
  position: relative;
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  width: 28px;
  height: 28px;
  border: 0;
  background: none;
  text-indent: -9999px;
}

.conceptSlides .bx-pager.bx-default-pager a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 999px;
     -moz-border-radius: 999px;
          border-radius: 999px;
  background-color: rgba(92, 55, 12, 0.22);
  -webkit-transition: width 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
     -moz-transition: width 0.3s ease, background-color 0.3s ease, -moz-transform 0.3s ease;
          transition: width 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

/* ホバー：やわらかいピンクにふわっと拡大 */
.conceptSlides .bx-pager.bx-default-pager a:hover::before,
.conceptSlides .bx-pager.bx-default-pager a:focus::before {
  background-color: #ffb0bd;
  -webkit-transform: translate(-50%, -50%) scale(1.25);
     -moz-transform: translate(-50%, -50%) scale(1.25);
          transform: translate(-50%, -50%) scale(1.25);
}

/* アクティブ：ブランドピンクのピル */
.conceptSlides .bx-pager.bx-default-pager a.active::before {
  width: 26px;
  background-color: #ff8094;
}

/* アクティブ時はホバーで拡大させず、形を保つ */
.conceptSlides .bx-pager.bx-default-pager a.active:hover::before,
.conceptSlides .bx-pager.bx-default-pager a.active:focus::before {
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* 前へ・次へ：ページャと同じブランドカラー・丸みで統一。
   ラベルテキストは読み上げ用に残しつつ視覚的に隠し、シェブロンはCSSで描画する */
.conceptSlides .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(92, 55, 12, 0.18);
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 6;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
     -moz-transition: background-color 0.3s ease, border-color 0.3s ease, -moz-transform 0.3s ease;
          transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* シェブロン本体（正方形の2辺を回転させて矢印にする） */
.conceptSlides .bx-controls-direction a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 2.5px solid #5c370c;
  border-right: 2.5px solid #5c370c;
  -webkit-transition: border-color 0.3s ease;
     -moz-transition: border-color 0.3s ease;
          transition: border-color 0.3s ease;
}

.conceptSlides .bx-prev::before {
  -webkit-transform: translate(-35%, -50%) rotate(-135deg);
     -moz-transform: translate(-35%, -50%) rotate(-135deg);
          transform: translate(-35%, -50%) rotate(-135deg);
}

.conceptSlides .bx-next::before {
  -webkit-transform: translate(-65%, -50%) rotate(45deg);
     -moz-transform: translate(-65%, -50%) rotate(45deg);
          transform: translate(-65%, -50%) rotate(45deg);
}

/* ホバー：ブランドピンクの塗り＋白いシェブロンにふわっと変化 */
.conceptSlides .bx-controls-direction a:hover,
.conceptSlides .bx-controls-direction a:focus {
  background-color: #ff8094;
  border-color: #ff8094;
  -webkit-transform: scale(1.08);
     -moz-transform: scale(1.08);
          transform: scale(1.08);
}

.conceptSlides .bx-controls-direction a:hover::before,
.conceptSlides .bx-controls-direction a:focus::before {
  border-color: #fff;
}

/* クリック時はわずかに沈ませて押した感を出す */
.conceptSlides .bx-controls-direction a:active {
  -webkit-transform: scale(0.96);
     -moz-transform: scale(0.96);
          transform: scale(0.96);
}

.conceptSlides .bx-prev {
  left: calc(50% - 130px);
}

.conceptSlides .bx-next {
  right: calc(50% - 130px);
}


/* ルール説明文の装飾カッコ */
.ruleMessageText {
  position: relative;
  display: inline-block;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 700;
  color: #383838;
  text-align: center;
}

/* フォントの［］ではなく、縦線＋上下の短い横線で直線的な括弧を描き、文章ブロック全体を囲む */
.ruleMessageText::before,
.ruleMessageText::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #383838;
}

/* 左「［」：縦線＋上下の横線（右辺なし） */
.ruleMessageText::before {
  left: 0;
  border-right: none;
}

/* 右「］」：縦線＋上下の横線（左辺なし） */
.ruleMessageText::after {
  right: 0;
  border-left: none;
}

/* ルールアイコン下のキャプション（サークル下部に重ねる） */
.ruleCaption {
  position: relative;
  z-index: 2;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 700;
  color: #383838;
  text-align: center;
}

/* ルールアイコン（白丸+番号+SVG） */
.ruleCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.ruleCard__number {
  position: absolute;
  z-index: 3;
  font-family: 'Fredoka', 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #383838;
  line-height: 1;
}

.ruleCard__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
}

.ruleCard__icon {
  width: 55%;
  height: 55%;
  object-fit: contain;
}

/* その他（6番目）専用のCLICK案内とバッジ */
.ruleCard__click {
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: 'Fredoka', 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #383838;
  white-space: nowrap;
}

.ruleCard__click::before,
.ruleCard__click::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.7em;
  border-radius: 1px;
  background-color: #5c370c;
}

.ruleCard__click::before {
  transform: rotate(-25deg);
}

.ruleCard__click::after {
  transform: rotate(25deg);
}

.ruleCard__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #ff8094;
  color: #fff;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

/* システム項目ラベル（丸ピル型） */
.systemLabel {
  display: inline-block;
  background-color: #383838;
  color: #fff;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 700;
  border-radius: 999px;
}

/* システムの価格・時間などの数値表記 */
.systemValue {
  display: inline-block;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 900;
  color: #383838;
}

/* --------------------------------------------------
 * システム：料金・営業時間カードの構成要素（PC/SP共通の構造）
 * 店内写真の木目トーン(#b1854f)をアクセントに使用
 * -------------------------------------------------- */
.systemCard__heading {
  margin: 0 0 1em;
  text-align: center;
}

/* 「平日」「土日祝」などの小見出し：両脇に木目色のライン */
.priceGroup__title {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin: 0 0 0.6em;
  color: #9a6f3c;
  font-weight: 700;
  white-space: nowrap;
}

.priceGroup__title::before,
.priceGroup__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(177, 133, 79, 0.45);
}

.priceList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.priceList__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1em;
  padding: 0.55em 0.2em;
  border-bottom: 1px dashed rgba(92, 55, 12, 0.25);
}

.priceList__name {
  font-weight: 700;
}

/* 「10分」の数字部分：価格の数字と同じトーンで拡大 */
.priceList__nameNum {
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1;
}

.priceList__price {
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 900;
  white-space: nowrap;
}

/* 価格の数字を最優先で目立たせる（税込表記smallは据え置き） */
.priceList__num {
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1;
}

.priceList__unit {
  font-size: 0.85em;
  font-weight: 700;
  margin-right: 0.15em;
}

.priceList__price small {
  font-weight: 400;
  font-size: 0.62em;
  color: #8a7a66;
}

/* 平日限定サービスの案内（既存の淡黄トークン#fff3ccを使用） */
.serviceNote {
  border-radius: 10px;
  background-color: #fff3cc;
  text-align: center;
}

.serviceNote__title {
  margin: 0 0 0.4em;
  color: #9a6f3c;
  font-weight: 900;
}

.serviceNote__body {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
}

/* 「フリードリンク無料」はマーカー風の強調（ピンク下地＋既存文字色で可読性を確保） */
.serviceNote__body strong {
  font-weight: 900;
  font-size: 1.15em;
  background: linear-gradient(transparent 55%, #ffd3da 55%);
}

.hoursGroup {
  text-align: center;
}

.hoursGroup__time {
  margin: 0;
}

.hoursGroup__note {
  margin: 0.15em 0 0;
  color: #383838;
  font-weight: 700;
}

.hoursGroup__allYear {
  text-align: center;
  font-weight: 700;
}

.ageNote {
  text-align: center;
  font-weight: 700;
  line-height: 1.9;
}

/* 保護者同伴の注意書き：淡ピンクの角丸ボックスで本文より一段目立たせる */
.ageNote__small {
  text-align: center;
  color: #383838;
  font-weight: 700;
  background-color: #ffeef2;
  border-radius: 8px;
}

.qaLink {
  text-align: center;
  font-weight: 700;
}

/* フッターコピーライト */
.footerCopyText {
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 700;
  color: inherit;
}

/* Q&Aモーダルのタイトル（PC/SP共通） */
.windowTitle--qa .titleGraphic__en {
  font-size: 28px;
}

.windowTitle--qa .titleGraphic__ja {
  font-size: 13px;
}

/* ==========================================================================
   PC (viewport width >= 1050px)
   旧 assets/css/pc/layout.css をそのまま移植（画像パスのみ調整）
   ========================================================================== */
@media only screen and (min-width: 750.02px) {

/* --p: 1064px以上で1px、以下ではビューポート比例で縮む擬似px単位。
   751px〜1063pxの間、PCデザイン全体を比率を保ったまま流動的に縮小させる（750px比で約0.71倍まで） */
body {
  --p: min(1px, 0.09398vw);
}

html {
  overflow-y: scroll;
}

body {
  min-width: calc(1050 * var(--p));
  line-height: 1.5;
  color: #383838;
  background-color: #fff;
  font-size: max(11px, calc(16 * var(--p)));
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
  overflow: hidden;
}

a {
  color: #ff8094;
  text-decoration: none;
}

a img {
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
}

a:hover img {
  opacity: 0.8;
}

img {
  vertical-align: top;
}

/** ------------------------------------------------------------
 * header
 */
.header {
  position: relative;
  min-width: calc(900 * var(--p));
}

.navButton {
  display: none;
}

/* top専用 */
.header--index {
  height: 100vh;
  min-height: calc(650 * var(--p));
  background: url("../images/pc/index/header/fv-pc.webp") no-repeat 50% 0 fixed;
}

@media only screen and (min-width: 1200px) {
  .header--index {
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
}

.header--index::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(340 * var(--p));
  background: url("../images/pc/index/header/cover.png") no-repeat 50% 100%;
}

@media only screen and (min-width: 1920px) {
  .header--index::before {
    -webkit-background-size: 100% 100%;
       -moz-background-size: 100% 100%;
            background-size: 100% 100%;
  }
}

.header__wrap {
  margin: 0 auto;
  position: relative;
  width: calc(1000 * var(--p));
  height: 100%;
}

.logo {
  margin: calc(75 * var(--p)) 0 calc(50 * var(--p)) calc(50 * var(--p));
  width: calc(270 * var(--p));
}

/* top専用 */
.logo--index {
  margin: 0 auto;
  padding-left: calc(45 * var(--p));
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: calc(115 * var(--p));
  left: 0;
  width: auto;
  max-width: calc(600 * var(--p));
}

.catchCopy {
  position: absolute;
  top: 36%;
  left: calc(50 * var(--p));
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 700;
  font-size: max(11px, calc(37 * var(--p)));
  line-height: 2;
  color: #fff;
  text-shadow: 0 2px calc(8 * var(--p)) rgba(0, 0, 0, 1.4);
}

.headerSeal {
  position: absolute;
  z-index: 12;
  right: calc(-68 * var(--p));
  bottom: calc(-30 * var(--p));
}

/** ------------------------------
 * nav
 */
.headerNav {
  position: absolute;
  right: calc(85 * var(--p));
  bottom: calc(73 * var(--p));
}

.headerNav__wrap {
  display: flex;
  line-height: 1.0;
  justify-content: center;
  gap: calc(17 * var(--p));
}

/* top専用 */
.headerNav--index {
  right: auto;
  bottom: calc(63 * var(--p));
  width: 100%;
  z-index: 11;
}

.headerNav__wrap--index {
  margin: 0 auto;
}

.headerNav__item a {
  padding: calc(10 * var(--p));
  position: relative;
  display: block;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 700;
  font-size: max(15px, calc(15 * var(--p)));
  color: #383838;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
     -moz-transition: color 0.3s ease;
      -ms-transition: color 0.3s ease;
       -o-transition: color 0.3s ease;
          transition: color 0.3s ease;
}

.headerNav__item--concept a:hover {
  color: #ffc100;
}

.headerNav__item--cat a:hover {
  color: #ff8094;
}

.headerNav__item--system a:hover {
  color: #ff8094;
}

.headerNav__item--rule a:hover {
  color: #0d8046;
}

.headerNav__item--access a:hover {
  color: #0d8046;
}

.headerNav__item--recruit a:hover {
  color: #ffc100;
}

.headerNav__item--faq a:hover {
  color: #a1545f;
}

/** ------------------------------
 * SNS
 */
.headerSNS {
  position: absolute;
  top: calc(20 * var(--p));
  right: 0;
}

/* 内側のレイアウト・サイズ・ホバーは共通の .snsList / .snsIcon に統一 */

/* ============================================================
   下層ページ（.under）のPCヘッダー
   絶対配置だと狭幅でナビとSNSが重なるため、フレックスの横一列
   （左：ロゴ ／ 右：ナビ＋SNS）に変更。750pxのハンバーガー切替まで
   要素が重ならず、余白・文字サイズが自然に追従する。
   ※ index（.header--index）やSP表示には影響しない。
   ============================================================ */
.under .header {
  min-width: 0;
}

.under .header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
        justify-content: space-between;
  gap: clamp(16px, 2.5vw, 40px);
  width: min(1000px, 92vw);
  height: auto;
  padding: 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.under .header__wrap > h1,
.under .header__wrap > .headerLogo {
  margin: 0;
  -webkit-box-flex: 0;
     -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  line-height: 0;
}

.under .logo {
  margin: 0;
  width: clamp(140px, 19vw, 230px);
}

/* SPメニュー(panel)は下層PCでは横並びのナビバーとして使う */
.under .panel {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  -webkit-box-pack: end;
     -ms-flex-pack: end;
        justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  -webkit-box-flex: 1;
     -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  min-width: 0;
  width: auto;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.under .headerNav {
  position: static;
  right: auto;
  bottom: auto;
  -webkit-box-ordinal-group: 2;
     -ms-flex-order: 1;
        order: 1;
}

.under .headerSNS {
  position: static;
  top: auto;
  right: auto;
  -webkit-box-ordinal-group: 3;
     -ms-flex-order: 2;
        order: 2;
}

.under .headerNav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
  gap: clamp(2px, 0.8vw, 12px);
}

.under .headerNav__item {
  float: none;
  padding: 0;
}

.under .headerNav__item + .headerNav__item {
  padding-left: 0;
}

.under .headerNav__item a {
  padding: 8px 4px;
  font-size: clamp(12px, 1.15vw, 15px);
  white-space: nowrap;
}

.under .headerSNS .snsList {
  gap: clamp(6px, 1vw, 12px);
}

.under .headerSNS .snsLink {
  padding: 3px;
}

.under .headerSNS .snsIcon {
  width: clamp(26px, 3vw, 34px);
}

/** ------------------------------------------------------------
 * section
 */
.sectionInner {
  margin: 0 auto;
  position: relative;
  width: calc(1000 * var(--p));
}

.sectionTitle {
  margin-bottom: calc(21 * var(--p));
}

#system .sectionTitle,
#system .sectionTitle__sub,
#rule .sectionTitle,
#rule .sectionTitle__sub,
#cat .sectionTitle,
#cat .sectionTitle__sub {
  display: inline-block;
  vertical-align: middle;
}

.sectionTitle__sub {
  margin-left: calc(35 * var(--p));
  color: #383838;
  font-weight: bold;
}

/** ------------------------------------------------------------
 * #concept
 */
#concept {
  position: relative;
  z-index: 0;
  background-color: rgba(252, 241, 240, 0.72);
  /* 丸窓風の円5つ：サイズ・色・透明度を変えて奥行きとリズムを出す
     右上の白い大円は上端・右端から余白を取り全体が見えるように */
  background-image:
    radial-gradient(circle at calc(100% - (270 * var(--p))) calc(260 * var(--p)), rgba(255, 255, 255, 0.5) calc(209 * var(--p)), rgba(255, 255, 255, 0) calc(210 * var(--p))),
    radial-gradient(circle at calc(170 * var(--p)) calc(200 * var(--p)), rgba(255, 211, 218, 0.45) calc(89 * var(--p)), rgba(255, 211, 218, 0) calc(90 * var(--p))),
    radial-gradient(circle at 12% 74%, rgba(191, 227, 223, 0.45) calc(149 * var(--p)), rgba(191, 227, 223, 0) calc(150 * var(--p))),
    radial-gradient(circle at calc(100% - (200 * var(--p))) 86%, rgba(255, 255, 255, 0.35) calc(129 * var(--p)), rgba(255, 255, 255, 0) calc(130 * var(--p))),
    radial-gradient(circle at 55% calc(120 * var(--p)), rgba(191, 227, 223, 0.35) calc(59 * var(--p)), rgba(191, 227, 223, 0) calc(60 * var(--p)));
  background-repeat: no-repeat;
}

/* 猫の足あと：左上寄りの小さめ2歩（木目ブラウン・下のピンクとサイズ/向き違い） */
#concept::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  left: calc(70 * var(--p));
  top: calc(140 * var(--p));
  width: calc(130 * var(--p));
  height: calc(170 * var(--p));
  opacity: 0.22;
  transform: rotate(28deg);
  background-image: url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg");
  background-repeat: no-repeat;
  background-size: calc(44 * var(--p)) auto, calc(36 * var(--p)) auto;
  background-position: 22% 88%, 72% 12%;
}

/* 猫の足あと：右下から画面内へ歩いてくるような3歩（ブランドピンク・ごく淡く） */
#concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  right: calc(36 * var(--p));
  bottom: calc(40 * var(--p));
  width: calc(200 * var(--p));
  height: calc(310 * var(--p));
  opacity: 0.3;
  transform: rotate(14deg);
  background-image: url("../images/cat-paw-pink.svg"), url("../images/cat-paw-pink.svg"), url("../images/cat-paw-pink.svg");
  background-repeat: no-repeat;
  background-size: calc(56 * var(--p)) auto, calc(46 * var(--p)) auto, calc(62 * var(--p)) auto;
  background-position: 12% 94%, 68% 52%, 20% 8%;
}

#concept .sectionInner {
  padding-bottom: calc(60 * var(--p));
}

/** ------------------------------
 * タイトル
 */
#concept .sectionTitle {
  padding-top: calc(63 * var(--p));
  position: relative;
  z-index: 20;
  text-align: center;
  font-size: max(11px, calc(40 * var(--p)));
  font-weight: 800;
}

/* 英字（Fredoka）は日本語より小さく見えるため少し大きくしてバランスを取る */
.sectionTitle__en {
  font-size: 1.2em;
}

/** ------------------------------
 * スライド（.conceptSlidesを位置の基準にする）
 */
/* 画面高さが低い環境でもナビまで収まるよう、全体をcalc(630 * var(--p))以内に最適化。
   基準枠も同率(0.659)で縮めて中央寄せすることで、円のはみ出し方・重なり方を元のまま保つ */
.conceptSlides {
  position: relative;
  max-width: calc(659 * var(--p));
  margin: 0 auto;
  height: calc(630 * var(--p));
}

.mainSlide {
  padding: calc(12 * var(--p));
  position: absolute;
  right: calc(-69 * var(--p));
  top: 0;
  z-index: 2;
  width: calc(510 * var(--p));
  height: calc(510 * var(--p));
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.bx-viewport {
  position: relative;
  z-index: 2;
  border: solid calc(10 * var(--p)) #ff8094;
  -webkit-border-radius: calc(2000 * var(--p));
     -moz-border-radius: calc(2000 * var(--p));
          border-radius: calc(2000 * var(--p));
  overflow: hidden;
  background: transparent;
}

/* スライドは円（正方形）を保つ。横長画像は歪ませず中央基準でトリミングする */
.mainSlide .bxslider li {
  aspect-ratio: 1 / 1;
}

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

/* 2つの円をまたぐ猫イラスト（PCは原寸100%） */
.conceptSlides__neko {
  margin: 0;
  position: absolute;
  top: calc(9 * var(--p));
  left: calc(59 * var(--p));
  z-index: 3;
  width: calc(202 * var(--p));
}

.conceptSlides__neko img {
  width: 100%;
}

.subSlide {
  padding: calc(12 * var(--p));
  -webkit-border-radius: calc(1000 * var(--p));
     -moz-border-radius: calc(1000 * var(--p));
          border-radius: calc(1000 * var(--p));
  position: absolute;
  left: calc(-64 * var(--p));
  top: calc(211 * var(--p));
  z-index: 1;
  width: calc(330 * var(--p));
  height: calc(330 * var(--p));
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
            border: solid calc(10 * var(--p)) #d3a5e9;
            background-color: #fff;
}

.subSlide img {
  width: 100%;
  height: 100%;
}

.subSlideText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 calc(24 * var(--p));
  box-sizing: border-box;
  text-align: center;
  color: #383838;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
}

.subSlideText__list {
  margin: 0 0 calc(13 * var(--p));
  padding: 0;
  list-style: none;
  font-size: max(11px, calc(26 * var(--p)));
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.subSlideText__list li {
  position: relative;
  display: none;
}

.subSlideText__list li:first-child {
  display: block;
}

.subSlideText__note {
  font-size: 0.75em;
  font-weight: 400;
}


/* スライド操作UI（JSでconceptSlides直下へ移動し、下・中央に表示） */
/* 締めの一文・ナビはconceptSlides内（下端）に配置し、画面高さが低くても隠れないようにする */
.conceptSlides .subSlideText__closing {
  position: absolute;
  top: auto;
  bottom: calc(7 * var(--p));
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}

/* コントロール枠は高さ0のアンカーとし、ページャと矢印を個別に配置する。
   枠がスライダーに重ならないため、スワイプ操作を阻害しない */
.conceptSlides .bx-controls {
  top: auto;
  bottom: 0;
  margin-top: 0;
  height: 0;
}

/* ページャは締めの一文の直上に配置（円・締め文との間隔を均等に取る） */
.conceptSlides .bx-pager {
  position: absolute;
  bottom: calc(51 * var(--p));
  left: 0;
  width: 100%;
  display: block;
  text-align: center;
}

/* 矢印は構成全体を左右から挟み、円の中央付近の高さ(calc(270 * var(--p)))に揃える */
.conceptSlides .bx-controls-direction a {
  top: auto;
  bottom: calc(338 * var(--p));
  margin-top: 0;
}

.conceptSlides .bx-prev {
  left: calc(-139 * var(--p));
}

.conceptSlides .bx-next {
  right: calc(-144 * var(--p));
}

.subSlideText__closing {
  margin: 0;
  font-size: max(11px, calc(20 * var(--p)));
  font-weight: 700;
  line-height: 1.7;
}

/** ------------------------------------------------------------
 * #calendar
 */
/* 下端は#accessのマイナスマージン(270)ぶんの逃げを含む。
   木の温もりをイメージした斜めストライプ */
#calendar {
  padding: calc(80 * var(--p)) 0 calc(390 * var(--p));
  min-width: calc(1000 * var(--p));
  background-color: #f3e7d5;
  /* 幅を変えた4段のストライプで板の並びを表現し、上からの淡い光で単調さを回避 */
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 40%),
    repeating-linear-gradient(-45deg,
      rgba(177, 133, 79, 0.09) 0 36px,
      rgba(177, 133, 79, 0.02) 36px 72px,
      rgba(177, 133, 79, 0.06) 72px 108px,
      rgba(177, 133, 79, 0) 108px 144px);
}

#calendar .sectionInner {
  position: relative;
  z-index: 0;
}

/* 猫の足あと：タイトル脇の右上に2歩（フッターの茶色） */
#calendar .sectionInner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  right: 0;
  top: calc(10 * var(--p));
  width: calc(150 * var(--p));
  height: calc(170 * var(--p));
  opacity: 0.22;
  transform: rotate(-32deg);
  background-image: url("../images/cat-paw-brown.svg"), url("../images/cat-paw-brown.svg");
  background-repeat: no-repeat;
  background-size: calc(50 * var(--p)) auto, calc(40 * var(--p)) auto;
  background-position: 14% 90%, 74% 12%;
}

#calendar h2 {
  margin-bottom: calc(20 * var(--p));
}

#calendar h2 .titleGraphic__en {
  font-size: max(11px, calc(40 * var(--p)));
}

#calendar h2 .titleGraphic__accent {
  font-size: max(11px, calc(104 * var(--p)));
}

#calendar h2 .titleGraphic__ja {
  font-size: max(11px, calc(14 * var(--p)));
}

#calendar .calendarFrame iframe {
  border: solid 1px #777;
  height: calc(600 * var(--p));
}

/** ------------------------------------------------------------
 * #cat
 */
#cat {
  padding: calc(100 * var(--p)) 0 calc(90 * var(--p));
  min-width: calc(1000 * var(--p));
  position: relative;
  z-index: 0;
  background-color: #f7ecca;
  /* ごく淡い水玉（他セクションと共通のテクスチャ） */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) calc(3 * var(--p)), transparent calc(4 * var(--p))),
    radial-gradient(rgba(255, 255, 255, 0.35) calc(3 * var(--p)), transparent calc(4 * var(--p)));
  background-size: calc(36 * var(--p)) calc(36 * var(--p));
  background-position: 0 0, calc(18 * var(--p)) calc(18 * var(--p));
}

/* 猫の足あと：左下・最下行カード下の帯に2歩（右上トレイルと同色で統一。
   カード列は幅によって左端まで広がるため、常に空いている下端の帯に置く） */
#cat::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  left: calc(30 * var(--p));
  bottom: calc(6 * var(--p));
  width: calc(220 * var(--p));
  height: calc(64 * var(--p));
  opacity: 0.26;
  transform: rotate(-8deg);
  background-image: url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg");
  background-repeat: no-repeat;
  background-size: calc(44 * var(--p)) auto, calc(36 * var(--p)) auto;
  background-position: 8% 75%, 58% 20%;
}

/* 猫の足あと：右上の丸窓を横切る2歩（木目ブラウン・ごく淡く） */
#cat::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  right: calc(50 * var(--p));
  top: calc(60 * var(--p));
  width: calc(230 * var(--p));
  height: calc(430 * var(--p));
  opacity: 0.26;
  transform: rotate(22deg);
  background-image: url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg");
  background-repeat: no-repeat;
  background-size: calc(62 * var(--p)) auto, calc(50 * var(--p)) auto, calc(58 * var(--p)) auto, calc(46 * var(--p)) auto;
  background-position: 16% 94%, 72% 66%, 20% 38%, 76% 6%;
}

#cat h2 .titleGraphic__accent {
  font-size: max(11px, calc(104 * var(--p)));
}

#cat h2 .titleGraphic__en {
  font-size: max(11px, calc(40 * var(--p)));
}

.catList {
  /* 頭数の増減に応じて列数が自動で変わるグリッド。
     minmaxで最小カード幅を確保し、極端に小さくならないようにする。
     固定列数ではないため猫が増えても自然に折り返す */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(200 * var(--p)), 1fr));
  gap: calc(56 * var(--p)) calc(30 * var(--p));
  align-items: start;
}

.catList__item {
  /* カード：画像 → 名前 → タイプ → 詳細を縦に積む構成。
     項目や画像が増えても縦に伸びるだけでレイアウトは崩れない */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 0;
}

.cat__name {
  margin: calc(20 * var(--p)) 0 0;
  max-width: 100%;
  padding: 0 calc(18 * var(--p));
  -webkit-border-radius: 1.8em;
     -moz-border-radius: 1.8em;
          border-radius: 1.8em;
  position: relative;
  line-height: 1.8;
  color: #383838;
  background-color: #e9d7bd;
  font-size: max(15px, calc(19 * var(--p)));
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catList__item.green .cat__name {
  background-color: #a9d7cf;
}
.catList__item.orange  .cat__name {
  background-color: #f4c98f;
}
.catList__item.yerrow  .cat__name {
  background-color: #f2dc9b;
}
.catList__item.pink  .cat__name {
  background-color: #f9bcc7;
}

.cat__name::before,
.cat__name::after {
  content: "";
  margin: auto 0;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: calc(4 * var(--p));
  height: calc(4 * var(--p));
  background-color: #fff;
}

.cat__name::before {
  right: calc(9 * var(--p));
}

.cat__name::after {
  left: calc(9 * var(--p));
}

/* 画像エリア：正方形の枠を持つ独立コンテナ。
   将来ここをスライダー/ギャラリーのトラックに置き換えれば
   複数枚表示へ拡張できる（現状は1枚のimg） */
.cat__image {
  position: relative;
  width: 100%;
  max-width: calc(225 * var(--p));
  aspect-ratio: 1 / 1;
}

.cat__image img {
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  border: calc(6 * var(--p)) solid #fff;
  box-shadow: 0 calc(6 * var(--p)) calc(16 * var(--p)) rgba(92, 55, 12, 0.15);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.catList__item.green .cat__image img {
  border-color: #a9d7cf;
}
.catList__item.orange .cat__image img {
  border-color: #f4c98f;
}
.catList__item.yerrow .cat__image img {
  border-color: #f2dc9b;
}
.catList__item.pink .cat__image img {
  border-color: #f9bcc7;
}

/* 猫のタイプ・性格：プロフィール内で最も目に入りやすい位置（名前直下）に、
   全体の色調に馴染む木目ブラウンで常時表示。文字数が増えても折り返す */
.cat__type {
  margin: calc(12 * var(--p)) 0 0;
  color: #8a6234;
  font-size: max(12px, calc(15 * var(--p)));
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

/* 種類・誕生日などの詳細：常時表示のリスト。
   dt/ddを追加してもカードが縦に伸びるだけでレイアウトは崩れない */
.cat__detail {
  margin: calc(8 * var(--p)) 0 0;
  color: #6b5535;
  font-size: max(11px, calc(13 * var(--p)));
  line-height: 1.85;
  text-align: center;
}

.cat__detail dt {
  font-weight: bold;
}

.cat__detail dt::before {
  margin-right: calc(3 * var(--p));
  content: "[";
}

.cat__detail dt::after {
  margin-left: calc(3 * var(--p));
  content: "]";
}

/* デコ画像 */
.cat__deco {
  margin-top: calc(35 * var(--p));
  padding-right: calc(35 * var(--p));
  float: right;
  position: relative;
}

.catList .catList__item:nth-child(4n) + .cat__deco {
  margin-top: calc(-50 * var(--p));
}

/** ------------------------------------------------------------
 * #system
 */
/* 店内写真を背景に。読み込み前・未配置時は木目調のフォールバック色 */
#system {
  padding: calc(100 * var(--p)) 0;
  position: relative;
  background: #eadbc8 url("../images/system-bg.jpg") no-repeat 50% 50%;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
}

/* 写真の上にクリームのベールを敷き、カード周りの可読性と落ち着きを確保する */
#system::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(252, 241, 240, 0.72);
}

#system .sectionInner {
  position: relative;
  z-index: 1;
}

#system .sectionTitle .titleGraphic__en {
  font-size: max(11px, calc(40 * var(--p)));
}

#system .sectionTitle .titleGraphic__accent {
  font-size: max(11px, calc(104 * var(--p)));
}

#system .sectionTitle .titleGraphic__ja {
  font-size: max(11px, calc(14 * var(--p)));
}

/* 横並び時はflexで2カードの幅・高さを揃える */
.systemDetail {
  padding-top: calc(39 * var(--p));
  font-size: max(11px, calc(18 * var(--p)));
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.systemDetail__main,
.systemDetail__sub {
  -webkit-border-radius: calc(14 * var(--p));
     -moz-border-radius: calc(14 * var(--p));
          border-radius: calc(14 * var(--p));
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #fff;
  box-shadow: 0 calc(6 * var(--p)) calc(20 * var(--p)) rgba(92, 55, 12, 0.12);
}

.systemDetail__main {
  padding: calc(40 * var(--p)) calc(46 * var(--p));
  width: calc(485 * var(--p));
}

.systemDetail__sub {
  padding: calc(40 * var(--p)) calc(46 * var(--p));
  width: calc(485 * var(--p));
}

.systemLabel {
  padding: calc(6 * var(--p)) calc(24 * var(--p));
  font-size: max(11px, calc(17 * var(--p)));
}

.systemValue {
  font-size: max(11px, calc(30 * var(--p)));
}

/* 料金・営業時間カード内の各パーツ（PCサイズ） */
.priceGroup {
  margin-bottom: calc(26 * var(--p));
}

.priceGroup__title {
  font-size: max(13px, calc(18 * var(--p)));
}

.priceList__name {
  font-size: max(11px, calc(18 * var(--p)));
}

.priceList__price {
  font-size: max(11px, calc(22 * var(--p)));
}

.serviceNote {
  margin-top: calc(28 * var(--p));
  padding: calc(18 * var(--p)) calc(16 * var(--p));
}

.serviceNote__title {
  font-size: max(11px, calc(18 * var(--p)));
}

.serviceNote__body {
  font-size: max(11px, calc(17 * var(--p)));
}

.hoursGroup {
  margin-bottom: calc(20 * var(--p));
}

.hoursGroup__note {
  font-size: max(12px, calc(17 * var(--p)));
}

.hoursGroup__allYear {
  margin: calc(5 * var(--p)) 0 0;
  font-size: max(12px, calc(15 * var(--p)));
}

.systemCard__heading--second {
  margin-top: calc(34 * var(--p));
}

.ageNote {
  margin: 0;
  font-size: max(12px, calc(16 * var(--p)));
}

.ageNote__small {
  margin: calc(12 * var(--p)) 0 0;
  padding: calc(11 * var(--p)) calc(15 * var(--p));
  font-size: max(12px, calc(15 * var(--p)));
  line-height: 1.7;
}

.qaLink {
  margin: calc(24 * var(--p)) 0 0;
  font-size: max(12px, calc(16 * var(--p)));
}

/* デコ画像 */
.system__deco {
  position: absolute;
  left: calc(222 * var(--p));
  bottom: calc(-100 * var(--p));
}

/** ------------------------------------------------------------
 * #rule
 */
#rule {
  padding: calc(100 * var(--p)) 0;
  background-color: #efe7f5;
  /* 丸窓風の大円2つ＋ごく淡い水玉 */
  background-image:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.45) calc(179 * var(--p)), rgba(255, 255, 255, 0) calc(180 * var(--p))),
    radial-gradient(circle at 5% 72%, rgba(255, 211, 218, 0.5) calc(130 * var(--p)), rgba(255, 211, 218, 0) calc(131 * var(--p))),
    radial-gradient(rgba(255, 255, 255, 0.3) calc(3 * var(--p)), transparent calc(4 * var(--p))),
    radial-gradient(rgba(255, 255, 255, 0.3) calc(3 * var(--p)), transparent calc(4 * var(--p)));
  background-size: auto, auto, calc(36 * var(--p)) calc(36 * var(--p)), calc(36 * var(--p)) calc(36 * var(--p));
  background-position: 0 0, 0 0, 0 0, calc(18 * var(--p)) calc(18 * var(--p));
  background-repeat: no-repeat, no-repeat, repeat, repeat;
}

#rule .sectionTitle__sub {
  color: #383838;
}

#rule .sectionTitle .titleGraphic__en {
  font-size: max(11px, calc(40 * var(--p)));
}

#rule .sectionTitle .titleGraphic__accent {
  font-size: max(11px, calc(104 * var(--p)));
}

#rule .sectionTitle .titleGraphic__ja {
  font-size: max(11px, calc(14 * var(--p)));
}

.ruleList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(100 * var(--p)) calc(20 * var(--p));
  padding: calc(39 * var(--p)) calc(20 * var(--p)) 0;
}

.ruleList__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ruleCard {
  width: calc(250 * var(--p));
}

.ruleCard__number {
  top: calc(-17 * var(--p));
  left: calc(-10 * var(--p));
  font-size: max(11px, calc(100 * var(--p)));
}

.ruleCard__circle {
  width: calc(250 * var(--p));
  height: calc(250 * var(--p));
}

.ruleCard__click {
  top: calc(-29 * var(--p));
  left: calc(calc(-28 * var(--p)) + calc(87 * var(--p)) / 2); /* .ruleCard__badge とセンター揃え */
  font-size: max(11px, calc(17 * var(--p)));
}

.ruleCard__badge {
  top: calc(-4 * var(--p));
  left: calc(-28 * var(--p));
  width: calc(87 * var(--p));
  height: calc(87 * var(--p));
  font-size: max(11px, calc(20 * var(--p)));
}

.ruleCaption {
  margin-top: calc(-39 * var(--p));
  font-size: max(11px, calc(18 * var(--p)));
}

.ruleMessage {
  padding-top: calc(70 * var(--p));
  text-align: center;
}

.ruleMessageText {
  padding: 0 calc(40 * var(--p));
  font-size: max(11px, calc(16 * var(--p)));
  line-height: 1.7;
}

.ruleMessageText::before,
.ruleMessageText::after {
  width: calc(16 * var(--p));
}

/** ------------------------------------------------------------
 * モーダルウィンドウ
 */
.window {
  margin: 0 auto;
  -webkit-border-radius: calc(20 * var(--p));
     -moz-border-radius: calc(20 * var(--p));
          border-radius: calc(20 * var(--p));
  padding: calc(100 * var(--p)) calc(99 * var(--p)) calc(95 * var(--p));
  -webkit-box-shadow: 1px 1px calc(26 * var(--p)) rgba(92,55,12,0.7);
     -moz-box-shadow: 1px 1px calc(26 * var(--p)) rgba(92,55,12,0.7);
          box-shadow: 1px 1px calc(26 * var(--p)) rgba(92,55,12,0.7);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: calc(745 * var(--p));
  background-color: #fff;
}

.windowTitle {
  margin-bottom: calc(60 * var(--p));
  text-align: center;
  font-size: max(11px, calc(23 * var(--p)));
  letter-spacing: calc(3 * var(--p));
  font-weight: bold;
}

.windowTitle--qa img {
  width: calc(151 * var(--p));
}

.remodalClose {
  border: none;
  position: absolute;
  top: calc(38 * var(--p));
  right: calc(38 * var(--p));
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
}

.remodalClose:hover {
  opacity: 0.7;
}

.modalBg {
  background-color: transparent !important;
}

/** ------------------------------
 * Q&A
 */
.qaList {
  position: relative;
  line-height: 1.7;
}

.qaList__a::before {
  margin-right: calc(10 * var(--p));
  content: url("../images/qa-a.png");
  display: inline-block;
  vertical-align: middle;
}

.qaList__q::before {
  margin-right: calc(10 * var(--p));
  content: url("../images/qa-q.png");
  display: inline-block;
  vertical-align: middle;
}

.qaList__q span,
.qaList__a span {
  display: inline-block;
  vertical-align: middle;
  width: calc(454 * var(--p));
}

.qaList__a + .qaList__q {
  margin-top: calc(30 * var(--p));
  padding-top: calc(30 * var(--p));
  border-top: 2px dotted #5c370c;
}

.qaList__q {
  font-size: max(11px, calc(20 * var(--p)));
  font-weight: bold;
}

.qaList__a {
  margin-top: calc(30 * var(--p));
}

/** ------------------------------
 * その他のルール
 */
.otherRuleList li {
  padding-left: calc(17 * var(--p));
  position: relative;
  line-height: 1.7;
}

.otherRuleList li::before {
  content: "";
  -webkit-border-radius: calc(12 * var(--p));
     -moz-border-radius: calc(12 * var(--p));
          border-radius: calc(12 * var(--p));
  position: absolute;
  top: 0.4em;
  left: 0;
  display: block;
  width: calc(12 * var(--p));
  height: calc(12 * var(--p));
  background-color: #5c370c;
}

.otherRuleList li + li {
  margin-top: calc(28 * var(--p));
}

/** ------------------------------
 * 第１種動物取扱業者標識
 */
.lawList:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.lawList dd + dt,
.lawList dd {
  margin-bottom: calc(28 * var(--p));
}

.lawList dt {
  float: left;
  width: 12.6em;
}

.lawList dd {
  overflow: hidden;
}

/** ------------------------------------------------------------
 * #access
 */
#access {
  margin-top: calc(-270 * var(--p));
  padding: calc(270 * var(--p)) 0 0;
  background: url("../images/pc/index/access/bg.png") repeat 50% 0;
  line-height: 3.2em;
  font-weight: bold;
  text-align: center;
}

@media only screen and (min-width: 1920px) {
  #access {
    -webkit-background-size: 100% auto;
       -moz-background-size: 100% auto;
            background-size: 100% auto;
  }
}

.accessTitle {
  padding: 0 0 calc(72 * var(--p));
}

.accessTitle img {
  width: calc(287 * var(--p));
}

.accessTitle .titleGraphic__en {
  font-size: max(11px, calc(34 * var(--p)));
}

.accessTitle .titleGraphic__ja {
  font-size: max(11px, calc(14 * var(--p)));
}

address {
  padding-bottom: calc(50 * var(--p));
  font-style: normal;
}

/* 電話番号：大きく表示。PCでは発信リンクを無効化して通常テキスト扱いに */
.accessTel {
  color: inherit;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-size: max(11px, calc(32 * var(--p)));
  font-weight: 900;
  text-decoration: none;
  pointer-events: none;
}

.shopName {
  display: block;
  font-size: max(11px, calc(21 * var(--p)));
}

#access iframe {
  display: block;
  height: calc(600 * var(--p));
}

/** ------------------------------------------------------------
 * 下層
 */
.under {
  background-color: #fbedf0;
  /* ごく淡い水玉（トップページと共通のテクスチャ） */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) calc(3 * var(--p)), transparent calc(4 * var(--p))),
    radial-gradient(rgba(255, 255, 255, 0.35) calc(3 * var(--p)), transparent calc(4 * var(--p)));
  background-size: calc(36 * var(--p)) calc(36 * var(--p));
  background-position: 0 0, calc(18 * var(--p)) calc(18 * var(--p));
}

.frame {
  margin: 0 auto calc(100 * var(--p));
  padding: calc(70 * var(--p)) calc(56 * var(--p)) calc(100 * var(--p));
  max-width: calc(900 * var(--p));
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  line-height: 1.8;
  border-radius: 25px;
}

.frame > .table:last-of-type {
  margin-bottom: 0 !important;
}

.frameTitle {
  margin: 0 0 calc(52 * var(--p));
  font-size: max(11px, calc(24 * var(--p)));
  letter-spacing: 0.2em;
  font-weight: bold;
  text-align: center;
}

.basicTitle {
  margin: calc(20 * var(--p)) 0 calc(5 * var(--p));
  font-size: max(11px, calc(26 * var(--p)));
  letter-spacing: 0.2em;
  font-weight: bold;
}

/** ------------------------------
 * table
 */
.table {
  margin-bottom: calc(80 * var(--p));
  border-top: 2px solid #736357;
  border-bottom: 2px solid #736357;
  border-collapse: collapse;
  letter-spacing: 2px;
}

.table th,
.table td {
  padding: calc(20 * var(--p)) 0;
  border-top: 2px dotted #736357;
  border-bottom: 2px dotted #736357;
  vertical-align: middle;
  /* 狭幅PCでも読みやすいよう最小14pxを確保（上限は本文と同じ16px） */
  font-size: max(14px, calc(16 * var(--p)));
}

.table th {
  width: 33.5%;
  background-color: #fff3cc;
  font-weight: bold;
}

.table td {
  padding-right: calc(20 * var(--p));
  padding-left: calc(28 * var(--p));
}

@media only screen and (max-width: 850px) {
  .pcBr {
    display: none;
  }
}

/** ------------------------------
 * messageBox
 */
.messageBox {
  margin: calc(15 * var(--p)) calc(57 * var(--p)) calc(52 * var(--p));
  padding: calc(50 * var(--p));
  border: calc(6 * var(--p)) solid #5c370c;
  font-size: max(11px, calc(14 * var(--p)));
}

.messageBox__title {
  margin-bottom: calc(30 * var(--p));
  font-size: max(11px, calc(18 * var(--p)));
  font-weight: bold;
  text-align: center;
}

.messageBox > p + p {
  margin-top: 1em;
}

/** ------------------------------
 * form
 */
.form {
  letter-spacing: 2px;
}

.form th,
.form td {
  padding: 0 0 calc(50 * var(--p));
  vertical-align: top;
}

.form th {
  width: 28%;
  font-weight: bold;
  text-align: left;
}

.form th span {
  color: #ffc100;
  font-size: max(11px, calc(14 * var(--p)));
}

.form td {
  padding-right: calc(20 * var(--p));
  padding-left: calc(28 * var(--p));
}

.form input[type="text"],
.form input[type="file"],
.form textarea {
  font-size: max(11px, calc(16 * var(--p)));
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
}

.form input[type="text"],
.form textarea {
  padding: calc(8 * var(--p)) calc(10 * var(--p));
  border: 1px solid #5c370c;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form textarea {
  height: calc(130 * var(--p));
}

.form li + li {
  margin-top: calc(7 * var(--p));
}

/* 送信 */
.submit {
  text-align: center;
}

.submit * {
  display: inline-block;
}

.submit button {
  margin-top: calc(20 * var(--p));
  padding: calc(8 * var(--p)) calc(10 * var(--p));
  border: none;
  -webkit-border-radius: calc(5 * var(--p));
     -moz-border-radius: calc(5 * var(--p));
          border-radius: calc(5 * var(--p));
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(300 * var(--p));
  color :#fff;
  background-color: #ffc100;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: max(11px, calc(16 * var(--p)));
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
  outline: none;
}

.submit button:hover {
  opacity: 0.8;
}

/** ------------------------------------------------------------
 * 入力エラー
 */
.error {
  margin: calc(15 * var(--p)) calc(57 * var(--p)) calc(52 * var(--p));
  padding: calc(50 * var(--p)) calc(50 * var(--p)) calc(50 * var(--p)) calc(68 * var(--p));
  border: calc(6 * var(--p)) solid #ff8094;
  font-size: max(11px, calc(14 * var(--p)));
  color: #ff8094;
}

.error__item + .error__item {
  margin-top: 0.5em;
}

.error__item::before {
  content: "";
  margin-top: 0.5em;
  margin-left: calc(-18 * var(--p));
  -webkit-border-radius: calc(5 * var(--p));
     -moz-border-radius: calc(5 * var(--p));
          border-radius: calc(5 * var(--p));
  position: absolute;
  display: block;
  width: calc(10 * var(--p));
  height: calc(10 * var(--p));
  background-color: #ff8094;
}

/** ------------------------------------------------------------
 * エラーページ
 */
.errorMessage {
  padding: calc(40 * var(--p)) calc(20 * var(--p));
  -webkit-border-radius: calc(7 * var(--p));
     -moz-border-radius: calc(7 * var(--p));
          border-radius: calc(7 * var(--p));
  text-align: center;
  background-color: #fff3cc;
}

#exceptionMessage {
  margin-top: calc(40 * var(--p));
  padding: calc(40 * var(--p)) calc(20 * var(--p)) 0;
  border-top: 2px dotted #736357;
  font-size: 11px;
}

/** ------------------------------------------------------------
 * footer
 */
footer {
  padding: calc(74 * var(--p)) calc(20 * var(--p)) calc(90 * var(--p));
  position: relative;
  line-height: 1.2;
  background-color: var(--footer-bg);
  text-align: center;
}

footer,
footer a {
  color: var(--footer-text);
}

.footerInner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerSNSWrap {
  order: 1;
}

.footerNav {
  order: 2;
}

.copy {
  order: 3;
}

.footerCopyText {
  font-size: 10px;
  letter-spacing: 0.05em;
}

/** ------------------------------
 * SNS
 */
.footerSNS {
  margin: 0 auto;
}

/* 内側のレイアウト・サイズ・ホバーは共通の .snsList / .snsIcon に統一 */

/** ------------------------------
 * nav
 */
.footerNav {
  margin: calc(22 * var(--p)) auto calc(25 * var(--p));
  display: table;
  font-size: 10px;
  letter-spacing: 0.5em;
}

.footerNav__item {
  padding: 0 1.5em 0 2em;
  float: left;
  position: relative;
  z-index: 1;
}

.footerNav__item + .footerNav__item {
  border-left: 1px solid rgba(58, 52, 43, 0.35);
}

/** ------------------------------
 * TOPへ移動
 */
.pageTop {
  margin: 0 auto;
  padding-left: calc(236 * var(--p));
  position: absolute;
  left: 50%;
  bottom: 0;
}

.pageTop a {
  display: inline-block;
}

} /* /PC */

/* ==========================================================================
   SP (viewport width <= 1049px)
   旧 assets/css/sp/layout.css をそのまま移植（画像パスのみ調整）
   ========================================================================== */
@media only screen and (max-width: 750px) {

body {
  min-width: 320px;
  line-height: 1.5;
  color: #383838;
  background-color: #fff;
  font-size: min(3vw, 15px);
  font-family: 'Fredoka', 'Zen Maru Gothic', Helvetica, Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.001em;
  overflow: visible;
}

@media only screen and (max-width: 420px) {
  body {
    font-size: 11px;
  }
}

a {
  color: #ff8094;
  text-decoration: none;
}

img {
  vertical-align: top;
}

/** ------------------------------------------------------------
 * header
 */
.header {
  padding-top: 50px;
}

.logo {
  margin: 0 auto 35px;
  display: block;
  width: 44%;
  max-width: 330px;
}

.logo.logo--index {
  margin: -5% auto 5%;
  position: absolute;
  left: 0;
  bottom: 7vw;
  right: 0;
  z-index: 5;
  display: block;
  width: 66.4%;
  max-width: 498px;
}

.header--index .header__wrap {
  margin-top: -50px;
  position: relative;
}

.mainImage__bg {
  width: 100%;
  display: block;
}

.mainImage__cover {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.catchCopy {
  position: absolute;
  top: 36%;
  left: 6%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4.2vw, 21px);
  line-height: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 1.4);
}

.headerSeal {
  position: absolute;
  z-index: 1;
  bottom: -5%;
  width: 100%;
  overflow: hidden;
}

.headerSeal span {
  margin: 0 -3.3% 0 auto;
  display: block;
  width: 32%;
}

.headerSeal img {
  width: 100%;
}

/** ------------------------------
 * JS開閉部分（ハンバーガーメニュー）
 * 画像を使わずCSSで実装。木の温もりを感じるナチュラルな配色に統一。
 */
.panel {
  position: fixed;          /* ボタンと同じく画面固定。スクロール中に開いても画面内に表示 */
  top: 0;
  left: 0;
  z-index: 9990;
  width: 100%;
  display: none;
  /* 淡いクリーム→ベージュのグラデ＋ごく淡い水玉テクスチャ（他セクションと同系） */
  background-color: #f8efd8;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.55) 2px, transparent 2.5px),
    radial-gradient(rgba(255, 255, 255, 0.55) 2px, transparent 2.5px),
    -webkit-gradient(linear, left top, left bottom, from(#fbf4e1), to(#f1e3c8));
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.55) 2px, transparent 2.5px),
    radial-gradient(rgba(255, 255, 255, 0.55) 2px, transparent 2.5px),
    linear-gradient(180deg, #fbf4e1 0%, #f1e3c8 100%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
  background-position: 0 0, 12px 12px, 0 0;
  border-radius: 0 0 18px 18px;
  -webkit-box-shadow: 0 12px 26px rgba(92, 55, 12, 0.2);
          box-shadow: 0 12px 26px rgba(92, 55, 12, 0.2);
  overflow: hidden;
}

/** ------------------------------
 * navButton（3本線 → × をCSSで描画・アニメーション）
 */
.navButton {
  margin: 0;
  padding: 8px;             /* 円チップ(46px)＋余白で全体タップ領域を約62px角に */
  position: fixed;          /* スクロールしても常に画面上に固定表示 */
  top: 8px;
  right: 8px;
  z-index: 9991;            /* パネル(9990)より上。× を常に前面に */
}

/* 三本線の背面に置く円形の背景（チップ）。淡いクリーム＋やわらかい影で、
   どの背景色・写真の上でも三本線が見やすく、かつ主張しすぎない */
.navButton a {
  display: block;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(250, 243, 229, 0.9);
  border: 1px solid rgba(138, 98, 52, 0.12);
  -webkit-box-shadow: 0 2px 8px rgba(92, 55, 12, 0.22);
          box-shadow: 0 2px 8px rgba(92, 55, 12, 0.22);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-tap-highlight-color: transparent;
}

/* 旧画像は使用しない（HTMLに残っていても非表示） */
.navButton img {
  display: none;
}

.navButton__bar,
.navButton__bar::before,
.navButton__bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 3px;
  margin: -1.5px 0 0 -11px;   /* チップ中央に配置（縦・横センター） */
  border-radius: 3px;
  background-color: #6b4f2a;   /* 木のブラウン。淡いチップ上で高コントラスト */
  -webkit-transition: -webkit-transform 0.28s ease, opacity 0.2s ease, background-color 0.2s ease;
          transition: transform 0.28s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.navButton__bar::before { -webkit-transform: translateY(-7px); transform: translateY(-7px); }
.navButton__bar::after  { -webkit-transform: translateY(7px);  transform: translateY(7px); }

/* 開：中央線を消し、上下線を回転させて × に */
.navButton.open .navButton__bar {
  background-color: transparent;
}
.navButton.open .navButton__bar::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.navButton.open .navButton__bar::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/** ------------------------------
 * SNS：メニュー上部の帯。navと調和させつつ一段濃いベージュでメリハリ
 */
.headerSNS {
  padding: 56px 16px 18px;   /* 上端は navButton(×) と重ならない余白 */
  background-color: #f0e1c4;
  border-bottom: 1px solid rgba(138, 98, 52, 0.18);
}

/** ------------------------------
 * nav：クリーム地。項目の可読性を最優先
 */
.headerNav {
  background: transparent;
  text-align: center;
}

.headerNav__wrap {
  padding: 4px 0 10px;
}

.headerNav__item + .headerNav__item {
  border-top: 1px solid rgba(138, 98, 52, 0.14);
}

.headerNav__item a {
  display: block;
  padding: 3.6vw 0;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-weight: 700;
  font-size: min(4vw, 20px);
  color: #5c3f1a;            /* 濃い木のブラウン。クリーム地で高コントラスト */
  text-align: center;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
          transition: background-color 0.2s ease, color 0.2s ease;
}

.headerNav__item a:hover,
.headerNav__item a:active {
  background-color: rgba(138, 98, 52, 0.09);
  color: #8a6234;
}

.headerNav__item img {
  width: auto;
  max-width: 100%;
}

/** ------------------------------
 * SNS
 */
/* SP：ヘッダー内SNSも共通の .snsList / .snsIcon に統一 */

/** ------------------------------------------------------------
 * section
 */
.sectionInner {
  position: relative;
}

.sectionTitle {
  padding: 36px 0 15px;
  position: relative;
  z-index: 20;
}

#concept .sectionTitle {
  padding-top: 47px;
  text-align: center;
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 800;
}

/* 英字（Fredoka）は日本語より小さく見えるため少し大きくしてバランスを取る */
.sectionTitle__en {
  font-size: 1.2em;
}

.sectionTitle img {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 20;
}

@media only screen and (max-width: 400px) {
  .sectionTitle img {
    left: -3%;
  }
}

@media only screen and (min-width: 500px) {
  .sectionTitle img {
    position: static;
  }
}

/** ------------------------------------------------------------
 * #concept
 */
/* SPではセクションタイトル（titleGraphic）とサブタイトルを常にセンター揃えにする */
.sectionTitle .titleGraphic {
  justify-content: center;
}

.sectionTitle__sub {
  margin-top: 3vw;
  margin-bottom: min(8vw, 40px);
  text-align: center;
}

#concept {
  width: 100%;
  position: relative;
  z-index: 0;
  background-color: rgba(252, 241, 240, 0.72);
  /* 丸窓風の円5つ：サイズ・色・透明度を変えて奥行きとリズムを出す
     右上の白い大円は上端・右端から余白を取り全体が見えるように */
  background-image:
    radial-gradient(circle at calc(100% - 32vw) 42vw, rgba(255, 255, 255, 0.5) min(23.8vw, 119px), rgba(255, 255, 255, 0) min(24vw, 120px)),
    radial-gradient(circle at 16vw 18vw, rgba(255, 211, 218, 0.45) min(11.8vw, 59px), rgba(255, 211, 218, 0) min(12vw, 60px)),
    radial-gradient(circle at 12% 72%, rgba(191, 227, 223, 0.45) min(19.8vw, 99px), rgba(191, 227, 223, 0) min(20vw, 100px)),
    radial-gradient(circle at calc(100% - 18vw) 88%, rgba(255, 255, 255, 0.35) min(15.8vw, 79px), rgba(255, 255, 255, 0) min(16vw, 80px)),
    radial-gradient(circle at 58% 16vw, rgba(191, 227, 223, 0.35) min(7.8vw, 39px), rgba(191, 227, 223, 0) min(8vw, 40px));
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 猫の足あと：左上寄りの小さめ2歩（木目ブラウン・下のピンクとサイズ/向き違い） */
#concept::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  left: 3vw;
  top: 6vw;
  width: 20vw;
  height: 26vw;
  opacity: 0.22;
  transform: rotate(30deg);
  background-image: url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg");
  background-repeat: no-repeat;
  background-size: min(7.5vw, 38px) auto, min(6vw, 30px) auto;
  background-position: 22% 88%, 72% 12%;
}

/* 猫の足あと：右下から歩いてくる3歩（ブランドピンク・ごく淡く） */
#concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  right: min(5vw, 25px);
  bottom: min(8vw, 40px);
  width: min(36vw, 180px);
  height: min(56vw, 280px);
  opacity: 0.3;
  transform: rotate(14deg);
  background-image: url("../images/cat-paw-pink.svg"), url("../images/cat-paw-pink.svg"), url("../images/cat-paw-pink.svg");
  background-repeat: no-repeat;
  background-size: min(10vw, 50px) auto, min(8.5vw, 42px) auto, min(11.5vw, 57px) auto;
  background-position: 12% 94%, 68% 52%, 20% 8%;
}

#concept .sectionInner {
  --u: min(1vw, 8.82px);
  /* コントロールの実高さは--uに比例して増えるため、余白も同率で確保する */
  padding-bottom: calc(8 * var(--u) + 26px);
}

/** ------------------------------
 * スライド（.conceptSlidesを位置の基準にする）
 * --u はビューポート882pxで固定される擬似vw。
 * 大きなSP幅でも375px時と同じ重なり方（相対配置）を保つため、
 * サイズ・オフセットすべてを --u で指定し、基準ボックスも882pxで打ち止めて中央寄せする。
 */
.conceptSlides {
  position: relative;
  max-width: 882px;
  margin: 0 auto;
  height: calc(40 * var(--u) + max(224px, 54 * var(--u)));
}

.mainSlide {
  padding: 7px;
  position: absolute;
  top: 0;
  right: calc(-7 * var(--u));
  z-index: 2;
  width: calc(73.7 * var(--u));
  height: calc(73.7 * var(--u));
  -webkit-background-size: 100% 100%;
     -moz-background-size: 100% 100%;
          background-size: 100% 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.bx-viewport {
  position: relative;
  z-index: 2;
  -webkit-border-radius: 2000px;
  -moz-border-radius: 2000px;
  border-radius: 2000px;
  overflow: hidden;
  background: transparent;
  border: solid 7px #ff8094;
  background-color: #fff;
}

/* スライドは円（正方形）を保つ。横長画像は歪ませず中央基準でトリミングする */
.mainSlide .bxslider li {
  aspect-ratio: 1 / 1;
}

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

/* 2つの円をまたぐ猫イラスト（375px時: width130px / top24px / left21px 相当で全幅追従） */
.conceptSlides__neko {
  margin: 0;
  position: absolute;
  top: calc(6.4 * var(--u));
  left: calc(5.6 * var(--u));
  z-index: 3;
  width: calc(34.7 * var(--u));
}

.conceptSlides__neko img {
  width: 100%;
}

.subSlide {
  padding: 7px;
  position: absolute;
  top: calc(40 * var(--u));
  left: calc(-8 * var(--u));
  width: max(224px, 54 * var(--u));
  height: max(224px, 54 * var(--u));
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 7px #d3a5e9;
}

.subSlide img {
  width: 100%;
  height: 100%;
}

.subSlideText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 6vw;
  box-sizing: border-box;
  text-align: center;
  color: #383838;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
}

.subSlideText__list {
  margin: 0 0 2vw;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 3.4vw, 17px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.subSlideText__list li.subSlideText__item--play {
  font-size: clamp(20px, 3.4vw, 17px);
}

.subSlideText__list li {
  position: relative;
  display: none;
}

.subSlideText__list li:first-child {
  display: block;
}

.subSlideText__note {
  font-size: 0.75em;
  font-weight: 400;
}

.conceptSlides .subSlideText__closing {
    position: absolute;
    top: 83%;
    right: -1%;
    width: 54%;
    text-align: center;
    z-index: 5;
}

.subSlideText__closing {
  margin: 0;
  font-size: clamp(14px, 2.7vw, 14px);
  font-weight: 700;
  line-height: 1.5;
}

/* SPは上下の余白を詰めてスライダーの近くに配置する（ドットは大画面SPで肥大しないよう上限つき） */
.conceptSlides .bx-controls {
  margin-top: calc(2 * var(--u) + 8px);
}

/* SPは左右の矢印と干渉しないよう、当たり判定は確保しつつ一回り小さく */
.conceptSlides .bx-pager.bx-default-pager a {
  margin: 0 3px;
  width: 24px;
  height: 24px;
}

.conceptSlides .bx-pager.bx-default-pager a::before {
  width: 9px;
  height: 9px;
}

.conceptSlides .bx-pager.bx-default-pager a.active::before {
  width: 22px;
}

/* SPは一回り小さく。ページャの外側に十分な間隔を空けて配置する */
.conceptSlides .bx-controls-direction a {
  width: 36px;
  height: 36px;
  margin-top: -18px;
}

.conceptSlides .bx-controls-direction a::before {
  width: 9px;
  height: 9px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.conceptSlides .bx-prev {
  left: calc(50% - min(136px, 32vw));
}

.conceptSlides .bx-next {
  right: calc(50% - min(136px, 32vw));
}

/** ------------------------------------------------------------
 * #calendar
 */
/* 木の温もりをイメージした斜めストライプ */
#calendar {
  padding: min(6vw, 30px) 0 min(26vw, 130px);
  background-color: #f3e7d5;
  overflow: hidden;
  /* 幅を変えた4段のストライプで板の並びを表現し、上からの淡い光で単調さを回避 */
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 40%),
    repeating-linear-gradient(-45deg,
      rgba(177, 133, 79, 0.09) 0 28px,
      rgba(177, 133, 79, 0.02) 28px 56px,
      rgba(177, 133, 79, 0.06) 56px 84px,
      rgba(177, 133, 79, 0) 84px 112px);
}

#calendar .sectionInner {
  position: relative;
  z-index: 0;
}

/* 猫の足あと：タイトル脇の右上に2歩（フッターの茶色） */
#calendar .sectionInner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  right: 2vw;
  top: 0;
  width: min(26vw, 130px);
  height: min(30vw, 150px);
  opacity: 0.22;
  transform: rotate(-28deg);
  background-image: url("../images/cat-paw-brown.svg"), url("../images/cat-paw-brown.svg");
  background-repeat: no-repeat;
  background-size: min(9.5vw, 47px) auto, min(7.5vw, 38px) auto;
  background-position: 14% 90%, 74% 12%;
}

#calendar h2 {
  margin-bottom: 20px;
}

#calendar h2 .titleGraphic__en {
  font-size: min(8vw, 40px);
}

#calendar h2 .titleGraphic__accent {
  font-size: min(20.8vw, 104px);
}

#calendar h2 .titleGraphic__ja {
  font-size: min(3.2vw, 16px);
}

#calendar .calendarFrame iframe {
  border: none;
  height: 440px;
}


/** ------------------------------------------------------------
 * #cat
 */
#cat {
  padding-bottom: 12vw;
  position: relative;
  z-index: 0;
  background-color: #f7ecca;
  /* ごく淡い水玉（他セクションと共通のテクスチャ） */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) min(0.8vw, 4px), transparent min(1vw, 5px)),
    radial-gradient(rgba(255, 255, 255, 0.35) min(0.8vw, 4px), transparent min(1vw, 5px));
  background-size: min(9vw, 45px) min(9vw, 45px);
  background-position: 0 0, min(4.5vw, 22.5px) min(4.5vw, 22.5px);
  overflow: hidden;
}

/* 猫の足あと：下部センター寄りの2歩（右上トレイルと同色で統一） */
#cat::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  left: -16px;
  bottom: 150px;
  width: 23vw;
  height: 30vw;
  opacity: 0.26;
  transform: rotate(-18deg);
  background-image: url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg");
  background-repeat: no-repeat;
  background-size: min(9vw, 45px) auto, min(7.5vw, 38px) auto;
  background-position: 20% 85%, 70% 20%;
}

/* 猫の足あと：右上の丸窓を横切る2歩（木目ブラウン・ごく淡く） */
#cat::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  right: min(4vw, 20px);
  top: min(8vw, 40px);
  width: min(42vw, 210px);
  height: min(80vw, 400px);
  opacity: 0.26;
  transform: rotate(22deg);
  background-image: url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg"), url("../images/cat-paw-wood.svg");
  background-repeat: no-repeat;
  background-size: min(11.5vw, 57px) auto, min(9.5vw, 47px) auto, min(10.5vw, 52px) auto, min(8.5vw, 42px) auto;
  background-position: 16% 94%, 72% 66%, 20% 38%, 76% 6%;
}

#cat h2 .titleGraphic__accent {
  font-size: min(20.8vw, 104px);
}
#cat h2 .titleGraphic__en {
  font-size: min(8vw, 40px);
}

.catList {
  /* SPも同じく列数可変のグリッド。最小140pxで最低2列を確保しつつ、
     画面が広がれば自動的に列が増える（固定列数にしない） */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr));
  gap: 8vw 5vw;
  align-items: start;
  margin: 0;
  padding: 0 5.78vw;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.catList__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 0;
}

.cat__name {
  margin: 3.5vw 0 0;
  max-width: 100%;
  padding: 0 1.2em;
  -webkit-border-radius: 1.8em;
     -moz-border-radius: 1.8em;
          border-radius: 1.8em;
  position: relative;
  line-height: 1.8;
  color: #383838;
  background-color: #e9d7bd;
  font-size: clamp(13px, 3.47vw, 18px);
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catList__item.green .cat__name {
  background-color: #a9d7cf;
}
.catList__item.orange  .cat__name {
  background-color: #f4c98f;
}
.catList__item.yerrow  .cat__name {
  background-color: #f2dc9b;
}
.catList__item.pink  .cat__name {
  background-color: #f9bcc7;
}

.cat__name::before,
.cat__name::after {
  content: "";
  margin: auto 0;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fff;
}

.cat__name::before {
  right: 9px;
}

.cat__name::after {
  left: 9px;
}

.cat__image {
  position: relative;
  width: 100%;
  max-width: 41.33vw;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.cat__image img {
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  border: 6px solid #fff;
  box-shadow: 0 min(1.5vw, 6px) min(4vw, 16px) rgba(92, 55, 12, 0.15);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.catList__item.green .cat__image img {
  border-color: #a9d7cf;
}
.catList__item.orange .cat__image img {
  border-color: #f4c98f;
}
.catList__item.yerrow .cat__image img {
  border-color: #f2dc9b;
}
.catList__item.pink .cat__image img {
  border-color: #f9bcc7;
}

.cat__type {
  margin: 2.5vw 0 0;
  color: #8a6234;
  font-size: min(3.6vw, 16px);
  font-weight: bold;
  line-height: 1.55;
  text-align: center;
}

.cat__detail {
  margin: 2vw 0 0;
  color: #6b5535;
  font-size: min(3.2vw, 14px);
  line-height: 1.8;
  text-align: center;
}

.cat__detail dt {
  font-weight: bold;
}

.cat__detail dt::before {
  margin-right: 3px;
  content: "[";
}

.cat__detail dt::after {
  margin-left: 3px;
  content: "]";
}

/* デコ画像 */
.cat__deco {
  margin-top: 13vw;
  padding-right: 4.6vw;
  float: right;
  position: relative;
  width: 38.8vw;
}

.catList .catList__item:nth-child(2n) + .cat__deco {
  margin: 0 auto;
  padding-right: 0;
  float: none;
}

.cat__deco img {
  width: 100%;
}

/** ------------------------------------------------------------
 * #system
 */
#system {
  margin: 0 auto;
  padding: 0 6.6vw 6vw;
  position: relative;
  background: #eadbc8 url("../images/system-bg.jpg") no-repeat 50% 50%;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  overflow: hidden;
}

/* 写真の上にクリームのベールを重ね、文字の可読性を確保する */
#system::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(252, 241, 240, 0.72);
}

#system .sectionInner {
  position: relative;
  z-index: 1;
}

#system .sectionTitle .titleGraphic__en {
  font-size: min(7vw, 35px);
}

#system .sectionTitle .titleGraphic__accent {
  font-size: min(18.2vw, 91px);
}

#system .sectionTitle .titleGraphic__ja {
  font-size: min(3vw, 15px);
}

.systemDetail__main,
.systemDetail__sub {
  margin-top: 2vw;
  margin-bottom: 6.6vw;
  padding: 7vw 6vw;
  -webkit-border-radius: min(3vw, 14px);
     -moz-border-radius: min(3vw, 14px);
          border-radius: min(3vw, 14px);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #fff;
  box-shadow: 0 min(1.5vw, 6px) min(4vw, 20px) rgba(92, 55, 12, 0.12);
}

.systemLabel {
  padding: 1.2vw 5vw;
  font-size: min(3.8vw, 19px);
}

.systemValue {
  font-size: min(7vw, 35px);
}

/* 料金・営業時間カード内の各パーツ（SPサイズ） */
.priceGroup {
  margin-bottom: 5vw;
}

.priceGroup__title {
  font-size: min(3.8vw, 19px);
}

.priceList__name {
  font-size: min(4.2vw, 21px);
}

.priceList__price {
  font-size: min(5.2vw, 26px);
}

.serviceNote {
  margin-top: 6vw;
  padding: 4.5vw 4vw;
}

.serviceNote__title {
  font-size: min(4.2vw, 21px);
}

.serviceNote__body {
  font-size: min(4vw, 20px);
}

.hoursGroup {
  margin-bottom: 5vw;
}

.hoursGroup__note {
  font-size: min(3.6vw, 18px);
}

.hoursGroup__allYear {
  margin: 1vw 0 0;
  font-size: min(3.2vw, 16px);
}

.systemCard__heading--second {
  margin-top: 8vw;
}

.ageNote {
  margin: 0;
  font-size: min(3.4vw, 17px);
}

.ageNote__small {
  margin: 3vw 0 0;
  padding: 2.5vw 3vw;
  font-size: min(3.2vw, 16px);
}

.qaLink {
  margin: 6vw 0 0;
  font-size: min(3.4vw, 17px);
}

/* デコ画像 */
.system__deco {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 40.9%;
}

.system__deco img {
  width: 100%;
}

/** ------------------------------------------------------------
 * #rule
 */
#rule {
  padding-bottom: min(12vw, 60px);
  background-color: #efe7f5;
  /* 丸窓風の大円2つ＋ごく淡い水玉 */
  background-image:
    radial-gradient(circle at 96% 6%, rgba(255, 255, 255, 0.45) min(28vw, 140px), rgba(255, 255, 255, 0) calc(min(28vw, 140px) + 1px)),
    radial-gradient(circle at 3% 74%, rgba(255, 211, 218, 0.5) min(22vw, 110px), rgba(255, 211, 218, 0) calc(min(22vw, 110px) + 1px)),
    radial-gradient(rgba(255, 255, 255, 0.3) min(0.8vw, 4px), transparent min(1vw, 5px)),
    radial-gradient(rgba(255, 255, 255, 0.3) min(0.8vw, 4px), transparent min(1vw, 5px));
  background-size: auto, auto, min(9vw, 45px) min(9vw, 45px), min(9vw, 45px) min(9vw, 45px);
  background-position: 0 0, 0 0, 0 0, min(4.5vw, 22.5px) min(4.5vw, 22.5px);
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  overflow: hidden;
}

#rule .sectionTitle .titleGraphic__en {
  font-size: min(7vw, 35px);
}

#rule .sectionTitle .titleGraphic__accent {
  font-size: min(18.2vw, 91px);
}

#rule .sectionTitle .titleGraphic__ja {
  font-size: min(3vw, 15px);
}

.ruleList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 円がmax160pxで止まるのに合わせ、間隔も470px相当で成長を止める */
  gap: min(15vw, 70px) min(4vw, 19px);
  padding: 0 min(4vw, 19px);
}

.ruleList__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ruleCard {
  width: 34vw;
  max-width: 160px;
}

.ruleCard__number {
  /* 円のキャップ(470px相当で160px)に合わせ、数字も同じ地点で成長を止めて重なりを防ぐ */
  top: max(-2vw, -9px);
  left: min(3vw, 14px);
  font-size: min(13vw, 61px);
}

.ruleCard__circle {
  width: 34vw;
  height: 34vw;
  max-width: 160px;
  max-height: 160px;
}

.ruleCard__click {
  top: max(-6vw, -28px);
  left: min(calc(-3vw + 15vw / 2), 21px); /* .ruleCard__badge とセンター揃え */
  font-size: min(2.6vw, 13px);
}

.ruleCard__badge {
  top: max(-1.5vw, -7px);
  left: max(-3vw, -14px);
  width: 15vw;
  height: 15vw;
  max-width: 70px;
  max-height: 70px;
  font-size: min(3vw, 15px);
}

.ruleCaption {
  margin-top: max(-4vw, -19px);
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.6;
}

.ruleMessage {
  padding: 12vw 4vw 0;
  text-align: center;
}

.ruleMessage img {
  width: auto;
  max-width: 100%;
}

.ruleMessageText {
  padding: 0 min(8vw, 40px);
  font-size: min(3.4vw, 17px);
  line-height: 1.6;
}

/* PCの calc(16 * var(--p))（≒16px）と同じ見た目になるよう、SPも16px相当に統一 */
.ruleMessageText::before,
.ruleMessageText::after {
  width: min(4.3vw, 16px);
}

/** ------------------------------------------------------------
 * モーダルウィンドウ
 */
.remodal {
  max-width: 660px !important;
}

.window {
  margin: 0 auto;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  padding: 60px 35px 50px;
  -webkit-box-shadow: 1px 1px 26px rgba(92,55,12,0.7);
     -moz-box-shadow: 1px 1px 26px rgba(92,55,12,0.7);
          box-shadow: 1px 1px 26px rgba(92,55,12,0.7);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #fff;
  font-size: min(2.6vw, 13px);
}

@media only screen and (min-width: 660px) {
  .window {
    font-size: 16px;
  }
}

@media only screen and (max-width: 500px) {
  .window {
    font-size: 12px;
  }
}

.windowTitle {
  margin-bottom: 35px;
  text-align: center;
  letter-spacing: 3px;
  font-weight: bold;
}

.remodalClose {
  border: none;
  position: absolute;
  top: 15px;
  right: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
}

.remodalClose img {
  width: 40px;
}

.modalBg {
  background-color: transparent !important;
}

/** ------------------------------
 * Q&A
 */
.windowTitle--qa img {
  width: 29.1vw;
  max-width: 151px;
}

.qaList {
  position: relative;
  line-height: 1.7;
}

.qaList__a::before {
  content: "";
  margin-right: 10px;
  width: 10vw;
  height: 8.4vw;
  background: url("../images/qa-a.png") no-repeat 0 0;
  -webkit-background-size: 100% 100%;
     -moz-background-size: 100% 100%;
          background-size: 100% 100%;
  display: block;
  float: left;
}

.qaList__q::before {
  content: "";
  margin-right: 10px;
  width: 10vw;
  height: 8.6vw;
  background: url("../images/qa-q.png") no-repeat 0 0;
  -webkit-background-size: 100% 100%;
     -moz-background-size: 100% 100%;
          background-size: 100% 100%;
  display: block;
  float: left;
}

.qaList__q span,
.qaList__a span {
  display: block;
  overflow: hidden;
}

.qaList__a + .qaList__q {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dotted #5c370c;
}

.qaList__q {
  clear: both;
  font-size: 140%;
  font-weight: bold;
}

.qaList__a {
  clear: both;
  padding-top: 20px;
}

/** ------------------------------
 * その他のルール
 */
.otherRuleList li {
  margin-top: 1.4em;
  padding-left: 17px;
  position: relative;
  line-height: 1.7;
}

.otherRuleList li::before {
  content: "";
  -webkit-border-radius: 11px;
     -moz-border-radius: 11px;
          border-radius: 11px;
  position: absolute;
  top: 0.4em;
  left: 0;
  display: block;
  width: 11px;
  height: 11px;
  background-color: #5c370c;
}

/** ------------------------------
 * 第１種動物取扱業者標識
 */
.lawList:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.lawList dt {
  margin-bottom: 5px;
  font-weight: bold;
}

.lawList dd {
  margin-bottom: 24px;
}

@media only screen and (min-width: 420px) {
  .lawList dt {
    margin-bottom: 24px;
    float: left;
    width: 13em;
    font-weight: normal;
  }

  .lawList dd {
    overflow: hidden;
  }
}

/** ------------------------------------------------------------
 * #access
 */
#access {
  position: relative;
  background: url("../images/sp/index/access/bg.png") no-repeat 50% 0;
  -webkit-background-size: 100% auto;
     -moz-background-size: 100% auto;
          background-size: 100% auto;
  line-height: 2.6em;
  font-weight: bold;
  text-align: center;
  font-size: 120%;
}

#access::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -84px;
  left: 0;
  right: 0;
  width: 100%;
  height: 84px;
  background: url("../images/sp/index/access/bg.png") no-repeat 50% 0;
  -webkit-background-size: 100% 100%;
     -moz-background-size: 100% 100%;
          background-size: 100% 100%;
}

@media only screen and (max-width: 650px) {
  #access::before {
    -webkit-background-size: 120% 100%;
       -moz-background-size: 120% 100%;
            background-size: 120% 100%;
  }
}

@media only screen and (max-width: 550px) {
  #access::before {
    -webkit-background-size: 140% 100%;
       -moz-background-size: 140% 100%;
            background-size: 140% 100%;
  }
}

.accessTitle {
  padding: 8vw 0;
  text-align: center;
}

.accessTitle img {
  width: 51%;
}

.accessTitle .titleGraphic__en {
  font-size: min(7vw, 35px);
}

.accessTitle .titleGraphic__ja {
  font-size: min(3vw, 15px);
}

address {
  padding-bottom: 8vw;
  display: block;
  font-style: normal;
}

/* 電話番号：大きく表示し、タップで発信できるようリンクを有効化 */
.accessTel {
  display: inline-block;
  color: inherit;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ", sans-serif;
  font-size: min(8vw, 40px);
  font-weight: 900;
  text-decoration: none;
}

.shopName {
  margin-bottom: 2vw;
  display: block;
  font-size: 120%;
}

#access iframe {
  display: block;
  height: 300px;
}

/** ------------------------------------------------------------
 * 下層
 */
.under {
  background-color: #fbedf0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) min(0.8vw, 4px), transparent min(1vw, 5px)),
    radial-gradient(rgba(255, 255, 255, 0.35) min(0.8vw, 4px), transparent min(1vw, 5px));
  background-size: min(9vw, 45px) min(9vw, 45px);
  background-position: 0 0, min(4.5vw, 22.5px) min(4.5vw, 22.5px);
}

.frame {
  margin: 0 10px 50px;
  padding: 53px 20px 50px;
  background-color: #fff;
  line-height: 1.8;
  border-radius: 15px;
}

@media only screen and (min-width: 660px) {
  .frame {
    font-size: 16px;
  }
}

@media only screen and (min-width: 800px) {
  .frame {
    margin-right: auto;
    margin-left: auto;
    width: 780px;
  }
}

.frame > .table:last-of-type {
  margin-bottom: 0 !important;
}

.frameTitle {
  margin: 0 0 33px;
  font-size: min(5vw, 25px);
  letter-spacing: 0.2em;
  font-weight: bold;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .frameTitle {
    font-size: 24px;
  }
}

.basicTitle {
  margin: 20px 0 5px;
  font-size: 160%;
  letter-spacing: 0.2em;
  font-weight: bold;
}

/** ------------------------------
 * table
 */
.table {
  margin-bottom: 80px;
  border-top: 2px solid #736357;
  border-bottom: 2px solid #736357;
  border-collapse: collapse;
  letter-spacing: 2px;
}

.table th,
.table td {
  padding: 12px 0;
  border-top: 2px dotted #736357;
  border-bottom: 2px dotted #736357;
  vertical-align: middle;
  /* SPでも読みやすいよう最小14pxを確保（画面幅に応じて最大16pxまで） */
  font-size: clamp(14px, 3.8vw, 16px);
}

.table th {
  width: 34%;
  background-color: #fff3cc;
  font-weight: bold;
}

.table td {
  padding-right: 15px;
  padding-left: 15px;
}

@media only screen and (max-width: 850px) {
  .pcBr {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .table,
  .table tbody,
  .table tr,
  .table th,
  .table td {
    width: auto;
    display: block;
  }

  .table tr:first-of-type th {
    border-top: none;
  }

  .table td {
    border: none;
  }

  .table th {
    padding-right: 15px;
    padding-left: 15px;
    text-align: left;
  }
}

/** ------------------------------
 * messageBox
 */
.messageBox {
  margin: 15px 0 52px;
  padding: 25px;
  border: 4px solid #5c370c;
}

.messageBox__title {
  margin-bottom: 30px;
  font-size: 120%;
  font-weight: bold;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .messageBox__title br {
    display: none;
  }
}

.messageBox__title br

.messageBox > p + p {
  margin-top: 1em;
}

/** ------------------------------
 * form
 */
.form th,
.form td {
  padding: 0 0 25px;
  vertical-align: top;
}

.form th {
  width: 10.5em;
  font-weight: bold;
  text-align: left;
}

@media only screen and (max-width: 600px) {
  .form,
  .form tbody,
  .form tr,
  .form th,
  .form td {
    width: auto;
    display: block;
  }

  .form th {
    padding-bottom: 5px;
  }
}

.form th span {
  margin-left: 2px;
  color: #ffc100;
  font-size: 90%;
}

.form input[type="text"],
.form input[type="file"],
.form textarea {
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
}

.form input[type="text"],
.form textarea {
  padding: 6px 10px;
  border: 1px solid #5c370c;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form textarea {
  height: 130px;
}

.form li + li {
  margin-top: 10px;
}

/* 送信 */
.submit {
  margin: 0 auto;
  display: table;
  table-layout: fixed;
  text-align: center;
  width: 73%;
}

.submit > form {
  padding-right: 5px;
  display: table-cell;
}

.submit > form + form {
  padding-right: 0;
  padding-left: 5px;
}

.submit button {
  margin-top: 20px;
  padding: 8px 0;
  border: none;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  color :#fff;
  background-color: #ffc100;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: 'Fredoka', 'Zen Maru Gothic', "メイリオ","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
  outline: none;
}

/** ------------------------------------------------------------
 * 入力エラー
 */
.error {
  margin: 15px 0 52px;
  padding: 25px 25px 25px 43px;
  border: 4px solid #ff8094;
  color: #ff8094;
}

.error__item + .error__item {
  margin-top: 0.5em;
}

.error__item::before {
  content: "";
  margin-top: 0.5em;
  margin-left: -18px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ff8094;
}

/** ------------------------------------------------------------
 * エラーページ
 */
.errorMessage {
  padding: 40px 20px;
  -webkit-border-radius: 7px;
     -moz-border-radius: 7px;
          border-radius: 7px;
  text-align: center;
  background-color: #fff3cc;
}

#exceptionMessage {
  margin-top: 40px;
  padding: 40px 20px 0;
  border-top: 2px dotted #736357;
  font-size: 11px;
}

/** ------------------------------------------------------------
 * footer
 */
footer {
  padding: 24px 0 0;
  position: relative;
  line-height: 1.2;
  background-color: var(--footer-bg);
  text-align: center;
}

footer,
footer a {
  color: var(--footer-text);
}

.footerInner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerSNSWrap {
  order: 1;
  margin-top: 8px;
}

.footerNav {
  order: 2;
}

.copy {
  order: 3;
}

/** ------------------------------
 * nav
 */
.footerNav {
  margin: 0 auto 24px;
  display: table;
  font-size: min(2.8vw, 14px);
}

@media only screen and (min-width: 660px) {
  .footerNav {
    font-size: 20px;
    letter-spacing: 3px;
  }
}

.footerNav__item {
  padding: 0 12px;
  float: left;
  position: relative;
  z-index: 1;
}

.footerNav__item + .footerNav__item {
  border-left: 1px solid rgba(58, 52, 43, 0.35);
}

/** ------------------------------
 * copy
 */
.copy {
  margin: 0 50px 40px;
}

.copy img {
  max-width: 100%;
}

.copy .footerCopyText {
  font-size: min(2.6vw, 13px);
  letter-spacing: 0.02em;
}

/** ------------------------------
 * SNS
 */
/* SP：旧・背景画像に合わせた絶対配置をやめ、在来フローで中央寄せ。
   レイアウト・サイズ・ホバーは共通の .snsList / .snsIcon に統一 */
.footerSNS {
  margin: 0 auto 24px;
}

/** ------------------------------
 * TOPへ移動
 */
.pageTop {
  margin: 0 auto;
  position: relative;
  width: 41%;
}

.pageTop a {
  display: inline-block;
}

.pageTop img {
  width: 100%;
  max-width: 236px;
}

} /* /SP */
