@charset "UTF-8";
/*
Theme Name: 居酒屋 周平
Author: ran
Version: 1.0
*/

/*共通部分*/
html{
    font-size: 0.625rem;
}

body{
    color: #301A0A;
    font-size: 1.6rem;
    letter-spacing: .1rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    background-color: #F2E8D5;
}

*{/*ブラウザのデフォルト対策*/
    margin: 0;
    padding: 0;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #301A0A;
}


/* ==========================================
    header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
}

.header.scrolled {
    background: rgba(48, 26, 10, 0.65);
}

.header_inner {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.header_logo {
    width: 80px;
}

.header_logo img {
    width: 100%;
    display: block;
}

.header_list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 共通丸ボタン */
.header_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 42px;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header_btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* 白ボタン（SNS・店舗一覧） */
.header_btn--white {
    background: #ffffff;
    font-weight: 600;
}

/* 赤ボタン（ご予約） */
.header_btn--red {
    background: #E3200C;
    color: #ffffff;
    font-weight: 500;
}

/* スマホ要素は基本非表示 */
.sp_menu,
.sp_bottom_bar {
    display: none;
}

/* SNSボタンのある親要素 */
.header_item--sns {
    position: relative;
}

/* SNSボタン自体を<button>に変更した際のデザインリセット */
button.header_btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ポップアップ本体 */
.header_sns_nav {
    position: absolute;
    top: calc(100% + 15px);
    transform: translateX(-50%);
    width: 280px;
    background: #ffffff;
    border: 3px solid #C84141;
    border-radius: 16px;
    padding: 10px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 100;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header_sns_nav.is-active {
    opacity: 1;
    visibility: visible;
}

.header_sns_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_sns_list li {
    border-bottom: 1px solid rgba(200, 57, 58, 0.3);
}

.header_sns_list li:last-child {
    border-bottom: none;
}

/* リンク本体（疑似要素の親） */
.header_sns_link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 35px 14px 0; /* 右側に矢印用の余白を確保 */
    color: #301A0A;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
}

.sns_label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sns_icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


/* 矢印の「横軸」 */
.header_sns_link::before {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background-color: #C84141; 
    transition: right 0.3s ease;
}

/* 矢印の「先端」 */
.header_sns_link::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    width: 8px;        
    height: 8px;
    border-top: 2px solid #C84141;
    border-right: 2px solid #C84141;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease;
}

/* ホバー時のスライド移動 */
.header_sns_link:hover::before,
.header_sns_link:hover::after {
    right: 0px; /* 右側にスライド */
}




/* ==========================================
    TOPページ
   ========================================== */
.fv {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.fv picture {
    display: block;
    width: 100%;
    height: 100%;
}

.fv_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: fvFadeIn 1.5s ease-out forwards; 
}

@keyframes fvFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05); 
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fv_copy{
    position: absolute;
    max-width: 450px;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 5;
}

.fv_copy img{
    width: 100%;
    display: block;
}

.fv_cloud_left_small{
    position: absolute;
    top: 53%;
    left: 25%;
    width: 200px;
    animation-delay: 2.5s;
}
.fv_cloud_left{
    position: absolute;
    top: 20%;
    left: 0;
    max-width: 430px;
    width: 30%;
    animation-delay: 1s;
}
.fv_cloud_right_small{
    position: absolute;
    top: 30%;
    right: 25%;
    width: 200px;
    animation-delay: 2s;
}
.fv_cloud_right{
    position: absolute;
    top: 60%;
    right: 0;
    max-width: 430px;
    width: 30%;
    animation-delay: 1.5s;
}

@keyframes cloudFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 少し下から昇ってくる演出 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}
.fv_cloud_left_small,
.fv_cloud_left,
.fv_cloud_right_small,
.fv_cloud_right {
    opacity: 0; 
    animation: cloudFadeIn 3s ease-out forwards; /* 1.2秒かけてふわっと出現 */
}


/* PCではスマホ専用要素を非表示 */
.sp_menu,
.sp_bottom_bar {
    display: none;
}

@media screen and (max-width: 800px) {
    .pc_nav {
        display: none;
    }
    .header {
        position: absolute; 
    }
    .header_logo {
        width: 60px; 
    }
    .fv_copy {
        max-width: 400px;
        width: 90%;
        z-index: 3;
    }
    .fv_cloud_left_small {
        top: 60%;
        left: 65%;
        width: 30%;
    }
    .fv_cloud_left {
        transform: scaleX(-1) !important;
        left: 45%;
        width: 60%;
        top: 10%;
    }
    .fv_cloud_right_small {
        top:40%;
        right: 65%;
        width: 30%;
    }
    .fv_cloud_right {
        transform: scaleX(-1) !important;
        top: 70%;
        left: -8%;
        width: 60%;
    }

    /* --- スマホ固定ボトムバー --- */
    .sp_bottom_bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: #ffffff;
        z-index: 2000; 
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    .sp_bar_item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        font-weight: 500;
        color: #2F1600;
        text-decoration: none;
        border-right: 1px solid #eee;
    }

    .sp_bar_item.reserve {
        background: #E3200C; 
        color: #ffffff;
        border-right: none;
    }

    .burger_btn {
        width: 60px;
        flex: none;
        background: #ffffff;
        border: none;
        cursor: pointer;
        position: relative;
    }

    /* 三本線アイコン */
    .burger_icon,
    .burger_icon::before,
    .burger_icon::after {
        content: '';
        display: block;
        width: 25px;
        height: 2px;
        background-color: #E3200C;
        position: absolute;
        transition: 0.3s;
    }

    .burger_icon {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .burger_icon::before { top: -6px; }
    .burger_icon::after { top: 6px; }

    /* メニュー開いてる時の「×」マーク */
    .sp_bottom_bar.is-active .burger_icon {
        background-color: transparent;
    }
    .sp_bottom_bar.is-active .burger_icon::before {
        top: 0;
        transform: rotate(45deg);
    }
    .sp_bottom_bar.is-active .burger_icon::after {
        top: 0;
        transform: rotate(-45deg);
    }


    /* --- スマホ フルスクリーンメニュー --- */
    .sp_menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% - 50px); 
        background: #2b170a; 
        z-index: 1500;
        overflow-y: auto;
        padding: 100px 40px 40px;
        
        /* 初期状態は非表示（下に隠す、またはフェードアウト） */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* メニュー開いている時 */
    .sp_menu.is-active {
        opacity: 1;
        visibility: visible;
    }

    .sp_menu_logo {
    position: absolute;
    top: 30px;
    left: 5%;
    width: 60px;
    z-index: 2;
    pointer-events: none; /* クリック・タップに反応しないように設定 */
    }

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

    .sp_menu_cloud {
        position: absolute;
        top: 4%;
        right: 0;
        width: 120px;
        pointer-events: none; /* クリックを阻害しない設定 */
        z-index: 1;
    }
    .sp_menu_cloud img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* リスト部分 */
    .sp_menu_list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
    }

    .sp_menu_list li {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .sp_menu_list a {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        padding-right: 30px;
        color: #F2E8D5;
        font-size: 1.6rem;
        text-decoration: none;
    }

    .sp_menu_list a::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 2px;
        background-color: #c84141;
        transition: transform 0.3s ease;
    }

    /* 先端 */
    .sp_menu_list a::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 10px;
        height: 10px;
        border-top: 2px solid #c84141;
        border-right: 2px solid #c84141;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    /* ホバー（タップ時）のアニメーション */
    .sp_menu_list a:hover::before {
        transform: translateY(-50%) translateX(3px);
    }

    .sp_menu_list a:hover::after {
        transform: translateY(-50%) translateX(3px) rotate(45deg);
    }


    /* Instagramエリア */
    .sp_menu_ttl {
    color: #F2E8D5;
    font-size: 1.6rem;
    margin-bottom: 12px;
    }

    .insta_btns {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }

    .insta_btn {
        flex: 1;
        display: inline-flex;
        align-items: center;     
        justify-content: center; 
        gap: 8px;                 
        height: 36px;
        border: 1px solid #F2E8D5;
        border-radius: 4px;
        color: #F2E8D5;
        font-size: 1.4rem;
        text-decoration: none;
    }

    .insta_icon {
        width: 16px;   
        height: 16px;  
        object-fit: contain;
        display: block;
    }

    /* バナー */
    .sp_menu_banner img {
        width: 100%;
        height: auto;
    }

    /* 下段：全幅ボタン（Xアカウント用） */
    .sns_full_btn {
        width: 100%;
        padding-bottom: 30px; /* 下線との間の余白 */
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 30px;
    }

    .insta_btn.-full {
        width: 100%;
        display: flex;
    }
}



/* wave */
.news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1920 / 200;
    background: url("./assets/img/top/pickup_wave_top.svg") no-repeat center top;
    background-size: cover;
    transform: translateY(-99%);
    pointer-events: none; 
}


/* pick up */
.news {
    background: #F2E8D5;
    position: relative;
    
    /* 擬似要素で上に押し出した波の高さ分、セクション自体を下へ落とす */
    margin-top: calc(100vw * (50 / 1920)); 
}

.news_inner {
    margin: 0 auto;
    z-index: 30;
}

/* PICK UP セクション全体 */
.pickup_slider_wrap {
    position: relative;
    flex: 1;
    width: 100%;
    min-width: 0;
}

.pickup {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 3% 5%;
    padding-bottom: 0;
}

.pickup_title {
    flex-shrink: 0;
    width: 11%; 
    height: 100%;
}

.pickup_title picture,
.pickup_title img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* スライダー外枠 */
.pickup_slider {
    width: 100%;
    overflow: visible;
    /* margin-right: calc(50% - 50vw); */
}

.pickup_slider.swiper {
    padding-bottom: 20px;
    margin-bottom: -20px;
    padding-right: 15px;
}

/* 各スライドアイテム（PC） */
.pickup_item.swiper-slide {
    width: 20%;
    aspect-ratio: 4 / 3; /* ★横幅に応じて縦横比を 4:3 に保つ（16/9 や 1/1 も可能） */
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 10px 10px 0 rgba(48, 26, 10, 0.3);
    overflow: hidden; /* 角丸からはみ出ないように追加 */
}

.pickup_item img {
    width: 100%;
    height: 100%;
    display: block;
    /* border-radius は親要素の overflow: hidden で効くため省略可能 */
    object-fit: cover;
}

/* --- 矢印ボタンのデザイン --- */
.pickup_btn_prev,
    .pickup_btn_next {
        display: flex;
        position: absolute ;
        top: 50%;
        transform: translateY(-50%) ;
        z-index: 10; 
        width: 43px;
        height: 43px ;
        background-color: rgba(255, 255, 255, 0.9); 
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

/* デフォルトのSwiper矢印アイコンのサイズ調整 */
.pickup_btn_prev::after,
.pickup_btn_next::after {
        content: "" ; 
        display: block ;
        width: 12px;
        height: 12px ;
        border-top: 2px solid #9D2F29 ; 
        border-right: 2px solid #9D2F29 ;
    }

    /* 左矢印の向き（<） */
    .pickup_btn_prev::after {
        transform: rotate(-135deg) ;
        margin-left: 5px; 
    }

    /* 右矢印の向き（>） */
    .pickup_btn_next::after {
        transform: rotate(45deg);
        margin-right: 5px; 
    }

.pickup_btn_prev {
    left: 30px;
}

.pickup_btn_next {
    right: 30px;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none; /* 端まで行ったらクリック不可にする */
}


/* --- スマホ表示（800px以下） --- */
@media screen and (max-width: 800px) {
    .pickup {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-left: 0;
        padding-top: 0;
        padding-right: 0;

    }

    .pickup_title {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .pickup_slider {
        margin-right: 0;
        overflow: visible; /* 両端のハミ出し部分を見せる */
    }

    /* ★ 通常（非アクティブ・左右両端）のスライドを小さく指定 */
    .pickup_item.swiper-slide {
        width: 100%;
        opacity: 0.5;                  /* 透明度を下げてさらに奥にある印象に */
        transform: scale(0.9) !important; /* ★ 0.8倍に小さく縮小（好みに応じて 0.75〜0.85 で調整） */
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* ★ 中央（アクティブ）のスライドのみ拡大して前に出す */
    .pickup_item.swiper-slide-active {
        opacity: 1;
        transform: scale(1.00) !important; /* ★ 中央を際立たせる */
        z-index: 2;
    }

    /* スマホ時の矢印の位置調整 */
    .pickup_btn_prev {
        left: 3%;
    }
    .pickup_btn_next {
        right: 3%;
    }
}


/* お知らせ一覧*/
.news_list {
    width: 80%;        
    max-width: 900px;  
    margin: 70px auto 0;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
}

.news_item {
    border-bottom: 1px solid #7d654d;
}

.news_item a {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    color: #301A0A;
    text-decoration: none;

}

.news_item time {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    flex-shrink: 0;
    background-color: #FFFFFF;
    padding: 3px;
    font-weight: bold;
}

.news_item span {
    font-family: "Noto Serif JP", serif;
    background: #301A0A;
    color: #fff;
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 12px;
    flex-shrink: 0;
}

.news_item p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: bold;
}

.news_btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.news_btn {
    position: relative;
    display: inline-block;
    padding: 16px 70px 16px 40px; 
    background-color: #C7393A;     
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    z-index: 2;         
    
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.news_btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* news矢印 */
.news_btn::before {
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background-color: #fff;
    transition: right 0.3s ease;
}
.news_btn::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease;
}
.news_btn:hover::before,
.news_btn:hover::after {
    right: 32px;
}


.pickup_cloud_left {
    position: absolute;
    left: 0;
    width: 200px;
    transform: translateY(-70px);
    z-index: 1;
}

.pickup_cloud_right {
    position: absolute;
    right: 0;
    width: 200px;
    margin-top: -5%;
    z-index: 1;
}

@media screen and (max-width: 800px){
    .news {
        padding: 30px 0 0;
    }
    
    .news_list {
        width: 100%;
        margin: 30px auto 0; 
        padding: 0 5%;  
        box-sizing: border-box;
    }

    .news_item a {
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 16px 0;
        align-items: center;
    }

    .news_item p {
        width: 100%;
        font-size: 14px;
        line-height: 1.6;
        font-weight: 500;
    }
    .news_item span {
        padding: 2px 12px;
    }

    .news_btn {
        font-size: 14px;
        padding: 14px 50px 14px 30px;
    }
    .news_btn::before {
        right: 25px;
    }
    .news_btn::after {
        right: 25px;
    }
    .news_btn:hover::before,
    .news_btn:hover::after {
        right: 20px;
}

    .pickup_cloud_left {
    width: 100px;

    }

    .pickup_cloud_right {
        width: 100px;
        margin-top: 15px;
    }
}


/* 店舗一覧 */
.shops {
    position: relative;
    background-color: #F3C7AF;
    padding: 20px 40px;
    z-index: 20;
    padding-bottom: 0;
}

.shops_header-img {
    position: relative; 
    width: 100%;
    margin-top: 80px;
    line-height: 0;
}

.shops_header-wave {
    width: 100%;
    height: auto;
    display: block;
}

.shops_header-title {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 25%;
    max-width: 400px;
    height: auto;
    display: block;
    z-index: 2;
}

.shops_wave-bottom {
    bottom: 0;
    z-index: 10;
    position: relative;
}

.shops_wave-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

.shops_inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}


.shops_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* PC時: 2列並び */
    gap: 6%; 
}

/* カード1枚のスタイル */
.shop_card {
    display: block;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #301a0a;
    box-shadow: 8px 4px 15px rgba(48, 26, 10, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

@keyframes rotateScale {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(3deg);
    }
    50% {
        transform: scale(1.05) rotate(-3deg);
    }
    75% {
        transform: scale(1.05) rotate(1deg);
    }
    100% {
        transform: scale(1.05) rotate(0deg);
    }
}

.shop_card:hover {
    animation: rotateScale 1.2s ease-in-out both;
    transform-origin: top center; 
    
    z-index: 10;
    box-shadow: 0 16px 30px rgba(48, 26, 10, 0.25);
}

.shop_card::before {
    content: '';
    position: absolute;
    top: -10px;                  
    left: 50%;                  
    transform: translateX(-50%);
    
    width: 23px;                 
    height: 23px;               
    
    background-image: url('./assets/img/common/pin.svg'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
    z-index: 50;   
}


.shop_card-img-wrap {
    position: relative;
    border-radius: 8px;
    margin-bottom: 15px;
}

.shop_card-img-wrap img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.shop_card-tag {
    position: absolute;
    top: -22px;
    right: 15px;
    background-color: #F2E8D5;
    font-family: "Noto Serif JP", serif;
    color: #301a0a;
    padding: 18px 6px 10px 6px;
    writing-mode: vertical-rl; 
    font-size: 16px;
    font-weight: bold;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
}

.shop_card-body {
    position: relative; 
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 30px;
}

.shop_card-cate {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    flex-shrink: 0;
    background-color: #301A0A;
}

.shop_card-name {
    font-size: 20px;
    font-weight: bold;
    flex-grow: 1;
    min-width: 0; 
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 矢印の直線部分 */
.shop_card-body::before {
    content: '';
    position: absolute;
    right: 10px; 
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 3px;
    background-color: #301A0A; 
    transition: right 0.3s ease;
}
/* 矢印の先端（くの字）部分 */
.shop_card-body::after {
    content: '';
    position: absolute;
    right: 10px; 
    top: 50%;
    width: 15px;
    height: 15px;
    border-top: 3px solid #301A0A;
    border-right: 3px solid #301A0A;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease;
}
.shop_card-body:hover::before,
.shop_card-body:hover::after {
    right: 4px; 
}


/* ホバー時に色変更 */
.shop_card:hover {
    color: #C7393A; 
}
.shop_card:hover .shop_card-name {
    color: #C7393A;
}
.shop_card:hover .shop_card-arrow {
    color: #C7393A;
}
.shop_card:hover .shop_card-tag {
    color: #C7393A;
}
.shop_card:hover .shop_card-cate {
    background-color: #C7393A;
    color: #ffffff;
}
.shop_card:hover .shop_card-body::before {
    background-color: #C7393A;
}
.shop_card:hover .shop_card-body::after {
    border-top-color: #C7393A;
    border-right-color: #C7393A;
}


/* バナー */
.banner_section {
    position: relative;
    width: 100%;
    
    background-image: url("./assets/img/top/ec_background.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;

    margin-top: -18vw;
    padding: 5% 8%;
    z-index: 1;

    padding-top: calc(12vw + 60px); 
    padding-bottom: 80px;

}

.banner_inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.banner_link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.banner_link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.banner_link:hover img {
    transform: scale(1.05);
}

.banner_link {
    display: block;
}
/* PCではカード形式を非表示 */
.banner_card {
    display: none;
}

/* 白枠のカード */
.banner_card {
    background-color: #ffffff;
    border: 3px solid #C7393A;
    outline: 6px solid #ffffff; /* 枠線の外側に付ける白い太線 */
    border-radius: 8px;
    padding: 10px 28px 20px 28px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

/* ロゴ・テキスト */
.banner_logo img {
    width: auto;
    height: 100px;
    margin: 0 auto 10px;
}

.banner_title {
    color: #E3200E;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.banner_text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
    margin-left: auto;     
    margin-right: auto;
}

/* ボタン（リンク領域） */
.banner_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #C7393A;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 40px 12px 24px; /* 右側に矢印用余白を確保 */
    border-radius: 30px;
    width: 100%;
    max-width: 250px;
    box-sizing: border-box;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* 横棒部分 */
.banner_btn::before {
    content: '';
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;         /* 横線の長さ */
    height: 2px;         /* 横線の太さ */
    background-color: #ffffff;

    transition: right 0.3s ease;
}
/* 疑似要素による矢印（→） */
.banner_btn::after {
    content: '';
    position: absolute;
    right: 23px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);

    transition: right 0.3s ease;
}

.banner_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.banner_btn:hover::before,
.banner_btn:hover::after {
    right: 18px; /* 元の 23px から 5px 右へ移動 */
}

@media screen and (max-width: 900px) {
    /* スマホ表示時は 1列 に変更 */
    .shops_grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .shops {
        padding: 30px 15% 30px;
    }
}


@media screen and (max-width: 800px) {
    .shops {
        padding: 120px 5% 30px;
    }
    .shops_inner {
        padding-bottom: 0;
    }

    .shops_header-title {
        top: 120px;
        width: 240px;
        z-index: 30;
    }

    .shop_card-name {
        font-size: 16px;
    }
    .shop_card-tag {
        font-size: 14px;
    }
    .shop_card-body::after {
        right: 0; 
        width: 13px;
        height: 13px;
        border-top: 2px solid #301A0A;
        border-right: 2px solid #301A0A;
    }
    .shop_card-body::before {
        right: 0; 
        width: 15px;
        height: 2px;
    }

    .banner_section {
        padding: 20% 5% 10%;

        background-image: url("./assets/img/top/ec_background-sp.jpg");
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
    }
    .banner_link {
        display: none;
    }
    .banner_card {
        display: block;
    }
}
/* @media screen and (max-width: 500px) {
    .shop_card::before {
        width: 20px;
        height: 20px;
        top: -10px; 
    }
} */


/* ==========================================
    footer
   ========================================== */
.footer {
    width: 100%;
    color: #301a0a;
}

.footer_recruit {
    background-color: #FAF4E8;
    padding: 50px 5%;
}

.footer_recruit-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer_recruit-content {
    flex: 1;
}

.footer_recruit-title {
    font-size: 38px;
    font-weight: bold;
    color: #c84141;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.footer_recruit-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url('./assets/img/common/rectuit_line.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain; 
    pointer-events: none; 
}

.footer_recruit-text {
    font-size: 16px;
    color: #301a0a;
    margin-bottom: 50px;
    font-weight: 500;
}

.footer_recruit-btn {
    display: inline-block;
    background-color: #c84141;
    color: #fff;
    padding: 20px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    
}
.footer_recruit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 矢印 */
.footer_recruit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 15px 50px 15px 30px; 
}
/* 矢印の「横軸」 */
.footer_recruit-btn::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background-color: #fff;
    transition: right 0.3s ease;
}
/* 矢印の「先端」 */
.footer_recruit-btn::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease;
}
/* ホバー時 */
.footer_recruit-btn:hover::before,
.footer_recruit-btn:hover::after {
    right: 24px;
}


.footer_recruit-img-wrap {
    position: relative;
    max-width: 40%;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    transform: rotate(1deg); /* 少し斜めにする */
}

.footer_recruit-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    transform: rotate(-1deg);
}

.footer_recruit-img-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-image: url('./assets/img/common/pin.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

.footer_recruit-img-wrap::after {
    content: '';
    position: absolute;
    top: -20px;    
    right: -30px;  
    width: 32px;   
    height: 32px;  
    background-image: url('./assets/img/common/star.svg'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 10;  
    pointer-events: none;
}


/* footer_list */
.footer_main {
    background-color: #301A0A; 
    padding: 5% 2%;
    position: relative;
    overflow: hidden;
}

.footer_cloud_left {
    position: absolute;
    left: 0;
    width: 180px;
    margin-top: 200px;
    overflow: auto;
}

.footer_cloud_right {
    position: absolute;
    right: 0;
    width: 180px;
    margin-top: -300px;
}

.footer_main-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 8%;
    position: relative;
    z-index: 2;
}

/* ホワイトカード枠 */
.footer_card {
    background-color: #F2E8D5;
    border-radius: 5px;
    padding: 30px 30px 0;
    position: relative;
    text-align: center;
}
.footer_card::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background-image: url('./assets/img/common/pin.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.footer_card-title {
    position: relative; 
    display: inline-block; 
    margin: 0 auto 20px;
    padding-bottom: 8px; 
    font-size: 22px;
    font-weight: bold;
    color: #C7393A;
    text-align: center;
}
.footer_card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 110px;
    left: 50%;
    transform: translateX(-50%);
    
    height: 10px; 
    background-image: url('./assets/img/common/list_line.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    pointer-events: none;
}
.footer_card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_card-list li {
    border-bottom: 1px solid rgba(199, 57, 58, 0.3);
}
.footer_card-list li:last-child {
    border-bottom: none;
}
.footer_card-list a {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 14px 24px 14px 0;
    text-decoration: none;
    color: #301a0a;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}
.card_sns a {
    padding: 16px 0;
}

.footer_card-list a:hover {
    color: #c84141;
}

.footer_card-list .ico-insta {
    width: 16px;      
    height: 16px;    
    margin-right: 8px;  
    object-fit: contain;
    flex-shrink: 0;   
}


/* 横軸 */
.footer_card-list a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: #C7393A;
    transition: transform 0.3s ease;
}
/* 先端 */
.footer_card-list a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #C7393A;
    border-right: 2px solid #C7393A;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}
.footer_card-list a:hover::before,
.footer_card-list a:hover::after {
    transform: translateY(-50%) translateX(3px) rotate(0deg);
}
.footer_card-list a:hover::after {
    transform: translateY(-50%) translateX(3px) rotate(45deg);
}


/* 右側のダイレクトリンク（お知らせ・採用情報） */
.footer_nav-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 30px 0;
    width: 200px; 
    max-width: 100%;
}

.footer_nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_nav-list li:last-child {
    border-bottom: none;
}

.footer_nav-list a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 20px 0;
    color: #F2E8D5;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer_nav-list a:hover {
    color: #C7393A;
}

/* 横軸 */
.footer_nav-list a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: #C7393A;
    transition: transform 0.3s ease;
}
/* 先端 */
.footer_nav-list a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #C7393A;
    border-right: 2px solid #C7393A;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}
.footer_nav-list a:hover::before {
    transform: translateY(-50%) translateX(3px);
}
.footer_nav-list a:hover::after {
    transform: translateY(-50%) translateX(3px) rotate(45deg);
}


/* ONLINE STORE カード */
.footer_ec-card {
    position: relative;
    display: block;
    background-color: #FAF4E8;
    border-radius: 5px;
    padding: 15px;
    text-decoration: none;
    color: #301a0a;
    transition: transform 0.3s ease;
    width: auto;
    height: auto;
}

.footer_ec-card:hover {
    transform: translateY(-3px);
}

.footer_ec-badge {
    font-size: 12px;
    font-weight: bold;
    color: #C7393A;
    display: block;
}

.footer_ec-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px; 
    font-size: 12px;
    font-weight: bold;
    color: #C7393A;
}
.footer_ec-badge .ico-cart {
    width: 14px; 
    height: auto;
    display: block;
}

.footer_ec-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_ec-body img {
    height: 70px;
    width: auto;
}

.footer_ec-title {
    width: 160px;
}


/* ONLINE STORE 矢印 */
.footer_ec-card::before {
    content: '';
    position: absolute;
    right: 18px;
    bottom: 20px;
    width: 16px;
    height: 2px;
    background-color: #c84141;
    transition: transform 0.3s ease;
}
.footer_ec-card::after {
    content: '';
    position: absolute;
    right: 18px;
    bottom: 16px; 
    width: 10px;
    height: 10px;
    border-top: 2px solid #c84141;
    border-right: 2px solid #c84141;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.footer_ec-card:hover::before {
    transform: translateX(3px);
}
.footer_ec-card:hover::after {
    transform: translateX(3px) rotate(45deg);
}


/* copyright */
.footer_bottom {
    background-color: #ffffff;
    padding: 26px 20px;
}

.footer_bottom-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer_logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer_logos img {
    max-width: 100px;
}

.footer_copyright {
    font-size: 10px;
    margin: 0;
    font-weight: 600;
}

/* フッターレスポンシブ */
@media screen and (max-width: 800px) {
    .footer_recruit-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer_recruit-title {
        font-size: 26px;
    }

    .footer_recruit-text {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .footer_recruit-img-wrap {
        max-width: 85%;
    }

    .footer_recruit-btn {
        font-size: 14px;
    }

    .footer_main {
        display: none;
    }

    /* .footer_main-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer_card-list a {
        font-size: 14px;
    }

    .footer_nav-list a {
        font-size: 14px;
    } */

    .footer_logos {
        gap: 20px;
        margin-bottom: 15px;
    }

    .footer_logos img {
        max-width: 60px;
        height: auto;
    }
    .footer_logos a:nth-child(3) img {
        width: 40px;
        height: auto;
    }

    .footer_bottom {
        padding: 20px 10px;
    }
}




/* ==========================================
    ご予約ページ (reserve)
   ========================================== */
.reserve_header {
    position: relative; 
    text-align: center;
    padding: 180px 20px 0; 
    overflow: hidden; 
}

.reserve_title_img {
    max-width: 320px;
    margin: 0 auto 20px;
}

.reserve_title_img img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.reserve_lead {
    font-size: 1.6rem;
    font-weight: 500;
    color: #301A0A;
    position: relative;
    z-index: 2; 
    margin-top: 4%;
}
.br-sp {
    display: none;
}


.reserve_cloud {
    position: absolute;
    pointer-events: none; 
    z-index: 1;
}

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

/* 左側の雲 */
.reserve_cloud--left {
    top: 75%;
    left: 0;
    transform: translateY(-50%);
    width: 25%;
    max-width: 280px;
}

/* 右側の雲 */
.reserve_cloud--right {
    top: 40%;
    right: 0;
    width: 25%;
    max-width: 280px;
}


/* ナビゲーションボタン */
.reserve_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    margin: 100px 50px;
    flex-wrap: wrap; 
}
.reserve_nav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 42px;
    background-color: #C7393A; 
    color: #ffffff;            
    border: 2px solid #C7393A; 
    border-radius: 999px;       
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.reserve_nav_btn:hover {
    opacity: 0.85;
    background-color: #ffffff; 
    color: #C7393A;      
    border: 2px solid #C7393A; 
}

@media screen and (max-width: 800px) {
    .reserve_header {
        padding-top: 100px;
    }
    .reserve_title_img {
        max-width: 250px;
    }
    .reserve_lead {
        font-size: 1.2rem;
    }
    .reserve_cloud--left {
        width: 25%;
        top: 60%;
    }
    .reserve_cloud--right {
        width: 25%;
        top: 35%;
    }
    .reserve_lead {
        font-size: 1.4rem;

    }
    .br-sp {
        display: inline;
    }
    .reserve_nav {
        margin: 50px 25px;
    }
    .reserve_nav_btn {
        font-size: 1.4rem;
    }
}


/* 店舗紹介 */
.shop_reserve_item {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 30px 40px;
    position: relative;
}
.shop_reserve_item:last-child {
    margin-bottom: 160px; 
}

.shop_reserve_header {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
}

.shop_reserve_title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 2.4rem;
    font-weight: bold;
    color: #301a0a;
    flex-shrink: 0;
}
.shop_reserve_name {
    transform: translateY(-3px)
}

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

.shop_reserve_insta img {
    width: 28px;
    height: 28px;
    display: block;
}

.shop_reserve_line {
    flex-grow: 1;
    height: 1px;
    background-color: #301A0A;
}

.shop_reserve_body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.shop_reserve_img {
    width: 40%;
    flex-shrink: 0;
}

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

/* 右：コンテンツ */
.shop_reserve_content {
    flex-grow: 1;
}

.shop_reserve_info {
    margin: 0 0 30px 0;
}

.shop_reserve_row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: #301A0A;
}

.shop_reserve_row dt {
    width: 60px;
    height: 24px;
    background-color: #ffffff; 
    color: #301A0A;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin: 2px 15px 0 0;
    flex-shrink: 0;
    transform: translateY(-3px)
}

.shop_reserve_row dd {
    margin: 0;
    flex-grow: 1;
}

.shop_map_link {
    color: #301A0A;
    text-decoration: underline;
    margin-left: 10px;
    font-size: 1.2rem;
}

.shop_tel_link {
    color: #301A0A;
    text-decoration: none;
}

/* --- ボタン--- */
.shop_reserve_btns {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.shop_btn_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop_btn_note {
    font-size: 1rem;
    color: #c84141;
    font-weight: bold;
    margin-bottom: 4px;
}

/* ボタン共通枠組み */
.shop_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 45px;
    padding: 0px 18px;
    width: 140px;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.shop_btn:hover {
    opacity: 0.85;
}

/* 1. 詳しく見る（ベージュ背景 ＋ 黒枠） */
.shop_btn--detail {
    background-color: transparent;
    color: #301a0a;
    border: 2px solid #301a0a;
}
/* 矢印 */
.shop_btn--detail {
    position: relative; 
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 44px;
    background-color: transparent;
    color: #301a0a;
    border: 2px solid #301a0a;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
/* 矢印の「横軸（棒）」 */
.shop_btn--detail::before {
    content: '';
    position: absolute;
    right: 25px; 
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px; 
    background-color: #301a0a;
    transition: right 0.3s ease;
}
/* 矢印の「先端（くの字）」 */
.shop_btn--detail::after {
    content: '';
    position: absolute;
    right: 25px; 
    top: 50%;
    width: 9px;  
    height: 9px;
    border-top: 2px solid #301a0a;
    border-right: 2px solid #301a0a;
    transform: translateY(-50%) rotate(45deg); 
    transition: right 0.3s ease;
}
.shop_btn--detail:hover::before,
.shop_btn--detail:hover::after {
    right: 18px;
}

/* 2. 赤色カプセルボタン（電話予約 / WEB予約） */
.shop_btn--red {
    background-color: #c84141;
    color: #ffffff;
    border: none;
}
.reserve_cloud_bottom {
    position: absolute;
    left: calc((100% - 100vw) / 2) !important;
    bottom: -25%;       
    width: 250px;        
    max-width: 30vw;     
    height: auto;
    transform: scaleX(-1); 
    pointer-events: none; 
}

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

.shop_reserve_body {
    position: relative;
    z-index: 2; 
}


@media screen and (max-width: 800px) {
    .shop_reserve_header{
        gap: 20px;
    }
    .shop_reserve_name {
        font-size: 18px;
    }
    .shop_reserve_body {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .shop_reserve_img {
        width: 100%;
    }
    .shop_reserve_btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: stretch;
    }
    .shop_reserve_btns .shop_btn {
        text-align: center;         
        display: flex;              
        justify-content: center;   
        align-items: center;    
    }
    .shop_btn--detail::before {
        right: 100px;
    }
    .shop_btn--detail::after {
        right: 100px;
    }
    .shop_btn--detail:hover::before,
    .shop_btn--detail:hover::after {
        right: 90px;
    }
    .shop_btn_wrap,
    .shop_btn {
        width: 100%;
    }
    .shop_btn_note {
        font-size: 1.2rem;
    }
    .shop_btn--detail {
        font-size: 1.4rem;
    }
    .shop_reserve_item {
        margin-bottom: 50px;
    }
    .shop_reserve_item:last-child {
    margin-bottom: 90px; 
    }
    .reserve_cloud_bottom {          
    bottom: -6%;       
    width: 250px;           
    }
}




/* ==========================================
    本店ページ（shuhei）
   ========================================== */
/* PC・全体のヘッダー初期状態（非表示） */
.header.header--fade {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* PC・全体のヘッダーを表示（フェードイン） */
.header.header--fade.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


@media screen and (max-width: 800px) {
    /* 親の .header--fade の非表示設定（opacity: 0等）を無効化して常時表示させる */
    .header.header--fade {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* PC用のヘッダー要素（ナビゲーションなど）だけをFV通過まで非表示にする */
    /* ※ .header_pc 部分は実際のPC用ヘッダー枠のクラス名に変更してください */
    .header.header--fade .header_inner {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    
    .header.header--fade.is-show .header_inner {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* ボトムバーは常に画面下に表示 */
    .sp_bottom_bar {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}



/* fv */
.shuhei_fv {
    position: relative;
    width: 100%;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}
.shuhei_fv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fvFadeIn 1.5s ease-out forwards;
}
.shuhei_fv_bg picture {
    width: 100%;
    height: 100%;
    display: block;
}
.shuhei_fv_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
}
@keyframes fvFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05); 
    }
    100% {
        opacity: 1;
        transform: scale(1);    
    }
}

.shuhei_fv_cloud {
    position: absolute;
    z-index: 2;
}
.shuhei_fv_cloud--left {
    top: 15%;
    left: 0;
    width: 350px;
}
.shuhei_fv_cloud--right {
    bottom: 15%;
    right: 0;
    width: 350px;
}
@keyframes cloudFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 少し下から昇ってくる演出 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}
.shuhei_fv_cloud--left,
.shuhei_fv_cloud--right {
    opacity: 0; 
    animation: cloudFadeIn 3s ease-out forwards; /* 1.2秒かけてふわっと出現 */
}


.shuhei_fv_content {
    position: relative;
    z-index: 3; 
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}
.shuhei_fv_logo {
    width: 130px;
    margin: 0 auto 5%;
}
.shuhei_fv_logo img {
    width: 100%;
    height: auto;
    display: block;
}
.shuhei_fv_catch {
    font-size: 4.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); 
}
.shuhei_fv_sub {
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 800px) {
    .shuhei_fv {
        height: 90vh;
    }
    .shuhei_fv_logo {
        width: 35%;
        margin-bottom: 8%;
    }
    .shuhei_fv_catch {
        font-size: 3rem;
        margin-bottom: 8%;
        text-align: center;
    }
    .shuhei_fv_sub {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    .shuhei_fv_cloud--left {
        width: 180px;
        top: 12%;
    }
    .shuhei_fv_cloud--right {
        width: 180px;
        bottom: 10%;
    }
}


/* 周平イチオシ */
.recommend_section {
    padding: 200px 50px;
    background-color: #F2E8D5; 
}
.recommend_inner {
    max-width: 800px;
    margin: 0 auto;
}

.recommend_title {
    text-align: center;
    margin-bottom: 8%;
}

.recommend_title img {
    width: 100%;
    max-width: 520px;
    height: auto;
}

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

.recommend_item {
    display: flex;
    width: 100%;
}


/* --- 画像エリア --- */
.recommend_img {
    width: 50%;
    position: relative;
    overflow: hidden;
}

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


.recommend_text {
    width: 50%;
    background-color: #301A0A;
    color: #F2E8D5;
    padding: 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recommend_name {
    font-size: 2.4rem;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.recommend_desc {
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 300;
    margin: 0;
}

/* 右上の角を丸く（メニュー1のテキスト） */
.recommend_text--top-right {
    border-top-right-radius: 30px;
}
/* 左下の角を丸く（メニュー2のテキスト） */
.recommend_text--bottom-left {
    border-bottom-left-radius: 30px;
}
/* 右下の角を丸く（メニュー3のテキスト） */
.recommend_text--bottom-right {
    border-bottom-right-radius: 30px;
}


@media screen and (max-width: 800px) {
    .recommend_section {
        padding: 80px 10%;
    }
    .recommend_title {
        margin-bottom: 30px;
    }
    .recommend_item {
        flex-direction: column; 
    }
    .recommend_item--reverse {
        flex-direction: column-reverse;
    }
    .recommend_img,
    .recommend_text {
        width: 100%;
    }
    .recommend_text {
        padding: 15% 10%;
    }
    .recommend_text--top-right {
    border-top-right-radius: 0;
    }
    .recommend_text--bottom-left {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    }
    .recommend_img--top-left {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    }
}


/* スライド写真 */
.gallery_section {
    width: 100%;
    padding: 0;
    margin: 0;
}
.gallery_slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.gallery_slider .swiper-slide {
    height: 350px;
}
.gallery_slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 矢印 */
.gallery_slider .swiper-button-prev::after,
.gallery_slider .swiper-button-next::after {
    display: none;
}
.gallery_slider .swiper-button-prev,
.gallery_slider .swiper-button-next {
    width: 48px;
    height: 48px;
    background: none;
    color: #ffffff; 
}
.gallery_slider .swiper-button-prev::before,
.gallery_slider .swiper-button-next::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px; 
    height: 40px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
.gallery_slider .swiper-button-prev::before {
    left: 60px;
    transform: translateY(-50%) rotate(-135deg); 
}
.gallery_slider .swiper-button-next::before {
    right: 60px;
    transform: translateY(-50%) rotate(45deg); 
}

.gallery_slider .swiper-wrapper {
    transition-timing-function: linear !important;
}


@media screen and (max-width: 800px) {
    .gallery_slider .swiper-slide {
        height: 250px;
    }
    .gallery_slider .swiper-button-prev::before {
        left: 20px;
    }
    .gallery_slider .swiper-button-next::before {
        right: 20px;
    }
    .gallery_slider .swiper-button-prev::before,
    .gallery_slider .swiper-button-next::before {
        width: 25px; 
        height: 25px;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
    }
}



/* コース料理 */
.course_section {
    padding: 200px 20px 0;
    color: #301A0A;
}
.course_inner {
    max-width: 900px;
    margin: 0 auto;
}
.course_title {
    text-align: center;
    margin-bottom: 40px;
}
.course_title img {
    width: 100%;
    max-width: 320px;
    height: auto;
}
.course_lead {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* 各コースのブロック */
.course_item {
    margin-bottom: 80px;
}
.course_item:last-child {
    margin-bottom: 0;
}

.course_item_title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
    color: #C7393A;
    position: relative;
    padding-bottom: 25px; 
    margin-bottom: 45px;
}

/* 下の赤い筆線画像 */
.course_item_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 12px; 
    background-image: url('./assets/img/common/course_line.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- 料金リスト（点線ドットのレイアウト） --- */
.course_price_list {
    max-width: 600px;
    margin: 0 auto 30px;
}
.price_row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.price_row dt {
    position: relative;
    z-index: 2; 
    background-color: #F2E8D5;
    padding-right: 7px; 
}

/* ドット線表現 */
.price_row::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11px;
    border-bottom: 2px dotted #301A0A;
    opacity: 0.2;
    z-index: 1;
}

.price_row dd {
    position: relative;
    z-index: 2; 
    background-color: #F2E8D5;
    padding-left: 7px; 
    margin: 0;
}

.course_desc {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
}
.course_menu_box {
    background-color: #F3C7AF; 
    padding: 40px 50px;
    border-radius: 5px;
    text-align: center;
    margin: 0 auto 30px;
    max-width: 600px;
}
.menu_box_ttl {
    color: #C7393A;
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 15px 0;
}
.menu_box_list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.menu_box_list li {
    font-size: 1.4rem;
    line-height: 2;
    position: relative;
}
.menu_box_list li::before {
    content: '・';
}
.menu_box_list li.menu_box_list_not::before {
    content: none;
}

/* 注意書き */
.course_note {
    font-size: 1rem;
    text-align: right;
    max-width: 600px;
    margin: 0 auto;
}


@media screen and (max-width: 800px) {
    .course_section {
        padding: 80px 20px 0;
    }
    .course_title img {
        max-width: 250px;
    }
    .course_title {
        margin-bottom: 50px;
    }
    .course_item_title {
        font-size: 2.8rem;
    }
    .course_item_title::after {
        height: 20px;
        background-size: 100% 100%;
    }
    .course_lead {
        margin-bottom: 40px;
        text-align: left;
    }
    .price_row {
        font-size: 1.6rem;
    }
    .course_desc {
        font-size: 1.4rem;
    }
    .course_menu_box {
        padding: 30px 20px;
    }
    .price_row dd {
        padding-left: 5px;
    }
    .price_row dt {
        padding-right: 5px;
    }
    /* 最後の行のドット線だけ位置を調整 */
    .price_row-3:last-child::before {
        bottom: 35px; 
}
}


/* お席 */
.seats_section {
    padding: 200px 0 0;
}
.seats_title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}
.seats_title img {
    width: 100%;
    max-width: 320px; 
    height: auto;
}
.seats_grid {
    width: 100%;
}
.seats_item {
    position: relative;
    overflow: hidden;
}
.seats_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.seats_item--main {
    width: 100%;
    height: 480px; 
}
.seats_sub_grid {
    display: flex;
    width: 100%;
}
.seats_sub_grid .seats_item {
    width: 33.333%; 
    height: 400px;  
}
.seat_badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    
    writing-mode: vertical-rl;
    text-orientation: upright;
    
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    padding: 12px 8px;
    border: 2px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    pointer-events: none;
    white-space: nowrap;
}


@media screen and (max-width: 800px) {
    .seats_section {
        padding: 80px 0 0;
    }
    .seats_title img {
        max-width: 250px;
    }
    .seats_title {
        margin-bottom: 25px;
    }
    .seats_item--main {
        height: 200px;
    }
    .seats_sub_grid {
        flex-direction: column;
        width: 100%;
    }
    .seats_sub_grid .seats_item {
        height: 200px;
        width: 100%;
    }
    .seat_badge {
        font-size: 1.6rem;
        padding: 8px 5px;
        border-width: 1.5px;
    }
}


/* アクセス */
.access_section {
    padding: 200px 20px;
}
.access_inner {
    max-width: 1100px;
    margin: 0 auto;
}
.access_title {
    text-align: center;
    margin-bottom: 50px;
}
.access_title img {
    width: 100%;
    max-width: 420px;
    height: auto;
}
.access_content {
    display: flex;
    gap: 50px;
    align-items: stretch;
}
.access_map {
    flex: 1;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
}
.access_map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* 右側：店舗情報 */
.access_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.access_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #301A0A;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.shop_name {
    font-size: 2.6rem;
    font-weight: bold;
    margin: 0;
}
.insta_link {
    height: 32px;
    display: inline-block;
    transition: opacity 0.3s;
}
.insta_link:hover {
    opacity: 0.8;
}
.insta_link svg {
    width: 100%;
    height: 100%;
}

/* 情報リスト */
.access_dl {
    margin: 0 0 30px 0;
}
.access_row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

/* 左側ラベル（白いカプセルバッジ風） */
.access_row dt {
    width: 70px;
    min-width: 70px;
    background-color: #ffffff;
    text-align: center;
    padding: 4px 8px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 15px;
}
.access_row dd {
    margin: 0;
    line-height: 1.5;
    font-size: 1.6rem;
}
.access_row dd a {
    color: inherit;
    text-decoration: none;
}

/* ボタンエリア */
.access_btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.reserve_btn {
    display: block;
    width: 100%;
    background-color: #C7393A;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 1.6rem;
    padding: 14px 20px;
    font-weight: 500;
    border-radius: 30px; 
    transition: background-color 0.3s, transform 0.2s;
    box-sizing: border-box;
}
.reserve_btn:hover {
    background-color: #b02f2d;
    transform: translateY(-2px);
}


@media screen and (max-width: 800px) {
    .access_section {
        padding: 80px 8% 80px;
    }
    .access_content {
        flex-direction: column;
        gap: 30px;
    }
    .access_title img {
        width: 350px;
    }
    .access_title {
        margin-bottom: 30px;
    }
    .access_map {
        min-height: 300px;
    }
    .access_map iframe {
        min-height: 300px;
    }
    .shop_name {
        font-size: 2.4rem;
    }
    .access_row {
        font-size: 0.9rem;
    }       
    .access_row dt {
        width: 70px;
        min-width: 70px;
        font-size: 1.2rem;
        margin-right: 10px;
    }
    .access_row dd {
        font-size: 1.4rem;
    }
    .reserve_btn {
        font-size: 1.4rem;
        padding: 12px 15px;
        width: 100%;
        margin: 0 auto;
    }
}




/* ==========================================
    Hey!＆VIVA!周平
   ========================================== */
.shop_fv {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}
.hey_fv_logo {
    width: 180px;
    margin: 0 auto 10px;
}
.hey_fv_logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* スライダー本体 */
.fv_slider {
    width: 100%;
    height: 100%;
}
.fv_slider .swiper-slide {
    width: 100%;
    height: 100%;
}
.fv_slider .swiper-slide picture,
.fv_slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 右下の矢印ボタン */
.fv_next {
    right: 50px !important;
    bottom: 50px !important;
    top: auto !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
    background-color: #F2E8D5;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
    margin: 0 !important;
}

.fv_next::after {
    content: '' !important;
    width: 12px;
    height: 12px;
    border-top: 2px solid #301A0A;
    border-right: 2px solid #301A0A;
    transform: rotate(45deg); 
    margin-right: 4px; 
}


.hey_fv_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff;
    pointer-events: none; 
}

.viva_fv_logo {
    width: 130px;
    margin: 0 auto 10px;
}
.viva_fv_logo img {
    width: 100%;
    height: auto;
}

.access_dd_group {
    display: flex;
    flex-direction: column;
    gap: 4px; /* 2行の間の隙間 */
}

.br_name {
    display: none;
}
@media screen and (max-width: 880px) {
.br_name {
    display: inline;
}
}


@media screen and (max-width: 800px) {
    .shop_fv {
        height: 90vh;
    }
    .hey_fv_logo {
        width: 140px;
    }
    .viva_fv_logo {
        width: 80px;
    }
    .fv_next {
        right: 20px !important;
        bottom: 20px !important;
        width: 36px !important;
        height: 36px !important;
    }
    .fv_next::after {
        font-size: 1.4rem !important;
    }
    .recommend_text--bottom-right {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    }
}




/* ==========================================
    SHUHEI301
   ========================================== */
.page301 {
    background-color: #EDEDED;
}
.page301 p,
.page301 dt,
.page301 dd,
.page301 ul,
.page301 h4,
.page301 li {
    font-family: "Noto Serif JP", serif;
}
.shop4_fv_content {
    position: absolute;
    bottom: 100px;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
    padding: 0 60px;
}
.shop4_fv_title {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 75px;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 60px;
}
.shop4_fv_text { 
    font-family: "Noto Serif JP", serif;
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
}
.page301 .menu_box_ttl {
    font-weight: bold;
}
@media screen and (max-width: 800px) {
    .shop4_fv_content {           
        bottom: 12%;            
        max-width: none;  
        padding: 0 20px;  
    }
    .shop4_fv_title {
    font-size: 4.2rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 30px;
    }
    .shop4_fv_text { 
        font-size: 1.4rem;
        line-height: 2;
    }

}


/* コース */
.page301 .course_item_title {
    font-family:  "Shippori Mincho", serif;
    font-weight: 700;
}
.page301 .price_row dt,
.page301 .price_row dd{
    background-color: #EDEDED;
    font-weight: bold;
}


/* メニュー */
.menu_gallery {
    position: relative;
    width: 100%;
    padding: 200px 0;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

/* 背景の「Menu」文字 */
.menu_bg_text {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    position: absolute;
    top: 41%;
    right: 20px;
    line-height: 1.6;
    transform: translateY(25%);
    font-size: 180px;
    color: #ffffff;
    pointer-events: none;
    z-index: 3;
    white-space: nowrap;
}
@media screen and (min-width: 1550px){
    .menu_bg_text {
        top: 43%;
    }
}

/* ギャラリー全体グリッド（PC時） */
.menu_grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: center;
}

/* 写真枠共通設定 */
.menu_item {
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}
.menu_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.item_1 { grid-column: 1 / span 5; }
.item_2 { grid-column: 7 / span 5; margin-top: -30px; }
.item_3 { grid-column: 3 / span 4; margin-top: -100px;}
.item_4 { grid-column: 8 / span 5; }
.item_5 { grid-column: 2 / span 4; margin-top: -100px;}
.item_6 { grid-column: 1 / span 7; margin-bottom: 100px;}
.item_7 { grid-column: 9 / span 4; margin-top: 200px; }
.item_8 { grid-column: 3 / span 4; }
.item_9 { grid-column: 2 / span 4; grid-row: 6; margin-top: 100px;}
.item_10 { grid-column: 8 / span 4; grid-row: 6; margin-top: -300px; }



/* メニューフェードイン */
.menu_item {
    opacity: 0;
    transform: translateY(40px);
    transition: none; 
}

@keyframes menuFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu_item.is-visible {
    animation: menuFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

/* ディレイ設定 */
.menu_item.item_1.is-visible  { animation-delay: 0.1s !important; }
.menu_item.item_2.is-visible  { animation-delay: 0.2s !important; }
.menu_item.item_3.is-visible  { animation-delay: 0.3s !important; }
.menu_item.item_4.is-visible  { animation-delay: 0.4s !important; }
.menu_item.item_5.is-visible  { animation-delay: 0.5s !important; }
.menu_item.item_6.is-visible  { animation-delay: 0.6s !important; }
.menu_item.item_7.is-visible  { animation-delay: 0.7s !important; }
.menu_item.item_8.is-visible  { animation-delay: 0.8s !important; }
.menu_item.item_9.is-visible  { animation-delay: 0.9s !important; }
.menu_item.item_10.is-visible { animation-delay: 1.0s !important; }


@media screen and (max-width: 1024px) {
    .menu_bg_text {
        font-size: 150px;
        right: 10px;
        top: 40%;
    }
}

@media screen and (max-width: 800px) {
    .menu_gallery {
        padding: 100px 0;
    }
    .menu_grid {
        display: grid; 
        grid-template-columns: repeat(12, 1fr);
        gap: 25px;
        align-items: start; 
    }
    .item_1 { 
        grid-column: 1 / span 6; 
        grid-row: 1;            
        align-self: start;        
        margin-top: 0 !important; 
    }
    .item_2 { 
        grid-column: 7 / span 6; 
        grid-row: 1;             
        margin-top: 200px;        
    }
    .item_3  { grid-column: 1 / span 6; grid-row: 2; margin-top: 1px; }
    .item_4  { grid-column: 7 / span 6; margin-top: 50px; }
    .item_5  { grid-column: 1 / span 6; margin-top: -100px; }
    .item_6  { grid-column: 1 / span 10; margin-top: 70px; }
    .item_7  { grid-column: 7 / span 6; margin-top: -70px; }
    .item_8  { grid-column: 1 / span 6; grid-row: 5; margin-top: -10px; }
    .item_9  { grid-column: 1 / span 5;  margin-top: -20px; }
    .item_10 { grid-column: 6 / span 7;  margin-top: 80px; }

    .menu_bg_text {
        font-size: 150px;
        right: 10px;
        top: 35%;
    }
}

@media screen and (max-width: 700px) {
    .menu_bg_text {
        font-size: 70px;
        right: 10px;
        top: 39%;
    }
}


/* お席 */
#seats_block.seats_section {
    padding: 0;
    overflow: hidden;
}

#seats_block .seats_inner {
    margin: 0 auto;
}

#seats_block .seats_heading {
    text-align: center;
    margin-bottom: 70px;
}

#seats_block .seats_title {
    font-size: 32px;
    color: #C7393A;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 auto;
    position: relative;
    max-width: 1000px;
}
#seats_block .seats_title::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%); /* 中央寄せ */
    
    /* 下線画像の読み込みとサイズ指定 */
    width: 100%; /* ★画像の横幅（デザインに合わせて調整） */
    height: 10px; /* ★画像の高さ（デザインに合わせて調整） */
    background-image: url('assets/img/shuhei301/seat_line.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#seats_block .seats_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

/* ------------------------------------------
    PC表示（801px以上）：スライダー無効・3枚並び・矢印非表示
------------------------------------------ */
@media (min-width: 800px) {
    #seats_block .seats_swiper .swiper-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    #seats_block .seats_swiper .swiper-slide {
        width: calc((100% - 60px) / 3) !important;
    }

    /* PC時は矢印を非表示 */
    #seats_block .seats_swiper .seats_prev,
    #seats_block .seats_swiper .seats_next {
        display: none !important;
    }
}

/* ------------------------------------------
    スマホ表示（800px以下）：スライダー有効・矢印疑似要素表示
------------------------------------------ */
@media (max-width: 800px) {
    #seats_block .seats_swiper {
        position: relative;
        padding: 0 20px;
    }

    /* 左右の矢印ボタン（白丸ベース） */
    #seats_block .seats_swiper .seats_prev,
    #seats_block .seats_swiper .seats_next {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        z-index: 10;
        cursor: pointer;
    }

    /* 画面の両端に配置 */
    #seats_block .seats_swiper .seats_prev {
        left: 20px;
    }

    #seats_block .seats_swiper .seats_next {
        right: 20px;
    }

    /* 疑似要素（::after）で矢印を描画 */
    #seats_block .seats_swiper .seats_prev::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #333333;
        border-left: 2px solid #333333;
        transform: rotate(-45deg);
        margin-left: 4px;
    }

    #seats_block .seats_swiper .seats_next::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #333333;
        border-right: 2px solid #333333;
        transform: rotate(45deg);
        margin-right: 4px;
    }

    #seats_block .seats_swiper .seats_prev.swiper-button-disabled,
    #seats_block .seats_swiper .seats_next.swiper-button-disabled {
        display: none !important;
        opacity: 0;
        pointer-events: none;
    }
    #seats_block .seats_heading {
        margin-bottom: 50px;
    }
    #seats_block .seats_title {
        font-size: 2.8rem;
    }
}


/* アクセス */
.access301 dt,
.access301 dd{
    font-family: "Noto Sans JP", sans-serif;;
}

.access_heading {
    text-align: center;
    margin-bottom: 75px;
}

.access_301 {
    font-size: 32px;
    color: #C7393A;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    position: relative;
}
.access_301::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%); /* 中央寄せ */
    
    /* 下線画像の読み込みとサイズ指定 */
    width: 100%; /* ★画像の横幅（デザインに合わせて調整） */
    height: 10px; /* ★画像の高さ（デザインに合わせて調整） */
    background-image: url('assets/img/shuhei301/seat_line.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 800px) {
    .access_section {
        padding: 100px 20px; 
    }
    .access_inner {
        width: 100%;
    }
    .access_line {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        padding: 0 10px; 
    }
    .access_heading {
        margin-bottom: 50px;
    }
    .access_301 {
        font-size: 2.8rem;
    }
}




/* ==========================================
    採用情報
   ========================================== */
.recruit_header {
    position: relative; 
    text-align: center;
    padding: 180px 20px 0; 
    overflow: hidden; 
}

.recruit_title_img {
    max-width: 320px;
    margin: 0 auto 20px;
}

.recruit_title_img img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.recruit_lead {
    font-size: 1.6rem;
    font-weight: 500;
    color: #301A0A;
    position: relative;
    z-index: 2; 
    margin-top: 4%;
}

.recruit_cloud {
    position: absolute;
    pointer-events: none; 
    z-index: 1;
}

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

/* 左側の雲 */
.recruit_cloud--left {
    top: 80%;
    left: 0;
    transform: translateY(-50%);
    width: 25%;
    max-width: 280px;
}

/* 右側の雲 */
.recruit_cloud--right {
    top: 45%;
    right: 0;
    width: 25%;
    max-width: 280px;
}

.recruit {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 80px 20px;
    text-align: center;
}
.recruit_inner {
    margin: 0 auto;
}

/* メインキャッチ */
.recruit_catch {
    color: #C7393A; 
    position: relative;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 75px;
}

/* 下の赤い筆線画像 */
.recruit_catch::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 12px; 
    background-image: url('./assets/img/common/course_line.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.recruit_sub {
    width: 100%;
    max-width: 800px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
}
.recruit_text {
    font-size: 16px;
    line-height: 2;
    text-align: left; 
    display: inline-block; 
    margin-bottom: 50px;
}
.recruit_text p {
    margin-bottom: 8px;
}

/* ロゴマークリスト */
.recruit_logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
}
.recruit_logos img {
    max-height: 100px;
    width: 120px;
}
.recruit_logos img:first-child {
    width: 150px; 
    height: auto;
}
.recruit_logos li:nth-child(3) {
    margin-left: -40px;
}


/* 右下リンク */
.fixed_entry_btn {
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 999;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s ease;
}

.fixed_entry_btn:hover {
    opacity: 0.85;
}

.fixed_entry_icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -20px; 
    z-index: 5;
}
.fixed_entry_icon img {
    width: 90%;
    height: auto;
}

.fixed_entry_label {
    background-color: #E3200C; 
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 20px 20px;
    border-radius: 15px 0 0 15px; 
    writing-mode: vertical-rl; 
    letter-spacing: 0.15em;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.15);
}


@media screen and (max-width: 800px) {
    .recruit {
        padding: 40px 20px;
    }
    .recruit_header {
        padding-top: 100px;
    }
    .recruit_catch {
        font-size: 26px;
        margin-bottom: 50px;
    }
    .recruit_sub {
        font-size: 20px;
    }
    .recruit_text {
        font-size: 14px;
    }
    .recruit_logos {
        gap: 10px;
    }
    .recruit_logos img {
        max-height: 70px;
    }
    .recruit_logos img:first-child {
        width: 110px; 
        height: auto;
    }
    .recruit_logos li:nth-child(3) {
        margin-left: -30px;
    }
    .recruit_logos li:nth-child(3) img {
        width: 120px; 
        height: auto;
    }
    .fixed_entry_label {
        padding: 15px 15px 15px;
        font-size: 16px;
    }
    .fixed_entry_icon {
        width: 50px;
        height: 50px;
        margin-bottom: -14px;
    }
}


/* --- 募集職種セクション全体 --- */
.job {
    max-width: 1000px;
    margin: 0 auto;
    padding: 180px 20px;
    text-align: center;
}
.job_title {
    color: #c7393a;
    position: relative;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 75px;
}

/* 下の赤い筆線画像 */
.job_title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 12px; 
    background-image: url('./assets/img/common/course_line.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.job_container {
    display: flex;
    justify-content: center;
    gap: 5%;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- カード本体 --- */
.job_card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 50px 30px 40px;
    width: 100%;
    max-width: 430px;
    position: relative;
    box-sizing: border-box;

    box-shadow: 8px 4px 15px rgba(0, 0, 0, 0.5);;
}

.job_card::before,
.job_card::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 45%;
    height: 20px;
    max-width: 300px;
    background: transparent;
    box-shadow: 0 12px 10px rgba(0, 0, 0, 0.35); 
    z-index: -1; 
}
/* 左下の斜め影 */
.job_card::before {
    left: 8px;
    transform: rotate(-5deg); /* 左に3度傾ける */
}
/* 右下の斜め影 */
.job_card::after {
    right: 8px;
    transform: rotate(5deg);  /* 右に3度傾ける */
}

.job_pin {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    z-index: 2;
}
.job_pin img {
    width: 100%;
    height: auto;
    display: block;
}

/* カード内見出し */
.job_card_title {
    color: #c7393a;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 2.5px solid #c7393a; 
}

.job_card_img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 30px;
}
.job_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.job_btn_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- ボタン共通スタイル--- */
.job_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 21px;
    border: 2px solid #c7393a;
    border-radius: 999px; 
    color: #c7393a;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

/* 右矢印（>） */
.job_btn::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #c7393a;
    border-right: 2px solid #c7393a;
    transform: rotate(45deg); 
    transition: border-color 0.3s ease, transform 0.3s ease;
}

/* --- ホバー時 --- */
.job_btn:hover {
    background-color: #c7393a;
    color: #ffffff;
}
.job_btn:hover::after,
.job_btn--active::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
}


@media screen and (max-width: 800px) {
    .job {
        padding: 80px 8%;
    }
    .job_title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    .job_container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .job_card {
        max-width: 100%;
        padding: 30px 20px 30px;
    }
    .job_card_title {
        font-size: 24px;
    }
    .job_title_line {
        margin-bottom: 40px;
        width: calc(100% + 40px);
    }
    .job_title_line img {
        width: 100%;
        height: auto;
    }
    .job_btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}


/* --- 募集要項セクション全体 --- */
.requirements {
    padding: 0 20px;
    padding-bottom: 100px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* タイトル */
.requirements_title {
    color: #c7393a;
    position: relative;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 75px;
}
/* 下の赤い筆線画像 */
.requirements_title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 12px; 
    background-image: url('./assets/img/common/course_line.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* コンテンツの内枠 */
.requirements_inner {
    margin: 0 auto;
    text-align: left;
}

/* 黒背景の見出しバー */
.requirements_job_title {
    background-color: #301A0A; 
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    padding: 5px 10px;
    margin: 50px 0;
}

/* --- 要項リスト（テーブル形式） --- */
.requirements_list {
    margin-top: 40px;
    padding: 0;
    border-top: 1px solid #301A0A; 
}

/* 各行 */
.requirements_row {
    display: flex;
    border-bottom: 1px solid #301A0A; 
    padding: 24px 10px;
}

/* 左列（項目名） */
.requirements_row dt {
    width: 200px;
    flex-shrink: 0; 
    font-size: 16px;
    color: #301A0A;
    line-height: 1.6;
}

/* 右列（内容） */
.requirements_row dd {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
    color: #301A0A;
    line-height: 1.8;
}

/* 年収例ボックス */
.salary_example {
    margin-top: 18px;
    line-height: 1.7;
}


@media screen and (max-width: 800px) {
    .requirements {
        padding: 50px 20px;
    }
    .requirements_title  {
        font-size: 32px;
        margin-bottom: 50px;
    }
    .requirements_title_line {
        margin-bottom: 40px;
        width: calc(100% + 40px);
    }
    .requirements_title_line img {
        width: 100%;
        height: auto;
    }
    .requirements_job_title {
        font-size: 20px;
        margin: 30px 0;
    }

    .requirements_row {
        flex-direction: column;
        gap: 8px;
        padding: 18px 5px;
    }

    .requirements_row dt {
        width: 100%;
        color: #c7393a; 
    }

    .requirements_row dd {
        font-size: 14px;
    }
}



/* --- 募集店舗一覧セクション --- */
.recruit_shops {
    padding: 80px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* タイトル */
.recruit_shops_title {
    color: #c7393a;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 75px;
}

/* 下の赤い筆線画像 */
.recruit_shops_title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 12px; 
    background-image: url('./assets/img/common/course_line.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- カードグリッド配置（3列） --- */
.recruit_shops_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ポラロイド風カード本体 */
.recruit_shop_card {
    position: relative;
}

/* カードの内枠 */
.recruit_shop_card_inner {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px 12px 14px;
    box-shadow: 8px 4px 15px rgba(0, 0, 0, 0.5);
}

/* --- 下部左右のめくれ影 --- */
.recruit_shop_card_inner::before,
.recruit_shop_card_inner::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 45%;
    height: 20px;
    max-width: 300px;
    background: transparent;
    box-shadow: 0 12px 10px rgba(0, 0, 0, 0.35); 
    z-index: -1; 
}
/* 左下の斜め影 */
.recruit_shop_card_inner::before {
    left: 8px;
    transform: rotate(-7deg); /* 左に3度傾ける */
}
/* 右下の斜め影 */
.recruit_shop_card_inner::after {
    right: 8px;
    transform: rotate(7deg);  /* 右に3度傾ける */
}


/* ピン画像 */
.recruit_shop_pin {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    z-index: 2;
}
.recruit_shop_pin img {
    width: 100%;
    height: auto;
    display: block;
}

/* 店舗写真 */
.recruit_shop_img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 12px;
}
.recruit_shop_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 店舗情報テキストエリア */
.recruit_shop_info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* エリアタグ（五橋・榴岡） */
.recruit_shop_tag {
    background-color: #301A0A;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* 店名 */
.recruit_shop_name {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}


@media screen and (max-width: 850px) {
    .recruit_shops_list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 650px;
    }
    .recruit_shops_title {
        font-size: 30px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 550px) {
    .recruit_shops_list {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 30px;
    }
    
    .recruit_shops {
        padding: 50px 15px;
    }
}


/* --- 応募方法--- */
.recruit_entry {
    padding: 80px 20px 100px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* タイトル */
.recruit_entry_title {
    color: #c7393a;
    position: relative;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 75px;
}

/* 下の赤い筆線画像 */
.recruit_entry_title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 12px; 
    background-image: url('./assets/img/common/course_line.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

/* 説明文 */
.recruit_entry_lead {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* ボタン配置コンテナ */
.recruit_entry_btns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.recruit_entry_btn_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

/* --- ボタン共通スタイル --- */
.entry_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 80px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.entry_btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* アイコンサイズ */
.entry_btn_icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* 1. 電話ボタン（ダークブラウン背景） */
.entry_btn--tel {
    background-color: #301A0A;
}

/* 電話受付時間 */
.tel_time {
    margin-top: 12px;
    font-size: 16px;
}

/* 2. Instagramボタン */
.entry_btn--insta {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}


@media screen and (max-width: 800px) {
    .recruit_entry_title {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .recruit_entry {
        padding: 50px 15px;
    }

    .recruit_entry_lead {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .recruit_entry_btns {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .recruit_entry_btn_wrap {
        width: 100%;
        max-width: 320px;
    }

    .entry_btn {
        height: 60px;
        font-size: 16px;
    }

    .tel_time {
        font-size: 14px;
    }
}



/* ==========================================
    お知らせ
   ========================================== */
.information_page {
    padding: 80px 20px;
}

.information_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* --- 左サイドバー：カテゴリーナビ --- */
.information_sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 20%; /* スクロール時に画面上部に固定追従 */
}

.information_nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.information_nav_item {
    border-bottom: 1px solid rgba(48, 26, 10, 0.3);
    margin-left: 18px;  
    margin-right: 18px; 
}
.information_nav_item:last-child {
    border-bottom: none;
}

/* 矢印を配置するリンク要素 */
.information_nav_item {
    display: block;
    position: relative;
    padding: 16px 40px 16px 0; 
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* 矢印の「横軸」 */
.information_nav_item::before {
    content: '';
    position: absolute;
    right: 8px; 
    top: 50%;
    background-color: #301A0A;
    transform: translateY(-50%);
    width: 14px;
    height: 2px; 
    transition: right 0.3s ease;
}

/* 矢印の「先端」 */
.information_nav_item::after {
    content: '';
    position: absolute;
    right: 8px; 
    top: 50%;
    width: 10px;        
    height: 10px;
    border-top: 2px solid ;
    border-right: 2px solid;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease;
}

/* ホバー時の「位置スライド」と「赤色変更」 */
.information_nav_item:hover::before {
    right: 3px; 
    background-color: #C84141; 
}

.information_nav_item:hover::after {
    right: 3px; 
    border-top-color: #C84141; 
    border-right-color: #C84141;
}

.information_nav_item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.news_nav_item a .arrow {
    color: #c7393a;
    font-size: 16px;
    transition: transform 0.2s ease;
}

/* カレント（選択中）およびホバー状態 */
.information_nav_item a:hover {
    color: #c7393a;
}

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

/* --- 右メインコンテンツ：記事カード --- */
.information_main {
    flex-grow: 1;
    min-width: 0; /* flex崩れ防止 */
}

.information_list {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

/* 各記事カード */
.information_card_meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

/* 日付 */
.information_card_date {
    font-size: 12px;
    font-family: "Noto Serif JP", serif;
    background-color: #ffffff;
    padding: 4px 3px;
    font-weight: bold ;
}

/* タグ（ALL / 本店 など） */
.information_card_tag {
    background-color: #301A0A;
    font-family: "Noto Serif JP", serif;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 13px;
    border-radius: 12px;
    line-height: 1.2;
}

/* 記事タイトル */
.information_card_title {
    color: #c7393a;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 1px solid #c7393a  ; 
    margin-bottom: 50px;
}

/* 記事本文 */
.information_card_body {
    font-size: 16px;
    line-height: 1.9;
}

.information_card_body p {
    margin-bottom: 1.2em;
}
.information_card_body p:last-child {
    margin-bottom: 0;
}

/* 本文内の画像枠 */
.information_card_img {
    margin-top: 20px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    
    /* サイズを固定指定 */
    max-width: 600px;
    width: 100%;
    
    margin-left: auto;
    margin-right: auto;
}

/* 本文内の画像本体 */
.information_card_img img {
    width: 100%;
    height: 100%; /* ★枠の高さ（350px）に合わせる */
    object-fit: cover; /* ★縦横比を崩さず枠いっぱいに綺麗に切り抜く */
    display: block;
}


.pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* 数字＆「次へ」ボタン共通 */
.pagination .page-numbers {
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* ホバー時 */
.pagination a.page-numbers:hover {
    background-color: rgba(46, 26, 14, 0.1);
}

/* 現在のページ（黒丸の背景） */
.pagination .page-numbers.current {
    background-color: #301A0A;
    color: #ffffff;
}

/* 「次へ」テキストリンク */
.pagination a.next {
    width: auto;
    height: auto;
    border-radius: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.pagination a.next:hover {
    background-color: transparent;
    color: #c7393a;
}


@media screen and (max-width: 800px) {
    .recruit_title_img {
        max-width: 250px;
    }
    .information_page {
        padding: 30px 15px 50px;
    }

    .information_inner {
        flex-direction: column;
        gap: 50px;
    }

    .information_sidebar {
        width: 100%;
        position: static;
    }

    .information_card_title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .information_card_body {
        font-size: 1.4rem;
    }

    .information_list {
        gap: 80px;
    }

    .pagination {
        margin-top: 50px;
    }
}

