/* =============================================
   基本設定 & テーマ
============================================= */
: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.55);
    --color-hero-overlay: rgba(0, 0, 0, 0.2);
    --color-blue: #4285F4;
    --color-footer-bg: rgba(255, 255, 255, 0.8);
    --color-footer-text: #333;
    --color-footer-border: rgba(0, 0, 0, 0.1);
    --color-shadow: rgba(0, 0, 0, 0.3);
    --color-shadow-light: rgba(255, 255, 255, 0.4);
    --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.2);
    /*   --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.5);
    --color-shadow-light: rgba(255, 255, 255, 0.2);
    --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(70%) brightness(0.8) contrast(90%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 18px;
}

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

.wrap-all {
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.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: 100vh;
    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.8rem;
}

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

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

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

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

/* リンクのアンダーラインの設定 */
.slide-gallery__item a {
    text-decoration: underline;
}

/*
 * loading="lazy" を持つ画像は、最初は透明にしておく
 * transitionで、opacityの変化が0.4秒かけて行われるように設定
 */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/*
 * is-loaded というクラスが付与されたら、透明度を1にして表示する
 */
img[loading="lazy"].is-loaded {
    opacity: 1;
}

/* <wbr> で任意に改行 */
.hero__title,
.hero__sub-title,
.section-read,
.about__title,
.about__lead,
.lead,
.content-body__inner h2,
.footer__logo,
.footer__bottom {
    word-break: keep-all;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 0.8em;
}

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

.li-decimal li {
    list-style-type: decimal;
}

.li-disc li {
    list-style-type: disc;
}

.li-circle li {
    list-style-type: circle;
}

.li-upper-alpha li {
    list-style-type: upper-alpha;
}

.content-block,
.about {
    padding: 0 0 6vw;
}

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

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

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

.price {
    display: inline-block;
    white-space: nowrap;
    margin-left: 1rem;
}

/* =============================================
   ヘッダー
============================================= */
.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
    pointer-events: none;
    display: flex;
    padding: 1vh 1vw;
    box-sizing: border-box;
    height: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-background-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 7px;
    border-radius: 6px;
    box-shadow: 0 3px 10px var(--color-shadow), 0 0 10px var(--color-shadow-light) inset;
    pointer-events: auto;
    max-width: 100%;
}

.header__logo,
.header__nav--pc {
    text-shadow: 0 0 5px var(--color-shadow-light);
}

.header__hamburger span {
    box-shadow: 0 0 5px var(--color-shadow-light);
    background-color: var(--color-text);
}

.header__logo {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 3px 10px;
}

.header__logo span {
    font-size: 0.9rem;

}

.header__nav--pc {
    display: inline-block;
    margin: 0 0 0 .2em;
}

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

.header__nav--pc a {
    display: inline-block;
    font-family: var(--font-1);
    font-weight: 500;
    line-height: 1;
    padding: 10px;
    transition: color 0.3s;
}

.header__nav--pc a:hover,
.header__inner a:hover {
    /*color: var(--color-blue);*/
    background-color: var(--color-background-trans);
    border-radius: 6px;
    /*box-shadow: 0 0 8px var(--color-shadow-light) inset, 0 0 3px var(--color-shadow-light);*/
    transition: background-color 0.3s, box-shadow 0.3s;
}

.header__hamburger {
    display: none;
}

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

/* =============================================
   ヘッダーの位置
   デフォルトは左上
   他の位置は custom.css で制御
============================================= */

/* 上・左 */
.header__inner {
    margin-bottom: auto;
    margin-left: auto;
}


/* =============================================
   モバイル用ナビゲーション
============================================= */
.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.2em;
    font-weight: 700;
    line-height: 1.2;
}

.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.9em;
    font-weight: normal;
}

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

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

.hero__sub-title {
    font-size: 2.5vw;
    margin: 0 0 1rem;
    font-weight: 500;
    width: fit-content;
}

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

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

.cbr {
    display: none;
}

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

.hero__info p {
    width: fit-content;
    display: inline-block;
    line-height: 1;
    background: var(--color-hero-overlay);
    padding: 6px 8px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    margin: 0 0 1em;
}

.hero__info a:hover {
    text-decoration: underline;
}

/* =============================================
   お知らせ
============================================= */
.notice-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 4vh;
}

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

.notice {
    z-index: 10;
    min-width: 100px;
    max-width: 700px;
    text-align: left;
    background: var(--color-background);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 24px 30px;
}

.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 {
    font-size: 14px;
    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: 1px;
    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: 2rem 5px;
    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: 1em;
    line-height: 1.7;
    color: var(--color-text);
}

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

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

/* =============================================
   コンテンツブロック
============================================= */
.content-block__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-background);
    padding: 10px;
    margin: 0 auto;
}

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

.content-block__text {
    flex: 45%;
    text-align: center;
    padding: 0 2rem;
    box-sizing: border-box;
}

.content-block__image {
    flex: 55%;
    border-radius: 8px;
    height: 35vw;
    overflow: hidden;
}

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

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

.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;
}

/* =============================================
   ギャラリー
============================================= */

.about__content {
    display: flex;
    align-items: start;
    background-color: var(--color-background);
    margin: 0 auto;
}

.about__image {
    flex-basis: 70%;
    margin: 0;
}

.about__text {
    flex-basis: 30%;
    box-sizing: border-box;
    padding: 5vw;
    text-align: left;
}

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

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

.about__text p {
    margin: 0;
}

.about__gallery {
    padding: 40px 0;
    background-color: var(--color-background);
}

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

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

.about__gallery-list {
    display: flex;
    gap: 3vw;
    padding: 10px 8.5vw;
    width: max-content;
}

.about__gallery-item {
    width: 40vw;
    flex-shrink: 0;
}

.about__gallery-frame {
    width: 40vw;
    height: 30vw;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 7px var(--color-shadow);
    border-radius: 10px;
}

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

.about__gallery-caption {
    margin: 0.5em 0 0;
    opacity: 0.8;
}

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

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

/* =============================================
   アクセス (マップ)
============================================= */
.access-section {
    padding-bottom: 40px;
    background-color: var(--color-background);
    text-align: center;
}

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

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

.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(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--color-footer-text);
    padding: 60px 40px 10px;
    border-top: var(--border-dark)
}

.footer__inner {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 50px;
    gap: 80px;
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer__logo {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: right;
    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: flex-end;
    gap: 10px;
}

.footer__nav li {
    list-style: none;
}

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

.footer__nav a:hover {
    opacity: 1;
}

.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;
}

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

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
    font-size: 0.8rem;
}

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

.footer__sub-nav a {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer__sub-nav 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-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');
}

/* =============================================
   おしながき・お飲みものページ
============================================= */
.page-main {
    padding: 60px 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: 70px;
}

.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);
}

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

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


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

.slide-gallery {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 10vw;
}

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

.slide-gallery__frame {
    width: 500px;
    height: 375px;
    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-name {
    font-weight: 700;
    text-align: right;
    margin: 10px 1em;
    opacity: 1 !important;
    line-height: 1.3;
}

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

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

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

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

.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;
}

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

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

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

.content-image__inline figcaption {
    padding: 0;
}

.text-menu-box {
    width: fit-content;
    margin: 0 auto;
    padding: 1px 60px 20px;
    border-radius: 10px;
    background-color: var(--color-background);
}

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

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

.menu-category {
    width: 400px;
    margin: 0 auto;
}

.menu-category__title {
    font-size: 1.6rem;
    opacity: 0.4;
    margin-top: 40px;
    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;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1rem;
    line-height: 1.3;
    padding: 1.3rem 0 3px;
    border-bottom: 1px dotted #ccc;
}

.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-left: 1.3em;
    margin-bottom: 0;
}

.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: 100px auto 60px;
    padding: 0 10px;

}

.policy-container__inner,
.sitemap-container__inner {
    max-width: 700px;
    padding: 20px 40px 10px;
    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.5rem;
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.policy-container h2,
.sitemap-container h2 {
    font-size: 1.3rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.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 {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

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


/* =============================================
   レスポンシブ対応 (1000px以下のスクリーン)
============================================= */
@media (max-width: 1000px) {
    html {
        scroll-padding-top: 60px;
    }

    .header {
        padding: 5px;
    }

    .header__inner {
        width: 100%;
        padding: 3px 20px 4px 10px;
        border-radius: 6px;
    }

    .header__logo {
        font-size: 1.2em;
        padding: 2px 10px;
        margin: 0;
    }

    .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);
    }

    .about__content {
        flex-direction: column-reverse;
    }

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

    .footer__inner {
        gap: 60px;
    }
}

/* =============================================
   レスポンシブ対応 (768px以下のスクリーン)
============================================= */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .main-text {
        font-size: 1rem;
    }

    .hero__content {
        padding: 80px 20px 20px;
    }

    .hero__sub-title {
        font-size: 6vw;
        margin-bottom: 10px;
    }

    .hero__title {
        font-size: 13vw;
    }

    .cbr {
        display: inline;
    }

    .hero__info {
        font-size: 1.1rem;
        margin-top: 30px;
    }

    .hero__info p {
        padding: 1px 6px 4px;
    }

    .notice-wrapper {
        padding-bottom: 6vh;
    }

    .notice {
        padding: 15px 20px;
        font-size: 1.2rem;
    }

    /*---- 【ボックスの共通パディング】 ----*/
    .content-block,
    .about {
        padding: 0 0 7vh;
    }

    .content-block__inner,
    .content-block--reverse .content-block__inner {
        flex-direction: column;
        gap: 10px;
    }

    .content-block__image {
        width: 100%;
        flex: auto;
        height: 60vw;
    }

    .content-block__inner.about {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .content-block__text {
        margin-bottom: 50px
    }

    .section-title {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .section-read {
        margin-top: 20px;
    }

    .about__title {
        font-size: 1.7rem;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .about__gallery {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about__gallery-container {
        padding: 0;
    }

    .about__gallery-list {
        padding: 10px 12vw;
        gap: 5vw;
    }

    .about__gallery-item {
        width: 76vw;
    }

    .about__gallery-frame,
    .slide-gallery__frame img {
        width: 76vw;
        height: 57vw;
    }

    .about__gallery-info {
        padding: 10px 0 0;
        margin: 0 20px;
    }

    .text-menu-box__title {
        margin-top: 20px;
        margin-bottom: 0;
    }

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

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

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

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

    .page-title {
        font-size: 2rem;
        margin: 30px 0 20px;
    }

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

    .slide-gallery {
        padding: 0 12vw;
        gap: 5vw;
    }

    .slide-gallery__item {
        width: 76vw;
    }

    .slide-gallery__frame {
        width: 76vw;
        height: 57vw;
    }

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

    .page-header .lead {
        font-size: 1.1rem;
        margin-top: 30px;
        margin-bottom: 50px;
    }

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

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

    }

    .content-image__inline {
        margin-left: 0;
        margin-right: 0;
    }

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

    .policy-container,
    .sitemap-container {
        margin-top: 60px;
        margin-bottom: 40px;
        font-size: 15px;
    }

    .policy-container h1,
    .sitemap-container h1 {
        font-size: 20px;
    }

    .policy-container h2,
    .sitemap-container h2 {
        font-size: 18px;
    }

    .footer {
        padding: 60px 20px 10px;
    }

    .footer__info li {
        justify-content: flex-start;
        text-align: left;
        font-size: 17px;
    }

    .footer__bottom {
        flex-direction: column;
        /* 縦並びに変更 */
        gap: 15px;
        /* 隙間を調整 */
        margin-top: 20px;
    }
}

/* =============================================
   レスポンシブ対応 (600px以下のスクリーン)
============================================= */
@media (max-width: 600px) {

    .text-menu-box {
        width: auto;
        padding: 5px 30px;
    }

    .menu-category {
        width: 100%;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__left {
        align-items: center;
    }

    .footer__logo {
        text-align: center;
        font-size: 2rem;
    }

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

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

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