@charset "UTF-8";
/* Margin Calc Set
===============================*/
@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: 5000;
  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/takeout/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/takeout/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;
  box-shadow: 0 0 20px rgba(84, 10, 14, 0.5);
  z-index: 1000;
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

/* LEFT STYLE
=============================*/
.left {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-color: #f4b43f;
  background-image: url(/lp/takeout/images/left_img.jpg);
  background-size: 660px;
  background-position: top right;
  z-index: 32;
  overflow-y: clip;
}
@media screen and (max-width: 1535px) {
  .left {
    background-size: 545px;
    width: calc(50% - 225px);
    background-image: url(/lp/takeout/images/left_img_1535.jpg);
  }
}
@media screen and (max-width: 1440px) {
  .left {
    width: calc(50% - 225px);
    background-image: url(/lp/takeout/images/left_img.jpg);
    background-size: 495px;
  }
}
@media screen and (max-width: 600px) {
  .left {
    display: none;
  }
}
.left .left-logo {
  width: 71%;
  top: 46%;
  left: 16%;
}
.left .left-logo .topC-box {
  width: 53%;
  margin-top: 70px;
}
@media screen and (max-width: 1535px) {
  .left .left-logo .topC-box {
    margin-top: calc(70px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .left .left-logo .topC-box {
    margin-top: calc(70 * 0.625 / 375 * 100vw);
  }
}

/* RIGHT STYLE
=============================*/
.right {
  position: sticky;
  background-color: #fec503;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-color: #f4b43f;
  background-image: url(/lp/takeout/images/right_img.jpg);
  background-size: 660px;
  z-index: 32;
  overflow-y: clip;
}
@media screen and (max-width: 1535px) {
  .right {
    width: calc(50% - 225px);
    background-size: 545px;
    background-image: url(/lp/takeout/images/right_img_1535.jpg);
  }
}
@media screen and (max-width: 1440px) {
  .right {
    width: calc(50% - 225px);
    background-size: 495px;
    background-image: url(/lp/takeout/images/right_img.jpg);
  }
}
@media screen and (max-width: 600px) {
  .right {
    display: none;
  }
}
.right .right-banner {
  display: block;
  width: 46%;
  bottom: 3%;
  right: 5%;
}

/* COMMON SHADOW FONTS
===============================*/
.brown {
  color: #301700;
}

.box-shadow {
  box-shadow: 0 0 10px rgba(224, 199, 129, 0.7);
}

.menu-font {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 1535px) {
  .menu-font {
    font-size: calc(22px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menu-font {
    font-size: calc(22 * 0.625 / 375 * 100vw);
  }
}

.caption-font {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1535px) {
  .caption-font {
    font-size: calc(18px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .caption-font {
    font-size: calc(18 * 0.625 / 375 * 100vw);
  }
}

/* MODAL
======================================*/
.nav-bg {
  position: fixed;
  width: 600px;
  height: 100vh;
  top: 0;
  left: calc(50% - 300px);
  z-index: 2000;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 1535px) {
  .nav-bg {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .nav-bg {
    width: 100%;
    left: 0;
  }
}

.nav-bg-active {
  background-color: #301700;
  opacity: 0.3;
}

.nav-overflow {
  position: fixed;
  width: 600px;
  height: 850px;
  top: 0;
  z-index: 2000;
  right: calc(50% - 300px);
  transform: translateY(-100%);
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1535px) {
  .nav-overflow {
    width: 450px;
    height: 620px;
    right: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .nav-overflow {
    width: 100%;
    right: 0;
    height: 135vw;
  }
}

.nav-overflow-active {
  transform: translateY(0);
}

.nav-content {
  width: 600px;
  height: 850px;
  margin-left: auto;
  margin-right: 0;
  background-color: #fff9e4;
  opacity: 1;
  z-index: 2100;
  transition: 0.3s;
  top: 0;
}
@media screen and (max-width: 1535px) {
  .nav-content {
    width: 450px;
    height: 620px;
    right: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .nav-content {
    width: 100%;
    height: 135vw;
    right: 0;
  }
}
.nav-content .nav-wrap {
  width: 91%;
  padding-top: 25%;
  margin-left: auto;
  margin-right: 0;
}
.nav-content .nav-wrap .nav-title {
  margin-bottom: 22px;
  opacity: 0;
}
@media screen and (max-width: 1535px) {
  .nav-content .nav-wrap .nav-title {
    margin-bottom: calc(22px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .nav-content .nav-wrap .nav-title {
    margin-bottom: calc(22 * 0.625 / 375 * 100vw);
  }
}
.nav-content .nav-wrap .nav-title-active {
  animation: pon 0.3s ease-in-out forwards;
}
.nav-content .nav-wrap .navA {
  animation-delay: 0.1s;
}
.nav-content .nav-wrap .navB {
  animation-delay: 0.2s;
}
.nav-content .nav-wrap .navC {
  animation-delay: 0.3s;
}
.nav-content .nav-wrap .navD {
  animation-delay: 0.4s;
}
.nav-content .nav-wrap .navE {
  animation-delay: 0.52s;
}
.nav-content .nav-wrap .navC-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 83%;
  margin-bottom: 7px;
}
@media screen and (max-width: 1535px) {
  .nav-content .nav-wrap .navC-container {
    margin-bottom: calc(7px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .nav-content .nav-wrap .navC-container {
    margin-bottom: calc(7 * 0.625 / 375 * 100vw);
  }
}
.nav-content .nav-wrap .navC-container .navC-item {
  width: 44%;
  margin-bottom: 12px;
}
.nav-content .nav-wrap .navC-container .navC-item:nth-child(even) {
  width: 53%;
}
@media screen and (max-width: 1535px) {
  .nav-content .nav-wrap .navC-container .navC-item {
    margin-bottom: calc(12px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .nav-content .nav-wrap .navC-container .navC-item {
    margin-bottom: calc(12 * 0.625 / 375 * 100vw);
  }
}

.nav-sw {
  position: fixed;
  width: 56px;
  z-index: 2200;
  top: 13%;
  right: calc(50% - 275px);
}
@media screen and (max-width: 1535px) {
  .nav-sw {
    width: 42px;
    right: calc(50% - 205px);
  }
}
@media screen and (max-width: 600px) {
  .nav-sw {
    width: 9.3%;
    top: 80px;
    right: 4%;
  }
}
.nav-sw img:hover {
  cursor: pointer;
}

/* Margin Calc Set
===============================*/
/* 共通
===============================*/
#message-body {
  background-color: #ffb600;
}

/* 選択肢①
===============================*/
.areaA {
  padding-top: 208px;
  padding-bottom: 85px;
  background: linear-gradient(0deg, rgb(188, 89, 0) 0%, rgb(201, 108, 0) 13.9%, rgb(214, 128, 0) 33.01%, rgb(219, 135, 0) 45.95%, rgb(216, 128, 0) 63.25%, rgb(209, 108, 0) 88.92%, rgb(206, 98, 0) 98.77%);
}
@media screen and (max-width: 1535px) {
  .areaA {
    padding-top: calc(208px * 0.75);
    padding-bottom: calc(77px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaA {
    padding-top: calc(208 * 0.625 / 375 * 100vw);
    padding-bottom: calc(77 * 0.625 / 375 * 100vw);
  }
}
.areaA .areaA-h1 {
  width: 86%;
  margin: 0 auto;
}
.areaA .areaA-result-img {
  transform: scaleY(0.8);
  opacity: 0;
  transform-origin: top;
  transition: 0.5s;
}
.areaA .areaA-result-active {
  transform: scaleY(1);
  opacity: 1;
  transform-origin: top;
}
.areaA .areaA-btn, .areaA .areaA-btn-02 {
  display: block;
  margin: -4% auto 0 auto;
  opacity: 0.5;
  width: 38%;
  transition: 0.3s;
  z-index: 100;
}
.areaA .areaA-btn-active, .areaA .areaA-btn-02-active {
  opacity: 1;
}
.areaA .areaA-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

/* セレクトボックス設定
===============================*/
.arrow-top {
  display: block;
  width: 9.5%;
  top: 10%;
  left: 45.5%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .arrow-top {
    top: 10%;
  }
}

.arrow-bottom {
  display: block;
  width: 9.5%;
  top: 76.5%;
  left: 46%;
  margin: -18px auto 0 auto;
}
@media screen and (max-width: 600px) {
  .arrow-bottom {
    top: 78.5%;
  }
}

.selectboxA-inner {
  width: 96.8%;
  height: 520px;
  background-image: url(/lp/takeout/message_img/areaA_selectboxA.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 85px;
  margin: 0 auto;
}
@media screen and (max-width: 1535px) {
  .selectboxA-inner {
    height: calc(520px * 0.75);
    padding-top: calc(80px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .selectboxA-inner {
    height: calc(520 * 0.625 / 375 * 100vw);
    padding-top: calc(85 * 0.625 / 375 * 100vw);
  }
}
.selectboxA-inner .scrollbox {
  overflow-y: scroll;
  height: 66%;
  padding-top: 10px;
}
.selectboxA-inner .scrollbox::-webkit-scrollbar {
  display: none;
}
.selectboxA-inner .sel-btn-settings {
  display: block;
  width: 71%;
  margin: 0 auto 14px auto;
  border-radius: 22px;
  background-color: #fc9d00;
  padding: 17px 20px 15px 20px;
  text-align: center;
  box-shadow: inset 5px 5px 14px rgba(195, 60, 0, 0.4), 1.5px 3px 8px rgba(83, 16, 0, 0.5);
}
@media screen and (max-width: 1535px) {
  .selectboxA-inner .sel-btn-settings {
    padding-top: calc(17px * 0.75);
    padding-left: calc(20px * 0.75);
    padding-bottom: calc(15px * 0.75);
    padding-right: calc(20px * 0.75);
    margin-bottom: calc(14px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .selectboxA-inner .sel-btn-settings {
    padding-top: calc(17 * 0.625 / 375 * 100vw);
    padding-left: calc(20 * 0.625 / 375 * 100vw);
    padding-bottom: calc(15 * 0.625 / 375 * 100vw);
    padding-right: calc(20 * 0.625 / 375 * 100vw);
    margin-bottom: calc(14 * 0.625 / 375 * 100vw);
    border-radius: 13px;
  }
}

/* 
===============================*/
.areaA-resultWord, .areaB-resultWord {
  width: 65%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #641719;
  text-align: center;
}

.areaA-resultWord {
  opacity: 0;
  transition: 0.5s;
}

.areaA-result {
  margin-top: -1%;
}

/* AREA B
===============================*/
.areaB {
  position: fixed;
  width: 600px;
  height: 100vh;
  top: 0;
  left: calc(50% - 300px);
  padding-top: 230px;
  padding-bottom: 232px;
  z-index: 100;
  background: linear-gradient(0deg, rgb(188, 89, 0) 0%, rgb(201, 108, 0) 13.9%, rgb(214, 128, 0) 33.01%, rgb(219, 135, 0) 45.95%, rgb(216, 128, 0) 63.25%, rgb(209, 108, 0) 88.92%, rgb(206, 98, 0) 98.77%);
  overflow-y: auto;
  overflow-x: clip;
  transition: 0.5s;
  opacity: 0;
}
@media screen and (max-width: 1535px) {
  .areaB {
    width: 450px;
    left: calc(50% - 225px);
    padding-top: calc(230px * 0.75);
    padding-bottom: calc(270px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaB {
    width: 100%;
    top: 0;
    left: 0;
    padding-top: calc(230 * 0.625 / 375 * 100vw);
    padding-bottom: calc(270 * 0.625 / 375 * 100vw);
  }
}
.areaB .areaB-content {
  overflow-y: auto;
}
.areaB .areaB-h2 {
  width: 100%;
  margin-bottom: 26px;
}
@media screen and (max-width: 1535px) {
  .areaB .areaB-h2 {
    margin-bottom: calc(26px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaB .areaB-h2 {
    margin-bottom: calc(26 * 0.625 / 375 * 100vw);
  }
}
.areaB .areaB-btn-con {
  display: flex;
  justify-content: space-between;
  width: 74%;
  margin: 0 auto;
}
.areaB .areaB-btn-con button {
  width: 100%;
}
.areaB .areaB-fusha {
  width: 280%;
  height: 150vh;
  top: -19%;
  left: -89%;
  overflow: hidden;
}
.areaB .areaB-fusha .fusha-img {
  animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}
/* AREA C
===================================*/
.areaC {
  padding-top: 235px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, rgb(188, 89, 0) 0%, rgb(201, 108, 0) 13.9%, rgb(214, 128, 0) 33.01%, rgb(219, 135, 0) 45.95%, rgb(216, 128, 0) 63.25%, rgb(209, 108, 0) 88.92%, rgb(206, 98, 0) 98.77%);
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .areaC {
    padding-top: calc(235px * 0.75);
    padding-bottom: calc(15px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaC {
    padding-top: calc(235 * 0.625 / 375 * 100vw);
    padding-bottom: calc(15 * 0.625 / 375 * 100vw);
  }
}
.areaC .areaC-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}
.areaC .letter-wrap {
  width: 200%;
  overflow-x: scroll;
}
.areaC .letter-container {
  display: flex;
}
.areaC {
  /*  ボタン周り
  ==================*/
}
.areaC .letter-main {
  height: 462px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .areaC .letter-main {
    height: calc(462px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaC .letter-main {
    height: calc(462 * 0.625 / 375 * 100vw);
  }
}
.areaC .letter-main .main-message-box {
  width: 61.8%;
  top: 0%;
  left: 20%;
}
.areaC .letter-main .main-message-box .main-left {
  width: 57%;
  top: 9%;
  left: -38%;
  transform-origin: right 60%;
  animation: left-wing 2.5s ease-in-out alternate-reverse infinite;
}
.areaC .letter-main .main-message-box .main-right {
  width: 57%;
  top: 9%;
  right: -38%;
  transform-origin: left 60%;
  animation-delay: 1.2s;
  animation: right-wing 2.5s ease-in-out alternate-reverse infinite;
}
.areaC .letter-main .main-message-box .areaC-resultWord {
  width: 77%;
  text-align: center;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.35;
}
.areaC .letter-main .main-message-send {
  transform: translateY(-150%) scale(0.47);
  opacity: 0;
  transition: 2s ease-in-out;
}
.areaC .letter-main .areaC-btn {
  display: block;
  top: 48%;
  left: 23%;
  width: 56.4%;
  transition: 0.5s;
}
.areaC .letter-main .areaC-complete {
  width: 100%;
  top: 15%;
  left: 0;
  transition: 1s;
  transition-delay: 2.2s;
}

/* AREA C メッセージコンテナ設定
===================================*/
.areaC-horizontal {
  width: 600px;
  height: 145px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.areaC-horizontal::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1535px) {
  .areaC-horizontal {
    width: 450px;
    height: 105px;
  }
}
@media screen and (max-width: 600px) {
  .areaC-horizontal {
    width: 100vw;
    height: 23.2vw;
  }
}

.areaC-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
  width: 1850px;
}
@media screen and (max-width: 1535px) {
  .areaC-container {
    width: 1400px;
    gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  .areaC-container {
    width: 307vw;
    gap: 3.3vw;
  }
}

.item {
  flex: 0 0 auto;
  width: 15%;
  scroll-snap-align: center;
}
@media screen and (max-width: 1535px) {
  .item {
    width: 15%;
  }
}
@media screen and (max-width: 600px) {
  .item {
    width: 15%;
  }
}

.item-center {
  width: 16%;
}
@media screen and (max-width: 1535px) {
  .item-center {
    width: 16%;
  }
}
@media screen and (max-width: 600px) {
  .item-center {
    width: 15%;
  }
}

.letter-box {
  margin: 0 auto;
  width: 73%;
}
.letter-box .wing-box-gold, .letter-box .wing-gold, .letter-box .wing-box-blank, .letter-box .letter-box-message-result {
  transition: 1.5s;
  transition-delay: 1.5s;
}
.letter-box .wing-left-blank {
  width: 24%;
  top: 38%;
  left: -21%;
}
.letter-box .wing-right-blank {
  width: 24%;
  top: 38%;
  right: -21%;
}
.letter-box .wing-left {
  width: 70%;
  top: 3%;
  left: -43%;
  transform-origin: right 60%;
  animation: left-wing 2.5s ease-in-out infinite;
}
.letter-box .wing-right {
  width: 70%;
  top: 3%;
  right: -43%;
  transform-origin: left 60%;
  animation: right-wing 2.5s ease-in-out infinite;
}
.letter-box .letter-box-message {
  display: block;
  width: 140px;
  top: 50%;
  left: 50%;
  white-space: normal;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1535px) {
  .letter-box .letter-box-message {
    width: 110px;
  }
}
@media screen and (max-width: 600px) {
  .letter-box .letter-box-message {
    width: 69%;
  }
}

/* AREA D
===================================*/
.areaD {
  padding-top: 120px;
}
@media screen and (max-width: 1535px) {
  .areaD {
    padding-top: calc(120px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD {
    padding-top: calc(150 * 0.625 / 375 * 100vw);
  }
}

.areaD-h2 {
  margin-bottom: 22px;
}
@media screen and (max-width: 1535px) {
  .areaD-h2 {
    margin-bottom: calc(13px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD-h2 {
    margin-bottom: calc(13 * 0.625 / 375 * 100vw);
  }
}

.areaD-ranking {
  width: 77.3%;
  margin: 0 auto;
  padding-top: 101px;
  z-index: 5;
}
@media screen and (max-width: 1535px) {
  .areaD-ranking {
    padding-top: calc(101px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD-ranking {
    padding-top: calc(101 * 0.625 / 375 * 100vw);
  }
}
.areaD-ranking .ranking-head {
  width: 117%;
  top: -35px;
  left: -9%;
  z-index: 5;
}
@media screen and (max-width: 1535px) {
  .areaD-ranking .ranking-head {
    top: -20px;
  }
}
@media screen and (max-width: 600px) {
  .areaD-ranking .ranking-head {
    top: -4vw;
  }
}
.areaD-ranking .areaD-container {
  display: flex;
  margin-top: -1px;
}
.areaD-ranking .areaD-container .areaD-top {
  height: 70px;
}
.areaD-ranking .areaD-container .D-left {
  width: 15%;
  background-color: #ffdd4d;
}
.areaD-ranking .areaD-container .D-left .left-img {
  top: 50%;
  left: 0;
  width: 16%;
  transform: translateY(-50%);
}
.areaD-ranking .areaD-container .left-orange {
  background-color: #ff8500;
}
.areaD-ranking .areaD-container .D-right {
  width: 85%;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 5%;
  padding-right: 5%;
  background-color: #ffeeac;
}
.areaD-ranking .areaD-container .right-orange {
  background-color: #ffc466;
}

.last-left {
  border-bottom-left-radius: 20px;
}

.last-right {
  border-bottom-right-radius: 20px;
}

.ranking-cheese-01 {
  top: 25%;
  left: -8%;
  width: 33%;
}

.ranking-cheese-02 {
  top: 26%;
  right: -8%;
  width: 31%;
}

.ranking-cheese-03 {
  top: 45%;
  right: -8%;
  width: 25.8%;
}

.ranking-cheese-04 {
  top: 65%;
  left: -4%;
  width: 25.8%;
}

.ranking-cheese-05 {
  top: 84%;
  right: -5%;
  width: 30.8%;
}

.areaD-return {
  display: block;
  width: 37%;
  margin: 22px auto 74px auto;
}
@media screen and (max-width: 1535px) {
  .areaD-return {
    margin-top: calc(22px * 0.75);
    margin-bottom: calc(74px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD-return {
    margin-top: calc(22 * 0.625 / 375 * 100vw);
    margin-bottom: calc(74 * 0.625 / 375 * 100vw);
  }
}

/* フォントサイズ設定
===============================*/
.sel-btn-settings {
  font-size: 20px;
  font-weight: 900;
  color: #641719;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .sel-btn-settings {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .sel-btn-settings {
    font-size: 13px;
  }
}

.sel-btn-active {
  color: #fff3c2 !important;
  transform: scale(0.95);
  transform-origin: center;
}

.areaA-resultWord, .areaB-resultWord {
  color: #641719;
  font-size: 29px;
  font-weight: 900;
}
@media screen and (max-width: 1535px) {
  .areaA-resultWord, .areaB-resultWord {
    font-size: 21px;
  }
}
@media screen and (max-width: 600px) {
  .areaA-resultWord, .areaB-resultWord {
    font-size: 18px;
  }
}

.areaC-resultWord {
  color: #641719;
  font-size: 22px;
  font-weight: 900;
}
@media screen and (max-width: 1535px) {
  .areaC-resultWord {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .areaC-resultWord {
    font-size: 14px;
  }
}

.letter-box-message {
  font-size: 14px;
  font-weight: 900;
  color: #641719;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1535px) {
  .letter-box-message {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .letter-box-message {
    font-size: 10px;
    transform-origin: center;
  }
}

.D-right {
  color: #641719;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.35;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1535px) {
  .D-right {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .D-right {
    font-size: 12px;
  }
}

.show {
  opacity: 1;
  transition: 0.5s;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

/* FIXED
====================================*/
.mes-fixed {
  position: fixed;
  top: 0;
  left: calc(50% - 300px);
  width: 600px;
  height: 100vh;
  overflow: hidden;
  z-index: 300;
}
@media screen and (max-width: 1535px) {
  .mes-fixed {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .mes-fixed {
    width: 100%;
    left: 0;
  }
}
.mes-fixed .mes-fixed-wrap {
  width: 100%;
  height: 100vh;
}
.mes-fixed .mes-fixed-wrap .mes-top {
  width: 100%;
  height: 50vh;
  top: 0;
  left: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-bottom {
  width: 100%;
  height: 50vh;
  bottom: 0;
  right: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-left {
  width: 50%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-right {
  width: 50%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-top-active {
  transform: translateY(-1200px);
  transition: 3.8s;
}
@media screen and (max-width: 600px) {
  .mes-fixed .mes-fixed-wrap .mes-top-active {
    transition: 4.8s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-bottom-active {
  transform: translateY(1200px);
  transition: 4s;
}
@media screen and (max-width: 600px) {
  .mes-fixed .mes-fixed-wrap .mes-bottom-active {
    transition: 4.8s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-left-active {
  transform: translateX(-570%);
  transition: 4.8s;
}
@media screen and (max-width: 1535px) {
  .mes-fixed .mes-fixed-wrap .mes-left-active {
    transition: 5s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-right-active {
  transform: translateX(570%);
  transition: 4.8s;
}
@media screen and (max-width: 1535px) {
  .mes-fixed .mes-fixed-wrap .mes-right-active {
    transition: 5s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-abs {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mes-fixed .mes-fixed-wrap .mes-abs .mes-abs-img {
  transform-origin: center;
  transform: scale(0) rotate(10deg);
}
.mes-fixed .mes-fixed-wrap .mes-abs .mes-abs-img-active {
  animation: mes-op 2s linear forwards;
}
@keyframes mes-op {
  0% {
    transform: scale(0) rotate(5deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(3) rotate(0);
    opacity: 0;
  }
}

/* MENUA STAR
===============================*/
.menuA-star-01 {
  width: 4.5%;
  top: 74%;
  right: 18%;
}

.menuA-star-02 {
  width: 6.5%;
  top: 31%;
  left: 19.5%;
}

.menuA-star-03 {
  width: 4%;
  top: 45%;
  left: 26%;
}

.menuA-star-04 {
  width: 7.5%;
  top: 47.5%;
  right: 19.5%;
}

.menuA-wine {
  width: 19%;
  top: 38%;
  left: 10.5%;
}

.menuA-star-06 {
  width: 8.5%;
  top: 60%;
  right: 20%;
}

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

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

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

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

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

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

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

/* 定番 KEYFRAMES
================================*/
@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;
  }
}
@keyframes slide-inup-01 {
  0% {
    transform: translateY(-125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-inup-02 {
  0% {
    transform: translateY(125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-inup-01-re {
  0% {
    transform: translateY(125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-inup-02-re {
  0% {
    transform: translateY(-125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.slide-in-wrap {
  overflow: hidden;
  opacity: 0;
}

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

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

@keyframes flash-step {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.flash-step {
  opacity: 0;
}

.flash-step-active {
  animation: flash-step 1s steps(1) infinite 0.8s;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.flash {
  opacity: 0;
  animation: flash 1.5s ease-in-out infinite;
}

.flash-koma {
  animation: flash-koma 2s steps(1) infinite;
}

@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);
  }
}
@keyframes puru-rotate {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
@keyframes scale-pon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pon {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  50% {
    opacity: 1;
    transform: translateY(-5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.pon {
  opacity: 0;
}

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

.pontoggle {
  opacity: 0;
}

.pontoggle-active {
  animation: pon 0.3s ease-in-out forwards;
}

.scalepon {
  opacity: 0;
}

.scalepon-active {
  animation: scale-pon 0.3s ease-in-out forwards;
}

/* メインロゴ関連
================================*/
@keyframes title-logo {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  14% {
    transform: translateY(-5%);
    opacity: 1;
  }
  22% {
    transform: translateY(0%);
    opacity: 1;
  }
  45% {
    transform: translateY(0%);
    opacity: 1;
  }
  70% {
    transform: translateY(0%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 0;
  }
}
@keyframes title-logo-top {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.left .topB-item {
  opacity: 0;
  animation: title-logo 4s ease-in-out infinite;
}
.left .topB-item:nth-child(1) {
  animation-delay: 0s;
}
.left .topB-item:nth-child(2) {
  animation-delay: 0.05s;
}
.left .topB-item:nth-child(3) {
  animation-delay: 0.1s;
}
.left .topB-item:nth-child(4) {
  animation-delay: 0.15s;
}
.left .topB-item:nth-child(5) {
  animation-delay: 0.2s;
}
.left .topB-item:nth-child(6) {
  animation-delay: 0.25s;
}
.left .topB-item:nth-child(7) {
  animation-delay: 0.3s;
}
.left .topB-item:nth-child(8) {
  animation-delay: 0.15s;
}
.left .topB-item:nth-child(9) {
  animation-delay: 0.2s;
}
.left .topB-item:nth-child(10) {
  animation-delay: 0.25s;
}
.left .topB-item:nth-child(11) {
  animation-delay: 0.3s;
}
.left .topB-item:nth-child(12) {
  animation-delay: 0.35s;
}
.left .topB-item:nth-child(13) {
  animation-delay: 0.4s;
}
.left .topB-item:nth-child(14) {
  animation-delay: 0.45s;
}
.left .topB-item:nth-child(15) {
  animation-delay: 0.5s;
}
.left .topB-item:nth-child(16) {
  animation-delay: 0.55s;
}

.top-h1 {
  overflow: hidden;
}

.topB-item {
  opacity: 0;
}

.topB-item-active {
  animation: title-logo-top 0.6s ease-in-out forwards;
}
.topB-item-active:nth-child(1) {
  animation-delay: 0.3s;
}
.topB-item-active:nth-child(2) {
  animation-delay: 0.35s;
}
.topB-item-active:nth-child(3) {
  animation-delay: 0.4s;
}
.topB-item-active:nth-child(4) {
  animation-delay: 0.45s;
}
.topB-item-active:nth-child(5) {
  animation-delay: 0.5s;
}
.topB-item-active:nth-child(6) {
  animation-delay: 0.55s;
}
.topB-item-active:nth-child(7) {
  animation-delay: 0.6s;
}
.topB-item-active:nth-child(8) {
  animation-delay: 0.45s;
}
.topB-item-active:nth-child(9) {
  animation-delay: 0.5s;
}
.topB-item-active:nth-child(10) {
  animation-delay: 0.55s;
}
.topB-item-active:nth-child(11) {
  animation-delay: 0.6s;
}
.topB-item-active:nth-child(12) {
  animation-delay: 0.65s;
}
.topB-item-active:nth-child(13) {
  animation-delay: 0.7s;
}
.topB-item-active:nth-child(14) {
  animation-delay: 0.75s;
}
.topB-item-active:nth-child(15) {
  animation-delay: 0.8s;
}
.topB-item-active:nth-child(16) {
  animation-delay: 0.85s;
}

.topA-box {
  overflow: hidden;
  opacity: 0;
}

.topA-box-active {
  animation: slide-in-01 0.6s ease-out forwards 0s;
}

.topA-item-active {
  animation: slide-in-02 0.6s ease-out forwards 0s;
}

.topC-box {
  overflow: hidden;
  opacity: 0;
}

.topC-box-active {
  animation: slide-in-01 0.6s ease-out forwards 0.7s;
}

.topC-item-active {
  animation: slide-in-02 0.6s ease-out forwards 0.7s;
}

/* ニュッと出現系
================================*/
.topNavi-abs {
  overflow: hidden;
}
.topNavi-abs .topnavi-abs-img {
  transform: translate(100%, 75%);
  transition: 0.3s ease-in-out;
}
.topNavi-abs .topnavi-abs-img-active {
  transform: translate(0%, 0%);
}

.menu-abs {
  overflow: hidden;
}
.menu-abs .menu-abs-img {
  transform: translateY(-100%) rotate(-30deg);
  transform-origin: top right;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.menu-abs .menu-abs-img-active {
  transform: translateY(0%) rotate(0deg);
  opacity: 1;
}

.how-abs {
  overflow: hidden;
}
.how-abs .how-abs-img {
  transform: translateY(100%) translateX(-50%) rotate(20deg);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.how-abs .how-abs-img-active {
  transform: translateY(0%) translateX(0%) rotate(0deg);
  opacity: 1;
}

.takeout-abs {
  overflow: hidden;
}
.takeout-abs .takeout-abs-img {
  transform: translateY(100%) translateX(-50%) rotate(20deg);
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.takeout-abs .takeout-abs-img-active {
  transform: translateY(0%) translateX(0%) rotate(0deg);
  opacity: 1;
}

.delivery-abs {
  overflow: hidden;
}
.delivery-abs .delivery-abs-img {
  transform: translateY(0%) translateX(-100%);
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.delivery-abs .delivery-abs-img-active {
  transform: translateY(0%) translateX(0%) rotate(0deg);
  opacity: 1;
}

/*　LOOPER
==============================*/
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop-re {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop2-re {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
.looper {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.looper .loop-typo {
  width: 360%;
  flex-shrink: 0;
}
.looper .loop-before-item {
  width: 170%;
  flex-shrink: 0;
}
.looper .loop-after-item {
  width: 170%;
  flex-shrink: 0;
}

.loop-first {
  display: inline;
  animation: loop 40s -20s linear infinite;
}

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

.loop-third {
  display: inline;
  animation: loop-re 40s -20s linear infinite;
}

.loop-fourth {
  display: inline;
  animation: loop2-re 40s linear infinite;
}

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

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

.loop-typo {
  width: 100%;
}

.looper-before {
  top: 5%;
  left: 0;
  -webkit-mask-image: url(/lp/takeout/images/loop_window_mask_re.svg);
          mask-image: url(/lp/takeout/images/loop_window_mask_re.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 67.2%;
          mask-size: 67.2%;
  -webkit-mask-position: left 55%;
          mask-position: left 55%;
}

.looper-after {
  top: 5%;
  left: 0;
  z-index: 10;
  -webkit-mask-image: url(/lp/takeout/images/loop_window_mask.svg);
          mask-image: url(/lp/takeout/images/loop_window_mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 67.2%;
          mask-size: 67.2%;
  -webkit-mask-position: right 55%;
          mask-position: right 55%;
}

.loop-window {
  width: 34%;
  top: -37%;
  left: 50%;
  transform: translateX(-50%);
}

/* SLIDE TOGGLE 関連
================================*/
.menu-wrap {
  display: none;
}

/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* LP Common Style
===============================*/
body {
  font-feature-settings: "palt";
}

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;
}

.opacity {
  opacity: 0;
}

.zeroA {
  margin: 0 auto;
}

/* Delay Set
===============================*/
.delay-005 {
  transition-delay: 0.05s;
  animation-delay: 0.05s;
}

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

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

.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-07 {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

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

.delay-1 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.tr-delay-005 {
  transition-delay: 0.05s;
}

.tr-delay-01 {
  transition-delay: 0.1s;
}

.tr-delay-015 {
  transition-delay: 0.15s;
}

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

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

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

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

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

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

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

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

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

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

/* TOP
===============================*/
.sec-top {
  overflow-x: clip;
}
.sec-top .top-bg {
  transform: scale(1.003);
}
.sec-top .topA-box {
  top: 20.6%;
  left: 20%;
  width: 60.26%;
}
.sec-top .top-h1 {
  top: 54.2%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
.sec-top .top-h1 .topB-box {
  width: 90.1%;
}
.sec-top .top-h1 .topC-box {
  width: 45%;
  margin-top: 80px;
}
@media screen and (max-width: 1535px) {
  .sec-top .top-h1 .topC-box {
    margin-top: calc(80px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-top .top-h1 .topC-box {
    margin-top: calc(80 * 0.625 / 375 * 100vw);
  }
}

/* TOP NAVI
===============================*/
.sec-topnavi {
  margin-top: -134px;
}
@media screen and (max-width: 1535px) {
  .sec-topnavi {
    margin-top: calc(-134px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-topnavi {
    margin-top: calc(-134 * 0.625 / 375 * 100vw);
  }
}
.sec-topnavi .topNavi-ul {
  width: 100%;
  top: 13.5%;
  left: 0;
}
.sec-topnavi .topNavi-ul .topNavi-li {
  margin-bottom: 21px;
}
@media screen and (max-width: 1535px) {
  .sec-topnavi .topNavi-ul .topNavi-li {
    margin-bottom: calc(21px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-topnavi .topNavi-ul .topNavi-li {
    margin-bottom: calc(21 * 0.625 / 375 * 100vw);
  }
}
.sec-topnavi .topNavi-ul .topNavi-li .topNavi-abs {
  width: 17.066%;
  top: 0;
  left: 9.8%;
}
.sec-topnavi .topNavi-ul .topNavi-li .topNavi-abs-04 {
  width: 15.5%;
  top: 2%;
  left: 9.3%;
}
.sec-topnavi .topNavi-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
.sec-topnavi .topNavi-bottom .menu-abs {
  width: 13%;
  top: 36.8%;
  right: 27.5%;
}

/* BG IMG
===============================*/
.sec-bg-img {
  background-image: url(/lp/takeout/images/menu_bg.png);
  background-repeat: repeat;
  background-size: 27.5%;
}

/* INDEX & MENU
===============================*/
.sec-index {
  margin-top: -1px;
  padding-bottom: 107px;
}
@media screen and (max-width: 1535px) {
  .sec-index {
    padding-bottom: calc(107px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-index {
    padding-bottom: calc(107 * 0.625 / 375 * 100vw);
  }
}
.sec-index .index-h2 {
  width: 100%;
}
.sec-index .index-h3 {
  width: 45.3%;
  margin: 0 auto;
  margin-top: 72px;
  margin-bottom: 29px;
}
@media screen and (max-width: 1535px) {
  .sec-index .index-h3 {
    margin-top: calc(72px * 0.75);
    margin-bottom: calc(29px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-index .index-h3 {
    margin-top: calc(72 * 0.625 / 375 * 100vw);
    margin-bottom: calc(29 * 0.625 / 375 * 100vw);
  }
}
.sec-index .index-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 86.1%;
  margin: 0 auto 72px auto;
}
@media screen and (max-width: 1535px) {
  .sec-index .index-list {
    margin-bottom: calc(72px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-index .index-list {
    margin-bottom: calc(72 * 0.625 / 375 * 100vw);
  }
}
.sec-index .index-list .index-list-item {
  width: 31.57%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1535px) {
  .sec-index .index-list .index-list-item {
    margin-bottom: calc(30px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-index .index-list .index-list-item {
    margin-bottom: calc(30 * 0.625 / 375 * 100vw);
  }
}
.sec-index .index-caption {
  width: 84%;
  margin-bottom: 96px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.5;
}
@media screen and (max-width: 1535px) {
  .sec-index .index-caption {
    font-size: calc(18px * 0.75);
    margin-bottom: calc(96px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-index .index-caption {
    font-size: calc(18 * 0.625 / 375 * 100vw);
    margin-bottom: calc(96 * 0.625 / 375 * 100vw);
  }
}
.sec-index .index-caption .index-caption-li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 18px;
}
@media screen and (max-width: 1535px) {
  .sec-index .index-caption .index-caption-li {
    margin-bottom: calc(18px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-index .index-caption .index-caption-li {
    margin-bottom: calc(18 * 0.625 / 375 * 100vw);
  }
}

.sec-menu {
  width: 88%;
  margin: 0 auto 48px auto;
  background-color: #fffcf4;
  border-radius: 50px;
}
@media screen and (max-width: 1535px) {
  .sec-menu {
    margin-bottom: calc(48px * 0.75);
    border-radius: 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-menu {
    margin-bottom: calc(48 * 0.625 / 375 * 100vw);
    border-radius: 28px;
  }
}
.sec-menu .menu-h3 {
  padding-top: 44px;
  padding-bottom: 44px;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menu-h3 {
    padding-top: calc(44px * 0.75);
    padding-bottom: calc(44px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menu-h3 {
    padding-top: calc(44 * 0.625 / 375 * 100vw);
    padding-bottom: calc(44 * 0.625 / 375 * 100vw);
  }
}
.sec-menu .menu-h3:hover {
  cursor: pointer;
}
.sec-menu .menu-h3 .menu-copy {
  top: -10.5%;
  left: 4.5%;
}
.sec-menu .menu-h3 .menuA-copy {
  width: 25.25%;
}
.sec-menu .menu-h3 .menuB-copy {
  width: 46%;
}
.sec-menu .menu-h3 .menuC-copy {
  width: 30.3%;
}
.sec-menu .menu-h3 .menuD-copy {
  width: 36.6%;
}
.sec-menu .menu-h3 .menu-btn {
  top: 11%;
  right: 5.5%;
  width: 8.4%;
}
.sec-menu .menu-h3 .menu-btn .menu-close {
  display: none;
}
.sec-menu .menuA-h3 {
  background-color: #fccf00;
  background-image: url(/lp/takeout/images/menuA_bg_01.svg);
  background-size: 100%;
  border-radius: 50px 50px 50px 50px;
  transition: 0.5s;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menuA-h3 {
    border-radius: 40px 40px 40px 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menuA-h3 {
    border-radius: 28px 28px 28px 28px;
  }
}
.sec-menu .menuA-h3-active {
  border-radius: 50px 50px 0 0;
  transition: 0.3s;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menuA-h3-active {
    border-radius: 40px 40px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menuA-h3-active {
    border-radius: 28px 28px 0 0;
  }
}
.sec-menu .menuA-wrap {
  background-image: url(/lp/takeout/images/menuA_bg_02.png);
  background-size: 100%;
  background-position: top left;
}
.sec-menu .menu-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.sec-menu .menu-container .menu-box {
  width: 50%;
  margin-bottom: 32px;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menu-container .menu-box {
    margin-bottom: calc(32px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menu-container .menu-box {
    margin-bottom: calc(32 * 0.625 / 375 * 100vw);
  }
}
.sec-menu .menu-container .menu-box .menu-name {
  text-align: center;
}
.sec-menu .menu-container .menu-box:nth-child(odd) .menu-name {
  padding-left: 6%;
}
.sec-menu .menu-container .menu-box:nth-child(even) .menu-name {
  padding-right: 4%;
}
.sec-menu .menu-container .menu-box-solo, .sec-menu .menu-container .menu-box-side {
  margin-bottom: 38px;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menu-container .menu-box-solo, .sec-menu .menu-container .menu-box-side {
    margin-bottom: calc(38px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menu-container .menu-box-solo, .sec-menu .menu-container .menu-box-side {
    margin-bottom: calc(38 * 0.625 / 375 * 100vw);
  }
}
.sec-menu .menu-container .bottom-zero {
  margin-bottom: 0;
}
.sec-menu .menu-close-02 {
  display: block;
  width: 16.5%;
  padding-bottom: 32px;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menu-close-02 {
    padding-bottom: calc(32px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menu-close-02 {
    padding-bottom: calc(32 * 0.625 / 375 * 100vw);
  }
}

.sec-menuA {
  border-radius: 50px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA {
    border-radius: 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA {
    border-radius: 28px;
  }
}

#menuG {
  margin-bottom: 26px;
}
@media screen and (max-width: 1535px) {
  #menuG {
    margin-bottom: calc(26px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  #menuG {
    margin-bottom: calc(26 * 0.625 / 375 * 100vw);
  }
}

/* HOW TO ORDER
===============================*/
.sec-how .how-top .how-abs {
  width: 16%;
  top: 0;
  right: 7%;
}
.sec-how .how-h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 1535px) {
  .sec-how .how-h2 {
    margin-bottom: calc(50px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-how .how-h2 {
    margin-bottom: calc(50 * 0.625 / 375 * 100vw);
  }
}
.sec-how .how-anker-container {
  width: 69.6%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}
@media screen and (max-width: 1535px) {
  .sec-how .how-anker-container {
    margin-bottom: calc(26px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-how .how-anker-container {
    margin-bottom: calc(26 * 0.625 / 375 * 100vw);
  }
}
.sec-how .how-anker-container .how-anker {
  width: 47%;
}

/* TAKEOUT
===============================*/
.sec-takeout {
  width: 88%;
  margin-bottom: 52px;
  border-radius: 50px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout {
    margin-bottom: calc(52px * 0.75);
    border-radius: 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout {
    margin-bottom: calc(52 * 0.625 / 375 * 100vw);
    border-radius: 28px;
  }
}
.sec-takeout .takeout-h2 {
  border-radius: 50px 50px 0 0;
  background-color: #007d25;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-h2 {
    border-radius: 40px 40px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-h2 {
    border-radius: 28px 28px 0 0;
  }
}
.sec-takeout .takeout-h2 .takeout-abs {
  width: 11.5%;
  bottom: -4%;
  right: 9%;
}
.sec-takeout .takeout-content {
  background-color: #fffcf4;
  padding-bottom: 43px;
  border-radius: 0 0 50px 50px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-content {
    padding-bottom: calc(43px * 0.75);
    border-radius: 0 0 40px 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-content {
    padding-bottom: calc(43 * 0.625 / 375 * 100vw);
    border-radius: 0 0 28px 28px;
  }
}
.sec-takeout .takeout-content .takeout-h3 {
  width: 86.3%;
  padding-top: 48px;
  margin-bottom: 19px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-content .takeout-h3 {
    padding-top: calc(48px * 0.75);
    margin-bottom: calc(19px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-content .takeout-h3 {
    padding-top: calc(48 * 0.625 / 375 * 100vw);
    margin-bottom: calc(19 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-content .takeout-caption-01 {
  margin-left: 6.8%;
  margin-bottom: 40px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-content .takeout-caption-01 {
    margin-bottom: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-content .takeout-caption-01 {
    margin-bottom: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-content .takeout-container {
  display: flex;
  justify-content: space-between;
  width: 88%;
}
.sec-takeout .takeout-content .takeout-container .takeout-anker {
  width: 31.5%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-content .takeout-container .takeout-anker {
    margin-bottom: calc(30px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-content .takeout-container .takeout-anker {
    margin-bottom: calc(30 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-content .takeout-container .takeout-anker:nth-child(2) {
  width: 31.5%;
}
.sec-takeout .takeout-content .takeout-how-box {
  width: 88%;
  margin-bottom: 24px;
  background-color: #edede9;
  border-radius: 30px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-content .takeout-how-box {
    border-radius: 24px;
    margin-bottom: calc(24px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-content .takeout-how-box {
    border-radius: 20px;
    margin-bottom: calc(24 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-content .takeout-how-box .takeout-h4:hover {
  cursor: pointer;
}
.sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base {
  top: 0;
  left: 0;
  width: 24.93%;
  height: 100%;
  display: block;
}
.sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-base-img {
  border-bottom-left-radius: 30px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-base-img {
    border-bottom-left-radius: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-base-img {
    border-bottom-left-radius: 20px;
  }
}
.sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-illust {
  border-bottom-left-radius: 30px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-illust {
    border-bottom-left-radius: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-illust {
    border-bottom-left-radius: 20px;
  }
}
.sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-illust-01 {
  top: -14%;
  left: -3%;
}
.sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-illust-02 {
  width: 105%;
  top: -5%;
  left: -7%;
}
.sec-takeout .takeout-content .takeout-how-box .takeout-h4 .how-base .how-illust-03 {
  width: 102%;
  top: -5%;
  left: -2%;
}
.sec-takeout .takeout-content .how-bar {
  width: 73%;
  margin-left: 20.2%;
}

.how-p {
  margin-left: 16%;
}

.how-btn-search {
  display: block;
  margin-top: 38px;
  padding-bottom: 48px;
}
@media screen and (max-width: 1535px) {
  .how-btn-search {
    margin-top: calc(38px * 0.75);
    padding-bottom: calc(48px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .how-btn-search {
    margin-top: calc(38 * 0.625 / 375 * 100vw);
    padding-bottom: calc(48 * 0.625 / 375 * 100vw);
  }
}

.how-open {
  width: 8.6%;
  top: 17%;
  right: 4%;
}

/* DELIVERY
===============================*/
.sec-delivery {
  width: 88%;
  margin-bottom: 114px;
  border-radius: 50px;
}
@media screen and (max-width: 1535px) {
  .sec-delivery {
    margin-bottom: calc(114px * 0.75);
    border-radius: 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-delivery {
    margin-bottom: calc(114 * 0.625 / 375 * 100vw);
    border-radius: 28px;
  }
}
.sec-delivery .delivery-h2 {
  border-radius: 50px 50px 0 0;
  background-color: #fccf00;
}
@media screen and (max-width: 1535px) {
  .sec-delivery .delivery-h2 {
    border-radius: 40px 40px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-delivery .delivery-h2 {
    border-radius: 28px 28px 0 0;
  }
}
.sec-delivery .delivery-h2 .delivery-abs {
  width: 15.5%;
  bottom: 0%;
  left: 9%;
}
.sec-delivery .delivery-content {
  background-color: #fffcf4;
  padding-bottom: 32px;
  border-radius: 0 0 50px 50px;
}
@media screen and (max-width: 1535px) {
  .sec-delivery .delivery-content {
    border-radius: 0 0 40px 40px;
  }
}
@media screen and (max-width: 600px) {
  .sec-delivery .delivery-content {
    border-radius: 0 0 28px 28px;
  }
}
.sec-delivery .delivery-content .delivery-h3 {
  width: 83.1%;
}
.sec-delivery .delivery-content .delivery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 83.1%;
}
.sec-delivery .delivery-content .delivery-container .delivery-item {
  width: 46.5%;
  margin-bottom: 32px;
}
@media screen and (max-width: 1535px) {
  .sec-delivery .delivery-content .delivery-container .delivery-item {
    margin-bottom: calc(32px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-delivery .delivery-content .delivery-container .delivery-item {
    margin-bottom: calc(32 * 0.625 / 375 * 100vw);
  }
}

.search {
  padding-bottom: 239px;
}
@media screen and (max-width: 1535px) {
  .search {
    padding-bottom: calc(239px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .search {
    padding-bottom: calc(239 * 0.625 / 375 * 100vw);
  }
}
.search .search-anker {
  display: block;
  width: 68%;
}

.sec-app .sec-app-bg {
  margin-top: -135px;
}
.sec-app .app-wrap {
  width: 100%;
  top: 2%;
  left: 0;
}
@media screen and (max-width: 1535px) {
  .sec-app .app-wrap {
    top: -6%;
  }
}
@media screen and (max-width: 600px) {
  .sec-app .app-wrap {
    top: -12%;
  }
}
.sec-app .app-wrap .app-logo {
  width: 40%;
}
.sec-app .app-wrap .app-h2 {
  width: 70%;
  margin-top: 48px;
  margin-bottom: 43px;
}
@media screen and (max-width: 1535px) {
  .sec-app .app-wrap .app-h2 {
    margin-top: calc(43px * 0.75);
    margin-bottom: calc(43px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-app .app-wrap .app-h2 {
    margin-top: calc(43 * 0.625 / 375 * 100vw);
    margin-bottom: calc(43 * 0.625 / 375 * 100vw);
  }
}
.sec-app .app-wrap .app-container {
  width: 80.8%;
  display: flex;
  justify-content: space-between;
}
.sec-app .app-wrap .app-container .applestore {
  width: 42.4%;
}
.sec-app .app-wrap .app-container .googleplay {
  width: 52.2%;
}

.main-slider {
  position: relative;
  width: 100%;
}

.main-slider-item {
  height: 670px;
}
@media screen and (max-width: 1535px) {
  .main-slider-item {
    height: calc(670px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .main-slider-item {
    height: calc(670 * 0.625 / 375 * 100vw);
  }
}

.main-slider-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* アロー位置 */
.main-slider .slick-prev {
  left: 10px;
  z-index: 10;
}

.main-slider .slick-next {
  right: 10px;
  z-index: 10;
}

.slide-step {
  margin-top: 32px;
  margin-bottom: 43px;
}
@media screen and (max-width: 1535px) {
  .slide-step {
    margin-top: calc(32px * 0.75);
    margin-bottom: calc(43px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .slide-step {
    margin-top: calc(32 * 0.625 / 375 * 100vw);
    margin-bottom: calc(43 * 0.625 / 375 * 100vw);
  }
}

.main-slider .slick-dots {
  top: 9%;
}

.main-slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 3px;
}
@media screen and (max-width: 600px) {
  .main-slider .slick-dots li {
    width: 5px;
    height: 5px;
  }
}

.main-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .main-slider .slick-dots li button {
    width: 5px;
    height: 5px;
  }
}

.main-slider .slick-dots li button:before {
  width: 8px;
  height: 8px;
  font-size: 8px;
  line-height: 8px;
}
@media screen and (max-width: 600px) {
  .main-slider .slick-dots li button:before {
    width: 5px;
    height: 5px;
  }
}

.main-slider .slick-dots li button:before {
  font-size: 8px;
  color: #b2d8be; /* 通常時の色 */
  opacity: 1;
}

.main-slider .slick-dots li.slick-active button:before {
  color: #007d25; /* 現在表示中の色 */
  opacity: 1;
}

.main-slider .slick-prev,
.main-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 20;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* slick標準の「←」「→」を消す */
.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  content: "";
}

/* 左矢印 */
.main-slider .slick-prev {
  top: 63%;
  left: 5%;
  background-image: url("/lp/takeout/images/arrow_left.svg");
}

/* 右矢印 */
.main-slider .slick-next {
  top: 63%;
  right: 5%;
  background-image: url("/lp/takeout/images/arrow_right.svg");
}/*# sourceMappingURL=style.css.map */