/* ========================================
   リセット・ベース
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 40px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
    background-color: rgba(248, 244, 238, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Google翻訳後のヘッダー位置調整 */
html[class*="translated"] .header {
    top: 50px;
}

/* ページトップへ戻る */
.pagetop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 99;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pagetop:hover {
    opacity: 0.8;
}

.header__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.header__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* ロゴ */
.header__logo img {
    height: 32px;
    width: auto;
}

/* 表示切り替え */
.is-sp-only {
    display: none;
}

/* ナビゲーション */
.header__nav {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.header__nav-list {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.header__nav-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.header__nav-list li .line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    flex-shrink: 0;
}

.header__nav-list li a {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.15em;
    transition: opacity 0.3s;
}

.header__nav-list li a:hover {
    opacity: 0.7;
}

/* スクロール時横書きナビ */
.header__nav--default {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__nav--scroll {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header__nav-scroll-list {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.header__nav-scroll-list a {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.header__nav-scroll-list a:hover {
    opacity: 0.7;
}

/* スクロール時のヘッダー切り替え */
.header.is-scrolled .header__nav--default {
    opacity: 0;
    visibility: hidden;
}

.header.is-scrolled .header__nav--scroll {
    opacity: 1;
    visibility: visible;
}

/* 右側ボタン群 */
.header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__lang {
    display: inline-block;
    padding: 6px 16px;
    border: 1.5px solid #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.3s, color 0.3s;
}

.header__lang:hover {
    background: #1a1a1a;
    color: #fff;
}

/* 言語ボタン - CSSのみで翻訳状態に応じて ENGLISH / 日本語 を切り替え */
.header__lang,
.mobile-menu__lang {
    font-size: 0; /* 元のテキストを隠す */
    white-space: nowrap;
}

.header__lang::before,
.mobile-menu__lang::before {
    content: 'ENGLISH';
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Google翻訳後（英語ページ時）は日本語に変更 */
html[lang="en"] .header__lang::before,
html[lang="en"] .mobile-menu__lang::before,
html.translated-ltr .header__lang::before,
html.translated-ltr .mobile-menu__lang::before {
    content: '日本語';
}
.header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 2;
}

/* CAMPFIREバナー */
.hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px 40px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero__banner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 50px;
    padding: 14px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero__banner-icon {
    flex-shrink: 0;
}

.hero__banner-icon img {
    height: 22px;
    width: auto;
    display: block;
}

.hero__banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__banner-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.hero__banner-sub {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
}

.hero__banner-arrow {
    font-size: 22px;
    color: #1a1a1a;
    margin-left: 8px;
    line-height: 1;
}

/* 営業時間 */
.hero__info {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding: 0 20px 32px;
}

.hero__info-inner {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.08em;
}

.hero__info-main {
    font-size: 15px;
    color: #1a1a1a;
    border-right: 1px solid #1a1a1a;
    padding-right: 24px;
}

.hero__info-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.hero__info-place,
.hero__info-holiday {
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ========================================
   モバイルメニュー
======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.mobile-menu__close span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    position: absolute;
}

.mobile-menu__close span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu__close span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu__list li a {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

.mobile-menu__list li a:hover {
    opacity: 0.6;
}

.mobile-menu__lang {
    display: inline-block;
    margin-top: 40px;
    padding: 6px 16px;
    border: 1.5px solid #1a1a1a;
    font-weight: 600;
    color: #1a1a1a;
}

/* ハンバーガー開閉アニメーション */
.header__menu.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__menu.is-open span:nth-child(2) {
    opacity: 0;
}

.header__menu.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   お知らせセクション
======================================== */
.news {
    background: #f8f6f2;
    padding: 32px 40px 40px;
}

.news__inner {
    max-width: 800px;
    margin: 0 auto;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.news__title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
}

.news__more {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news__more .arrow {
    font-size: 16px;
}

.news__list {
    border-top: 1px solid #ddd;
}

.news__item {
    border-bottom: 1px solid #ddd;
}

.news__item a {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
    font-size: 14px;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

.news__item a:hover {
    opacity: 0.6;
}

.news__date {
    color: #666;
    font-size: 13px;
    white-space: nowrap;
    min-width: 80px;
}

.news__tag {
    display: inline-block;
    padding: 2px 8px;
    background: #e8e4df;
    font-size: 11px;
    color: #555;
    white-space: nowrap;
}

.news__tag--event {
    background: #dbeafe;
    color: #2563eb;
}

/* トップページのみタグ・矢印非表示 */
.news .news__tag,
.news .news__arrow {
    display: none;
}

.news__text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.news__arrow {
    color: #999;
    font-size: 16px;
}

.news__btn {
    display: none;
}

/* ========================================
   ページヘッダー（下層ページ共通）
======================================== */
.page-header {
    background: #f8f4ee;
    padding: 120px 40px 60px;
    text-align: center;
}

.page-header__inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-header__title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.page-header__subtitle {
    font-size: 14px;
    color: #8b7355;
    letter-spacing: 0.15em;
}

/* ========================================
   お知らせ一覧ページ
======================================== */
.news-archive {
    background: #fff;
    padding: 40px 40px 80px;
}

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

/* 年タブ */
.news-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.news-tab {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.news-tab.is-active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* 年パネル */
.news-panel {
    display: none;
}

.news-panel.is-active {
    display: block;
}

/* アコーディオン */
.news-accordion {
    border-bottom: 1px solid #eee;
}

.news-accordion__header {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

.news-accordion__header:hover {
    opacity: 0.7;
}

.news-accordion__date {
    color: #666;
    font-size: 13px;
    white-space: nowrap;
    min-width: 80px;
}

.news-accordion__title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.news-accordion__icon {
    color: #999;
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.news-accordion__header.is-open .news-accordion__icon {
    transform: rotate(90deg);
}

.news-accordion__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.news-accordion__body.is-open {
    grid-template-rows: 1fr;
}

.news-accordion__body > div {
    overflow: hidden;
}

.news-accordion__content {
    padding: 0 0 24px 96px;
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.news-accordion__content p {
    margin-bottom: 1em;
}

.news-accordion__content p:last-child {
    margin-bottom: 0;
}

.news-accordion__content strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ========================================
   ご利用案内セクション
======================================== */
.guide {
    background: #fff;
    padding: 60px 40px;
}

.guide__inner {
    max-width: 900px;
    margin: 0 auto;
}

.guide__title {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.guide__subtitle {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #8b7355;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.guide__lead {
    font-size: 14px;
    text-align: center;
    color: #555;
    margin-bottom: 48px;
}

.guide__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.guide__block {
    margin-bottom: 32px;
}

.guide__heading {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide__bar {
    display: inline-block;
    width: 4px;
    height: 22px;
    background: #c4a265;
    border-radius: 2px;
}

.guide__time {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.guide__icon {
    flex-shrink: 0;
}

.guide__time-main {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}

.guide__time-note {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}

.guide__text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.guide__list {
    list-style: disc;
    padding-left: 20px;
}

.guide__list li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.guide__notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #faf8f5;
    border: 1px solid #e5e0d8;
    border-radius: 8px;
    padding: 20px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.guide__notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid #c4a265;
    border-radius: 50%;
    color: #c4a265;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.guide__notice p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* ========================================
   浜之湯温泉とはセクション
======================================== */
.about {
    background: #fff;
    padding: 60px 40px;
}

.about__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.about__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #8b7355;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}

.about__text {
    text-align: left;
    margin-bottom: 40px;
}

.about__text p {
    font-size: 15px;
    color: #333;
    line-height: 2;
    margin-bottom: 1em;
}

.about__image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   ギャラリーセクション
======================================== */
.gallery {
    background: #fff;
    padding: 60px 40px;
}

.gallery__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   おすすめセクション
======================================== */
.promo {
    background: #FDFDFD;
    padding: 40px;
}

.promo__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.promo__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .promo {
        padding: 24px 20px;
    }

    .promo__grid {
        grid-template-columns: 1fr;
    }
}

.gallery__title {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   サービスセクション
======================================== */
.service {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.service__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.service__box {
    position: relative;
    z-index: 3;
    background: #fff;
    padding: 16px 120px;
}

.service__title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.1em;
}

/* ========================================
   特徴セクション
======================================== */
.features {
    background: #fff;
    padding: 60px 40px;
}

.features__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.features__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.features__block:last-child {
    margin-bottom: 0;
}

.features__block--reverse {
    direction: rtl;
}

.features__block--reverse > * {
    direction: ltr;
}

.features__image {
    overflow: hidden;
}

.features__image img {
    width: 100%;
    height: auto;
    display: block;
}

.features__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.4;
}

.features__text {
    font-size: 15px;
    color: #333;
    line-height: 2;
}

/* ========================================
   浴場のご案内セクション
======================================== */
.bath-types {
    background: #fff;
    padding: 0 40px 80px;
}

.bath-types__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.bath-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.bath-types__grid--2cols {
    grid-template-columns: repeat(2, 1fr);
}

.bath-types__item {
    display: flex;
    flex-direction: column;
}

.bath-types__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 24px;
}

.bath-types__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bath-types__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.bath-types__text {
    font-size: 14px;
    color: #333;
    line-height: 1.9;
}

/* ========================================
   サウナセクション
======================================== */
.sauna {
    background: #fff;
    padding: 0 40px 80px;
}

.sauna__inner {
    max-width: 900px;
    margin: 0 auto;
}

.sauna__frame {
    border: 1.5px solid #c4a265;
    padding: 60px 40px 40px;
    position: relative;
}

.sauna__heading {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px 40px;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    border: 1.5px solid #c4a265;
    letter-spacing: 0.15em;
}

.sauna__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.sauna__item {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
}

.sauna__badge {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    z-index: 2;
}

.sauna__badge--hot {
    background: linear-gradient(135deg, #c45c3e 0%, #913420 100%);
    font-size: 15px;
}

.sauna__badge--cold {
    background: linear-gradient(135deg, #3e6b8a 0%, #163B5E 100%);
}

.sauna__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sauna__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sauna__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.sauna__catch {
    font-size: 15px;
    color: #8b7355;
    margin-bottom: 12px;
    line-height: 1.6;
}

.sauna__text {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

.sauna__note {
    font-size: 12px;
    color: #888;
}

.sauna__divider {
    height: 1px;
    background: #e5e0d8;
    margin-bottom: 40px;
}

.sauna__guide {
    text-align: center;
}

.sauna__guide-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: 0.1em;
}

.sauna__guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sauna__guide-item {
    text-align: left;
}

.sauna__guide-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 20px;
}

.sauna__guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sauna__guide-item:nth-child(2) .sauna__guide-image img {
    filter: brightness(1.3);
}

.sauna__guide-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.sauna__guide-text {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

/* ========================================
   FAQセクション
======================================== */
.faq {
    background: #fff;
    padding: 60px 40px;
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq__title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.15em;
}

.faq__subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #8b7355;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.faq__lead {
    font-size: 15px;
    color: #555;
    text-align: center;
    margin-bottom: 48px;
}

.faq__list {
    border-top: 1px solid #e5e0d8;
}

.faq__item {
    border-bottom: 1px solid #e5e0d8;
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq__label {
    font-size: 22px;
    font-weight: 700;
    color: #8b7355;
    flex-shrink: 0;
    width: 32px;
}

.faq__qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.faq__icon {
    font-size: 16px;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    display: none;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 24px;
}

.faq__answer.is-open {
    display: flex;
}

.faq__atext {
    flex: 1;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.9;
}

/* ========================================
   会社概要セクション
======================================== */
.company {
    background: #faf8f5;
    padding: 60px 40px;
}

.company__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.company__header {
    text-align: center;
    margin-bottom: 48px;
}

.company__title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.15em;
}

.company__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #8b7355;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.company__line {
    width: 40px;
    height: 1px;
    background: #c4a265;
    margin: 0 auto 16px;
}

.company__lead {
    font-size: 15px;
    color: #555;
}

.company__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.company__info {
    padding-top: 8px;
}

.company__list {
    display: flex;
    flex-direction: column;
}

.company__row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e0d8;
}

.company__row dt {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.company__row dd {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.company__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 20px;
}

.company__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company__message {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

/* ========================================
   CAMPFIREセクション
======================================== */
.campfire {
    background: #faf8f5;
}

.campfire__image {
    width: 100%;
}

.campfire__image img {
    width: 100%;
    height: auto;
    display: block;
}

.campfire__body {
    text-align: center;
    padding: 24px 20px 60px;
}

.campfire__label {
    font-size: 13px;
    color: #8b7355;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.campfire__label::before,
.campfire__label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #c4a265;
}

.campfire__catch {
    font-size: 20px;
    color: #2c4a6b;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.campfire__title {
    font-size: 36px;
    font-weight: 600;
    color: #2c4a6b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.campfire__number {
    font-size: 52px;
    font-weight: 700;
    color: #2c4a6b;
}

.campfire__subtitle {
    font-size: 16px;
    color: #2c4a6b;
    letter-spacing: 0.4em;
    margin-bottom: 12px;
}

.campfire__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #4a90a4;
    border-radius: 4px;
    padding: 12px 24px;
    margin: 0 auto 16px;
    color: #2c4a6b;
    max-width: fit-content;
}

.campfire__drop {
    flex-shrink: 0;
    color: #4a90a4;
}

.campfire__box-text {
    font-size: 15px;
    color: #2c4a6b;
    letter-spacing: 0.05em;
}

.campfire__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 64px;
    border: 1px solid #c4a265;
    border-radius: 4px;
    font-size: 15px;
    color: #8b7355;
    letter-spacing: 0.15em;
    text-decoration: none;
    margin-bottom: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}

.campfire__btn:hover {
    background: #c4a265;
    color: #fff;
}

.campfire__btn .arrow {
    font-size: 20px;
    margin-left: 8px;
}

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

.campfire__social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    transition: opacity 0.3s ease;
}

.campfire__social-item:hover {
    opacity: 0.7;
}

.campfire__social-item svg {
    width: 20px;
    height: 20px;
}

.campfire__social-item--x {
    background: #000;
}

.campfire__social-item--line {
    background: #00B900;
}

.campfire__social-item--instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.campfire__social-item--tiktok {
    background: #000;
}

.campfire__social-item--youtube {
    background: #FF0000;
}

/* ========================================
   お問い合わせセクション
======================================== */
.contact {
    position: relative;
    padding: 60px 40px;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: blur(3px);
    transform: scale(1.1);
}

.contact__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.contact__inner {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
}

.contact__header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.contact__title {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2em;
}

.contact__text {
    color: #fff;
    font-size: 15px;
    line-height: 2;
    padding-top: 8px;
}

.contact__text p {
    margin-bottom: 1em;
}

.contact__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact__card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
}

.contact__card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.contact__tel {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.contact__btn {
    display: inline-block;
    padding: 16px 120px;
    background: #A81010;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.contact__btn:hover {
    opacity: 0.85;
}

/* ========================================
   アクセスセクション
======================================== */
.access {
    position: relative;
}

.access__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.access__info {
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    overflow: hidden;
}

.access__bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.1);
    z-index: 1;
}

.access__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.access__content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.access__title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 48px;
}

.access__detail {
    margin-bottom: 32px;
}

.access__label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.access__address {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.access__map {
    position: relative;
    min-height: 500px;
}

.access__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: #fff;
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 40px;
    align-items: start;
}

.footer__logo {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: 0.1em;
}

.footer__address,
.footer__tel,
.footer__email {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer__social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.footer__social-item svg {
    display: block;
    width: 20px;
    height: 20px;
}

.footer__social-item:hover {
    opacity: 0.8;
}

.footer__social-item--x {
    background: #000;
}

.footer__social-item--line {
    background: #00C300;
}

.footer__social-item--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer__social-item--tiktok {
    background: #000;
}

.footer__social-item--youtube {
    background: #FF0000;
}

.footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.footer__nav-list {
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__nav-link {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: block;
    border-top: 2px solid #c4a265;
    padding-top: 12px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #c4a265;
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 64px;
    background: #A81010;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.footer__cta:hover {
    opacity: 0.85;
}

.footer__bottom {
    background: #A39266;
    text-align: center;
    padding: 16px;
    color: #fff;
    font-size: 14px;
}

/* ========================================
   料金表セクション
======================================== */
.price {
    background: #fff;
    padding: 20px 40px;
}

.price__inner {
    max-width: 900px;
    margin: 0 auto;
}

.price__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.price__line {
    display: block;
    width: 60px;
    height: 1px;
    background: #c4a265;
}

.price__title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
}

.price__subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #8b7355;
    letter-spacing: 0.15em;
}

.price__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
}

.price__body::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e0d8;
}

.price__col {
    padding: 0 20px;
}

.price__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    position: relative;
}

.price__heading::before,
.price__heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
    max-width: 80px;
}

.price__list {
    list-style: none;
}

.price__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dotted #ddd;
    font-size: 15px;
    color: #1a1a1a;
}

.price__amount {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.price__amount--large {
    font-size: 22px;
}

.price__note {
    font-size: 14px;
    color: #555;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 150px;
    }

    .header {
        padding: 16px 20px;
        background: #f8f4ee;
    }

    .header__logo img {
        height: 32px;
    }

    .is-pc-only {
        display: none !important;
    }

    .is-sp-only {
        display: inline-flex;
    }

    .header__nav {
        position: static;
        transform: none;
        margin: 16px -20px -16px;
        width: calc(100% + 40px);
        border-top: 1px solid rgba(0,0,0,0.08);
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding: 12px 0;
        background: #f8f4ee;
    }

    .header__nav-list {
        gap: 0;
        justify-content: space-around;
        width: 100%;
    }

    .header__nav-list li {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex: 1;
        justify-content: center;
    }

    .header__nav-list li + li {
        border-left: 1px solid rgba(0,0,0,0.1);
    }

    .header__nav-list li.is-pc {
        display: none;
    }

    .header__nav-list li a {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    .header__nav--scroll {
        display: none;
    }

    /* スクロールしてもSPナビは消さない */
    .header.is-scrolled .header__nav--default {
        opacity: 1;
        visibility: visible;
    }

    .nav-icon {
        color: #1a1a1a;
        align-items: center;
        justify-content: center;
    }

    .header__lang {
        font-size: 0;
        padding: 5px 12px;
    }

    /* お知らせ */
    .news {
        padding: 24px 20px 32px;
    }

    .news__header {
        margin-bottom: 8px;
    }

    .news__title {
        font-size: 16px;
    }

    .news__item a {
        flex-wrap: nowrap;
        gap: 16px;
        padding: 8px 0;
    }

    .news__date {
        min-width: auto;
        font-size: 12px;
    }

    .news__text {
        width: auto;
        white-space: nowrap;
        order: 0;
        margin-top: 0;
        font-size: 13px;
    }

    /* ご利用案内 */
    .guide {
        padding: 48px 20px;
    }

    .guide__title {
        font-size: 26px;
    }

    .guide__subtitle {
        font-size: 15px;
    }

    .guide__lead {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .guide__body {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .guide__time-main {
        font-size: 22px;
    }

    .guide__notice {
        padding: 16px;
    }

    /* 料金表 */
    .price {
        padding: 48px 20px;
    }

    .price__header {
        gap: 12px;
        margin-bottom: 32px;
    }

    .price__line {
        width: 30px;
    }

    .price__title {
        font-size: 22px;
    }

    .price__subtitle {
        font-size: 12px;
    }

    .price__body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .price__body::before {
        display: none;
    }

    .price__col {
        padding: 0;
    }

    .price__heading::before,
    .price__heading::after {
        max-width: 40px;
    }

    .price__list li {
        padding: 14px 0;
        font-size: 14px;
    }

    .price__amount {
        font-size: 16px;
    }

    .price__amount--large {
        font-size: 18px;
    }

    /* 浜之湯温泉とは */
    .about {
        padding: 48px 20px;
    }

    .about__title {
        font-size: 26px;
    }

    .about__subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .about__text p {
        font-size: 14px;
        line-height: 1.9;
    }

    /* ギャラリー */
    .gallery {
        padding: 48px 20px;
    }

    .gallery__title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* サービス */
    .service {
        height: 200px;
    }

    .service__box {
        padding: 18px 48px;
    }

    .service__title {
        font-size: 26px;
    }

    /* 特徴 */
    .features {
        padding: 48px 20px;
    }

    .features__block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .features__block--reverse {
        direction: ltr;
    }

    .features__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .features__text {
        font-size: 14px;
        line-height: 1.9;
    }

    /* 浴場のご案内 */
    .bath-types {
        padding: 0 20px 48px;
    }

    .bath-types__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bath-types__title {
        font-size: 20px;
    }

    /* FAQ */
    .faq {
        padding: 48px 20px;
    }

    .faq__title {
        font-size: 26px;
    }

    .faq__subtitle {
        font-size: 18px;
    }

    .faq__question {
        padding: 20px 0;
    }

    .faq__label {
        font-size: 18px;
        width: 24px;
    }

    .faq__qtext {
        font-size: 15px;
    }

    .faq__atext {
        font-size: 14px;
    }

    /* 会社概要 */
    .company {
        padding: 48px 20px;
    }

    .company__title {
        font-size: 26px;
    }

    .company__body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .company__row {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 14px 0;
    }

    .company__row dt,
    .company__row dd {
        font-size: 14px;
    }

    .company__message {
        font-size: 13px;
    }

    /* サウナ */
    .sauna {
        padding: 0 20px 48px;
    }

    .sauna__frame {
        padding: 40px 20px 32px;
    }

    .sauna__heading {
        font-size: 20px;
        padding: 0 24px;
    }

    .sauna__list {
        gap: 24px;
        margin-bottom: 32px;
    }

    .sauna__item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sauna__badge {
        width: 52px;
        height: 52px;
        font-size: 10px;
        top: 8px;
        left: 8px;
    }

    .sauna__title {
        font-size: 20px;
    }

    .sauna__guide-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .sauna__guide-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero {
        height: 70vh;
        min-height: 480px;
    }

    .hero__content {
        padding: 0 20px 32px;
    }

    .hero__banner {
        padding: 12px 20px;
        gap: 10px;
    }

    .hero__banner-title {
        font-size: 13px;
    }

    .hero__banner-sub {
        font-size: 10px;
    }

    .hero__info p {
        font-size: 13px;
    }

    .hero__info-inner {
        flex-direction: column;
        gap: 6px;
        padding: 8px 16px;
    }

    .hero__info-main {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #1a1a1a;
        padding-bottom: 6px;
        font-size: 13px;
    }

    .hero__info-sub {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    /* CAMPFIRE */
    .campfire__body {
        padding: 20px 20px 40px;
    }

    .campfire__catch {
        font-size: 14px;
    }

    .campfire__title {
        font-size: 20px;
    }

    .campfire__number {
        font-size: 28px;
    }

    .campfire__subtitle {
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    .campfire__box {
        padding: 10px 16px;
    }

    .campfire__box-text {
        font-size: 13px;
    }

    .campfire__btn {
        padding: 12px 40px;
        font-size: 14px;
    }

    .campfire__text {
        font-size: 13px;
    }

    .campfire__btn {
        padding: 12px 32px;
        font-size: 13px;
    }

    .campfire__social-item {
        width: 40px;
        height: 40px;
    }

    .campfire__social-item svg {
        width: 18px;
        height: 18px;
    }

    /* お問い合わせ */
    .contact {
        padding: 48px 20px;
    }

    .contact__header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .contact__title {
        font-size: 26px;
    }

    .contact__text {
        font-size: 14px;
    }

    .contact__cards {
        grid-template-columns: 1fr;
    }

    .contact__card {
        padding: 32px 24px;
    }

    .contact__card-title {
        font-size: 15px;
    }

    .contact__btn {
        padding: 16px 40px;
        font-size: 14px;
        white-space: nowrap;
    }

    .contact__tel {
        font-size: 24px;
    }

    /* アクセス */
    .access__container {
        grid-template-columns: 1fr;
    }

    .access__info {
        padding: 48px 24px;
        min-height: auto;
    }

    .access__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .access__label {
        font-size: 15px;
    }

    .access__address {
        font-size: 16px;
    }

    .access__map {
        min-height: 300px;
    }

    /* フッター */
    .footer__main {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 32px;
    }

    .footer__logo {
        font-size: 24px;
    }

    .footer__right {
        align-items: flex-start;
    }

    .footer__nav-list {
        gap: 48px;
    }

    .footer__nav-link {
        font-size: 14px;
    }

    .footer__cta {
        padding: 14px 32px;
        font-size: 14px;
    }

    .footer__bottom {
        font-size: 12px;
        padding: 12px;
    }

    /* ページヘッダー */
    .page-header {
        padding: 100px 20px 40px;
    }

    .page-header__title {
        font-size: 24px;
    }

    /* お知らせ一覧 */
    .news-archive {
        padding: 24px 20px 60px;
    }

    .news-tabs {
        margin-bottom: 16px;
        padding-bottom: 8px;
    }

    .news-tab {
        padding: 6px 14px;
        font-size: 13px;
    }

    .news-accordion__header {
        gap: 16px;
        padding: 12px 0;
    }

    .news-accordion__date {
        font-size: 12px;
        min-width: auto;
    }

    .news-accordion__title {
        font-size: 13px;
    }

    .news-accordion__icon {
        font-size: 16px;
    }

    .news-accordion__content {
        padding: 0 0 20px 0;
        font-size: 14px;
        line-height: 1.8;
    }

    /* ページトップへ戻る */
    .pagetop {
        width: 36px;
        height: 36px;
        font-size: 14px;
        bottom: 16px;
        right: 16px;
    }
}

/* ========================================
   お問い合わせページ
======================================== */
.contact-page {
    padding-top: 120px;
    background: #faf8f5;
}

.contact-page__section {
    padding: 60px 40px;
}

.contact-page__inner {
    max-width: 720px;
    margin: 0 auto;
}

.contact-page__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-page__lead {
    font-size: 15px;
    text-align: center;
    color: #555;
    margin-bottom: 48px;
    line-height: 1.8;
}

.contact-form {
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.contact-form__group {
    margin-bottom: 24px;
}

.contact-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-form__required {
    display: inline-block;
    background: #A81010;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 4px;
    vertical-align: middle;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #c4a265;
}

.contact-form__textarea {
    resize: vertical;
    line-height: 1.6;
}

.contact-form__privacy {
    margin: 32px 0;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.contact-form__checkbox {
    display: none;
}

.contact-form__checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #c4a265;
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
    transition: background 0.3s;
}

.contact-form__checkbox:checked + .contact-form__checkmark {
    background: #c4a265;
}

.contact-form__checkbox:checked + .contact-form__checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form__checkbox-text a {
    color: #A81010;
    text-decoration: underline;
}

.contact-form__submit {
    text-align: center;
}

.contact-form__btn {
    display: inline-block;
    padding: 16px 120px;
    background: #A81010;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-form__btn:hover {
    opacity: 0.85;
}

.contact-page__other {
    margin-top: 48px;
    text-align: center;
}

.contact-page__tel {
    font-size: 15px;
    color: #555;
}

.contact-page__tel a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
    }

    .contact-page__section {
        padding: 40px 20px;
    }

    .contact-page__title {
        font-size: 22px;
    }

    .contact-form {
        padding: 28px;
    }

    .contact-form__btn {
        width: 100%;
        padding: 16px 0;
    }
}

/* ========================================
   プライバシーポリシーページ
======================================== */
.privacy-page {
    padding-top: 120px;
    background: #faf8f5;
}

.privacy-page__section {
    padding: 60px 40px;
}

.privacy-page__inner {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-page__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.privacy-page__body {
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.privacy-page__intro {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.privacy-page__item {
    margin-bottom: 32px;
}

.privacy-page__item:last-child {
    margin-bottom: 0;
}

.privacy-page__heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.privacy-page__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.privacy-page__list {
    list-style: disc;
    padding-left: 24px;
    margin-top: 8px;
}

.privacy-page__list li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .privacy-page {
        padding-top: 100px;
    }

    .privacy-page__section {
        padding: 40px 20px;
    }

    .privacy-page__title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .privacy-page__body {
        padding: 28px;
    }

    .privacy-page__intro {
        font-size: 14px;
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .privacy-page__heading {
        font-size: 16px;
    }

    .privacy-page__text,
    .privacy-page__list li {
        font-size: 14px;
    }
}

/* ========================================
   パンくずリスト
======================================== */
.breadcrumb {
    padding: 12px 40px;
    font-size: 13px;
    color: #666;
    background: #f8f8f8;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 400;
}

.breadcrumb__list {
    display: flex;
    list-style: none;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}

.breadcrumb__item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.breadcrumb__item a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.breadcrumb__item:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #999;
    font-size: 14px;
}

.breadcrumb__item[aria-current="page"] {
    color: #888;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ========================================
   404ページ
======================================== */
.notfound {
    background: #fff;
    padding: 80px 40px;
    min-height: 400px;
}

.notfound__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.notfound__content {
    margin-bottom: 60px;
}

.notfound__text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 40px;
}

.notfound__action {
    margin-bottom: 20px;
}

.notfound__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.notfound__btn:hover {
    background: #333;
}

.notfound__btn .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.notfound__btn:hover .arrow {
    transform: translateX(4px);
}

.notfound__links {
    border-top: 1px solid #e5e0d8;
    padding-top: 48px;
}

.notfound__links-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.notfound__links-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.notfound__links-list li a {
    display: block;
    padding: 12px 16px;
    background: #f8f4ee;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.notfound__links-list li a:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 768px) {
    .notfound {
        padding: 60px 20px;
        min-height: auto;
    }

    .notfound__text {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .notfound__btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    .notfound__links {
        padding-top: 36px;
    }

    .notfound__links-title {
        font-size: 16px;
    }

    .notfound__links-list {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .notfound__links-list li a {
        padding: 10px 12px;
        font-size: 13px;
    }
}
