@charset "utf-8";

/*------------------------------
▼共通デザイン（PC向け）responsive.css
-------------------------------*/
:root{
    --color01:#f4f0eb;
    --color02:#ffd600;
    --color03:#2f2f2f;
    --color04:#1A1A1A;
    --color05:#f4f0eb;
    --color06:#4d4d4d;
    --color07:#f4f0eb;
    --color08:#ff7567;
    --font01:'游ゴシック';
}

html,body{
    font-family: var(--font01),sans-serif;
    font-size: 10px;
    color: #1A1A1A;
}

p{
    line-height: 2;
}

a{
    display: block;
    cursor: pointer;
    text-decoration: none;
}

table {
    border-collapse: collapse;
}

.m10b{
    margin-bottom: 10px;
}

.btn01{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 30px;
    margin: 20px 0;
    transition: all .3s ease;
}

.btn01::before{
    position: absolute;
    content: "";
    margin: auto;
    top: -2px;
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.btn01::after{
    content: "";
    margin: auto;
    position: absolute;
    top: -2px;
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.btn01:hover{
    background: var(--color02);
    transition: all .3s ease;
}


.btn01.st1{
    background:#fff;
}

.btn01.st2{
    background:var(--color07);
}

.btn01.st3{
    color: var(--color02);
    background:var(--color04);
}

.btn01.st3:hover{
    color: var(--color04);
    background:var(--color02);
}

.btn01.st5{
    color: var(--color04);
    background: var(--color02);
    transition: all .3s ease;
}

.btn01.st5:hover{
    background:#fff;
    transition: all .3s ease;
}

.btn01.st5:hover::before{
    border-top: 2px solid var(--color04);
}

.btn01.st5:hover::after{
    border-right: 2px solid var(--color04);
}

.contact_ct{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color02);
    height: 250px;
}

.contact_ct > span{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .1em;
}

.contact_ct > span::before{
    content: "＼";
}

.contact_ct > span::after{
    content: "／";
}

.contact_ct .btn01{
    position: relative;
    width: 45%;
    height: 80px;
    margin-bottom: 0;
    font-size: 2.4rem;
    border-radius: 40px;
    color: #fff;
    background: var(--color04);
}

.contact_ct .btn01::before{
    border-top: 2px solid #fff;
}

.contact_ct .btn01:hover::before{
    border-top: 2px solid var(--color04);
}

.contact_ct .btn01:hover::after{
    border-right: 2px solid var(--color04);
}

.contact_ct .btn01::after{
    border-right: 2px solid #fff;
}

.contact_ct .btn01:hover{
    color: var(--color04);
    background:#fff;
}

/*------------------------------
header
-------------------------------*/
.header_ct{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    z-index: 90;
    background-color: rgba(255,255,255,0.8);
}

.header_bx01{
    position: relative;
    width: 80px;
    height: inherit;
}

.header_bx02 a{
    font-family: var(--font01);
    font-size: 2.8rem;
    font-weight: bold;
    margin-left: 160px;
    letter-spacing: .2em;
}

.header_bx03{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: inherit;
    color: #fff;
    font-weight: bold;
    background-color:rgba(0,0,0,0.8);
    font-size: 1.8rem;
}

.header_bx03 a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header_hb_bx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    text-align: center;
    box-sizing: border-box;
}

.header_hb_btn, .header_hb_btn span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.header_hb_btn {
    position: relative;
    width: 22px;
    height: 34px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
}

.header_hb_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
}

.header_hb_btn span:nth-of-type(1) {
    top: 9px;
}

.header_hb_btn span:nth-of-type(2) {
    top: 15px;
}

.header_hb_btn span:nth-of-type(3) {
    bottom: 10px;
}

.header_overlay{
    opacity: 0;
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color07);
    text-align: center;
    padding: 20px;
    transition: all .5s ease;
    z-index: 100;
}

.header_overlay.open{
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

.header_overlay .btn01{
    width: 400px;
    height: 80px;
    font-size: 2rem;
    border-radius: 50px;
}

.header_overlay .btn01:hover::before{
    border-top: 2px solid var(--color04);
}

.header_overlay .btn01:hover::after{
    border-right: 2px solid var(--color04);
}

.gnav_sp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gnav_sp li{
    display: inline-flex;
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 2px solid var(--color04);
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.header_hb_btn.active span:nth-of-type(1) {
    transition: all .2s ease-in;
    transform: rotate(45deg);
    top: 16px;
}

.header_hb_btn.active span:nth-of-type(2) {
    transition: all .2s ease-out;
    opacity: 0;
}

.header_hb_btn.active span:nth-of-type(3) {
    transition: all .2s ease-in;
    transform: rotate(-45deg);
    bottom: 15px;
}

.header_hb_menu.bg-change{
    background: var(--color07);
}

.header_aside_ct{
    position: relative;
}

.header_aside_bx02{
    position: fixed;
    top: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: calc(100% - 100px);
    background: transparent;
    font-size: 1.6rem;
    font-weight: bold;
    z-index: 80;
}

.header_aside_bx02_list li{
    margin-bottom: 50px;
}

.header_aside_bx02_list li::after{
    position: absolute;
    content: "";
    left: 50%;
    width: 1px;
    height: 25px;
    margin-top: 14px;
    background: var(--color04);
}

.header_aside_bx02_list li:last-child::after{
    display: none;
}

.header_aside_bx02_list li a{
    transition: all .2s ease;
}

.header_aside_bx02_list li a:hover{
    transition: all .2s ease;
    transform: scale(1.3);
}

.back_to_top{
    position: absolute;
    content: "";
    bottom: 0;
}

.back_to_top a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--color04);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: a1ll .3s ease;
}

.back_to_top a:hover{
    color: var(--color02);
}

.header_aside_bx01_list a:before{
    position: absolute;
    content: "";
    bottom: 14px;
    right: calc(50% - 5px);
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    transform: rotate(135deg);
}

.header_aside_bx01_list a:hover::before{
    border-top: 2px solid var(--color02);
}

.header_aside_bx01_list a:after{
    position: absolute;
    content: "";
    bottom: 10px;
    right: 48%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
}

.header_aside_bx01_list a:hover::after{
    border-right: 2px solid var(--color02);
}

.header_ct .btn01::before{
    border-top: 2px solid var(--color02);
}

.header_ct .btn01::after{
    border-right: 2px solid var(--color02);
}

.header_ct .btn01:hover::before{
    border-top: 2px solid var(--color04);
}

.header_ct .btn01:hover::after{
    border-right: 2px solid var(--color04);
}

.header_ttl_span{
    display: inline-block;
    margin-right: 60px;
}

.header_ttl_span02{
    display: inline-flex;
    align-items: center;
    position: relative;
}

.header_ttl_span02::before{
    position: absolute;
    content: '';
    left: -32px;
    width: 26px;
    height: 26px;
    background: url(/images/bbq/ttl_ico_shop.svg) no-repeat;
}

/*------------------------------
mv
-------------------------------*/

.mv{
    padding-top: 80px;
}

.mv_bx{
    display: flex;
    position: relative;
}

.mv_bx01{
    position: relative;
    width: 50%;
    height: 540px;
    text-align: center;
    background-size: cover;
    overflow: hidden;
    color: #fff;
}

.mv_bx01::before {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 540px;
    background: url(/images/bbq/yokohama-kannai/mv.webp) no-repeat center;
    background-size: cover;
    filter: brightness(.4);
}

.mv_bx01_ttl_bx{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mv_bx01_ttl_bx .btn01{
    width: 80%;
    height: 80px;
    border-radius: 50px;
    font-size: 2.4rem;
}

.mv_bx01_txt01{
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5;
}

.mv_bx01_txt02{
    font-size: 7.4rem;
    font-weight: bold;
    line-height: 1;
}

.mv_bx01_txt03{
    font-size: 5.6rem;
    font-weight: bold;
    line-height: 1;
}

.mv_bx01_txt04{
    font-size: 8rem;
    font-weight: bold;
    line-height: 1.2;
}

.mv_bx01_txt05{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}

.mv_bx02{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 540px;
    overflow: hidden;
}

.mv_bx02 img{
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.mv_desc{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 80px;
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--font01);
}

.mv_desc_aside{
    display: inline-block;
    margin-top: 40px;
    font-size: 1.4rem;
}

.premium_gb {
    width: 65%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.premium_gb img  {
    width: 100%;
    object-fit: contain;
}

/*------------------------------
business_hour
-------------------------------*/
.business_hour_ttl_bx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 20px;
}

.business_hour_ttl {
    display: inline-block;
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 5px solid var(--color04);
}

.business_hour_table_bx {
    width: 60%;
    margin: 0 auto 80px;
}

.business_hour_bx table {
    width: 100%;
}

.business_hour_bx tr {
    border-top: 2px solid #4d4d4d;
    border-bottom: 2px solid #4d4d4d;
}

.business_hour_bx table th,
.business_hour_bx table td {
    padding: 20px;
    font-size: 2rem;
}

.business_hour_bx table th {
    background: var(--color04);
    color: #fff;
    text-align: center;
    vertical-align: middle;
}

.business_hour_bx table td {
    background: var(--color01);
    color: var(--color04);
    font-weight: bold;
}

.business_hour_aside {
    font-size: 1.2rem;
}

.business_hour_aside > a {
    display: inline-block;
    pointer-events: none;
}

/*------------------------------
price
-------------------------------*/
.price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 460px;
}

.price_bx01::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(.4);
    z-index: -1;
    background: url(/images/bbq/yokohama-kannai/price_bg.webp) no-repeat center;
    background-size: cover;
}

.price_bx01{
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: inherit;
    margin: 20px 0;
}

.price_bx01 p{
    line-height: 1.4;
}

.price_bx01_txt{
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: var(--font01);
}

.price_bx01_txt02{
    color: #fff;
    font-size: 4.8rem;
    font-weight: bold;
    font-family: var(--font01);
}

.price_bx01_txt03{
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: var(--font01);
}

.price_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
    margin-top: 10px;
}

.price_list li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-family: var(--font01);
    font-size: 2rem;
    border-radius: 10px;
    background-color: #fff;
    color: var(--color04);
    text-align: center;
}

.price_list li{
    width: 48%;
    margin-bottom: 20px;
}

.price_list li::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}

.price_list li:nth-of-type(1)::before {
    background:url(/images/bbq/ico_meat.svg) no-repeat;
    background-size: contain;
}

.price_list li:nth-of-type(2)::before {
    background:url(/images/bbq/ico_cutlery.svg) no-repeat;
    background-size: contain;
}

.price_list li:nth-of-type(3)::before {
    background:url(/images/bbq/yokohama-kannai/ico_shrimp.svg) no-repeat;
    background-size: contain;
}

.price_list li:nth-of-type(4)::before {
    background:url(/images/bbq/ico_drink.svg) no-repeat;
    background-size: contain;
}

.price_list li:nth-of-type(5)::before {
    background:url(/images/bbq/yokohama-kannai/ico_cake.svg) no-repeat;
    background-size: contain;
}

.price_list li:nth-of-type(6)::before {
    background:url(/images/bbq/ico_clock.svg) no-repeat;
    background-size: contain;
}

.price_list_it{
    font-size: 2rem;
    font-weight: bold;
}

.price_img_bx{
    position: relative;
    width: 50%;
    height: inherit;
}

.price_img_bx::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/images/bbq/yokohama-kannai/price_img01.webp") no-repeat center;
    background-size: cover;
}

/*------------------------------
menu_plan freedrink ボタン
-------------------------------*/
.choice_btn_menu_freedrink {
    display: flex;
    justify-content: center;
    padding: 30px;
    background: var(--color02);
}

.choice_btn_menu_freedrink .btn01 {
    width: 30%;
    background: #fff;
    color: var(--color04);
    border-radius: 30px;
    margin-right: 60px;
    font-size: 2rem;
}

.choice_btn_menu_freedrink .btn01:last-child {
    margin-right: 0;
}

.choice_btn_menu_freedrink .btn01::before{
    position: absolute;
    content: "";
    margin: auto;
    top: -2px;
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-top: none;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.choice_btn_menu_freedrink .btn01::after {
    content: "";
    margin: auto;
    position: absolute;
    top: -2px;
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.choice_btn_menu_freedrink .btn01:hover{
    opacity: .6;
    transition: all .3s ease;
}

/*------------------------------
about_pr_bbq
-------------------------------*/
.about_pr_bbq_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 70px auto 80px;
}

.about_pr_bbq_ttl{
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
}

.about_pr_bbq_ttl{
    display: inline-block;
    border-bottom: 5px solid var(--color04);
}

.about_pr_bbq_sub_ttl{
    font-size: 4.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about_pr_bbq_sub_aside{
    display: inline-block;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 2;
}

.about_pr_bbq_sub_desc{
    font-family: var(--font01);
    font-size: 2rem;
}

.bx_bgc:nth-of-type(2n+1){
    display: flex;
    justify-content: space-between;
    height: 552px;
    background-color: var(--color03);
    color: #fff;
    font-size: 2.4rem;
    font-family: var(--font01);
    font-weight: bold;
}

.bx_bgc:nth-of-type(2n){
    display: flex;
    justify-content: space-between;
    height: 552px;
    background-color: var(--color05);
    color: var(--color04);
    font-size: 2.4rem;
    font-family: var(--font01);
    font-weight: bold;
}

.bx_bgc:nth-of-type(2n+1) .bx_it{
    order: 2;
}

.bx_bgc:nth-of-type(2n+1) .bx_it02{
    order: 1;
}

.bx_bgc:nth-of-type(2n+1) .bx_it,
.bx_bgc:nth-of-type(2n+1) .bx_it02{
    position: relative;
    width: 50%;
    height: inherit;
    background-color: var(--color03);
}

.bx_bgc:nth-of-type(2n) .bx_it,
.bx_bgc:nth-of-type(2n) .bx_it02{
    position: relative;
    width: 50%;
    height: inherit;
    background-color: var(--color05);
}

.bx_bgc:nth-of-type(2n) .bx_it{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 80px 0 150px;
}

.bx_bgc:nth-of-type(2n+1) .bx_it{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 90px 150px 0 80px;
}

.bx_bgc:nth-of-type(2n+1) .bx_it .about_pr_bbq_sub_desc{
    width: 70%;
}

.bx_bgc:nth-of-type(2n+1) .bx_it .about_pr_bbq_sub_ttl{
    width: 30%;
    writing-mode: vertical-rl;
}

.bx_bgc:nth-of-type(5) .bx_it .about_pr_bbq_sub_desc{
    width: 80%;
}

.bx_bgc:nth-of-type(5) .bx_it .about_pr_bbq_sub_ttl{
    width: 20%;
}

.about_pr_bbq_bx01 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/images/bbq/yokohama-kannai/about_pr_bbq_img01.webp") center no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx02 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/images/bbq/yokohama-kannai/about_pr_bbq_img02.webp") center no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx03 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/images/bbq/yokohama-kannai/about_pr_bbq_img03.webp") center no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx04 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/images/bbq/yokohama-kannai/about_pr_bbq_img04.webp") center no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx05 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/images/bbq/yokohama-kannai/about_pr_bbq_img05.webp") center no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx06 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/images/bbq/yokohama-kannai/about_pr_bbq_img06.webp") bottom no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx01 .bx_it02::after,
.about_pr_bbq_bx03 .bx_it02::after,
.about_pr_bbq_bx05 .bx_it02::after{
    position: absolute;
    left: 20px;
    bottom: 0;
    font-family: var(--font01);
    font-size: 9rem;
}

.about_pr_bbq_bx02 .bx_it02::after,
.about_pr_bbq_bx04 .bx_it02::after,
.about_pr_bbq_bx06 .bx_it02::after{
    position: absolute;
    right: -70px;
    bottom: 0;
    font-family: var(--font01);
    font-size: 9rem;
    z-index: 1;
}

.about_pr_bbq_bx01 .bx_it02::after{
    font-size: 24rem;
    content: "01";
    color: #fff;
}

.about_pr_bbq_bx02 .bx_it02::after{
    font-size: 24rem;
    content: "02";
    color: var(--color06);
}

.about_pr_bbq_bx03 .bx_it02::after{
    font-size: 24rem;
    content: "03";
    color: #fff;
}

.about_pr_bbq_bx04 .bx_it02::after{
    font-size: 24rem;
    content: "04";
    color: var(--color06);
}

.about_pr_bbq_bx05 .bx_it02::after{
    font-size: 24rem;
    content: "05";
    color: #fff;
}

.about_pr_bbq_bx06 .bx_it02::after{
    font-size: 24rem;
    content: "06";
    color: var(--color06);
}


/*------------------------------
point
-------------------------------*/
.point{
    background: url("/images/bbq/point_bg_pc.webp") no-repeat;
    background-size: cover;
}

.point_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 40px;
}

.point_ttl{
    display: inline-block;
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 5px solid var(--color04);
}

.point_bx{
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    width: 40%;
    height: 748px;
    background: var(--color03);
    border-radius: 10px;
    color: #fff;
    margin: 40px 0;
}

.point_bx:first-child{
    margin-right:40px;
}

.point_sub_ttl{
    font-family: var(--font01);
    font-size: 3.2rem;
    text-align: center;
    font-weight: bold;
}

.point_it{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.point_it img{
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.point_desc{
    font-size: 1.6rem;
    font-weight: bold;
    padding: 20px;
}

.point_img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.point_bx_link {
    font-size: 1.2rem;
    text-decoration: underline;
}

.point_ct{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*------------------------------
recommend
-------------------------------*/

.recommend_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 40px;
}

.recommend_ttl{
    display: inline-block;
    font-family: var(--font01),sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 5px solid var(--color04);
}

.recommend_bx{
    padding: 40px 80px 20px;
}

.recommend_bx img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.recommend_bx_it{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: var(--color01);
}

.recommend_bx_it_ttl{
    position: relative;
    font-size: 3.6rem;
    font-weight: bold;
    padding: 30px 0 20px 46px;
    line-height: 1.4;
}

.recommend_bx_it_ttl::after{
    position: absolute;
    top: 0;
    left: 46px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color08);
    letter-spacing: .1em;
}

.recommend_bx_it_desc{
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0 0 0 46px;
}

.recommend_bx_it_ttl::before{
    position: absolute;
    content: '';
    top: 0;
    left: -20px;
    width:40px;
    height:80px;
    border-radius:0 40px 40px 0;
    background:var(--color08);
}

.recommend_bx01,
.recommend_bx02,
.recommend_bx03{
    display: flex;
    height: 460px;
}

/* .recommend_bx01 img, */
.recommend_bx02 img,
.recommend_bx03 img{
    width: 50%;
}

.recommend_bx_it{
    width: 50%;
}


.recommend_bx01 .reccomend_slider,
.recommend_bx03 img{
    order: 2;
}

.recommend_bx01 .recommend_bx_it_ttl::after{
    content: 'POINT 1';
}

.recommend_bx02 .recommend_bx_it_ttl::after{
    content: 'POINT 2';
}

.recommend_bx03 .recommend_bx_it_ttl::after{
    content: 'POINT 3';
}

.recommend_aside{
    font-size: 1.2rem;
    padding: 0 100px 40px;
}

.reccomend_slider {
    width: 50%;
}


/*------------------------------
plan
-------------------------------*/
.plan_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 20px;
}

.plan_ttl{
    display: inline-block;
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 5px solid var(--color04);
}

.plan_ttl_desc{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 80px;
}

.plan_bx01,.plan_bx02{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 40px;
    background: var(--color01);
}

.plan_bx01:nth-child(even) {
    background: #fff;
}

.plan_bx02{
    background: #fff;
}

.plan_bx01_it01,
.plan_bx01_it02,
.plan_bx02_it01,
.plan_bx02_it02{
    width: 40%;
}

.plan_bx01_it01,
.plan_bx02_it01{
    margin-right: 40px;
}

.menu_plan_slider_nav .slick-track img {
 width: 100%;
 height: auto;
 margin: 5px 3px;
 object-fit: cover;
}

/* slider */
.slick-dotted.slick-slider {
    position: relative;
    margin-bottom: 0;
}

.slick-arrow {
    display: block;
    position: absolute;
    top: 25%;
    bottom: 0;
    margin: auto;
    padding: 0;
    width: 30px;
    height: 60px;
    color: transparent;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s;
    z-index: 1;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev:before {
    margin-left: -5px;
}

.slick-next:before {
    margin-left: -15px;
}

.slick-next::before,
.slick-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border-right: 3px solid #ccc;
    border-top: 3px solid #ccc;
    margin-top: -10px;
}

.slick-prev::before {
    left: 15px;
    transform: rotate(-135deg);
}

.slick-next::before {
    right: 4px;
    transform: rotate(45deg);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: rgba(0, 0, 0, 0.5);
}
/* slider end */

.menu_plan_slider .slick-dots {
    display: none!important;
}

.plan_bx01_it02,
.plan_bx02_it02{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan_img{
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.plan_txt01{
    font-family: var(--font01);
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
}

.plan_sub_txt01{
    display: inline-block;
    width: 80px;
    line-height: 1.5;
    margin-right: 10px;
    color: #fff;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    background-color: rgb(255, 117, 103);
}

.plan_bx02 .plan_sub_txt01{
    background:var(--color02);
    color: var(--color04);
}

.plan_txt02{
    color: var(--color04);
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
}

.plan_txt03{
    font-family: var(--font01);
    font-size: 1.6rem;
}

.plan_price{
    margin-bottom: 40px;
}

.plan_price_ttl{
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}

.plan_price_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #000;
}

.plan_price_list li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
}

.plan_price_list li:nth-of-type(2n+1){
    width: 30%;
    color: #fff;
    font-size: 1.6rem;
    background-color: var(--color06);
}

.plan_price_list li:nth-of-type(2n){
    width: 70%;
    font-size: 3.6rem;
    font-weight: bold;
    background: #fff;
}

.plan_price_list li:nth-of-type(2n) .sub_txt01{
    font-size: 1.2rem;
    margin-top: 15px;
    margin-left: 10px;
}

.plan_menu{
    border-bottom: 1px solid #000;
    padding: 20px 0;
}

.plan .menu_list{
    margin-bottom: 0;
}

.plan_menu ul,
.plan_menu_list li{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan_menu ul::before,
.plan_menu_list li::before{
    content: "■";
}

.plan_menu li{
    font-size:1.6rem;
}

.menu_list_txtIndent {
    text-indent: 2em;
}

.drink_list{
    display: flex;
    flex-wrap: wrap;
}

.drink_list dt{
    width: 100%;
}

.drink_list dd::after{
    content: "／";
}

.drink_list dd:last-child::after {
    content: '';
}

.plan_price_aside{
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: bold;
}

.plan_menu_aside{
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.plan_price_aside02{
    font-size: 1.2rem;
}

.plan .plan_bx01 .btn01.btn_freedrink_menu::before,
.plan .plan_bx02 .btn01.btn_freedrink_menu::before {
    position: absolute;
    content: "";
    margin: auto;
    top: -2px;
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-top: none;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.plan .plan_bx01 .btn01.btn_freedrink_menu::after,
.plan .plan_bx02 .btn01.btn_freedrink_menu::after {
    content: "";
    margin: auto;
    position: absolute;
    top: -2px;
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.plan .btn_freedrink_menu{
    font-size: 2rem;
}

.plan .plan_bx01 .btn01.btn_freedrink_menu {
    background: #fff;
}

.plan .plan_bx01:nth-child(even) .btn01.btn_freedrink_menu {
    background: var(--color01);
}

.plan .plan_bx02 .btn01.btn_freedrink_menu {
    background: var(--color01);
}

.plan .plan_bx01 .btn01.btn_freedrink_menu:hover,
.plan .plan_bx02 .btn01.btn_freedrink_menu:hover {
    background: var(--color02);
}

.plan .menu_ttl{
    display: flex;
    margin-bottom: 0;
}

.plan .menu_ttl > li{
    font-size: 2rem;
}

.plan ul.menu_list::before{
    display: none;
}

.plan .menu_list{
    text-indent: -1em;
    margin-top: 10px;
}

.menu_list.drink_list li {
    padding-right: 1.2em;
}

.menu_list.drink_list li:not(:last-child):after {
    content: "／";
}

/*------------------------------
freedrink
-------------------------------*/
.freedrink_menu_ttl_bx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 20px;
}

.freedrink_menu_ttl {
    display: inline-block;
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 5px solid var(--color04);
}

.freedrink_menu_ttl_desc {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 80px;
}

.freedrink_bx01 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 40px;
    background: var(--color01);
}

.freedrink_bx01_it01 {
    width: 40%;
}

.freedrink_bx01_it01 {
    margin-right: 40px;
}

.freedrink_bx01_it02 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.freedrink_txt02 {
    color: var(--color04);
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
}

.freedrink_menu_desc {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
}

.freedrink_menu_txt02_bx {
    width: 80%;
}

.freedrink_menu_txt02 {
    padding: 20px 0;
    font-size: 1.6rem;
    font-weight: bold;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--color04);
}

.freedrink_menu_aside{
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
}

/*------------------------------
locations
-------------------------------*/

.locations{
    background: var(--color01);
}

.locations_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.locations_ttl{
    display: inline-block;
    font-family: var(--font01),sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 5px solid var(--color04);
}

.locations_bx{
    display: flex;
    flex-wrap: wrap;
    padding: 0 80px 80px;
}

.locations_bx img{
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.locations_bx01{
    margin-right: 40px;
}

.locations_bx01,
.locations_bx02{
    width: 48%;
}

.locations_bx03{
    width: 100%;
}

.locations_sub_ttl{
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin:0 0 40px;
}

.locations_dl div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--color04);
    font-size: 1.6rem;
}

.locations_dl div dt,
.locations_dl div dd{
    font-weight: normal;
    align-self: flex-start;
}

.locations_dl div dt:last-child{
    margin-top: 20px;
}

.locations_dl div:not(.fx_col) dt{
    display: block;
    width: 12%;
    line-height: 1.5;
}

.locations_dl div:not(.fx_col) dd{
    display: block;
    width: 88%;
    line-height: 1.5;
}

.locations_dl_aside{
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
}

.locations_dl .fx_col{
    flex-direction: column;
}

.locations_txt01{
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 1.5;
}

.border_b{
    border-bottom: 1px solid var(--color04);
}

.google_map_bx iframe{
    width: 100%;
}

.locations_bx .btn01{
    width: 50%;
    height: 80px;
    padding: 20px;
    border-radius: 50px;
    background: var(--color04);
    color: #fff;
    font-size: 2.4rem;
    margin: 50px auto;
}

.locations_bx .btn01::before{
    border-top: 2px solid #fff;
}

.locations_bx .btn01::after{
    border-right: 2px solid #fff;
}

.locations_bx .btn01:hover{
    background: #fff;
    color: var(--color04);
}

.locations_bx .btn01:hover::before{
    border-top: 2px solid var(--color04);
}

.locations_bx .btn01:hover::after{
    border-right: 2px solid var(--color04);
}

.locations_table_bx {
    width: 100%;
}

.locations_table_bx p{
    line-height: 1.5;
}

.locations table {
    font-size: 1.6rem;
    line-height: 1.5;
}

.locations table tr {
 border-top: 1px solid;
 border-bottom: 1px solid;
}

.locations th {
    width: 30%;
    padding: 10px;
}

.locations td {
    width: 70%;
    padding: 10px;
}

.locations table a{
    color: var(--color08);
}

.locations table a:hover{
    opacity: .6;
    transition: all .3s ease;
}

.locations_aside{
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
}

/*------------------------------
access
-------------------------------*/
.access{
    background: var(--color02);
}

.access_bx{
    width: 100%;
    padding: 0 80px 80px;
}

.access_aside{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 0 auto;
    border-top: 1px solid var(--color04);
}

.access_aside_txt{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 5px solid var(--color04);
    line-height: 1.5;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 50px;
}

.access_bx01{
    display: flex;
    padding-top: 40px;
}

.access_ttl{
    margin: 0 0 20px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
}

.access_img_bx{
    position: relative;
    width: 45%;
    margin-right: 40px;
}

.access_img{
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.access_ct{
    display: flex;
    flex-direction: column;
    width: 45%;
}

.access_ct a{
    font-size: 2rem;
}

.access_ct .btn01{
    transition: all .3s ease;
}

.access_ct .btn01:hover{
    transition: all .3s ease;
    color: var(--color02);
    background: var(--color04);
}

.access_ct .btn01:hover::before{
    border-top: 2px solid var(--color02);
}

.access_ct .btn01:hover::after{
    border-right: 2px solid var(--color02);
}

.access_list li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 2.5em;
}

.access_list li::before {
    position: absolute;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: url(/images/bbq/yokohama-kannai/ico_check_mark.svg) no-repeat;
    background-size: contain;
}

/*------------------------------
faq
-------------------------------*/
.faq_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px;
}

.faq_ttl{
    display: inline-block;
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 5px solid var(--color04);
}

.faq_list{
    padding:0 160px 60px;
}

.faq_list > li{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.faq_list > li p{
    line-height: 1.5;
}

.faq_txt01{
    position: relative;
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 2rem;
    font-weight: bold;
    padding-left: 47px;
    margin-bottom: 5px;
}

.faq_txt02{
    position: relative;
    font-size: 1.6rem;
    padding-left: 3em;
    padding-top: 5px;
    font-weight: bold;
    line-height: 1.5;
}

.faq_txt03{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: bold;
}

.faq_txt03:nth-child(1){
    margin-top: 10px;
}

.faq_txt01::before{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "Q.";
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    color: #fff;
    background:rgb(255, 117, 103);
    margin-right: 10px;
    border-radius: 5px;
    font-family: system-ui;
    font-size: 1.6rem;
    padding-left: 3px;
}

.faq_txt02::before{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "A.";
    top: 10px;
    left: 0;
    width: 30px;
    height: 30px;
    color: rgb(255, 117, 103);
    background:var(--color01);
    margin-right: 10px;
    border-radius: 5px;
    font-family: system-ui;
    font-size: 1.6rem;
    padding-left: 3px;
}

.faq_span_txt {
    display: inline-block;
    margin-top: 20px;
}

.faq_list02 li {
    position: relative;
    padding-left: 2em;
    text-indent: -1em;
}

.faq_list02 li::before {
    position: absolute;
    content: '・';
    font-weight: bold;
}

.faq_list02 li a {
  display: initial;
  text-decoration: underline;
}

/*------------------------------
footer
-------------------------------*/
.footer_ct{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    height: 290px;
    background-color: var(--color03);
}

.footer_txt01{
    line-height: 1;
    font-family: var(--font01);
    font-size: 2.8rem;
    font-weight: bold;
}

.footer_txt02{
    line-height: 1.2;
    font-family: var(--font01);
    font-size: 8.8rem;
    font-weight: bold;
    letter-spacing: 1.6rem;
}

.footer_txt03{
    font-family: var(--font01);
    font-size: 1rem;
    flex-wrap: wrap;
    margin-top: 30px;
    text-align: center;
}

.footer_txt04 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font01),sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .1em;
}

.footer_txt04 img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/*------------------------------
パンくず
--------------------------------------*/
#breadcrumbs{
    padding: 10px 155px;
    font-size: 12px;
}

#breadcrumbs ol{
    display: flex;
}

#breadcrumbs ol li{
    display: flex;
}
#breadcrumbs ol li:last-of-type a{
    pointer-events: none;
}

#breadcrumbs ol li::after{
    content: '>';
    padding:0 4px;
}

#breadcrumbs ol li:last-of-type:after{
    content: none;
}
