@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/2026_menchi/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_menchi/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;
  z-index: 50;
}
@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: #fbe4bc;
  background-size: cover;
  z-index: 32;
  overflow-y: clip;
}
@media screen and (max-width: 1535px) {
  .left {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .left {
    display: none;
  }
}
.left .left-img {
  width: 46%;
  top: 59%;
  left: 52%;
  transform: translate(-48%, -50%);
}

/* RIGHT STYLE
=============================*/
.right {
  position: sticky;
  background-color: #fbe4bc;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  z-index: 32;
  overflow-y: clip;
}
@media screen and (max-width: 1535px) {
  .right {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .right {
    display: none;
  }
}
.right .right-box {
  width: 52.1%;
  top: 58%;
  left: 52%;
  transform: translate(-50%, -50%);
}
.right .right-box .right-boxA {
  display: flex;
  justify-content: space-between;
  padding-left: 2%;
  padding-right: 2%;
}
.right .right-box .right-boxA .right-anker {
  display: block;
  width: 23.6%;
}
.right .right-box .right-boxA .right-anker-01 {
  margin-top: 12%;
}
.right .right-box .right-boxA .right-anker-03 {
  width: 33%;
  margin-top: 23%;
}
.right .right-box .right-boxB {
  display: flex;
  justify-content: flex-start;
  padding-left: 2%;
  padding-right: 2%;
  margin-bottom: 7%;
}
.right .right-box .right-boxB .right-anker {
  display: block;
  width: 23.6%;
}
.right .right-box .right-boxB .right-anker-04 {
  margin-top: -32%;
  margin-right: 10%;
}
.right .right-box .right-boxB .right-anker-05 {
  margin-top: -42%;
}

/* SELECT BOX STYLE
=============================*/
.select-cap {
  font-size: 18px;
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  color: #60352c;
}
@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: #f8f7eb;
}
@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: 77.6%;
  margin: 0 auto;
}

/*==============*/
.select-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 70px;
  margin: 0 auto;
  width: 95%;
  top: 7.5%;
  left: 3.5%;
  padding: 4.1% 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_menchi/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;
  }
}

/*== menchi only ===*/
#selbox-1 {
  background-color: #ef4628;
}

#selbox-2 {
  background-color: #f02828;
}

#selbox-3 {
  background-color: #ff6900;
}

#selbox-4 {
  background-color: #8c4600;
}

/*=====*/
.price {
  font-size: 32px;
  font-weight: 400;
  font-family: "rubik";
  color: #f8f7eb;
  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", sans-serif;
  font-weight: 600;
}
@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: 59%;
  margin: 0 auto;
  padding-top: 22px;
}
@media screen and (max-width: 1535px) {
  .pr-con-center {
    padding-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .pr-con-center {
    padding-top: 4vw;
  }
}

.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: 42%;
}

.price-img {
  width: 44%;
}

/* UNIQUE
===============================*/
#single {
  width: 40%;
}

#double {
  width: 40%;
}

.pr-container {
  padding-top: 42px;
  padding-bottom: 55px;
}
@media screen and (max-width: 1535px) {
  .pr-container {
    padding-top: calc(42px * 0.75);
    padding-bottom: calc(55px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .pr-container {
    padding-top: calc(42 * 0.625 / 375 * 100vw);
    padding-bottom: calc(55 * 0.625 / 375 * 100vw);
  }
}

.sound-sw-01 {
  width: 23.5%;
  bottom: -2%;
  left: 57%;
}

.sound-sw-02 {
  width: 23.5%;
  bottom: 19%;
  left: 71%;
}

.sound-off {
  display: none;
}

.pc-mat {
  width: 100%;
  top: 0;
  left: 0;
}

/* 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_menchi/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-yugeL {
  width: 60.2%;
  left: 0%;
  top: 7%;
}

.mv-yugeR {
  width: 60.2%;
  right: -4%;
  top: 8%;
}

.mv-yugeL-alt {
  width: 60.2%;
  left: 0%;
  top: 7%;
}

.mv-yugeR-alt {
  width: 60.2%;
  right: -4%;
  top: 8%;
}

.mv-menchiL {
  width: 49.6%;
  top: 19.2%;
  left: -9.5%;
}

.mv-menchiR {
  width: 49.6%;
  top: 19.2%;
  right: -11.5%;
}

.mv-logo {
  width: 76.8%;
  top: 6.5%;
  left: 12%;
}

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

.mv-p {
  width: 30%;
  top: 32%;
  right: 7%;
}

/* 動画 セクション
===============================*/
.videoA-h3 {
  width: 75.7%;
  top: -14%;
  left: 4%;
}

.videoA-p {
  width: 57.9%;
  bottom: -3%;
  left: 37%;
}

.videoB-h3 {
  width: 63.7%;
  top: -12.5%;
  left: 24%;
}

.videoB-p {
  width: 57.9%;
  bottom: 0%;
  left: 7%;
}

.videoC-h3 {
  width: 75.7%;
  top: -14%;
  left: 4%;
}

.videoC-p {
  width: 53.6%;
  bottom: 6%;
  left: 38%;
}

.videoD-h3 {
  width: 87.7%;
  top: -19%;
  left: 6%;
}

.videoD-p {
  width: 45.3%;
  bottom: 5%;
  left: 10%;
}

.saku-01 {
  width: 18%;
  top: 47%;
  left: 99%;
}

.saku-02 {
  width: 20%;
  top: 54%;
  left: -25%;
}

.saku-03 {
  width: 20%;
  top: 64%;
  left: -24%;
}

.juwa-01 {
  width: 23.4%;
  top: 33%;
  left: -24%;
}

.juwa-02 {
  width: 23.4%;
  top: 38%;
  right: -25%;
}

/* メニュー タイトル
===============================*/
.menu-h2-source-01 {
  width: 19.2%;
  top: 5%;
  left: 2.6%;
}

.menu-h2-source-02 {
  width: 19.2%;
  top: 24%;
  right: 1.6%;
}

.menu-h2-star-01 {
  width: 8.7%;
  top: 22%;
  right: 8.6%;
}

.menu-h2-star-02 {
  width: 7.5%;
  top: 45%;
  left: 11.6%;
}

.menu-h2-star-03 {
  width: 6.7%;
  top: 42%;
  right: 16.6%;
}

.menu-h2-star-04 {
  width: 6.5%;
  top: 21%;
  left: 11.6%;
}

.menu-h2-caption {
  width: 46.6%;
  bottom: 24.5%;
  left: 48%;
}

/* メニューA
===============================*/
.menuA-cizle {
  width: 138.6%;
  top: 0;
  left: -19.3%;
}

.menuA-mask {
  width: 66.46%;
  top: 5%;
  left: 7%;
}

.menuA-video {
  -webkit-mask-image: url(/lp/2026_menchi/images/menuA_mask.svg);
          mask-image: url(/lp/2026_menchi/images/menuA_mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 66.46%;
  top: 0%;
  left: 4%;
}
.menuA-video .menuA-videofile {
  width: 120%;
  transform: translateY(-30%);
}

.menuA-source {
  width: 22.5%;
  top: 60.5%;
  right: 10%;
}

/* メニューB
===============================*/
.menuB-h2-new {
  width: 37.5%;
  top: -8%;
  left: -10%;
}

.menuB-cizle {
  width: 133.33%;
  top: 0%;
  left: -16.7%;
}

.menuB-mask {
  width: 71.16%;
  top: 1.7%;
  right: 6%;
}

.menuB-video {
  width: 71.16%;
  top: -3.7%;
  right: 8%;
  -webkit-mask-image: url(/lp/2026_menchi/images/menuB_mask.svg);
          mask-image: url(/lp/2026_menchi/images/menuB_mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.menuB-video .menuB-videofile {
  width: 200%;
  transform: translate(-25%, -15%);
}

.menuB-se {
  width: 16.15%;
  top: 7%;
  left: 17%;
}

/* メニューC
===============================*/
.menuC-cizle {
  width: 133.33%;
  top: 2%;
  left: -16.7%;
}

.menuC-mask {
  width: 68.8%;
  top: 8%;
  left: 17.8%;
}

.menuC-video {
  width: 68.8%;
  top: 3%;
  left: 15%;
  -webkit-mask-image: url(/lp/2026_menchi/images/menuC_mask.svg);
          mask-image: url(/lp/2026_menchi/images/menuC_mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.menuC-video .menuC-videofile {
  width: 120%;
  transform: translateY(-51%);
}

.menuC-se-01 {
  width: 10.66%;
  top: 6%;
  left: 16%;
}

.menuC-se-02 {
  width: 9.5%;
  top: 0.5%;
  left: 67%;
}

/* メニューD
===============================*/
.menuD-cizle {
  width: 128.33%;
  top: 1%;
  left: -16.7%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1535px) {
  .menuD-cizle {
    margin-bottom: rm1535(10px, 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuD-cizle {
    margin-bottom: rm600(10, 0.625);
  }
}

.menuD-mask {
  width: 69.6%;
  top: 11%;
  left: 18.5%;
}

.menuD-video {
  width: 69.6%;
  top: 5%;
  left: 16%;
  -webkit-mask-image: url(/lp/2026_menchi/images/menuD_mask.svg);
          mask-image: url(/lp/2026_menchi/images/menuD_mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.menuD-video .menuD-videofile {
  width: 120%;
  transform: translateY(-50%);
}

.menuD-source {
  width: 21.4%;
  top: 52%;
  left: 6%;
}

/* ストーリー セクション
===============================*/
.story-h2-abs {
  width: 34.9%;
  top: -20%;
  left: 2%;
}

/* バナー セクション
===============================*/
.banner-menchiL {
  width: 57.3%;
  bottom: 7.86%;
  left: -9.3%;
}

.banner-menchiR {
  width: 57.3%;
  bottom: 7.86%;
  right: -13.9%;
}

.banner-yugeL {
  width: 53.3%;
  bottom: 23.86%;
  left: 11%;
}

.banner-yugeR {
  width: 53.3%;
  bottom: 20.86%;
  right: 10%;
}

.banner-fukidashi {
  width: 57%;
  left: 24%;
  bottom: 38%;
}

/* MODAL セクション
===============================*/
.modal-bg {
  position: fixed;
  width: 600px;
  height: 100vh;
  top: 0;
  left: calc(50% - 300px);
  background-color: #60352c;
  z-index: 200;
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (max-width: 1535px) {
  .modal-bg {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .modal-bg {
    width: 100%;
    left: 0;
  }
}

.modal-bg-hide {
  opacity: 0;
  transition: 0.3s;
}

.modal-base {
  position: fixed;
  width: 600px;
  top: 54%;
  transform: translateY(-50%);
  left: calc(50% - 300px);
  background-color: #60352c;
  z-index: 200;
  transition: 0.3s;
}
@media screen and (max-width: 1535px) {
  .modal-base {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .modal-base {
    width: 100%;
    left: 0;
    top: 50%;
  }
}
.modal-base .modal-close {
  width: 23%;
  top: 1%;
  right: 4.5%;
  z-index: 200;
}
.modal-base .modal-close:hover {
  cursor: pointer;
}
.modal-base .modal-go {
  width: 25%;
  right: 4%;
  bottom: 4%;
  z-index: 50;
}
.modal-base .modal-go:hover {
  cursor: pointer;
}
.modal-base .modal-back {
  width: 25%;
  left: 4%;
  bottom: 4%;
  z-index: 50;
}
.modal-base .modal-back:hover {
  cursor: pointer;
}
.modal-base .storyA-main {
  width: 45.3%;
  top: 18%;
  left: 27%;
}
.modal-base .storyA-item-01 {
  width: 12.26%;
  top: 47.2%;
  left: 20.8%;
}
.modal-base .storyA-item-02 {
  width: 12.26%;
  top: 47.5%;
  right: 19.7%;
}
.modal-base .storyA-item-03 {
  width: 12.26%;
  top: 58.7%;
  left: 10.98%;
}
.modal-base .storyA-item-04 {
  width: 12.26%;
  top: 58.9%;
  right: 11.46%;
}
.modal-base .storyA-item-05 {
  width: 12.26%;
  top: 73%;
  left: 13.4%;
}
.modal-base .storyA-item-06 {
  width: 12.26%;
  top: 72.5%;
  right: 13.4%;
}
.modal-base .storyB-item-01 {
  width: 100%;
  top: 21%;
  left: 0;
}
.modal-base .storyB-item-02 {
  width: 42.6%;
  top: 37.5%;
  left: 29%;
}
.modal-base .storyC-item-01 {
  width: 100%;
  top: 21%;
  left: 0;
}
.modal-base .storyC-item-02 {
  width: 84.8%;
  top: 2%;
  left: 50.6%;
  transform: translateX(-50%);
}
.modal-base .storyC-item-03 {
  width: 17.8%;
  top: 41.5%;
  left: 35%;
  transform: translateX(-50%);
}
.modal-base .storyC-item-04 {
  width: 7.7%;
  top: 42%;
  left: 49.5%;
  transform: translateX(-50%);
}
.modal-base .storyC-item-05 {
  width: 17.98%;
  top: 41%;
  left: 65%;
  transform: translateX(-50%);
}
.modal-base .storyD-item-01 {
  width: 100%;
  top: 20.5%;
}
.modal-base .storyD-item-02 {
  width: 33.8%;
  top: 46%;
  left: 14%;
}
.modal-base .storyD-item-03 {
  width: 35%;
  top: 52%;
  left: 49.5%;
}
.modal-base .storyE-item-01 {
  width: 100%;
  top: 20%;
  left: 0;
}
.modal-base .storyE-item-02 {
  width: 100%;
  top: 75%;
  left: 0;
}
.modal-base .storyE-item-03 {
  width: 26.5%;
  top: 31%;
  left: 24%;
}
.modal-base .storyE-item-04 {
  width: 29.66%;
  top: 52%;
  left: 44.5%;
}
.modal-base .storyE-item-05 {
  width: 9.66%;
  top: 46%;
  left: 45.5%;
}
.modal-base .storyE-item-06 {
  width: 6.7%;
  top: 51.5%;
  left: 72%;
}
.modal-base .storyE-item-07 {
  width: 6.24%;
  top: 64.5%;
  left: 37%;
}
.modal-base .storyF-item-01 {
  width: 100%;
  top: 20%;
  left: 0;
}
.modal-base .storyF-item-02 {
  width: 59.8%;
  top: 41%;
  left: 21%;
}
.modal-base .storyF-item-03 {
  width: 12%;
  top: 51%;
  left: 77%;
}
.modal-base .storyF-item-04 {
  width: 8.3%;
  top: 70%;
  left: 75.5%;
}
.modal-base .storyF-item-05 {
  width: 9.68%;
  top: 74%;
  left: 14%;
}
.modal-base .storyG-item-01 {
  width: 100%;
  top: 20%;
  left: 0;
}
.modal-base .storyG-item-02 {
  width: 24.86%;
  top: 60%;
  left: 37.8%;
}
.modal-base .storyG-item-03 {
  width: 61.6%;
  top: 46.5%;
  left: 19.3%;
}
.modal-base .storyG-item-04 {
  width: 5.7%;
  top: 64.5%;
  left: 32.8%;
}
.modal-base .storyG-item-05 {
  width: 6.45%;
  top: 59.4%;
  left: 61.3%;
}
.modal-base .storyG-item-06 {
  width: 21%;
  top: 46.4%;
  left: 19.3%;
}
.modal-base .storyG-item-07 {
  width: 21%;
  top: 45.7%;
  left: 50.3%;
}
.modal-base .storyG-item-08 {
  width: 21%;
  top: 65.7%;
  left: 10.3%;
}
.modal-base .storyG-item-09 {
  width: 21%;
  top: 63.7%;
  left: 67.8%;
}
.modal-base .storyH-item-01 {
  width: 100%;
  top: 14%;
  left: 0%;
}
.modal-base .storyH-item-02 {
  width: 90%;
  top: 76.5%;
  left: 5%;
}
.modal-base .storyH-item-03 {
  width: 55%;
  top: 27.5%;
  left: 22%;
}
.modal-base .storyH-item-04 {
  width: 26.6%;
  top: 29.5%;
  left: 10.5%;
  z-index: 10;
}
.modal-base .storyI-item-01 {
  width: 100%;
  top: 22.5%;
  z-index: 10;
}
.modal-base .storyJ-item-01 {
  width: 67.4%;
  top: 56.8%;
  left: 16.5%;
}
.modal-base .storyK-item-01 {
  width: 100%;
  top: 24.3%;
  left: 0%;
}

.modal-base-hide {
  opacity: 0;
  transition: 0.3s;
}

.display-none {
  display: none;
}

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

@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 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 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(20px);
    transform: scale(0.6);
  }
  100% {
    opacity: 0.7;
    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);
  }
}
.mv-yugeL, .mv-yugeL-alt {
  opacity: 0;
}

.mv-yugeR, .mv-yugeR-alt {
  opacity: 0;
}

.mv-yugeL-active {
  animation: yuge 3s ease-in-out forwards;
}

.mv-yugeL-alt-active {
  animation: yugeAlt 4s ease-in-out infinite 2s;
}

.mv-yugeR-active {
  animation: yuge 3s ease-in-out forwards;
}

.mv-yugeR-alt-active {
  animation: yugeAlt 4s ease-in-out infinite 2s;
}

.banner-yugeL {
  opacity: 0;
}

.banner-yugeR {
  opacity: 0;
}

.banner-yugeL-active {
  animation: yuge 1s ease-in-out forwards;
}

.banner-yugeR-active {
  animation: yuge 1s ease-in-out forwards;
}

@keyframes menchi-l {
  0% {
    transform: translate(50%, -14%) rotate(25deg) scale(0.9);
    filter: brightness(0.7);
  }
  100% {
    transform: translate(0, 0) rotate(0) scale(1);
    filter: brightness(1);
  }
}
@keyframes menchi-r {
  0% {
    transform: translate(-50%, -14%) rotate(-25deg) scale(0.9);
    filter: brightness(0.7);
  }
  100% {
    transform: translate(0, 0) rotate(0) scale(1);
    filter: brightness(1);
  }
}
.mv-menchiL {
  opacity: 0;
}

.mv-menchiR {
  opacity: 0;
}

.mv-menchiL-active {
  opacity: 1;
  transform: translate(50%, -14%) rotate(25deg) scale(0.9);
  filter: brightness(0.7);
  animation: menchi-l 1.2s cubic-bezier(0, 0.88, 0.4, 0.99) forwards 0.05s;
}

.mv-menchiR-active {
  opacity: 1;
  transform: translate(-50%, -14%) rotate(-25deg) scale(0.9);
  filter: brightness(0.7);
  animation: menchi-r 1.2s cubic-bezier(0, 0.88, 0.4, 0.99) forwards 0.05s;
}

@keyframes footerMenchi-l {
  0% {
    transform: translate(20%, -14%) rotate(25deg) scale(0.9);
    filter: brightness(0.7);
  }
  100% {
    transform: translate(0, 0) rotate(0) scale(1);
    filter: brightness(1);
  }
}
@keyframes footerMenchi-r {
  0% {
    transform: translate(-20%, -14%) rotate(-25deg) scale(0.9);
    filter: brightness(0.7);
  }
  100% {
    transform: translate(0, 0) rotate(0) scale(1);
    filter: brightness(1);
  }
}
.banner-menchiL {
  opacity: 0;
}

.banner-menchiR {
  opacity: 0;
}

.banner-menchiL-active {
  opacity: 1;
  transform: translate(50%, -14%) rotate(25deg) scale(0.9);
  filter: brightness(0.7);
  animation: footerMenchi-l 1.2s cubic-bezier(0, 0.88, 0.4, 0.99) forwards 0.05s;
}

.banner-menchiR-active {
  opacity: 1;
  transform: translate(-50%, -14%) rotate(-25deg) scale(0.9);
  filter: brightness(0.7);
  animation: footerMenchi-r 1.2s cubic-bezier(0, 0.88, 0.4, 0.99) forwards 0.05s;
}

@keyframes h1-y {
  0% {
    transform: scale(0);
  }
  1% {
    opacity: 1;
  }
  67% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.mv-logo-img {
  opacity: 0;
}

.mv-logo-img-active {
  animation: h1-y 1s ease-in-out forwards;
}

.mv-p {
  opacity: 0;
}

.mv-p-active {
  animation: h1-y 0.5s ease-in-out forwards 0.8s;
}

@keyframes boyoyon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1.2);
    opacity: 1;
  }
  35% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.04);
  }
  60% {
    transform: scale(0.99);
  }
  85% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.boyoyon {
  opacity: 0;
}

.boyoyon-active {
  animation: boyoyon 1.25s ease-out forwards;
}

@keyframes ban {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.ban {
  opacity: 0;
}

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

@keyframes movieL {
  0% {
    opacity: 0;
    transform: translateX(-20%);
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes movieR {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.movieL {
  opacity: 0;
}

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

.movieR {
  opacity: 0;
}

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

.sourceR {
  transform: translateX(20%);
  opacity: 0;
}

.sourceR-active {
  transform: translateX(0);
  opacity: 1;
  transition: 0.5s ease-in-out;
  transition-delay: 0.2s;
}

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

.sourceL-active {
  transform: translateX(20%);
  opacity: 1;
  transition: 0.5s ease-in-out;
  transition-delay: 0.2s;
}

.mat {
  transform: translateY(5%);
  opacity: 0;
}

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

@keyframes saku {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(20%, -20%) rotate(15deg);
  }
  100% {
    transform: translate(0%) rotate(0deg);
  }
}
.saku {
  animation: saku 1s infinite steps(1);
}

@keyframes juwa {
  0% {
    opacity: 1;
    filter: blur(0);
  }
  20% {
    opacity: 1;
    filter: blur(0);
  }
  60% {
    opacity: 0;
    filter: blur(15px);
  }
  90% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
.juwa {
  animation: juwa 3s ease-in-out infinite;
}

@keyframes koma {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(10deg);
  }
}
.koma {
  animation: koma 1s infinite steps(1);
}

/* 看板ゆらゆら */
@keyframes sway {
  0% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-1.5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.sway {
  transform-origin: top center;
  animation: sway 0.8s ease-in-out forwards;
}

.kakukaku {
  opacity: 0;
}

.kakukaku-active {
  opacity: 1;
  transition: 0.3s;
  animation: kakukaku 1s steps(1) infinite;
}

@keyframes kakukaku {
  0% {
    transform: translateY(0%) rotate(5deg);
  }
  50% {
    transform: translateY(10px) rotate(0deg);
  }
  100% {
    transform: translateY(0);
  }
}
/* 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;
}

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

/* トップ 木目 背景
===============================*/
.sec-top {
  background-image: url(/lp/2026_menchi/images/top_bg.jpg);
  background-size: 100.1%;
  background-position: top left;
}

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

/* 動画セクション
===============================*/
@media screen and (max-width: 600px) {
  .sec-video {
    overflow-x: clip;
  }
}

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

.videoA {
  margin-bottom: 150px;
}
@media screen and (max-width: 1535px) {
  .videoA {
    margin-bottom: calc(150px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .videoA {
    margin-bottom: calc(150 * 0.625 / 375 * 100vw);
  }
}
.videoA .videoA-bg {
  width: 115%;
  margin-left: 0%;
}
.videoA .videoA-box {
  width: 115%;
  top: -5.2%;
  left: -8%;
  overflow-x: clip;
  -webkit-mask-image: url(/lp/2026_menchi/images/videoA_bg.svg);
          mask-image: url(/lp/2026_menchi/images/videoA_bg.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.videoA .videoA-box .videoA-file {
  width: 215%;
  transform: translate(-35%, -10%);
}

.videoB {
  margin-bottom: 180px;
}
@media screen and (max-width: 1535px) {
  .videoB {
    margin-bottom: calc(180px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .videoB {
    margin-bottom: calc(180 * 0.625 / 375 * 100vw);
  }
}
.videoB .videoB-bg {
  width: 112%;
  margin-left: -9%;
}
.videoB .videoB-box {
  width: 112%;
  top: -5.5%;
  left: -5%;
  overflow-x: clip;
  -webkit-mask-image: url(/lp/2026_menchi/images/videoB_bg.svg);
          mask-image: url(/lp/2026_menchi/images/videoB_bg.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.videoB .videoB-box .videoB-file {
  width: 180%;
  transform: translate(-20%, -5%);
}

.videoC {
  margin-bottom: 180px;
}
@media screen and (max-width: 1535px) {
  .videoC {
    margin-bottom: calc(180px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .videoC {
    margin-bottom: calc(180 * 0.625 / 375 * 100vw);
  }
}
.videoC .videoC-bg {
  width: 115%;
  margin-left: 0%;
}
.videoC .videoC-box {
  width: 115%;
  top: -5.2%;
  left: -8%;
  overflow-x: clip;
  -webkit-mask-image: url(/lp/2026_menchi/images/videoC_bg.svg);
          mask-image: url(/lp/2026_menchi/images/videoC_bg.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.videoC .videoC-box .videoC-file {
  width: 200%;
  transform: translate(-15%, -9%);
}

.videoD {
  margin-bottom: 100px;
}
@media screen and (max-width: 1535px) {
  .videoD {
    margin-bottom: calc(100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .videoD {
    margin-bottom: calc(100 * 0.625 / 375 * 100vw);
  }
}
.videoD .videoD-bg {
  width: 115%;
  margin-left: -13%;
}
.videoD .videoD-box {
  width: 115%;
  top: -8.2%;
  left: -8%;
  overflow-x: clip;
  -webkit-mask-image: url(/lp/2026_menchi/images/videoD_bg.svg);
          mask-image: url(/lp/2026_menchi/images/videoD_bg.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.videoD .videoD-box .videoC-file {
  width: 215%;
  transform: translateX(-32%);
}

.video-caption {
  margin-bottom: 110px;
}
@media screen and (max-width: 1535px) {
  .video-caption {
    margin-bottom: calc(110px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .video-caption {
    margin-bottom: calc(110 * 0.625 / 375 * 100vw);
  }
}

/* メニューセクション
===============================*/
.sec-menu {
  background-color: #f02828;
}
@media screen and (max-width: 600px) {
  .sec-menu {
    overflow-x: clip;
  }
}

.sec-menuA {
  background-color: #f02828;
  padding-bottom: 120px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA {
    padding-bottom: calc(120px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA {
    padding-bottom: calc(120 * 0.625 / 375 * 100vw);
    overflow-x: clip;
  }
}
.sec-menuA .menuA-cizle {
  height: 451px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA .menuA-cizle {
    height: calc(451px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA .menuA-cizle {
    height: calc(451 * 0.625 / 375 * 100vw);
  }
}

.sec-menuB {
  background-color: #f02828;
}
@media screen and (max-width: 600px) {
  .sec-menuB {
    overflow-x: clip;
  }
}
.sec-menuB .menuB-top {
  margin-bottom: 20px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-top {
    margin-bottom: calc(20px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-top {
    margin-bottom: calc(20 * 0.625 / 375 * 100vw);
  }
}
.sec-menuB .menuB-cizle {
  height: 477px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-cizle {
    height: calc(477px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-cizle {
    height: calc(477 * 0.625 / 375 * 100vw);
  }
}
.sec-menuB .menuB-sub {
  padding-bottom: 55px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-sub {
    padding-bottom: calc(55px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-sub {
    padding-bottom: calc(55 * 0.625 / 375 * 100vw);
  }
}

.sec-menuC {
  background-color: #ff6900;
}
@media screen and (max-width: 600px) {
  .sec-menuC {
    overflow-x: clip;
  }
}
.sec-menuC .menuC-top {
  margin-bottom: 35px;
}
@media screen and (max-width: 1535px) {
  .sec-menuC .menuC-top {
    margin-bottom: calc(35px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuC .menuC-top {
    margin-bottom: calc(35 * 0.625 / 375 * 100vw);
  }
}
.sec-menuC .menuC-h2 {
  margin-top: 30px;
}
@media screen and (max-width: 1535px) {
  .sec-menuC .menuC-h2 {
    margin-top: calc(30px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuC .menuC-h2 {
    margin-top: calc(30 * 0.625 / 375 * 100vw);
  }
}
.sec-menuC .menuC-cizle {
  height: 456px;
}
@media screen and (max-width: 1535px) {
  .sec-menuC .menuC-cizle {
    height: calc(456px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuC .menuC-cizle {
    height: calc(456 * 0.625 / 375 * 100vw);
  }
}
.sec-menuC .menuC-sub {
  padding-bottom: 55px;
}
@media screen and (max-width: 1535px) {
  .sec-menuC .menuC-sub {
    padding-bottom: calc(55px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuC .menuC-sub {
    padding-bottom: calc(55 * 0.625 / 375 * 100vw);
  }
}

.sec-menuD {
  background-color: #8c4600;
}
@media screen and (max-width: 600px) {
  .sec-menuD {
    overflow-x: clip;
  }
}
.sec-menuD .menuD-top {
  margin-bottom: 40px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-top {
    margin-bottom: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-top {
    margin-bottom: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .menuD-h2 {
  margin-top: 40px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-h2 {
    margin-top: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-h2 {
    margin-top: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .menuD-cizle {
  height: 465px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-cizle {
    height: calc(465px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-cizle {
    height: calc(465 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .menuD-sub {
  padding-bottom: 55px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-sub {
    padding-bottom: calc(55px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-sub {
    padding-bottom: calc(55 * 0.625 / 375 * 100vw);
  }
}

/* 木目背景　設定
===============================*/
/* サイドメニュー セクション
===============================*/
.sec-side {
  background-color: #e6a000;
}
@media screen and (max-width: 600px) {
  .sec-side {
    overflow-x: clip;
  }
}
.sec-side .side-h2 {
  margin-top: 60px;
}
@media screen and (max-width: 1535px) {
  .sec-side .side-h2 {
    margin-top: calc(60px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-side .side-h2 {
    margin-top: calc(60 * 0.625 / 375 * 100vw);
  }
}
.sec-side .sideA {
  padding-bottom: 88px;
}
@media screen and (max-width: 1535px) {
  .sec-side .sideA {
    padding-bottom: calc(88px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-side .sideA {
    padding-bottom: calc(88 * 0.625 / 375 * 100vw);
  }
}
.sec-side .story-top {
  padding-top: 80px;
  display: block;
}
@media screen and (max-width: 1535px) {
  .sec-side .story-top {
    padding-top: calc(80px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-side .story-top {
    padding-top: calc(80 * 0.625 / 375 * 100vw);
  }
}

/* ストーリーセクション
===============================*/
.sec-story {
  background-color: #e3d3b7;
}
@media screen and (max-width: 600px) {
  .sec-story {
    overflow-x: clip;
  }
}

.story-h2 {
  z-index: 100;
}

.story-sticky {
  margin-top: -120px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1535px) {
  .story-sticky {
    padding-top: calc(-120px * 0.75);
    padding-bottom: calc(70px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .story-sticky {
    padding-top: calc(-120 * 0.625 / 375 * 100vw);
    padding-bottom: calc(70 * 0.625 / 375 * 100vw);
  }
}
.story-sticky .story-main-base {
  width: 84.5%;
}
.story-sticky .story-main-01 {
  width: 39.2%;
  top: 25%;
  left: 31%;
}
.story-sticky .story-main-02 {
  width: 13%;
  top: 16%;
  left: 53%;
}
.story-sticky .story-main-03 {
  width: 12.8%;
  top: 30%;
  left: 27%;
}
.story-sticky .story-main-04 {
  width: 9.6%;
  top: 41%;
  left: 64%;
}
.story-sticky .story-main-05 {
  width: 11.4%;
  top: 47%;
  left: 20%;
}
.story-sticky .story-main-06 {
  width: 13.3%;
  top: 54%;
  left: 71.5%;
}
.story-sticky .story-main-07 {
  width: 10.56%;
  top: 65%;
  left: 22%;
}
.story-sticky .story-btn {
  width: 62%;
  top: 79.5%;
  left: 19.6%;
}
.story-sticky .story-btn:hover {
  cursor: pointer;
}

/* スティッキートグル
===============================*/
.storyA-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyA-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyB-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyB-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyC-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyC-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyD-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyD-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyE-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyE-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyF-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyF-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyG-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyG-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyH-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyH-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyI-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyI-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyJ-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyJ-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyK-item {
  opacity: 0;
  filter: blur(10px);
  transition: 0.5s;
  transform: translateY(2.5%);
}

.storyK-item-active {
  opacity: 1;
  filter: blur(0px);
  transition: 1s;
  transform: translateY(0%);
}

.storyB-item-01.storyB-item-active {
  transition-delay: 0.3s;
}

.storyC-item-01.storyC-item-active {
  transition-delay: 0.5s;
}

.storyC-item-03.storyC-item-active {
  transition-delay: 0.1s;
}

.storyC-item-04.storyC-item-active {
  transition-delay: 0.2s;
}

.storyC-item-05.storyC-item-active {
  transition-delay: 0.3s;
}

.storyD-item-01.storyD-item-active {
  transition-delay: 0.5s;
}

.storyD-item-03.storyD-item-active {
  transition-delay: 0.25s;
}

.storyE-item-01.storyE-item-active {
  transition-delay: 0.6s;
}

.storyE-item-02.storyE-item-active {
  transition-delay: 0.7s;
}

.storyE-item-03.storyE-item-active {
  transition-delay: 0.2s;
}

.storyE-item-04.storyE-item-active {
  transition-delay: 0.4s;
}

.storyE-item-05.storyE-item-active {
  transition-delay: 0.3s;
}

.storyE-item-06.storyE-item-active {
  transition-delay: 0.5s;
}

.storyE-item-07.storyE-item-active {
  transition-delay: 0.5s;
}

.storyF-item-01.storyF-item-active {
  transition-delay: 0.3s;
}

.storyG-item-06.storyG-item-active {
  transition-delay: 0.2s;
}

.storyG-item-07.storyG-item-active {
  transition-delay: 0.3s;
}

.storyG-item-08.storyG-item-active {
  transition-delay: 0.4s;
}

.storyG-item-09.storyG-item-active {
  transition-delay: 0.5s;
}

.storyG-item-01.storyG-item-active {
  transition-delay: 0.7s;
}

.storyH-item-01.storyH-item-active {
  transition-delay: 0.5s;
}

.storyH-item-02.storyH-item-active {
  transition-delay: 0.6s;
}

.storyH-item-03.storyH-item-active {
  transition-delay: 0s;
}

.storyH-item-04.storyH-item-active {
  transition-delay: 0.2s;
}

.storyI-item-01.storyI-item-active {
  transition-delay: 0.3s;
}

.storyIn-container {
  width: 39.4%;
  bottom: 5%;
  left: 31%;
  display: flex;
  justify-content: space-between;
}

.storyIn {
  width: 7.9%;
}

/* バナーセクション
===============================*/
.sec-banner {
  background-image: url(/lp/2026_menchi/images/banner_bg.jpg);
  background-size: 100% 100%;
  background-position: left bottom;
}
@media screen and (max-width: 600px) {
  .sec-banner {
    overflow-x: clip;
  }
}

.banner-cm {
  padding-top: 72px;
  padding-bottom: 118px;
}
@media screen and (max-width: 1535px) {
  .banner-cm {
    padding-top: calc(72px * 0.75);
    padding-bottom: calc(118px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .banner-cm {
    padding-top: calc(72 * 0.625 / 375 * 100vw);
    padding-bottom: calc(118 * 0.625 / 375 * 100vw);
  }
}
.banner-cm .youtube {
  display: block;
  width: 77.33%;
  border-radius: 35px;
}
@media screen and (max-width: 1535px) {
  .banner-cm .youtube {
    border-radius: calc(35px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .banner-cm .youtube {
    border-radius: calc(35 * 0.625 / 375 * 100vw);
  }
}

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

.banner-cp {
  display: block;
  width: 79.5%;
}

.banner-menchi {
  height: 670px;
}
@media screen and (max-width: 1535px) {
  .banner-menchi {
    height: calc(670px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .banner-menchi {
    height: calc(670 * 0.625 / 375 * 100vw);
  }
}/*# sourceMappingURL=style.css.map */