@charset "UTF-8";
/*
Theme Name: lian
Theme URI: https://seitailien.com
Description: 整体サロン リアンのテーマ
Version: 1.0
Author: あなたの名前
*/

/* --- ここから下に、本来のデザインのCSSを書いていきます --- */


body {
    background-color: #F2FAFC;
    font-family: noto-sans-jp, sans-serif;
    color: #000000;
    margin: 0;
}

.l-container {
    display: flex;
    min-height: 100vh;
    align-items: flex-start; /* これを追加 */
}

.l-sidebar {
    width: 900px;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-sizing: border-box;
}
.p-logo {
    margin: 0;
}
.p-hero-wrapper {
    position: relative;
    margin-top: -165px;  /* マイナスの値を指定して、ロゴの下に潜り込ませる（数値は要調整） */
    width: 100%;          /* 左半分に寄せるために50%にする */
    z-index: -1;         /* ロゴより後ろ（背面）に配置する */
}

.p-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.p-vertical-text {
    position: absolute;
    top: 200px;
    left: 100px; /* 横書きに合わせて左側の位置を調整 */
    z-index: 10;
    
    /* 横書きにリセットする指定を追加 */
    writing-mode: horizontal-tb; 
    
    color: #000000;
    font-size: 150%;
    margin: 0;
    line-height: 2;
}

.l-main {
    flex: 1;
    background-color: #F2FAFC;
    height: 100vh;
    max-width: 500px;
    margin: 0 321px 0 184px;
    overflow-y: auto;
    padding-top: 20px;
    position: relative;
    margin-left: 983px;
}
/* スクロールバーを非表示にする（WebKitブラウザ向け） */
.l-main::-webkit-scrollbar {
  display: none;
}
/* スクロールは可能にする */
.l-main {
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none;     /* Firefox */
}
/* --- 固定エリアの親（ここを基準に動かします） --- */
.nav-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 500;
    width: 60px; /* ハンバーガーが入る分の幅 */
}

/* --- ハンバーガー（右上のまま） --- */
/* ハンバーガー本体の設定を強化 */
/* --- ハンバーガーメニュー本体（丸い青いボタン） --- */
.hamburger {
  cursor: pointer;
  width: 60px; /* 円の大きさ */
  height: 60px; /* 幅と同じにすると正円になります */
  background-color: #227bbe; /* 青色 */
  border-radius: 50%; /* ここで丸くします */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 600;
  transition: background-color 0.3s;
}

/* --- 線（3本線）の設定 --- */
.hamburger__line {
  position: absolute;
  width: 30px; /* 円に合わせて少し短くしました */
  height: 3px;
  background-color: #fff; /* 白い線 */
  border-radius: 2px;
  transition: all 0.5s;
}

/* 線を円の中心に配置するための調整 */
.hamburger__line--1 { transform: translateY(-10px); }
.hamburger__line--2 { transform: translateY(0); }
.hamburger__line--3 { transform: translateY(10px); }

/* --- メニューが開いた時の動き --- */
.open .hamburger { background-color: #0056b3; } /* 開いた時の色変化 */
.open .hamburger__line--1 { transform: translateY(0) rotate(-45deg); }
.open .hamburger__line--2 { opacity: 0; }
.open .hamburger__line--3 { transform: translateY(0) rotate(45deg); }
/* --- ナビメニュー --- */
.sp-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
}

.open .sp-nav { right: 0; }

/* --- 背景の黒い膜 --- */
.black-bg {
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}

.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}

/* --- 予約ボタン（位置を個別にずらします） --- */
.booking {
    position: absolute;
    top: 700px;  /* ここを増やすとボタンが下に下がります */
    right: 100px;   /* ここを増やすとボタンが左にずれます */
}

.c-booking-btn {
    display: block;
    transition: transform 0.3s;
}

.c-booking-btn img {
    width: auto; /* ここで画像のサイズ調整をしてください */
    height: auto;
    display: block;
}

.c-booking-btn:hover {
    transform: scale(1.05);
}
/* --- 修正：openクラスが付いた親要素の隣にあるメニューを表示する --- */
.nav-wrapper.open ~ .sp-nav,
.nav-wrapper-sp.open ~ .sp-nav {
    right: 0;
}

/* --- 修正：openクラスが付いた親要素の隣にある黒背景を表示する --- */
.nav-wrapper.open ~ .black-bg,
.nav-wrapper-sp.open ~ .black-bg {
    opacity: 0.3;
    visibility: visible;
}
/* --- メニュー表示の仕組み --- *
/* --- 「はじめに」セクションのスタイル --- */
.p-intro {
    padding: 0 20px; /* セクション自体の余白を少し広げて、余裕を持たせます */
    margin-top: 100px;
}

.p-intro__inner {
    position: relative; /* 重なりを作るために必要 */
    max-width: 600px;
    margin: 0 auto;
    padding: 0; /* 内側の余白を少し広げると高級感が出ます */
    z-index: 1;
}

/* 背景に重なる「ずらしたカード」 */
.p-intro__inner::before {
    content: "";
    position: absolute;
    top: 15px; /* 縦に10pxずらす */
    left: 10px; /* 横に10pxずらす */
    width: 100%;
    height: 100%;
    z-index: -1; /* 文字の後ろへ */
}

.p-intro__title {
    text-align: center;
    font-size: 1.8rem; /* 少し大きくして見出しらしく */
    margin-bottom: 25px;
    color: #000000;
    letter-spacing: 0.1em; /* 少し文字間隔を空けると洗練されます */
}

.p-intro__text p {
    margin-bottom: 20px;
    line-height: 2.0; /* 行間を広げると、より落ち着いた雰囲気になります */
    color: #4a4a4a;
}
/* --- スタッフ紹介のスタイル --- */
.p-staff {
    padding: 40px 20px;
}

.p-staff__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px; /* 画像周りを丸く見せるため大きめに */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.p-staff__title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #000000;
}
h2 {
    text-align: center;
}
/* 写真の丸い枠 */
.p-staff__img {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}

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

.p-staff__name {
    text-align: center;
    font-weight: bold;
    background-color: #eee;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: block;
    width: fit-content;
}

.p-staff__text p {
    line-height: 1.8;
    color: #555;
}
.p-menu__inner {
    margin-bottom: 20px;
}
.p-menu {
    padding: 40px 20px;
}
.p-menu__card {
    background-color: #ffffff;
    padding: 10px 30px 30px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.p-menu__item-name {
    margin-bottom: 20px;
    color: #000000;
    font-size: 1.5rem;
}

/* 左右並びのレイアウト */
.p-menu__content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.p-menu__img {
    flex: 0 0 40%; /* 画像の幅を固定 */
}

.p-menu__img img {
    width: 100%;
    border-radius: 30px; /* 角丸の工夫 */
    display: block;
}

.p-menu__description {
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.p-menu__price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}
/* --- 「選ばれる理由」のスタイル --- */
.p-reasons__title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #594639;
}
.p-reasons {
    margin-top: 30px;
}
.p-reasons__wrapper {
    display: grid;
    /* gridで配置すると、画像と文字が同じ座標(0,0)からスタートして重なります */
    place-items: center; 
    position: relative;
    max-width: 500px; /* 画像の最大サイズ */
    margin: 0 auto;
    padding: 20px;
}

.p-reasons__wrapper > * {
    /* 画像と文字の両方に「同じセル」を使うための指定 */
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.p-reasons__bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.p-reasons__title {
    /* 文字の色やサイズを調整 */
    color: #000000;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    z-index: 1; /* 画像より上に表示させる */
}

.p-reason-item {
    padding: 30px;
    border-radius: 10px;
}

.p-reason-item__header {
    display: flex;
    align-items: center; /* 数字と見出しを縦中央で揃える */
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #b5a59a; /* ここで点線を作っています */
}

.p-reason-item__number {
    font-size: 5rem;
    font-weight: bold;
    color: #f0a35e; /* オレンジ系の数字色 */
    line-height: 1;
}
.p-reason-item__number-2 {
    color: #83B938; /* 2番目の数字も同じ色 */
    font-size: 5rem;
    font-weight: bold;
     line-height: 1;
}
.p-reason-item__number-3 {
    color: #3D7AC0; /* 3番目の数字も同じ色 */
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
}

.p-reason-item__title {
    font-size: 1.5rem;
    color: #000000;
    margin: 0;
}

.p-reason-item__body p {
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.p-voice {
    padding: 40px 20px;
}

.p-voice__card {
    background-color: #ffffff; /* 薄いグレー */
    padding: 10px 30px;
    border-radius: 20px;
    max-width: 600px;
    margin-bottom: 20px;
}

.p-voice__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.p-voice__icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
}

/* 引用符のデザイン */
.p-voice__content {
    position: relative;
    padding: 0 20px;
    line-height: 1.8;
}

.p-voice__quote-top {
    font-size: 2rem;
    color: #b5a59a;
    display: block;
    margin-bottom: -10px;
}

.p-voice__quote-bottom {
    font-size: 2rem;
    color: #b5a59a;
    text-align: right;
    display: block;
    margin-top: -10px;
}
.p-voice__illust {
    margin-left: 10px; /* これが重要：左側の余白を自動にして、要素を右に押し出す */
    width: 120px;      /* イラストの幅はお好みで調整してください */
}

.p-voice__illust img {
    display: block;
    width: 100%;      /* 親要素の幅いっぱいに画像を表示 */
    height: auto;
}
/* --- ブログセクションのスタイル --- */
.p-blog {
    padding: 40px 20px;
}

.p-blog__link {
    display: flex; /* 画像と情報を横並びに */
    gap: 20px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    max-width: 600px;
    margin: 0 auto;
}

.p-blog__img {
    flex: 0 0 40%; /* 画像を左側に配置 */
}

.p-blog__img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.p-blog__item-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}

.p-blog__date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.p-blog__tag {
    font-size: 0.9rem;
    color: #888;
}
.p-blog__more {
    text-align: center; /* ボタンを中央に配置 */
    margin-top: 0;   /* 上のコンテンツとの間隔 */
}

.c-more-btn {
    display: inline-block;
    padding: 15px 50px;       /* ボタンのサイズ調整 */
    background-color: #227bbe; /* ベースカラーの茶色 */
    color: #ffffff;           /* 文字色 */
    text-decoration: none;    /* 下線を消す */
    border-radius: 50px;      /* 角を丸くしてボタンらしく */
    font-size: 1rem;
    transition: opacity 0.3s; /* マウスを乗せた時の動き */
}

.c-more-btn:hover {
    opacity: 0.8;             /* マウスを乗せると少し薄くなる */
}
.l-footer {
    padding: 60px 20px;
}

/* 受付時間テーブルの装飾 */
.p-footer__table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.p-footer__table th, .p-footer__table td {
    border: 1px solid #dcdcdc;
    padding: 10px;
    text-align: center;
}

/* アクセス住所のスタイル */
.p-footer__address {
    font-style: normal;
    line-height: 1.8;
    margin-top: 20px;
}

/* ボタンのスタイル（ブログで作成したものと共通化） */
.c-reserve-btn {
    display: block;
    background-color: #227bbe;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    text-decoration: none;
}
/* ナビゲーション全体の整理 */
.sp-nav {
    padding: 40px 20px;
}

.sp-nav ul {
    list-style: none; /* 点々を消す */
    padding: 0;
    margin: 0;
}

.sp-nav ul li {
    border-bottom: 1px solid #ddd; /* 区切り線を入れると見やすい */
}

.sp-nav ul li a {
    display: block;
    padding: 20px 10px; /* タップ範囲を広くする */
    font-size: 18px; /* 文字を少し大きく */
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

/* ご予約ボタンの調整（もし下のボタンも調整するなら） */
.booking-sp {
    text-align: center;
    margin-top: 30px;
}

.c-booking-btn {
    display: inline-block;
    transition: transform 0.2s; /* 押したときに少し反応があると良い */
}

.c-booking-btn:active {
    transform: scale(0.95);
}

/* 迷ったらこちら */
/* ==========================================================================
   迷ったらこちら（タブ切り替えセクション）のスタイル
   ========================================================================== */
/* ==========================================================================
   迷ったらこちら（タブ切り替えセクション）のスタイル ★新ベース色調和版
   ========================================================================== */
.p-select-tabs {
    padding: 60px 20px;
    background-color: #F2FAFC; /* お母様ご希望の新しい背景色に統一 */
}

.p-select-tabs__inner {
    max-width: 600px;
    margin: 0 auto;
}

.p-select-tabs__title {
    text-align: center;
    font-size: 1.8rem;
    color: #000; /* 上品なブルーに変更して爽やかに */
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

/* --- タブボタンの並び --- */
.p-select-tabs__btn-area {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}

/* 各タブボタンの基本スタイル */
.c-tab-btn {
    flex: 1;
    padding: 15px 10px;
    background-color: #E6F4F7; /* 背景に馴染む、ごく淡いクリアな水色 */
    color: #6A96A6; /* 落ち着いたアッシュブルー */
    border: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 5px rgba(74, 133, 197, 0.05);
}

/* マウスホバー時 */
.c-tab-btn:hover {
    opacity: 0.85;
}

/* ★アクティブ（選択中）のボタンのスタイル */
.c-tab-btn.is-active {
    background-color: #A1D2A4; /* 植物の緑と調和する優しいミントグリーン */
    color: #ffffff;            /* 文字色を白に */
    box-shadow: 0 4px 10px rgba(118, 191, 161, 0.3);
}

/* --- コンテンツエリア --- */
.p-select-tabs__content-wrapper {
    position: relative;
}

/* 初期状態はすべてのコンテンツを非表示にする */
.p-tab-content {
    display: none;
    background-color: #ffffff; /* 純白にしてスッキリ感を強調 */
    padding: 40px 30px;
    border-radius: 20px;
    /* ほんのり青みを含んだ繊細な影で水色背景の上に綺麗に浮かせる */
    box-shadow: 0 8px 24px rgba(74, 133, 197, 0.08); 
    animation: fadeIn 0.5s ease;
}

/* ★is-activeクラスがついたコンテンツだけを表示する */
.p-tab-content.is-active {
    display: block;
}

/* --- コンテンツ内の装飾 --- */
.p-tab-content__lead {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6A96A6;
    margin-bottom: 25px;
    font-weight: bold;
}

.p-tab-content__menu-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #4A85C5; /* ブラウンから上品ブルーへ */
    margin: 15px 0;
    line-height: 1.4;
}

.p-tab-content__plus {
    text-align: center;
    font-size: 1.8rem;
    color: #A1D2A4; /* 植物のイラストに合わせた優しいグリーン */
    margin: 10px 0;
}

.p-tab-content__img {
    max-width: 100%;
    margin: 0 auto 20px;
    text-align: center;
}

.p-tab-content__img img {
    width: 100%;
    max-width: 400px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
}

/* --- ポイントリスト（下部のpoint1〜3） --- */
.p-tab-content__points {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed #D0E7ED; /* 水色ベースの点線に変更 */
}

.p-point-item {
    margin-bottom: 20px;
}

.p-point-item:last-child {
    margin-bottom: 0;
}

/* 「point 1」などのラベル */
.p-point-item__label {
    display: inline-block;
    background-color: #E6F4F7; /* ボタンの未選択時と合わせた爽やかなペールブルー */
    color: #4A85C5;
    padding: 3px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* 説明テキスト */
.p-point-item__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A4A4A; /* 読みやすさを重視したニュートラルなグレー */
    margin: 0;
}

/* --- 下部のご予約ボタンエリア --- */
.p-tab-content__action {
    text-align: center;
    margin-top: 35px;
}

.c-tabs-reserve-btn {
    display: inline-block;
    padding: 18px 60px;
    background-color: #4A85C5; /* 右下の丸い予約ボタンとトーンを合わせたブルー */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(74, 133, 197, 0.2);
    transition: all 0.3s ease;
}

.c-tabs-reserve-btn:hover {
    opacity: 0.9;
    background-color: #3B74B5; /* ホバー時に少し深みのある青に */
    transform: translateY(-2px);
}



/* --- ここからブログ --- */
/* ==========================================
   新着情報一覧ページ用スタイル
========================================== */
.p-news-list {
    padding: 60px 20px;
    background-color: #F2FAFC;
}

.p-news-list__inner {
    max-width: 800px;
    margin: 0 auto;
}

/* パンくずリスト */
.c-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #666;
}
.c-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.c-breadcrumb li + li::before {
    content: ">";
    margin-right: 10px;
    color: #aaa;
}
.c-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: opacity 0.3s;
}
.c-breadcrumb a:hover {
    opacity: 0.7;
}

.p-news-list__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    letter-spacing: 0.1em;
}

/* 記事アイテム（カード風の枠組み） */
.p-news-item {
    background-color: #ffffff;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.p-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* リンク全体の設定（下線や文字色の意図しない変更を完全に防ぐ） */
.p-news-item__link {
    display: flex;
    gap: 25px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 20px;
}

/* サムネイル画像（左側） */
.p-news-item__img {
    flex: 0 0 220px;
    border-radius: 8px;
    overflow: hidden;
}

.p-news-item__img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.3s;
}

.p-news-item__link:hover .p-news-item__img img {
    transform: scale(1.03);
}

/* テキスト情報（右側） */
.p-news-item__body {
    flex: 1;
}

.p-news-item__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.p-news-item__date {
    font-size: 0.85rem;
    color: #888;
}

.p-news-item__tag {
    background-color: #E6F4F7;
    color: #4A85C5;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.p-news-item__headline {
    font-size: 1.15rem;
    margin: 0;
    color: #333;
    line-height: 1.5;
}


/* --- ブログ詳細ページのスタイル --- */
.p-blog-detail {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* 戻るリンク */
.p-blog-detail__back {
    margin-bottom: 20px;
}
.p-blog-detail__back a {
    color: #6A96A6;
    text-decoration: none;
    font-size: 0.9rem;
}

/* ヘッダー情報 */
.p-blog-detail__header {
    margin-bottom: 30px;
}
.p-blog-detail__meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}
.p-blog-detail__tag {
    background-color: #E6F4F7;
    color: #4A85C5;
    padding: 2px 10px;
    border-radius: 10px;
}
.p-blog-detail__title {
    font-size: 1.6rem;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

/* アイキャッチ画像 */
.p-blog-detail__img {
    margin-bottom: 30px;
}
.p-blog-detail__img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* 本文エリア */
.p-blog-detail__body {
    line-height: 2.0;
    color: #4a4a4a;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.p-blog-detail__body p {
    margin-bottom: 20px;
}
.p-blog-detail__body h3 {
    font-size: 1.2rem;
    color: #4A85C5;
    margin: 30px 0 15px;
    border-left: 4px solid #A1D2A4;
    padding-left: 10px;
}

/* 予約ボタンエリア */
.p-blog-detail__action {
    margin-top: 40px;
    text-align: center;
}
.p-blog-detail__action .c-reserve-btn {
    display: block;
    background-color: #4A85C5;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(74, 133, 197, 0.2);
    transition: opacity 0.3s;
}
.p-blog-detail__action .c-reserve-btn:hover {
    opacity: 0.8;
}


/* スマホ用の調整 */
@media screen and (max-width: 500px) {
    .c-tab-btn {
        font-size: 0.85rem;
        padding: 12px 5px;
    }
    .p-tab-content {
        padding: 30px 20px;
    }
    .c-tabs-reserve-btn {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
    }
}
/* 切り替え時のふわっとしたアニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 500px) {
    .c-tabs-reserve-btn {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* PCのみ表示、スマホは非表示 */
/* --- スマホ専用の表示設定（899px以下） --- */
@media screen and (max-width: 899px) {
  /* PC用を消す */
  #nav-wrapper-pc, .l-sidebar { display: none; }
  .l-main { margin: 0; max-width: 100%; width: 100%; padding-top: 0; }
 /* スマホ用ヘッダーエリア全体のレイアウト調整 */
  .sidebar-for-sp { 
    display: flex !important;       /* block から flex に変更 */
    flex-direction: column;         /* 中身の要素を縦に並べる */
    align-items: center;            /* 縦に並んだ要素をすべて「真ん中」に寄せる */
    width: 100%;                    /* 横幅いっぱいに広げる */
  }

  /* スマホ用ロゴを囲むdivの設定 */
  .p-sp-logo { 
    width: 100%;                    /* 親要素と同じ幅にする */
    text-align: center;             /* 中にある画像を真ん中寄せにする */
    margin-top: 20px;               /* 画面上部との間に少し余白を作る */
    margin-bottom: 15px;            /* ロゴと下の画像との間に少し隙間を空ける */
  }

  /* ロゴ画像自体のサイズ指定（ここを調整） */
  .p-sp-logo img {
    width: 100px;
    height: auto;
    display: inline-block;          /* 確実に真ん中寄せを効かせるため */
  }

  /* メイン画像（top-img2.png）の親要素の横幅を100%にする */
  .p-sp-hero {
    width: 100%;
  }

  .p-sp-logo img {
  width: 100px; /* もしくはパーセント指定など、適切なサイズに */
  height: auto;
  }

  
  /* ハンバーガー（右上固定） */
  .nav-wrapper-sp {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 500;
  }

  /* 予約ボタン（独立固定） */
  .booking-sp {
    position: fixed;
    top: 700px; /* 位置を調整 */
    right: 0;
    z-index: 500;
  }

  .booking-sp .c-booking-btn {
    display: block;
    width: 30px;
    height: 90px;
  }
  
  .booking-sp .c-booking-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .p-vertical-text {
    position: absolute;
    top: 210px;
    left: 30px;
    z-index: 10;
    color: #594639;
    font-size: 120%;
    margin: 0;
    line-height: 2;
}

  /* --- 重要：ここを追加・修正 --- */
  /* nav-wrapper-spにopenがついた時、その兄弟ではなく、同じ親(c-main_wrapper)の中のsp-navを動かす */
  .c-main_wrapper.open .sp-nav {
      right: 0;
  }
  .c-main_wrapper.open .black-bg {
      opacity: 0.3;
      visibility: visible;
  }
  .sidebar-for-pc { 
      display: none; 
  }    /* サイドバーのものは消す */
  .sidebar-for-sp { 
      display: block; 
  }   /* メインに入れたものを出す */
}
@media screen and (min-width: 900px) {
  /* ハンバーガーの親と予約ボタンだけを消す */
  .nav-wrapper-sp, 
  .booking-sp { 
    display: none; 
  }
  /* PC版でもメニューが開くように、表示の仕組みをPC幅にも適用します */
}

@media screen and (min-width: 900px) {
  /* PC版の親要素に.openがついたら、sp-navを表示させる設定 */
  .c-main_wrapper.open .sp-nav {
    right: 0 !important;
    display: block !important;
    right: 0;
    width: 300px; /* PC版のメニュー幅を調整してください */
    border-left: 1px solid #ccc;
  }
  
  /* メニューが開いた時、黒い背景も表示する */
  .c-main_wrapper.open .black-bg {
    opacity: 0.3 !important;
    visibility: visible !important;
    display: block !important;
  }
  
  /* PC版ではsp-navが非表示にされていたのを、開いた時だけ出すようにする */
  .sp-nav {
    display: block !important;
  }
  .sidebar-for-pc { 
    display: block; 
  }   /* サイドバーにあるロゴ・ヒーロー */
  .sidebar-for-sp { 
        display: none; 
  }    /* メインに入れたロゴ・ヒーロー */
}