@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    vertical-align: baseline;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Zen Kaku Gothic New', "BIZ UDGothic", "BIZ UDPGothic", serif;
    font-style: normal;
    font-weight: 500;
    max-width: 2000px;
    background: #fff;
    color: #000000;
    font-size: 16px;
    margin: auto;
    overflow: hidden;
}

body.jptype {
    font-family: 'Zen Old Mincho', YuMincho, 游明朝, Hiragino Mincho ProN, HGS明朝B, "ＭＳ Ｐ明朝", sans-serif;
    background: #fff url(../images/bg.jpg) repeat;
}

body.scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}


img {
    border: 0px;
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
}


/* ローディング */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgb(254, 254, 248, .95);
    text-align: center;
}

#loading_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading_text {
    padding-top: 30px;
    text-align: center;
}

#loading .loadingArea {
    width: 100%;
}

#loading .loadingArea figure {
    text-align: center;
}

#loading .loadingArea figure img {
    max-width: 200px;
    height: auto;
}

body.aburiya #loading .loadingArea figure img,
body.aburiya #loading .loadingArea figure img {
    max-width: 150px;
}

body.kushiro #loading .loadingArea figure img,
body.kakurega #loading .loadingArea figure img,
body.manekiya #loading .loadingArea figure img {
    max-width: 180px;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.2s;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
    opacity: 1;
}

@keyframes fadeUpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}



a {
    display: block;
    transition: 1s;
    word-break: break-all;
    color: #DFB320;
}

a:hover {
    display: block;
    opacity: .6;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}



/* ---------------------------------------------------------
 基本レイアウト
----------------------------------------------------------*/
/* =====headerarea===== */

#header {
    width: 100%;
    z-index: 500;
    transition: all .2s;
    position: relative;
    border-top: 2px solid #CB9C00;
}

#header a {
    color: #000000;
}

#header .nav_p {
    height: calc(100% - 2px);
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    align-items: flex-end;
}

#header .nav_p .main_nav_wp {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    align-items: flex-end;
}

#header .logo {
    width: 250px;
    max-width: 250px;
    height: 68px;
    /* border分マイナス */
}

#header .logo a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px 0;
}

#header .mask_logo_image {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;
    mask: url("../images/logo_hokkaido_b.svg") no-repeat center bottom / contain;
    -webkit-mask: url("../images/logo_hokkaido_b.svg") no-repeat center bottom / contain;
}

#header .mask_logo_image:hover {
    background: #6C1100;
}



#header .nav_main, #header .nav_sub {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

#header .nav_main {
    margin-left: 15px;
}

#header .nav_main li {
    line-height: 1;
}


#header .nav_main li a {
    font-size: 16px;
    padding: 15px 10px;
    overflow: hidden;
    position: relative;
    font-weight: 700;
    z-index: 1;
}


#header .nav_main li a::after {
    background: #DFB320;
    position: absolute;
    top: -100%;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1;
}

#header .nav_main li a:hover {
    opacity: 1;
    color: #fff;
}

#header .nav_main li a:hover::after {
    top: 0;
    color: #fff;
}



#header .nav_sub_menu {
    margin-left: auto;
}

#header .nav_sub li a {
    font-size: 12px;
    padding: 0.75em 0.8em;
    position: relative;
    z-index: 1;
}

#header .nav_sub li a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    width: calc(100% - 1.6em);
    height: 2px;
    margin: auto;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    background: #DFB320;
    content: '';
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
}

#header .nav_sub li a:hover::after {
    transform: scale(1, 1);
}


#header .nav_sub:first-child li a {
    font-size: 11px;
}

/*150スクロール後*/
#header.nav_fixed {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    background-color: rgba(255, 255, 255, .95);
    border-bottom: 1px solid #D9C000;
}

#header.nav_fixed .nav_p {
    align-items: flex-end;
}

#header .nav_open_block, #menu_btn_check, #header .logo.sp {
    display: none;
}

@media screen and (min-width: 881px) {

    /* PC表示の時のみドロップダウンメニュー */

    #header.nav_fixed .nav_main li a {
        height: 100%;
    }

    #header .nav_main li.nav_inner_list_nav_brand .inner_nav_container {
        visibility: hidden;
        width: 100%;
        /*        height: 315px; 4段 */
        height: 250px;
        position: absolute;
        top: 68px;
        /* border分マイナス */
        left: -100%;
        background-color: #000;
        opacity: 0;
        /*不透明度0*/
        transition: all .3s;
        overflow: hidden;
        padding: 0 20px 10px;
    }

    #header .nav_main li.nav_inner_list_nav_brand .inner_nav_container img {
        width: auto;
        height: 40px;
    }

    #header .nav_main li.nav_inner_list_nav_brand .inner_nav_container .list_nav_brand,
    #header .nav_main li.nav_inner_list_nav_brand .inner_nav_container .list_nav_brand .item {
        height: 60px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #header .nav_main li.nav_inner_list_nav_brand:hover .inner_nav_container {
        visibility: visible;
        opacity: 1;
        left: 0;
    }

}

@media screen and (max-width: 880px) {
    #header .nav_p .main_nav_wp {
        flex-direction: column;
    }

    #header .logo.sp {
        display: block;
        position: absolute;
        top: 0px;
        left: 20px;
        width: 200px;
    }

    /* 880以上非表示 ドロワーメニュー css */
    #header .menu_btn {
        position: absolute;
        top: 0px;
        right: 10px;
        display: -webkit-box;
        display: flex;
        height: 68px;
        width: 68px;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        z-index: 501;
        cursor: pointer;
    }

    #header .menu_btn span,
    #header .menu_btn span:before,
    #header .menu_btn span:after {
        content: '';
        display: block;
        width: 34px;
        color: #000000;
        position: absolute;
        text-align: center;
        transition: all .4s;
    }

    #header .menu_btn span {
        top: 30px;
        right: 13px;
    }

    #header .menu_btn span:nth-of-type(1)::before,
    #header .menu_btn span:nth-of-type(1)::after {
        height: 2px;
        border-radius: 2px;
        background-color: #000000;
    }

    #header .menu_btn span:nth-of-type(1)::before {
        bottom: 6px;
    }

    #header .menu_btn span:nth-of-type(1)::after {
        top: 0px;
        width: 25px;
    }

    #header .menu_btn span:nth-of-type(2)::after {
        content: "Menu";
        position: absolute;
        top: 8px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 8px;
        text-transform: uppercase;
    }

    #header #menu_btn_check:checked~.menu_btn span:nth-of-type(1)::before {
        bottom: 2px;
        transform: rotate(45deg);
    }

    #header #menu_btn_check:checked~.menu_btn span:nth-of-type(1)::after {
        top: -5px;
        width: 34px;
        transform: rotate(-45deg);
    }

    #header #menu_btn_check:checked~.menu_btn span:nth-of-type(2)::after {
        content: "Close";
    }

    #menu_btn_check:checked~.nav_p {
        left: 0;
        /*メニューを画面内へ*/
    }

    #header .nav_p {
        width: 100%;
        height: 100%;
        overflow: auto !important;
        position: fixed;
        top: 0;
        left: 100%;
        /*メニューを画面外へ*/
        z-index: 500;
        background-color: rgb(254, 254, 248, .95);
        transition: all 0.5s;
        display: block;
    }

    /* SP時メニュー */
    #header #menu_btn_check:checked~.nav_p .logo {
        margin-right: auto;
        margin-left: auto;
        margin-top: 30px;
    }

    #header .nav_main {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
        margin-right: auto;
        margin-left: auto;
        -webkit-box-pack: center;
        justify-content: center;
    }

    #header .nav_sub_menu {
        margin-left: auto;
        margin-right: auto;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    #header .nav_sub_menu .nav_sub:nth-child(2) {
        order: 2;
        -webkit-box-pack: start;
        justify-content: flex-start;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        text-align: center;
    }

    #header .nav_sub_menu .nav_sub:nth-child(2) li a::after {
        position: absolute;
        right: 0;
        bottom: auto;
        top: 0;
        left: 0;
        width: calc(100% - 1.6em);
        height: 100%;
        margin: auto;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: center;
        transform-origin: center;
        background: #DFB320;
        content: '';
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        z-index: -1;
    }

    #header .nav_sub_menu .nav_sub:nth-child(2) li a:hover {
        color: #fff;
    }

    #header .nav_sub_menu .nav_sub:nth-child(2) li a:hover::after {
        transform: scale(1, 1);
    }

    #header .nav_sub_menu .nav_sub:first-child {
        order: 3;
        margin-top: 3em;
        text-align: center;
        flex-wrap: wrap;
    }

    #header .nav_sub_menu .nav_sub:first-child li {
        width: 100%;
    }

}



/* 画像付きブランドナビリスト */
.list_nav_brand {
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.list_nav_brand .item {
    flex: 0 1 23%;
    margin-top: 15px;
    margin-right: 1%;
    margin-left: 1%;
    box-sizing: border-box;
    position: relative;
}

@media screen and (max-width: 880px) {
    .list_nav_brand .item {
        margin-top: 0px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 580px) {
    .list_nav_brand .item {
        flex: 0 1 30%;
        margin-right: 1.5%;
        margin-left: 1.5%;
    }
}

.list_nav_brand .item figure a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}

.list_nav_brand .item figure {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    height: 100%;
}

@media screen and (max-width: 880px) {
    .list_nav_brand .item figure {
        min-height: 100px;
    }
}

.list_nav_brand .item figure img {
    height: 80%;
    width: auto;
    max-width: 80%;
}


.list_nav_brand .item.beerlion figure {
    background-image: url(../images/bg_brand_images_beerlion.webp);
}

.list_nav_brand .item.brewery figure {
    background-image: url(../images/bg_brand_images_brewery.webp);
}

.list_nav_brand .item.yebisu-bar figure {
    background-image: url(../images/bg_brand_images_yebisu-bar.webp);
}

.list_nav_brand .item.newsanko figure {
    background-image: url(../images/bg_brand_images_newsanko.webp);
}

.list_nav_brand .item.otarusanko figure {
    background-image: url(../images/bg_brand_images_otarusanko.webp);
}

.list_nav_brand .item.aburiya figure {
    background-image: url(../images/bg_brand_images_aburiya.webp);
}

.list_nav_brand .item.kakurega figure {
    background-image: url(../images/bg_brand_images_kakurega.webp);
}

.list_nav_brand .item.kushiro figure {
    background-image: url(../images/bg_brand_images_kushiro.webp);
}

.list_nav_brand .item.manekiya figure {
    background-image: url(../images/bg_brand_images_manekiya.webp);
}

.list_nav_brand .item.yamagoya figure {
    background-image: url(../images/bg_brand_images_yamagoya.webp);
}

.list_nav_brand .item.leisure figure {
    background-image: url(../images/bg_brand_images_leisure.webp);
}

.list_nav_brand .item.sobamae figure {
    background-image: url(../images/bg_brand_images_sobamae.webp);
}

.list_nav_brand .item.beer-bar-the-sapporo-stars figure {
    background-image: url(../images/bg_brand_images_beer-bar-the-sapporo-stars.webp);
}


.list_nav_brand .item figure::before {
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: 1s;
}

.list_nav_brand .item:hover figure::before {
    background-color: rgba(0, 0, 0, 0);
}










/* mainエリア共通 */
#main {
    position: relative;
    z-index: 0;
    min-height: 800px;
    padding-bottom: 180px;
    background-image: url(../../images/illust_sapporo.svg);
    background-repeat: no-repeat;
    background-position: 95% 100%;
    background-size: 50%;
}

#main::after {
    content: "";
    display: block;
    z-index: -1;
    height: 600px;
    width: 600px;
    position: absolute;
    bottom: 5%;
    left: 0;
    opacity: .1;
    background-image: url(../images/bg_hokkaido.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 600px;
}

#main .ttl {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    align-items: center;
    min-height: 7em;
    margin-bottom: 70px;
    background-image: url(../images/bg_group_company.webp);
    background-size: cover;
    background-position: center center;
}

#main .ttl::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, .75);
    z-index: 1;
}

@media screen and (max-width: 880px) {
    #main .ttl {
        margin-top: 80px;
    }
}

/* ページナビ */
/*h2*/
#main .page_title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    letter-spacing: .1em;
    font-weight: 700;
}

.jptype #main .page_title {
    color: #000;
}

#main .nav_page ul {
    display: -webkit-box;
    display: flex;
    justify-content: center;
    background-color: #D5A300;
}

#main .nav_page a {
    /*    writing-mode: vertical-lr;
    text-orientation: upright;*/
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 0.55em 0.8em 0.55em 0.9em;
}

#main .nav_page a span {
    display: block;
    font-size: 10px;
}

#main .nav_page a::after {
    background: #DFB320;
    position: absolute;
    top: -100%;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1;
}

#main .nav_page a:hover {
    opacity: 1;
    color: #fff;
}

#main .nav_page a:hover::after {
    top: 0;
    color: #fff;
}

/*150スクロール後*/
#main .nav_page.nav_page_fixed {
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    background: rgb(204, 63, 0);
    background: linear-gradient(135deg, rgba(204, 63, 0, 0.95) 10%, rgba(209, 193, 0, 0.95) 100%);
    z-index: 501;
}

#main .nav_page.nav_page_fixed ul {
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    justify-content: center;
}


@media screen and (max-width: 880px) {
    #main .nav_page {
        margin-left: auto;
        margin-right: auto;
    }

    #main .nav_page ul {
        margin-left: 0;
    }

    #main .nav_page.nav_page_fixed li a {
        padding: 0.65em 0.8em 0.55em 0.9em;
    }
}


/* ページ内部共通タイトルスタイル */
#main h3 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .1em;
}

#main h4 {
    font-size: 24px;
    font-weight: 700;
}

#main h5 {
    font-size: 18px;
    font-weight: 700;
}

#main h6 {
    font-size: 16px;
    font-weight: 700;
}

@media screen and (max-width: 880px) {
    #main h3 {
        font-size: 24px;
    }

    #main h4 {
        font-size: 20px;
    }

}

#main .sec_ttl_h3 {
    width: 100%;
    margin-top: 3em;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

#main .sec_ttl_h3 .small_text {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

#main .sec_ttl_h4 {
    font-size: 20px;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    text-orientation: upright;
    padding: 1.5em 1.5em;
    position: relative;
    z-index: 1;
    line-height: 1;
    letter-spacing: 0.5rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 40%, rgba(0, 0, 0, 0.05) 100%);
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

#main .sec_ttl_h4::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: rgb(223, 179, 32);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.jptype #main .sec_ttl_h4::before {
    background: rgb(204, 63, 0);
    background: linear-gradient(90deg, rgba(204, 63, 0, 0.95) 0%, rgba(209, 193, 0, 0.95) 100%);
}

@media screen and (max-width: 880px) {

    #main .sec_ttl_h3 {
        font-size: 24px;
    }

    #main .sec_ttl_h4 {
        width: 100%;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        min-height: 10px;
        padding: 1.5em 1.5em;
        margin-bottom: 30px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 40%, rgba(0, 0, 0, 0.05) 100%);
    }

    #main .sec_ttl_h4::before {
        width: 4px;
        height: 100%;
        background: rgb(223, 179, 32);
    }

    .jptype #main .sec_ttl_h4::before {
        background: rgb(204, 63, 0);
        background: linear-gradient(180deg, rgba(204, 63, 0, 0.95) 0%, rgba(209, 193, 0, 0.95) 100%);
    }

}




/* ページ main 内共通 */
#main .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
}

.shop_list .item {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

.shop_list .item::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    background: rgb(223, 179, 32);
}

.jptype .shop_list .item::after {
    background: rgb(209, 193, 0);
    background: linear-gradient(90deg, rgba(209, 193, 0, 0.95) 0%, rgba(204, 63, 0, 0.95) 100%);
}

.shop_list .item:nth-of-type(1)::after {
    display: none;
}

.shop_list .item .shop_detail {
    width: 50%;
    order: 2;
}

.shop_list .item .shopimages {
    width: 40%;
    order: 1;
}

.shop_list h4 span {
    font-size: 18px;
    font-weight: 700;
}

.shop_detail_information {
    position: relative;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.shop_detail_information dt {
    position: relative;
    padding-left: 25px;
    font-weight: 700;
    width: 7em;
    padding-top: 20px;
}

.shop_detail_information dt::before {
    content: '';
    display: block;
    width: 1em;
    position: absolute;
    top: 20px;
    left: 0;
    font-family: 'Material Icons';
    font-size: 22px;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.shop_detail_information .item_access::before {
    content: '\e570';
}

.shop_detail_information .item_location::before {
    content: '\e0c8';
}

.shop_detail_information .item_hours::before {
    content: '\e924';
}

.shop_detail_information dd {
    width: calc(100% - 7em);
    padding-top: 20px;
}

.shop_detail_contacts {
    max-width: 500px;
    min-width: 300px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    text-align: center;
}

.shop_detail_contacts .item_phone {
    width: 100%;
    font-size: 22px;
    margin-top: 1em;
}

.shop_detail_contacts .item_shoppage, .shop_detail_contacts .item_reservation {
    width: 100%;
    margin-top: 0.5em;
}

.shop_detail_contacts .item_reservation {
    width: 49%;
}

.shop_detail_contacts .item_reservation+.item_shoppage {
    width: 49%;
}


.shop_detail_contacts a {
    border: 1px solid #DFB320;
    color: #DFB320;
    padding: 0.75em;
    background-color: #fff;
}

.jptype .shop_detail_contacts a {
    background-color: transparent;
}

.shop_detail_contacts a:hover {
    color: #fff;
    background-color: #DFB320;
    opacity: 1;
}

.shop_detail_contacts .item_phone a {
    padding: 0.45em 0.75em;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 500px;
}

.shop_detail_contacts .item_phone a span {
    padding-right: 0.25em;
    font-size: 26px;
}

.shop_detail_contacts .item_reservation a,
.shop_detail_contacts .item_shoppage a {
    position: relative;
    padding: 15px 20px;
    padding-right: 50px;
    position: relative;
    border-radius: 500px;
    line-height: 1.2;
    transition: 0.8s;
}

.shop_detail_contacts .item_reservation a:hover,
.shop_detail_contacts .item_shoppage a:hover {
    opacity: 1;
}

.shop_detail_contacts .item_reservation a:after,
.shop_detail_contacts .item_shoppage a:after {
    font-family: 'Material Icons';
    content: 'straight';
    display: block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 20px;
    color: #D5A300;
    line-height: 1;
    transition: 0.8s;
    transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.shop_detail_contacts .item_reservation a:hover::after,
.shop_detail_contacts .item_shoppage a:hover::after {
    color: #fff;
    right: 10px;
}

.jptype .shop_detail_contacts .item_phone a,
.jptype .shop_detail_contacts .item_reservation a,
.jptype .shop_detail_contacts .item_shoppage a {
    border-radius: 0px;
}

/*
.shop_detail_contacts .item_reservation a::before,
.shop_detail_contacts .item_shoppage a::before,
.shop_detail_contacts .item_reservation a::after,
.shop_detail_contacts .item_shoppage a::after {
    content: '';
    display: block;
    width: 15px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background-color: #DFB320;
    transition: 0.8s;
}

.shop_detail_contacts .item_reservation a::after,
.shop_detail_contacts .item_shoppage a::after {
    transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
}

.shop_detail_contacts .item_reservation a:hover::before,
.shop_detail_contacts .item_shoppage a:hover::before,
.shop_detail_contacts .item_reservation a:hover::after,
.shop_detail_contacts .item_shoppage a:hover::after {
    background-color: #000;
    width: 10px;
    top: 57%;
}


.shop_detail_contacts .item_reservation a:hover::before,
.shop_detail_contacts .item_shoppage a:hover::before {
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    top: 43%;
}

.shop_detail_contacts .item_reservation a:hover::after,
.shop_detail_contacts .item_shoppage a:hover::after {
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
}
*/

@media screen and (max-width: 880px) {

    .shop_list .item {
        display: block;
    }

    .shop_list .item .shop_detail {
        width: 100%;
        order: 2;
    }

    .shop_detail_contacts {
        max-width: 700px;
    }

    .shop_list .item .shopimages {
        width: 100%;
        margin-top: 20px;
    }

}

@media screen and (max-width: 440px) {
    .shop_detail_information dt, .shop_detail_information dd {
        width: 100%;
    }

    .shop_detail_information dd {
        padding-top: 5px;
    }
}

/* タブメニュー */
.tab_menu01 .tab_btn, .tab_menu02 .tab_btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.tab_menu01 .tab_btn_item, .tab_menu02 .tab_btn_item {
    /*    width: 32%;*/
    width: 100%;
    color: #DFB320;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    padding: 0.45em;
    border: 1px solid #DFB320;
    transition: all 0.2s ease 0s;
}

.tab_menu01 .tab_btn_item:nth-child(n+2), .tab_menu02 .tab_btn_item:nth-child(n+2) {
    margin-left: 5px;
}



.tab_menu01 .tab_btn_item:hover, .tab_menu02 .tab_btn_item:hover,
.tab_menu01 .tab_btn_item.active, .tab_menu02 .tab_btn_item.active {
    background-color: #DFB320;
    color: #fff;
}

.jptype .tab_menu01 .tab_btn_item.hover, .jptype .tab_menu02 .tab_btn_item.hover,
.jptype .tab_menu01 .tab_btn_item.active, .jptype .tab_menu02 .tab_btn_item.active {
    background: rgb(204, 63, 0);
    background: linear-gradient(90deg, rgba(204, 63, 0, 0.95) 0%, rgba(209, 193, 0, 0.95) 100%);
    color: #fff;
}

.tab_menu01 .tab_btn_item span, .tab_menu02 .tab_btn_item span {
    display: block;
}


.tab_menu01 .tab_detail_item, .tab_menu02 .tab_detail_item {
    padding: 20px 0;
    display: none;
}

.tab_menu01 .tab_detail_item.active, .tab_menu02 .tab_detail_item.active {
    display: block;
}

@media screen and (max-width: 880px) {
    .tab_menu01 .tab_btn_item, .tab_menu02 .tab_btn_item {
        font-size: 18px;
    }
}

@media screen and (max-width: 540px) {
    .tab_menu01 .tab_btn, .tab_menu02 .tab_btn {
        flex-wrap: wrap;
    }

    .tab_menu01 .tab_btn_item, .tab_menu02 .tab_btn_item {
        width: 48.5%;
        font-size: 14px;
        margin-bottom: 5px;
    }
}



/* news */

.list_news {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.list_news .item {
    width: 23.4%;
    margin-right: 2%;
    margin-top: 40px;
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.1);
}

.list_news .item:nth-child(4n) {
    margin-right: 0%;
}

.list_news .item a {
    display: block;
    height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    color: #000;
}

.list_news .item a:hover,
.list_news .item a:hover .btn {
    background-color: #DFB320;
}

.list_news .item a:hover .btn {
    color: #fff;
    border: 1px solid #fff;
}

.list_news .item a:hover .btn::after {
    color: #fff;
    right: 10px;
}

.list_news .item .btn {
    margin-top: auto;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0);
    border: 1px solid #D5A300;
}


.list_news .item a:hover {
    opacity: 1;
}

.news_detail_cont {
    padding: 25px;
}

#main .news_detail_cont h4 {
    font-size: 20px;
}

.news_detail_cont .category {
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding: 0.25em;
    margin-bottom: 0.5em;
    background-color: #DFB320;
}

.news_detail_cont .category.important {
    background-color: #6C1100;
}

.news_detail_cont .category.shoponly {
    background-color: #000;
}


.news_detail_cont .data {
    font-size: 14px;
    font-weight: 700;
    margin-top: 0.75em;
    padding-bottom: 0.5em;
}

.news_detail_pict {
    position: relative;
    padding-bottom: 100%;
    height: 0;
}

.news_detail_pict img {
    object-fit: cover;
    height: 100%;
    position: absolute;
}





@media screen and (max-width: 1020px) {

    .list_news .item {
        width: 32%;
        margin-right: 2%;
    }

    .list_news .item:nth-child(4n) {
        margin-right: 2%;
    }

    .list_news .item:nth-child(3n) {
        margin-right: 0%;
    }
}



@media screen and (max-width: 640px) {

    .list_news .item {
        width: 49%;
        margin-right: 2%;
    }

    .list_news .item:nth-child(4n) {
        margin-right: 0%;
    }

    .list_news .item:nth-child(3n) {
        margin-right: 2%;
    }

    .list_news .item:nth-child(2n) {
        margin-right: 0%;
    }
}

@media screen and (max-width: 400px) {
    .list_news .item {
        width: 100%;
        margin-right: 0%;
    }

    .list_news .item:nth-child(3n) {
        margin-right: 0%;
    }

    .news_detail_pict {
        padding-bottom: 50%;
    }

}





/* ページ下部共通 */

.related_link .list, #footer .nav_footer {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    justify-content: center;
}



/* 関連リンク */

.related_link {
    background-color: #D9C000;
    text-align: center;
    padding: 3em 0;
}

.related_link h2 {
    color: #ffffff;
    font-size: 26px;
}

.related_link a {
    color: #ffffff;
}

.related_link .list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.related_link .list li {
    width: 23%;
    text-align: left;
    font-size: 14px;
    margin-top: 1.5em;
    margin-left: 2%;
    margin-right: 2%;
}

.related_link .list li a figcaption {
    display: block;
    margin-top: 0.5em;
}

@media screen and (max-width: 880px) {

    .related_link .list li {
        width: 48%;
    }

}





/* footer */
#footer {
    background: #000;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}

#footer .nav_main,
#footer .nav_side,
#footer .nav_sub {
    text-align: center;
}

#footer a {
    display: inline-block;
    color: #ffffff;
    padding: 0.55em 0;
}

#footer .nav_footer {
    padding-top: 50px;
}

#footer .nav_main a {
    font-size: 18px;
}

@media screen and (max-width: 880px) {
    #footer .nav_main a {
        font-size: 18px;
    }
}

#footer .nav_main li figure {
    max-width: 300px;
}

#footer .nav_sub {
    margin-top: 2em;
}

#footer .nav_main .nav_sub a,
#footer .nav_side a {
    font-size: 14px;
    padding: 0.35em 1em;
}

#footer .nav_side {
    margin-top: 6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 540px) {

    #footer .nav_main li figure {
        max-width: 200px;
    }

    #footer .nav_side {
        flex-wrap: wrap;
        flex-direction: column;
    }

}



#footer .privacypolicy, #footer .copyright {
    font-size: 12px;
}

#footer .privacypolicy {
    margin-top: 2em;
}

#footer .copyright {
    margin-top: 2em;
    padding-bottom: 2em;
}


/* 1140 共通マージン */

@media screen and (max-width: 1140px) {

    .container,
    .related_link .list,
    #header .nav_p,
    #footer .nav_footer {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/*TOPへ戻るボタン*/
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 10;
    opacity: 0.8;
}

#page_top a {
    font-family: ;
    background-color: rgba(108, 17, 0, .95);
    color: #fff;
    text-align: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 40px;
}

#page_top.bg_c_cg a {
    background-color: rgba(255, 255, 255, .95);
    color: #000;
}








@media screen and (max-width: 850px) {}

@media screen and (max-width: 480px) {}