@charset "UTF-8";

* {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    color: #1D201F;
}

:root {
    --font-size_26_40: clamp(1.625rem, 0.79rem + 3.56vw, 2.5rem);
    /* 画面幅375px以下の場合は26px 768px以上の場合は40px */

    --img_size_50_80: clamp(3.125rem, 1.336rem + 7.63vw, 5rem);
    /* 画面幅375px以下の場合は50px 768px以上の場合は80px */

    --btn_size_40_65: clamp(2.5rem, 1.009rem + 6.36vw, 4.063rem);
    /* 画面幅375px以下の場合は40px 768px以上の場合は65px */
}


/*【START】ヘッダー
===================================================================================*/


/* ヘッダーロゴ */
.area_logo_common_header {
    padding: 0 10px;
    position: absolute;
    z-index: 10;
    top: 10px;
}

.area_logo_common_header img {
    height: 40px;
}

/* ヘッダーナビゲーション */
.area_nav_common_header {
    display: none;
}

/* ハンバーガーボタン開いた画面 */
.navArea_header {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/common/washi_background_img.jpg);
    position: fixed;
    background-color: #fff;
    top: 0;
    right: -100%;
    bottom: 0;
    transition: all 0.5s;
    z-index: 10001;
    opacity: 0;
}

.open .navArea_header {
    right: 0;
    opacity: 1;
}

.navArea_header .inner {
    height: 100%;
    text-align: center;
    /* padding: 50px 0; */
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.navArea_header .inner ul li a {
    display: inline-block;
    margin: 1rem 0;
    transition-duration: 0.2s;
    font-size: 18px;
}

.navArea_header .inner ul li:last-child {
    margin-bottom: 1.5rem;
}


.navArea_header .inner ul li a:hover {
    color: #AA1D1D;
}

#mask {
    display: none;
    transition: all 0.5s;
}

.open #mask {
    display: block;
    background-color: #1D201F;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    cursor: pointer;
    z-index: 100;
}

.toggle-btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 0;
    width: 50px;
    height: 50px;
    background: #AA1D1D;
    box-shadow: -6px 3px 5px -2px #1d201f;
    border-top-left-radius: 0.6rem;
    border-bottom-left-radius: 0.6rem;
    cursor: pointer;
    z-index: 100002;
}

/* ハンバーガーボタン */
.toggle-btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 0;
    width: 50px;
    height: 50px;
    background: #AA1D1D;
    box-shadow: -6px 3px 5px -2px #1d201f;
    border-top-left-radius: 0.6rem;
    border-bottom-left-radius: 0.6rem;
    cursor: pointer;
}

.toggle-btn span {
    position: absolute;
    display: block;
    right: 8px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform: all 0.5s;
    border-radius: 4px;
}

.toggle-btn span:nth-child(1) {
    top: 15px;
}

.toggle-btn span:nth-child(2) {
    top: 25px;
}

.toggle-btn span:nth-child(3) {
    top: 35px;
}

.open .toggle-btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
}

.open .toggle-btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
}

/*===================================================================================
【END】ヘッダー*/





/*【START】h2タイトル
===================================================================================*/

.common_title {
    writing-mode: vertical-lr;
    font-size: var(--font-size_26_40);
    letter-spacing: clamp(0.313rem, 0.194rem + 0.5vw, 0.625rem);
}

.common_title::before {
    content: '';
    display: inline-block;
    border: solid #aa1d1d7a 1px;
    height: clamp(1.25rem, 0.777rem + 2.02vw, 2.5rem);
    margin-bottom: 5px;
}

.common_title span {
    color: #AA1D1D;
}

.common_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 100px;
    width: 100%;
}

.common_title_img_4moji {
    width: var(--img_size_50_80);
    height: var(--img_size_50_80);
    position: absolute;
    top: 85%;
}

.common_title_img_6moji {
    width: var(--img_size_50_80);
    height: var(--img_size_50_80);
    position: absolute;
    top: 90%;
}

/*===================================================================================
【END】h2タイトル*/





/*【START】「ご来店の方へ」ボタン
===================================================================================*/

.btn_announce {
    writing-mode: vertical-lr;
    width: 50px;
    height: 120px;
    cursor: pointer;
    background: #D8BE7D;
    box-shadow: -6px 3px 5px -2px #1d201f;
    border-top-left-radius: 0.6rem;
    border-bottom-left-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 2px;
    position: fixed;
    right: 0;
    top: 380px;
    z-index: 10002;
}

/*===================================================================================
【END】「ご来店の方へ」ボタン*/





/*【START】「ご予約」ボタン
===================================================================================*/

.btn_reserve {
    writing-mode: vertical-lr;
    width: 50px;
    height: 120px;
    cursor: pointer;
    background: #AA1D1D;
    box-shadow: -6px 3px 5px -2px #1d201f;
    color: #fff;
    border-top-left-radius: 0.6rem;
    border-bottom-left-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 3px;
    position: fixed;
    right: 0;
    top: 510px;
    z-index: 10002;
}

.btn_reserve img {
    width: 20px;
    height: 20px;
}

/*===================================================================================
【END】「ご予約」ボタン*/



/*【START】フッター
===================================================================================*/

.common_footer {
    background-image: url(../images/common/washi_background_img.jpg);
    background-repeat: repeat;
    padding-bottom: 30px;
}

.common_footer_inner {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 60px;

}

.inquiry_btn {
    background-color: #AA1D1D;
    width: 220px;
    height: 95px;
    border-radius: 10px;
    margin: 0 auto;
    padding: 10px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    margin-bottom: 50px;
    justify-items: center;
    align-items: center;

}

.inquiry_btn img {
    grid-column: 1/2;
    grid-row: 1/2;
}

.inquiry_btn_tel {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    grid-column: 2/3;
    grid-row: 1/2;
}

.inquiry_btn_text_weekdays {
    color: #fff;
    font-size: 14px;
    grid-column: 2/3;
    grid-row: 2/3;
    letter-spacing: 1.5px;
}

.inquiry_btn_text_holiday {
    color: #fff;
    font-size: 14px;
    grid-column: 2/3;
    grid-row: 3/4;
    letter-spacing: 1.5px;
}

.inquiry_btn_text_vertical {
    color: #fff;
    display: block;
    font-size: 14px;
    grid-column: 1/2;
    grid-row: 2/4;
    writing-mode: vertical-lr;
}

.area_nav_common_footer {
    margin-bottom: 30px;
}

.list_area_nav_common_footer li {
    border-bottom: 1px solid #D8BE7D;
    padding-top: 10px;
    padding-bottom: 10px;
}

.list_area_nav_common_footer li:hover {
    color: #AA1D1D;
}

.footer_logo {
    width: 150px;
}

.footer_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 30px;
}

.footer_text_p {
    margin-bottom: 30px;
}

.copy_write {
    text-align: center;
    font-size: 10px;
    border-bottom: 1px solid #D8BE7D;
}

/* PCフッター非表示 */
.common_footer_inner_pc {
    display: none;
}

/* PCコピーライト非表示*/
.copy_write_pc {
    display: none;
}

/*===================================================================================
【END】フッター*/



/*【START】フェードイン
===================================================================================*/

/* フェードインさせる要素 */
.scroll_fadein {
    opacity: 0;
    /* 最初は非表示にしておく */
    transition: all 1s;
    /* 動きを滑らかに */
}

/* フェードイン用のクラス */
.fadeIn {
    opacity: 1;
}

/*===================================================================================
【END】フェードイン*/




/*===================================================================================================================
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓レスポンシブ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
=====================================================================================================================*/

@media (min-width: 768px) {


    /*【START】ヘッダー
    ===================================================================================*/

    /* ヘッダー */

    .fixed_common_header-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        opacity: 1;
        visibility: visible;
        animation: slide 0.5s ease-in-out;
        z-index: 1000;
    }

    .fixed_common_header {
        background-image: url(../images/common/header.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        z-index: 1000;
        transition: .5s;
    }

    @keyframes slide {
        0% {
            transform: translateY(-100%);
        }

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


    .common_header_inner {
        width: min(80%, 1166px);
        margin: 0 auto;
        height: 100px;
        display: flex;
        align-items: center;
    }

    /* ヘッダーロゴ */
    .area_logo_common_header {
        display: block;
        position: unset;
    }

    .area_logo_common_header img {
        width: 150px;
        height: auto;
    }

    /* ヘッダーナビゲーション */
    .area_nav_common_header {
        display: block;
        margin-left: auto;
    }

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

    .list_area_nav_common_header>li+li {
        margin-left: 30px;
    }

    .list_area_nav_common_header a {
        color: #1D201F;
        font-weight: 500;
        font-size: 18px;
    }

    .list_area_nav_common_header a:hover {
        color: #AA1D1D;
    }

    /*===================================================================================
    【END】ヘッダー*/





    /*【START】「ご来店の方へ」ボタン
    ===================================================================================*/
    .btn_reserve {
        display: none;
    }

    /*===================================================================================
    【END】「ご来店の方へ」ボタン*/





    /*【START】「ご予約」ボタン
    ===================================================================================*/

    .btn_announce {
        background: #AA1D1D;
        color: #fff;
        width: 65px;
        height: 175px;
        font-size: 18px;
    }

    /*===================================================================================
    【END】「ご予約」ボタン*/





    /*【START】フッター
    ===================================================================================*/

    /* SPフッター非表示*/
    .common_footer_inner {
        display: none;
    }

    /* SPコピーライト非表示*/
    .copy_write {
        display: none;
    }

    /* フッターインナー */
    .common_footer_inner_pc {
        display: block;
        width: min(90%, 1166px);
        display: flex;
        justify-content: space-between;
        padding: 100px 0;
        margin: 0 auto;
    }

    /* ロゴエリア */
    .area_logo_common_footer_pc {
        display: block;
        line-height: 40px;
    }

    .common_footer_inner_pc p:nth-of-type(1) {
        font-size: 18px;
    }

    .common_footer_inner_pc a:nth-of-type(2) {
        font-size: 28px;
        font-weight: bold;
    }

    .common_footer_inner_pc p:nth-of-type(2) {
        font-size: 18px;
        line-height: 24px;
    }

    /* ナビゲーションエリア */
    .list_area_nav_common_footer_pc {
        display: flex;
    }

    .list_area_nav_common_footer_pc>li+li {
        margin-left: 30px;
    }

    .list_area_nav_common_footer_pc li:hover {
        color: #AA1D1D;
    }

    .copy_write_pc {
        text-align: right;
        font-size: 14px;
        padding-bottom: 30px;
        width: min(90%, 1166px);
        margin: 0 auto;
        display: block;
    }

    .common_footer_pc_border_bottom {
        border-bottom: 1px solid #D8BE7D;
        margin-bottom: 30px;
    }







    /*===================================================================================
    【END】フッター*/



    /*【START】PC版ハンバーガーメニュー
    ===================================================================================*/
    /* ハンバーガーボタン */
    .toggle-btn {
        width: 65px;
        height: 65px;
        /* display: none; */
    }

    .toggle-btn span {
        right: 12.5px;
        width: 40px;
        height: 2px;
    }

    .toggle-btn span:nth-child(1) {
        top: 22px;
    }

    .toggle-btn span:nth-child(2) {
        top: 32.5px;
    }

    .toggle-btn span:nth-child(3) {
        top: 43px;
    }

    .navArea_header {
        width: 40vw;
    }

    .navArea_header {
        width: 50%;
    }
}
    /*===================================================================================
    【END】PC版ハンバーガーメニュー*/


        /*【START】フッターナビ　レスポンシブ追加
    ===================================================================================*/

@media (min-width: 800px) {

    .list_area_nav_common_header>li+li {
        margin-left: 40px;
    }
}

    /*===================================================================================
    【END】】フッターナビ　レスポンシブ追加*/
