@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/2025_matchanokawori/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/2025_matchanokawori/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;
  }
}

/* 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: linear-gradient(-0.74deg, rgb(232, 198, 111) 4.37%, rgb(217, 187, 101) 6.95%, rgb(174, 157, 72) 14.9%, rgb(158, 146, 61) 18.97%, rgb(142, 133, 55) 23.83%, rgb(113, 111, 45) 34.05%, rgb(102, 102, 41) 39.9%, rgb(62, 84, 13) 64.28%, rgb(54, 68, 23) 99.04%);
  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-typo-box {
  width: 43%;
  top: 30%;
  left: 30%;
}
.left .left-chaba-01 {
  width: 36.9%;
  top: 6%;
  left: -4%;
  animation-delay: 2s;
}
.left .left-chaba-02 {
  width: 29.7%;
  top: 40%;
  left: 78%;
}
.left .left-chaba-03 {
  width: 25%;
  top: 82%;
  left: 9%;
  animation-delay: 4s;
}

/* RIGHT STYLE
=============================*/
.right {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background: linear-gradient(-0.74deg, rgb(232, 198, 111) 4.37%, rgb(217, 187, 101) 6.95%, rgb(174, 157, 72) 14.9%, rgb(158, 146, 61) 18.97%, rgb(142, 133, 55) 23.83%, rgb(113, 111, 45) 34.05%, rgb(102, 102, 41) 39.9%, rgb(62, 84, 13) 64.28%, rgb(54, 68, 23) 99.04%);
  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-qr {
  width: 48%;
  top: 59%;
  left: 10%;
}
.right .right-chaba-01 {
  width: 48.28%;
  top: 4.6%;
  right: -3%;
  animation-delay: 2s;
}
.right .right-chaba-02 {
  width: 20.8%;
  top: 36.6%;
  right: 12%;
}
.right .right-chaba-03 {
  width: 34%;
  top: 46.6%;
  left: -3.5%;
  animation-delay: 4s;
}
.right .right-chaba-04 {
  width: 41.5%;
  top: 79.6%;
  right: -5%;
  animation-delay: 6s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.type-d {
  width: 20%;
}

.price-img {
  width: 64%;
}

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

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

#single {
  width: 40%;
}

#double {
  width: 40%;
}

/* オープニング
===============================*/
.op-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100vh;
  z-index: 100;
  background: linear-gradient(0deg, rgb(215, 181, 111) 4.37%, rgb(200, 170, 101) 8.21%, rgb(157, 140, 72) 20.07%, rgb(141, 129, 61) 26.13%, rgb(113, 110, 47) 50.52%, rgb(102, 102, 41) 64.86%, rgb(81, 94, 42) 89.6%, rgb(69, 89, 42) 100%);
}
@media screen and (max-width: 1535px) {
  .op-fixed {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .op-fixed {
    width: 100%;
    top: 0;
    left: 0;
    transform: translateX(0);
  }
}
.op-fixed .op-typo {
  width: 46.1%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*anime*/
@keyframes op {
  0% {
    opacity: 0;
    transform: translateY(5%) rotate(5deg);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0%) rotate(0);
    filter: blur(0px);
  }
}
.op-typo-img {
  opacity: 0;
}

.op-typo-img-active {
  animation: op 1.5s ease-in-out forwards;
}
.op-typo-img-active:nth-child(2) {
  animation-delay: 0.1s;
}
.op-typo-img-active:nth-child(3) {
  animation-delay: 0.2s;
}
.op-typo-img-active:nth-child(4) {
  animation-delay: 0.3s;
}
.op-typo-img-active:nth-child(5) {
  animation-delay: 0.2s;
}
.op-typo-img-active:nth-child(6) {
  animation-delay: 0.3s;
}
.op-typo-img-active:nth-child(7) {
  animation-delay: 0.4s;
}
.op-typo-img-active:nth-child(8) {
  animation-delay: 0.5s;
}
.op-typo-img-active:nth-child(9) {
  animation-delay: 0.6s;
}
.op-typo-img-active:nth-child(10) {
  animation-delay: 0.7s;
}
.op-typo-img-active:nth-child(11) {
  animation-delay: 0.8s;
}
.op-typo-img-active:nth-child(12) {
  animation-delay: 0.6s;
}
.op-typo-img-active:nth-child(13) {
  animation-delay: 0.7s;
}
.op-typo-img-active:nth-child(14) {
  animation-delay: 0.8s;
}
.op-typo-img-active:nth-child(15) {
  animation-delay: 0.9s;
}
.op-typo-img-active:nth-child(16) {
  animation-delay: 1s;
}
.op-typo-img-active:nth-child(17) {
  animation-delay: 1.1s;
}
.op-typo-img-active:nth-child(18) {
  animation-delay: 1.2s;
}
.op-typo-img-active:nth-child(19) {
  animation-delay: 1.3s;
}
.op-typo-img-active:nth-child(20) {
  animation-delay: 1.4s;
}
.op-typo-img-active:nth-child(21) {
  animation-delay: 1.5s;
}
.op-typo-img-active:nth-child(22) {
  animation-delay: 1.6s;
}
.op-typo-img-active:nth-child(23) {
  animation-delay: 1.4s;
}
.op-typo-img-active:nth-child(24) {
  animation-delay: 1.5s;
}
.op-typo-img-active:nth-child(25) {
  animation-delay: 1.6s;
}
.op-typo-img-active:nth-child(26) {
  animation-delay: 1.7s;
}

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

/* メインビジュアルセクション ABS
===============================*/
.mv-img {
  top: 46%;
  left: 0;
}

.mv-yuge {
  width: 100%;
  top: 0.3%;
}

.mv-chaba-01 {
  width: 27%;
  top: 6%;
  left: -2%;
}

.mv-chaba-02 {
  width: 40.8%;
  top: 22%;
  right: -15%;
}

.mv-chaba-03 {
  width: 27%;
  top: 45%;
  left: -8%;
}

.mv-typo:nth-child(5) {
  width: 14.9%;
  top: 13.3%;
  left: 69.6%;
}
.mv-typo:nth-child(6) {
  width: 24.6%;
  top: 22.3%;
  left: 51.8%;
}
.mv-typo:nth-child(7) {
  width: 20.88%;
  top: 37.3%;
  left: 62.13%;
}
.mv-typo:nth-child(8) {
  width: 10.28%;
  top: 52%;
  left: 60.39%;
}
.mv-typo:nth-child(9) {
  width: 22.16%;
  top: 16.5%;
  left: 21.84%;
}
.mv-typo:nth-child(10) {
  width: 16.18%;
  top: 31%;
  left: 29.57%;
}
.mv-typo:nth-child(11) {
  width: 13.6%;
  top: 41%;
  left: 16.88%;
}
.mv-typo:nth-child(12) {
  width: 7%;
  top: 54%;
  left: 28.38%;
}

.mv-typo-img {
  filter: drop-shadow(2px 2px 6px rgba(25, 40, 0, 0.6));
}

/* イントロセクション ABS
===============================*/
.intro-h2 {
  width: 15.9%;
  top: 16.5%;
  right: 5.8%;
}

.intro-p {
  width: 40.1%;
  top: 16.5%;
  right: 29.4%;
}

.intro-ph {
  width: 82%;
  top: 40.2%;
}

.intro-chaba-01 {
  width: 70.8%;
  left: -35%;
  top: 24%;
}

/* メニューA ABS
===============================*/
.menuA-yuge {
  width: 100%;
  top: -0.3%;
}

.menuA-caption {
  width: 29.23%;
  top: -16.5%;
  right: 8.5%;
}

.menuA-typo:nth-child(1) {
  width: 17.1%;
  top: 0;
  left: 53.6%;
}
.menuA-typo:nth-child(2) {
  width: 33.9%;
  top: 12.55%;
  left: 24.91%;
}
.menuA-typo:nth-child(3) {
  width: 29.55%;
  top: 38.03%;
  left: 43.87%;
}
.menuA-typo:nth-child(4) {
  width: 13.2%;
  top: 61.39%;
  left: 44.88%;
}

.menuA-chaba-01 {
  width: 57.06%;
  right: -10%;
  top: 5%;
}

.menuA-chaba-02 {
  width: 23.1%;
  right: 15%;
  top: 22%;
}

.menuA-chaba-03 {
  width: 55.8%;
  left: -22%;
  top: 42.5%;
}

.menuA-chaba-04 {
  width: 49.6%;
  right: -20%;
  top: 70.5%;
}

/* メニューB ABS
===============================*/
.menuB-yuge {
  width: 100%;
  top: -12%;
}

.menuB-caption {
  width: 17.8%;
  top: -8.9%;
  right: 9.3%;
}

.menuB-typo:nth-child(1) {
  width: 30.9%;
  top: 0;
  left: 35.63%;
}
.menuB-typo:nth-child(2) {
  width: 22.6%;
  top: 26.17%;
  left: 50.13%;
}
.menuB-typo:nth-child(3) {
  width: 19.09%;
  top: 46.89%;
  left: 32.27%;
}
.menuB-typo:nth-child(4) {
  width: 9.71%;
  top: 72.36%;
  left: 46.67%;
}

.menuB-chaba-01 {
  width: 51.2%;
  left: -20%;
  top: -5%;
}

.menuB-chaba-02 {
  width: 35.5%;
  right: -12%;
  top: 26%;
}

/* メニューC ABS
===============================*/
.menuC-yuge {
  width: 100%;
  top: -8.4%;
}

.menuC-caption {
  width: 29.22%;
  top: -38.8%;
  right: 12%;
}

.menuC-typo {
  z-index: 1;
}
.menuC-typo:nth-child(1) {
  width: 17.1%;
  top: 0;
  left: 53.6%;
}
.menuC-typo:nth-child(2) {
  width: 33.9%;
  top: 11.99%;
  left: 24.91%;
}
.menuC-typo:nth-child(3) {
  width: 29.55%;
  top: 36.06%;
  left: 43.87%;
}
.menuC-typo:nth-child(4) {
  width: 13.2%;
  top: 58.02%;
  left: 44.88%;
}

.menuC-chaba-01 {
  width: 48.2%;
  left: -10%;
  top: 0%;
}

.menuC-chaba-02 {
  width: 31%;
  right: -5%;
  top: 18%;
}

.menuC-chaba-03 {
  width: 32%;
  left: 5%;
  top: 42%;
}

/* メニューD ABS
===============================*/
.menuD-yuge {
  width: 100%;
  top: -8.8%;
  left: 0;
}

.menuD-typo:nth-child(1) {
  width: 30.9%;
  top: 0;
  left: 35.63%;
}
.menuD-typo:nth-child(2) {
  width: 22.6%;
  top: 21.1%;
  left: 50.13%;
}
.menuD-typo:nth-child(3) {
  width: 19.09%;
  top: 38%;
  left: 32.27%;
}
.menuD-typo:nth-child(4) {
  width: 9.71%;
  top: 58.5%;
  left: 46.67%;
}

.menuD-caption {
  width: 17.87%;
  top: -14.5%;
  right: 7.4%;
}

.contentD-ph {
  width: 100%;
  top: 20.5%;
  left: 0;
}

.contentD-caption {
  width: 100%;
  top: 20.5%;
  left: 0;
}

.menuD-chaba-01 {
  width: 43.4%;
  right: -5%;
  top: -3%;
}

.menuD-chaba-02 {
  width: 36.7%;
  left: -3%;
  top: 36.5%;
}

.menuD-chaba-03 {
  width: 55.4%;
  right: -15%;
  top: 65.5%;
}

.menuD-chaba-04 {
  width: 70.4%;
  left: -15%;
  top: 90.5%;
  z-index: 1;
}

/* バナーセクション ABS
===============================*/
.banner-typo:nth-child(1) {
  width: 19.55%;
  top: 0;
  left: 48.1%;
}
.banner-typo:nth-child(2) {
  width: 27.6%;
  top: 24.19%;
  left: 52.89%;
}
.banner-typo:nth-child(3) {
  width: 22.48%;
  top: 56.5%;
  left: 47.02%;
}
.banner-typo:nth-child(4) {
  width: 11.07%;
  top: 87%;
  left: 57.65%;
}
.banner-typo:nth-child(5) {
  width: 23.51%;
  top: 16.15%;
  left: 21.69%;
}
.banner-typo:nth-child(6) {
  width: 15.87%;
  top: 45.35%;
  left: 29.57%;
}
.banner-typo:nth-child(7) {
  width: 14.19%;
  top: 67.44%;
  left: 20.93%;
}
.banner-typo:nth-child(8) {
  width: 6.8%;
  top: 92.27%;
  left: 33.2%;
}

.banner-anker-01 {
  display: block;
  width: 26%;
  top: 0;
  left: 18.5%;
}

.banner-anker-02 {
  display: block;
  width: 26%;
  bottom: 0;
  right: 18.5%;
}

.illust-body {
  width: 96.1%;
  top: 2%;
  left: 2%;
}

.illust-arm {
  width: 22.1%;
  top: 43%;
  left: 43%;
}

.illust-finger {
  width: 22.1%;
  top: 43%;
  left: 43%;
}

.illust-spoon {
  width: 12.7%;
  top: 35%;
  left: 55.5%;
}

.illust-puffe {
  width: 18.3%;
  top: 50%;
  left: 65.8%;
}

.illust-leaf-01 {
  width: 6.5%;
  top: 10%;
  left: 70.5%;
  opacity: 0;
}

.illust-leaf-02 {
  width: 9.2%;
  top: 32%;
  left: 13%;
  opacity: 0;
}

.illust-leaf-03 {
  width: 8.8%;
  top: 61.5%;
  left: 55%;
  opacity: 0;
}

/* GPU */
.menuA-yuge, .menuA-yuge-img,
.menuB-yuge, .menuB-yuge-img,
.menuC-yuge, .menuC-yuge-img,
.menuD-yuge, .menuD-yuge-img,
.banner-yuge, .banner-yuge-img {
  will-change: transform, opacity, filter;
}

/* 定番 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(8%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down {
  animation: up-down 6s 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 rotate-360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotate-360 {
  animation: rotate-360 30s 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 mv-yuge {
  0% {
    filter: blur(10px);
    transform: scaleX(1.4);
  }
  100% {
    filter: blur(0px);
    transform: scaleX(1);
  }
}
.mv-yuge-active {
  transform-origin: center;
  animation: mv-yuge 5s ease-in-out 2s;
}

@keyframes typo-rotateR {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: rotate(-10deg) translateY(-20%);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: rotate(0deg) translateY(0%);
  }
}
@keyframes typo-rotateL {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: rotate(10deg) translateY(-20%);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: rotate(0deg) translateY(0%);
  }
}
.mv-typo {
  opacity: 0;
}

.mv-typo-active:nth-child(5) {
  animation: typo-rotateR 3s ease-in-out forwards 3s;
}
.mv-typo-active:nth-child(6) {
  animation: typo-rotateL 3s ease-in-out forwards 3.2s;
}
.mv-typo-active:nth-child(7) {
  animation: typo-rotateR 3s ease-in-out forwards 3.4s;
}
.mv-typo-active:nth-child(8) {
  animation: typo-rotateL 3s ease-in-out forwards 3.6s;
}
.mv-typo-active:nth-child(9) {
  animation: typo-rotateR 3s ease-in-out forwards 3.4s;
}
.mv-typo-active:nth-child(10) {
  animation: typo-rotateL 3s ease-in-out forwards 3.6s;
}
.mv-typo-active:nth-child(11) {
  animation: typo-rotateR 3s ease-in-out forwards 3.8s;
}
.mv-typo-active:nth-child(12) {
  animation: typo-rotateL 3s ease-in-out forwards 4s;
}

.mv-chaba-01 {
  opacity: 0;
}

.mv-chaba-02 {
  opacity: 0;
}

.mv-chaba-03 {
  opacity: 0;
}

.mv-chaba-01-active {
  animation: typo-rotateR 1.8s ease-in-out forwards 4.6s;
}

.mv-chaba-02-active {
  animation: typo-rotateL 1.8s ease-in-out forwards 4.8s;
}

.mv-chaba-03-active {
  animation: typo-rotateR 1.8s ease-in-out forwards 5s;
}

/* 各タイポ
================================*/
.menuA-typo, .menuB-typo, .menuC-typo, .menuD-typo, .banner-typo {
  opacity: 0;
}

.menuA-typo-active:nth-child(1) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuA-typo-active:nth-child(2) {
  animation: typo-rotateL 2s ease-in-out forwards;
}
.menuA-typo-active:nth-child(3) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuA-typo-active:nth-child(4) {
  animation: typo-rotateL 2s ease-in-out forwards;
}

.menuB-typo-active:nth-child(1) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuB-typo-active:nth-child(2) {
  animation: typo-rotateL 2s ease-in-out forwards;
}
.menuB-typo-active:nth-child(3) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuB-typo-active:nth-child(4) {
  animation: typo-rotateL 2s ease-in-out forwards;
}

.menuC-typo-active:nth-child(1) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuC-typo-active:nth-child(2) {
  animation: typo-rotateL 2s ease-in-out forwards;
}
.menuC-typo-active:nth-child(3) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuC-typo-active:nth-child(4) {
  animation: typo-rotateL 2s ease-in-out forwards;
}

.menuD-typo-active:nth-child(1) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuD-typo-active:nth-child(2) {
  animation: typo-rotateL 2s ease-in-out forwards;
}
.menuD-typo-active:nth-child(3) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.menuD-typo-active:nth-child(4) {
  animation: typo-rotateL 2s ease-in-out forwards;
}

.banner-typo-active:nth-child(1) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.banner-typo-active:nth-child(2) {
  animation: typo-rotateL 2s ease-in-out forwards;
}
.banner-typo-active:nth-child(3) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.banner-typo-active:nth-child(4) {
  animation: typo-rotateL 2s ease-in-out forwards;
}
.banner-typo-active:nth-child(5) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.banner-typo-active:nth-child(6) {
  animation: typo-rotateL 2s ease-in-out forwards;
}
.banner-typo-active:nth-child(7) {
  animation: typo-rotateR 2s ease-in-out forwards;
}
.banner-typo-active:nth-child(8) {
  animation: typo-rotateL 2s ease-in-out forwards;
}

/* マスクアニメーション コンテンツ
================================*/
@keyframes mask-anime {
  0% {
    opacity: 0;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-mask-position: 0 100%;
    mask-position: 100% 100%;
  }
}
.contents-caption {
  opacity: 0;
}

.mask-active {
  animation: mask-anime 1.2s steps(35) forwards;
  -webkit-mask-image: url(/lp/2025_matchanokawori/images/sprite_tri.png);
  mask-image: url(/lp/2025_matchanokawori/images/sprite_tri.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3000%;
  mask-size: 100% 3000%;
}

.mask-p {
  opacity: 0;
}

.mask-p-active {
  animation: mask-anime 1.2s steps(35) forwards;
  -webkit-mask-image: url(/lp/2025_matchanokawori/images/sprite_mask_re.png);
  mask-image: url(/lp/2025_matchanokawori/images/sprite_mask_re.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.intro-ph {
  animation-duration: 2.5s;
}

/* イラストアニメーション
================================*/
@keyframes arm {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}
.illust-arm {
  animation: arm 3s ease-in-out infinite;
}

.illust-finger {
  animation: arm 3s ease-in-out infinite;
}

@keyframes spoon {
  0% {
    transform: rotate(0) translate(0);
  }
  50% {
    transform: rotate(-12deg) translate(0, 11%);
  }
  0% {
    transform: rotate(0) translate(0);
  }
}
.illust-spoon {
  animation: spoon 3s ease-in-out infinite;
}

@keyframes jelly-effect {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.08, 0.92);
  }
  50% {
    transform: scale(1);
  }
}
.illust-puffe {
  animation: jelly-effect 3s ease-in-out infinite 0.8s;
}

@keyframes illust-leaf {
  0% {
    transform: translateY(0);
    filter: blur(1px);
    opacity: 0;
  }
  30% {
    opacity: 1;
    filter: blur(0px);
  }
  70% {
    opacity: 1;
    filter: blur(0px);
  }
  90% {
    transform: translateY(275%) rotate(45deg) translateX(-50%);
    filter: blur(1px);
    opacity: 0;
  }
}
@keyframes illust-leaf-re {
  0% {
    transform: translateY(0);
    filter: blur(1px);
    opacity: 0;
  }
  30% {
    opacity: 1;
    filter: blur(0px);
  }
  70% {
    opacity: 1;
    filter: blur(0px);
  }
  90% {
    transform: translateY(275%) rotate(-45deg) translateX(50%);
    filter: blur(1px);
    opacity: 0;
  }
}
@keyframes illust-leaf-01 {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  90% {
    transform: translateY(180%) rotate(45deg) translateX(40%);
    opacity: 0;
  }
}
.illust-leaf-01 {
  animation: 15s illust-leaf-01 ease-out infinite;
}

.illust-leaf-02 {
  animation: 15s illust-leaf-re ease-out infinite 5s;
}

.illust-leaf-03 {
  animation: 15s illust-leaf ease-out infinite 10s;
}

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

/* MVセクション
===============================*/
.sec-mv {
  overflow-x: clip;
  height: 1035px;
  background: linear-gradient(0deg, rgb(69, 89, 42) 0%, rgb(81, 94, 42) 28.09%, rgb(83, 95, 42) 29.47%, rgb(113, 122, 41) 59.21%, rgb(124, 132, 41) 76.01%, rgb(128, 133, 40) 83.15%, rgb(141, 136, 38) 90.53%, rgb(161, 140, 33) 97.99%, rgb(168, 142, 32) 100%);
}
@media screen and (max-width: 1535px) {
  .sec-mv {
    height: calc(1036px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-mv {
    height: calc(1035 * 0.625 / 375 * 100vw);
  }
}

/* イントロセクション
===============================*/
.sec-intro {
  margin-top: -143px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-intro {
    margin-top: calc(-143px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro {
    margin-top: calc(-143 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-wrap {
  width: 100.58%;
  transform: translateX(-0.4%);
  height: 1111px;
  background-image: url(/lp/2025_matchanokawori/images/intro_bg.png);
  background-size: 100%;
  background-position: top;
  -webkit-mask-image: url(/lp/2025_matchanokawori/images/intro_mask.png);
          mask-image: url(/lp/2025_matchanokawori/images/intro_mask.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-wrap {
    height: calc(1111px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-wrap {
    height: calc(1111 * 0.625 / 375 * 100vw);
  }
}

/* メニューセクション
===============================*/
.sec-menu {
  background: linear-gradient(180deg, rgb(34, 50, 23) 0%, rgb(114, 129, 16) 71.53%, rgb(114, 130, 16) 83.03%, rgb(119, 137, 24) 84.19%, rgb(126, 148, 36) 86.76%, rgb(128, 152, 40) 89.33%, rgb(131, 154, 44) 90.56%, rgb(140, 158, 56) 91.77%, rgb(155, 166, 76) 92.99%, rgb(176, 177, 103) 98.19%, rgb(188, 184, 121) 100%);
  overflow-x: clip;
  margin-top: -194px;
}
@media screen and (max-width: 1535px) {
  .sec-menu {
    margin-top: calc(-194px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu {
    margin-top: calc(-194 * 0.625 / 375 * 100vw);
  }
}

.menuA {
  padding-top: 307px;
}
@media screen and (max-width: 1535px) {
  .menuA {
    padding-top: calc(307px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuA {
    padding-top: calc(307 * 0.625 / 375 * 100vw);
  }
}
.menuA .menuA-typo-box {
  height: 877px;
}
@media screen and (max-width: 1535px) {
  .menuA .menuA-typo-box {
    height: calc(877px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuA .menuA-typo-box {
    height: calc(877 * 0.625 / 375 * 100vw);
  }
}

.menuB {
  padding-top: 128px;
}
@media screen and (max-width: 1535px) {
  .menuB {
    padding-top: calc(128px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuB {
    padding-top: calc(128 * 0.625 / 375 * 100vw);
  }
}
.menuB .menuB-typo-box {
  height: 715px;
}
@media screen and (max-width: 1535px) {
  .menuB .menuB-typo-box {
    height: calc(715px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuB .menuB-typo-box {
    height: calc(715 * 0.625 / 375 * 100vw);
  }
}

.menuC {
  padding-top: 134px;
  z-index: 1;
}
@media screen and (max-width: 1535px) {
  .menuC {
    padding-top: calc(134px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuC {
    padding-top: calc(134 * 0.625 / 375 * 100vw);
  }
}
.menuC .menuC-typo-box {
  height: 934px;
}
@media screen and (max-width: 1535px) {
  .menuC .menuC-typo-box {
    height: calc(934px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuC .menuC-typo-box {
    height: calc(934 * 0.625 / 375 * 100vw);
  }
}

.menuD {
  padding-top: 105px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1535px) {
  .menuD {
    padding-top: calc(105px * 0.75);
    padding-bottom: calc(100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuD {
    padding-top: calc(105 * 0.625 / 375 * 100vw);
    padding-bottom: calc(100 * 0.625 / 375 * 100vw);
  }
}
.menuD .menuD-typo-box {
  height: 877px;
}
@media screen and (max-width: 1535px) {
  .menuD .menuD-typo-box {
    height: calc(877px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuD .menuD-typo-box {
    height: calc(877 * 0.625 / 375 * 100vw);
  }
}

/* メニューセクション
===============================*/
/* バナーセクション
===============================*/
.sec-banner {
  padding-top: 275px;
  padding-bottom: 142px;
  background: linear-gradient(0deg, rgb(232, 198, 111) -20%, rgb(217, 187, 101) 4.21%, rgb(174, 157, 72) 10.07%, rgb(158, 146, 61) 13.13%, rgb(142, 133, 55) 35.13%, rgb(113, 111, 45) 54.04%, rgb(102, 102, 41) 64.86%, rgb(81, 94, 42) 86.39%, rgb(69, 89, 42) 100%);
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-banner {
    padding-top: calc(275px * 0.75);
    padding-bottom: calc(142px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-banner {
    padding-top: calc(275 * 0.625 / 375 * 100vw);
    padding-bottom: calc(142 * 0.625 / 375 * 100vw);
  }
}
.sec-banner .banner-typo-box {
  height: 549px;
}
@media screen and (max-width: 1535px) {
  .sec-banner .banner-typo-box {
    height: calc(549px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-banner .banner-typo-box {
    height: calc(549 * 0.625 / 375 * 100vw);
  }
}
.sec-banner .banner-illust-box {
  width: 62.4%;
}
.sec-banner .banner-anker-box {
  width: 100%;
  height: 277px;
  margin-top: 43px;
}
@media screen and (max-width: 1535px) {
  .sec-banner .banner-anker-box {
    height: calc(277px * 0.75);
    margin-top: calc(43px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-banner .banner-anker-box {
    height: calc(277 * 0.625 / 375 * 100vw);
    margin-top: calc(43 * 0.625 / 375 * 100vw);
  }
}/*# sourceMappingURL=style.css.map */