@media (min-width: 981px){
    .pc-only { display: block;  }
    .sp-only{ display: none !important; }
}
@media (max-width: 768px) {
    .pc-only { display: none;  }
    .sp-only{ display: block; }
}

ul{
    list-style: none;
    padding:0;
    margin:0;
}
.contents{
    width: 960px;
    margin: 0 auto;
}

h3.title{
    margin:0;
    padding:0;
}
.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 24px;
}

.title::before,
.title::after {
    content: "";
    width: 15px;     /* ← ここで長さ指定 */
    height: 1px;
    background-color: #000;
    flex: none;       /* ← これが重要 */
}

/* =========================
   Header / Global Nav 共通
========================= */

.site-header {
    position: fixed;           /* スクロール追随 */
    top: 0;
    left: 0;
    right: 0;
    background: #000;          /* 常に黒背景 */
    z-index: 9999;             /* 最前面 */
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.header-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 64px;
}

/* ヘッダー固定分の押し下げ */
body{
    padding-top: 64px;
}

.header-logo {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.header-logo img {
    height: 50px;
    width: auto;
}

/* =========================
   Nav Toggle（SP）
========================= */

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    width: 64px;
    cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    position: relative;
}

.nav-toggle-lines::before {
    position: absolute;
    top: -8px;
    left: 0;
}

.nav-toggle-lines::after {
    position: absolute;
    top: 8px;
    left: 0;
}

/* =========================
   Global Nav（PC）
========================= */

.global-nav {
    display: flex;
}

.gnav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gnav-item {
    position: relative;
    border-left: 1px solid rgba(255,255,255,.25);
}

.gnav-item:last-child {
    border-right: 1px solid rgba(255,255,255,.25);
}

/* a / button 共通 */
.gnav-link {
    appearance: none;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    height: 64px;
    padding: 0 20px;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.1;
}

.gnav-link:hover {
    background: rgba(255,255,255,.08);
}

.gnav-link .en {
    font-size: var(--d-font-size);
    letter-spacing: .03em;
}


.gnav-link .jp,
.sub-menu .jp{
    font-size: var(--d-font-size-min-4);
    opacity: .9;
}
.sub-menu li{
    line-height: 1.5;
}

/* =========================
   Sub Menu（PC：hover）
========================= */

.sub-menu {
    position: absolute;
    top: 64px;
    left: 0;
    min-width: 240px;
    background: #000;
    border: 1px solid rgba(255,255,255,.25);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .2s ease;
    z-index: 50;
}

.sub-menu a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
}

.sub-menu a:hover {
    background: rgba(255,255,255,.065);
}



/* =========================
   PC layout fix（右メニュー比率固定 + 横スクロール防止）
========================= */
@media (min-width: 981px) {
    body{
        overflow-x: hidden;
    }
    .gnav-item.gnav-item--icon{
        width: 70px;
    }
    .gnav-item.has-sub:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* ヘッダー全体を100%で扱う（どこかで固定幅が入っても崩れにくくする） */
    .header-inner {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* 1) 左ロゴ：右メニューを比率で固定（必要に応じて割合を調整） */
    .header-logo {
        flex: 0 0 25%;   /* ←ロゴ側の割合 */
        min-width: 140px;/* ←最低幅（必要なら調整） */
        box-sizing: border-box;
    }

    .global-nav {
        justify-content: right;
        min-width: 0;    /* ←これが無いと縮まず、はみ出しやすい */
        width:100%;
    }

    /* 2) 右メニュー内：項目を均等割りで縮める（合計幅が画面を超えない） */
    .gnav {
        width: 100%;
        min-width: 0;
    }

    .gnav-item {
        width: 20%;
    }
    .gnav-item.has-sub{
        display: flex;
        justify-content: center;
    }

    /* 余白を詰めて、はみ出しを抑える */
    .gnav-link {
        padding: 0 12px;
        min-width: 0;
    }

    /* どうしても入らない場合の保険（横スクロールより省略を優先） */
    .gnav-link .en,
    .gnav-link .jp {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* =========================
   SP Layout
========================= */

@media (max-width: 980px) {

    .nav-toggle {
        display: block;
    }

    .global-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #000;
        border-top: 1px solid rgba(255,255,255,.25);
    }

    #js-header.is-open .global-nav {
        display: block;
    }

    .gnav {
        flex-direction: column;
    }

    .gnav-item {
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .gnav-link {
        height: auto;
        padding: 16px;
        text-align: left;
    }

    /* 子メニューは閉じる */
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: 0;
        padding: 0 0 8px;
    }

    /* is-open で表示 */
    .gnav-item.has-sub.is-open > .sub-menu {
        display: block;
    }

    .sub-menu a {
        padding: 12px 44px;
        border-top: 1px solid rgba(255,255,255,.15);
    }
}

/* =========================
   Instagram Icon
========================= */



.insta {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 6px;
    position: relative;
}
.insta.black {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #999;
    border-radius: 6px;
    position: relative;
}


.insta::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.insta::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.insta.black::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid #999;
    border-radius: 50%;
}

.insta.black::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

@media (max-width: 980px) {
    .gnav-item--icon {
        width: 100%;
    }

    /* 親階層（子メニューあり）の目印：矢印（閉=右 / 開=下） */
    .gnav-item.has-sub > .gnav-toggle {
        position: relative;
        padding-right: 52px; /* 矢印分の余白 */
        width: 100%;         /* SPで押せる領域を広く */
    }

    .gnav-item.has-sub > .gnav-toggle::after {
        content: '';
        position: absolute;
        right: 18px;
        top: 50%;
        width: 10px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: translateY(-50%) rotate(-45deg); /* 右向き */
        transition: transform .2s ease;

        pointer-events: none; /* ←これが超重要：矢印がクリックを邪魔しない */
    }

    .gnav-item.has-sub.is-open > .gnav-toggle::after {
        transform: translateY(-50%) rotate(45deg); /* 下向き */
    }
}
/* ハンバーガーボタンの文言を非表示 */
.nav-toggle .sr-only {
    display: none;
}
/* ハンバーガー基本 */
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle-lines::before {
    position: absolute;
    top: -7px;
    left: 0;
}

.nav-toggle-lines::after {
    position: absolute;
    top: 7px;
    left: 0;
}

/* 開いたとき（❌に変形） */
#js-header.is-open .nav-toggle-lines {
    background: transparent;
}

#js-header.is-open .nav-toggle-lines::before {
    transform: rotate(45deg) translate(5px, 5px);
}

#js-header.is-open .nav-toggle-lines::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 幅 960px / 中央寄せ */
.site-footer .footer-inner {
    width: 980px;
    margin: 0 auto;
    padding: 28px 0;
}

/* 横一列ナビ */
.site-footer .fnav {
    display: flex;
    justify-content:space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .fnav-item{
    display: flex;
    align-items: end;
}
.site-footer .fnav-item a{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.site-footer .fnav-link,
.site-footer .fnav-title {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #777;
}

/* 2段（EN / JP） */
.site-footer .en {
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.site-footer .jp {
    display: block;
    font-size: 11px;
    margin-top: 4px;
}

/* About配下（footerでは常時表示：画像のナビがフラットなので） */
.site-footer .fnav-item.has-sub .sub-menu {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.site-footer .fnav-item.has-sub .sub-menu a {
    display: block;
    text-decoration: none;
    color: #777;
    text-align: center;
    padding: 6px 0;
}

/* Instagramは右端 */
.site-footer .fnav-item--icon {
    margin-left: auto;
}

.site-footer .insta {
    display: block;
    width: 32px;
    height: 32px;
    background: url("/assets/img/icon-instagram.svg") no-repeat center / contain;
}

/* コピーライト黒帯 */
.site-footer .footer-copy {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 18px 10px;
}

.site-footer .footer-copy p {
    margin: 0;
}


/* SP（必要に応じてブレイクポイント調整） */
@media (max-width: 767px) {

    .site-footer .footer-inner {
        width: 100%;
        margin: 0;
        padding: 0; /* SPは区切り線を活かすので0に */
    }

    /* 2列・折り返し */
    .site-footer .fnav {
        display: flex;
        flex-wrap: wrap;
        gap: 0;                 /* セル型にするので余白は0 */
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
    }

    /* 1セル = 50% */
    .site-footer .fnav-item {
        width: 50%;
        margin: 0;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        box-sizing: border-box;
    }

    /* Instagramも同じセル扱い（右寄せ解除） */
    .site-footer .fnav-item--icon {
        margin-left: 0;         /* PCの margin-left:auto を打ち消す */
    }

    /* リンクをセル全面クリックに */
    .site-footer .fnav-link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 72px;       /* 好みで調整 */
        padding: 12px 8px;
        text-align: center;
    }

    .site-footer .en {
        font-size: 18px;        /* SP用に少し小さく */
        line-height: 1.2;
    }

    .site-footer .jp {
        font-size: 11px;
        margin-top: 4px;
    }

    /* もしInstagramを文字で出す場合（画像のように "Instagram" 表記） */
    .site-footer .fnav-link--icon .insta {
        display: none;          /* アイコンを消したい場合 */
    }

    /* コピーライトはPC同様に黒帯 */
    .site-footer .footer-copy {
        background: #000;
        color: #fff;
        text-align: center;
        padding: 18px 10px;
    }

    .site-footer .footer-copy p {
        margin: 0;
        font-size: 14px;
    }
}

/* =========================
   SP ヘッダー右側：LINE予約 / WEB予約 / ハンバーガー
========================= */
.header-sp-actions {
    display: none; /* PCは非表示 */
}

@media (max-width: 980px) {

    /* 右側3点セットを表示 */
    .header-sp-actions {
        display: flex;
        margin-left: auto;
        height: 64px;
    }

    /* 予約ボタン共通 */
    .sp-action {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 72px;              /* 好みで 64〜84px で調整 */
        height: 64px;
        text-decoration: none;
        color: #fff;
        border-left: 1px solid rgba(255,255,255,.25);
        box-sizing: border-box;
        gap: 6px;
    }

    .sp-action:hover {
        background: rgba(255,255,255,.08);
    }

    .sp-action-text {
        font-size: 11px;
        line-height: 1;
        letter-spacing: .02em;
        white-space: nowrap;
    }

    /* アイコン（共通サイズ） */
    .sp-action-icon {
        width: 36px;
        height: 36px;
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    /* 電話アイコン（SVGをCSSで埋め込み：画像ファイル不要） */
    .sp-action--line .sp-action-icon {
        background-image: url("../../assets/img/header-icon-line.svg");
    }

    /* WEB予約はカレンダーアイコン */
    .sp-action--web .sp-action-icon {
        background-image: url("../../assets/img/header-icon-booking.svg");
    }

    /* 既存のハンバーガーを右端に */
    .nav-toggle {
        display: block;
        width: 72px;              /* 予約ボタンと揃える */
        height: 64px;
        border-left: 1px solid rgba(255,255,255,.25);
        box-sizing: border-box;
    }

    /* 線を中央に */
    .nav-toggle-lines {
        top: 50%;
        transform: translateY(-50%);
    }
}

/* =========================
   SP：ヘッダー右端ハンバーガー（崩れ修正）
   - 3点メニュー内ではセンタリングを absolute で固定
========================= */
@media (max-width: 980px) {
    .header-logo img{
        height: 44px;
    }
    .header-logo{
        padding: 0 8px;
        border-right:none;
    }
    .header-sp-actions .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 0;
    }

    .header-sp-actions .nav-toggle-lines,
    .header-sp-actions .nav-toggle-lines::before,
    .header-sp-actions .nav-toggle-lines::after {
        width: 28px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: transform .3s ease, opacity .3s ease, background .3s ease;
        margin: 0;
    }

    /* 上下の線はYだけずらす */
    .header-sp-actions .nav-toggle-lines::before {
        content: '';
        transform: translate(-50%, calc(-50% - 7px));
    }

    .header-sp-actions .nav-toggle-lines::after {
        content: '';
        transform: translate(-50%, calc(-50% + 7px));
    }

    /* 開いたとき（×） */
    #js-header.is-open .header-sp-actions .nav-toggle-lines {
        background: transparent;
    }

    #js-header.is-open .header-sp-actions .nav-toggle-lines::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #js-header.is-open .header-sp-actions .nav-toggle-lines::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
}

/* =========================
   SP固定フッター（アイコン4つ）
========================= */
.footer-sp-nav {
    display: none;
}

@media (max-width: 767px) {

    /* 既存のフッター文字ナビ（2列グリッド）をSPでは非表示にするなら */
    .site-footer .footer-nav {
        display: none;
    }

    /* 黒帯メニュー表示 */
    .footer-sp-nav {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #000;
        border-top: 1px solid rgba(255,255,255,.25);
    }

    .footer-icon-nav {
        display: flex;
        margin: 0;
        padding: .25em 0;
        list-style: none;
    }

    .footer-icon-item {
        width: 25%;
        border-right: 1px solid rgba(255,255,255,.25);
        box-sizing: border-box;
    }

    .footer-icon-item:last-child {
        border-right: 0;
    }

    .footer-icon-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 64px;              /* 黒帯の高さ */
        color: #fff;
        text-decoration: none;
    }

    .footer-icon-link:active,
    .footer-icon-link:hover {
        background: rgba(255,255,255,.08);
    }

    .footer-icon {
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .footer-icon-text {
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    /* アイコン（連番SVG） */
    .footer-icon-item:nth-child(1) .footer-icon {
        background-image: url("../../assets/img/footer-icon1.svg");
    }
    .footer-icon-item:nth-child(2) .footer-icon {
        background-image: url("../../assets/img/footer-icon2.svg");
    }
    .footer-icon-item:nth-child(3) .footer-icon {
        background-image: url("../../assets/img/footer-icon3.svg");
    }
    .footer-icon-item:nth-child(4) .footer-icon {
        background-image: url("../../assets/img/footer-icon4.svg");
    }

    /* 固定バーに被らないように下に余白を作る */
    body {
        padding-bottom: 64px;
    }
}


/* =========================
PC固定：右側サイド予約ボタン
========================= */
.pc-side-fix {
    position: fixed;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ボタン共通 */
.pc-side-btn {
    display: block;
    width: 48px;     /* 画像に合わせて調整OK */
    height: 140px;   /* 画像に合わせて調整OK */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-decoration: none;
    border-radius: 10px; /* 画像が角丸なら不要。念のため */
}

/* 画像ファイル名（ここだけ差し替えればOK） */
.pc-side-btn--line {
    background-image: url("../../assets/img/side-button-line.png");
}

.pc-side-btn--web {
    background-image: url("../../assets/img/side-button-web.png");
}

/* hover（任意） */
.pc-side-btn:hover {
    filter: brightness(1.03);
}

/* SPでは非表示 */
@media (max-width: 980px) {
    .pc-side-fix {
        display: none;
    }
    dl.table-default > dt{
        width: 100%;
    }
    dl.table-default > dd{
        width:100%;
    }
}
dl.table-default{
    display: flex;
    flex-wrap:wrap;
    width:100%;
    margin:0 0 2em;
    border-bottom:solid 1px #fff;
}
dl.table-default > dt{
    background: #F3F3EE;
    display:inline-flex;
    align-items: center;
    width:26%;
    text-align: center;
    font-weight: 600;
    border-left:1px solid #fff;
    border-top:1px solid #fff;
    border-right:1px solid #fff;
}

dl.table-default dt,
dl.table-default dd,
dl.table-default p,
dl.table-default li{
    font-size: var(--d-font-size-min-0);
}
dl.table-default > dt.required:after{
    margin: 0 0 0 auto;
    content:'必須';
    background: var(--primary-color-2);
    color:white;
    padding: .2em .5em;
    font-size: var(--d-font-size-min-4);
    border-radius: 10px;
}

dl.table-default > dd{
    width:74%;
    text-align: center;
    background:none;
    font-size: var(--d-font-size-min-0);
    line-height: 2;
    border-top:1px solid #fff;
    border-right:1px solid #fff;
}

dl.table-default > dt,
dl.table-default > dd{
    padding:1em;
}
dl.table-default > dd input,
dl.table-default > dd textarea{
    padding: .5em;
    font-size: var(--d-font-size);
    border: solid 1px var(--d-color-thin-2);
    border-radius: 5px;
}

dl.table-default dl.inner{
    display:flex;
    flex-wrap:wrap;
    justify-content: left;
    width: 100%;
    padding:0;
    margin:0;
}
dl.table-default dl.inner dt{
    width: 45%;
    text-align: left;
}
dl.table-default dl.inner dd{
    width: 30%;
}
dl.table-default ul{
    width:100%;
    margin:0 auto;
}
dl.table-default li{
    text-align: left;
}
dl.table-default .text-contents{
    text-align: left;
}
dl.table-default .text-contents .sub-title{
    font-weight: 600;
}
dl.table-default .text-contents .sub-title:not(:first-of-type) {
    margin:2em 0 0 0;
}

.contact-form input[type=submit]{
    cursor: pointer;
    display:block;
    width: 300px;
    background: #E4812D;
    background: linear-gradient(180deg, rgba(228, 129, 45, 1) 0%, rgba(209, 25, 21, 1) 100%);
    color: white;
    padding: .5em 10px .5em 10px;
    margin: 0 auto 2.5em auto;
    border:none;
    border-radius: 5px;
    font-size: var(--d-font-size);
}