@charset "UTF-8";

/* ====================================
   Page Base
   ==================================== */
.mg-p-top-main {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
}

.mg-p-top-main a {
  text-decoration: none;
  color: inherit;
  transition:
    color 0.3s var(--ease-out-expo),
    opacity 0.3s var(--ease-out-expo);
}

.mg-p-top-main img {
  max-width: 100%;
  display: block;
}

/* ====================================
   Concept (About) セクション
   ==================================== */
.mg-p-concept-card-num {
  position: absolute;
  left: -0.5rem;
  top: 10%;
  font-size: 5rem;
  font-weight: 200;
  color: rgba(238, 238, 238, 0.03);
  user-select: none;
  line-height: 1;
}

.mg-p-concept-card-inner {
  position: relative;
}

.mg-p-concept-card-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mg-p-concept-card-num-sm {
  font-size: 10px;
  color: rgba(238, 238, 238, 0.2);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.mg-p-concept-card-title {
  font-size: 1.25rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  margin: 0;
}

.mg-p-concept-card-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.mg-p-concept-card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.9;
  padding-left: 2rem;
}

.mg-p-concept-line-wrapper {
  margin-top: 2.5rem;
  height: 1px;
  background-color: rgba(238, 238, 238, 0.05);
  position: relative;
  overflow: hidden;
}

.mg-p-concept-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  background-color: rgba(238, 238, 238, 0.2);
  transition: width 1.2s var(--ease-out-expo);
}

.is-visible .mg-p-concept-line {
  width: 100%;
}

/* ====================================
   Equipment (Facility) セクション
   ==================================== */
.mg-p-facility-room-title {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  text-align: center;
}

.mg-p-facility-features-wrap {
  margin-top: 10rem;
  padding-top: 6rem;
  border-top: 1px solid rgba(58, 58, 58, 0.2);
}

.mg-p-facility-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3rem;
  row-gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mg-p-facility-features-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mg-p-facility-features-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(238, 238, 238, 0.2);
}

.mg-p-facility-features-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ====================================
   Floormap セクション
   ==================================== */
/* 画像を額装する枠（黒背景の画像が暗いセクション背景に溶けないように） */
.mg-p-floormap-figure {
  margin: 0 auto;
  max-width: 960px;
  border: 1px solid #3a3a3a; /* 既存のボーダー色に合わせる */
  line-height: 0; /* 画像下の余白を消す */
}

.mg-p-floormap-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1420 / 526;
}

@media (max-width: 767px) {
  .mg-p-floormap-img {
    aspect-ratio: 907 / 781;
  }
}

/* ====================================
   Price セクション
   ==================================== */
.mg-p-pricing {
  background-color: var(--card-bg); /* #292929 */
}

/* 料金カード基本構造 */
.mg-p-price-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  background-color: transparent;
  box-sizing: border-box;
  transition: border-color 0.5s var(--ease-out-expo);
}

@media (min-width: 1024px) {
  .mg-p-price-card {
    padding: 2.5rem 3rem 3rem;
  }
}

/* スマホ 1カラム／デスクトップ 2カラムは mg-l-grid-split のデフォルト動作に委ねる */
/* スマホ: カード間の gap を縮小 */
@media (max-width: 767px) {
  .mg-p-pricing-panel {
    gap: 0;
  }
}

.mg-p-price-card:hover {
  border-color: rgba(238, 238, 238, 0.5);
}

.mg-p-price-card-label {
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
  text-align: center;
}

.mg-p-price-card-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.mg-p-price-card-currency {
  font-size: 1.125rem;
  opacity: 0.4;
}

.mg-p-price-card-amount {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mg-p-price-card-period {
  font-size: 0.75rem;
  margin: 0.5rem 0 0 0;
  opacity: 0.4;
}

.mg-p-price-card.is-featured .mg-p-price-card-period {
  opacity: 0.6;
}

/* 特徴リスト構造 */
.mg-p-price-card-features {
  margin: 2.5rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mg-p-price-card-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.4;
}

.mg-p-price-card.is-featured .mg-p-price-card-feature-item {
  opacity: 0.6;
}

.mg-p-price-card-feature-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.3;
  flex-shrink: 0;
}

.mg-p-price-card.is-featured .mg-p-price-card-feature-dot {
  opacity: 0.6;
}

/* 下部注記テキスト */
.mg-p-pricing-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.mg-p-pricing-note p {
  margin: 0;
}

/* 共通特典ブロック */
.mg-p-pricing-common {
  padding: 2.5rem 0;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mg-p-pricing-common-label {
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
  margin: 0 0 2rem 0;
}

.mg-p-pricing-common-notes {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.mg-p-pricing-common-notes p {
  margin: 0;
  padding-left: 1.25em;
  text-indent: -1.25em;
}

.mg-p-pricing-common-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .mg-p-pricing-common-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 2rem;
  }
}

.mg-p-pricing-common-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* VIP専用注記 */
.mg-p-price-card-note {
  margin-top: 1.25rem;
  font-size: 1rem;
  opacity: 0.6;
  letter-spacing: 0.03em;
}

.mg-p-price-card.is-featured .mg-p-price-card-note {
  opacity: 0.7;
}

/* 利用条件テーブル */
.mg-p-price-card-terms {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mg-p-price-card.is-featured .mg-p-price-card-terms {
  border-top-color: rgba(22, 22, 22, 0.15);
}

.mg-p-price-card-term {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
  gap: 1rem;
}

.mg-p-price-card-term-label {
  opacity: 0.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.mg-p-price-card-term-value {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: right;
}

/* ====================================
     注目プラン（VIPカード）専用 特殊反転スタイル
     ==================================== */
.mg-p-price-card.is-featured {
  background-color: var(--text-color);
  color: #161616;
  border-color: var(--text-color);
}

.mg-p-price-card.is-featured .mg-c-btn {
  background-color: #222222;
  color: var(--text-color);
  border: 1px solid #222222;
  opacity: 1;
}

.mg-p-price-card.is-featured .mg-c-btn:hover {
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}

/* ====================================
   Guide（ご利用案内）セクション
   ==================================== */
.mg-p-guide-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .mg-p-guide-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.mg-p-guide-items {
  display: flex;
  flex-direction: column;
}

.mg-p-guide-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mg-p-guide-item:first-child {
  border-top: 1px solid var(--border-color);
}

.mg-p-guide-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
  margin: 0 0 0.5rem 0;
}

.mg-p-guide-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem 0;
}

.mg-p-guide-desc {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.mg-p-guide-figure {
  margin: 0;
  position: sticky;
  top: 6rem;
}

.mg-p-guide-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.mg-p-guide-figure figcaption {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  opacity: 0.4;
  margin-top: 1rem;
  text-align: center;
}

/* ====================================
   Contact セクション
   ==================================== */
.mg-p-contact {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
}

.mg-p-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mg-p-contact-info-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.mg-p-contact-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s var(--ease-out-expo);
}

.mg-p-contact-info-item:hover .mg-p-contact-icon-box {
  border-color: rgba(238, 238, 238, 0.5);
}

.mg-p-contact-icon-box svg {
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
}

.mg-p-contact-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.mg-p-contact-info-value {
  font-size: 0.875rem;
  margin: 0;
}

.mg-p-top-main .mg-p-contact-line-link {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: rgba(238, 238, 238, 0.4);
  text-underline-offset: 4px;
  transition: opacity 0.3s var(--ease-out-expo);
}

.mg-p-top-main .mg-p-contact-line-link:hover {
  opacity: 0.7;
}

.mg-p-contact-info-sub {
  font-size: 0.75rem;
  color: rgba(238, 238, 238, 0.5);
  margin-top: 0.25rem;
}

.mg-p-contact-map {
  margin-top: 2.5rem;
}

.mg-p-contact-map iframe {
  display: block;
  width: 100%;
}

/* フォーム内部装飾 */
.mg-p-contact-form-box {
  border: 1px solid var(--border-color);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .mg-p-contact-form-box {
    padding: 3rem;
  }
}

.mg-p-contact-form-title {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.mg-p-contact-form-group {
  margin-bottom: 2rem;
}

.mg-p-contact-form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.mg-p-contact-form-group input[type="text"],
.mg-p-contact-form-group input[type="email"],
.mg-p-contact-form-group input[type="tel"],
.mg-p-contact-form-group textarea {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-color);
  border-radius: 0;
  box-sizing: border-box;
  transition: border-color 0.3s var(--ease-out-expo);
}

.mg-p-contact-form-group input:focus,
.mg-p-contact-form-group textarea:focus {
  border-color: var(--text-color);
  outline: none;
}

.mg-p-contact-form-group textarea {
  resize: none;
}

/* ====================================
   Trial (CTA) Section
   ==================================== */
.mg-p-top-trial {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .mg-p-top-trial {
    padding: 8rem 0;
  }
}

.mg-p-top-trial-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

/* 上部の薄グレーの文字 */
.mg-p-top-main .mg-p-top-trial-label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(238, 238, 238, 0.4);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 400;
}

/* 「TRIAL」の極細サンセリフフォントの再現 */
.mg-p-top-main .mg-p-top-trial-title {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  color: var(--text-color);
  margin: 0 0 2rem 0;
  line-height: 1;
}

/* 説明文テキスト */
.mg-p-top-main .mg-p-top-trial-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(238, 238, 238, 0.5);
  line-height: 1.75;
  max-width: 576px;
  margin: 0 auto 3.5rem;
  letter-spacing: 0.05em;
}

/* ボタンコンテナ */
.mg-p-top-trial-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .mg-p-top-trial-btns {
    flex-direction: row;
  }
}

/* TRIAL専用ボタン */
.mg-p-top-main .mg-p-top-trial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-width: 160px;
  padding: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

@media (min-width: 640px) {
  .mg-p-top-main .mg-p-top-trial-btn {
    width: auto;
    max-width: none;
  }
}

/* 左ボタン（BOOK NOW） */
.mg-p-top-main .mg-p-top-trial-btn--primary {
  background-color: #f0f0f0;
  color: #161616;
  border: 1px solid #f0f0f0;
}

.mg-p-top-main .mg-p-top-trial-btn--primary:hover {
  background-color: rgba(238, 238, 238, 0.9);
  border-color: rgba(238, 238, 238, 0.9);
}

.mg-p-top-main .mg-p-top-trial-btn--primary svg {
  width: 1rem;
  height: 1rem;
  color: #161616;
  transition: transform 0.3s var(--ease-out-expo);
}

.mg-p-top-main .mg-p-top-trial-btn--primary:hover svg {
  transform: translateX(4px);
}

/* 右ボタン（CONTACT） */
.mg-p-top-main .mg-p-top-trial-btn--outline {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid rgba(238, 238, 238, 0.3);
}

.mg-p-top-main .mg-p-top-trial-btn--outline:hover {
  background-color: rgba(238, 238, 238, 0.08);
  border-color: var(--text-color);
}

/* ====================================
   Snow Monkey Forms 確定カスタムスタイル（縦並びスタック版）
   ==================================== */

/* 1. フォーム全体のレイアウト調整（常に縦並び） */
.mg-p-top-main .mg-p-contact-form-box .smf-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  border: none;
  padding: 0;
}

/* 2. ラベルと入力欄の横幅をすべて100%に統一 */
.mg-p-top-main .mg-p-contact-form-box .smf-item__col--label,
.mg-p-top-main .mg-p-contact-form-box .smf-item__col--controls {
  width: 100%;
}

/* 3. ラベル（NAME、EMAILなど）の文字装飾 */
.mg-p-top-main .mg-p-contact-form-box .smf-item__label__text {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5;
}

/* 4. 項目の補足説明文 */
.mg-p-top-main .mg-p-contact-form-box .smf-item__description {
  font-size: 11px;
  color: rgba(238, 238, 238, 0.4);
  margin-top: 0.5rem;
}

/* 5. 入力枠（input / textarea）のフルプレーン・下線化 */
.mg-p-top-main .mg-p-contact-form-box .smf-text-control__control,
.mg-p-top-main .mg-p-contact-form-box .smf-textarea-control__control {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-color);
  border-radius: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
  transition: border-color 0.3s var(--ease-out-expo);
}

/* 入力枠のプレースホルダー */
.mg-p-top-main .mg-p-contact-form-box .smf-text-control__control::placeholder,
.mg-p-top-main
  .mg-p-contact-form-box
  .smf-textarea-control__control::placeholder {
  color: rgba(238, 238, 238, 0.2);
}

/* 入力中（フォーカス時）の白い下線エフェクト */
.mg-p-top-main .mg-p-contact-form-box .smf-text-control__control:focus,
.mg-p-top-main .mg-p-contact-form-box .smf-textarea-control__control:focus {
  border-color: var(--text-color);
  outline: none;
  box-shadow: none;
}

/* MESSAGEの入力エリアの高さ */
.mg-p-top-main .mg-p-contact-form-box .smf-textarea-control__control {
  resize: none;
  height: 120px;
}

/* ====================================
   Snow Monkey Forms 送信ボタンエリア
   ==================================== */
.mg-p-top-main form.snow-monkey-form .smf-action {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

/* ボタンを囲むspanラッパーを100%化 */
.mg-p-top-main form.snow-monkey-form .smf-action .smf-button-control {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 共通ボタン基本構造スタイル */
.mg-p-top-main form.snow-monkey-form .smf-action .smf-button-control__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  font-family: var(--font-sans);
  box-shadow: none;
  transition: all 0.3s var(--ease-out-expo);
}

/* 【下ボタン：SEND】*/
.mg-p-top-main
  form.snow-monkey-form
  .smf-action
  .smf-button-control__control[data-action="complete"] {
  background-color: var(--text-color);
  color: #161616;
  border: 1px solid var(--text-color);
}

.mg-p-top-main
  form.snow-monkey-form
  .smf-action
  .smf-button-control__control[data-action="complete"]:hover {
  background-color: rgba(238, 238, 238, 0.9);
}

/* 【上ボタン：RETURN】*/
.mg-p-top-main
  form.snow-monkey-form
  .smf-action
  .smf-button-control__control[data-action="back"] {
  background: transparent;
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid rgba(238, 238, 238, 0.3);
}

.mg-p-top-main
  form.snow-monkey-form
  .smf-action
  .smf-button-control__control[data-action="back"]:hover {
  background-color: rgba(238, 238, 238, 0.08);
  border-color: var(--text-color);
}

/* 7. システムエラーメッセージ */
.mg-p-top-main .mg-p-contact-form-box .smf-system-error-content-ready {
  font-size: 12px;
  color: #e40014;
  margin-top: 1rem;
  text-align: left;
}

/* 8. reCAPTCHA 文言内のリンク */
.mg-p-top-main .mg-p-contact-form-box .wp-block-paragraph a {
  text-decoration: underline;
}

/* ====================================
   フッター
   ==================================== */
.mg-footer {
  /* 色は CSS 変数で上書き可能。デフォルトは元サイトと同値 */
  --mf-bg: #222;
  --mf-fg: #eee;
  --mf-border: #3a3a3a;

  background-color: var(--mf-bg);
  border-top: 1px solid var(--mf-border);
  color: var(--mf-fg);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Helvetica Neue",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mg-footer *,
.mg-footer *::before,
.mg-footer *::after {
  box-sizing: border-box;
}

.mg-footer__container {
  max-width: 80rem; /* max-w-7xl = 1280px */
  margin-inline: auto;
  padding: 5rem 1.5rem; /* py-20 px-6 */
}

/* ---------- 上段：ロゴ / ナビ / SNS ---------- */
.mg-footer__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem; /* gap-12 */
  margin-bottom: 4rem; /* mb-16 */
}

/* ロゴ */
.mg-footer__logo {
  display: inline-block;
  text-decoration: none;
}
.mg-footer__logo-text {
  font-size: 1.875rem; /* text-3xl */
  line-height: 2.25rem;
  font-weight: 300; /* font-light */
  letter-spacing: 0.2em;
  color: var(--mf-fg);
  transition: opacity 0.3s ease;
}
.mg-footer__logo:hover .mg-footer__logo-text {
  opacity: 0.6;
}

/* ナビ（SWELL フッターメニューを反映） */
.mg-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* gap-8 */
}
.mg-footer__nav-link {
  font-size: 0.75rem; /* text-xs */
  line-height: 1;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: rgba(238, 238, 238, 0.5); /* foreground/50 */
  transition: color 0.3s ease;
  white-space: nowrap;
}
.mg-footer__nav-link:hover {
  color: var(--mf-fg);
}

/* SNS アイコン */
.mg-footer__social {
  width: 2.5rem; /* w-10 */
  height: 2.5rem; /* h-10 */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mf-border);
  transition: border-color 0.3s ease;
}
.mg-footer__social:hover {
  border-color: rgba(238, 238, 238, 0.5);
}
.mg-footer__social-icon {
  width: 1rem; /* w-4 */
  height: 1rem; /* h-4 */
  color: rgba(238, 238, 238, 0.5);
}

/* ---------- 中段：店舗情報 ---------- */
.mg-footer__info {
  display: grid;
  grid-template-columns: 1fr; /* モバイルは1列 */
  gap: 2rem; /* gap-8 */
  padding: 3rem 0; /* py-12 */
  border-top: 1px solid var(--mf-border);
  text-align: center;
}
.mg-footer__info-label {
  margin: 0 0 0.5rem; /* mb-2 */
  font-size: 10px; /* text-[10px] */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 238, 238, 0.3); /* foreground/30 */
}
.mg-footer__info-value {
  margin: 0;
  font-size: 0.75rem; /* text-xs */
  line-height: 1.625; /* leading-relaxed */
  color: rgba(238, 238, 238, 0.6); /* foreground/60 */
}

/* ---------- 下段：コピーライト ---------- */
.mg-footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 1rem; /* gap-4 */
  padding-top: 2rem; /* pt-8 */
  border-top: 1px solid var(--mf-border);
}
.mg-footer__copyright {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.05em; /* tracking-wider */
  color: rgba(238, 238, 238, 0.3);
}
.mg-footer__legal {
  display: flex;
  gap: 1.5rem; /* gap-6 */
}
.mg-footer__legal-link {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(238, 238, 238, 0.3);
  transition: color 0.3s ease;
}
.mg-footer__legal-link:hover {
  color: rgba(238, 238, 238, 0.6);
}

/* =============================================================
   レスポンシブ
   ============================================================= */

/* sm: 640px 以上 */
@media (min-width: 640px) {
  .mg-footer__container {
    padding-inline: 2rem; /* sm:px-8 */
  }
  .mg-footer__info {
    grid-template-columns: repeat(3, 1fr); /* sm:grid-cols-3 */
    text-align: left; /* sm:text-left */
  }
  .mg-footer__bottom {
    flex-direction: row; /* sm:flex-row */
  }
}

/* lg: 1024px 以上 */
@media (min-width: 1024px) {
  .mg-footer__container {
    padding-inline: 3rem; /* lg:px-12 */
  }
  .mg-footer__top {
    flex-direction: row; /* lg:flex-row */
    align-items: center; /* lg:items-center */
  }
  .mg-footer__nav {
    gap: 3rem; /* lg:gap-12 */
  }
}

/* =============================================================
   SWELL 上書き用オーバーライド
   SWELL は .l-footer 内の <a> にデフォルトの文字色・ホバーを当てるため、
   フッターの ID (#footer) を使って詳細度を上げ、こちらの色を優先させる。
   （メニュー項目と Privacy Policy / Terms が SWELL の色になる問題を解消）
   ============================================================= */

/* ナビ（CONCEPT / FACILITY / PRICE / CONTACT） */
#footer .mg-footer__nav-link,
#footer .mg-footer__nav-link:link,
#footer .mg-footer__nav-link:visited {
  color: rgba(238, 238, 238, 0.5); /* foreground/50 */
  opacity: 1;
  text-decoration: none;
}
#footer .mg-footer__nav-link:hover,
#footer .mg-footer__nav-link:focus {
  color: #eee; /* foreground 100% */
  opacity: 1;
  text-decoration: none;
}

/* 下部リンク（Privacy Policy / Terms） */
#footer .mg-footer__legal-link,
#footer .mg-footer__legal-link:link,
#footer .mg-footer__legal-link:visited {
  color: rgba(238, 238, 238, 0.3); /* foreground/30 */
  opacity: 1;
  text-decoration: none;
}
#footer .mg-footer__legal-link:hover,
#footer .mg-footer__legal-link:focus {
  color: rgba(238, 238, 238, 0.6); /* foreground/60 */
  opacity: 1;
  text-decoration: none;
}
