@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: 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/2026_welovecheese/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/2026_welovecheese/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
===============================*/
.op-fixed {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: calc(50% - 300px);
  width: 600px;
  height: 100vh;
  z-index: 250;
}
@media screen and (max-width: 1535px) {
  .op-fixed {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .op-fixed {
    width: 100%;
    top: 0;
    left: 0;
  }
}
.op-fixed .op-wrap {
  width: 100%;
  height: 100vh;
  transform: translateY(-120%);
}
.op-fixed .op-wrap-active {
  width: 100%;
  height: 100vh;
  transform: translateY(0%);
  transition: 3.2s ease-in-out;
}
.op-fixed .op-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 50.1vh;
  background-color: #ffb900;
}
.op-fixed .op-bottom {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50.1vh;
  background-color: #ffb900;
}
.op-fixed .op-left {
  top: 0;
  left: 0;
  width: 50.1%;
  height: 100vh;
  background-color: #ffb900;
}
.op-fixed .op-right {
  bottom: 0;
  right: 0;
  width: 50.1%;
  height: 100vh;
  background-color: #ffb900;
}
.op-fixed .op-top-active {
  transform: translateY(-1200px);
  transition: 3.8s;
  transition-delay: 3s;
}
.op-fixed .op-bottom-active {
  transform: translateY(1200px);
  transition: 3.8s;
  transition-delay: 3s;
}
@media screen and (max-width: 600px) {
  .op-fixed .op-bottom-active {
    transform: translateY(800px);
  }
}
.op-fixed .op-left-active {
  transform: translateX(-570%);
  transition: 4.8s;
  transition-delay: 3s;
}
.op-fixed .op-right-active {
  transform: translateX(570%);
  transition: 4.8s;
  transition-delay: 3s;
}
.op-fixed .op-fall {
  transform: translateY(-100%);
}
.op-fixed .op-fall-active {
  transform: translateY(0);
  transition: 3s ease-in-out;
}
.op-fixed .op-fall-block {
  width: 100%;
  height: 100vh;
  background-color: #ffb900;
}
.op-fixed .op-cheese {
  transform: scaleY(0.2);
  transform-origin: top;
}
.op-fixed .op-cheese-active {
  transform: scaleY(1);
  transition: 3s ease-in-out;
}
.op-fixed .op-heart {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.op-fixed .op-heart .op-heart-img {
  transform-origin: center;
  transform: scale(0) rotate(10deg);
}
.op-fixed .op-heart .op-heart-img-active {
  animation: top-op 2s linear 3s forwards;
}
@keyframes top-op {
  0% {
    transform: scale(0) rotate(5deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(3) rotate(0);
    opacity: 0;
  }
}

.fixed-02 {
  position: fixed;
  width: 600px;
  height: 100vh;
  top: 0;
  left: calc(50% - 300px);
  z-index: 200;
  background: url(/lp/2026_welovecheese/images/op_bg.png), linear-gradient(0deg, rgb(255, 127, 0) 1.35%, rgb(211, 117, 15) 80.41%, rgb(202, 110, 13) 85.32%, rgb(178, 92, 6) 93.28%, rgb(153, 73, 0) 99.91%);
  background-size: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1535px) {
  .fixed-02 {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .fixed-02 {
    width: 100%;
    top: 0;
    left: 0;
  }
}

.fixed-img {
  transform: translateX(100%);
  transition: 0.5s;
  position: fixed;
  width: 123px;
  bottom: 0%;
  right: calc(50% - 300px);
  z-index: 180;
}
@media screen and (max-width: 1535px) {
  .fixed-img {
    width: 94px;
    right: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .fixed-img {
    width: 20.533%;
    right: 0;
    bottom: 2%;
  }
}

.fixed-img-active {
  transform: translateX(0);
}

.fixed-img-active_re {
  transform: translateX(100%);
}

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

.center {
  position: relative;
  overflow: visible;
  width: 600px;
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

/* LEFT STYLE
=============================*/
.left {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background: url(/lp/2026_welovecheese/images/left_bg.png), linear-gradient(0deg, rgb(171, 100, 22) 0.09%, rgb(204, 118, 17) 35.75%, rgb(213, 132, 9) 44.41%, rgb(222, 145, 2) 56.48%, rgb(225, 150, 0) 67.44%, rgb(237, 161, 0) 83.77%, rgb(243, 167, 0) 100%);
  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: 37%;
  left: 10%;
}

/* RIGHT STYLE
=============================*/
.right {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background: url(/lp/2026_welovecheese/images/right_bg.png), linear-gradient(0deg, rgb(171, 100, 22) 0.09%, rgb(204, 118, 17) 35.75%, rgb(213, 132, 9) 44.41%, rgb(222, 145, 2) 56.48%, rgb(225, 150, 0) 67.44%, rgb(237, 161, 0) 83.77%, rgb(243, 167, 0) 100%);
  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-dish-01 {
  width: 47%;
  top: 24%;
  left: 9%;
}
.right .right-dish-02 {
  width: 47%;
  top: 46%;
  left: 40%;
}
.right .right-dish-03 {
  width: 49%;
  top: 68%;
  left: 10%;
}
.right .right-name-01 {
  top: -45%;
  left: -10%;
  width: 110%;
}
.right .right-name-02 {
  top: -28%;
  left: 0%;
  width: 100%;
}
.right .right-name-03 {
  top: -31%;
  left: -4%;
  width: 100%;
}
.right .right-dish-img {
  transform: rotate(-5deg);
  transition: 0.3s ease-in-out;
}
.right .right-dish-img-active {
  transform: rotate(0);
}
.right .right-name {
  transform-origin: top;
  opacity: 0;
}
.right .right-name-active {
  animation: menu-h3 1s ease-in-out forwards;
}
.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;
}
@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;
  }
}
.selbox {
  background-image: url(/lp/2026_welovecheese/images/menu_arrow.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right 13px center;
}
@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: #501f18;
  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%;
}

/* 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/2026_welovecheese/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;
  }
}

/* メインビジュアル セクション
===============================*/
.mv-h1-ch {
  width: 100%;
  top: 44%;
  left: 0;
}

/* メッセージ セクション
===============================*/
.mv-h1 {
  width: 86.5%;
  top: 14.5%;
  left: 8%;
}

.mv-dish {
  width: 100%;
  top: 38%;
}

.mv-base {
  width: 159%;
  top: 35.8%;
  left: -26%;
}

.mv-copy-box {
  width: 92.2%;
  top: 90%;
  left: 4%;
}

.message-anker {
  display: block;
}
.message-anker .message-seal {
  top: 0;
  left: 0;
  width: 100%;
}

.message-fukidashi {
  width: 113%;
  top: -61%;
  left: -7.5%;
  transform-origin: bottom;
}

.message-tap {
  width: 45.7%;
  top: -14%;
  right: -25.5%;
}

.message-left-wing {
  width: 45%;
  top: 21%;
  left: -24%;
}

.message-right-wing {
  width: 45%;
  top: 21%;
  right: -24%;
}

.wing-box {
  width: 17%;
  top: 0;
  left: 0;
}

.left-wing {
  width: 80%;
  top: 11%;
  left: -30%;
}

.right-wing {
  width: 80%;
  top: 12.3%;
  right: -28%;
}

.wb-01 {
  top: 18%;
  left: 15%;
}

.wb-02 {
  top: 28%;
  left: 25%;
}

.wb-03 {
  top: 18%;
  left: 36%;
}

.wb-04 {
  top: 28%;
  left: 46%;
}

.wb-05 {
  top: 18%;
  left: 57%;
}

.wb-06 {
  top: 28%;
  left: 67%;
}

.message-heart-01 {
  width: 18.9%;
  top: 23%;
  left: 73%;
  border-left-width: 0;
}

.message-heart-02 {
  width: 22.9%;
  top: 55%;
  left: -5%;
  border-left-width: 0;
}

.message-heart-03 {
  width: 15.2%;
  top: 98%;
  left: 72%;
  border-left-width: 0;
  z-index: 150;
}

/* メニューA セクション
===============================*/
.dish-movie {
  width: 120%;
  top: -20%;
  left: -10%;
}

.menuA-movie-top {
  width: 100%;
  left: 0;
  top: 0;
}

.menuA-movie-bottom {
  width: 100%;
  left: 0;
  bottom: 0;
}

.menuA-h3 {
  width: 79.7%;
  top: 11%;
  left: 11%;
}

.menuA-yuge {
  width: 50%;
  top: -65%;
  left: 24.5%;
  transform-origin: bottom;
}

.menuA-stamp {
  width: 16%;
  top: 72%;
  left: 75%;
}

.menuA-bottom {
  width: 100%;
  left: 0;
  bottom: 0%;
}

.menuA-heart {
  width: 25.6%;
  top: 62.5%;
  left: 70%;
  z-index: 100;
}

.menuA-name {
  width: 92.7%;
  top: -13%;
  left: 4%;
}

/* メニューB セクション
===============================*/
.dish-movie {
  width: 120%;
  top: -20%;
  left: -10%;
}

.menuB-movie-top {
  width: 100%;
  left: 0;
  top: 0;
}

.menuB-movie-bottom {
  width: 100%;
  left: 0;
  bottom: 0;
}

.menuB-h3 {
  width: 81.3%;
  top: 20%;
  left: 10%;
}

.menuB-yuge {
  width: 50%;
  top: -50%;
  left: 24.5%;
  transform-origin: bottom;
}

.menuB-stamp {
  width: 16%;
  top: 72%;
  left: 75%;
}

.menuB-bottom {
  width: 100%;
  left: 0;
  bottom: -1.62%;
}

.menuB-heart {
  width: 22.1%;
  top: 59.5%;
  left: 3.5%;
  z-index: 100;
}

.menuB-name {
  width: 91.7%;
  top: -31%;
  left: 4%;
}

/* メニューC セクション
===============================*/
.dish-movie {
  width: 120%;
  top: -20%;
  left: -10%;
}

.menuC-movie-top {
  width: 100%;
  left: 0;
  top: 0;
}

.menuC-movie-bottom {
  width: 100%;
  left: 0;
  bottom: 0;
}

.menuC-h3 {
  width: 74.3%;
  top: 15%;
  left: 13%;
}

.menuC-yuge {
  width: 50%;
  top: -55%;
  left: 24.5%;
  transform-origin: bottom;
}

.menuC-stamp {
  width: 17.3%;
  top: 65%;
  left: 74.5%;
}

.menuC-bottom {
  width: 100%;
  left: 0;
  bottom: -0.22%;
}

.menuC-name {
  width: 92%;
  top: -23%;
  left: 4%;
}

/* 追加ソース セクション
===============================*/
.more-h2-01 {
  width: 50.6%;
  top: -2.5%;
  left: 6.5%;
}

.more-h2-02 {
  width: 47.5%;
  top: 7%;
  left: 47%;
}

.more-stamp {
  width: 45%;
  top: 6%;
  left: 66%;
}

.more-heart {
  width: 27%;
  bottom: 16.5%;
  left: 14%;
  z-index: 10;
}

.more-heart-top {
  width: 21.12%;
  top: -7.8%;
  left: 71.5%;
}

/* サイドメニュー セクション
===============================*/
.sec-side .side-p {
  margin-top: -4px;
}
.sec-side .sideA-ph {
  width: 73.6%;
  top: -1%;
  left: 13%;
}
.sec-side .sideA-stamp {
  top: -26.5%;
  left: 69%;
  width: 18.13%;
}
.sec-side .sideA-name {
  width: 72.6%;
  top: -21%;
  left: 13%;
}
.sec-side .sideB-ph {
  width: 73.6%;
  top: -0.5%;
  left: 14.5%;
}
.sec-side .sideB-stamp {
  top: -8%;
  left: 12%;
  width: 18.13%;
}
.sec-side .sideB-name {
  width: 68.5%;
  top: -19%;
  left: 16%;
}

/* テイクアウト セクション
===============================*/
.sec-takeout {
  margin-top: -2px;
}
.sec-takeout .takeout-heart {
  display: block;
  bottom: -8.5%;
  left: 13%;
  width: 27.6%;
  z-index: 51;
}
.sec-takeout .takeout-block {
  width: 100%;
  height: 20px;
  bottom: -0.5%;
  background-color: #ffe7a5;
  z-index: 50;
}

/* バナー セクション
===============================*/
.sec-banner .navi .naviA-abs {
  top: 60.5%;
  right: -10%;
  width: 42%;
}
.sec-banner .navi .naviB-abs {
  top: 68%;
  left: -8%;
  width: 44%;
}
.sec-banner .cm .cm-abs-01 {
  width: 17.33%;
  top: -0.5%;
  left: 9.4%;
}
.sec-banner .cm .cm-abs-02 {
  width: 17.33%;
  top: -0.5%;
  right: 10.6%;
}
.sec-banner .cp .campaign-item-01 {
  width: 14%;
  top: 10%;
  right: 5.5%;
}
.sec-banner .cp .campaign-item-02 {
  width: 14%;
  top: 10%;
  left: 5%;
}

/* 定番 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
================================*/
/*
@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;     
  }
}
.slide-in-wrap{    
  overflow: hidden;
  opacity: 0;
}
.slide-in-wrap-active{    
  animation: slide-in-01 0.75s ease-out forwards;
}
.slide-in-active{
  animation: slide-in-02 0.75s ease-out forwards;    
}
.pop-active{
  animation: appear-vegi 0.5s ease-in-out forwards;
}
*/
@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.flash {
  opacity: 0;
  animation: flash 1.5s ease-in-out 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);
  }
}
.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
================================*/
@keyframes title {
  0% {
    transform: scaleX(0.75) rotate(0);
    opacity: 0;
  }
  30% {
    transform: scaleX(2) rotate(-7deg);
    opacity: 1;
  }
  50% {
    transform: scaleX(2) rotate(-7deg);
    opacity: 1;
  }
  80% {
    transform: scaleX(0.8) rotate(0);
    opacity: 1;
  }
  100% {
    transform: scaleX(1) rotate(0);
    opacity: 1;
  }
}
@keyframes tap {
  0% {
    transform: scaleY(1);
  }
  25% {
    transform: scaleY(1.02);
  }
  50% {
    transform: scaleY(0.8);
  }
  70% {
    transform: scaleY(1);
  }
  75% {
    transform: scaleY(1.02);
  }
  83% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(1);
  }
}
.tap {
  animation: tap 1.5s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes left-wing {
  0% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
@keyframes right-wing {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
@keyframes heart-send {
  0% {
    opacity: 0;
    transform: translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-280%) scale(1.6);
  }
}
@keyframes stamp {
  0% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.stamp-active {
  animation: stamp 0.5s ease-in-out forwards;
}

@keyframes yuge {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
}
@keyframes yugeAlt {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.9);
  }
  70% {
    opacity: 0.5;
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    filter: blur(0px);
    transform: scale(1.5);
  }
}
@keyframes menu-h3 {
  0% {
    transform: scaleY(0.2);
    opacity: 0;
  }
  40% {
    transform: scaleY(1.2);
    opacity: 1;
  }
  60% {
    transform: scaleY(0.95);
  }
  75% {
    transform: scaleY(1.05);
  }
  90% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes menu-h3-small {
  0% {
    transform: scaleY(0.2);
    opacity: 0;
  }
  40% {
    transform: scaleY(1.075);
    opacity: 1;
  }
  60% {
    transform: scaleY(0.97);
  }
  75% {
    transform: scaleY(1.015);
  }
  90% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* タイトル設定
===================================*/
.mv-h1 {
  transform: scaleY(0.75);
  transform-origin: top;
  opacity: 0;
}

.mv-h1-active {
  animation: title 2s ease-in-out forwards 3.8s;
}

/* トップ設定
===================================*/
.mv-base {
  transform-origin: top;
  transform: scaleY(0.38);
}

.mv-base-img {
  transform: scaleX(0.62);
}

.mv-base-active {
  transform-origin: top;
  transform: scaleY(1);
  transition: 3s ease-in-out 4.05s;
}

.mv-base-img-active {
  transform: scaleX(1);
  transition: 1.75s ease-in-out 3.9s;
}

.mv-copy-base {
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
}

.mv-copy-base-active {
  opacity: 1;
  transform: scaleY(1);
  transition: 1.5s ease-in-out 5.2s;
}

.mv-copy {
  opacity: 0;
  transform: translateY(1%);
}

.mv-copy-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 1s ease-in-out 5.5s;
}

.mv-yuge {
  width: 84%;
  top: 0;
  left: 12%;
}
.mv-yuge .mv-yuge-01 {
  transform-origin: bottom;
  animation-delay: 1.5s;
}
.mv-yuge .mv-yuge-02 {
  transform-origin: bottom;
  animation-delay: 1s;
}

/* 溶けるチーズアニメーション設定
===================================*/
.melt {
  transform: scaleY(0.4);
  transform-origin: top;
}

.melt-active {
  transform: scaleY(1);
  transition: 2s ease-out;
}

.melt-bottom {
  transform: scaleY(1.5) translateY(1px);
  transform-origin: bottom;
}

.melt-bottom-active {
  transform: scaleY(1) translateY(1px);
  transition: 2s ease-out;
}

/* メッセージボタン
===================================*/
.message-stamp-active {
  opacity: 0;
  transition: 1s ease-in-out;
}

.message-fukidashi-active {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.message-seal {
  transform-origin: center 0%;
}

.message-seal-active {
  transform: translateY(30%) rotateX(160deg);
  transition: 1s ease-in-out;
}

.seal-opacity-active {
  opacity: 0;
  transition: 0.2s;
  transition-delay: 0.6s;
}

/* 羽 & モーダル アニメーション設定
===================================*/
.message-left-wing {
  animation: left-wing 1.5s ease-in-out infinite;
  transform-origin: 80% center;
}

.message-right-wing {
  animation: right-wing 1.5s ease-in-out infinite;
  transform-origin: 20% center;
}

.left-wing {
  animation: left-wing 1s ease-in-out infinite;
  transform-origin: 80% center;
}

.right-wing {
  animation: right-wing 1s ease-in-out infinite;
  transform-origin: 20% center;
}

.wing-box {
  opacity: 0;
}

.wing-box-active {
  animation: heart-send 1.3s ease-in-out infinite;
}

.message-modal {
  position: fixed;
  top: 0;
  left: calc(50% - 300px);
  width: 600px;
  z-index: 250;
  transform: scaleY(0);
  transform-origin: top;
}
@media screen and (max-width: 1535px) {
  .message-modal {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .message-modal {
    width: 100%;
    left: 0;
  }
}

.message-modal-active {
  transform: scaleY(1.2);
  transition: 3.5s ease-in-out;
  transition-delay: 0.2s;
}

/* 湯気アニメーション設定
===================================*/
.yuge-anime-01 {
  opacity: 0;
}

.yuge-anime-02 {
  opacity: 0;
}

.yuge-anime-01-active {
  animation: yuge 2.5s ease-in-out forwards;
}

.yuge-anime-02-active {
  animation: yugeAlt 6s ease-in-out infinite;
}

/* 価格ボックスアニメーション設定
===================================*/
.select-base {
  transform: scaleY(0.75);
  transform-origin: top;
}

.select-base-active {
  transform: scaleY(1);
  transition: 0.75s ease-in-out;
}

.select-card {
  opacity: 0;
}

.select-card-active {
  opacity: 1;
  transition: 0.75s ease-in-out 0.3s;
}

/* 中タイトル登場設定
===================================*/
.menu-h3-base {
  opacity: 0;
  transform: scale(0.7);
}

.menu-h3-base-active {
  opacity: 1;
  transform: scale(1);
  transition: 0.4s ease-in-out;
}

.menu-h3-anime {
  transform-origin: top;
  opacity: 0;
}

.menu-h3-anime-active {
  animation: menu-h3 1s ease-in-out forwards 0.2s;
}

.menu-h3-title {
  transform-origin: top;
  opacity: 0;
}

.menu-h3-title-active {
  animation: menu-h3-small 1s ease-in-out forwards 0.2s;
}

/* 飛び出すハート
===================================*/
.pon-active {
  animation: pon 0.4s ease-in-out forwards;
}

/* ハートの穴
===================================*/
.heart-whole {
  transform-origin: top;
  transform: scaleY(0.5) rotate(7deg);
}

.heart-whole-active {
  transform: scale(1) rotate(0);
  transition: 2s ease-out;
}

/* サイドメニューチーズ台座
===================================*/
.puniY {
  transform-origin: top;
  transform: scaleY(0.8);
}

.puniY-active {
  transform: scaleY(1);
  transition: 1.5s ease-out;
}

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

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

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

/* メッセージセクション
===============================*/
.sec-message-wrap {
  background-color: #ffb800;
  overflow-x: clip;
}
.sec-message-wrap .sec-message {
  background-size: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-top: 400px;
}
@media screen and (max-width: 1535px) {
  .sec-message-wrap .sec-message {
    padding-top: calc(400px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-message-wrap .sec-message {
    padding-top: calc(400 * 0.625 / 375 * 100vw);
  }
}
.sec-message-wrap .sec-message .message-p {
  margin-top: -5.5%;
}
.sec-message-wrap .sec-message .message-btn {
  margin: 216px auto 0 auto;
  width: 69.6%;
}
@media screen and (max-width: 1535px) {
  .sec-message-wrap .sec-message .message-btn {
    margin-top: calc(216px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-message-wrap .sec-message .message-btn {
    margin-top: calc(216 * 0.625 / 375 * 100vw);
  }
}

.mv-white-body {
  background-color: #c86b15;
  padding-top: 100px;
}
@media screen and (max-width: 1535px) {
  .mv-white-body {
    padding-top: calc(100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .mv-white-body {
    padding-top: calc(100 * 0.625 / 375 * 100vw);
  }
}

.mv-white-bottom {
  margin-top: -50px;
  background-color: #ff9b12;
}
@media screen and (max-width: 1535px) {
  .mv-white-bottom {
    margin-top: calc(-50px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .mv-white-bottom {
    margin-top: calc(-40 * 0.625 / 375 * 100vw);
  }
}

.message-bottom {
  margin-top: -2px;
  height: 320px;
}
@media screen and (max-width: 1535px) {
  .message-bottom {
    height: calc(320px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .message-bottom {
    height: calc(320 * 0.625 / 375 * 100vw);
  }
}

/* メニュー紹介セクション
===============================*/
.sec-menu {
  /* =========== MENU-A ============= */
}
.sec-menu .menuA {
  padding-bottom: 280px;
  background-image: url(/lp/2026_welovecheese/images/menuC_bg.jpg);
  background-position: bottom left;
  background-size: 102%;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menuA {
    padding-bottom: calc(280px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menuA {
    padding-bottom: calc(280 * 0.625 / 375 * 100vw);
  }
}
.sec-menu .menuA .movie-box {
  width: 100%;
  aspect-ratio: 375/565;
  overflow: hidden;
}
.sec-menu .menuA .menuA-ph {
  padding-top: 28px;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menuA .menuA-ph {
    padding-top: calc(28px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menuA .menuA-ph {
    padding-top: calc(28 * 0.625 / 375 * 100vw);
  }
}
.sec-menu {
  /* =========== MENU-B ============= */
}
.sec-menu .menuB {
  padding-bottom: 261px;
  background-image: url(/lp/2026_welovecheese/images/menuB_bg.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 102%;
}
.sec-menu .menuB .movie-box {
  width: 100%;
  aspect-ratio: 375/565;
  overflow: hidden;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menuB {
    padding-bottom: calc(261px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menuB {
    padding-bottom: calc(261 * 0.625 / 375 * 100vw);
  }
}
.sec-menu {
  /* =========== MENU-C ============= */
}
.sec-menu .menuC {
  padding-bottom: 206px;
  margin-top: 40px;
  background-image: url(/lp/2026_welovecheese/images/menuC_bg.jpg);
  background-position: bottom left;
  background-size: cover;
}
.sec-menu .menuC .movie-box {
  width: 100%;
  aspect-ratio: 375/565;
  overflow: hidden;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menuC {
    padding-bottom: calc(206px * 0.75);
    margin-top: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menuC {
    padding-bottom: calc(206 * 0.625 / 375 * 100vw);
    margin-top: calc(40 * 0.625 / 375 * 100vw);
  }
}

/* 追加ソースセクション
===============================*/
.more-area {
  height: 776px;
  background-image: url(/lp/2026_welovecheese/images/more_bg.png);
  background-size: 101%;
}
@media screen and (max-width: 1535px) {
  .more-area {
    height: calc(776px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .more-area {
    height: calc(776 * 0.625 / 375 * 100vw);
  }
}
.more-area .more-box {
  top: 44.8%;
  left: 19%;
  width: 60.6%;
}
.more-area .more-box .more-container {
  display: flex;
  justify-content: space-between;
}
.more-area .more-box .more-container .more-left {
  width: 47.8%;
}
.more-area .more-box .more-container .more-right {
  width: 47.8%;
}
.more-area .more-box .more-container .more-p {
  margin-top: -13px;
}
@media screen and (max-width: 1535px) {
  .more-area .more-box .more-container .more-p {
    margin-top: calc(-13px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .more-area .more-box .more-container .more-p {
    margin-top: calc(-13 * 0.625 / 375 * 100vw);
  }
}

.more-bottom {
  background-color: #ffe7a5;
}

/* サイドメニューセクション
===============================*/
.sec-side {
  background-color: #ffe7a5;
  border-bottom: 2px solid #ffe7a5;
  z-index: 110;
}
.sec-side .side-p {
  margin-top: -4px;
}

/* テイクアウトセクション
===============================*/
.sec-takeout {
  padding-top: 145px;
  padding-bottom: 230px;
  background: url(/lp/2026_welovecheese/images/takeout_bg.png), rgb(226, 123, 30);
  background-size: 100.5%;
  background-repeat: no-repeat;
  background-position: -1px 0;
  z-index: 100;
}
@media screen and (max-width: 1535px) {
  .sec-takeout {
    padding-top: calc(145px * 0.75);
    padding-bottom: calc(230px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout {
    padding-top: calc(145 * 0.625 / 375 * 100vw);
    padding-bottom: calc(230 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-h2 {
  width: 67%;
  margin: 0 auto;
}

.takeout-bottom {
  width: 100.2%;
  transform: translateX(-0.08%);
  bottom: -19.2%;
}

/* バナーセクション
===============================*/
.sec-banner {
  overflow-x: clip;
  background: linear-gradient(14.06deg, rgb(190, 114, 0) 20.98%, rgb(208, 115, 0) 42.49%, rgb(205, 113, 0) 58.62%, rgb(196, 107, 0) 69.62%, rgb(181, 97, 0) 79.09%, rgb(180, 82, 0) 87.65%, rgb(180, 79, 0) 89.12%);
}
.sec-banner .navi {
  display: block;
}
.sec-banner .navi .naviA {
  width: 63%;
  transform: translateX(-15%);
  margin-left: auto;
}
.sec-banner .navi .naviB {
  width: 63%;
  transform: translateX(15%);
  margin-top: -60px;
  margin-bottom: 105px;
}
@media screen and (max-width: 1535px) {
  .sec-banner .navi .naviB {
    margin-top: calc(-60px * 0.75);
    margin-bottom: calc(105px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-banner .navi .naviB {
    margin-top: calc(-60 * 0.625 / 375 * 100vw);
    margin-bottom: calc(105 * 0.625 / 375 * 100vw);
  }
}
.sec-banner .youtube {
  width: 100%;
  height: 315px;
}
@media screen and (max-width: 1535px) {
  .sec-banner .youtube {
    height: calc(315px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-banner .youtube {
    height: calc(315 * 0.625 / 375 * 100vw);
  }
}
.sec-banner .cp {
  background-color: #d07300;
  background-image: url(/lp/2026_welovecheese/images/banner_bg.png);
  background-size: 100%;
  background-position: bottom;
  padding-bottom: 158px;
  padding-top: 70px;
}
@media screen and (max-width: 1535px) {
  .sec-banner .cp {
    padding-top: calc(70px * 0.75);
    padding-bottom: calc(158px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-banner .cp {
    padding-top: calc(70 * 0.625 / 375 * 100vw);
    padding-bottom: calc(158 * 0.625 / 375 * 100vw);
  }
}
.sec-banner .cp .cp-box {
  width: 92%;
  margin: 0 auto;
}

.movie {
  filter: brightness(1.15);
}

/*追記*/
#selbox-2 {
  background-color: #ffe6a4;
}

.reserve-btn {
  display: none;
}
@media screen and (max-width: 600px) {
  .reserve-btn {
    display: block;
    margin: 0 auto;
    width: 77%;
  }
}

.cp-banner {
  display: block;
  width: 80%;
  margin: 20px auto 60px auto;
  filter: drop-shadow(3px 7px 8px rgba(119, 38, 17, 0.75));
}
@media screen and (max-width: 1535px) {
  .cp-banner {
    margin-top: calc(20px * 0.75);
    margin-bottom: calc(60px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .cp-banner {
    margin-top: calc(20 * 0.625 / 375 * 100vw);
    margin-bottom: calc(60 * 0.625 / 375 * 100vw);
  }
}/*# sourceMappingURL=style.css.map */