/* =============================================
   フォントの読み込み
============================================= */
/* shippori-mincho-b1-regular - japanese_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Shippori Mincho B1';
    font-style: normal;
    font-weight: 400;
    src: url('https://5zigen.net/assets/fonts/shippori-mincho-b1-v24-japanese_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* shippori-mincho-b1-700 - japanese_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Shippori Mincho B1';
    font-style: normal;
    font-weight: 700;
    src: url('https://5zigen.net/assets/fonts/shippori-mincho-b1-v24-japanese_latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* yuji-syuku-regular - japanese_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Yuji Syuku';
    font-style: normal;
    font-weight: 400;
    src: url('https://5zigen.net/assets/fonts/yuji-syuku-v8-japanese_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* yusei-magic-regular - japanese_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Yusei Magic';
    font-style: normal;
    font-weight: 400;
    src: url('https://5zigen.net/assets/fonts/yusei-magic-v16-japanese_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* klee-one-regular - japanese_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Klee One';
    font-style: normal;
    font-weight: 400;
    src: url('https://5zigen.net/assets/fonts/klee-one-v13-japanese_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* =============================================
   基本設定 & テーマ
============================================= */
:root {
    --font-1: 'ヒラギノ角ゴ ProN', 'Noto Sans JP';
    --font-2: 'ヒラギノ角ゴ ProN', 'Noto Sans JP';

    /* --- ライトテーマ --- */
    --color-text: #333;
    --color-text-light: #fff;
    --color-background: rgba(255, 255, 255, 0.9);
    --color-background-trans: rgba(214, 214, 214, 0.85);
    --color-background-glass: rgba(255, 255, 255, 0.45);
    --color-hero-overlay: rgba(0, 0, 0, 0.1);
    --color-blue: #4285F4;
    --color-footer-bg: rgba(255, 255, 255, 0.7);
    --color-footer-text: #333;
    --color-footer-border: rgba(0, 0, 0, 0.1);
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-shadow-light: rgba(255, 255, 255, 0.3);
    --color-shadow-strong: rgba(0, 0, 0, 0.7);
    --color-border: #bdbdbd;
    --color-page-title: #fff;
}

html[data-theme="dark"] {
    /* --- ダークテーマ --- */
    --color-text: #e8e8e8;
    --color-text-light: #fff;
    --color-background: rgba(20, 20, 20, 0.75);
    --color-background-trans: rgba(41, 41, 41, 0.8);
    --color-background-glass: rgba(03, 03, 03, 0.3);
    --color-hero-overlay: rgba(0, 0, 0, 0.1);
    /*   --color-blue: #8ab4f8;*/
    --color-blue: #4285F4;
    --color-footer-bg: rgba(03, 03, 03, 0.7);
    --color-footer-text: #e8e8e8;
    --color-footer-border: rgba(255, 255, 255, 0.1);
    --color-shadow: rgba(0, 0, 0, 0.2);
    --color-shadow-light: rgba(255, 255, 255, 0.1);
    --color-shadow-strong: rgba(0, 0, 0, 0.9);
    --color-border: #3c3c3c;
    --color-page-title: #fff;
    --border-dark: 1px solid rgba(255, 255, 255, 0.15);
    --filter-map: invert(0%) grayscale(40%) brightness(0.95) contrast(90%);
}

/* =============================================
   ベーススタイル (モバイル基準)
============================================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    /* モバイル基準 */
    font-size: 16px;
    /* モバイル基準 */
}

body {
    font-family: var(--font-1);
    color: var(--color-text);
    margin: 0;
}

.wrap-all {
    overflow-x: hidden;
    opacity: 0.01;
    /* 0にしないのがコツ */
    visibility: hidden;
    transition: opacity 0.2s ease-in;
    /* 0.2秒程度にする */
}

.wrap-all.is-loaded {
    opacity: 1;
    visibility: visible;
}

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -3;
    width: 100%;
    height: 100lvh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.8);
}

.fullpage-bg-effect::after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100lvh;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-effect {
    position: relative;
}

.bg-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100vh;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

img[loading="lazy"].is-loaded {
    opacity: 1;
}

/* 改行制御 */
.hero__title,
.hero__sub-title,
.section-read,
.media__title,
.media__lead,
.lead,
.slide-gallery__item-name,
.content-body__inner h2,
.menu-item__name,
.menu-category__title,
.footer__logo,
.footer__bottom {
    word-break: keep-all;
}

.bold {
    font-weight: bold !important;
}

.small {
    font-size: 0.8em;
}

.margin-top-1em {
    margin-top: 1em !important;
}

.padding-top-1em {
    padding-top: 1em;
}

.margin-bottom-1em {
    margin-bottom: 1em !important;
}

.li-decimal li {
    list-style-type: decimal;
    margin-left: .8em;
}

.li-disc li {
    list-style-type: disc;
    margin-left: .8em;
}

.li-circle li {
    list-style-type: circle;
    margin-left: .8em;
}

.li-upper-alpha li {
    list-style-type: upper-alpha;
    margin-left: .8em;
}

/* 汎用コンテナ設定 */
.notice-wrapper,
.content-block,
.media,
.instagram {
    padding: 0 0 80px;
}

.notice,
.box_shadow,
.content-block__inner,
.media__wrapper,
.slide-gallery__item,
.content-body,
.text-menu-box,
.access-section,
.modal-content,
.policy-container__inner,
.sitemap-container__inner {
    box-shadow: 0 6px 8px var(--color-shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.notice,
.slide-gallery__item,
.content-body,
.text-menu-box,
.policy-container__inner,
.sitemap-container__inner,
.modal-content {
    border: var(--border-dark);
}

.content-block__inner,
.media__wrapper {
    border-top: var(--border-dark);
    border-bottom: var(--border-dark);
}

.price {
    display: inline-block;
    white-space: nowrap;
    margin-left: auto;
    padding-left: 1rem;
    align-self: flex-end;
}

figcaption {
    text-align: right;
    font-size: 0.8rem;
    opacity: 0.6;
    padding: 0 10px;
}

/* =============================================
   ヘッダー (モバイル基準)
============================================= */
.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
    pointer-events: none;
    display: flex;
    padding: 5px;
    box-sizing: border-box;
    height: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    background: var(--color-background-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 20px 8px 16px;
    border-radius: 2em;
    box-shadow: 0 3px 10px var(--color-shadow), 0 0 10px var(--color-shadow-light) inset;
    pointer-events: auto;
    width: 100%;
    gap: 0.2em;
    margin-left: auto;
    margin-bottom: auto;
}

.header__inner a {
    border-radius: 2em;
}

.header__logo {
    font-size: 20px;
    font-weight: 700;
    padding: 4px;
    line-height: 1;
    text-shadow: 0 0 5px var(--color-shadow-light);
}

.header__logo .cbr {
    display: none !important;
}

.header__logo span {
    font-size: 0.6em;
}

.header__nav--pc {
    display: none;
    /* モバイルでは非表示 */
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.header__hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.header__hamburger.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* モバイルナビ */
.mobile-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background-trans);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-nav-wrapper.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__logo {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2;
    word-break: keep-all;
}

.mobile-nav__logo span {
    font-size: 0.6em;
}

.mobile-nav__list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav__list li {
    margin: 30px 0;
}

.mobile-nav__list a {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.mobile-nav__info {
    font-size: 0.8em;
    font-weight: normal;
    border: 2px solid;
    border-radius: 2em;
    padding: 4px 10px;
    line-height: 1;
}

/* =============================================
   メインビジュアル (Hero) - モバイル基準
============================================= */
.hero__inner {
    width: 100%;
    min-height: 90svh;
}

.hero__content {
    box-sizing: border-box;
    width: 100%;
    color: var(--color-text-light);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0));
}

.hero__sub-title {
    font-size: 6vw;
    margin: 0 0 10px;
    font-weight: 500;
    width: fit-content;
}

.hero__title {
    z-index: 100;
    display: inline-block;
    font-family: var(--font-2);
    font-size: 13vw;
    margin: 0;
    font-weight: 700;
    line-height: 1;
    width: fit-content;
    text-rendering: optimizeSpeed;
}

.hero__title span {
    font-size: 0.5em;
    margin-top: 0;
}

.hero__info {
    font-size: 1.1rem;
    line-height: 2;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.hero__info p {
    width: fit-content;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    margin: 0 0 1em;
}

.hero__link {
    font-size: .9em;
    background: var(--color-hero-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    line-height: 1;
    padding: 6px 10px;
    border-radius: 1.5em;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
    text-shadow: none;
    width: fit-content;
}

/* =============================================
   お知らせ & モーダル
============================================= */
.notice-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.notice-inner {
    padding: 0 20px;
}

.notice {
    z-index: 10;
    min-width: 100px;
    max-width: 700px;
    text-align: left;
    font-size: 1.2rem;
    padding: 15px 20px;
    background: var(--color-background);
    border-radius: 20px;
}

.notice__title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
    letter-spacing: 2px;
    line-height: 1;
}

.notice__date {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.6;
    text-align: left;
    margin-bottom: 15px;
    padding-bottom: 1px;
    border-bottom: 1px solid var(--color-border);
}

.notice__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.notice__text a {
    color: var(--color-blue);
    text-decoration: underline;
}

/* 「過去のお知らせ」リンク */
.past-notice-link {
    text-align: right;
    margin-top: 5px;
    padding-right: 15px;
}

.past-notice-link a {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.past-notice-link a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* モーダル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    /* ヘッダーより手前に */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    display: flex;
    flex-direction: column;
    background: var(--color-background);
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.95) translateY(-10px);
    transition: transform 0.3s ease;
}

.modal-overlay.is-visible .modal-content {
    transform: scale(1) translateY(0);
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    color: var(--color-text);
    opacity: 0.6;
}

.modal-close:hover {
    opacity: 1;
}

.modal-content h2 {
    color: var(--color-text);
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

#history-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex-grow: 1;
}

#history-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

#history-list li:last-child {
    border-bottom: none;
}

#history-list .history-details {
    flex-grow: 1;
}

#history-list .history-date {
    font-size: 0.9em;
    color: var(--color-text);
    opacity: 0.5;
    margin-bottom: 8px;
    display: block;
}

#history-list .history-content {
    white-space: pre-wrap;
    word-break: break-all;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
}

.history-content a {
    text-decoration: underline;
}

/* --- 履歴モーダル（共通） --- */
.modal-content {
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    /* 画面の80%までに制限 */
    padding: 15px 15px 0;
}

/* リスト部分だけをスクロールさせる */
.history-list__container {
    overflow-y: auto;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
}

/* スクロールバーを隠す（お好みで） */
.history-list__container::-webkit-scrollbar {
    display: none;
}

#history-list {
    padding: 0 5px;
    margin: 0;
    list-style: none;
}

.history-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.history-content {
    font-size: 0.95em;
    line-height: 1.6;
    margin-top: 5px;
}

/* もっと見るボタン */
#history-loader {
    padding: 0 20px 20px;
    text-align: center;
    flex-shrink: 0;
}

#history-loader button {
    /* サイト共通のボタンデザインを適用するか、個別に指定 */
    padding: 10px 30px;
    border-radius: 2em;
    cursor: pointer;
    color: var(--color-text);
    border-color: var(--color-text);
}

/* 非表示用 */
.hidden {
    display: none !important;
}

/* =============================================
   コンテンツブロック - モバイル基準
============================================= */
.content-block__inner {
    display: flex;
    flex-direction: column;
    /* 縦並び */
    gap: 2vw;
    align-items: center;
    justify-content: center;
    padding: 2vw;
    background-color: var(--color-background);
}

.content-block__image {
    width: 100%;
    height: 54vw;
    border-radius: 8px;
    overflow: hidden;
}

.content-block__text {
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 50px;
    box-sizing: border-box;
}

.section-title {
    font-size: 30px;
    letter-spacing: 0.2em;
    margin: 20px 0 0;
    font-weight: 700;
}

.section-read {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 400px;
    margin: 20px 0 0;
    opacity: 0.7;
}

.btn {
    display: inline-block;
    background-color: var(--color-blue);
    color: var(--color-text-light);
    padding: 8px 30px;
    border: 2px solid var(--color-blue);
    border-radius: 50px;
    font-weight: 700;
    /*box-shadow: 0 4px 15px var(--color-blue);*/
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 30px;
}

.btn:hover {
    background-color: var(--color-background);
    color: var(--color-blue);
    transition: color 0.2s, background-color 0.2s;
    margin-top: 30px;
}

/* =============================================
   ギャラリー - モバイル基準
============================================= */

.media__wrapper {
    background-color: var(--color-background);
}

.media__content {
    margin: 0 auto;
    display: flow-root;
}

.media__image {
    width: 100%;
    margin: 0;
}

.media__text {
    padding: 2rem 5vw 0;
}

.media__title {
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin: 0;
    line-height: 1.3;
}

.media__lead {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.6;
    margin: 1rem 0 30px !important;
}

.media__gallery {
    padding: 30px 0;
}

.gallery-title {
    opacity: 0.4;
    text-align: center;
    margin: 0;
}

.gallery-list__title {
    font-size: 1.1rem;
    padding: 0 8.5vw;
    margin: 1rem 0 0;
}

.media__gallery-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
}

.media__gallery-container::-webkit-scrollbar {
    display: none;
}

.media__gallery-list {
    display: flex;
    gap: 5vw;
    padding: 10px 12vw;
    width: max-content;
}

.media__gallery-item,
.media__gallery-item--vertical {
    width: 76vw;
    flex-shrink: 0;
}

.media__gallery-item--vertical {
    width: 76vw;
}

.media__gallery-frame {
    width: 76vw;
    height: 57vw;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 7px var(--color-shadow);
}

.media__gallery-frame--vertical {
    width: 76vw;
    height: 101.33vw;
}

.media__gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.media__gallery-caption {
    font-size: 0.9em;
    margin: 0.5em 0 0;
    opacity: 0.8;
}

.media__gallery-info {
    text-align: center;
    padding: 0 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 0;
    opacity: 0.8;
}

.media__gallery-info a {
    text-decoration: underline;
}


/* =============================================
   Instagram セクション
============================================= */
.instagram h2 {
    color: var(--color-page-title);
    text-align: center;
    text-shadow: 0 2px 10px var(--color-shadow-strong);
    margin-top: 0;
    opacity: .6;
}

/* ウィジェットを囲む枠（少し高級感を出す） */
.instagram-widget-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* =============================================
   アクセス - モバイル基準
============================================= */
.access-section {
    padding-bottom: 30px;
    background-color: var(--color-background);
    text-align: center;
}

.access-section__inner {
    width: 100%;
    height: 60vh;
    min-height: 300px;
}

.access-section p {
    max-width: 800px;
    opacity: 0.8;
    padding-left: 20px;
    padding-right: 20px;
    margin: 20px auto 0;
}

.access-section .btn {
    margin-bottom: 40px;
}

.access-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    margin-bottom: 10px;
}

.map {
    filter: var(--filter-map);
}

/* =============================================
   フッター
============================================= */
.footer {
    background-color: var(--color-footer-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--color-footer-text);
    padding: 60px 10px 10px;
    border-top: var(--border-dark);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    /* 縦並び */
    gap: 60px;
    margin: 0 auto 60px;
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.footer__logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.footer__logo .cbr {
    display: inline;
}

.footer__logo span {
    font-size: 0.5em;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer__nav li {
    list-style: none;
}

.footer__nav a {
    font-size: 1.3rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    margin-bottom: 0.3rem;
}

.footer__nav a:hover {
    opacity: 1;
}

.footer__right {
    width: fit-content;
    margin: auto;
}

.footer__info {
    opacity: 0.8;
}

.footer__info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    font-size: 17px;
}

.footer__info li:last-child {
    margin-bottom: 0;
}

.calendar {
    max-width: 500px;
    margin: 1px auto 40px;
}

.calendar-title {
    font-size: 1.3rem;
    opacity: 0.6;
    text-align: center;
    margin-top: 80px;
}

.calendar iframe {
    border-radius: 20px;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 0;
    margin: 0 auto;
    font-size: 12px;
}

/* 1. LINEボタンがある場合、全体を左に寄せる */
.footer__bottom.has-floating-line {
    align-items: flex-start;
    padding-right: 74px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

/* 2. LINEボタンがある場合、リンクを縦並びにする */
.footer__bottom.has-floating-line .footer__sub-links {
    flex-direction: column;
    align-items: flex-start;
}

/* 3. LINEボタンがある場合、セパレーター（｜）を消す */
.footer__bottom.has-floating-line .footer__sep {
    display: none;
}

/* ついでに：コピーライトの行も左に揃うように */
.footer__bottom.has-floating-line .footer__copyright {
    text-align: left;
}

.footer__sub-nav {
    display: flex;
    gap: 30px;
    text-align: center;
}

.footer__sub-nav a,
.footer__sub-links a,
.footer__bottom-sep {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer__sub-nav a:hover,
.footer__sub-links a:hover {
    opacity: 1;
}

.protected-tel a {
    text-decoration: underline;
}

.footer__copyright {
    padding: 0;
    margin: 0;
    border-top: none;
}

.footer__copyright p {
    margin: 0;
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    /* スマホでは縦に並べる */
    align-items: center;
    /* 中央揃え */
    gap: 10px;
    /* 段の間の隙間 */
    padding: 20px 0;
    font-size: 11px;
    /* 全体的に小さめに */
}

.c-mark {
    font-family: Arial;
    font-size: 1.1em;
}

.footer__sub-links {
    display: flex;
    align-items: center;
    gap: 8px;
    /* ポリシーとbyの間の隙間 */
}

/* PCなど広い画面では1行にしたい場合（お好みで） */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        /* 横一列に戻す */
        justify-content: center;
        /* 中央に寄せる */
    }
}

/* =============================================
   フッターアイコン
============================================= */
.footer-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--color-footer-text);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    vertical-align: top;
    margin-top: 0.25rem;
}

.icon-map-marker {
    -webkit-mask-image: url('https://api.iconify.design/mdi/map-marker-outline.svg');
    mask-image: url('https://api.iconify.design/mdi/map-marker-outline.svg');
}

.icon-clock {
    -webkit-mask-image: url('https://api.iconify.design/mdi/clock-outline.svg');
    mask-image: url('https://api.iconify.design/mdi/clock-outline.svg');
}

.icon-calendar {
    -webkit-mask-image: url('https://api.iconify.design/mdi/calendar-blank-outline.svg');
    mask-image: url('https://api.iconify.design/mdi/calendar-blank-outline.svg');
}

.icon-phone {
    -webkit-mask-image: url('https://api.iconify.design/mdi/phone-outline.svg');
    mask-image: url('https://api.iconify.design/mdi/phone-outline.svg');
}

/* --- 新しく追加するSNSアイコンの定義 --- */
.icon-line {
    -webkit-mask-image: url('https://api.iconify.design/ri/line-line.svg');
    mask-image: url('https://api.iconify.design/ri/line-line.svg');
}

/* Instagramアイコン (mdi/instagram) */
.icon-instagram {
    -webkit-mask-image: url('https://api.iconify.design/mdi/instagram.svg');
    mask-image: url('https://api.iconify.design/mdi/instagram.svg');
}

/* X (旧Twitter) アイコン (ri/twitter-x-line) 
   ※既存のoutline系アイコンに合わせて、少し細めのXロゴを選んでいます */
.icon-x {
    -webkit-mask-image: url('https://api.iconify.design/ri/twitter-x-line.svg');
    mask-image: url('https://api.iconify.design/ri/twitter-x-line.svg');
}


/* --- リンク（aタグ）の見た目を整える --- */
.footer-link-item {
    color: inherit;
    /* 文字色を親要素（フッターの文字色）と同じにする */
    text-decoration: none;
    /* リンクの下線を消す */
    display: inline-flex;
    /* アイコンと文字を横並びにする */
    align-items: flex-start;
    /* 上揃え（既存のアイコン位置に合わせるため） */
    gap: 15px;
}

/* リンクにカーソルを乗せた時の動き（任意） */
.footer-link-item:hover {
    opacity: 0.7;
}

/* =============================================
   LINE固定ボタンのスタイル
============================================= */
.floating-line-btn {
    position: fixed;
    /* 画面に固定 */
    bottom: 20px;
    /* 下から20px */
    right: 20px;
    /* 右から20px */
    z-index: 9999;
    /* 他の要素より手前に表示 */

    width: 64px;
    /* ボタンの幅 */
    height: 64px;
    /* ボタンの高さ */
    background-color: #06C755;
    /* LINE公式カラー(緑) */
    color: #fff;
    /* 文字色 */
    border-radius: 50%;
    /* まん丸にする */
    text-decoration: none;
    /* 下線を消す */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* 影をつけて浮かせる */

    /* 中身を中央揃えにする設定 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* ふわふわさせるアニメーション設定 */
    animation: floating 2s ease-in-out infinite;
}

/* 中の文字サイズ調整 */
.floating-line-btn span {
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.floating-line-btn .line-text {
    font-size: 9px;
    margin-top: 3px;
}

/* ホバー時（タップ時）に少し凹ませる */
.floating-line-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* フワフワ動くアニメーションの定義 */
@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    /* 5px上に浮く */
    100% {
        transform: translateY(0);
    }
}

/* 【PCでは非表示にしたい場合】
@media screen and (min-width: 768px) {
    .floating-line-btn {
        display: none;
    }
} */

/* =============================================
   Subページ - モバイル基準
============================================= */
.page-main {
    padding: 50px 0 0;
    position: relative;
}

.page-main__inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.page-header {
    padding: 0 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-title {
    font-family: var(--font-1);
    font-size: 2rem;
    text-align: center;
    color: var(--color-page-title);
    margin: 30px 0 20px;
    font-weight: 700;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 1);
}

.page-header .lead {
    color: var(--color-page-title);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 50px;
    text-shadow: 0 1px 8px var(--color-shadow-strong);
}

.slide-gallery-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    margin: 0 auto;
}

.slide-gallery-container::-webkit-scrollbar {
    display: none;
}

.slide-gallery {
    display: flex;
    gap: 5vw;
    padding: 0 12vw;
    width: max-content;
    margin-bottom: 80px;
}

.slide-gallery__item {
    width: 76vw;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: var(--color-background);
    border: var(--border-dark)
}

.slide-gallery__frame {
    width: 76vw;
    height: 57vw;
    overflow: hidden;
    position: relative;
}

.slide-gallery__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.slide-gallery__item p {
    margin: 10px 1em;
    opacity: 0.8;
}

.slide-gallery__item a {
    text-decoration: underline;
}

.slide-gallery__item-name {
    font-weight: 700;
    text-align: right;
    margin: 10px 1em;
    opacity: 1 !important;
    line-height: 1.3;
}

.slide-gallery__caption {
    font-size: 0.9rem;
    text-align: right;
}

.page-content {
    margin-bottom: 60px;
    padding: 0 10px;
}

.content-body {
    max-width: 700px;
    box-sizing: border-box;
    background-color: var(--color-background);
    border-radius: 10px;
    padding: 0;
    margin: 0 auto 80px;
}

.content-body__inner {
    padding: 0 30px 20px;
}

.content-body__inner a {
    text-decoration: underline;
}

.content-image__main {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    border-radius: 10px 10px 0 0;
}

.content-image__main img {
    border-radius: 10px 10px 0 0;
}

.content-image__inline {
    margin: 40px 0 30px;
}

.content-image__inline img {
    border-radius: 10px;
}

.content-image__inline figcaption {
    padding: 0;
}

.text-menu-box {
    width: auto;
    padding: 5px 30px;
    border-radius: 10px;
    background-color: var(--color-background);
}

.text-menu-box__title {
    font-family: var(--font-1);
    font-size: 28px;
    text-align: center;
    margin: 20px 0 0;
    font-weight: 400;
}

.text-menu-box__inner {
    display: block;
}

.menu-category {
    width: 100%;
    margin: 0 auto;
}

.menu-category__title {
    font-size: 1.6rem;
    opacity: 0.4;
    margin-top: 30px;
    margin-bottom: -0;
}

.menu-category__caption {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}


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

.menu-item {
    display: flex;
    align-items: flex-end;
    font-size: 1.1em;
    line-height: 1.3;
    padding: 1.3rem 0 .3em;
    border-bottom: 1px dotted #ccc;
}

.menu-item--column {
    flex-direction: column;
    align-items: flex-start;
}

.menu-item__price {
    margin-left: auto;
}

.menu-category li:last-child {
    margin-bottom: 3rem;
}

html[data-theme="dark"] .menu-item {
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-item__sub-list {
    opacity: 0.7;
    font-size: 0.9em;
    font-weight: normal;
    line-height: 1.3;
    margin-top: 0.7em;
    border-bottom: none;
    margin-bottom: 0;
    word-break: normal;
    margin-left: .5em;
}

.menu-item__sub-list li,
.menu-item__sub-list li:last-child {
    margin-bottom: 0.7em;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-notes {
    color: var(--color-text-light);
    text-align: center;
    opacity: 0.9;
    font-size: 0.9rem;
    padding: 0 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* =============================================
   記事ページ用スタイル
============================================= */
.page-article main {
    background-color: var(--color-background);
    padding-top: 40px;
    padding-bottom: 40px;
}

.policy-container,
.sitemap-container {
    margin: 60px auto 40px;
    padding: 0 10px;

}

.policy-container__inner,
.sitemap-container__inner {
    max-width: 650px;
    padding: 24px 30px 20px;
    margin: 0 auto;
    line-height: 1.6;
    box-sizing: border-box;
    overflow-wrap: break-word;
    background-color: var(--color-background);
    border-radius: 10px;
}


.sitemap-container__inner {
    padding-bottom: 30px;
}

.policy-container h1,
.sitemap-container h1 {
    font-size: 1.3rem;
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.policy-container h2,
.policy-listmark li::marker,
.sitemap-container h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.policy-listmark {
    padding-inline-start: 1.5rem;
}

.policy-container p,
.policy-container ul,
.sitemap-container p,
.sitemap-container ul {
    margin-bottom: 15px;
}

.sitemap-container {
    max-width: 500px;
    padding: 20px 40px;
}

.sitemap-container h1 {
    margin-bottom: 30px;
}

.sitemap-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-container ul,
.sitemap-container ul {
    list-style: disc;
    padding-left: 20px;
}

.policy-container li {
    margin-bottom: 0.7rem;
}

.policy-contact {
    line-height: 1.3;
}

.policy-contact__row {
    display: flex;
    align-items: flex-start;
    margin: 0 0 10px 0;
}

.policy-contact__label {
    flex-shrink: 0;
    width: 4em;
}

.policy-contact__value {
    flex-grow: 1;
    margin: 0;
}

.text-right {
    text-align: right;
    word-break: keep-all;
    padding-top: 1rem;
}

.sitemap-container a {
    text-decoration: underline;
}


/* =============================================
   まとめてiPhone対策（レンダリングの安定化）
============================================= */
/* ボカシを使っている全ての要素に対して */
.notice,
.content-block__inner,
.media-gallery__wrapper,
.text-menu-box,
.access-section,
.slide-gallery__item,
.modal-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* これを追加：スクロール中の再描画を抑える */
    will-change: backdrop-filter, transform;
}

/* =============================================
   タブレット・PC向け設定 (769px以上)
============================================= */
@media (min-width: 769px) {
    html {
        scroll-padding-top: 80px;
    }

    h2 {
        font-size: 2rem;
    }

    .cbr {
        display: none;
    }

    /* Hero */
    .hero__sub-title {
        font-size: 2.5vw;
    }

    .hero__title {
        font-size: 10vw;
    }

    .hero__content {
        padding: 80px 5vw 0;
    }

    .hero__info {
        margin-top: 60px;
    }

    .notice {
        font-size: 1rem;
        padding: 24px 30px;
    }

    .media__text {
        box-sizing: border-box;
        padding-top: 3rem;
    }

    .media__gallery {
        padding: 40px 0;
    }

    .media__gallery-list {
        padding: 10px 8.5vw;
        gap: 3vw;
    }

    .media__gallery-item {
        width: 34.67vw;
    }

    .media__gallery-item--vertical {
        width: 26vw;
    }

    .media__gallery-frame {
        width: 34.67vw;
        height: 26vw;
    }

    .media__gallery-frame--vertical {
        width: 26vw;
        height: 34.67vw;
    }

    .page-header {
        margin-bottom: 70px;
    }

    .page-title {
        font-size: 2.8rem;
        margin: 60px 0;
    }

    .page-header .lead {
        color: var(--color-page-title);
        font-size: 1.3rem;
        font-weight: 500;
        line-height: 1.5;
        margin-top: -20px;
        text-shadow: 0 1px 8px var(--color-shadow-strong);
    }

    .slide-gallery-container {
        padding-bottom: 20px;
    }

    /* おしながき */
    .slide-gallery {
        padding: 0 10vw;
        gap: 30px;
    }

    .slide-gallery__item {
        width: 40vw;
    }

    .slide-gallery__frame {
        width: 40vw;
        height: 30vw;
    }

    .page-content {
        margin-bottom: 100px;
        padding: 0 7vw;
    }

    .content-body__inner {
        padding: 0 60px 40px;
    }

    .text-menu-box__inner {
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
    }

    .text-menu-box {
        width: fit-content;
        margin: 0 auto;
        padding: 1px 60px 20px;
    }

    .text-menu-box__title {
        margin: 40px 0;
    }

    .text-menu-box__inner {
        max-width: 1400px;
        width: fit-content;
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
    }

    .menu-category {
        width: 400px;
    }

    .menu-category__title {
        margin-top: 40px;
    }

    .menu-item {
        font-size: 1rem;
    }

    /* フッター */
    .footer {
        padding: 60px 40px 10px;
    }

    .footer__inner {
        flex-direction: row;
        justify-content: center;
        gap: 80px;
        text-align: left;
    }

    .footer__left {
        align-items: flex-end;
    }

    .footer__logo {
        text-align: right;
        font-size: 1.4rem;
    }

    .footer__nav {
        align-items: flex-end;
        gap: 10px;
    }

    .footer__nav a {
        font-size: 1rem;
    }

    .footer__right {
        margin: 0;
    }

    .footer__info li {
        font-size: 0.9rem;
    }

    .footer__bottom {
        flex-direction: row;
        margin: 0 auto;
        gap: 30px;
    }

    /* 1. LINEボタンがある場合、全体を左に寄せる */
    .footer__bottom.has-floating-line {
        align-items: center;
        padding-right: 10px;
        padding-bottom: 0;
    }

    /* 2. LINEボタンがある場合、リンクを縦並びにする */
    .footer__bottom.has-floating-line .footer__sub-links {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    /* 3. LINEボタンがある場合、セパレーター（｜）を消す */
    .footer__bottom.has-floating-line .footer__sep {
        display: inline;
    }

    .policy-container__inner,
    .sitemap-container__inner {
        padding: 32px 40px 30px;
    }
}

/* =============================================
   大型デスクトップ向け設定 (1025px以上)
============================================= */
@media (min-width: 1025px) {
    .header {
        padding: 1vh 1vw;
    }

    .header__inner {
        width: auto;
        padding: 7px;
        margin-left: auto;
    }

    .header__logo {
        padding: 8px 12px;
    }

    .header__logo span {
        font-size: 0.9rem;
    }

    .header__hamburger {
        display: none;
    }

    .header__nav--pc {
        display: inline-block;
        font-size: 16px;
        padding-right: 2px;
        text-shadow: 0 0 5px var(--color-shadow-light);
    }

    .header__nav--pc ul {
        display: flex;
        gap: .2em;
        align-items: center;
    }

    .header__nav--pc a {
        padding: 8px 12px;
        opacity: 0.6;
        transition: 0.3s;
    }

    .header__nav--pc a:hover,
    .header__inner a:hover {
        /* background-color: var(--color-background-trans); */
        opacity: 1;
        transition: background-color 0.3s, box-shadow 0.3s, opacity 0.3s;
    }

    .hero__sub-title {
        font-size: 2.5vw;
        margin: 0 0 1rem;
    }

    /* コンテンツブロック */
    .content-block__inner {
        flex-direction: row;
        /* 横並び */
        gap: 1vw;
        padding: 1vw;
        margin: 0 auto;
    }

    .content-block--reverse .content-block__inner {
        flex-direction: row-reverse;
    }

    .content-block__image {
        flex: 55vw;
        height: 30.94vw;
    }

    .content-block__text {
        flex: 42vw;
        margin-bottom: 0;
    }

    .section-title {
        font-size: 2.1rem;
        margin: 0 0 20px;
    }

    .section-read {
        margin: 0 auto;
    }

    /* ギャラリー */
    .media__image {
        float: right;
        width: 70%;
        margin: 0 0 1rem 2rem;
    }

    .access-section {
        padding-bottom: 40px;
    }

    .page-main {
        padding: 60px 0 0;
    }

    .footer__inner {
        gap: 120px;
    }

    .policy-container,
    .sitemap-container {
        margin: 100px auto 60px;
    }

    .policy-container h1,
    .sitemap-container h1 {
        font-size: 1.5rem;
    }

    .policy-listmark {
        padding-inline-start: 1.7rem;
    }
}