@charset "utf-8";

/* -----------------
共通
----------------- */
body {
    background-color: #FDF6E5;
    color: #380102;
    /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Zen Kaku Gothic New', sans-serif; */
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Roboto', sans-serif;
}


section {
    max-width: 960px;
    margin: 120px auto;
}

.illust-title {
    text-align: center;
    margin: 0 auto;
}



.illust-title img{
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
    0% {
      transform:translate(0, 0) rotate(-7deg);
    }
    50% {
      transform:translate(0, -7px) rotate(0deg);
    }
    100% {
      transform:translate(0, 0) rotate(7deg);
    }
  } 







.illust-title img {
    width: 72px;
}
.illust-title h2 {
    max-width: 350px;
    color: #C01315;
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    margin: 10px auto 48px;
    border-bottom: 8px solid #FECB2F;
}
.btn {
    max-width: 340px;
    font-size: 20px;
    font-weight: bold;
    background-color: #C01315;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 50px;
    margin: 0 auto;
    /* margin-bottom: 200px; */
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3)
}
.btn:hover{
    background: #380102;
}
/* -----------------
header
----------------- */
header {
    height: 40px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    align-items: center;
}
h1 {
    max-width: 200px;
    width: 15%;
}
.splogo {
    display: none;
}

/* -----------------
navigation
----------------- */
#gnav {
    max-width: 960px;
    width: 82%;
}
.pcnav {
    display: flex;
    justify-content: space-between;
}
.pcnav li {
    max-width: 160px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;

}
.pcnav li a .illust-title {
    display: flex;
    justify-content: left;
}
.pcnav li a img {
    width: 20px;
    padding-right: 5%;
}
.pcnav li a:after {
    content: '';
    width: 0;
    padding-bottom: 5px;
    transition: all 0.5s ease;
    border-bottom: 3px solid #380102;
    display: block;
}
.pcnav li a:hover:after {
    width: 100%;
    border-bottom: 3px solid #380102;
}
/* -----------------
ハンバーガーメニュー
-----------------  */
.spnav {
    display: none;
    background-color: #FECB2F;
    max-width: 960px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
.spnav li {
    max-width: 960px;
    padding-bottom: 24px;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    text-align: center;
    letter-spacing: 4px;
    line-height: 20px;
}
.sp-title span {
    font-size: 10px;
}
.spnav-logo {
    margin: 100px 0 20px;
}
.spnav img{
    width: 50%;
}
/* Sp Btn */
.spbtn {
    display: none;
    background-color: #FECB2F;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    cursor: pointer;
    z-index: 99999;
}
.spbtn span {
    display: block;
    width: 35px;
    height: 3px;
    background-color: #380102;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 3px;
    transition: 0.3s;
}
.spbtn span::before,
.spbtn span::after {
    display: block;
    content: "";
    width: 35px;
    height: 3px;
    background-color: #380102;
    border-radius: 3px;
    transition: 0.3s;
}
.spbtn span::before {
    margin-top: -10px;
}
.spbtn span::after {
    margin-top: 17px;
}
/* Btn animation */
.close span {
    background: transparent;
}
.close span::before {
    transform: rotate(225deg);
    margin-top: 0px;
}
.close span::after {
    transform: rotate(-225deg);
    margin-top: -3px;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
  }
  .scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
  }
  /*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
  .scroll_left {
      -webkit-transition: 0.8s ease-in-out;
      -moz-transition: 0.8s ease-in-out;
      -o-transition: 0.8s ease-in-out;
      transition: 0.8s ease-in-out;
      transform: translateX(-30px);
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
  }
  .scroll_left.on {
      opacity: 1.0;
      filter: alpha(opacity=100);
      -moz-opacity: 1.0;
      transform: translateX(0);
  }
  /*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
  .scroll_right {
      -webkit-transition: 0.8s ease-in-out;
      -moz-transition: 0.8s ease-in-out;
      -o-transition: 0.8s ease-in-out;
      transition: 0.8s ease-in-out;
      transform: translateX(30px);
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
  }
  .scroll_right.on {
      opacity: 1.0;
      filter: alpha(opacity=100);
      -moz-opacity: 1.0;
      transform: translateX(0);
  }
/* -----------------
左から順番に出現
----------------- */
  .timing02 {transition-delay: .2s;}
  .timing03 {transition-delay: .4s;}
  .timing04 {transition-delay: .6s;}
  .timing05 {transition-delay: .8s;}
/* -----------------
keyvisual
----------------- */
.bx-viewport {
    width: 100%;
}
.keyvisual {
    height: calc(100vh - 100px);
    background-repeat: no-repeat;
    background-size: cover;
}
.keyvisual1 {
    background-image: url(../img/pc-kv01.png);
}
.keyvisual2 {
    background-image: url(../img/pc-kv02.png);
}
.keyvisual3 {
    background-image: url(../img/pc-kv03.png);
}
.keyvisual4 {
    background-image: url(../img/pc-kv04.png);
}
.keyvisual5 {
    background-image: url(../img/pc-kv05.png);
}
.keyvisual6 {
    background-image: url(../img/pc-kv06.png);
}
.keyvisual7 {
    background-image: url(../img/pc-kv07.png);
}
.keyvisual8 {
    background-image: url(../img/pc-kv08.png);
}
.keyvisual9 {
    background-image: url(../img/pc-kv09.png);
}
/* -----------------
menu
----------------- */
.tacos h3,
.tacorice h3 {
    font-size: 32px;
    padding-bottom: 5px;
    border-bottom: 5px solid #C01315;
}
.tacos h3 {
    max-width: 110px;
    margin: 32px 0 10px 0;
}
.mainprice {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}
.mainprice span {
    font-size: 16px;
}
.desc{
    font-size: 20px;
    margin: 16px 0 0 0;
    line-height: 1.6;
}
.tacorice h3 {
    max-width: 180px;
    margin: 32px 0 10px auto;
}
.tacos .photo,
.tacorice .photo {
    width: 80%;
}
.tacos .yellow,
.tacorice .yellow {
    width: 72%;
}
.tacos {
    margin: 100px 0 150px 0;
    padding-left: 50px;
    position: relative;
}
.tacos .yellow {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: -99;
}
.tacorice {
    text-align: right;
    margin-bottom: 120px;
    padding-right: 50px;
    position: relative;
}
.tacorice .yellow {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: -99;
}
/* -----------------
about
----------------- */
#about {
    text-align: center;
}
.cow {
    max-width: 400px;
    text-align: center;
}
.point {
    display: flex;
    justify-content: space-between;
}
.prof {
    text-align: left;
    line-height: 2.0;
    margin: 26px 0 80px 0;
}
.point img {
    max-width: 288px;
}
.prof span {
    font-weight: bold;
    background-color: #C01315;
    color: #fff;
}
.other {
    text-align: left;
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}
.sp-owner,
.sp-catering {
    display: none;
}
.other img {
    max-width: 460px;
    margin-bottom: 10px;
}
.other h3 {
    font-size: 40px;
    max-width: 250px;
    text-align: center;
    color: #C01315;
    border-bottom: 5px solid #FECB2F;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.other p {
    max-width: 460px;
    line-height: 1.8;
}
.view {
    max-width: 200px;
    font-weight: bold;
    color: #fff;
    background-color: #380102;
    text-align: center;
    padding: 15px 0;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
}
.view:hover{
    background: #C01315;
    color: #fff;
    transition: 0.3s;
}
/* -----------------
テイクアウトメニュー
----------------- */
.takeout-menu{
    position: relative;
}
.to-btn {
    max-width: 340px;
    font-size: 20px;
    font-weight: bold;
    background-color: #C01315;
    color: #fff;
    text-align: center;
    padding: 10px 30px;
    border-radius: 50px;
    margin: 0 auto;
    margin-bottom: 200px;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
    position:absolute;
    bottom: -150px;
    left: 20px;
}
.to-btn:hover{
    background: #380102;
    transition: 0.6s;
}
/* -----------------
shop
----------------- */
.shop {
    text-align: left;
}
iframe {
    margin-bottom: 120px;
    width: 100%;
}
.list {
    max-width: 695px;
    margin: 0 auto;
    text-align: center;
}
.list-item {
    padding: 40px 0;
    border-top: 1px solid #380102;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.list-item-title {
    width: 250px;
    text-align: left;
    padding-left: 50px;
    font-weight: bold;
    margin: 0;
}
.list-item-text {
    width: 400px;
    text-align: left;
    line-height: 1.6;
    margin: 0;
}
/* -----------------
news
----------------- */
.news_list {
    margin: 0 auto;
    max-width: 695px;
    margin-bottom: 60px;
}
.news_list_item {
    padding: 40px 0;
    border-bottom: 1px solid #380102;
}
.news_list_item:first-child {
    border-top: 1px solid #380102;
}
.news_list_item a {
    display: flex;
    letter-spacing: 2px;
}
.news_list_item a:hover {
    opacity:0.6;
	transition:0.3s;
}
.news_list_date {
    display: flex;
    margin: 0 50px;
    align-items: center;
}
.newstitle{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}
.more {
    max-width: 200px;
    font-weight: bold;
    color: #fff;
    background-color: #380102;
    text-align: center;
    padding: 15px 0;
    margin: 0 0 0 auto;
    margin-top: 80px;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
}
.more:hover{
    background: #C01315;
    color: #fff;
}
/* -----------------
contact
----------------- */
.contact {
    border: 3px solid #380102;
    padding: 50px 0;
}
.contact h3 {
    text-align: center;
    margin-bottom: 30px;
}
.renraku {
    width: 320px;
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
}
.renraku-title {
    width: 50px;
    background-color: #380102;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    margin-right: 15px;
    margin-left: 10px;
}
.renraku-text{
    padding-top: 3px;
    letter-spacing: 0.3px;
    text-decoration: underline;
}
.renraku-text:hover{
    color: #1a0dab;
    transition: 0.3s;
}
.renraku-tel{
    padding-top: 3px;
    text-decoration: underline;
}
.renraku-tel:hover{
    color: #1a0dab;
    transition: 0.3s;
}
.info2 {
    line-height: 1.5;
}
.attention {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
    /* margin: 0 auto; */
    /* line-height: 1.6; */
    /* padding-top: 10px;  */
}
hr {
    max-width: 80px;
    height: 3px;
    background-color: #380102;
}
.banner {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
}
.banner a:hover {
	opacity:0.6;
	transition:0.3s;
}
.uber,
.demae {
    max-width: 460px;
}
/* -----------------
footer
----------------- */
footer {
    background-color: #FECB2F;
    color: #380102;
}
footer h1 {
    max-width: 200px;
    margin: 0 auto;
    padding-top: 50px;
}
footer p {
    text-align: center;
    padding: 50px 0;
    margin-bottom: 0;
}
.local ul {
    max-width: 960px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.local ul li {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
.local ul li:last-child {
    padding-right: 0px;
}
.local ul li:last-child {
    padding-right: 0;
}
.local ul li a:after {
    content: '';
    width: 0;
    padding-bottom: 5px;
    transition: all 0.5s ease;
    border-bottom: 3px solid #380102;
    display: block;
}
.local ul li a:hover:after {
    width: 100%;
    border-bottom: 3px solid #380102;
}
.instagram {
    max-width: 50px;
    height: 50px;
}
.follow {
    max-width: 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.follow p {
    font-weight: bold;
    margin: 0;
}
.follow img:hover {
	cursor: pointer;
	transform: scale(1.1, 1.1);
} 

/* -----------------
Topへ戻るボタン
----------------- */
.pagetop {
    max-width: 60px;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    right: 60px;
    bottom: 100px;
}
/* -----------------
メニューページ menu.html
----------------- */
.bigname {
    font-size: 24px;
    font-weight: bold;
    margin: 12px 0;
}
.price2{
    font-size: 20px;
    margin-top: 12px;
    line-height: 1.6;
}
.price2 span {
    font-size: 12px;
    font-weight: 400;
}
.name {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
}
.name2 {
    font-size: 16px;
    line-height: 1.6;
}
.takeout-menu-2{
    margin: 120px 0;
    position: relative;
}
.category {
    max-width: 480px;
}
.category p {
    text-align: center;
    line-height: 1.2;
}
.en {
    font-size: 28px;
    font-weight: bold;
}
.menu-list {
    max-width: 465px;
  }
  .menu-list:hover {
    opacity: 0.6;
    transition: 0.3s;
  }

.menu-list_a {
    max-width: 220px;
}
.menu-list_a:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
.menu-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.menu-box_a {
    display: flex;
    justify-content: space-between;
    margin: 50px 0 70px 0;
}
.menu-box_b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.price {
    line-height: 1.8;
    font-size: 22px;
}
.sauce {
    max-width: 960px;
    background-color: #FECB2F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}
.sauce img {
    max-width: 360px;
}
.topping {
    font-weight: bold;
    margin: 40px 0;
    text-align: center;
}
/* -----------------
news 各ページ
----------------- */
.news-page img{
    width:70%;
}
.bgL,
.bgR {
    max-width: 39px;
    height: 56px;
}
.text {
    line-height: 1.6;
    margin-bottom: 48px;
}
.bgLR {
    display: flex;
    justify-content: space-between;
    margin: 100px 0;
}
.bgL,
.bgR {
    font-weight: bold;
}
/* -----------------
ケータリングページ
----------------- */
.party-image{
    display: flex;
    justify-content: space-between;
}
.party-image img{
    max-width: 300px;
    margin-bottom: 32px;
}
.party-takeout-menu{
    margin-top: 88px;
    position: relative;
}
/* -----------------
デリバリーページ delivery.html
----------------- */
h4{
    font-size: 24px;
    margin-bottom: 16px;
}
.delivery img {
    max-width: 460px;
}
.delivery-text span {
    font-weight: bold;
    color: #C01315;
    border-bottom: 3px solid #C01315;
}

/* -----------------
レスポンシブ対応
----------------- */
/* タブレットCSS */
@media screen and (max-width:960px) {
    header {
        height: auto;
        background-color: transparent;
        position: absolute;
        height: 100vh;
        z-index: 99999;
        padding: 0;
        width: 100%;
        display: block;
    }
    section {
        width: 90%;
    }
    .pclogo {
        display: none;
    }
    .splogo {
        display: block;
    }
    .pcnav {
        display: none;
    }
    .spnav {
        display: block;
    }
    .spbtn {
        display: block;
    }
    .keyvisual {
        position: relative;
        top: 0;
        left: 0;
        height: 100vh;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .keyvisual1 {
        background-image: url(../img/sp-kv01.png);
    }
    .keyvisual2 {
        background-image: url(../img/sp-kv02.png);
    }
    .keyvisual3 {
        background-image: url(../img/sp-kv03.png);
    }
    .keyvisual4 {
        background-image: url(../img/sp-kv04.png);
    }
    .keyvisual5 {
        background-image: url(../img/sp-kv05.png);
    }
    .keyvisual6 {
        background-image: url(../img/sp-kv06.png);
    }
    .keyvisual7 {
        background-image: url(../img/sp-kv07.png);
    }
    .keyvisual8 {
        background-image: url(../img/sp-kv08.png);
    }
    .keyvisual9 {
        background-image: url(../img/sp-kv09.png);
    }
    .illust-box .illust {
        left: 300px;
    }
    h1 {
        max-width: 320px;
        width: 100%;
        margin: calc(50vh - 76px) auto;
    }
    .point img {
        width: 30%
    }
    .cow {
        width: 100%;
    }
    .other {
        display: block;
    }
    .other p {
        max-width: 800px;
    }
    .top-delivery {
        margin-bottom: 50px;
    }
    .to-btn {
        font-size: 10px;
        padding: 5px 20px;
        position:absolute;
        bottom: -180px;
    }
    .attention {
        max-width: 550px;
        margin: 0 auto;
        line-height: 1.8;
        padding: 10px;
    }
    .news_title {
        max-width: 230px;
        line-height: 1.8;
        margin: 0 0 0 30px;
    }
    .news_list {
        margin: 0 auto;
        max-width: 320px;
        margin-bottom: 30px;
        margin-top: 50px;
    }
    .news_list_item {
        padding: 30px 0;
    }
    .news_list_date {
        font-size: 14px;
        max-width: 77px;
        margin: 0;
    }
    .local {
        display: none;
    }
    .local ul {
        width: 90%;
        display: block;
    }
    .local ul li {
        text-align: center;
        padding-bottom: 20px;
    }
    .uber,
    .demae {
        max-width: 350px;
    }
    footer h1 {
        width: 200px;
    }
    .pagetop {
        right:40px;
    }

    #menupage header,
    #deliverypage header,
    #cateringpage header,
    #newspage header,
    .newsinfo header {
        position: absolute;
        top: 0;
        left: 0;
        height: 155px;
        display: block;
        background-color: #fff;
    }
    #menupage .pclogo,
    #deliverypage .pclogo,
    #cateringpage .pclogo,
    #newspage .pclogo,
    .newsinfo .pclogo {
        display: block;
        position: absolute;
        top: 50px;
        left: calc(50% - 100px);
        margin: 0 auto;
        text-align: center;
    }
    #menupage .spbtn,
    #deliverypage .spbtn,
    #cateringpage .spbtn,
    #newspage .spbtn,
    #newspage .spbtn,
    .newsinfo .spbtn {
        position: fixed;
        top: 0;
        right: 0;
    }
    #menupage .menu,
    #deliverypage .delivery,
    #cateringpage .catering,
    #newspage .news,
    .newsinfo .news-page {
        margin-top: 200px;
    }

    .pclogo{
        width: 50%;
    }
    /* menuページ */
    .toumei img{
        max-width: 380px;
    }
    .name {
        line-height: 1.5;
    }
    .name2 {
        font-size: 14px;
    }
    .menu-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .menu-box_b {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
    }
    /* deliveryページ */
    h4{
        line-height: 1.6;
        font-size: 18px;
        margin: 0;
    }
    /* cateringページ */
    .text{
        margin-bottom: 40px ;
    }
    .party{
        width: 100%;
    }
    .party-image{
        display: block;
        width: 100%;
        text-align: center;
    }


/* 
    .party{
        max-width: 340px;
   }
   .party-image{
       display: block;
   }
   .party-image img{
       max-width: 340px;
   }
   .party-takeout-menu{
       margin-top: 88px;
       position: relative;
    } */
}

/* スマートフォンCSS */
@media screen and (max-width:600px) {
    section {
        margin: 60px auto;
    }
    .sp-owner,
    .sp-catering {
        width: 100%;
    }
    .pc-owner,
    .pc-catering {
        display: none;
    }
    .sp-owner,
    .sp-catering {
        display: block;
    }
    .sp-owner{
        margin-top: 8px;
    }
    .illust-title img {
        width: 45px;
    }
    .illust-title h2 {
        max-width: 200px;
        font-size: 32px;
        border-bottom: 5px solid #FECB2F;
        margin: 10px auto 50px;
    }
    .tacos .photo,
    .tacorice .photo {
        width: 92%;
    }
    .tacos .yellow,
    .tacorice .yellow {
        width: 84%;
    }
    .tacos .yellow {
        top: 0px;
    }
    .tacos {
        padding-top: 30px;
        padding-left: 30px;
        margin-bottom: 80px;
    }
    .tacorice {
        padding-right: 30px;
    }
    .tacorice .yellow {
        top: -30px;
    }
    .tacos h3,
    .tacorice h3{
        font-size: 24px;
        border-bottom: 3px solid #C01315;
        max-width: 90px;
    }
    .tacorice h3{
        max-width: 140px;
    }
    .mainprice{
        font-size: 20px;
    }
    .mainprice span {
        font-size: 12px;
    }
    .desc{
        font-size: 16px;
    }
    .other h3 {
        font-size: 32px;
        max-width: 200px;
    }
    .list-item {
        padding: 30px 0;
    }
    .list-item-title {
        max-width: 90px;
        padding-left: 10px;
    }
    .list-item-text {
        max-width: 280px;
        padding-left: 10px;
    }
    .banner {
        display: block;
        text-align: center;
    }
    .uber{
        margin-bottom: 80px;
    }
    .uber, .demae{
        width: 100%;
    }
    .pagetop {
        /* max-width: 40px; */
        right: 18px;
    }
    footer p {
        padding: 10px 0 20px;
    }
    .follow{
        margin-top: 20px;
    }
    .follow p{
        margin-top: 10px;
    }


    /* 各ニュース */
    .news-page h4{
        font-size: 20px;
    }
    .newstitle{
        font-size: 18px;
    }
    .text{
        line-height: 1.6;
    }
    /* デリバリーページ */
    .delivery-text {
        letter-spacing: 0.7;
        line-height: 1.7;
    }
    /* メニューページ */
    .bigname{
        font-size: 24px;
        margin: 16px 0 8px 0;
    }
    .price2{
        font-size: 16px;
        margin: 0;
    }
    .menu-list,
    .menu-box{
        margin: 10px 0 60px 0;
        }
        .menu-list_a{
            margin-bottom: 30px;
        }
        .sauce{
    display: block;
    text-align: center;
    line-height: 1.6;
   }
   .sauce p{
    font-size: 12px;
    margin-top: 0;
   } 
   .sauce img{
    width:100%;
   }
   .topping {
    line-height: 1.6;
    font-size: 14px;
    margin: 40px 0 0 0;
    } 
    .name2{
        margin: 0;
    }
    .name{
        margin: 8px 0;
    }





    .menu-box {
        display: block;
    }
 


    .menu-box_a {
        display: block;
    }

    .toumei {
        display: none;
    }
    .menu-box_b {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .btn {
        max-width: 280px;
        font-size: 16px;
    }
    small{
    font-size: 10px;
} 


}
