@charset "UTF-8";
@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

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

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

@media screen and (max-width: 600px) {
  .pc-600 {
    display: none;
  }
}

.sp-360 {
  display: none;
}
@media screen and (max-width: 365px) {
  .sp-360 {
    display: block;
  }
}

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

.nav-sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .nav-sp {
    display: block;
  }
}

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 20000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 19000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 20000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 17000;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
  width: auto;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
footer {
  z-index: 500;
}

.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/takeoutdish/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/takeoutdish/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

/* OP STYLE
===============================*/
/* COLUMN STYLE
===============================*/
.column {
  position: relative;
  display: flex;
  overflow: visible;
}

.center {
  position: relative;
  overflow: visible;
  width: 600px;
  background-color: #00a44e;
  filter: drop-shadow(0 0 15px rgba(50, 0, 1, 0.25));
  z-index: 1000;
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

.back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #00a44e;
  z-index: -2;
  overflow-x: clip;
}
@media screen and (max-width: 600px) {
  .back {
    display: none;
  }
}
.back .back-takeout {
  width: 100%;
  left: 0;
  bottom: 49%;
}
.back .back-delivery {
  width: 100%;
  left: 0;
  bottom: 22%;
}
.back .k {
  width: 15.76%;
  bottom: 2%;
  left: 26%;
}
.back .u {
  width: 15.76%;
  bottom: 2%;
  left: 70.8%;
}
.back .t {
  width: 14.86%;
  bottom: 2%;
  right: 0;
}
.back .e {
  width: 14.86%;
  bottom: 2%;
  left: 14%;
}
.back .back-ico-01 {
  width: 6.1%;
  bottom: 45%;
  left: 25%;
}
.back .back-ico-02 {
  width: 6.1%;
  bottom: 0%;
  left: 79.8%;
}
.back .back-ico-delivery {
  width: 6.9%;
  bottom: -20%;
  right: 0;
}

.back-btn {
  position: fixed;
  width: 9.3%;
  bottom: 2%;
  right: 1.5%;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .back-btn {
    display: none;
  }
}

/* OP
=============================*/
.op {
  position: fixed;
  background-color: #00a44e;
  top: 0;
  right: calc(50% - 300px);
  width: 600px;
  height: 100vh;
  z-index: 10005;
}
@media screen and (max-width: 1535px) {
  .op {
    width: 450px;
    right: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .op {
    width: 100%;
    right: 0;
  }
}
.op .op-wrap {
  width: 69.6%;
  top: 50%;
  left: 18%;
  transform: translateY(-50%);
}
.op .op-wrap .op-dish {
  width: 80.7%;
  margin: 5% auto 0 5%;
  opacity: 0;
}
.op .op-wrap .op-dish-active {
  animation: op-rotate 2s ease-out forwards 0.3s;
}
.op .op-wrap .op-p {
  overflow-y: hidden;
}
.op .op-wrap .op-p-img {
  transform: translateY(100%);
  transition: 0.5s;
}
.op .op-wrap .op-p-img-active {
  transform: translateY(0%);
}

@keyframes op-rotate {
  0% {
    transform: rotate(-720deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}
/* LEFT STYLE
=============================*/
.left {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-color: #007033;
  background-size: 660px;
  background-repeat: repeat;
  background-position: left top;
  z-index: 250;
}
@media screen and (max-width: 1535px) {
  .left {
    width: calc(50% - 225px);
    background-size: 530px;
  }
}
@media screen and (max-width: 600px) {
  .left {
    display: none;
  }
}
.left .left-title {
  width: 79.9%;
  top: 43%;
  left: 17%;
}

/* RIGHT STYLE
=============================*/
.right {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-color: #007033;
  background-size: 660px;
  background-repeat: repeat;
  background-position: left top;
  z-index: 250;
}
@media screen and (max-width: 1535px) {
  .right {
    width: calc(50% - 225px);
    background-size: 530px;
  }
}
@media screen and (max-width: 600px) {
  .right {
    display: none;
  }
}
.right .right-anker {
  width: 51%;
  top: 35.5%;
  left: 9.7%;
}
.right .right-qr {
  width: 29.5%;
  top: 60.5%;
  left: 19.5%;
}
.right .hov {
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.5s ease-in-out;
}
.right .right-anker:hover .hov {
  transform: scaleY(1.05);
}

/* SELECT BOX STYLE
=============================*/
.select-cap {
  font-size: 18px;
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  color: #501f18;
}
@media screen and (max-width: 1535px) {
  .select-cap {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .select-cap {
    font-size: 10px;
    letter-spacing: 0.05em;
  }
}

.selbox {
  font-size: 16px;
  font-weight: 900;
  color: #501f18;
}
@media screen and (max-width: 1535px) {
  .selbox {
    font-size: 11.5px;
  }
}
@media screen and (max-width: 600px) {
  .selbox {
    font-size: 10px;
  }
}

.gram {
  color: #44260e;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-size: 19px;
}
@media screen and (max-width: 1535px) {
  .gram {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .gram {
    font-size: 12px;
  }
}

.size {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 38px;
  padding-right: 4px;
}
@media screen and (max-width: 1535px) {
  .size {
    font-size: 29px;
  }
}
@media screen and (max-width: 600px) {
  .size {
    font-size: 24px;
  }
}

.caption {
  font-size: 14px;
  color: #43260a;
  margin-top: 72px;
  line-height: 1.8;
}
@media screen and (max-width: 1535px) {
  .caption {
    font-size: 12px;
  }
}

.select {
  position: relative;
  z-index: 20;
}

/*==============*/
.select-base {
  width: 73.33%;
  margin: 0 auto;
}

/*==============*/
.select-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 70px;
  margin: 0 auto;
  width: 95%;
  top: 14%;
  left: 2.5%;
  padding: 4% 5.5% 4.1% 5.8%;
}
@media screen and (max-width: 1535px) {
  .select-card {
    padding-top: 3.5%;
    padding-bottom: 5%;
  }
}
@media screen and (max-width: 600px) {
  .select-card {
    padding-top: 3.2%;
    padding-bottom: 3.5%;
  }
}

.selbox {
  background-color: #ffb900;
  text-align: left;
  text-align: -webkit-left;
  width: 28.8%;
  padding-top: 12px;
  padding-bottom: 14px;
  padding-left: 15px;
  border-radius: 30px;
  letter-spacing: -0.1em;
  background-image: url(/lp/takeoutdish/images/menu_arrow.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right 13px center;
}
@media screen and (max-width: 1535px) {
  .selbox {
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 11px;
  }
}
@media screen and (max-width: 600px) {
  .selbox {
    padding-left: 5px;
  }
}
@media screen and (max-width: 1535px) {
  .selbox {
    background-size: 15px;
    background-position: right 8px center;
  }
}
@media screen and (max-width: 600px) {
  .selbox {
    background-size: 13px;
    background-position: right 7px center;
  }
}

.price {
  font-size: 32px;
  font-weight: 400;
  font-family: "rubik";
  color: #ffe7a5;
  text-align: center;
}
@media screen and (max-width: 1535px) {
  .price {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .price {
    font-size: 22px;
  }
}

.yen {
  font-size: 20px;
  font-family: fredoka one;
  font-weight: 400;
}
@media screen and (max-width: 1535px) {
  .yen {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .yen {
    font-size: 15px;
  }
}

.yen-no {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 44px;
}
@media screen and (max-width: 1535px) {
  .yen-no {
    font-size: 32px;
  }
}

.regular {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}
@media screen and (max-width: 1535px) {
  .regular {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .regular {
    font-size: 13px;
  }
}

/* PRICE
=====================*/
.pr-con-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 35%;
  margin: 0 auto;
  padding-top: 25px;
}
@media screen and (max-width: 1535px) {
  .pr-con-center {
    padding-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .pr-con-center {
    padding-top: 4.26vw;
  }
}

.pr-padding {
  padding-top: 6px;
}

/* FOOD MENU FONT SETTING
===============================*/
.gram-only {
  font-family: "rubik";
  font-family: 400;
  font-size: 35px;
  color: #f0dcb9;
}
@media screen and (max-width: 1535px) {
  .gram-only {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .gram-only {
    font-size: 22px;
  }
}

.type-d {
  width: 20%;
}

.price-img {
  width: 64%;
}

/* UNIQUE
===============================*/
#pr-con-04, #pr-con-05 {
  width: 50%;
}

#none-4, #none-5 {
  width: 50%;
}

#single {
  width: 40%;
}

#double {
  width: 40%;
}

/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* メインビジュアル セクション
===============================*/
.mv-dish {
  width: 100%;
  bottom: -5%;
  left: 0;
}

.mv-p {
  width: 100%;
  top: 43.5%;
}

/* イントロ 導入 セクション
===============================*/
.intro-dish-01 {
  top: 2%;
  left: 4.9%;
  width: 15%;
}

.intro-dish-02 {
  top: -21%;
  left: 77.3%;
  width: 19.7%;
}

.intro-shadow-02 {
  top: 22.5%;
  left: 83.3%;
  width: 8.8%;
}

.intro-new {
  width: 43.49%;
  top: -11%;
  left: 76%;
}

.intro-line {
  width: 22.3%;
  bottom: -4%;
  left: -6%;
}

.situation-slideWrap {
  animation-duration: 1s !important;
}

.situation-slide {
  animation-duration: 1s !important;
}

.lineUp-slideWrap {
  animation-duration: 1.2s !important;
}

.lineUp-slide {
  animation-duration: 1.2s !important;
}

.takeout-slideWrap {
  animation-duration: 1.2s !important;
}

.takeout-slide {
  animation-duration: 1.2s !important;
}

.delivery-slideWrap {
  animation-duration: 1.3s !important;
}

.delivery-slide {
  animation-duration: 1.3s !important;
}

.situationA-text {
  width: 21.3%;
  top: 30%;
  left: 19%;
}

.situationA-place {
  width: 41.23%;
  top: 9.5%;
  left: 49%;
}

.situationB-text {
  width: 21.4%;
  top: 33%;
  left: 14%;
}

.situationB-place {
  width: 39.23%;
  top: 0%;
  left: 9%;
}

.situationC-text {
  width: 29.3%;
  top: 22%;
  left: 34%;
}

.situationC-place {
  width: 36.53%;
  top: -1%;
  left: 56%;
}

/* メニュー紹介 MENU セクション
===============================*/
.menu-set-01 {
  width: 39.2%;
  top: 28%;
  left: 52.5%;
}

.menuA-cloud-01 {
  width: 12.4%;
  top: 9%;
  left: 6%;
}

.menuA-cloud-02 {
  width: 12.4%;
  top: 65%;
  left: 74%;
}

.menuA-cloud-03 {
  width: 12.4%;
  top: 76.5%;
  left: 64%;
}

.menuB-foot {
  width: 14.4%;
  top: 63.7%;
  left: 17%;
}

.menuD-wood-01 {
  width: 9.86%;
  top: 9%;
  right: 7.5%;
}

.menuD-wood-02 {
  width: 5.06%;
  top: 18.7%;
  right: 17.5%;
}

.menuD-wood-03 {
  width: 9.86%;
  top: 69.7%;
  left: 9.7%;
}

.menuE-foot {
  width: 10.6%;
  top: 69%;
  left: 75%;
}

.menuG-wood-01 {
  width: 7.3%;
  top: -10.5%;
  left: 9.5%;
}

.menuG-wood-02 {
  width: 6.8%;
  top: 71%;
  left: 75%;
}

.menuG-wood-03 {
  width: 7.9%;
  top: 80.5%;
  left: 82.5%;
}

/* 期間限定 LIMITED セクション
===============================*/
.limited-ph-01 {
  width: 57.58%;
  top: 13.14%;
  left: -2.5%;
}

.limited-ph-02 {
  width: 50.5%;
  top: 36.2%;
  left: 44%;
}

.limited-ph-03 {
  width: 44.5%;
  top: 59%;
  left: 13.7%;
}

.limited-p-01 {
  width: 45.5%;
  top: 16%;
  left: 52.6%;
}

.limited-p-02 {
  width: 45.98%;
  top: 46.5%;
  left: 1.5%;
}

.limited-p-03 {
  width: 31.43%;
  top: 66.5%;
  left: 53.8%;
}

.limited-shadow-01 {
  width: 21.3%;
  top: 38.5%;
  left: 12.5%;
}

.limited-shadow-02 {
  width: 18.3%;
  top: 58.7%;
  left: 62.5%;
}

.limited-shadow-03 {
  width: 16.76%;
  top: 78.5%;
  left: 25%;
}

.limited-star {
  width: 9.4%;
  top: 57%;
  left: 9.5%;
}

.limited-cloud-01 {
  width: 12.4%;
  top: 10.5%;
  left: 49.5%;
}

.limited-cloud-02 {
  width: 12.4%;
  top: 26.5%;
  left: 79.5%;
}

.limited-cloud-03 {
  width: 12.4%;
  top: 30.3%;
  left: 69.5%;
}

.limited-caption {
  width: 83%;
  left: 7.8%;
  bottom: 10%;
}

/* CHOICE セクション
===============================*/
.choice-ico-01 {
  width: 11.2%;
  top: -0.08%;
  left: 18.5%;
}

.choice-ico-02 {
  width: 11.2%;
  top: -0.08%;
  left: 58.2%;
}

.choice-ph {
  width: 38.1%;
  top: -46%;
  left: 30.2%;
}

/* バナー セクション
===============================*/
.banner-foot {
  width: 17.6%;
  top: 11%;
  left: 17%;
}

.banner-check {
  width: 17.76%;
  top: 52.5%;
  right: 3.86%;
}

.banner-dish-01 {
  width: 25%;
  top: 61%;
  right: 11%;
}

.banner-dish-02 {
  width: 15.7%;
  top: 78%;
  right: 32.6%;
}

.banner-shadow-01 {
  width: 11.36%;
  top: 78.3%;
  right: 18%;
}

.banner-shadow-02 {
  width: 11.88%;
  top: 84%;
  right: 31.8%;
}

/* 定番 TRANSITION-Y
================================*/
.opacity-active {
  opacity: 1;
  transition: 0.75s ease-in-out;
}

.trans-y-small {
  opacity: 0;
  transform: translateY(3%);
}

.trans-y-small-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.75s ease-in-out;
}

.trans-y {
  opacity: 0;
  transform: translateY(5%);
}

.trans-y-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.75s ease-in-out;
}

.trans-y-large {
  opacity: 0;
  transform: translateY(8%);
}

.trans-y-large-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.75s ease-in-out;
}

/* スライドイン モーション
================================*/
@keyframes slide-in-01 {
  0% {
    transform: translateX(-125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-in-02 {
  0% {
    transform: translateX(125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.slideIn-wrap {
  overflow: hidden;
  opacity: 0;
}

.slideIn-wrap-active {
  animation: slide-in-01 0.5s ease-out forwards;
}

.slideIn-active {
  animation: slide-in-02 0.5s ease-out forwards;
}

/* 逆方向のアニメーション */
@keyframes slide-in-re-01 {
  0% {
    transform: translateX(125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-in-re-02 {
  0% {
    transform: translateX(-125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.slideInRe-wrap {
  overflow: hidden;
  opacity: 0;
}

.slideInRe-wrap-active {
  animation: slide-in-re-01 0.5s ease-out forwards;
}

.slideInRe-active {
  animation: slide-in-re-02 0.5s ease-out forwards;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down {
  animation: up-down 3s ease-in-out alternate infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.rotate {
  animation: rotate 2.5s ease-in-out alternate infinite;
}

@keyframes puru-rotate {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
@keyframes pon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
  }
  85% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* タイトルロゴ出現モーション
================================*/
@keyframes title-logo {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.title-overflow {
  overflow-y: clip;
}

.title-logo {
  opacity: 0;
}
.title-logo:nth-child(1) {
  animation-delay: 3s;
}
.title-logo:nth-child(2) {
  animation-delay: 3.05s;
}
.title-logo:nth-child(3) {
  animation-delay: 3.1s;
}
.title-logo:nth-child(4) {
  animation-delay: 3.15s;
}
.title-logo:nth-child(5) {
  animation-delay: 3.2s;
}
.title-logo:nth-child(6) {
  animation-delay: 3.25s;
}
.title-logo:nth-child(8) {
  animation-delay: 3.25s;
}

.title-logo-active {
  animation: title-logo 0.7s ease-in-out forwards;
}

/* 各種タイトル出現
================================*/
.title-appear {
  opacity: 0;
}
.title-appear:nth-child(2) {
  animation-delay: 0.05s;
}
.title-appear:nth-child(3) {
  animation-delay: 0.1s;
}
.title-appear:nth-child(4) {
  animation-delay: 0.15s;
}
.title-appear:nth-child(5) {
  animation-delay: 0.2s;
}
.title-appear:nth-child(6) {
  animation-delay: 0.25s;
}
.title-appear:nth-child(7) {
  animation-delay: 0.3s;
}
.title-appear:nth-child(8) {
  animation-delay: 0.35s;
}
.title-appear:nth-child(9) {
  animation-delay: 0.4s;
}

.title-appear-active {
  animation: title-logo 0.7s ease-in-out forwards;
}

/*　イントロ コマ取りアニメ
==============================*/
.intro-anime-img {
  opacity: 0;
}
.intro-anime-img:nth-child(1) {
  animation: komadori 2s infinite steps(1) 1.5s;
}
.intro-anime-img:nth-child(2) {
  animation: komadori 2s infinite steps(1) 1s;
}
.intro-anime-img:nth-child(3) {
  animation: komadori 2s infinite steps(1) 0.5s;
}
.intro-anime-img:nth-child(4) {
  animation: komadori 2s infinite steps(1);
}

@keyframes komadori {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* MVディッシュスライダー
================================*/
.mv-dish-01 {
  transition: 0.75s ease-in-out;
  transition-delay: 2.75s;
  transform-origin: center 70%;
}

.mv-dish-01-active {
  transform: scale(0);
}

.mv-dish-02 {
  overflow: hidden;
}

.mv-dish-item-02 {
  transform: translateY(100%);
  transition: 0.5s ease-in-out;
  transition-delay: 3s;
}

.mv-dish-item-02-active {
  transform: translateY(0%);
}

/* イントロセクション
================================*/
@keyframes intro-line {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.intro-line {
  transform: scale(0.4);
  transform-origin: top right;
  opacity: 0;
}

.intro-line-active {
  animation: intro-line 0.3s ease-in-out forwards;
}

/* イラスト出現
================================*/
@keyframes grow-illust {
  0% {
    opacity: 0;
    transform: scaleY(0.9) scaleX(0.95);
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: scaleY(1.1) scaleX(1.01);
  }
  100% {
    transform: scaleY(1) scaleX(1);
    opacity: 1;
  }
}
.situA-anime, .situB-anime, .situC-anime {
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: bottom;
}

.situA-anime-active, .situB-anime-active, .situC-anime-active {
  animation: grow-illust 0.75s ease-in-out forwards;
}

/* グロウアニメーション
================================*/
@keyframes grow {
  0% {
    opacity: 0;
    transform: scaleY(0.5) scaleX(0.95);
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: scaleY(1.3) scaleX(1.01);
  }
  100% {
    transform: scaleY(1) scaleX(1);
    opacity: 1;
  }
}
.grow {
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: bottom;
}

.grow-active {
  animation: grow 0.5s ease-in-out forwards;
}

/* 野生のディッシュ & 名前
================================*/
.appearXL {
  transform: translateX(-110%);
}

.appearXL-active {
  transform: translateX(0%);
  transition: 0.5s ease-in-out;
}

.appearXR {
  transform: translateX(110%);
}

.appearXR-active {
  transform: translateX(0%);
  transition: 0.5s ease-in-out;
}

.appearNameXL {
  transform: translateX(-18%);
  opacity: 0;
}

.appearNameXL-active {
  transform: translateX(0%);
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.appearNameXR {
  transform: translateX(18%);
  opacity: 0;
}

.appearNameXR-active {
  transform: translateX(0%);
  opacity: 1;
  transition: 0.3s ease-in-out;
}

/*　点滅
==============================*/
@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.flash {
  animation: flash 2s infinite ease-in-out;
}

/* 下からニュッ
================================*/
.appearY-wrap {
  overflow-y: clip;
}

.appearY {
  transform: translateY(120%);
}

.appearY-active {
  transform: translateY(0%);
  transition: 0.5s;
}

/*　ジャンプ
==============================*/
@keyframes jump {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateY(-25%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.jump, .mv-jump {
  opacity: 0;
}

.jump-active {
  animation: jump 0.5s ease-in-out forwards;
}

.jumpR, .mv-jumpR {
  transform: rotate(15deg);
}

.jumpR-active {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.jumpL, .mv-jumpL {
  transform: rotate(-15deg);
}

.jumpL-active {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.shadow {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: bottom;
}

.shadow-active {
  opacity: 1;
  transform: scale(1);
  transition: 0.5s ease-out;
}

/*　足跡
==============================*/
@keyframes foot {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.foot {
  opacity: 0;
}

.foot-active {
  animation: foot 0.6s steps(1) forwards;
}

.banner-foot-img:nth-child(6), .menuE-foot-img:nth-child(6), .menuB-foot-img:nth-child(6) {
  animation-delay: 0;
}
.banner-foot-img:nth-child(5), .menuE-foot-img:nth-child(5), .menuB-foot-img:nth-child(5) {
  animation-delay: 0.1s;
}
.banner-foot-img:nth-child(4), .menuE-foot-img:nth-child(4), .menuB-foot-img:nth-child(4) {
  animation-delay: 0.2s;
}
.banner-foot-img:nth-child(3), .menuE-foot-img:nth-child(3), .menuB-foot-img:nth-child(3) {
  animation-delay: 0.3s;
}
.banner-foot-img:nth-child(2), .menuE-foot-img:nth-child(2), .menuB-foot-img:nth-child(2) {
  animation-delay: 0.4s;
}
.banner-foot-img:nth-child(1), .menuE-foot-img:nth-child(1), .menuB-foot-img:nth-child(1) {
  animation-delay: 0.5s;
}

/*　360度回転
==============================*/
@keyframes rotate-360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotate-360 {
  animation: rotate-360 15s linear infinite;
}

.intro-new-img {
  animation-duration: 10s;
}

/*　LOOPER
==============================*/
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.looper {
  display: flex;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
.looper div {
  width: 150%;
  flex-shrink: 0;
}

.loop-first {
  display: inline;
  animation: loop 30s -15s linear infinite;
}

.loop-second {
  display: inline;
  animation: loop2 30s linear infinite;
}

/*　PC ONLY
==============================*/
@keyframes deli {
  0% {
    transform: translateX(10vw);
  }
  75% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(-100vw);
  }
}
.back-ico-delivery {
  transform: translateX(10vw);
}

.back-ico-delivery-active {
  animation: deli 7s cubic-bezier(0.38, 0.01, 0.75, 0.33) infinite;
}

@keyframes back-ico-01 {
  0% {
    transform: translate(0) scale(0.6);
  }
  5% {
    transform: translateX(-80%) scale(1);
  }
  45% {
    transform: translateX(-80%) scale(1);
  }
  50% {
    transform: translateX(0%) scale(0.6);
  }
  100% {
    transform: translateX(0%) scale(0.6);
  }
}
.back-ico-01 {
  transform: scale(0.6);
  transform-origin: right bottom;
}

.back-ico-01-active {
  animation: back-ico-01 6s linear infinite;
}

@keyframes back-ico-02 {
  0% {
    transform: translate(0) scale(0.4);
  }
  5% {
    transform: translateX(80%) scale(1);
  }
  45% {
    transform: translateX(80%) scale(1);
  }
  50% {
    transform: translateX(0%) scale(0.4);
  }
  100% {
    transform: translateX(0%) scale(0.4);
  }
}
.back-ico-02 {
  transform: scale(0.4);
  transform-origin: left top 60%;
}

.back-ico-02-active {
  animation: back-ico-02 6s linear infinite 3s;
}

@keyframes k {
  0% {
    transform: rotate(0);
  }
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(5deg);
  }
  14% {
    transform: rotate(0deg);
  }
  26% {
    transform: rotate(0);
  }
}
.k-active {
  animation: k 6s ease-in-out infinite 3s;
  transform-origin: right bottom;
}

@keyframes u {
  0% {
    transform: rotate(0);
  }
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(-5deg);
  }
  14% {
    transform: rotate(0deg);
  }
  26% {
    transform: rotate(0);
  }
}
.u-active {
  animation: u 6s ease-in-out infinite 6s;
  transform-origin: left bottom;
}

/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* LP Common Style
===============================*/
img {
  width: 100%;
  height: auto;
}

.abs {
  position: absolute;
}

.abs-def {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.rel {
  position: relative;
}

.sticky {
  position: sticky;
}

.mt-1 {
  margin-top: -1px;
}

.zeroA {
  margin: 0 auto;
}

.opacity {
  opacity: 0;
}

/* Delay Set
===============================*/
.delay-01 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-015 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-02 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-025 {
  transition-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-03 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-035 {
  transition-delay: 0.35s;
  animation-delay: 0.35s;
}

.delay-04 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-045 {
  transition-delay: 0.45s;
  animation-delay: 0.45s;
}

.delay-05 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-055 {
  transition-delay: 0.55s;
  animation-delay: 0.55s;
}

.delay-06 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-08 {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

.pt {
  padding-top: 200px;
}

/* TO内共通
===============================*/
.pattern {
  border-radius: 40px;
}
@media screen and (max-width: 1535px) {
  .pattern {
    border-radius: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .pattern {
    border-radius: calc(40 * 0.625 / 375 * 100vw);
  }
}

/* メインビジュアル セクション
===============================*/
.sec-mv .mv-wrap {
  height: 794px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-mv .mv-wrap {
    height: calc(794px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-mv .mv-wrap {
    height: calc(794 * 0.625 / 375 * 100vw);
  }
}

/* イントロ 導入 セクション
===============================*/
.sec-intro {
  padding-bottom: 104px;
}
@media screen and (max-width: 1535px) {
  .sec-intro {
    padding-bottom: calc(104px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro {
    padding-bottom: calc(104 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-anime {
  width: 65.6%;
}

/* メニュー MENU セクション
===============================*/
.sec-menu {
  padding-bottom: 85px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-menu {
    padding-bottom: calc(85px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu {
    padding-bottom: calc(85 * 0.625 / 375 * 100vw);
  }
}

/* 期間限定 LIMITED セクション
===============================*/
.sec-limited .limited-box {
  width: 89%;
  height: 908px;
  margin-bottom: 216px;
}
@media screen and (max-width: 1535px) {
  .sec-limited .limited-box {
    height: calc(908px * 0.75);
    margin-bottom: calc(216px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-limited .limited-box {
    height: calc(845 * 0.625 / 375 * 100vw);
    margin-bottom: calc(216 * 0.625 / 375 * 100vw);
  }
}
.sec-limited .limited-box .border-left {
  top: 0;
  left: 0;
  background-color: #fff;
  width: 22px;
  height: 100%;
}
@media screen and (max-width: 1535px) {
  .sec-limited .limited-box .border-left {
    width: 17px;
  }
}
@media screen and (max-width: 600px) {
  .sec-limited .limited-box .border-left {
    width: 14px;
  }
}
.sec-limited .limited-box .border-right {
  top: 0;
  right: 0;
  background-color: #fff;
  width: 22px;
  height: 100%;
}
@media screen and (max-width: 1535px) {
  .sec-limited .limited-box .border-right {
    width: 17px;
  }
}
@media screen and (max-width: 600px) {
  .sec-limited .limited-box .border-right {
    width: 14px;
  }
}
.sec-limited .limited-box #loop-01 {
  border-bottom: #00611a 2px solid;
  z-index: 100;
}
.sec-limited .limited-box #loop-02 {
  border-top: #00611a 2px solid;
  top: auto;
  bottom: 0;
  z-index: 100;
}

/* CHOICE セクション
===============================*/
.sec-choice {
  padding-top: 120px;
}
@media screen and (max-width: 1535px) {
  .sec-choice {
    padding-bottom: calc(120px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-choice {
    padding-bottom: calc(120 * 0.625 / 375 * 100vw);
  }
}

/* テイクアウト TAKEOUT セクション
===============================*/
.sec-takeout {
  margin-bottom: 37px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout {
    margin-bottom: calc(37px * 0.75);
    border-radius: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout {
    margin-bottom: calc(37 * 0.625 / 375 * 100vw);
    border-radius: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-wrap {
  width: 89.06%;
  padding-bottom: 96px;
  background-color: #ffd000;
  border-radius: 40px;
  filter: drop-shadow(0 10px 10px rgba(0, 97, 26, 0.5));
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-wrap {
    padding-bottom: calc(57px * 0.75);
    border-radius: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-wrap {
    padding-bottom: calc(57 * 0.625 / 375 * 100vw);
    border-radius: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-wrap .takeout-anker {
  width: 90%;
  transform: translateX(0.5%);
}
.sec-takeout .takeout-wrap .takeout-anker .takeout-a {
  display: block;
}

/* 宅配 DELIVERY セクション
===============================*/
.sec-delivery .delivery-wrap {
  width: 89.06%;
  background-color: #ffd000;
  padding-bottom: 144px;
  border-radius: 40px;
  filter: drop-shadow(0 10px 10px rgba(0, 97, 26, 0.5));
}
@media screen and (max-width: 1535px) {
  .sec-delivery .delivery-wrap {
    padding-bottom: calc(144px * 0.75);
    border-radius: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-delivery .delivery-wrap {
    padding-bottom: calc(144 * 0.625 / 375 * 100vw);
    border-radius: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-delivery .delivery-wrap .delivery-container {
  width: 85.9%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec-delivery .delivery-wrap .delivery-container .delivery-item {
  width: 46.34%;
  margin-bottom: 35px;
}
@media screen and (max-width: 1535px) {
  .sec-delivery .delivery-wrap .delivery-container .delivery-item {
    margin-bottom: calc(35px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-delivery .delivery-wrap .delivery-container .delivery-item {
    margin-bottom: calc(35 * 0.625 / 375 * 100vw);
  }
}
.sec-delivery .delivery-wrap .delivery-anker {
  display: block;
  width: 65.8%;
  margin-top: 53px;
}
@media screen and (max-width: 1535px) {
  .sec-delivery .delivery-wrap .delivery-anker {
    margin-top: calc(53px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-delivery .delivery-wrap .delivery-anker {
    margin-top: calc(53 * 0.625 / 375 * 100vw);
  }
}

/* バナー セクション
===============================*/
.sec-banner {
  padding-top: 197px;
  padding-bottom: 208px;
}
@media screen and (max-width: 1535px) {
  .sec-banner {
    padding-top: calc(197px * 0.75);
    padding-bottom: calc(208px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-banner {
    padding-top: calc(197 * 0.625 / 375 * 100vw);
    padding-bottom: calc(208 * 0.625 / 375 * 100vw);
  }
}
.sec-banner .banner-anker {
  display: block;
  width: 53.6%;
  filter: drop-shadow(0 10px 10px rgba(0, 97, 26, 0.5));
}/*# sourceMappingURL=style.css.map */