@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);
    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);
    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);
}

.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;
}

.spa_red {
  display: block;
  margin-top: 10px;
  color: #c9151e;
}

/*------------------------------
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: .5em;
}

.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 button{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    letter-spacing: .2em;
    transition: all .3s ease;
}

.header_bx03 button:hover{
    background-color: var(--color02);
    color: var(--color04);
    transition: all .3s ease;
}

.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_bx01{
    position: fixed;
    top: 80px;
    left: 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_bx01_ttl{
    letter-spacing: .5em;
}

.header_aside_bx01_list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_aside_bx01_ttl,.header_aside_bx01_list li{
    writing-mode: vertical-rl;
}

.header_aside_bx01_list li{
    position: relative;
    margin: 10px 0;
}

.header_aside_bx01_list li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    background: var(--color04);
    color: #fff;
    padding: 15px 10px 25px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    letter-spacing: .2em;
    transition: all .3s ease;
}

.header_aside_bx01_list li a:hover{
    transition: all .3s ease;
    color: var(--color02);
}

.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);
}

/*------------------------------
mv
-------------------------------*/

.mv{
    position: relative;
    padding-top: 80px;
    margin: 0 80px;
}

.mv_bx01{
    position: relative;
    width: 100%;
    height: 480px;
    text-align: center;
    background: url("../../images/bbq/mv_pc.webp") no-repeat center;
    background-size: cover;
    background-position-y: 70%;
    overflow: hidden;
}

.bg_transparent{
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
}

.mv_bx03_txt{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    line-height: 1.3;
}

.mv_bx02{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: #000;
}

.mv_bx02_img_bx{
    position: absolute;
    top: -110px;
    width: 320px;
    background: url("../../images/bbq/japan.webp") no-repeat center;
    background-size: contain;
}

.mv_bx02_it01{
    height: 300px;
    padding: 60px 0;
}

.mv_bx02_it01 ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 28px;
}

.mv_bx02_it01 ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 30px;
    border: 1px solid var(--color02);
    color: var(--color02);
    font-family: var(--font01);
    font-size: 1.6rem;
    border-radius: 5px;
}

/*.mv_bx02_it01 ul li:first-child{
    display: flex;
    margin-left: 200px;
}*/

.mv_bx02_it01 ul li:first-child{
    display: flex;
    margin-top: -35px;
    margin-left: 200px;
}

.mv_bx02_it01 ul li:nth-of-type(2){
    display: flex;
    margin-top: 1%;
    margin-left: 42%;
}

.mv_bx02_it01_txt{
    font-family: var(--font01);
    font-size: 2rem;
    font-weight: bold;
    padding-top: 70px;
}

.mv_bx03_sub_txt01{
    font-family: var(--font01);
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mv_bx03_sub_txt02{
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font01);
    font-size: 6.4rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.mv_bx03_sub_txt03{
    line-height: 1;
    font-family: var(--font01);
    font-size: 7.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mv_bx03_sub_txt04{
    line-height: 1;
    font-family: var(--font01);
    font-size: 8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mv_desc{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 80px 30px;
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--font01);
}

.mv_bx03{
    position: absolute;
    top: 45%;
    width: 100%;
    text-align: center;
}

.mv_list li{
    position: relative;
}

.mv_list a{
    display: flex;
    padding-left: 10px;
    justify-content: space-between;
    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;
}

.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: 11px;
    right: 11px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color02);
    transform: rotate(135deg);
}

.mv_list a::after{
    position: absolute;
    content: "";
    bottom: 8px;
    right: 16px;
    width: 7px;
    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);
}
/*------------------------------
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/menu_bg.webp") no-repeat;
    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.2rem;
    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:nth-of-type(-n+4){
    width: 48%;
    margin-bottom: 20px;
}

.price_list li:nth-of-type(5){
    width: 100%;
}

.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-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-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/price_img01.webp") no-repeat center;
    background-size: cover;
}
/*------------------------------
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_desc{
    font-family: var(--font01);
    font-size: 2rem;
}

.bx_bgc:nth-of-type(2n+1){
    display: flex;
    justify-content: space-between;
    height: 590px;
    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: 590px;
    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;
}

.about_pr_bbq_bx01 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../../images/bbq/about_pr_bbq_img01.webp") bottom no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx02 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../../images/bbq/about_pr_bbq_img02.webp") bottom no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx03 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../../images/bbq/about_pr_bbq_img03.webp") bottom no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx04 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../../images/bbq/about_pr_bbq_img04.webp") bottom no-repeat;
    background-size: cover;
}

.about_pr_bbq_bx05 .bx_it02::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../../images/bbq/about_pr_bbq_img05.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{
    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;
}


/*------------------------------
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 30px;
}

.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;
    width: 40%;
    height: 680px;
    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: 30px 0 10px;
}

.point_it img{
    width: 48px;
    height: 48px;
}

.point_desc{
    font-size: 1.6rem;
    font-weight: bold;
    padding: 20px;
}

.point_img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.point_ct{
    display: flex;
    justify-content: center;
    align-items: center;
}


/*------------------------------
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_aside{
    display: block;
    font-size: 1.4rem;
    text-align: center;
}

.plan_bx01{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 40px;
}

.plan_bx01_it01,
.plan_bx01_it02{
    width: 40%;
}

.plan_bx01_it01{
    margin-right: 40px;
}

.plan_bx01_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);
    margin-top: 20px;
    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_txt02{
    color: var(--color04);
    font-family: var(--font01);
    font-size: 3.2rem;
    font-weight: bold;
    text-align: left;
}

.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;
}

.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 ul{
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan .menu_ttl {
    display: flex;
}

.plan .menu_ttl > li {
    font-size: 2rem;
}

.plan_menu .menu_ttl::before{
    content: "■";
}

.plan_menu li{
    font-size:1.4rem;
}

.plan .menu_list {
    text-indent: -1em;
    margin-top: 10px;
}

.menu_list.drink_list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.menu_list.drink_list li {
    padding-right: 1.2em;
}

.menu_list.drink_list li:not(:last-child):after{
    content: "／";
}

/*------------------------------
locations
-------------------------------*/

.locations{
    padding: 0 20px;
}

.locations_ttl_bx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 60px;
}

.locations_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);
}

.locations_list{
    display: flex;
    margin: 0 auto;
    align-items: center;
    max-width: 660px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.locations_list li{
    width: 200px;
    height: 300px;
    margin-top: 20px;
}

.locations_list li:not(:nth-child(3n)) {
    margin-right: 20px;
}

.locations_it{
    position: relative;
}

.locations_it::before{
    display: block;
    position: absolute;
    content: "";
    margin: auto;
    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:hover::after{
    border-right: 2px solid var(--color04);
}

.locations_it::after{
    position: absolute;
    content: "";
    margin: auto;
    bottom: 10px;
    right: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
}

.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.2rem;
    font-weight: bold;
    width: 80px;
    height: 20px;
    right: 0;
    bottom: 0;
    background: var(--color02);
    padding-top: 2px;
}

.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;
    background-position: center;
}
.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_txt02{
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
}


/*------------------------------
access
-------------------------------*/
.access_bx{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 80px;
}

.access_bx:nth-of-type(2n+1){
    background-color: var(--color07);
}

.access_ttl{
    margin: 0 0 20px;
    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{
    font-weight: normal;
}

.access_dl dt::after{
    content: '：';
}

.accesss_dl_it{
    display: flex;
}

.access_img_bx{
    position: relative;
    width: 45%;
    margin-right: 40px;
}

.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_bx07.access_bx .access_img_bx::after{
    content: "\6771\4eac\0020\4e0a\91ce";/*東京 上野*/
}

.access_img{
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.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{
    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;
    background: var(--color02);
}

.access_ct a.acc_tel_link {
    pointer-events: none;
    font-size: 1.4rem;
}

/*------------------------------
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 ul li{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.faq ul li p{
    line-height: 2;
}

.faq_txt01{
    position: relative;
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 2rem;
    font-weight: bold;
    padding-left: 2em;
    margin-bottom: 5px;
}

.faq_txt02{
    position: relative;
    font-size: 1.4rem;
    padding-left: 3em;
    padding-top: 5px;
    font-weight: bold;
}

.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_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);
    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;
}


/*------------------------------
modal
-------------------------------*/
#modal {
    display: none;
    position: absolute;
}

#modal.is-open {
    display: block;
}

.modal_overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_container{
    width: 52%;
    height: 52vh;
    background-color: #fff;
    padding: 20px;
    min-width: 950px;
}

.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_ttl{
    text-align: center;
    font-size: 2rem;
    letter-spacing: .5rem;
    font-weight: bold;
}

.modal_content{
    display: flex;
    justify-content: center;
}

.modal_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding-top: 30px;
    max-width: 950px;
}

.modal_list a:hover{
    opacity: .7;
    transition: all .3s ease;
}

.modal_it_img_bx{
    position: relative;
    height: 18vh;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal_it_img_bx::after{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: -10px;
    height: 30px;
    background: var(--color02);
    padding: 0 15px;
}

.modal_list .modal_it01{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: var(--color07);
    padding: 10px 0 10px 10px;
    font-size: 1.6rem;
    font-weight: bold;
}

.modal_list .modal_it02{
    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;
    transition: all .3s ease;
}

.modal_list li:nth-of-type(n+3) .modal_it02{
    margin-bottom: 0;
}

.modal_list .modal_it02:hover{
    background: var(--color02);
    color: var(--color04);
    transition: all .3s ease;
}

.modal_it_img_bx::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal_list li.locations_elephant .modal_it_img_bx::before{
    background: url("../../images/bbq/access_img08.webp") no-repeat center;
    background-size: cover;
}

.modal_list li.locations_psrIkebukuro .modal_it_img_bx::before{
    background: url("../../images/bbq/access_img02.webp") no-repeat center;
    background-size: cover;
}

.modal_list li.locations_legian .modal_it_img_bx::before{
    background: url("../../images/bbq/access_img03.webp") no-repeat center;
    background-size: cover;
}

.modal_list li.locations_akibaDenki .modal_it_img_bx::before{
    background: url("../../images/bbq/access_img04.webp") no-repeat center;
    background-size: cover;
}

.modal_list li.locations_gbUeno .modal_it_img_bx::before{
    background: url("../../images/bbq/access_img07.webp") no-repeat center;
    background-size: cover;
}

.modal_list li.locations_tmYokohama .modal_it_img_bx::before{
    background: url("../../images/bbq/access_img05.webp") no-repeat center;
    background-size: cover;
}

.modal_list li.locations_tmBalitower .modal_it_img_bx::before{
    background: url("../../images/bbq/access_img06.webp") no-repeat center;
    background-size: cover;
}

.modal_list li.locations_elephant .modal_it_img_bx::after{
    font-size: 1.4rem;
    font-weight: bold;
    content: "\6771\4eac\0020\65b0\5bbf";/*東京 新宿*/
}

.modal_list li.locations_psrIkebukuro .modal_it_img_bx::after{
    font-size: 1.4rem;
    font-weight: bold;
    content: "\6771\4eac\0020\6c60\888b";/*東京 池袋*/
}

.modal_list li.locations_legian .modal_it_img_bx::after{
    font-size: 1.4rem;
    font-weight: bold;
    content: "\6771\4eac\0020\6e0b\8c37";/*東京 渋谷*/
}

.modal_list li.locations_akibaDenki .modal_it_img_bx::after{
    font-size: 1.4rem;
    font-weight: bold;
    content: "\6771\4eac\0020\79cb\8449\539f";/*東京 秋葉原*/
}

.modal_list li.locations_gbUeno .modal_it_img_bx::after{
    font-size: 1.4rem;
    font-weight: bold;
    content: "\6771\4eac\0020\4E0A\91CE";/*東京 上野*/
}

.modal_list li.locations_tmYokohama .modal_it_img_bx::after{
    font-size: 1.4rem;
    font-weight: bold;
    content: "\6A2A\6D5C\a0\95A2\5185";/*横浜 関内*/
}

.modal_it02{
    position: relative;
}

.modal_list .modal_it02::before{
    position: absolute;
    content: "";
    margin: auto;
    top: -4px;
    bottom: 0;
    right: 9%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color02);
    transform: rotate(45deg);
}

.modal_list .modal_it02::after{
    position: absolute;
    content: "";
    top: 18px;
    bottom: 0;
    right: 9%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color02);
    transform: rotate(45deg);
}

@media screen and (min-width: 769px) and (max-width: 1024px){
    .modal_container{
        width: 80%;
    }
    .modal_list{
        width: 75vw;
    }
    .modal_list .modal_it02::before,
    .modal_list .modal_it02::after{
        right: 4%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1440px){
    .modal_list .modal_it02::before,
    .modal_list .modal_it02::after{
        right: 6%;
    }
}

@media screen and (min-width: 1441px){
    .access_img{
        height: 400px;
    }
}

.modal_list .modal_it02:hover::before{
    border-top: 2px solid var(--color04);
}

.modal_list .modal_it02:hover::after{
    border-right: 2px solid var(--color04);
}

.modal_list .modal_it01{
    min-height: 94px;
}


@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 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;
}

@media screen and (max-height: 768px){
    .modal_header{
        height: 13%;
    }
    .modal_content{
        height: 73%;
    }
    #modal_ttl{
        font-size: 1.8rem;
    }
    .modal_list{
        padding-top: 0;
    }
    .modal_list li{
        margin-bottom: 2%;
    }
    .modal_list .modal_it01{
        min-height: 65px;
        font-size: 1.5rem;
        padding: 0 0 0 10px;
    }
    .modal_it_img_bx{
        height: 15vh;
    }
}


/*-------------------------------------
▼中型画面向けデザイン（タブレットなど）responsive.css
--------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 1024px){

}
