/* ベーススタイル */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background-color: #f0f0f0;
    padding: 50px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin: 0 0 20px;
}

.hero p {
    font-size: 1.2em;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #0056b3;
}

section {
    padding: 50px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.service-list {
    display: flex;
    justify-content: space-around;
}

.service-item {
    text-align: center;
    width: 30%;
}

table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ccc;
}

.team-member {
    display: inline-block;
    width: 45%;
    text-align: center;
    margin: 20px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
}

form button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* 料金表のセクション */
/* #pricing {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pricing-card {
    background: linear-gradient(145deg, #f4f4f4, #e0e0e0);
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.price {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
} */

#pricing {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background-color: #f4f4f4;
    font-size: 1.2em;
}

.pricing-table td {
    font-size: 1.1em;
    color: #333;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #e1f5fe;
}

.pricing-table td:last-child {
    color: #007bff;
    font-weight: bold;
}

/* 予約ボタン */
.reserve-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reserve-btn:hover {
    background-color: #0056b3;
}

/* モーダル背景 */
.popup-modal {
    display: none;  /* 初期状態で非表示 */
    position: fixed;
    z-index: 1; /* 最前面に表示 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);  /* 半透明の黒い背景 */
    padding-top: 60px;
}

/* モーダルコンテンツ */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 閉じるボタン */
.close-btn {
    color: #aaa;
    font-size: 2em;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
}

/* リストのスタイル */
.popup-modal ul {
    list-style: none;
    padding: 0;
}

.popup-modal li {
    margin: 15px 0;
}

.popup-modal a {
    text-decoration: none;
    color: #007bff;
    font-size: 1.2em;
}

.popup-modal a:hover {
    color: #0056b3;
}

/* インスタ */
#instagram-gallery {
    padding: 40px;
    text-align: center;
}

.instagram-posts {
    display: flex;  /* 横並びにする */
    justify-content: center;  /* センタリング */
    gap: 20px;  /* 各投稿の間隔 */
    flex-wrap: wrap;  /* レスポンシブ対応：小さい画面では折り返し */
}

.instagram-post {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .instagram-posts {
        flex-direction: column;  /* 縦並びに変更 */
        align-items: center;  /* 中央寄せ */
    }

    .instagram-post {
        width: 100%;  /* 幅を100%にすることで全幅に表示 */
    }
}


/* 画像周り */

.blurred-image {
    width: 300px; /* 画像の幅 */
    height: auto; /* 高さは自動調整 */
    filter: blur(5px); /* 5pxのブラーをかける */
}



/* メニューとコンテンツのレイアウト */
.content-wrapper {
    display: flex;
    /* flex-grow: 1; */
    /* ヘッダー分のスペース */
    /* margin-top: 80px;  */
    /* フッター分のスペース */
    /* margin-bottom: 40px; */
    min-height: 700px;   /* 必要に応じて 700px や 800px に調整 */
    padding-bottom: 40px; /* フッターと間隔をとる */
}

.menu-container {
    display: flex;
    width: 100%;
    /* height: 100%; */
}

.menu-titles {
    width: 200px;
    background-color: #f4f4f4;
    border-right: 2px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
}

.menu-titles ul {
    list-style: none;
    padding: 0;
}

.menu-titles .menu-item {
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.menu-titles .menu-item:hover {
    background-color: #ddd;
}

.menu-content {
    flex-grow: 1;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

@font-face {
    font-family: 'HanazomeFont';
    src: url('../fonts/hanazomefont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* 特定のh3要素に枠線を追加 */
h3.boxed {
    font-family: 'HanazomeFont', sans-serif; /* はなぞめフォントを適用 */
    display: inline-block; /* インラインブロックで囲む範囲を文字サイズに合わせる */
    padding: 5px 10px;      /* 文字と枠線の間の余白 */
    /* border: 2px solid #009DFF; 枠線の色と太さ */
    /* border-radius: 5px;      枠線を角丸に */
    /* background-color: #ecf0f1; 背景色（任意） */
    color: #000000;          /* 文字色 */
    font-weight: bold;       /* 太字にする */
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 文字の影 */
    /* 白い影 */
    /* text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);  */
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.6),  /* ぼかしのある白いスプレー */
        0 0 10px rgba(255, 255, 255, 0.4), /* より広範囲に白を広げる */
        0 0 15px rgba(255, 255, 255, 0.3); /* より強く広げて塗る */
}

/* 特定のh3要素に枠線を追加 */
h3.boxed2 {
    font-family: 'HanazomeFont', sans-serif; /* はなぞめフォントを適用 */
    display: inline-block; /* インラインブロックで囲む範囲を文字サイズに合わせる */
    padding: 5px 10px;      /* 文字と枠線の間の余白 */
    /* border: 2px solid #009DFF; 枠線の色と太さ */
    /* border-radius: 5px;      枠線を角丸に */
    /* background-color: #ecf0f1; 背景色（任意） */
    /* color: #000000;          文字色 */
    font-weight: bold;       /* 太字にする */
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 文字の影 */
    /* 白い影 */
    /* text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);  */
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.6),  /* ぼかしのある白いスプレー */
        0 0 10px rgba(255, 255, 255, 0.4), /* より広範囲に白を広げる */
        0 0 15px rgba(255, 255, 255, 0.3); /* より強く広げて塗る */
}

/* 特定のh3に小文字を適用 */
h3.lowercase {
    text-transform: none; /* 小文字で始める */
}

.subtitle{
    font-family: 'HanazomeFont', sans-serif; /* はなぞめフォントを適用 */
    /* text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5); 白い影 */
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.6),  /* ぼかしのある白いスプレー */
        0 0 10px rgba(255, 255, 255, 0.4), /* より広範囲に白を広げる */
        0 0 15px rgba(255, 255, 255, 0.3); /* より強く広げて塗る */
    color: #000000;          /* 文字色 */
}


.forced{
    font-family: 'HanazomeFont', Courier, monospace; /* はなぞめフォントを適用 */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    /* text-shadow:
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  */
}

/* <div>に白いスプレーのような背景を追加 */
.sprayed-background {
    position: relative;
    width: 300px;
    height: 100px;
    background-color: #16a085;  /* 背景色（任意） */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5),  /* 背景のぼかし効果 */
                0 0 20px rgba(255, 255, 255, 0.4),  /* スプレーの広がり */
                0 0 30px rgba(255, 255, 255, 0.3);  /* スプレーの強調 */
    z-index: 1;  /* 背景のレイヤー */
}

.hanazome-font{
    font-family: 'HanazomeFont', sans-serif; /* はなぞめフォントを適用 */
}


.colorMain1{
    color:#009DFF;
}

.colorBlack{
    color:#000000;
}










:root{ --brand:#009DFF; }

/* ===== PC（769px以上）：タブ＋パネルを“まとめて”スライド ===== */
@media (min-width:769px){

    .reserve-title { display: none; }

  .reserve{
    position:fixed;
    right:0;               /* 右端に固定 */
    bottom:120px;          /* 好みで調整 */
    z-index:9999;
  }

  /* タブとパネルを横並びで1ユニットに */
  .reserve-wrap{
    --panel-w: 240px;      /* パネルの幅 */
    --tab-w:   44px;       /* タブの見え幅（padding込みの目安） */
    /* display:flex; */
    align-items:stretch;
    /* 初期はパネル分だけ右へ押し出して、タブだけ見せる */
    transform: translateX(var(--panel-w));
    transition: transform .28s ease;
    background: var(--brand);      /* ← 背景をまとめる */
    border-radius: 4px 0 0 4px;  /* ← 外周だけ丸める */
    box-shadow: 0 6px 12px rgba(0,0,0,.25);
    display: flex;
    overflow: hidden;              /* ← 内側は切り抜き */
  }

  /* ホバー/フォーカスでユニット全体を引き出す */
  .reserve:hover .reserve-wrap,
  .reserve:focus-within .reserve-wrap{
    transform: translateX(0);
  }

  /* タブ（縦書き） */
  .reserve-tab{
    writing-mode: vertical-rl;
    /* background:var(--brand); */
    background: transparent;
    color:#fff;
    /* border-radius:12px 0 0 12px; */
    border-radius:8px 0 0 8px; /* ← 角丸を12px → 30pxに */
    padding:12px 10px;
    min-width: var(--tab-w);
    text-align:center;
    font-weight:700;
    /* box-shadow:0 6px 12px rgba(0,0,0,.25); */
    user-select:none;
    cursor:pointer;
  }

  /* パネル（タブの左側に配置） */
  .reserve-panel{
    width:var(--panel-w);
    /* background:var(--brand); */
    background: transparent;
    color:#fff;
    border-radius:0px 0 0 0px;
    padding:12px;
    /* box-shadow:0 6px 12px rgba(0,0,0,.25); */
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  /* ボタン */
  .btn{
    display:block;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:8px;
    padding:10px 12px;
    transition:transform .15s ease, filter .15s ease;
  }
  .btn:hover{ transform:translateY(-1px); filter:brightness(1.06); }

  .phone{ background:#333; }
  .line{  background:#06c755; }
  .insta{ background:linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
}




/* ===== スマホ（768px以下）：いままで通り下部常時表示 ===== */
@media (max-width:768px){

    .reserve-tab { display: none; }

  .reserve{
    position:fixed; left:0; right:0;
    bottom:env(safe-area-inset-bottom, 0);
    z-index:9999;
  }

  .reserve-panel{
    display:flex;
    flex-direction:column;           /* ← タイトル → ボタン行 */
    gap:8px;
    background:var(--brand);
    color:#fff;
    border-radius:0;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom, 0));
    box-shadow:0 -4px 10px rgba(0,0,0,.15);
  }

  .reserve-title{
    display:block;                   /* ← タイトルを表示 */
    text-align:center;
    font-weight:700;
    font-size:16px;
    line-height:1.2;
    letter-spacing:.03em;
    color:#fff;
  }

  .reserve-options{
    display:flex;                    /* ← 3ボタンを1行に */
    gap:8px;
    justify-content:stretch;         /* 余白はgapで管理 */
  }

  .reserve-options .btn{
    flex:1;
    text-align:center;
    color:#fff;
    font-weight:700;
    border-radius:6px;
    padding:12px 0;
    text-decoration:none;
  }

  /* スマホでもPCと同じ色指定を適用 */
  .phone{ background:#333; }
  .line { background:#06c755; }
  .insta{
    background:linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
  }
}

/* ===== Card-style pricing (added) ===== */
.grid{display:grid; grid-template-columns:repeat( auto-fit, minmax(220px,1fr) ); gap:16px; margin-top:12px;}
.card{border:1px solid #e9eef5; border-radius:14px; padding:16px; box-shadow:0 4px 14px rgba(0,0,0,.04); background:#fff; transition:transform .2s ease, box-shadow .2s ease;}
.card:hover{transform:translateY(-2px); box-shadow:0 10px 22px rgba(0,0,0,.08);}
.card h3{margin:0 0 8px; font-size:16px;}
.card p{margin:0; color:#555; font-size:14px;}
.card .price{font-size:18px; margin-top:10px; display:block; color: var(--brand); font-weight:700;}
@media (max-width:480px){ .grid{grid-template-columns:1fr;} }


/* === Dotted Leader Price Board === */
.price-note{
  max-width:1100px; margin:0 auto; padding:0 20px;
  text-align:right; color:#6b7a8a; font-size:14px;
}
.menu-price-section{
  display:grid; grid-template-columns:220px 1fr; gap:24px;
  max-width:1100px; margin:0 auto; padding:24px 20px;
  border-top:1px solid #e6ecf5;
}
.menu-price-section:last-of-type{ border-bottom:1px solid #e6ecf5; margin-bottom:24px; }

.section-head .en{ font-size:20px; font-weight:700; letter-spacing:.06em; color:var(--brand); }
.section-head .jp{ font-size:12px; color:#6b7a8a; margin-top:4px; }

.price-list{ list-style:none; margin:0; padding:0; }
.price-row{ display:flex; align-items:baseline; gap:12px; padding:8px 0; }
.price-row .label{ display:flex; flex-direction:column; gap:2px; white-space:nowrap; }
.price-row .label .name{ font-weight:600; color:#243447; }
.price-row .label .sub{ color:#7a8699; font-size:12px; }
.price-row .dots{ flex:1; border-bottom:1px dotted #cbd5e1; transform: translateY(-2px); }
.price-row .val{ white-space:nowrap; font-weight:700; color:#234ea5; }

@media (max-width: 768px){
  .menu-price-section{ grid-template-columns:1fr; gap:12px; padding:20px 16px; }
  .section-head .en{ font-size:18px; }
}


.menu-price-section .price-row .val,
.menu-price-section .price-row .label {
  font-family: 'HanazomeFont','Noto Sans JP','Hiragino Sans','Yu Gothic','Meiryo',system-ui,sans-serif;
}


/* === Section note (right aligned) === */
.menu-price-section .section-note{
  grid-column: 1 / -1;     /* span both columns */
  text-align: right;       /* right aligned */
  font-size: 12px;         /* small */
  color: #7a8699;          /* muted */
  margin: 6px 0 0;
}
@media (max-width: 768px){
  .menu-price-section .section-note{ font-size: 11.5px; }
}


