@charset "utf-8";
/* CSS Document */

@import url("https://use.typekit.net/aqc0hai.css");

/* ------------------------------

	ナビゲーションメニュー（ＰＣ）

------------------------------ */

.navi-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--f-color) 0%,
    var(--s-color) 100%
  );
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navi-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navi-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  height: auto;
  background: transparent;
  /*box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.5);*/
}

.navi-list li {
  flex: 1 0 calc(100% / 8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  height: auto; /* 可変高さにする */
  min-height: 55px; /* 最小の高さを維持 */
  transition: background-color 0.7s ease;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.navi-list li p {
  display: block; /* p要素をブロック要素として扱う */
  white-space: pre-line; /* 改行コード（改行文字）を有効にする */
  margin: 0;
  font-size: 0.8rem;
  color: #eee;
}

.navi-list li p span {
  font-size: 1.2rem;
  font-family: variex, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #fff;
}

.navi-list li.sp {
  flex: 1 0 calc(100% / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  height: 50px;
  font-size: 0.7rem;
  transition: background-color 0.7s ease;
}

.navi-list li.ck {
  background: var(--primary-color);
  color: var(--secondary-font-color);
}

.navi-list li.ck p {
  color: #fff;
}

.navi-list li a {
  display: flex;
  flex-direction: row; /* 横並び */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 5px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: background-color 0.4s ease;
}

.navi-list li i {
  font-size: 1rem; /* アイコンのサイズ調整 */
  margin-right: 5px;
}

.navi-list li a:hover {
  background: var(--primary-color);
  color: var(--secondary-font-color);
  transition: background-color 0.4s ease;
}

.navi-list li p {
  margin: 0;
  margin-top: -5px;
}

.navi-list li:nth-child(8n) {
  border-right: none;
}

@media (max-width: 768px) {
  .navi-list li p span {
    font-size: 0.9rem;
  }
}

/* PC/SP 表示切替 */
.pcnone {
  display: none;
}
@media (max-width: 768px) {
  .pcnone {
    display: block;
  }
}
.spnone {
  display: block;
}
@media (max-width: 768px) {
  .spnone {
    display: none;
  }
}

/* =========================================================
 * プールサイド ナビゲーション（上段＋下段）
 * 上段：max-width:1200px
 * 下段：上に少し重ねる（上段より約180px小さい）
 * ----------------------------------------------------- */

/* 全体ラッパー */
.ps-nav {
  position: relative;
  padding: 0 0 10px; /* 下段が重なっても余裕が出るように */
}

/* ==================== 上段ナビ ==================== */
.ps-nav-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .ps-nav-top {
    margin-top: 6px;
    width: 96%;
  }
}

/* 上段ボタン共通 */
.ps-nav-top a {
  flex: 1;
  padding: 16px 8px 30px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #0091ff 0%, #004dbf 100%);
  color: #ffffff; /* 英語テキスト用のベース色 */
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  box-sizing: border-box;
}

.ps-nav-top a:last-child {
  border-right: none;
}

/* 日本語タイトル（大） → 金色っぽく */
.ps-nav-top a .jp {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #ffe7aa;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 英語サブタイトル（小） → そのまま白 */
.ps-nav-top a .en {
  display: block;
  font-size: 0.72rem;
  margin-top: 2px;
  opacity: 0.95;
  color: #ffffff;
}

/* ホバー時（PC用） */
@media (hover: hover) {
  .ps-nav-top a:hover {
    background: linear-gradient(180deg, #00a6ff 0%, #005ce0 100%);
  }
}

/* ==================== 下段ナビ ==================== */
.ps-nav-bottom {
  max-width: 1020px; /* 上段より約180px小さく */
  margin: 0 auto;
  margin-top: -18px; /* 上段に少し重ねる */
  position: relative;
  z-index: 2;
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  background: linear-gradient(
    180deg,
    #fdf3e3 0%,
    #fbeccd 45%,
    #fdf4e4 100%
  ); /* #FBECD3ベースのベージュ系 */
}

@media (max-width: 768px) {
  .ps-nav-bottom {
    width: 88%;
    margin-top: -14px; /* 上段に少し重ねる */
  }
}

/* 下段ボタン共通 */
.ps-nav-bottom a {
  flex: 1;
  padding: 11px 6px 10px;
  text-align: center;
  text-decoration: none;
  color: #ff5c8e;
  font-weight: 700;
  font-size: 0.92rem;
  border-right: 1px dashed rgba(255, 140, 180, 0.6);
  box-sizing: border-box;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.7) 0,
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 255, 255, 0.8) 0,
      transparent 45%
    );
}

/* 英語サブタイトル（グレー細字） */
.ps-nav-bottom a .en {
  display: block;
  font-size: 0.7rem;
  margin-top: 1px;
  color: #aa8795;
}

/* 最後の仕切り線を消す */
.ps-nav-bottom a:last-child {
  border-right: none;
}

/* ホバー時（PC用） */
@media (hover: hover) {
  .ps-nav-bottom a:hover {
    background-image: radial-gradient(
        circle at 0 0,
        rgba(255, 255, 255, 0.9) 0,
        transparent 55%
      ),
      radial-gradient(
        circle at 100% 100%,
        rgba(255, 255, 255, 1) 0,
        transparent 45%
      );
  }
}

/* ============================
 * スマホ時（768px以下）コンパクト化
 * ============================ */
@media (max-width: 768px) {
  /* --- 上段 --- */
  .ps-nav-top a {
    padding: 10px 6px 23px; /* ← 上下をだいぶ小さく */
  }

  .ps-nav-top a .jp {
    font-size: 0.95rem;
    margin-bottom: -2px; /* ← 英字との間隔詰める */
  }

  .ps-nav-top a .en {
    font-size: 0.65rem;
    margin-top: 0px; /* ← ほぼ密着させる */
  }

  /* --- 下段 --- */
  .ps-nav-bottom a {
    padding: 7px 4px 7px; /* ← 上下を小さく */
    font-size: 0.85rem;
  }

  .ps-nav-bottom a .en {
    margin-top: -3px; /* ← 日本語との間隔を詰める */
    font-size: 0.68rem;
  }
}

/* =========================================================
 * パンくずリスト（矢印タブ型＋横スクロール）
 * 例イメージ：
 *  [ ホーム▶ ] [ メンズ▶ ] [ アウター ]
 * ======================================================= */

/* 外側ラッパー：ここが横スクロールする */
nav[aria-label="パンくずリスト"] {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 10px;
  box-sizing: border-box;
  font-size: 0.8rem;

  overflow-x: auto; /* 横スクロール許可 */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* パンくず本体：矢印タブを横一列に並べる */
#breadcrumb {
  display: inline-flex;
  flex-wrap: nowrap; /* 折り返さない */
  align-items: stretch;
  margin: 6px 0;
  padding: 0;
  list-style: none;
}

/* 各タブ共通 */
#breadcrumb li {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;

  padding: 6px 18px 6px 22px; /* 左少し広め（テキスト用） */
  background: rgba(255, 255, 255, 0.9);
  color: #555;
  white-space: nowrap;
}

/* 1つ目だけ左の余白を少し詰める */
#breadcrumb li:first-child {
  padding-left: 16px;
}

/* 矢印部分（右側の▶になる三角形） */
#breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px; /* 次のタブと自然に重なるように調整 */
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 12px solid rgba(255, 255, 255, 0.9); /* 本体背景色と合わせる */
  z-index: 2;
}

/* 重なり用の“切り欠き”で段差を自然に */
#breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 12px solid #f4f4f4; /* 背景を少し暗めにして境界にする */
}

/* リンク */
#breadcrumb li a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.15s ease;
}

/* ホバー時：少しだけ強調（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  #breadcrumb li:hover {
    background: rgba(255, 255, 255, 1);
  }
  #breadcrumb li:hover::after {
    border-left-color: rgba(255, 255, 255, 1);
  }
  #breadcrumb li a:hover {
    color: var(--primary-color);
  }
}

/* 最後の要素（現在ページ）は少し濃い色で矢印無し */
#breadcrumb li:last-child {
  background: #ffecc4;
  color: #333;
  font-weight: 600;
}
#breadcrumb li:last-child::after {
  border-left-color: transparent; /* 矢印消し */
}

/* スマホ：少しだけ詰める */
@media (max-width: 768px) {
  nav[aria-label="パンくずリスト"] {
    padding: 6px 6px;
  }
  #breadcrumb li {
    padding: 6px 14px 6px 18px;
  }
  #breadcrumb li:first-child {
    padding-left: 14px;
  }
}

/* START ハンバーガーメニュー ----------------------------------------------- */

/* 右上固定位置 */
.hamburger-menu {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 10000;
}

/* オーバーレイ */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998; /* メニュー本体より一段下 */
}

body.no-scroll {
  overflow: hidden;
}

/* メニューコンテンツ */
.menu-content {
  position: fixed;
  top: -10px;
  right: -100%;
  width: 30%;
  height: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: 0.5s;
  z-index: 999;
  overflow-y: auto;

  /* ▼背景画像 ＋ 上に半透明グラデーションを重ねる */
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url("../x_imgs/common/hamburger2.jpg");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* メディアクエリ（スマホ時の幅など） */
@media (max-width: 599px) {
  .menu-content {
    right: -100%;
    width: 85%;
    opacity: 0.9;
    padding-top: 60px;
    overflow-y: auto;
  }
}

.menu-content p {
  width: 95%;
  margin: -35px auto 5px auto;
  text-align: center;
}

.menu-content p img {
  width: 50%;
  display: inline-block;
}

.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 15px auto;
  width: 92%;
  z-index: 999;
}

.menu-content li a {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  box-sizing: border-box;
  border: 1px #fff solid;
  padding: 18px 8px;
  text-decoration: none;
  font-size: 0.8rem;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(
    to bottom,
    var(--f-color) 0%,
    var(--s-color) 100%
  );
}

.menu-content ul::after {
  content: "";
  display: table;
  clear: both;
}

.menu-content ul li:nth-of-type(2n + 3) {
  clear: left;
}

/* サブメニュー */
.submenu {
  position: relative;
  margin-bottom: -15px;
}

.submenu i {
  font-size: 1rem;
  margin-right: 5px;
}

.plus-icon {
  float: right;
  font-size: 1rem;
  margin-right: 10px;
  cursor: pointer;
}

ul .submenu-content {
  width: 95%;
  margin-left: auto;
  margin-right: 0;
}

.submenu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0;
}

.submenu-content i {
  font-size: 1rem;
  margin-right: 5px;
}

.submenu.open .submenu-content {
  max-height: 400px;
}

.submenu-content li a {
  padding: 15px 10px;
}

.submenu-content li a:hover {
  background-color: #fff;
  color: #9d887d;
}

/* スマホ前提：縦1列のシンプルメニュー */
.one_contents_wrapper {
  width: 92%;
  margin: 72px auto 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

/* li でも div でも「ポチ」が出ないように強制リセット */
/* リンク行：左に光るライン、右に白い ＞ */
.one_contents a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 100%;
  box-sizing: border-box;
  padding: 10px 30px 10px 26px; /* 左余白を少し詰める */
  text-decoration: none;

  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;

  /* ベースは今までどおりグラデ */
  background: linear-gradient(to right, var(--f-color) 0%, var(--s-color) 100%);

  /* 右側の白い ＞（既存をそのまま利用） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4l10 8-10 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 15px 24px;

  transition: background 0.2s ease, color 0.2s ease;
}

/* 左側のアクセント：細い縦バー＋ほのかなグロー */
.one_contents a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  border-radius: 999px;

  /* 白〜半透明白の縦グラデで“光ってる”感 */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.6)
  );
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* hover：背景を少しだけ明るく（位置は一切動かさない） */
.one_contents a:hover {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  color: #fff;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .one_contents_wrapper {
    margin: 12px auto 20px;
  }
}

/* ==============================
   角丸四角 × 水色ベースデザイン
   （≡ と × 切り替え時に位置がブレない版）
   ============================== */
.hamburger {
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;

  background: #e4f4ff; /* 明るい水色 */
  border: 2px solid #8cc8ff; /* 少し濃い水色の枠線 */
  border-radius: 10px; /* 角丸四角 */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);

  width: 40px; /* ひとまわり小さく */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  font-size: 0; /* JSの☰ / × テキストは非表示（SVGで表示） */

  /* --- ハンバーガー（≡）SVG --- */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23555' stroke-width='2.2' stroke-linecap='round'%3E%3Cline x1='4' y1='7' x2='20' y2='7'/%3E%3Cline x1='4' y1='12' x2='20' y2='12'/%3E%3Cline x1='4' y1='17' x2='20' y2='17'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;

  transition: background 0.28s, border-color 0.28s, box-shadow 0.28s;
}

/* ホバーで少しだけ強調（位置は変えない） */
.hamburger:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* open（×アイコン）状態：位置は変えずに色とアイコンだけ変更 */
.hamburger.open {
  background: #8cc8ff; /* 濃いめ水色に反転 */
  border-color: #5baef7; /* さらに濃い水色の枠線 */

  /* --- × SVG --- */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

/* END ハンバーガーメニュー ----------------------------------------------- */

/* ------------------------------

	ページボトム固定リンク

------------------------------ */

/* ページトップ（固定バー本体） */
.page-top {
  position: fixed;
  width: 100%;
  max-width: 1100px;
  bottom: 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  font-size: 100%;
  color: #000;
  opacity: 0.9;
  padding: 8px 11px 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* 上から：タブ → テキスト → ボタン */
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  background: linear-gradient(180deg, #0091ff 0%, #004dbf 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* ===== 予約タブ（LINE予約 / ネット予約） ===== */
.top-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 4px;
  margin-top: -40px;
}

.top-tab {
  display: inline-block;
  padding: 4px 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  border-radius: 14px 14px 0 0; /* 上だけ丸める */
  border: 1px solid rgba(255, 255, 255, 0.7);

  background: linear-gradient(135deg, #4fc3f7, #0277bd);
}

/* LINE予約タブ（ややグリーン寄りのブルー） */
.top-tab-line {
  background: linear-gradient(135deg, #3fd5c4, #00a9b8);
  width: 140px;
  text-align: center;
  font-size: 1rem !important;
}

/* ネット予約タブ（ブルー系） */
.top-tab-web {
  background: linear-gradient(135deg, #4fc3f7, #0277bd);
  width: 140px;
  text-align: center;
  font-size: 1rem !important;
}

/* 営業時間テキスト */
.top-block {
  width: 100%;
  text-align: center;
  padding: 3px 0 4px;
  color: #fff;
  font-size: 1.1rem;
}

/* 横並びにする要素をラップするdiv（TELボタン＋▲） */
.horizontal-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* 画像を使う場合の高さ指定（現状はaタグボタンで利用） */
.page-top img {
  height: 60px;
  cursor: pointer;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .page-top {
    width: 97%;
    padding: 8px 8px 9px;
  }
  .top-block {
    font-size: 0.95rem;
  }
  .top-tab {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  .page-top img {
    height: 30px;
    cursor: pointer;
  }
}

/* 左ボタン（未使用想定だが残しておく） */
a.left-image {
  margin-left: 3px;
  border: 1px #ccc solid;
  padding: 5px;
  background: linear-gradient(
    to bottom,
    var(--f-color) 0%,
    var(--s-color) 100%
  );
  color: #fff;
  width: 30%;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
  z-index: 2000;
}

/* 中央のTELボタン */
a.center-image {
  margin-left: 3px;
  border: 1px #ccc solid;
  padding: 5px;
  background: #002aa5;
  color: #eeeeee;
  width: calc(100% - 70px);
  margin-right: 6px;
  box-sizing: border-box;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  z-index: 2000;
}

/* 右側の▲ボタン */
a.right-image {
  margin-right: 3px;
  border: 1px #ccc solid;
  padding: 5px;
  background: linear-gradient(
    to bottom,
    var(--f-color) 0%,
    var(--s-color) 100%
  );
  color: #fff;
  width: 60px;
  box-sizing: border-box;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  z-index: 2000;
}

/* 固定リンク */
.reserve-tel,
.reserve-line,
.reserve-link {
  position: fixed;
  right: 10px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transform: translateY(100%);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  width: 55px;
  font-weight: bold;
}

.fixed-wrap {
  position: fixed;
  width: 400px;
  bottom: 10px;
  right: 1%;
  padding: 0px 10px 10px 10px;
  border-radius: 8px;
  border: 1px #ccc5b2 solid;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* 全体は縦並び */
  justify-content: space-around;
  align-items: center;
  gap: 10px; /* 各セクションの間隔 */
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .fixed-wrap {
    position: fixed;
    width: calc(99% - 1%);
    bottom: 10px;
    left: 1%;
    padding: 0px 10px 10px 10px;
    border-radius: 8px;
    border: 1px #ccc5b2 solid;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column; /* 全体は縦並び */
    justify-content: space-around;
    align-items: center;
    gap: 10px; /* 各セクションの間隔 */
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
}

.fixed-title {
  display: flex; /* 横並びに配置 */
  justify-content: space-between; /* 左右に分割 */
  align-items: center; /* 縦方向を中央揃え */
  width: 100%; /* コンテナ全体の幅を占有 */
  padding: 10px 10px 0px 10px; /* 上下左右の余白 */
  background-color: #fff; /* 背景色（任意） */
  font-size: 1rem; /* 文字サイズ */
  color: #000; /* 文字色 */
  box-sizing: border-box; /* パディングを含むサイズ計算 */
}

.fixed-title img {
  width: 100%;
}

.fixed-title-left {
  flex: 4; /* 左側を30%にする（3:7の比率を指定） */
  text-align: right; /* 右寄せ */
  font-weight: bold; /* 強調（任意） */
  padding-right: 5px;
}

.fixed-title-right {
  flex: 6; /* 右側を70%にする */
  text-align: left; /* 左寄せ */
  font-weight: bold; /* 強調（任意） */
  font-size: 1.5rem;
  color: #007bff; /* 任意: 電話番号を目立たせる色 */
  padding-left: 5px;
}

.fixed-title-right span {
  font-size: 0.8rem;
  color: #000;
  display: block;
  margin-bottom: -2px;
}

.fixed-buttons {
  display: flex; /* 横並びにする */
  gap: 10px; /* ボタン間の余白 */
  width: 100%; /* 必要に応じて全幅に調整 */
  justify-content: space-around;
}

.fixed-Tel,
.fixed-Line,
.fixed-Reserve,
.fixed-X,
.fixed-Insta {
  flex: 1; /* 均等に幅を取る */
  max-width: 50%; /* 各要素の最大幅を50%に制限 */
  padding: 10px 20px;
  font-size: 0.8rem;
  display: flex;
  justify-content: center; /* テキストを中央揃え */
  align-items: center; /* 垂直方向中央揃え */
  box-sizing: border-box;
  text-align: center;
  background: #f0f0f0; /* 任意: ボタンの背景色 */
  border: 1px solid #ccc; /* 任意: ボタンの枠線 */
  border-radius: 5px; /* 任意: ボタンの角を丸くする */
}

.fixed-Tel {
  background-color: var(--base-color-tel);
  color: var(--font-color-tel);
}

.fixed-Line {
  background-color: var(--base-color-line);
  color: var(--font-color-line);
}

.fixed-Reserve {
  background-color: var(--base-color-reserve);
  color: var(--font-color-reserve);
}

.fixed-X {
  background-color: var(--base-color-x);
  color: var(--font-color-x);
}

.fixed-Insta {
  background-color: var(--base-color-insta);
  color: var(--font-color-insta);
}

.reserve-tel img,
.reserve-line img,
.reserve-link img {
  width: 55px;
  height: auto;
}

.reserve-tel {
  bottom: 60px;
}

.reserve-line {
  bottom: 120px;
}

.reserve-link {
  bottom: 180px;
}

/* ------------------------------

	LINE登録リンク

------------------------------ */

.line-wrap {
  position: fixed;
  bottom: 15px;
  z-index: 100000;
  width: 96%;
  margin: 0px auto;
  background: #fff;
  text-align: center;
  border: 1px #666 solid;
  border-radius: 8px;
  padding: 2px;
  box-sizing: border-box;
  transition: opacity 0.5s ease;
  /* フェードアウトのためのCSS */
  left: 50%;
  transform: translateX(-50%);
}

.line-wrap .left {
  display: inline-block;
  width: 100px;
  vertical-align: top;
}

.line-wrap .left img {
  width: 80px;
  height: auto;
}

.line-wrap .right {
  display: inline-block;
  width: cals(100%-100px);
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}

.line-wrap .right b {
  display: block;
  margin: 8px 0px;
  font-size: 18px;
}

.line-wrap .right a {
  display: inline-block;
  border: 1px #666 solid;
  padding: 6px;
  margin: 8px 3px 0px 0px;
  text-decoration: none;
  color: #000;
  background: #f9d1d2;
}

.line-wrap .right a.gray {
  background: #eee;
  cursor: pointer;
}
