/* babyface.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap');

:root {
    --color-red-1: #CB2A32;
    --color-red-2: #E60012;
    --color-red-3: #8A151B;
    --bf-main: var(--color-red-1);
    --bf-lightred: #FFF5F5;
    --bf-bg: #FFFFFF;
    --bf-white: #FFFFFF;
    --bf-text: #333333;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--bf-text);
    background-color: var(--bf-bg);
    padding-top: 55px;
    /* space for fixed header */
    line-height: 1.6;
}

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

li {
    list-style: none;
}

/* Header */
.bf-header {
    background: var(--bf-main);
    padding: 0 40px;
    height: 55px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bf-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--bf-white);
    letter-spacing: 0.05em;
    opacity: 0.95;
}

/* Header Navigation */
.bf-hamburger {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    /* 上に表示 */
    margin-left: auto;
}

.bf-hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--bf-white);
    left: 0;
    transition: all 0.3s ease;
}

.bf-hamburger span:nth-child(1) {
    top: 0;
}

.bf-hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bf-hamburger span:nth-child(3) {
    bottom: 0;
}

.bf-hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.bf-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.bf-hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.bf-header-nav {
    margin-left: auto;
    display: flex;
    gap: 15px;
    align-items: center;
}

.bf-header-nav-btn {
    background: transparent !important;
    border: none !important;
    color: var(--bf-white) !important;
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 2px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative;
    transition: opacity 0.3s;
    white-space: nowrap !important;
    flex: none !important;
    opacity: 0.9;
}

.bf-header-nav-btn:hover {
    opacity: 0.8 !important;
}

.bf-header-nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--bf-white);
    transition: width 0.3s ease;
}

.bf-header-nav-btn.active {
    background: transparent !important;
    color: var(--bf-white) !important;
    box-shadow: none !important;
}

.bf-header-nav-btn.active::after {
    width: 100% !important;
}


/* Hero Section */
.bf-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #eee;
}

.bf-hero-swiper {
    width: 100%;
}

.swiper-slide {
    transition: opacity 0.3s ease;
}

/* アクティブでないスライドを少し暗くして奥行きを演出 */
.swiper-slide:not(.swiper-slide-active) {
    opacity: 0.4;
}

/* 画像は横幅いっぱい・高さは自然なアスペクト比で表示 */
.bf-hero-swiper img {
    width: 100%;
    height: auto;
    display: block;
}

.bf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.bf-hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 20;
    color: #fff;
    pointer-events: none;
}

.bf-hero-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.bf-hero-desc {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    padding-left: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* 左右ナビゲーションボタン */
.bf-hero-swiper .swiper-button-next,
.bf-hero-swiper .swiper-button-prev {
    color: var(--bf-main) !important;
    background: rgba(255, 255, 255, 0.85);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 50;
}

.bf-hero-swiper .swiper-button-next::after,
.bf-hero-swiper .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.bf-hero-swiper .swiper-button-next:hover,
.bf-hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
}

/* Tabs */
.bf-tabs {
    position: relative;
    z-index: 30;
    margin: 40px auto 50px;
    max-width: 760px;
    background-color: var(--bf-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bf-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bf-text);
    padding: 14px 0;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.3s;
}

.bf-tab-btn.active {
    background: var(--bf-main);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.bf-tab-divider {
    width: 1px;
    height: 16px;
    background: #EEEEEE;
}

/* Tab Content */
.bf-tab-contents {
    max-width: 1000px;
    margin: 0 auto 120px;
    /* ここを80pxから120pxに広げて下のボックスと距離を取る */
}

.bf-tab-pane {
    display: none;
}

.bf-tab-pane.active {
    display: block;
    animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bf-card {
    background: var(--bf-white);
    border-radius: 12px;
    padding: 50px 60px;
    /* ボックスがデカすぎたので上下左右の余白を少し縮小 */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.bf-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--bf-text);
    letter-spacing: 0.15em;
}

.bf-card-text {
    font-size: 1rem;
    line-height: 2.2;
    color: #666666;
    margin-bottom: 30px;
}

.bf-card-text span {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Menu Image Section */
.bf-menu-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    /* img下の隙間を消す */
}

.bf-menu-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.bf-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #403441;
    opacity: 0.47;
}

.bf-menu-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.73);
    color: #C93B36;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 22px 60px;
    border-radius: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.bf-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: translate(-50%, -50%) translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Season Section */
.bf-season-section {
    margin-bottom: 50px;
    text-align: left;
}

.bf-season-section:last-child {
    margin-bottom: 0;
}

.bf-season-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bf-main);
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 4px solid var(--bf-main);
    letter-spacing: 0.05em;
}

.bf-season-desc {
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.bf-season-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bf-season-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.bf-season-campaign {
    margin-top: 24px;
    background: #fff8f8;
    border: 1px solid #f2d0d0;
    border-radius: 8px;
    padding: 20px 24px;
}

.bf-season-campaign-text {
    font-size: 0.9rem;
    line-height: 2;
    color: #555;
}

.bf-season-link {
    color: var(--bf-main);
    font-weight: 700;
    text-decoration: underline;
}

.bf-season-link:hover {
    opacity: 0.75;
}

/* News Section */
.bf-news-list {
    text-align: left;
    margin-top: 30px;
}

.bf-news-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #E8E0D5;
}

.bf-news-item:last-child {
    border-bottom: none;
}

.bf-news-date {
    font-size: 1rem;
    color: var(--bf-main);
    /* 画像の日付の茶色 */
    font-weight: 700;
    width: 120px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.bf-news-badge {
    background: var(--bf-main);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-right: 25px;
    white-space: nowrap;
}

.bf-news-title {
    font-size: 0.95rem;
    color: var(--bf-text);
}

/* Recruit Section */
.bf-recruit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* 左右のカラムの隙間も80pxから60pxに戻してスリムに */
    text-align: left;
}

.bf-recruit-left {
    display: flex;
    flex-direction: column;
}

.bf-recruit-headline {
    color: var(--bf-main);
    /* 画像にあるゴールド系の色味 */
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.bf-recruit-lead {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--bf-text);
    margin-bottom: 20px;
}

.bf-job-box {
    background: var(--bf-lightred);
    /* 優しいピンクベージュ */
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 15px;
}

.bf-job-box h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--bf-text);
    font-weight: 700;
}

.bf-job-box p {
    font-size: 0.8rem;
    color: #555555;
}

/* Recruit Form */
.bf-form-title {
    font-size: 1.2rem;
    text-align: center;
    color: var(--bf-text);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #EEEEEE;
}

.bf-entry-form {
    display: flex;
    flex-direction: column;
}

.bf-form-group {
    margin-bottom: 20px;
}

.bf-form-group label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bf-text);
}

.bf-req {
    background: #D9534F;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
}

.bf-entry-form input,
.bf-entry-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #D0CEC9;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    background: #ffffff;
    color: var(--bf-text);
    transition: 0.3s;
}

.bf-entry-form input:focus,
.bf-entry-form select:focus {
    outline: none;
    border-color: var(--bf-main);
    box-shadow: 0 0 5px rgba(192, 154, 85, 0.3);
}

.bf-entry-form input::placeholder {
    color: #B2ACA2;
}

.bf-submit {
    width: 100%;
    background: var(--bf-main);
    /* マスタードゴールド */
    color: #ffffff;
    border: 1px solid var(--bf-main);
    padding: 15px 0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--bf-main);
}

.bf-submit:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--bf-main);
}

/* Recruit - Intro / Closing */
.bf-recruit-intro {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
}

.bf-recruit-closing {
    color: #c82336;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 2;
    margin: 30px 0 35px;
    text-align: left;
}

.bf-form-wrap {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 25px;
    margin-top: 10px;
}

/* Accordion */
.bf-accordion {
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bf-accordion-btn {
    width: 100%;
    background: #FFF5F5;
    border: 1px solid #f0dede;
    border-radius: 10px;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: background 0.2s;
}

.bf-accordion-btn[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.bf-accordion-btn:hover {
    background: #fff0f0;
}

.bf-accordion-store {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bf-main);
    display: block;
    padding-right: 36px;
}

.bf-accordion-summary {
    font-size: 0.85rem;
    line-height: 1.9;
    color: #555;
    display: block;
}

.bf-accordion-toggle-text {
    align-self: flex-end;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bf-main);
    margin-top: 5px;
}

.bf-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
    border: 1px solid #f0dede;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bf-recruit-detail {
    padding: 20px 20px 24px;
    text-align: left;
}

.bf-recruit-detail h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bf-main);
    margin: 20px 0 6px;
    border-bottom: 1px solid #f2d0d0;
    padding-bottom: 4px;
}

.bf-recruit-detail h5:first-child {
    margin-top: 0;
}

.bf-recruit-detail p {
    font-size: 0.88rem;
    line-height: 2;
    color: #555;
}

.bf-indeed-btn {
    display: inline-block;
    margin-top: 24px;
    background: #003A9B;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 58, 155, 0.25);
}

.bf-indeed-btn:hover {
    background: #002d7a;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0, 58, 155, 0.3);
}

/* Reservation */
.bf-reservation {
    max-width: 1000px;
    margin: 120px auto 80px;
    /* margin-top を 120px とって上（求人ボックス）から強制的に離す */
}

.bf-reserve-box {
    background: var(--bf-main);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bf-reserve-title {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
}

.bf-reserve-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.bf-store-card {
    background: var(--bf-white);
    border-radius: 15px;
    flex: 1;
    padding: 35px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bf-store-icon {
    width: 40px;
    height: 40px;
    background: var(--bf-main);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bf-store-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--bf-text);
}

.bf-store-addr,
.bf-store-hours {
    font-size: 0.85rem;
    color: #666666;
}

.bf-store-hours {
    margin-bottom: 25px;
}

.bf-btn {
    display: block;
    padding: 14px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.bf-btn-google {
    background: var(--bf-main);
}

.bf-btn-google:hover {
    background: #82614a;
    transform: translateY(-3px);
}

.bf-btn-hotpepper {
    background: var(--bf-main);
}

.bf-btn-hotpepper:hover {
    background: #ad8a68;
    transform: translateY(-3px);
}

/* Footer */
.bf-footer {
    background: var(--bf-main);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 20px 0;
}

.bf-footer-logo {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 0.2em;
}

.bf-footer-stores {
    margin-bottom: 12px;
}

.bf-footer-stores p {
    font-size: 0.8rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.bf-copy {
    font-size: 0.7rem;
    padding-top: 5px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {

    /* Header Layout & Height Shrink */
    body {
        padding-top: 55px;
    }

    .bf-header {
        height: 55px;
        padding: 0 20px;
    }

    .bf-logo-text {
        font-size: 1.05rem;
        /* ~75% of 1.4rem */
    }

    .bf-hamburger {
        display: block;
    }

    .bf-header-nav {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: calc(100vh - 50px);
        background-color: var(--bf-main);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        gap: 30px;
    }

    /* Shop Tabs shrinking (Total Tabs ~ 40px, Overall < 100px) */
    /* 店舗カードの上paddingを0に（インラインstyleを上書き） */
    #bf-shop .bf-card {
        padding-top: 0 !important;
    }

    .bf-shop-tabs {
        top: 54px; /* 1pxだけ重ねて絶対に隙間が出ないようにする */
        /* ヘッダーの高さに合わせて固定 */
        padding: 10px 0;
        margin: 0 0 25px 0;
    }

    .bf-shop-tab-btn {
        font-size: 0.85rem;
        padding: 6px 14px;
        white-space: nowrap;
    }

    .bf-shop-tab-divider {
        margin: 0 10px;
        height: 12px;
    }

    .bf-shop-pane {
        scroll-margin-top: 100px;
        /* 50px header + ~45px tabs */
    }

    .bf-header-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .bf-header-nav-btn {
        font-size: 1.25rem !important;
        /* スマホタップ用に大きく */
    }

    .bf-hero-content {
        left: 5%;
        width: 90%;
    }

    .bf-hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .bf-hero-desc {
        font-size: 0.95rem;
    }

    .bf-tabs {
        margin: 30px 15px 40px;
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 5px;
    }

    .bf-tab-btn {
        flex: 1 1 45%;
        font-size: 0.85rem;
        padding: 12px 0;
    }

    .bf-tab-divider {
        display: none;
    }

    .bf-tab-contents,
    .bf-reservation {
        padding: 0 15px;
    }

    .bf-card {
        padding: 40px 20px;
    }

    .bf-news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
    }

    .bf-news-date,
    .bf-news-badge {
        margin-right: 0;
        width: auto;
    }

    .bf-news-badge {
        margin-bottom: 5px;
    }

    .bf-recruit-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bf-reserve-box {
        padding: 40px 20px;
    }

    .bf-reserve-grid {
        flex-direction: column;
    }

    .bf-footer-links {
        gap: 15px;
    }

    /* 店舗案内：スマホでは画像上・テキスト下に縦積み */
    .bf-shop-section,
    .bf-shop-section.reverse {
        flex-direction: column;
    }

    .bf-shop-sec-img,
    .bf-shop-sec-content {
        width: 100%;
        flex: none;
    }

    .bf-shop-sec-img img {
        border-radius: 8px;
    }

    .bf-card.bf-shop-tab-pane,
    .bf-card[style*="padding: 40px 60px"] {
        padding: 40px 20px;
    }
}

/* Color Switcher */
.bf-color-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

.bf-color-switcher span {
    font-size: 0.85rem;
    font-weight: bold;
    color: #333;
}

.color-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.color-btn:hover {
    transform: scale(1.1);
}

/* 新しいメニュー用の区切りとテキストスタイル */
.bf-menu-divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 20px 0;
}

.bf-sub-title {
    font-size: 1.3rem;
    text-align: center;
    color: var(--bf-text);
    margin: 0 0 48px;
    letter-spacing: 0.1em;
}

.bf-season-heading-small {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: normal;
}

.bf-menu-btn-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background-color: rgba(91, 48, 31, 0.9);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 26px 0;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.bf-menu-btn-bar:hover {
    opacity: 0.8;
}



/* 譁ｰ縺励＞繝｡繝九Η繝ｼ逕ｨ縺ｮ蛹ｺ蛻・ｊ縺ｨ繝・く繧ｹ繝医せ繧ｿ繧､繝ｫ */
.bf-menu-divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 20px 0;
}

.bf-sub-title {
    font-size: 1.3rem;
    text-align: center;
    color: var(--bf-text);
    margin: 0 0 48px;
    letter-spacing: 0.1em;
}

.bf-season-heading-small {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: normal;
}

.bf-menu-btn-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background-color: rgba(91, 48, 31, 0.9);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 0;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.bf-menu-btn-bar:hover {
    opacity: 0.8;
}


/* Shop Section (店舗紹介) */
.bf-shop-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 15px 0;
    position: sticky;
    top: 55px;
    /* ヘッダーの下に固定 */
    z-index: 100;
    background-color: var(--bf-white);
}

.bf-shop-pane {
    scroll-margin-top: 125px;
    /* スクロール時のオフセット（ヘッダー + タブの高さ）*/
}

.bf-shop-tab-btn {
    background: transparent;
    border: 1px solid var(--bf-main);
    color: var(--bf-main);
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 40px;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.3s;
}

.bf-shop-tab-btn:hover {
    background: #fdf3f3;
}

.bf-shop-tab-btn.active {
    background: var(--bf-main);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bf-shop-tab-divider {
    width: 1px;
    height: 18px;
    background: #ccc;
    margin: 0 20px;
}

.bf-shop-pane {
    display: none;
    animation: fadeUp 0.5s ease forwards;
}

.bf-shop-pane.active {
    display: block;
}

.bf-shop-top-img {
    margin-bottom: 50px;
}

.bf-shop-top-img img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.bf-shop-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.bf-shop-section.reverse {
    flex-direction: row-reverse;
}

.bf-shop-sec-content {
    flex: 1;
    text-align: left;
}

.bf-shop-sec-img {
    flex: 1;
    line-height: 0;
}

.bf-shop-sec-img img {
    width: 100%;
    display: block;
}

.bf-shop-sec-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #E8E0D5;
    padding-bottom: 15px;
}

.bf-shop-sec-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
}

/* 繧ｳ繝ｼ繧ｹ */
.bf-shop-course {
    margin-bottom: 50px;
}

.bf-course-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.bf-course-images div {
    flex: 1;
}

.bf-course-images img {
    width: 100%;
    display: block;
}

.bf-course-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

/* 蠎苓・諠・ｱ */
.bf-shop-info {
    margin-bottom: 30px;
}

.bf-info-dl {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

.bf-info-dl dt {
    width: 25%;
    position: relative;
    padding: 10px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    background: transparent;
    text-align: right;
}

.bf-info-dl dd {
    width: 75%;
    padding: 10px 0 10px 70px;
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.bf-map-btn-wrap {
    margin-top: 10px;
}

.bf-btn-map {
    display: inline-block;
    background: var(--bf-main);
    color: #fff;
    padding: 2px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.bf-btn-map:hover {
    opacity: 0.8;
}


/* 莠育ｴ・(Reserve Section) */
.bf-reserve-divider {
    border: none;
    border-top: 1px dashed #cccccc;
    margin: 0;
}

.bf-reserve-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    text-align: left;
}

.bf-reserve-img {
    flex: 1;
}

.bf-reserve-img img {
    width: 100%;
    display: block;
}

.bf-reserve-info {
    flex: 1;
}

.bf-reserve-title {
    font-size: 1.35rem;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.bf-reserve-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.bf-btn-reserve {
    display: inline-block;
    background: #CB2A32;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.3s;
}

.bf-btn-reserve br {
    display: none;
}

.bf-btn-reserve:hover {
    opacity: 0.8;
}

/* =============================================
   店舗案内・予約：スマホレスポンシブ
   ============================================= */
@media (max-width: 768px) {

    /* セクション全体を縦積みにする */
    .bf-shop-section,
    .bf-shop-section.reverse {
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 50px;
    }

    .bf-btn-reserve br {
        display: block;
    }

    /* bf-shop-sec-content の「箱」を消して、
       子要素（見出しと本文）が直接 flex アイテムになる */
    .bf-shop-sec-content {
        display: contents;
    }

    /* 1番目：見出し */
    .bf-shop-sec-title {
        order: 1;
        width: 100%;
        margin-bottom: 10px;
        font-size: 1.25rem;
    }

    /* 2番目：画像コンテナ */
    .bf-shop-sec-img {
        order: 2;
        width: 100%;
        margin-bottom: 12px;
    }

    /* 3番目：説明テキスト */
    .bf-shop-sec-desc {
        order: 3;
        width: 100%;
        font-size: 0.9rem;
    }

    /* 店舗情報のテキストサイズ縮小 */
    .bf-info-dl dt {
        font-size: 0.95rem;
    }
    .bf-info-dl dd {
        font-size: 0.85rem;
    }

    .bf-shop-sec-img img {
        width: 100%;
        border-radius: 8px;
        display: block;
    }

    /* 予約カード：縦積みにし、店名→画像→テキストの順に変更 */
    .bf-reserve-card {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 30px 0;
    }

    /* .bf-reserve-infoの箱を消し、子要素を直接flexアイテムにする */
    .bf-reserve-info {
        display: contents;
    }

    /* 並び順の指定 */
    /* 1. 店名 */
    .bf-reserve-title {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    /* 2. 画像 */
    .bf-reserve-img {
        order: 2;
        width: 100%;
        margin-bottom: 25px;
    }

    /* 3. 本文・住所・ボタン等 */
    .bf-reserve-text {
        order: 3;
        width: 100%;
        text-align: left;
    }

    .bf-reserve-info a.bf-btn-reserve {
        order: 4;
        margin: 0 auto;
        text-align: center;
    }

    /* 求人：締めのメッセージ・応募説明文 — スマホで小さく */
    .bf-recruit-closing {
        font-size: 0.8rem;
        line-height: 1.8;
    }

    .bf-form-wrap p {
        font-size: 0.8rem;
        line-height: 1.8;
    }
}