@charset "utf-8";

/*------------------------------
▼共通デザイン（モバイル向け）mobile.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;
}


.white{
    color: #fff;
}

.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);
}


.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.st4{
    color:#fff;
    background:var(--color04);
}

.contact_ct{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color02);
    padding: 40px 0;
}

.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: 90%;
    height: 80px;
    margin-bottom: 0;
    font-size: 1.6rem;
    border-radius: 40px;
}

.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: 60px;
    background-color:rgba(255,255,255,0.8);
    z-index: 90;
}

.header_bx01{
    position: relative;
    width: 60px;
    height: inherit;
    background-color:rgba(244,240,235,0.8);
}

.header_bx02 a{
    font-family: var(--font01),sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.header_bx03{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: inherit;
    background-color:rgba(0,0,0,0.8);
}

.header_bx03 button{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.header_hb_bx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    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{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color07);
    text-align: center;
    padding: 20px;
    transition: all .5s ease;
    transform: translateX(100vw);
}

.header_overlay.open{
    transform: translateX(0);
}

.header_overlay .btn01{
    width: 100%;
    height: 80px;
    border-radius: 50px;
}

.gnav_sp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gnav_sp li{
    display: inline-flex;
    font-size: 1.6rem;
    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_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_aside_ct{
    position: fixed;
    right: 55px;
    bottom: 10px;
    z-index: 10;
}

.header_aside_ct a{
    color: #fff;
    transition: all .3s ease;
}

.header_aside_ct a:hover{
    color: var(--color02);
    transition: all .3s ease;
}

.back_to_top{
    position: absolute;
    content: "";
    bottom: 0;
}

.back_to_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color04);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/*------------------------------
mv
-------------------------------*/

.mv{
    position: relative;
    padding-top: 60px;
}

.mv_bx01{
    position: relative;
    text-align: center;
}

.mv_bx01 img{
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    opacity: .6;
}

.mv_bx01_txt{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    line-height: 1.5;
}

.mv_bx02{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-color: #000;
}

.mv_bx02_img_bx{
    width: 75%;
    max-width: 330px;
    height: inherit;
    background: url("../../images/bbq/japan.webp") no-repeat center;
    background-size: contain;
}

.mv_bx02_it01{
    height: inherit;
    padding: 60px 0;
}

.mv_bx02_it01 ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv_bx02_it01 ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 50px;
    background-color: rgba(0,0,0,0.7);
    color: var(--color02);
    border-radius: 5px;
    font-family: var(--font01),sans-serif;
    font-size: 1.6rem;
}

.mv_bx02_it01 ul li:first-child{
    display: flex;
    margin-left: 65%;
}

.mv_bx02_it01 ul li:nth-of-type(2){
    display: flex;    
    margin-top: -3%;
    margin-left: 37%;
}

.mv_bx02_it01 ul li:nth-of-type(3){
    display: flex;
    margin-top: -5%;
    margin-left: 60%;
}

.mv_bx02_it01_txt{
    font-family: var(--font01),sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
}

.mv_bx03_sub_txt01{
    font-family: var(--font01),sans-serif;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mv_bx03_sub_txt02{
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font01),sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mv_bx03_sub_txt03{
    line-height: 1;
    font-family: var(--font01),sans-serif;
    font-size: 6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mv_bx03_sub_txt04{
    line-height: 1;
    font-family: var(--font01),sans-serif;
    font-size: 6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mv_desc{
    padding: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: var(--font01),sans-serif;
}

.mv_bx03{
    position: absolute;
    top: 15%;
    text-align: center;
    left: calc(50% - 132px);
}

.mv_list a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.mv_list li{
    position: relative;
}

.mv_list a{
    display: flex;
    padding-top: -10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: bold;
    background-color: rgba(0,0,0,0.7);
    border-radius: 5px;
    transition: all .3s ease;
    border: 1px solid var(--color02);
}

.mv_list a:hover{
    color: var(--color04);
    background-color: rgba(255,255,255,.8);
    transition: all .3s ease;
}

.mv_list a::before{
    display: block;
    position: absolute;
    content: "";
    bottom: 12px;
    right: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color02);
    transform: rotate(135deg);
}

.mv_list a::after{
    position: absolute;
    content: "";
    bottom: 8px;
    right: 40px;
    width: 8px;
    height: 7px;
    border-right: 2px solid var(--color02);
    transform: rotate(-45deg);
}

.mv_list a:hover::before{
    border-top: 2px solid var(--color04);
}

.mv_list a:hover::after{
    border-right: 2px solid var(--color04);
}

.mv_list a span{
    margin-bottom: 10px;
}

/*------------------------------
price
-------------------------------*/
.price{
    position: relative;
    height: 360px;
}

.price::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(.4);
    z-index: -1;
    background: url("../../images/bbq/menu_bg.webp") no-repeat;
    background-size: cover;
}

.price_bx01{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: inherit;
    margin: 20px;
}

.price_bx01 p{
    line-height: 1.5;
}

.price_bx01_txt{
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: var(--font01),sans-serif;
}

.price_bx01_txt02{
    color: #fff;
    font-size: 3.6rem;
    font-weight: bold;
    font-family: var(--font01),sans-serif;
}

.price_bx01_txt03{
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: var(--font01),sans-serif;
}

.price_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.price_list li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-family: var(--font01),sans-serif;
    font-size: 1.4rem;
    border-radius: 10px;
    background-color: #fff;
    color: var(--color04);
    text-align: center;
}

.price_list li:nth-of-type(-n+4){
    width: 48%;
    margin-bottom: 10px;
}

.price_list li:nth-of-type(5){
    width: 100%;
}

.price_list li::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}

.price_list li:nth-of-type(1)::before {
    background-image:url(../../images/bbq/ico_meat.svg);
}

.price_list li:nth-of-type(2)::before {
    background-image:url(../../images/bbq/ico_cutlery.svg);
}

.price_list li:nth-of-type(3)::before {
    background-image:url(../../images/bbq/ico_pot.svg);
}

.price_list li:nth-of-type(4)::before {
    background-image:url(../../images/bbq/ico_drink.svg);
}

.price_list li:nth-of-type(5)::before {
    background-image:url(../../images/bbq/ico_clock.svg);
}

.price_list_it{
    font-weight: bold;
}
/*------------------------------
about_pr_bbq
-------------------------------*/
.about_pr_bbq_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px auto 30px;
}

.about_pr_bbq_ttl{
    font-family: var(--font01),sans-serif;
    font-size: 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{
    line-height: 1.5;
    margin-bottom: 20px;
}

.about_pr_bbq_sub_desc{
    font-family: var(--font01),sans-serif;
    font-size: 1.4rem;
}

.bx_bgc:nth-of-type(2n+1){
    height: 435px;
    background-color: var(--color03);
    color: #fff;
    font-size: 2.4rem;
    font-family: var(--font01),sans-serif;
    font-weight: bold;
}

.bx_bgc:nth-of-type(2n){
    height: 435px;
    background-color: var(--color05);
    color: var(--color04);
    font-size: 2.4rem;
    font-family: var(--font01),sans-serif;
    font-weight: bold;
}

.bx_bgc:nth-of-type(2n+1) .bx_it{
    position: relative;
    background-color: var(--color03);
}

.bx_bgc:nth-of-type(2n) .bx_it{
    position: relative;
    background-color: var(--color05);
}

.about_pr_bbq .bx_it{
    padding: 30px;
    height: 50%;
}

.bx_bgc{
    position: relative;
}

.bx_bgc::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.about_pr_bbq_bx01::before{
    background: url("../../images/bbq/about_pr_bbq_img01.webp") bottom no-repeat;
    background-size: contain;
}

.about_pr_bbq_bx02::before{
    background: url("../../images/bbq/about_pr_bbq_img02.webp") bottom no-repeat;
    background-size: contain;
}

.about_pr_bbq_bx03::before{
    background: url("../../images/bbq/about_pr_bbq_img03.webp") bottom no-repeat;
    background-size: contain;
}

.about_pr_bbq_bx04::before{
    background: url("../../images/bbq/about_pr_bbq_img04.webp") bottom no-repeat;
    background-size: contain;
}

.about_pr_bbq_bx05::before{
    background: url("../../images/bbq/about_pr_bbq_img05.webp") bottom no-repeat;
    background-size: contain;
}

@media screen and (min-width: 600px) and (max-width: 768px){
    .about_pr_bbq_bx01::before,
    .about_pr_bbq_bx02::before,
    .about_pr_bbq_bx03::before,
    .about_pr_bbq_bx04::before,
    .about_pr_bbq_bx05::before{
        background-size: cover;
    }
}


.about_pr_bbq_bx01 .bx_it::after,
.about_pr_bbq_bx03 .bx_it::after,
.about_pr_bbq_bx05 .bx_it::after{
    position: absolute;
    right: 20px;
    bottom: -55px;
    font-family: var(--font01),sans-serif;
    font-size: 9rem;
}

.about_pr_bbq_bx02 .bx_it::after,
.about_pr_bbq_bx04 .bx_it::after{
    position: absolute;
    left: 20px;
    bottom: -55px;
    font-family: var(--font01),sans-serif;
    font-size: 9rem;
}

.about_pr_bbq_bx01 .bx_it::after{
    content: "01";
    color: #fff;
}

.about_pr_bbq_bx02 .bx_it::after{
    content: "02";
    color: var(--color06);
}

.about_pr_bbq_bx03 .bx_it::after{
    content: "03";
    color: #fff;
}

.about_pr_bbq_bx04 .bx_it::after{
    content: "04";
    color: var(--color06);
}

.about_pr_bbq_bx05 .bx_it::after{
    content: "05";
    color: #fff;
}

.about_pr_bbq_bx02 .bx_it,
.about_pr_bbq_bx04 .bx_it{
    position: relative;
    display: flex;
    justify-content: space-between;
}

.about_pr_bbq_bx02 .bx_it .about_pr_bbq_sub_desc,
.about_pr_bbq_bx04 .bx_it .about_pr_bbq_sub_desc{
    width: 70%;
}

.about_pr_bbq_bx02 .bx_it .about_pr_bbq_sub_ttl,
.about_pr_bbq_bx04 .bx_it .about_pr_bbq_sub_ttl{
    position: absolute;
    top: 30px;
    right: 30px;
    height: max-content;
    writing-mode: vertical-rl;
}

/*------------------------------
point
-------------------------------*/
.point{
    background: url("../../images/bbq/point_bg.webp") no-repeat;
    background-size: cover;
}

.point_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0 30px;
}

.point_ttl{
    display: inline-block;
    font-family: var(--font01),sans-serif;
    font-size: 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;
    height: 530px;
    background: var(--color03);
    border-radius: 10px;
    margin: 0 20px 20px;
    color: #fff;
}

.point_sub_ttl{
    font-family: var(--font01),sans-serif;
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
}

.point_it{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0 10px;
}

.point_desc{
    font-size: 1.4rem;
    font-weight: bold;
    padding: 20px;
}

.point_img{
    width: 100%;
    object-fit: cover;
}

/*------------------------------
plan
-------------------------------*/
.plan_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px;
}

.plan_ttl{
    display: inline-block;
    font-family: var(--font01),sans-serif;
    font-size: 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_aside{
    display: block;
    font-size: 1.2rem;
    text-align: center;
}

.plan_bx01{
    padding: 40px 20px;
}

.plan_img{
    width: 100%;
    height: auto;
}

.plan_txt01{
    font-family: var(--font01),sans-serif;
    margin-top: 20px;
    text-align: center;
    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;
    background-color: rgb(255, 117, 103);
}

.plan_txt02{
    color: var(--color04);
    font-family: var(--font01),sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
}

.plan_txt03{
    font-family: var(--font01),sans-serif;
    font-size: 1.4rem;
}

.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.4rem;
    background-color: var(--color06);
}

.plan_price_list li:nth-of-type(2n){
    width: 70%;
    font-size: 3.6rem;
    font-weight: bold;
}

.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;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.plan_menu dt{
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan_menu dt::before{
    content: "■";
}

.plan_menu dd{
    font-size:1.4rem; 
}

.drink_list{
    display: flex;
    flex-wrap: wrap;
}

.drink_list dt{
    width: 100%;
}

.drink_list dd::after{
    content: "／";
}

/*------------------------------
locations
-------------------------------*/

.locations{
    padding: 0 20px;
}

.locations_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px;
}

.locations_ttl{
    display: inline-block;
    font-family: var(--font01),sans-serif;
    font-size: 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_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.locations_list li{
    width: 48%;
    height: 260px;
    margin-top: 20px;
}

.locations_it::before{
    display: block;
    position: absolute;
    content: "";
    bottom: 16px;
    right: calc(50% - 6px);
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    transform: rotate(135deg); 
}

.locations_it:hover::before{
    border-top: 2px solid var(--color04);
}

.locations_it::after{
    position: absolute;
    content: "";
    bottom: 10px;
    right: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    transform: rotate(-45deg); 
}

.locations_it:hover::after{
    border-right: 2px solid var(--color04);
}

.locations_list li a{
    position: relative;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--color03);
    width: 100%;
    height: 100%;
}

.locations_list li a:hover{
    background-color: var(--color02);
    color: var(--color04);
}

.locations_txt01{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color02);
    margin:10px 0;
}

.locations_img_bx{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100px;
}

.locations_img_bx::after{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    width: 100%;
    height: 30px;
    left: 0;
    bottom: 0;
    background: var(--color02);
}

.locations_list li.locations_elephant .locations_img_bx{
    background: url("../../images/bbq/locations_img08.webp") no-repeat;
    background-size: cover;
}

.locations_list li.locations_psrIkebukuro .locations_img_bx{
    background: url("../../images/bbq/locations_img02.webp") no-repeat;
    background-size: cover;
}

.locations_list li.locations_legian .locations_img_bx{
    background: url("../../images/bbq/locations_img03.webp") no-repeat;
    background-size: cover;
}

.locations_list li.locations_akibaDenki .locations_img_bx{
    background: url("../../images/bbq/locations_img04.webp") no-repeat;
    background-size: cover;
}

.locations_list li.locations_gbUeno .locations_img_bx{
    background: url("../../images/bbq/locations_img07.webp") no-repeat;
    background-size: cover;
}

.locations_list li.locations_tmYokohama .locations_img_bx{
    background: url("../../images/bbq/locations_img05.webp") no-repeat;
    background-size: cover;
}

.locations_list li.locations_tmBalitower .locations_img_bx{
    background: url("../../images/bbq/locations_img06.webp") no-repeat;
    background-size: cover;
}

.locations_list li.locations_elephant .locations_img_bx::after{
    content: "\6771\4eac\0020\65b0\5bbf";/*東京 新宿*/
}

.locations_list li.locations_psrIkebukuro .locations_img_bx::after{
    content: "\6771\4eac\0020\6c60\888b";/*東京 池袋*/
}

.locations_list li.locations_legian .locations_img_bx::after{
    content: "\6771\4eac\0020\6e0b\8c37";/*東京 渋谷*/
}

.locations_list li.locations_akibaDenki .locations_img_bx::after{
    content: "\6771\4eac\0020\79cb\8449\539f";/*東京 秋葉原*/
}

.locations_list li.locations_gbUeno .locations_img_bx::after{
    content: "\6771\4eac\0020\4e0a\91ce";/*東京 上野*/
}

.locations_list li.locations_tmYokohama .locations_img_bx::after{
    content: "\6A2A\6D5C\a0\95A2\5185";/*横浜 関内*/
}

.locations_list li.locations_tmBalitower .locations_img_bx::after{
    content: "\5927\962A\a0\5929\738B\5BFA";/*大阪 天王寺*/
}


.locations_txt02{
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
}

.locations_nowrap{
    display: flex;
}

/*------------------------------
access
-------------------------------*/
.access_bx{
    width: 100%;
    padding: 20px;
}

.access_bx:nth-of-type(2n+1){
    background-color: var(--color07);
}

.access_ttl{
    margin: 20px auto;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
}

.access_dl{
    line-height: 2;
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.access_dl dt{
    white-space: nowrap;
    font-weight: normal;
}

.access_dl dt::after{
    content: '：';
}

.accesss_dl_it{
    display: flex;
}

.access_img_bx{
    position: relative;
}

.access_img_bx::after{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: -10px;
    width: 95px;
    height: 40px;
    font-size: 1.4rem;
    font-weight: bold;
    background: var(--color02);
}

#access_bx01.access_bx .access_img_bx::after{
    content: "\6771\4eac\0020\65b0\5bbf";/*東京 新宿*/
}

#access_bx02.access_bx .access_img_bx::after{
    content: "\6771\4eac\0020\6c60\888b";/*東京 池袋*/
}

#access_bx03.access_bx .access_img_bx::after{
    content: "\6771\4eac\0020\6e0b\8c37";/*東京 渋谷*/
}

#access_bx04.access_bx .access_img_bx::after{
    content: "\6771\4eac\0020\79cb\8449\539f";/*東京 秋葉原*/
}

#access_bx05.access_bx .access_img_bx::after{
    content: "\6A2A\6D5C\a0\95A2\5185";/*横浜 関内*/
}

#access_bx06.access_bx .access_img_bx::after{
    content: "\5927\962A\a0\5929\738B\5BFA";/*大阪 天王寺*/
}

#access_bx07.access_bx .access_img_bx::after{
    content: "\6771\4eac\0020\4e0a\91ce";/*東京 上野*/
}


.access_img{
    width: 100%;
    height: auto;
}

.access_txt01{
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color08);
}
.access_txt02{
    font-size: 1.4rem;
    font-weight: bold;
}

.access_txt03{
    font-size: 1.4rem;
}

.access_ct .btn01:hover{
    color: var(--color04);
    background: var(--color02);
}

.access_ct .btn01:hover::before{
    border-top: 2px solid var(--color04);
}

.access_ct .btn01:hover::after{
    border-right: 2px solid var(--color04);
}

.acc_tel_link {
    text-decoration: underline;
}

/*------------------------------
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),sans-serif;
    font-size: 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 20px 60px;
}

.faq ul li{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.faq ul li p{
    line-height: 1.5;
}

.faq_txt01{
    position: relative;
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 1.6rem;
    font-weight: bold;
    padding-left: 2em;
    margin-bottom: 5px;
}

.faq_txt02{
    position: relative;
    font-size: 1.4rem;
    padding-left: 2em;
    padding-top: 5px;
}

.faq_txt03{
    display: inline-block;
    font-size: 1.2rem;
}

.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: 24px;
    height: 24px;
    color: #fff;
    background:rgb(255, 117, 103);
    margin-right: 10px;
    border-radius: 5px;
    font-family: system-ui,sans-serif;
    font-size: 1.2rem;
    padding-left: 3px;
}

.faq_txt02::before{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "A.";
    top: 3px;
    left: 0;
    width: 24px;
    height: 24px;
    color: rgb(255, 117, 103);
    background:var(--color01);
    margin-right: 10px;
    border-radius: 5px;
    font-family: system-ui,sans-serif;
    font-size: 1.2rem;
    padding-left: 3px;
}

.faq_row_2{
    height: auto;
    padding-top: 5px;
}

/*------------------------------
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),sans-serif;
    font-size: 2.8rem;
}

.footer_txt02{
    line-height: 1.2;
    font-family: var(--font01),sans-serif;
    font-size: 8.8rem;
    font-weight: bold;
    letter-spacing: 1.6rem;
}

.footer_txt03{
    font-family: var(--font01),sans-serif;
    font-size: 1rem;
    flex-wrap: wrap;
    margin-top: 30px;
    text-align: center;
}


/*------------------------------
modal
-------------------------------*/
#modal {
    display: none;
    position: absolute;
}

#modal.is-open {
    display: block;
}

.modal_overlay{
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.modal_container{
    width: 90%;
    background-color: #fff;
    padding: 10px;
}

.modal_btn_ct{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.modal_close{
    width: 20px;
    height: 20px;
    justify-content: flex-end;
}

.close_line01{
    display: block;
    width: 100%;
    border-top: 2px solid #000;
    transform: translateY(1px) rotate(-45deg);
    border-radius: 5px;
}

.close_line02{
    display: block;
    width: 100%;
    border-top: 2px solid #000;
    transform: translateY(-1px) rotate(45deg);
    border-radius: 5px;
}

.modal_content{
    height: 72vh;
    overflow-y: scroll;
}

#modal_ttl{
    text-align: center;
    font-size: 2rem;
    letter-spacing: .5rem;
    font-weight: bold;
}

.modal_list{
    padding: 20px 10px 0;
}

.modal_list .modal_it01{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--color07);
    padding: 30px 10px 20px;
    font-size: 1.6rem;
    font-weight: bold;
}

.modal_list .modal_it02{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--color02);
    background: var(--color04);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.modal_list .modal_it01::after{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -15px;
    left: calc(50% - 55px);
    height: 30px;
    background: var(--color02);
    border-radius: 30px;
    padding: 0 15px;
}

.modal_list .modal_it02:hover{
    color: var(--color04);
    background: var(--color02);
}

.modal_list .modal_it02::before{
    position: absolute;
    content: "";
    top: calc(50% - 5px);
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color02);
    transform: rotate(45deg);
}

.modal_list .modal_it02:hover::before{
    border-top: 2px solid var(--color04);
}

.modal_list .modal_it02::after{
    position: absolute;
    content: "";
    top: calc(50% - 5px);
    bottom: 0;
    right: 16%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color02);
    transform: rotate(45deg);
}

.modal_list .modal_it02:hover::after{
    border-right: 2px solid var(--color04);
}


/* .modal_list li:nth-of-type(1) .modal_it01::after{
    content: "\6771\4EAC\a0\6771\65B0\5BBF";/*東京 東新宿*/

.modal_list li.locations_elephant .modal_it01::after{
    content: "\6771\4eac\0020\65b0\5bbf";/*東京 新宿*/
}

.modal_list li.locations_psrIkebukuro .modal_it01::after{
    content: "\6771\4eac\0020\6c60\888b";/*東京 池袋*/
}

.modal_list li.locations_legian .modal_it01::after{
    content: "\6771\4eac\0020\6e0b\8c37";/*東京 渋谷*/
}

.modal_list li.locations_akibaDenki .modal_it01::after{
    content: "\6771\4eac\0020\79cb\8449\539f";/*東京 秋葉原*/
}

.modal_list li.locations_gbUeno .modal_it01::after{
    content: "\6771\4eac\0020\4E0A\91CE";/*東京 上野*/
}

.modal_list li.locations_tmYokohama .modal_it01::after{
    content: "\6A2A\6D5C\a0\95A2\5185";/*横浜 関内*/
}

.modal_list li.locations_tmBalitower .modal_it01::after{
    content: "\5927\962A\a0\5929\738B\5BFA";/*大阪 天王寺*/
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#modal{
    z-index: 100;
}

#modal[aria-hidden='false']{
    animation: fadeIn 1s ease;
}

#modal[aria-hidden='true']{
    animation: fadeOut .5s ease;
}

/*------------------------------
パンくず
--------------------------------------*/
#breadcrumbs{
    padding: 10px 0;
    font-size: 12px;
    overflow: scroll;
}

#breadcrumbs ol{
    display: flex;
    white-space: nowrap;
}

#breadcrumbs ol li{
    display: flex;
}

#breadcrumbs ol li::after{
    content: '>';
    padding:0 4px;
}

#breadcrumbs ol li:last-of-type:after{
    content: none;
}

/* slick */
.slick-next,
.slick-prev {
    position: absolute;
    width: 30px;
    height: 60px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
}

.slick-next::before,
.slick-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 3px solid #ccc;
    border-top: 3px solid #ccc;
    margin-top: -10px;
}

.slick-prev:before {
    margin-left: -5px;
    transform: rotate(-135deg);
}

.slick-next:before {
    margin-left: -15px;
    transform: rotate(45deg);
}