/*
 * ======================================
 * site.css — ヘアースタジオフェイズ 固有スタイル
 * ======================================
 *
 * [共通コンポーネント（全ページ）]
 * .header-sticky           — スクロール連動ヘッダー
 * .phase-title             — サブページ共通見出し（英+日）
 * .phase-color-half        — クリーム色片寄せ装飾背景
 * .phase-greeting          — 写真2枚重なりレイアウト（about.php）
 * .phase-service-card      — hover reveal figcaptionカード
 * .phase-point-box         — 選ばれる理由ボックス（recruit.php）
 * .phase-fixed-bg          — parallax固定背景セクション
 * .phase-sp-bar            — SP固定バー（page-bottom.php）
 * .phase-access__*         — アクセス情報（about.php, contact.php）
 * .phase-calendar-note     — カレンダー注記ボックス（contact.php）
 * .phase-product-*         — 商品グリッド（item.php）
 *
 * [TOPページ専用]
 * .phase-mv                — MVスライドショー
 * .phase-sec-hdg           — セクション見出し（英italic+日横線）
 * .phase-greeting-sec      — ご挨拶セクション（グリッド+写真枠）
 * .phase-menu-grid/card    — メニュー5列グリッド
 * .phase-reasons/card      — 選ばれる理由3列フォトカード
 * .phase-recruit-bnr       — 求人バナー（暗背景+BG写真）
 * .phase-info-table        — 店舗情報テーブル（dl形式）
 * .phase-shop-grid         — 店舗情報+地図グリッド
 *
 * [サブページ共通]
 * .phase-page-hero         — サブページヒーロー（アイボリー背景+大装飾文字）
 * .phase-gallery-grid      — 店内ギャラリー（2fr 1fr 1fr × 2行グリッド）
 * .phase-gallery-lead      — ギャラリー上リード文
 *
 * [商品ページ（item.php）]
 * .phase-item-grid         — 商品カードグリッド（3列→2列→1列）
 * .phase-item-card         — 商品カード（画像+ボディ）
 * .phase-item-note         — 商品一覧下の注記テキスト
 * .phase-ask-us            — 店頭相談CTA（中央寄せ、アイボリー背景用）
 *
 * [採用ページ（recruit.php）]
 * .phase-recruit-reasons   — 選ばれる理由 2×2グリッド（table罫線型）
 * .phase-tel-bnr           — 採用電話CTA（アイボリー角丸ボックス）※contact.phpでも流用
 *
 * [予約ページ（contact.php）]
 * .phase-contact-cms       — CMSフォーム埋め込みラッパー（max-width制御）
 * .phase-policy-box        — キャンセルポリシーボックス（白背景・細罫線）
 *
 * [共通ボタン（v2）]
 * .phase-btn-fill          — グリーン塗りつぶしPillボタン
 * .phase-btn-outline       — アウトラインPillボタン
 * .phase-btn-line          — 下線矢印テキストボタン
 *
 * [共通インクルード]
 * .phase-cta-strip         — CTAセクション（contact-cta.php）
 * .phase-footer            — フッター（footer.php）
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * - 構造不足: MV背景フェードスライドショー → .phase-mv
 * - 構造不足: 英italic + 日横線あしらい見出し → .phase-sec-hdg
 * - 構造不足: 写真枠オフセット装飾 → .phase-greeting-sec__photo::before
 * - 構造不足: 5列ボーダーグリッドメニュー → .phase-menu-grid
 * - 構造不足: 写真top+番号バッジカード → .phase-reason-card
 * - 値の粒度不足: Pillボタン（border-radius:999px） → phase-btn-fill
 * - 構造不足: 暗背景CTA帯+背景テキスト → .phase-cta-strip
 *
 */

/* ==========================================================================
   ヘッダー拡張
   ========================================================================== */

.header-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.05em;
}

/* ロゴ */
.header-logo {
  gap: 12px;
}

.header-logo__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  letter-spacing: 0.06em;
}

.header-logo__sub {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
}

/* ヘッダーをアイボリー固定背景に変更（FV上に重ならないよう） */
.header-sticky {
  position: fixed;
  background: rgba(252, 251, 243, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.header-sticky.is-fixed {
  background: rgba(252, 251, 243, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ヘッダー高さ・パディング統一（clauddesign 準拠: 86px / SP 64px） */
.header-sticky .header__inner,
.header-sticky.is-fixed .header__inner {
  padding: 0 32px;
  height: 86px;
}

@media (max-width: 1100px) {
  .header-sticky .header__inner,
  .header-sticky.is-fixed .header__inner {
    padding: 0 20px;
    height: 86px;
  }
}

@media (max-width: 639px) {
  .header-sticky .header__inner,
  .header-sticky.is-fixed .header__inner {
    padding: 0 16px;
    height: 64px;
  }
}

/* main にヘッダー高さ分の余白を確保 */
main {
  padding-top: 86px;
}

@media (max-width: 639px) {
  main {
    padding-top: 64px;
  }
}

/* ナビ間隔 */
.header__nav {
  gap: 36px;
}

/* ナビ EN テキスト */
.header__nav-en {
  font-size: 1.6rem;
}

/* ナビ JA テキスト */
.header__nav-ja {
  font-size: 1.4rem;
  font-weight: 400;
}

/* 電話番号ラップ（番号 + 営業時間注記） */
.header__tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

/* 電話番号：Font Awesome アイコン非表示、サイズ調整 */
.header__tel {
  font-size: 1.9rem;
}

.header__tel::before {
  display: none;
}

/* 営業時間注記 */
.header__tel-note {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  color: #777;
  white-space: nowrap;
  line-height: 1;
}

/* CTAボタン：pill 形状・clauddesign 準拠サイズ */
.header__cta {
  height: auto;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

/* SP ロゴ・ボタン縮小 */
@media (max-width: 639px) {
  .header-logo__icon { width: 36px; height: 36px; font-size: 1.7rem; }
  .header-logo__name { font-size: 1.6rem; }
  .header-logo__sub  { font-size: 0.95rem; }
  .header__cta { padding: 10px 16px; font-size: 1.2rem; }
}

/* ==========================================================================
   phase-title — サブページ共通見出し（about.php / menu.php / item.php等）
   ========================================================================== */

.phase-title {
  text-align: center;
  margin-bottom: 50px;
}

.phase-title .phase-title__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #6BC503;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.phase-title .phase-title__ja {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.phase-title--left {
  text-align: left;
}

@media (max-width: 639px) {
  .phase-title .phase-title__en { font-size: 2.4rem; }
  .phase-title .phase-title__ja { font-size: 1.8rem; }
}

/* ==========================================================================
   phase-color-half — クリーム色片寄せ装飾背景（about.php / recruit.php）
   ========================================================================== */

.phase-color-half {
  position: relative;
}

.phase-color-half::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 64%;
  bottom: 0;
  right: 0;
  background: rgba(217, 204, 156, 0.1);
  z-index: 0;
  pointer-events: none;
}

.phase-color-half > * {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   phase-greeting — 写真2枚重なりレイアウト（about.php）
   ========================================================================== */

.phase-greeting {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 5%;
}

.phase-greeting__imgs {
  width: 45%;
  flex-shrink: 0;
  position: relative;
}

.phase-greeting__img01 { width: 90%; display: block; }
.phase-greeting__img01 img { width: 100%; height: auto; object-fit: cover; display: block; }

.phase-greeting__img02 {
  width: 45%;
  margin-top: -60px;
  margin-left: auto;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.phase-greeting__body {
  width: 52%;
  padding-top: 20px;
}

.phase-greeting__sign {
  font-size: 1.5rem;
  color: #777;
  margin-top: 20px;
  text-align: right;
}

@media (max-width: 896px) {
  .phase-greeting { flex-direction: column; gap: 30px; }
  .phase-greeting__imgs,
  .phase-greeting__body { width: 100%; }
  .phase-greeting__img02 { margin-top: -40px; }
}

/* ==========================================================================
   phase-service-card — hover reveal figcaptionカード（汎用）
   ========================================================================== */

.phase-service-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.phase-service-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.phase-service-card:hover img,
.phase-service-card a:hover img {
  transform: scale(1.05);
}

.phase-service-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px 20px;
  transform: translateY(calc(100% - 60px));
  transition: transform 0.35s ease;
}

.phase-service-card:hover figcaption,
.phase-service-card a:hover figcaption {
  transform: translateY(0);
}

.phase-service-card figcaption h4,
.phase-service-card figcaption .phase-service-card__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #6BC503;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  display: block;
}

.phase-service-card figcaption h2,
.phase-service-card figcaption .phase-service-card__ja {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.phase-service-card > a {
  display: block;
  position: relative;
  overflow: hidden;
}

@media (max-width: 639px) {
  .phase-service-card img { height: 220px; }
  .phase-service-card figcaption { transform: translateY(0); }
}

/* ==========================================================================
   phase-point-box — 選ばれる理由ボックス（recruit.php）
   ========================================================================== */

.phase-point-box {
  position: relative;
  padding: 80px 5%;
}

.phase-point-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f3f3f3, #faf7f0);
  z-index: 0;
}

.phase-point-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.5;
  z-index: 0;
}

.phase-point-box__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.phase-point-box__list {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.phase-point-box__item {
  flex: 1;
  padding: 40px 30px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.phase-point-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.phase-point-label em {
  font-style: normal;
  font-size: 4rem;
  color: #6BC503;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  margin-left: 6px;
}

.phase-point-box__item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.phase-point-box__item p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 896px) {
  .phase-point-box__list { flex-direction: column; gap: 20px; }
  .phase-point-label em { font-size: 3rem; }
}

/* ==========================================================================
   phase-fixed-bg — parallax固定背景セクション
   ========================================================================== */

.phase-fixed-bg {
  padding: 100px 0 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.phase-fixed-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26613/top_001.jpg) no-repeat center/cover;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.8;
}

.phase-fixed-bg__contents {
  max-width: 800px;
  margin: 100px auto 100px;
  margin-right: 5%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 40px 60px;
}

@media (max-width: 1200px) {
  .phase-fixed-bg { margin-bottom: 0; }
  .phase-fixed-bg::before { opacity: 0.4; background-attachment: scroll; }
  .phase-fixed-bg__contents { max-width: 100%; margin-right: 0; padding: 50px 40px; background: rgba(255,255,255,0.6); margin-top: 60px; margin-bottom: 60px; }
}

@media (max-width: 639px) {
  .phase-fixed-bg { padding: 60px 0 0; }
  .phase-fixed-bg__contents { padding: 30px 20px; margin-top: 20px; margin-bottom: 30px; }
}

/* ==========================================================================
   SP固定バー（phase-sp-bar）— page-bottom.php
   ========================================================================== */

.phase-sp-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  display: flex;
  background: #333;
  height: 56px;
}

@media (min-width: 897px) { .phase-sp-bar { display: none; } }

.phase-sp-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-sp-bar__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  gap: 3px;
  width: 100%;
  height: 100%;
  transition: background 0.2s;
}

.phase-sp-bar__item a:hover { background: rgba(255, 255, 255, 0.1); }
.phase-sp-bar__item--green a { background: #6BC503; }
.phase-sp-bar__item a i { font-size: 1.8rem; }

/* ==========================================================================
   アクセス情報（about.php / contact.php）
   ========================================================================== */

.phase-access__map {
  border: 0;
  width: 100%;
  height: 400px;
  display: block;
  margin-top: 40px;
}

@media (max-width: 639px) { .phase-access__map { height: 250px; } }

.phase-access__info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.phase-access__info-item {
  display: flex;
  gap: 12px;
  font-size: 1.5rem;
}

.phase-access__info-label {
  font-weight: 700;
  color: #6BC503;
  white-space: nowrap;
}

/* ==========================================================================
   カレンダー（contact.php）
   ========================================================================== */

#cms-calendar-1-area {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

#cms-calendar-1-area table {
  width: 100%;
}

.phase-calendar-wrap {
  overflow-x: auto;
  text-align: center;
}

/* 800px以下: scale縮小でiframeを画面内に収める（transform-originがtop leftのためmarginで中央補正） */
@media (max-width: 800px) {
  .phase-calendar-wrap {
    overflow: hidden;
  }
  .phase-calendar-wrap iframe {
    display: block;
    transform-origin: top left;
    transform: scale(0.78);
    margin-bottom: -132px; /* 600 * (0.78 - 1) */
    margin-left: calc(50% - 312px); /* 50% - 800 * 0.78 / 2 */
  }
}

@media (max-width: 639px) {
  .phase-calendar-wrap iframe {
    transform: scale(0.6);
    margin-bottom: -240px; /* 600 * (0.6 - 1) */
    margin-left: calc(50% - 240px); /* 50% - 800 * 0.6 / 2 */
  }
}

@media (max-width: 480px) {
  .phase-calendar-wrap iframe {
    transform: scale(0.46);
    margin-bottom: -324px; /* 600 * (0.46 - 1) */
    margin-left: calc(50% - 184px); /* 50% - 800 * 0.46 / 2 */
  }
}

.phase-calendar-note {
  background: #F7F5E7;
  border-left: 4px solid #6BC503;
  padding: 15px 20px;
  font-size: 1.4rem;
  color: #555;
  margin-top: 30px;
  border-radius: 0 5px 5px 0;
}

/* ==========================================================================
   商品グリッド（item.php）
   ========================================================================== */

.phase-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.phase-product-card {
  background: #fff;
  border: 1px solid #e8e4d8;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
}

.phase-product-card__cat {
  display: inline-block;
  font-size: 1.2rem;
  background: #6BC503;
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.phase-product-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.phase-product-card__desc {
  font-size: 1.4rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 15px;
}

.phase-product-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #6BC503;
}

@media (max-width: 896px) { .phase-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .phase-product-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   body padding-bottom for SP fixed bar
   ========================================================================== */

@media (max-width: 896px) {
  body { padding-bottom: 56px; }
}

/* ==========================================================================
   ============================================================
   TOPページ専用スタイル（clauddesign準拠）
   ============================================================
   ========================================================================== */

/* ==========================================================================
   phase-mv / #slideshow — MV
   構造:
     .phase-mv（外枠・高さ基準・テキスト配置の起点）
       └ #slideshow（スライダー専用・CMS差し替え対象）
           └ .swiper-slide > .main_slider__inner > img
       └ .phase-mv__overlay（#slideshow の外・CMS干渉なし）
       └ .phase-mv__inner  （#slideshow の外・CMS干渉なし）
   ========================================================================== */

/* .phase-mv — テキスト・オーバーレイの位置基準 */
.phase-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #070707;
  color: #fff;
}

/* #slideshow — CMSスライダーの外枠
   明示的なheightが必須: CMSスライダーは height:100% で外枠に追従する仕様のため
   ヘッダーは通常フロー(relative)のため、ビューポートからヘッダー高を引く */
#slideshow {
  width: 100%;
  height: calc(100vh - 80px); /* 80px = PCヘッダー高さ(.header__inner height) */
  min-height: 560px;
  overflow: hidden;
}

@media (max-width: 896px) {
  #slideshow {
    height: calc(100vh - 60px); /* 60px = タブレット/SPヘッダー高さ */
    min-height: 460px;
  }
}

/* .swiper-slide / .main_slider__inner — CMS出力クラスに合わせたスタイル */
#slideshow .swiper-slide {
  width: 100%;
  height: 100%;
}

#slideshow .main_slider__inner {
  width: 100%;
  height: 100%;
}

#slideshow .main_slider__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* オーバーレイ — .phase-mv 基準で絶対配置（#slideshow 外なので CMS に上書きされない） */
.phase-mv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 7, 0.15) 0%,
    rgba(7, 7, 7, 0.30) 50%,
    rgba(7, 7, 7, 0.58) 100%
  );
  pointer-events: none;
}

/* テキスト — .phase-mv 基準で絶対配置（#slideshow 外なので CMS に上書きされない） */
.phase-mv__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px 108px;
}

.phase-mv__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: #6BC503;
  margin-bottom: 24px;
}

.phase-mv__eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: #6BC503;
  flex-shrink: 0;
}

.phase-mv__copy {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 6.4vw, 6.8rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.32em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.phase-mv__sub {
  margin-top: 28px;
  font-size: 1.55rem;
  letter-spacing: 0.16em;
  line-height: 2;
  opacity: 0.9;
  max-width: 600px;
}

.phase-mv__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.phase-mv__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.6);
  animation: mvScroll 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes mvScroll {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.phase-mv__nav {
  position: absolute;
  right: 48px;
  bottom: 88px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.phase-mv__nav button {
  width: 40px;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.phase-mv__nav button.is-active { background: #6BC503; }

@media (max-width: 896px) {
  .phase-mv__inner { padding: 0 24px 80px; }
  .phase-mv__nav { right: 24px; bottom: 70px; }
}

@media (max-width: 639px) {
  .phase-mv__copy { letter-spacing: 0.18em; }
  .phase-mv__sub { font-size: 1.4rem; }
  .phase-mv__scroll { display: none; }
}

/* ==========================================================================
   phase-sec-hdg — セクション見出し（英italic + 日横線あしらい）
   clauddesign: .sec-heading / .sec-heading__en em / .sec-heading__ja ::before/::after
   ========================================================================== */

.phase-sec-hdg {
  text-align: center;
  margin-bottom: 60px;
}

.phase-sec-hdg--left {
  text-align: left;
}

.phase-sec-hdg__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 5.4vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #111;
}

.phase-sec-hdg__en em {
  color: #6BC503;
  font-style: italic;
  font-weight: 400;
}

.phase-sec-hdg__ja {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.4rem;
  letter-spacing: 0.32em;
  color: #777;
  font-weight: 500;
  position: relative;
  padding: 0 18px;
}

.phase-sec-hdg__ja::before,
.phase-sec-hdg__ja::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 1px;
  background: #6BC503;
}

.phase-sec-hdg__ja::before { left: 0; }
.phase-sec-hdg__ja::after  { right: 0; }

.phase-sec-hdg--left .phase-sec-hdg__ja {
  padding-left: 0;
}

.phase-sec-hdg--left .phase-sec-hdg__ja::before { display: none; }

.sp-only { display: none; }

@media (max-width: 639px) {
  .sp-only { display: inline; }
  .phase-sec-hdg { margin-bottom: 40px; }
  .phase-sec-hdg__ja { font-size: 1.2rem; letter-spacing: 0.18em; }
}

/* ==========================================================================
   phase-greeting-sec — ご挨拶セクション（TOPページ）
   clauddesign: 1:1グリッド、写真に緑枠オフセット、EST.タグ
   ========================================================================== */

.phase-greeting-sec {
  background: #F7F5E7;
}

.phase-greeting-sec__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}

.phase-greeting-sec__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: visible;
  border-radius: 4px;
}

.phase-greeting-sec__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  display: block;
}

.phase-greeting-sec__photo::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  right: 24px;
  bottom: 24px;
  border: 1px solid #6BC503;
  pointer-events: none;
  z-index: 0;
}

.phase-greeting-sec__tag {
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: 2;
  background: #6BC503;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  padding: 14px 18px;
  font-weight: 600;
  text-align: center;
}

.phase-greeting-sec__body {
  position: relative;
}

/* Greeting 内の英字見出し：3.4rem 固定（他セクションの大サイズと分離） */
.phase-greeting-sec__body .phase-sec-hdg__en {
  font-size: 3.4rem;
}

.phase-greeting-sec__lead {
  font-family: "YakuHanMP", "Zen Old Mincho", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin: 28px 0 32px;
  color: #111;
}

.phase-greeting-sec__lead em {
  color: #6BC503;
  font-style: normal;
}

.phase-greeting-sec__text {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #2a2a2a;
}

.phase-greeting-sec__text p + p { margin-top: 1.4em; }

.phase-greeting-sec__sign {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-top: 28px;
  font-size: 1.4rem;
  color: #777;
  letter-spacing: 0.12em;
}

.phase-greeting-sec__sign-label {
  font-size: 1.2rem;
  color: #777;
  letter-spacing: 0.18em;
  margin-right: 16px;
}

.phase-greeting-sec__sign-name {
  font-family: "YakuHanMP", "Zen Old Mincho", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #333;
}

@media (max-width: 896px) {
  .phase-greeting-sec__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 24px;
  }
  .phase-greeting-sec__photo { max-width: 400px; margin: 0 auto; }
}

/* ==========================================================================
   phase-menu-lead / phase-menu-grid / phase-menu-card
   clauddesign: 5列ボーダーグリッド、ホバーで黒反転
   ========================================================================== */

.phase-menu-lead {
  text-align: center;
  max-width: 700px;
  margin: -30px auto 56px;
  font-size: 1.5rem;
  line-height: 2;
  color: #3a3a3a;
}

.phase-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid #d9d4b8;
  border-bottom: 1px solid #d9d4b8;
}

.phase-menu-card {
  position: relative;
  padding: 44px 24px 36px;
  text-align: center;
  border-right: 1px solid #d9d4b8;
  color: #111;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.phase-menu-card:last-child { border-right: none; }

.phase-menu-card:hover {
  background: #070707;
  color: #fff;
  opacity: 1;
}

.phase-menu-card__no {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  letter-spacing: 0.32em;
  color: #6BC503;
}

.phase-menu-card__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 4px;
  color: inherit;
}

.phase-menu-card__ja {
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

.phase-menu-card__desc {
  font-size: 1.15rem;
  color: #777;
  margin-top: 12px;
  line-height: 1.7;
}

.phase-menu-card__arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #6BC503;
  margin-top: 14px;
}

.phase-menu-card:hover .phase-menu-card__no,
.phase-menu-card:hover .phase-menu-card__en,
.phase-menu-card:hover .phase-menu-card__arrow { color: #6BC503; }

.phase-menu-card:hover .phase-menu-card__desc,
.phase-menu-card:hover .phase-menu-card__ja { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 639px) {
  .phase-menu-lead {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 896px) {
  .phase-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-menu-card {
    border-right: 1px solid #d9d4b8;
    border-bottom: 1px solid #d9d4b8;
  }
  .phase-menu-card:nth-child(even) { border-right: none; }
}

@media (max-width: 480px) {
  .phase-menu-grid { grid-template-columns: 1fr; }
  .phase-menu-card { border-right: none; }
}

/* ==========================================================================
   phase-reasons-sec — 選ばれる理由セクション背景
   ========================================================================== */

.phase-reasons-sec {
  background: #FCFBF3;
}

/* ==========================================================================
   phase-reasons / phase-reason-card
   clauddesign: 3列、写真top、番号バッジ、タグ
   ========================================================================== */

.phase-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.phase-reason-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
  background: #fff;
  border: 1px solid rgba(7, 7, 7, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7, 7, 7, 0.12);
}

.phase-reason-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  order: -1;
}

.phase-reason-card__num {
  position: absolute;
  top: 16px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 2px;
}

.phase-reason-card__no {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: #6BC503;
  letter-spacing: 0.02em;
}

.phase-reason-card__total {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #777;
  letter-spacing: 0.18em;
}

.phase-reason-card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #070707;
  margin: 28px 28px 14px;
}

.phase-reason-card__text {
  font-size: 1.35rem;
  line-height: 1.95;
  color: #3a3a3a;
  margin: 0 28px;
  flex: 1;
}

.phase-reason-card__tag {
  display: block;
  margin: 20px 28px 0;
  padding-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  color: #6BC503;
  border-top: 1px dotted #d9d4b8;
}

@media (max-width: 896px) {
  .phase-reasons { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   phase-recruit-bnr — 求人バナー（全幅暗背景+BG写真）
   clauddesign: dark bg + grayscale photo + grid 1fr auto
   ========================================================================== */

.phase-recruit-bnr {
  display: block;
  position: relative;
  color: #fff;
  background: #070707;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.3s ease;
}

.phase-recruit-bnr:hover { opacity: 1; background: #000; }

.phase-recruit-bnr__bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.6);
  transition: opacity 0.4s ease, transform 1s ease;
}

.phase-recruit-bnr:hover .phase-recruit-bnr__bg {
  opacity: 0.32;
  transform: scale(1.04);
}

.phase-recruit-bnr__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.phase-recruit-bnr__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.32em;
  color: #6BC503;
  margin-bottom: 16px;
}

.phase-recruit-bnr__copy {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin: 0;
}

.phase-recruit-bnr__copy em {
  color: #6BC503;
  font-style: normal;
}

.phase-recruit-bnr__sub {
  margin-top: 14px;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.phase-recruit-bnr__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px;
  background: #6BC503;
  color: #fff;
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.phase-recruit-bnr:hover .phase-recruit-bnr__btn { transform: translateX(6px); }

@media (max-width: 896px) {
  .phase-recruit-bnr__inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 28px;
  }
}

/* ==========================================================================
   phase-info-table — 店舗情報（dl形式）
   clauddesign: .info-table__row: grid 200px 1fr
   ========================================================================== */

.phase-info-table {
  display: block;
  padding: 0;
}

.phase-info-table__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid #d9d4b8;
}

.phase-info-table__row:first-child { border-top: 1px solid #d9d4b8; }

.phase-info-table__row dt {
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #070707;
  font-size: 1.4rem;
}

.phase-info-table__row dd {
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
  margin: 0;
  padding: 0;
}

.phase-info-table__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #6BC503;
  letter-spacing: 0.06em;
}

.phase-info-table__row dd a {
  color: #6BC503;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-family: "Cormorant Garamond", serif;
}

@media (max-width: 639px) {
  .phase-info-table__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 4px;
  }
}

/* ==========================================================================
   phase-shop-grid — 店舗情報+地図グリッド（TOPページ）
   clauddesign: 1fr 1.1fr gap:56px
   ========================================================================== */

.phase-shopinfo-sec {
  background: #FCFBF3;
}

.phase-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.phase-shop-grid__data { padding: 0; }

.phase-shop-grid__map {
  min-height: 480px;
  background: #F7F5E7;
  border-radius: 4px;
  overflow: hidden;
}

.phase-shop-grid__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

.phase-shop-grid__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 896px) {
  .phase-shop-grid { grid-template-columns: 1fr; gap: 36px; }
  .phase-shop-grid__map { min-height: 320px; }
  .phase-shop-grid__map iframe { min-height: 320px; }
}

/* ==========================================================================
   phase-btn-fill / phase-btn-outline / phase-btn-line — ボタンv2
   clauddesign: Pillボタン（border-radius:999px）
   ========================================================================== */

.phase-btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #6BC503;
  color: #fff;
  padding: 22px 56px;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.phase-btn-fill:hover {
  background: #070707;
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

.phase-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: transparent;
  border: 1px solid #070707;
  color: #070707;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phase-btn-outline:hover {
  background: #070707;
  color: #fff;
  opacity: 1;
}

.phase-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: #111;
  padding: 18px 0;
  border-bottom: 1px solid rgba(7, 7, 7, 0.2);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.phase-btn-line:hover {
  gap: 26px;
  color: #6BC503;
  border-color: #6BC503;
  opacity: 1;
}

.phase-btn-line__arrow {
  width: 56px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.phase-btn-line__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.phase-btn-line__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 639px) {
  .phase-btn-fill { padding: 18px 36px; font-size: 1.4rem; }
  .phase-btn-outline { padding: 16px 28px; font-size: 1.3rem; }
}

/* ==========================================================================
   ============================================================
   共通インクルード更新（全ページ共通）
   ============================================================
   ========================================================================== */

/* ==========================================================================
   phase-cta-strip — CTAセクション（contact-cta.php）
   clauddesign: 暗背景、大文字背景テキスト、TEL+ボタン横並び
   ========================================================================== */

.phase-cta-strip {
  position: relative;
  padding: 100px 0;
  background: #070707;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.phase-cta-strip::before {
  content: "CONTACT";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(10rem, 18vw, 22rem);
  font-weight: 500;
  color: rgba(107, 197, 3, 0.07);
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.phase-cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.phase-cta-strip__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #6BC503;
}

.phase-cta-strip__title {
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 18px 0 14px;
}

.phase-cta-strip__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.phase-cta-strip__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.phase-cta-strip__tel {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.phase-cta-strip__tel:hover { background: rgba(255, 255, 255, 0.1); opacity: 1; }

.phase-cta-strip__tel-num {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.phase-cta-strip__tel-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.16em;
}

.phase-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 44px;
  background: #6BC503;
  color: #fff;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.phase-cta-strip__btn:hover {
  transform: translateY(-2px);
  background: #5fb000;
  opacity: 1;
}

@media (max-width: 639px) {
  .phase-cta-strip { padding: 60px 0; }
  .phase-cta-strip__actions { flex-direction: column; align-items: center; gap: 16px; }
  .phase-cta-strip__tel { padding: 16px 28px; }
  .phase-cta-strip__tel-num { font-size: 2.2rem; }
}

/* ==========================================================================
   phase-footer — フッター（footer.php）
   clauddesign: 暗背景3列グリッド、ロゴ+住所、ナビ、地図
   ========================================================================== */

.phase-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.phase-footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
}

.phase-footer__logo {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #fff;
  margin-bottom: 24px;
  text-decoration: none;
}

.phase-footer__logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6BC503;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phase-footer__logo-text { display: flex; flex-direction: column; gap: 4px; }

.phase-footer__logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

.phase-footer__logo-ja {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
}

.phase-footer__addr {
  font-size: 1.3rem;
  line-height: 2;
}

.phase-footer__hours {
  margin-top: 16px;
  font-size: 1.3rem;
  line-height: 1.9;
}

.phase-footer__hours strong {
  color: #fff;
  font-weight: 500;
}

.phase-footer__col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #6BC503;
  margin-bottom: 22px;
}

.phase-footer__col h4::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

.phase-footer__nav {
  display: grid;
  gap: 12px;
  font-size: 1.35rem;
}

.phase-footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.phase-footer__nav a::before { content: "—"; color: #6BC503; }

.phase-footer__nav a:hover { color: #6BC503; opacity: 1; }

.phase-footer__map {
  width: 100%;
  height: 200px;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

.phase-footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) brightness(0.85);
}

.phase-footer__bottom {
  margin-top: 64px;
  padding: 20px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Cormorant Garamond", serif;
}

@media (max-width: 896px) {
  .phase-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .phase-footer__bottom {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    text-align: center;
    margin-top: 0;
  }
}

@media (max-width: 896px) {
  .phase-footer__bottom { padding-bottom: 70px; }
}

/* ==========================================================================
   サブページ共通
   ========================================================================== */

/* --------------------------------------------------------------------------
   phase-page-hero — サブページヒーロー（アイボリー背景+大装飾文字）
   -------------------------------------------------------------------------- */
.phase-page-hero {
  position: relative;
  padding: 80px 0 64px;
  background: #F7F5E7;
  overflow: hidden;
}

.phase-page-hero::before {
  content: "Faces";
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 22rem;
  font-weight: 600;
  color: rgba(7, 7, 7, 0.04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.phase-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
}

.phase-page-hero__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6BC503;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.phase-page-hero__ja {
  display: block;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #070707;
  margin-bottom: 28px;
}

.phase-page-hero__crumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: #777;
  letter-spacing: 0.08em;
}

.phase-page-hero__crumb a {
  color: #777;
  text-decoration: none;
}

.phase-page-hero__crumb a:hover { color: #6BC503; }

@media (max-width: 896px) {
  .phase-page-hero__inner { padding: 0 24px; }
}

@media (max-width: 639px) {
  .phase-page-hero { padding: 56px 0 44px; }
  .phase-page-hero::before { font-size: 12rem; right: -4%; }
  .phase-page-hero__inner { padding: 0 20px; }
}

/* --------------------------------------------------------------------------
   phase-gallery-grid — 店内ギャラリー（2fr 1fr 1fr × 2行グリッド）
   -------------------------------------------------------------------------- */
.phase-gallery-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 1.45rem;
  line-height: 2.1;
  color: #3a3a3a;
}

.phase-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.phase-gallery-grid__item {
  position: relative;
  overflow: hidden;
}

.phase-gallery-grid__item:first-child {
  grid-row: 1 / 3;
}

.phase-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.phase-gallery-grid__item:hover img {
  transform: scale(1.04);
}

.phase-gallery-grid__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(7, 7, 7, 0.82);
  color: #fff;
  padding: 8px 16px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  pointer-events: none;
}

@media (max-width: 768px) {
  .phase-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .phase-gallery-grid__item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 260px;
  }
  .phase-gallery-grid__item {
    height: 200px;
  }
}

/* ==========================================================================
   menu.php — メニュー料金表
   ========================================================================== */

/* ---- 写真＋テキスト 交互2カラムレイアウト ---- */
.phase-menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 96px;
}

.phase-menu-section--reverse .phase-menu-section__body { order: 2; }
.phase-menu-section--reverse .phase-menu-section__photo { order: 1; }

.phase-menu-section__photo {
  position: sticky;
  top: 110px;
}

.phase-menu-section__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

@media (max-width: 896px) {
  .phase-menu-section {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .phase-menu-section__body { order: 1; }
  .phase-menu-section__photo { order: 2; position: static; }
  .phase-menu-section--reverse .phase-menu-section__body { order: 1; }
  .phase-menu-section--reverse .phase-menu-section__photo { order: 2; }
}

/* ---- 料金表セクション背景 ---- */
.phase-menu-price-sec {
  background: #FCFBF3;
}

/* ---- イントロテキスト ---- */
.phase-menu-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  font-size: 1.55rem;
  line-height: 2.1;
  color: #3a3a3a;
}

/* ---- アンカーナビ ---- */
.phase-menu-anchors {
  display: flex;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto 80px;
  border: 1px solid #d9d4b8;
  background: #fff;
}

.phase-menu-anchors__link {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  color: #111;
  border-right: 1px solid #d9d4b8;
  transition: background 0.2s ease, color 0.2s ease;
}

.phase-menu-anchors__link:last-child {
  border-right: none;
}

.phase-menu-anchors__link:hover {
  background: #070707;
  color: #fff;
  opacity: 1;
}

.phase-menu-anchors__no {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  color: #6BC503;
}

.phase-menu-anchors__link:hover .phase-menu-anchors__no {
  color: #6BC503;
}

.phase-menu-anchors__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.phase-menu-anchors__ja {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

@media (max-width: 639px) {
  .phase-menu-anchors__link {
    flex: 1 1 calc(50% - 1px);
    padding: 18px 10px;
    border-bottom: 1px solid #d9d4b8;
  }
  .phase-menu-anchors__link:nth-child(even) { border-right: none; }
  .phase-menu-anchors__link:nth-last-child(-n+2) { border-bottom: none; }
  .phase-menu-anchors__en { font-size: 1.7rem; }
}

/* ---- 料金ブロック ---- */
.phase-price-block {
  max-width: 880px;
  margin: 0 auto 72px;
}

.phase-price-block__head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  border-bottom: 2px solid #070707;
  padding-bottom: 18px;
}

.phase-price-block__no {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #6BC503;
  flex-shrink: 0;
}

.phase-price-block__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #111;
}

.phase-price-block__ja {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  margin-left: auto;
}

/* ---- ブロック内サブラベル・オプション注記 ---- */
.phase-price-block__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #070707;
  letter-spacing: 0.1em;
  margin: 32px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d4b8;
}

.phase-price-block__label span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.16em;
  margin-left: 16px;
}

.phase-price-block__option {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #777;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  background: #f7f5e7;
  border-left: 3px solid #6BC503;
}

/* ---- 料金テーブル ---- */
.phase-price-table {
  width: 100%;
  border-collapse: collapse;
}

.phase-price-table tr {
  border-bottom: 1px dotted #d9d4b8;
}

.phase-price-table tr:first-child {
  border-top: 1px solid #d9d4b8;
}

.phase-price-table th,
.phase-price-table td {
  padding: 20px 12px;
  text-align: left;
  vertical-align: middle;
}

.phase-price-table th {
  width: 28%;
  font-size: 1.7rem;
  font-weight: 700;
  color: #070707;
  letter-spacing: 0.04em;
}

.phase-price-table__desc {
  font-size: 1.3rem;
  color: #777;
  letter-spacing: 0.04em;
}

.phase-price-table__price {
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #070707;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .phase-price-block { margin-bottom: 56px; }
  .phase-price-block__head { gap: 12px; flex-wrap: wrap; }
  .phase-price-block__no { font-size: 1.1rem; }
  .phase-price-block__en { font-size: 2.4rem; }
  .phase-price-block__ja { font-size: 1.3rem; margin-left: 0; }
  .phase-price-table tr { display: block; padding: 16px 0; border-bottom: 1px dotted #d9d4b8; }
  .phase-price-table tr:first-child { border-top: 1px solid #d9d4b8; }
  .phase-price-table th,
  .phase-price-table td { display: block; padding: 2px 0; }
  .phase-price-table th { width: auto; font-size: 1.5rem; }
  .phase-price-table__price { text-align: left; font-size: 2rem; }
}

/* ---- 注記 ---- */
.phase-menu-price-note {
  text-align: center;
  max-width: 880px;
  margin: 40px auto 0;
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 0.08em;
}

/* ---- 予約セクション ---- */
.phase-menu-reserve-sec {
  background: #FCFBF3;
}

.phase-menu-reserve {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.phase-menu-reserve__text {
  font-size: 1.55rem;
  line-height: 2;
  color: #2a2a2a;
  margin-bottom: 40px;
}

.phase-menu-tel-bnr {
  padding: 56px 32px;
  background: #F7F5E7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phase-menu-tel-bnr__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #6BC503;
}

.phase-menu-tel-bnr__num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #070707;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease;
}

.phase-menu-tel-bnr__num:hover {
  color: #6BC503;
  opacity: 1;
}

.phase-menu-tel-bnr__sub {
  font-size: 1.35rem;
  color: #777;
  letter-spacing: 0.06em;
  margin: 0;
}

.phase-menu-reserve__btn {
  margin-top: 40px;
}

@media (max-width: 639px) {
  .phase-menu-tel-bnr { padding: 40px 20px; }
  .phase-menu-tel-bnr__sub { font-size: 1.2rem; }
}

/* ==========================================================================
   商品ページ（item.php）
   ========================================================================== */

/* --------------------------------------------------------------------------
   phase-item-grid — 商品カードグリッド（PC:3列 / タブレット:2列 / SP:1列）
   -------------------------------------------------------------------------- */
.phase-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 896px) {
  .phase-item-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
  .phase-item-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* --------------------------------------------------------------------------
   phase-item-card — 商品カード（画像 1:1 + ボディ）
   -------------------------------------------------------------------------- */
.phase-item-card {
  background: #fff;
  border: 1px solid rgba(7, 7, 7, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7, 7, 7, 0.12);
}

.phase-item-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F7F5E7;
}

.phase-item-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.phase-item-card:hover .phase-item-card__img img {
  transform: scale(1.04);
}

.phase-item-card__body {
  padding: 24px 24px 28px;
}

.phase-item-card__cat {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  color: #6BC503;
  text-transform: uppercase;
  line-height: 1;
}

.phase-item-card__name {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 8px 0 10px;
  line-height: 1.5;
  color: #111;
}

.phase-item-card__desc {
  font-size: 1.25rem;
  color: #5a5a5a;
  line-height: 1.8;
}

.phase-item-card__price {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #111;
}

.phase-item-card__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phase-item-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 1.4rem;
  padding-bottom: 8px;
  border-bottom: 1px dotted #d9d4b8;
}

.phase-item-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.phase-item-card__list li span:last-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
}

/* 商品一覧下の注記 */
.phase-item-note {
  text-align: center;
  margin-top: 48px;
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   phase-ask-us — 相談CTA（中央寄せ、アイボリー背景セクション内で使用）
   -------------------------------------------------------------------------- */
.phase-ask-us {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.phase-ask-us__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111;
  line-height: 1.2;
}

.phase-ask-us__en em {
  color: #6BC503;
  font-style: italic;
}

.phase-ask-us__ja {
  display: block;
  margin-top: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: #777;
}

.phase-ask-us__text {
  margin-top: 32px;
  font-size: 1.55rem;
  line-height: 2.1;
  color: #2a2a2a;
}

.phase-ask-us__btn {
  margin-top: 40px;
}

@media (max-width: 639px) {
  .phase-ask-us__en { font-size: 2.6rem; }
  .phase-ask-us__text { font-size: 1.4rem; }
}

/* ==========================================================================
   採用ページ（recruit.php）
   ========================================================================== */

/* --------------------------------------------------------------------------
   phase-recruit-reasons — 選ばれる理由 2×2グリッド（table罫線型）
   -------------------------------------------------------------------------- */
.phase-recruit-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #d9d4b8;
  background: #fff;
}

.phase-recruit-reasons__card {
  position: relative;
  padding: 56px 48px;
  border-right: 1px solid #d9d4b8;
  border-bottom: 1px solid #d9d4b8;
}

.phase-recruit-reasons__card:nth-child(2n) {
  border-right: none;
}

.phase-recruit-reasons__card:nth-last-child(-n+2) {
  border-bottom: none;
}

.phase-recruit-reasons__no {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #6BC503;
  margin-bottom: 14px;
  line-height: 1;
}

.phase-recruit-reasons__title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  line-height: 1.5;
}

.phase-recruit-reasons__text {
  font-size: 1.4rem;
  line-height: 2;
  color: #3a3a3a;
}

@media (max-width: 896px) {
  .phase-recruit-reasons__card { padding: 40px 32px; }
}

@media (max-width: 639px) {
  .phase-recruit-reasons { grid-template-columns: 1fr; }
  .phase-recruit-reasons__card { border-right: none; }
  .phase-recruit-reasons__card:nth-last-child(2) { border-bottom: 1px solid #d9d4b8; }
  .phase-recruit-reasons__card { padding: 32px 24px; }
}

/* --------------------------------------------------------------------------
   phase-tel-bnr — 採用電話CTA（中央寄せ、アイボリー角丸ボックス）
   -------------------------------------------------------------------------- */
.phase-tel-bnr {
  text-align: center;
  padding: 64px 32px;
  background: #F7F5E7;
  border-radius: 8px;
  max-width: 720px;
  margin: 0 auto;
}

.phase-tel-bnr__label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #6BC503;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.phase-tel-bnr__num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  font-weight: 500;
  margin: 8px 0;
  color: #070707;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.phase-tel-bnr__num:hover {
  color: #6BC503;
}

.phase-tel-bnr__num i {
  font-size: 0.6em;
  color: #6BC503;
}

.phase-tel-bnr__sub {
  display: block;
  font-size: 1.3rem;
  color: #777;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.phase-tel-bnr__note {
  text-align: center;
  margin-top: 36px;
  font-size: 1.25rem;
  color: #999;
  letter-spacing: 0.08em;
}

@media (max-width: 639px) {
  .phase-tel-bnr { padding: 40px 20px; }
  .phase-tel-bnr__num { gap: 10px; }
}

/* ==========================================================================
   予約ページ（contact.php）
   ========================================================================== */

/* --------------------------------------------------------------------------
   #roscal — 営業カレンダーCMS出力スタイル
   CMS出力クラス: .calendar / .calendar_head / .calendar_body
   td modifier: .kara .today .holiday .sun .mon .sat
   -------------------------------------------------------------------------- */
#roscal {
  max-width: 1000px;
  margin: 0 auto;
}

#roscal .calendar_head {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0 0 20px;
  color: #111;
}

#roscal table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

/* 曜日ヘッダー */
#roscal th.calendar {
  background: #F7F5E7;
  border: 1px solid #d9d4b8;
  padding: 10px 4px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #555;
}

#roscal th.calendar.sun { color: #c0392b; }
#roscal th.calendar.sat { color: #2474ac; }
#roscal th.calendar.mon { color: #aaa; }

/* 日付セル */
#roscal td.calendar {
  border: 1px solid #d9d4b8;
  padding: 6px 4px;
  text-align: center;
  vertical-align: middle;
  height: 52px;
  font-size: 1.5rem;
}

/* 日付数字 */
#roscal td.calendar .days {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

/* 空セル */
#roscal td.kara {
  background: #fafaf5;
}

/* 今日 */
#roscal td.today .days {
  background: #6BC503;
  color: #fff;
  font-weight: 700;
}

/* 日曜 */
#roscal td.sun .days { color: #c0392b; }
#roscal td.sun { background: #fef0f0; }

/* 土曜 */
#roscal td.sat .days { color: #2474ac; }
#roscal td.sat { background: #f0f5fe; }

/* 月曜（定休日） */
#roscal td.mon .days { color: #bbb; }
#roscal td.mon { background: #fafafa; }

/* 祝日 */
#roscal td.holiday .days { color: #c0392b; }
#roscal td.holiday { background: #fef0f0; }

@media (max-width: 639px) {
  #roscal .calendar_head { font-size: 1.8rem; padding: 12px 0; }

  /* テーブル → リスト変換 */
  #roscal table,
  #roscal tbody { display: block; width: 100%; }

  /* 各週行をブロック化 */
  #roscal tr { display: block; }

  /* 曜日ヘッダー行を非表示 */
  #roscal tbody tr:first-child { display: none; }

  /* 空セルを非表示 */
  #roscal td.kara { display: none !important; }

  /* 各日セルをリスト行として表示 */
  #roscal td.calendar {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    min-height: 44px;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #e8e3cc;
    text-align: left;
    background: #fff;
  }

  /* 日付エリア（左列） */
  #roscal td.calendar .days {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    min-width: 64px;
    height: auto;
    border-radius: 0;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
    margin-right: 10px;
    flex-shrink: 0;
    background: none !important;
    color: inherit;
  }

  /* 曜日ラベルを日付の右に追加 */
  #roscal td.sun  .days::after { content: "（日）"; font-weight: 400; font-size: 1.15rem; }
  #roscal td.mon  .days::after { content: "（月）"; font-weight: 400; font-size: 1.15rem; }
  #roscal td.tue  .days::after { content: "（火）"; font-weight: 400; font-size: 1.15rem; }
  #roscal td.wed  .days::after { content: "（水）"; font-weight: 400; font-size: 1.15rem; }
  #roscal td.thu  .days::after { content: "（木）"; font-weight: 400; font-size: 1.15rem; }
  #roscal td.fri  .days::after { content: "（金）"; font-weight: 400; font-size: 1.15rem; }
  #roscal td.sat  .days::after { content: "（土）"; font-weight: 400; font-size: 1.15rem; }

  /* 今日の日付バッジ */
  #roscal td.today .days {
    background: #6BC503 !important;
    color: #fff !important;
    padding: 2px 6px;
    border-radius: 4px;
  }

  /* 各アイテム（予約枠）をバッジ表示 */
  #roscal td.calendar .item {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 1.1rem;
    white-space: nowrap;
    margin: 2px 4px 2px 0;
    background: #e8f4d6;
    color: #3a3a3a;
  }

  /* 行の背景色 */
  #roscal td.sun     { background: #fef0f0; }
  #roscal td.holiday { background: #fef0f0; }
  #roscal td.sat     { background: #f0f5fe; }
  #roscal td.mon     { background: #f5f5f5; }

  /* 日付文字色（リスト表示用） */
  #roscal td.sun     .days { color: #c0392b; }
  #roscal td.holiday .days { color: #c0392b; }
  #roscal td.sat     .days { color: #2474ac; }
  #roscal td.mon     .days { color: #bbb; }
}

/* --------------------------------------------------------------------------
   phase-contact-cms — CMSフォーム埋め込みラッパー
   CMS出力が横にはみ出さないよう max-width で制御する
   -------------------------------------------------------------------------- */
.phase-contact-cms {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.phase-contact-cms > * {
  max-width: 100%;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   phase-policy-box — キャンセルポリシーボックス（白背景・細罫線）
   -------------------------------------------------------------------------- */
.phase-policy-box {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 56px;
  border: 1px solid #d9d4b8;
}

.phase-policy-box p {
  font-size: 1.5rem;
  line-height: 2.1;
}

.phase-policy-box p + p {
  margin-top: 20px;
}

.phase-policy-box hr {
  margin: 24px 0;
  border: none;
  border-top: 1px dotted #d9d4b8;
}

.phase-policy-box strong {
  color: #6BC503;
}

.phase-policy-box a {
  color: #6BC503;
  font-weight: 700;
}

.phase-policy-box__note {
  margin-top: 16px;
  font-size: 1.25rem;
  color: #888;
}

@media (max-width: 639px) {
  .phase-policy-box {
    padding: 32px 24px;
  }
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background: #6bc503 !important;
}
