@charset "UTF-8";

@media(min-width: 800px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ↓ 共通CSS ↓ */
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: #231815;
  font-family: "Noto Sans JP", serif;
  background: #fff6e9;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration-line: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

ul,
li {
  list-style: none;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb100 {
  padding-bottom: 100px;
}

.pt40 {
  padding-top: 40px;
}

.pt80 {
  padding-top: 80px;
}

.pt100 {
  padding-top: 100px;
}

.pt140 {
  padding-top: 140px;
}



.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.font24 {
  font-size: 24px;
}

.text-red {
  color: #d02429;
}

.text-white {
  color: #FFF;
}

.nowrap {
  white-space: nowrap;
}

.box1440 {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

.box1200 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.box1000 {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.relative {
  position: relative;
}

@media screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }

  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }

  .row {
    flex-direction: column;
    align-items: center;
  }
}

/* 追加 */
.font16-20 {
  font-size: clamp(16px, 2vw, 20px);
}

.font18-20 {
  font-size: clamp(18px, 2vw, 20px);
}

.font18-24 {
  font-size: clamp(18px, 2vw, 24px);
}

.mt20-40 {
  margin-top: clamp(2rem, 4.5vw, 4rem);
}

.mb20-40 {
  margin-bottom: clamp(2rem, 4.5vw, 4rem);
}

.prl10 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.prl20 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pt20-40 {
  padding-top: clamp(2rem, 4.5vw, 4rem);
}

.pt20-80 {
  padding-top: clamp(2rem, 7.5vw, 8rem);
}

.pb10-30 {
  padding-bottom: clamp(1rem, 2vw, 3rem);
}

.pb40-80 {
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.row2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.items-center {
  align-items: center;
}

.content-center {
  align-content: center;
}

.justify-center {
  justify-content: center;
}

.col {
  padding: 10px;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.span-1 {
  width: 8.333333%;
}

.span-2 {
  width: 16.666667%;
}

.span-3 {
  width: 25%;
}

.span-4 {
  width: 33.333333%;
}

.span-6 {
  width: 50%;
}

.span-8 {
  width: 66.666667%;
}

.span-12 {
  width: 100%;
}

.col-30 {
  flex: 1 1 30%;
  width: 30%;
}

.col-40 {
  flex: 1 1 40%;
  width: 40%;
}

.box700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  [class*="span-"] {
    width: 100%;
  }

  .col-30,
  .col-40 {
    flex: 1 1 100%;
    width: 100%;
  }

  .flex-col-reverse {
    flex-direction: column-reverse;
  }
}

/*---br管理--*/
/*---スマホ時改行--*/
@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .sp-br560 {
    display: block;
  }
}

/*---PC時改行--*/
@media screen and (min-width:561px) {
  .sp-br560 {
    display: none;
  }
}

@media screen and (min-width:769px) {
  .pc-br {
    display: block;
  }

  .sp-br {
    display: none;
  }
}


/* ↑ 共通CSS ↑ */


/*ヘッダー
-------------------------------------*/
.header-top {
  background-color: #d02429;
  overflow: hidden;
  padding-bottom: clamp(20px, 6vw, 6rem);
}

.header-nav-area {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d02429;
}

.header-inner {
  max-width: 1220px;
  padding-right: 10px;
  padding-left: 10px;
  margin: 0 auto;
  position: relative;
}

.header-top h1 {
  max-width: 360px;
  padding: 25px 0 20px;
}

.header-inner #pc-nav {
  position: absolute;
  right: 3%;
  top: 0;
  z-index: 2;
}

.header-top #pc-nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.header-top #pc-nav ul a:hover {
  opacity: unset;
}

.top-slide-area {
  padding-top: 100px;
}

.txt-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  display: inline-block;
  color: #ffffff;
  font-size: clamp(20px, 5vw, 56px);
  line-height: 1.2;
  text-align: center;
  text-shadow: 2px 2px 1px #231815, -2px 2px 1px #231815, 2px -2px 1px #231815, -2px -2px 1px #231815, 2px 0px 1px #231815, 0px 2px 1px #231815, -2px 0px 1px #231815, 0px -2px 1px #231815;
}

.txt-outline span {
  font-size: 1.4em;
}

.slider-circle {
  position: absolute;
  bottom: -5%;
  right: 10%;
  z-index: 3;
  width: 15vw;
}

.slider-circle img {
  filter: drop-shadow(1px 6px 9px rgba(0, 0, 0, 0.3));
}

.slider-btm-line {
  background: url(../images/top/slider-btm-line.png) no-repeat bottom / contain;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  width: 100%;
  height: 100%;
}

/* ヘッダー追加 */
h1 img {
  display: block;
}

#pc-nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFF6E9;
  width: clamp(54px, 10vw, 96px);
  height: 100%;
  aspect-ratio: 6 / 7;
  border-radius: 0 0 10px 10px;
  filter: drop-shadow(1px 6px 9px rgba(0, 0, 0, 0.3));
  color: #D02429;
  font-weight: 900;
}

#pc-nav ul li a img {
  width: 50%;
}

#pc-nav ul li a p {
  font-size: clamp(12px, 2vw, 16px);
}

/* ↓ ハンバーガーメニュー ↓ */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

#sp-nav {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background-color: #fff6e9;
    padding: 80px 0 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
}

#sp-nav.open {
    right: 0;
}

#sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sp-nav ul li {
    padding: 1rem 2rem;
}

#sp-nav ul li a {
    color: #D02429;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

#sp-nav ul li a img {
  width: 1em;
  position: relative;
  top: -6px;
  left: -5px;
}

.openbtn {
    position: fixed;
    right: 2%;
    top: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    z-index: 1002;
}

.openbtn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
}

.openbtn.active span {
    background-color: #fff;
}

.openbtn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background-color: #d02429;
}

.openbtn.active span:nth-child(2) {
    opacity: 0;
}

.openbtn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: #d02429;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}


/* ↑ ハンバーガーメニュー ↑ */


/*トップぺージ
-------------------------------------*/
.bg-red {
  background-color: #d02429;
  color: #fff;
}

.about-area {
  font-size: clamp(18px, 2vw, 22px);
}

.bg-beige-wave {
  background-color: #fff6e9;
  width: 100%;
  padding: clamp(2rem, 10vw, 15rem) 1rem 0;
  position: relative;
  z-index: 0;
}

.bg-beige-wave::before {
  content: "";
  display: block;
  width: 100dvw;
  background: url("../images/top/red-wave.png") no-repeat top / contain;
  position: absolute;
  top: -2px;
  left: 0;
  height: clamp(10rem, 10vw, 16rem);
  z-index: -1;
}

.top-menu-area {
  background-image: url("../images/top/bg.png");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: contain;
  padding-bottom: clamp(4rem, 9vw, 23rem);
}

.beige-box {
  background-color: #FFF6E9;
  outline: clamp(4px, 1vw, 7px) solid #FFF6E9;
  outline-offset: clamp(4px, 1vw, 7px);
  border-radius: clamp(6px, 2vw, 30px);
  padding: clamp(1rem, 3vw, 2rem);
  color: #000;
}

.area-ttl {
  text-align: center;
  position: relative;
  color: #D02429;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 56px);
  letter-spacing: .2rem;
  margin-top: clamp(4.5rem, 19vw, 13rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.area-ttl img {
  display: block;
  position: absolute;
  left: 50%;
  top: calc(-1 * min(10rem, max(clamp(140%, 13vw, 200%), min(100%, 7vw))));
  transform: translateX(-50%);
  max-width: clamp(118px, 26vw, 300px);
}

.area-ttl span {
  color: #000;
  font-size: 0.5em;
}

.sub-ttl {
  display: flex;
  align-items: flex-end;
  color: #f39800;
  font-size: clamp(20px, 3vw, 36px);
  margin-bottom: 1rem;
}

.sub-ttl span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #f39800;
  color: #fff;
  aspect-ratio: 1 / 1;
  width: clamp(46px, 6vw, 70px);
  border-radius: clamp(3px, 1vw, 7px);
  font-size: 1.3em;
  margin-right: .3rem;
}

.ttl-slash {
  position: relative;
  display: inline-block;
  padding: 0 clamp(25px, 7vw, 45px);
  text-align: center;
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 800;
}

.ttl-slash::before,
.ttl-slash::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 70%;
  width: clamp(10px, 2vw, 20px);
  /* 線の太さ */
  background-color: #d02429;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
}

.ttl-slash::before {
  left: 0;
  transform: rotate(-25deg);
}

.ttl-slash::after {
  right: 0;
  transform: rotate(25deg);
}

.ttl-slash span {
  font-size: .7em;
}


.top-info-table {
  font-size: clamp(18px, 2vw, 20px);
  max-width: 1000px;
  margin: 40px auto 60px;
  text-align: left;
  width: 100%;
}

.top-info-table tr {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.top-info-table th {
  color: #d02429;
  border-bottom: 2px solid #c9caca;
  padding: 10px;
  width: 10em;
  flex: 1 1 20%;
}

.top-info-table td {
  border-bottom: 2px solid #c9caca;
  padding: 10px;
  flex: 1 1 80%;
}

.top-info-table tr:first-of-type :is(th, td) {
  border-top: 2px solid #c9caca;
}

.top-seat-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
}

.bg-parking {
  background: url(../images/top/parking-bg.png) no-repeat center / contain;
}

.ttl-danger {
  text-align: center;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ttl-danger::before {
  content: "";
  display: block;
  width: clamp(38px, 7vw, 54px);
  height: clamp(34px, 7vw, 47px);
  background-image: url("../images/top/icon-danger.svg");
  background-repeat: no-repeat;
  margin-right: .5rem;
}

.red-dots-txt {
  display: inline-block;
  padding: 0 1em;
  border-bottom: 3px dotted #d02429;
  font-weight: bold;
  margin-bottom: 1em;
}

.contact-tel-line {
  background-color: #4cc564;
  border-radius: 10px;
  padding: 1em;
  max-width: 620px;
  margin: 40px auto 20px;
}

.contact-tel-line .row {
  justify-content: center;
  gap: 2em;
  align-items: center;
}

.contact-txt {
  background-color: #fff;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: bold;
  text-align: left;
  border-radius: 10px;
  padding: 5px 20px;
  margin-bottom: 5px;
}

.tel-txt {
  color: #fff100;
  text-align: center;
  font-size: clamp(26px, 6.5vw, 45px);
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-txt::before {
  content: "";
  display: block;
  width: clamp(36px, 7vw, 46px);
  height: clamp(26px, 7vw, 36px);
  background-image: url("../images/icon-tel-y.svg");
  background-repeat: no-repeat;
  margin-right: .5rem;
}

.row.qre {
  justify-content: center;
  align-items: flex-end;
}

/*フッター
-------------------------------------*/
footer {
  position: relative;
}

footer:not(.top-foot) {
  margin-top: clamp(4rem, 9vw, 14rem);
}

footer .foot-bg-img {
  width: 100%;
  position: absolute;
  bottom: 99%;
  left: 0;
}

footer .row {
  justify-content: space-between;
  padding: 40px 0 60px;
  gap: 1em;
}

.foot-logo {
  max-width: clamp(160px, 16vw, 240px);
}

.foot-tel p {
  font-size: clamp(28px, 3vw, 32px);
  font-weight: bold;
}

.foot-tel p span {
  font-size: .8em;
}

.footer-map-area {
  flex: 1 1 30%;
}

.footer-map-area iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 22 / 19;
}



/*==================================================
スライダーのためのcss　↓
===================================*/
.slider {
  z-index: 1;
}

.slider-item {
  width: 100vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.slider-item img {
  width: 100vw;
}

/*==================================================
スライダーのためのcss　↑
===================================*/


#pagetop {
  position: fixed;
  bottom: 3%;
  right: 1%;
  z-index: 999;
  width: 100%;
  max-width: clamp(90px, 10vw, 100px);
  height: 94px;
  background: url(../images/to-top.png) no-repeat center / contain;
}

#pagetop img {
  width: 10vw;
  max-width: 60px;
}

#pagetop a:hover {
  opacity: 1;
}

.copyright {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  padding: 4em 0;
  color: #fff;
}


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

  /*トップぺージ
-------------------------------------*/
  .bg-beige-wave::before {
    background-size: cover;
  }
}

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

  /*フッター
-------------------------------------*/
  footer .row {
    flex-wrap: wrap;
  }

  .footer-map-area iframe {
    aspect-ratio: 3 / 1;
  }
}

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

  /*ヘッダー
-------------------------------------*/
  .header-top h1 {
    width: 60%;
    padding: 1.5rem 0;
  }

  .header-inner #pc-nav {
    right: 1%;
    width: 35%;
  }

  .header-top #pc-nav ul {
    gap: 10px;
    justify-content: end;
  }

  .top-slide-area {
    padding-top: 68px;
  }



  .txt-outline {
    width: 100%;
    /*font-size: 16px;*/
    top: unset;
    bottom: 10%;
  }

  /*トップぺージ
-------------------------------------*/
  .contact-tel-line .row,
  .row.qre {
    flex-direction: row;
  }

  .row.qre .col-40 {
    flex: 0 0 40%;
    width: 40%;
  }


  /*フッター
-------------------------------------*/
  .footer-map-area {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-map-area iframe {
    aspect-ratio: 3 / 2;
  }

}

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

  /*トップぺージ
-------------------------------------*/
  .top-info-table tr {
    flex-direction: column;
  }

  .top-info-table :is(th, td) {
    width: 100%;
  }

  .top-info-table th {
    border-bottom: none;
    padding-bottom: 0;
  }

  .top-info-table tr:first-of-type td {
    border-top: none;
  }

  .top-info-table td {
    padding-top: 0;
  }

  .contact-tel-line .row {
    flex-direction: column;
    gap: .5em;
  }

  .row.qre {
    flex-direction: column;
    align-items: center;
  }

  .row.qre .col-40 {
    flex: 1 1 100%;
    width: 100%;
  }
}


.page-jump {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/*************************/
/*      メニューページ      */
/*************************/

.sec-menu-guide {
  background-color: #fff6e9;
  background: url(../images/menu/red-wave2.png) no-repeat bottom / contain;
  width: 100vw;
  padding-top: 100px;
  padding-bottom: 150px;
}

.sec-menu-guide p {
  font-size: 20px;
}

.menu-guide-btn {
  margin: 2em auto 4em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 10px 15px;
}

.menu-guide-btn li {
  font-size: 22px;
  background-color: #d02429;
  border-radius: 5px;
  padding: 5px 0;
  text-align: center;
  align-content: center;
  height: 75px;
}

.menu-guide-btn li a {
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0px;
}

.row-menu-top {
  gap: 1em;
}

.menu-attention {
  line-height: 2;
  text-align: left;
  max-width: 650px;
  margin: 2em auto 4em;
}

.menu-attention li {
  display: inline-block;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.menu-attention li::before {
  content: "※";
  margin-right: 0.5em;
}

.menu-attention .span-takeout {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #d02429;
  font-weight: 800;
  padding: 2px 5px;
  margin-right: 5px;
}

.menu-ttl-h3 {
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 6vw, 38px);
  text-align: center;
}

.menu-category {
  padding-bottom: 4em;
  text-align: center;
}

.menu-grid {
  display: grid;
  gap: 5em 2em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 2em 2em 5em;
  color: #fff;
}

.menu-grid-item {
  position: relative;
}

.menu-grid-item>img {
  width: 100%;
}

.menu-name {
  font-weight: bold;
  font-size: 24px;
  margin: 1em 0 0.5em;
  text-align: left;
}

.menu-price {
  font-weight: bold;
  font-size: 22px;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0;
}

.menu-name .menu-recomended {
  position: absolute;
  top: -1.3em;
}

.menu-name .menu-takeout {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #d02429;
  font-weight: bold;
  padding: 1px 3px;
  font-size: 0.8em;
  left: 0;
}

.menu-grid-attention {
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.menu-row {
  gap: 2em;
  justify-content: space-around;
}

.menu-dl {
  display: flex;
  flex-direction: row;
  font-size: 22px;
  color: #fff;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0;
  line-height: 2;
}

.menu-dl dt {
  width: 63%;
  text-align: left;
}

.menu-dl dd {
  width: 37%;
  text-align: right;
}

.menu-dl dt::before {
  content: "○";
  margin-right: 5px;
}

.bg-beige-wave2 {
  background: url(../images/top/red-wave.png) no-repeat top / contain,
    url(../images/footer-bg-top.png) no-repeat bottom / contain;
  padding: 250px 0;
}


.col_2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  align-items: stretch;
}

.col_2 > * {
  width: calc(48% - 6px);
  margin-right: 12px;
  margin-bottom: 20px;
}

.box29 {
  margin: 2em 0;
  background: #2e2e2e;
  border-radius: 15px;
  height: 80%;
}

.box29 .box-title {
  font-size: 1.2em;
  background: #db5358;
  padding: 4px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 15px 15px 0 0;
}

.box29 .plan-list {
  padding: 15px 20px;
  margin: 0;
}

.plan-list li {
  list-style: none;
  color: #fff;
  text-align: left;
}




.o-doburu-row {
  justify-content: space-around;
  gap: 4em;
  margin: 40px auto 60px;
  padding: 0 2em;
}

.o-doburu-row .menu-grid-item {
  flex: 1 1 50%;
}

.o-doburu-row .menu-price {
  position: unset;
  height: 1em;
}

.menu-table {
  font-size: 20px;
  line-height: 2;
  margin: 40px auto 60px;
  text-align: left;
  width: 100%;
}

.menu-table tr {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.menu-table th {
  color: #d02429;
  border-bottom: 2px solid #c9caca;
  padding: 10px;
  width: 10em;
  flex: 1 1 20%;
}

.menu-table tr:first-child {
  border-top: 2px solid #c9caca;
}

.menu-table td {
  border-bottom: 2px solid #c9caca;
  padding: 10px;
  flex: 1 1 80%;

}

.night-time {
  position: absolute;
  top: -1em;
  right: 1em;
}

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

  .sec-menu-guide {
    padding-bottom: 50px;
  }

  .sec-menu-guide p {
    font-size: 18px;
  }

  .menu-guide-btn {
    margin: 2em auto 4em;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
  }

  .menu-guide-btn li {
    font-size: 18px;
    height: 65px;
  }

  .row-menu-top {
    align-items: center;
  }

  .row-menu-top div {
    width: 80%;
    max-width: 432px;
  }

  .row-menu-top img {
    width: 100%;
  }

  .menu-grid {
    padding: 2em 0 4em;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .menu-name {
    font-size: clamp(14px, 3.8vw, 18px);
    margin: 1em 0 0.5em;
  }

  .menu-name img {
    height: 1.5em;
  }

  .menu-price {
    font-size: 18px;
  }

  .menu-grid-attention {
    font-size: 16px;
    display: inline-block;
    text-align: left;
  }

  .bg-beige-wave2 {
    padding: 100px 0;
  }

  .menu-dl {
    font-size: 18px;
  }

  .col_2 > * {
    width: 90%;
    margin-right: 0;
    text-align: center;
}

  .o-doburu-row {
    padding: unset;
  }

  .o-doburu-row .menu-grid-item {
    width: 80%;
  }

  .menu-table {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .menu-table tr {
    flex-direction: column;
  }

  .menu-table th {
    border-bottom: none;
    padding-bottom: 0;
  }

  .night-time {
    position: static;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 560px) {
  .menu-grid {
    padding: 2em 0;
    gap: 4em 1.5em;
    grid-template-columns: repeat(2, minmax(135px, 1fr));
  }

  .menu-price {
    font-size: 16px;
  }

}