@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: 1000;
  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: 2000;
}
@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: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  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;
  transform: translateY(0.5vw);
}
@media screen and (max-width: 1535px) {
  .nav-open .header-curve {
    transform: translateY(1.1vw);
  }
}
@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: 100;
}

.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_gohansusumu/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_gohansusumu/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 {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-image: url(/lp/2025_gohansusumu/images/bg_left.jpg);
  background-image: url(/lp/2025_gohansusumu/images/bg_right.jpg), linear-gradient(0deg, rgb(180, 30, 0) 0%, rgb(169, 29, 1) 13.01%, rgb(140, 25, 3) 35.86%, rgb(92, 18, 6) 65.84%, rgb(30, 10, 10) 100%);
  background-size: 660px;
  z-index: 80;
}
@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-logo {
  width: 65%;
  top: 24%;
  left: 21%;
}
.left .left-dish {
  width: 100%;
  top: 52%;
  left: 0;
}

.right {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-image: url(/lp/2025_gohansusumu/images/bg_right.jpg), linear-gradient(0deg, rgb(180, 30, 0) 0%, rgb(169, 29, 1) 13.01%, rgb(140, 25, 3) 35.86%, rgb(92, 18, 6) 65.84%, rgb(30, 10, 10) 100%);
  background-size: 665px;
  background-position: 1% 0%;
  z-index: 80;
}
@media screen and (max-width: 1535px) {
  .right {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .right {
    display: none;
  }
}
.right .right-container {
  display: flex;
  justify-content: space-between;
  top: 27%;
  left: 29.5%;
  width: 43%;
}
.right .right-link {
  width: 100%;
}
.right .right-link-img {
  transition: 0.3s;
  flex-shrink: 0;
}
.right .right-link-img-01 {
  opacity: 0;
  transition: 0.3s;
  flex-shrink: 0;
}
.right .right-link-img-01:hover {
  opacity: 1;
}
.right .right-link-img-02 {
  opacity: 0;
  transition: 0.3s;
  flex-shrink: 0;
}
.right .right-link-img-02:hover {
  opacity: 1;
}
.right .right-link-img-active {
  opacity: 1;
}
.right .right-link-img-03 {
  opacity: 0;
  transition: 0.3s;
  flex-shrink: 0;
}
.right .right-link-img-03:hover {
  opacity: 1;
}

.right-link-abs-01 {
  width: 50%;
  top: -23%;
  left: 18%;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: bottom;
  transition: 0.3s;
}

.right-link-abs-02 {
  width: 50%;
  top: -23%;
  left: 10%;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: bottom;
  transition: 0.3s;
}

.right-link-abs-03 {
  width: 50%;
  top: -23%;
  left: 8%;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: bottom;
  transition: 0.3s;
}

.right-link-abs-active {
  transform: scaleY(1);
  opacity: 1;
}

/* SP FIRST
===============================*/
.sp-fv {
  display: none;
  position: fixed;
  overflow-x: clip;
  width: 100%;
  height: 100vh;
  background: linear-gradient(0deg, rgb(180, 30, 0) 0%, rgb(169, 29, 1) 13.01%, rgb(140, 25, 3) 35.86%, rgb(92, 18, 6) 65.84%, rgb(30, 10, 10) 100%);
  z-index: 2000;
}
@media screen and (max-width: 800px) {
  .sp-fv {
    display: block;
  }
}
.sp-fv .fv-caption {
  width: 100%;
  top: 17%;
  left: 0;
}
.sp-fv .fv-caption-img {
  opacity: 1;
}
.sp-fv .fv-caption-img:nth-child(2) {
  transition-delay: 0.1s;
}
.sp-fv .fv-caption-img:nth-child(3) {
  transition-delay: 0.2s;
}
.sp-fv .fv-caption-img:nth-child(4) {
  transition-delay: 0.3s;
}
.sp-fv .fv-caption-img-active {
  opacity: 1;
  filter: blur(0px);
}
.sp-fv .fv-steam {
  width: 250%;
  left: -100%;
  opacity: 0;
  will-change: filter;
}
.sp-fv .fv-steam-active {
  animation: fv-steam 6s ease-in-out forwards;
}
.sp-fv .fv-opacity-active {
  animation: fv-opacity-01 4s ease-in-out forwards;
}
@keyframes fv-opacity-01 {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.1);
  }
}

.sp-fv-opacity {
  opacity: 0;
  transition: 5s ease-in-out;
}

/* PC FIRST
===============================*/
.pc-fv {
  position: fixed;
  overflow-x: clip;
  z-index: 2000;
  width: 100%;
  height: 100vh;
  background-image: url(/lp/2025_gohansusumu/images/pc_bg.jpg), linear-gradient(0deg, rgb(180, 30, 0) 0%, rgb(169, 29, 1) 13.01%, rgb(140, 25, 3) 35.86%, rgb(92, 18, 6) 65.84%, rgb(30, 10, 10) 100%);
  background-size: 100%;
}
@media screen and (max-width: 800px) {
  .pc-fv {
    display: none;
  }
}

.pc-fv-must {
  position: fixed;
  overflow-x: clip;
  z-index: 2000;
  width: 100%;
  height: 100vh;
  background-image: url(/lp/2025_gohansusumu/images/pc_bg.jpg), linear-gradient(0deg, rgb(180, 30, 0) 0%, rgb(169, 29, 1) 13.01%, rgb(140, 25, 3) 35.86%, rgb(92, 18, 6) 65.84%, rgb(30, 10, 10) 100%);
  background-size: 100%;
  animation: to-opacity 3s forwards 3s;
}
@media screen and (max-width: 800px) {
  .pc-fv-must {
    display: none;
  }
}

@keyframes to-opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fv-caption-img {
  opacity: 1;
}
.fv-caption-img:nth-child(2) {
  transition-delay: 0.05s;
}
.fv-caption-img:nth-child(3) {
  transition-delay: 0.1s;
}
.fv-caption-img:nth-child(4) {
  transition-delay: 0.15s;
}

.fv-caption-img-active {
  opacity: 1;
  filter: blur(0px);
}

.fv-sw {
  opacity: 0;
  filter: blur(10px);
  transition: 2s;
  transition-delay: 0.6s;
}

.fv-sw-active {
  opacity: 1;
  filter: blur(0px);
}

.fv-caption {
  width: 100%;
  top: 18%;
}

.fv-on {
  width: 11.77%;
  top: 64.5%;
  left: 40.2%;
}

.fv-off {
  width: 6.3%;
  top: 74.9%;
  left: 53.2%;
}

.fv-opacity-active {
  animation: fv-opacity-01 4s ease-in-out forwards;
}

@keyframes fv-opacity-01 {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.1);
  }
}
.fv-steam {
  opacity: 0;
  will-change: filter;
}

.fv-steam-active {
  animation: fv-steam 4s ease-in-out forwards;
}

.fv-late-anime {
  opacity: 0;
  transform: translateY(5%);
  transition: 2s;
  transition-delay: 3s;
}
@media screen and (max-width: 800px) {
  .fv-late-anime {
    display: none;
  }
}

.fv-late-anime-active {
  opacity: 1;
  transform: translateY(0);
}

.fv-dish-left, .fv-dish-right {
  transition-delay: 2.5s;
}

@keyframes fv-steam {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.5) translateY(-10%);
  }
}
.footer {
  z-index: 300;
}

.select-cap {
  font-size: 20px;
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  color: #8f001e;
}
@media screen and (max-width: 1535px) {
  .select-cap {
    font-size: 14.5px;
  }
}
@media screen and (max-width: 600px) {
  .select-cap {
    font-size: 12px;
  }
}

.selbox {
  font-size: 17px;
  font-weight: 900;
  color: #FFFFFF;
}
@media screen and (max-width: 1535px) {
  .selbox {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .selbox {
    font-size: 11px;
  }
}

.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-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 70px;
  margin: 0 auto;
  width: 80%;
  background-color: #f8c284;
  padding: 5% 5.5% 5.2% 5.8%;
}
@media screen and (max-width: 1535px) {
  .select-card {
    padding-top: 5.2%;
    padding-bottom: 5%;
  }
}

.selbox {
  background-color: #8f001e;
  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_gohansusumu/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: 9px;
  }
}
@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: #f8c284;
  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: 26px;
  font-family: fredoka one;
  font-weight: 400;
}
@media screen and (max-width: 1535px) {
  .yen {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .yen {
    font-size: 18px;
  }
}

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

.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: 64%;
  margin: 0 auto;
  padding-top: 20px;
}

#pr-con-01 {
  padding-top: 30px;
}

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

/* シズルアニメーション
=====================================*/
.juwa {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(7.5%) scale(0.95);
  will-change: filter;
}

.juwa-active {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0%);
  transition: 0.8s ease-in-out;
  will-change: filter;
}

.juwaCopy {
  opacity: 0;
  filter: blur(40px);
  transform: translateY(20%) scale(0.95);
  will-change: filter;
}

.juwaCopy-active {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0%);
  transition: 0.8s ease-out;
  will-change: filter;
}

.yuge {
  opacity: 0;
  filter: blur(40px);
  transform: translateY(10%) scale(0.95);
}

.yuge-active {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0%);
  transition: 1.6s ease-out;
}

.hashiage-L {
  transform: rotate(20deg) translate(-12%, 5%);
  transform-origin: left 60%;
  opacity: 0;
}

.hashiage-L-active {
  transform: rotate(0) translate(0);
  opacity: 1;
  transition: 0.6s ease-in-out;
}

.hashiage-R {
  transform: rotate(-20deg) translate(12%, 5%);
  transform-origin: right 60%;
  opacity: 0;
}

.hashiage-R-active {
  transform: rotate(0) translate(0);
  opacity: 1;
  transition: 0.6s ease-in-out;
}

/* 箸上げアニメーション①
=====================================*/
.hashiage-anime {
  transform: rotate(20deg) translate(-12%, 5%);
  transform-origin: left 60%;
  opacity: 0;
}

.hashiage-anime-reverse {
  transform: rotate(-20deg) translate(12%, 5%);
  transform-origin: right 60%;
  opacity: 0;
}

.hashiage-anime-active {
  transform: rotate(0) translate(0);
  opacity: 1;
  transition: 0.6s ease-in-out;
}

.hashiage-anime-reverse-active {
  transform: rotate(0) translate(0);
  opacity: 1;
  transition: 0.6s ease-in-out;
}

/* 箸上げアニメーション②
=====================================*/
.hashisage-anime {
  transform: rotate(0) translate(0);
  transform-origin: left 60%;
  opacity: 1;
}

.hashisage-anime-reverse {
  transform: rotate(0) translate(0);
  transform-origin: right 60%;
  opacity: 1;
}

.hashisage-anime-active {
  transform: rotate(-15deg) translate(-20%, -15%);
  opacity: 0;
  transition: 0.6s ease-in-out 1.4s;
}

.hashisage-anime-reverse-active {
  transform: rotate(15deg) translate(20%, -15%);
  opacity: 0;
  transition: 0.6s ease-in-out 1.4s;
}

/* 箸上げ後 タイトル出現
=====================================*/
.hashiageA-juwa {
  opacity: 0;
  filter: blur(40px);
  transform: translateY(10%) scale(0.8);
}

.hashiageB-juwa {
  opacity: 0;
  filter: blur(40px);
  transform: translateY(10%) scale(0.8);
}

.hashiage-juwa-active {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0%);
  transition: 1s ease-in-out 1s;
}

.cizle-copyAnime {
  opacity: 0;
  transform: scale(0.5);
  filter: blur(20px);
}

.cizleA-box-06-copy-active .cizle-copyAnime {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
  transition: 0.5s ease-out 1.6s;
}
.cizleA-box-06-copy-active .copyAnime-04 {
  transition-delay: 1.8s;
}
.cizleA-box-06-copy-active .copyAnime-07 {
  transition-delay: 2.05s;
}
.cizleA-box-06-copy-active .copyAnime-10 {
  transition-delay: 2.3s;
}

.cizleB-box-06-copy-active .cizle-copyAnime {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
  transition: 0.5s ease-out 1.4s;
}
.cizleB-box-06-copy-active .copyAnime-04 {
  transition-delay: 1.5s;
}
.cizleB-box-06-copy-active .copyAnime-07 {
  transition-delay: 1.8s;
}
.cizleB-box-06-copy-active .copyAnime-10 {
  transition-delay: 2.1s;
}

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

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

/* 紙芝居セクション
=====================================*/
.kamishibai-title-img {
  will-change: filter;
  opacity: 0;
  transition: 0.75s ease-in-out;
}
.kamishibai-title-img:nth-child(1) {
  transform: scale(0.9);
}
.kamishibai-title-img:nth-child(2) {
  filter: blur(5px);
  transition-delay: 0.25s;
}
.kamishibai-title-img:nth-child(3) {
  filter: blur(5px);
  transition-delay: 0.35s;
}
.kamishibai-title-img:nth-child(4) {
  filter: blur(5px);
  transition-delay: 0.45s;
}
.kamishibai-title-img:nth-child(5) {
  filter: blur(5px);
  transition-delay: 0.55s;
}
.kamishibai-title-img:nth-child(6) {
  filter: blur(5px);
  transition-delay: 0.65s;
}
.kamishibai-title-img:nth-child(7) {
  filter: blur(5px);
  transition-delay: 0.75s;
}
.kamishibai-title-img:nth-child(8) {
  filter: blur(5px);
  transition-delay: 0.85s;
}
.kamishibai-title-img:nth-child(9) {
  filter: blur(5px);
  transition-delay: 0.95s;
}

.kamishibai-title-img-active {
  opacity: 1;
}
.kamishibai-title-img-active:nth-child(1) {
  transform: scale(1);
}
.kamishibai-title-img-active:nth-child(2) {
  filter: blur(0);
}
.kamishibai-title-img-active:nth-child(3) {
  filter: blur(0);
}
.kamishibai-title-img-active:nth-child(4) {
  filter: blur(0);
}
.kamishibai-title-img-active:nth-child(5) {
  filter: blur(0);
}
.kamishibai-title-img-active:nth-child(6) {
  filter: blur(0);
}
.kamishibai-title-img-active:nth-child(7) {
  filter: blur(0);
}
.kamishibai-title-img-active:nth-child(8) {
  filter: blur(0);
}
.kamishibai-title-img-active:nth-child(9) {
  filter: blur(0);
}

@keyframes kamishibai-h3 {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.kamishibaiA-h3-img, .kamishibaiB-h3-img, .kamishibaiC-h3-img {
  opacity: 0;
  filter: blur(20px);
}

.kamishibaiA-h3-img-active {
  animation: kamishibai-h3 0.75s ease-in-out forwards;
}
.kamishibaiA-h3-img-active:nth-child(2) {
  animation-delay: 0.1s;
}
.kamishibaiA-h3-img-active:nth-child(3) {
  animation-delay: 0.2s;
}
.kamishibaiA-h3-img-active:nth-child(4) {
  animation-delay: 0.3s;
}

.kamishibaiA-p, .kamishibaiB-p, .kamishibaiC-p {
  opacity: 0;
  transform: translateY(3%);
  transition: 0.75s;
  transition-delay: 1s;
}

.kamishibaiA-ph, .kamishibaiB-ph, .kamishibaiC-ph {
  opacity: 0;
  transform: translateY(3%);
  transition: 0.75s;
  transition-delay: 0.8s;
}

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

/* メニュー・価格帯
=====================================*/
.menu-trans {
  transform: translateY(5%);
  filter: blur(10px);
  opacity: 0;
  transition: 0.75s ease-in-out;
}

.menu-trans-active {
  transform: translateY(0%);
  filter: blur(0px);
  opacity: 1;
}

/* PC版　左右
=====================================*/
@keyframes logo-yuge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
.left-logo-img:nth-child(1) {
  animation: logo-yuge 5s ease-in-out alternate infinite;
}
.left-logo-img:nth-child(2) {
  animation: logo-yuge 5s ease-in-out alternate infinite 0.75s;
}
.left-logo-img:nth-child(3) {
  animation: logo-yuge 5s ease-in-out alternate infinite 0.375s;
}

/* PC版 左右 箸上げアニメーション 2026年追加
=============================================*/
.left-cizle {
  width: 82%;
  top: 63%;
  left: 0;
}
.left-cizle .left-hashiage {
  opacity: 0;
  transform: translateX(-10%) rotate(15deg);
  transform-origin: top left;
  transition: 0.5s ease-in-out;
}
.left-cizle .left-hashiage-active {
  opacity: 1;
  transform: translateX(0%) rotate(0deg);
}

.right-cizle {
  width: 85%;
  top: 60%;
  right: 0;
}
.right-cizle .right-hashiage {
  opacity: 0;
  transform: translateX(10%) rotate(-15deg);
  transform-origin: top right;
  transition: 0.5s ease-in-out;
}
.right-cizle .right-hashiage-active {
  opacity: 1;
  transform: translateX(0%) rotate(0deg);
}
.right-cizle .right-hashiage-01 {
  top: 1.8vw !important;
}

/* PC版 左右 箸上げアニメーション 2026年追加
=============================================*/
.fixed-yuge-img {
  opacity: 0;
}

.fixed-yuge-img-active {
  animation: fixed-yuge 3.3s ease-in-out forwards;
}

@keyframes fixed-yuge {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(3%) scale(0.9);
  }
  30% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0%);
  }
  67% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0%);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(0%) scale(1.05);
  }
}
.fixed-copyA-img, .fixed-copyB-img {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(7.5%) scale(0.95);
  transition: 0.3s ease-in-out;
  will-change: filter;
}

.fixed-copy-active {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0%);
  will-change: filter;
  transition: 0.5s ease-in-out;
}

.fixed-copyA-return {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(7.5%) scale(0.95);
  transition: 0.3s ease-in-out 1.2s;
  will-change: filter;
}

.fixed-copyB-return {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(7.5%) scale(0.95);
  transition: 0.3s ease-in-out 2.5s;
  will-change: filter;
}

.fixed-hashiage-appearA,
.fixed-hashiage-appearC,
.fixed-hashiage-appearE {
  transform: rotate(12deg) translate(-12%, 20%);
  transform-origin: left 60%;
  opacity: 0;
}

.fixed-hashiage-appearA-active,
.fixed-hashiage-appearC-active,
.fixed-hashiage-appearE-active {
  transform: rotate(0) translate(0);
  opacity: 1;
  transition: 0.4s ease-in-out;
}

.fixed-hashiage-disappearA,
.fixed-hashiage-disappearC,
.fixed-hashiage-disappearE {
  transform: rotate(0deg) translate(0);
  transform-origin: left 60%;
  opacity: 1;
}

.fixed-hashiage-disappearA-active,
.fixed-hashiage-disappearC-active,
.fixed-hashiage-disappearE-active {
  transform: rotate(-6deg) translate(-12%, -15%);
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.fixed-hashiage-appearB,
.fixed-hashiage-appearD,
.fixed-hashiage-appearF {
  transform: rotate(-12deg) translate(12%, 20%);
  transform-origin: right 60%;
  opacity: 0;
}

.fixed-hashiage-appearB-active,
.fixed-hashiage-appearD-active,
.fixed-hashiage-appearF-active {
  transform: rotate(0) translate(0);
  opacity: 1;
  transition: 0.4s ease-in-out;
}

.fixed-hashiage-disappearB,
.fixed-hashiage-disappearD,
.fixed-hashiage-disappearF {
  transform: rotate(0deg) translate(0);
  transform-origin: right 60%;
  opacity: 1;
}

.fixed-hashiage-disappearB-active,
.fixed-hashiage-disappearD-active,
.fixed-hashiage-disappearF-active {
  transform: rotate(6deg) translate(12%, -15%);
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.fixed-hashiage-appearA-active {
  transition-delay: 0.3s;
}

.fixed-hashiage-disappearA-active {
  transition-delay: 1.2s;
}

.fixed-hashiage-appearB-active {
  transition-delay: 1.6s;
}

.fixed-hashiage-disappearB-active {
  transition-delay: 2.45s;
}

.fixed-hashiage-appearC-active {
  transition-delay: 2.8s;
}

.fixed-hashiage-disappearC-active {
  transition-delay: 3.7s;
}

.fixed-hashiage-appearD-active {
  transition-delay: 2.9s;
}

.fixed-hashiage-disappearD-active {
  transition-delay: 3.7s;
}

.fixed-hashiage-appearE-active {
  transition-delay: 3s;
}

.fixed-hashiage-disappearE-active {
  transition-delay: 3.7s;
}

.fixed-hashiage-appearF-active {
  transition-delay: 3.1s;
}

.fixed-hashiage-disappearF-active {
  transition-delay: 3.7s;
}

.mv-logo {
  filter: blur(30px);
  transform: scale(0.9);
  will-change: filter;
}

.mv-logo-active {
  filter: blur(0);
  transform: scale(1);
  transition: 1.5s ease-out 3.8s;
}

.mv-name-01, .mv-name-02 {
  filter: blur(25px);
  transform: scale(0.8);
  will-change: filter;
}

.mv-name-active {
  filter: blur(0);
  transform: scale(1);
  transition: 1.2s ease-out 4.5s;
}

.mv-dish-01 {
  transform: translateX(-15%);
  opacity: 0;
}

.mv-dish-02 {
  transform: translateX(15%);
  opacity: 0;
}

.mv-dish-active {
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease-out 4s;
}

.mv-steam {
  filter: blur(30px);
  transform: scale(0.9) translateY(3%);
  will-change: filter;
}

.mv-steam-active {
  filter: blur(0px);
  transform: scale(1) translateY(0);
  will-change: filter;
  transition: 1s ease-in-out 4.5s;
}

/* 全体 - 背景色
==============================*/
.gradient-wrap {
  background: linear-gradient(180deg, rgb(210, 68, 43) 12.69%, rgb(214, 70, 46) 16.86%, rgb(186, 62, 42) 18.59%, rgb(141, 50, 36) 27.44%, rgb(87, 35, 29) 42.44%, rgb(225, 75, 48) 55.49%, rgb(220, 74, 47) 57.47%, rgb(205, 69, 45) 61.09%, rgb(180, 62, 42) 67.04%, rgb(146, 53, 37) 75.23%, rgb(103, 40, 31) 79.55%, rgb(87, 36, 29) 81.94%, rgb(103, 41, 31) 85.85%, rgb(146, 55, 37) 89.76%, rgb(180, 66, 42) 94.48%, rgb(204, 74, 45) 97.89%, rgb(219, 78, 47) 100%);
}

/* メインセクション
==============================*/
.mv-logo {
  width: 100%;
  top: 7.2%;
  left: 0%;
}

.mv-name-01 {
  width: 20.96%;
  top: 44.3%;
  right: 1.5%;
}

.mv-name-02 {
  width: 26.2%;
  top: 72.2%;
  left: 0%;
}

.mv-steam-01 {
  width: 41.6%;
  top: 26%;
  left: 48%;
}

.mv-steam-02 {
  width: 41.6%;
  top: 61.3%;
  left: 5%;
}

.mv-dish-01 {
  top: 40.3%;
}

.mv-dish-02 {
  top: 67.5%;
}

/* メニューA アイテム
==============================*/
.menuA-yuge {
  width: 100%;
  top: -13%;
  left: 0;
}

/* メニューB アイテム
==============================*/
.menuB-yuge {
  width: 100%;
  top: -30%;
  left: 0;
}

/* メニューC アイテム
==============================*/
.menuC-yuge {
  width: 100%;
  top: -12%;
  left: 0;
}

/* メニューD アイテム
==============================*/
.menuD-yuge {
  width: 100%;
  top: -25%;
  left: 0;
}

/* Margin Calc Set
===============================*/
/* LP Original Style
===============================*/
img {
  width: 100%;
}

.abs {
  position: absolute;
}

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

.rel {
  position: relative;
}

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

.opacity {
  opacity: 0;
}

.zeroA {
  margin: 0 auto;
}

.block {
  display: block;
}

.overflow {
  overflow-x: clip;
}

/* 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-10 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.delay-12 {
  transition-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-125 {
  transition-delay: 1.25s;
  animation-delay: 1.25s;
}

.delay-13 {
  transition-delay: 1.3s;
  animation-delay: 1.3s;
}

.delay-135 {
  transition-delay: 1.35s;
  animation-delay: 1.35s;
}

.delay-14 {
  transition-delay: 1.4s;
  animation-delay: 1.4s;
}

.delay-145 {
  transition-delay: 1.45s;
  animation-delay: 1.45s;
}

.delay-15 {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-155 {
  transition-delay: 1.55s;
  animation-delay: 1.55s;
}

.delay-16 {
  transition-delay: 1.6s;
  animation-delay: 1.6s;
}

/* メインビジュアル
===============================*/
.sec-mv {
  overflow-x: clip;
}
.sec-mv .main-bg {
  width: 100.2%;
  transform: translateX(-1px);
}

/* シズルセクション
===============================*/
.sec-cizleA .cizleA-box-01 {
  height: 962px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleA .cizleA-box-01 {
    height: calc(962px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleA .cizleA-box-01 {
    height: calc(962 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleA .cizleA-box-01 .cizleA-box-01-copy {
  width: 56%;
  top: 0;
  left: 21.8%;
}
.sec-cizleA .cizleA-box-01 .cizleA-box-01-ph {
  width: 100%;
  top: 48.5%;
}
.sec-cizleA .cizleA-box-01 .cizleA-box-01-yuge {
  width: 100%;
  top: -7%;
}
.sec-cizleA .cizleA-box-02 {
  height: 787px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleA .cizleA-box-02 {
    height: calc(787px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleA .cizleA-box-02 {
    height: calc(787 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleA .cizleA-box-02 .cizleA-box-02-copy {
  width: 36%;
  top: 0;
  left: 31.2%;
}
.sec-cizleA .cizleA-box-02 .cizleA-box-02-ph {
  width: 100%;
  top: 37%;
}
.sec-cizleA .cizleA-box-02 .cizleA-box-02-yuge {
  width: 100%;
  top: -23%;
}
.sec-cizleA .cizleA-box-03 {
  height: 925px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleA .cizleA-box-03 {
    height: calc(925px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleA .cizleA-box-03 {
    height: calc(925 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleA .cizleA-box-03 .cizleA-box-03-copy {
  width: 25.6%;
  top: 0;
  left: 38.2%;
}
.sec-cizleA .cizleA-box-03 .cizleA-box-03-ph {
  width: 100%;
  top: 26.5%;
}
.sec-cizleA .cizleA-box-03 .cizleA-box-03-yuge {
  width: 100%;
  top: -18%;
}
.sec-cizleA .cizleA-box-04 {
  height: 942px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleA .cizleA-box-04 {
    height: calc(942px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleA .cizleA-box-04 {
    height: calc(942 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleA .cizleA-box-04 .cizleA-box-04-copy {
  width: 25.6%;
  top: 0;
  left: 38.2%;
}
.sec-cizleA .cizleA-box-04 .cizleA-box-04-ph {
  width: 100%;
  top: 30.5%;
}
.sec-cizleA .cizleA-box-04 .cizleA-box-04-yuge {
  width: 100%;
  top: -16%;
}
.sec-cizleA .cizleA-box-05 {
  height: 942px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleA .cizleA-box-05 {
    height: calc(942px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleA .cizleA-box-05 {
    height: calc(942 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleA .cizleA-box-05 .cizleA-box-05-copy {
  width: 36%;
  top: 3%;
  left: 32.2%;
}
.sec-cizleA .cizleA-box-05 .cizleA-box-05-ph {
  width: 100%;
  top: 21.5%;
}
.sec-cizleA .cizleA-box-05 .cizleA-box-05-yuge {
  width: 100%;
  top: -15%;
}
.sec-cizleA .cizleA-box-06 {
  height: 828px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleA .cizleA-box-06 {
    height: calc(828px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleA .cizleA-box-06 {
    height: calc(828 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleA .cizleA-box-06 .cizleA-box-06-copy {
  width: 100%;
  top: 0;
  left: 0%;
}
.sec-cizleA .cizleA-box-06 .cizleA-box-06-ph {
  width: 100%;
  top: 43%;
}
.sec-cizleA .cizleA-box-06 .cizleA-box-06-yuge {
  width: 100%;
  top: -11%;
}
.sec-cizleA .cizleA-box-06 .cizleA-hashiage-01 {
  width: 100%;
  top: -8%;
}
.sec-cizleA .cizleA-box-06 .cizleA-hashiage-02 {
  width: 100%;
  top: 12%;
}
.sec-cizleA .cizleA-box-06 .cizleA-hashiage-03 {
  width: 100%;
  top: 34%;
}
.sec-cizleA .cizleA-box-06 .cizleA-hashiage-04 {
  width: 100%;
  top: 53%;
}

.sec-cizleB .cizleB-box-01 {
  height: 1030px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleB .cizleB-box-01 {
    height: calc(1030px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleB .cizleB-box-01 {
    height: calc(1030 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleB .cizleB-box-01 .cizleB-box-01-copy {
  width: 56%;
  top: 0;
  left: 21.8%;
}
.sec-cizleB .cizleB-box-01 .cizleB-box-01-ph {
  width: 100%;
  top: 45%;
}
.sec-cizleB .cizleB-box-01 .cizleB-box-01-yuge {
  width: 100%;
  top: -10%;
}
.sec-cizleB .cizleB-box-02 {
  height: 765px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleB .cizleB-box-02 {
    height: calc(765px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleB .cizleB-box-02 {
    height: calc(765 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleB .cizleB-box-02 .cizleB-box-02-copy {
  width: 50.4%;
  top: 0;
  left: 25.8%;
}
.sec-cizleB .cizleB-box-02 .cizleB-box-02-ph {
  width: 100%;
  top: 39.4%;
}
.sec-cizleB .cizleB-box-02 .cizleB-box-02-yuge {
  width: 100%;
  top: -26%;
}
.sec-cizleB .cizleB-box-03 {
  height: 894px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleB .cizleB-box-03 {
    height: calc(894px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleB .cizleB-box-03 {
    height: calc(894 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleB .cizleB-box-03 .cizleB-box-03-copy {
  width: 28%;
  top: 0;
  left: 36.8%;
}
.sec-cizleB .cizleB-box-03 .cizleB-box-03-ph {
  width: 100%;
  top: 29.4%;
}
.sec-cizleB .cizleB-box-03 .cizleB-box-03-yuge {
  width: 100%;
  top: -15%;
}
.sec-cizleB .cizleB-box-04 {
  height: 1000px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleB .cizleB-box-04 {
    height: calc(1000px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleB .cizleB-box-04 {
    height: calc(1000 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleB .cizleB-box-04 .cizleB-box-04-copy {
  width: 69.03%;
  top: 0;
  left: 15.8%;
}
.sec-cizleB .cizleB-box-04 .cizleB-box-04-ph {
  width: 100%;
  top: 25.4%;
}
.sec-cizleB .cizleB-box-04 .cizleB-box-04-yuge {
  width: 100%;
  top: -12%;
}
.sec-cizleB .cizleB-box-05 {
  height: 858px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleB .cizleB-box-05 {
    height: calc(858px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleB .cizleB-box-05 {
    height: calc(858 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleB .cizleB-box-05 .cizleB-box-05-copy {
  width: 35.7%;
  top: 0;
  left: 34.8%;
}
.sec-cizleB .cizleB-box-05 .cizleB-box-05-ph {
  width: 100%;
  top: 24.4%;
}
.sec-cizleB .cizleB-box-05 .cizleB-box-05-yuge {
  width: 100%;
  top: -23%;
}
.sec-cizleB .cizleB-box-06 {
  height: 800px;
}
@media screen and (max-width: 1535px) {
  .sec-cizleB .cizleB-box-06 {
    height: calc(800px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizleB .cizleB-box-06 {
    height: calc(800 * 0.625 / 375 * 100vw);
  }
}
.sec-cizleB .cizleB-box-06 .cizleB-box-06-copy {
  width: 100%;
  top: 0;
  left: 0%;
}
.sec-cizleB .cizleB-box-06 .cizleB-box-06-ph {
  width: 100%;
  top: 44%;
}
.sec-cizleB .cizleB-box-06 .cizleB-box-06-yuge {
  width: 100%;
  top: -5%;
}
.sec-cizleB .cizleB-box-06 .cizleB-hashiage-01 {
  width: 100%;
  top: -13%;
}
.sec-cizleB .cizleB-box-06 .cizleB-hashiage-02 {
  width: 100%;
  top: 7%;
}
.sec-cizleB .cizleB-box-06 .cizleB-hashiage-03 {
  width: 100%;
  top: 29%;
}
.sec-cizleB .cizleB-box-06 .cizleB-hashiage-04 {
  width: 100%;
  top: 48%;
}

/* 予約ボタン
===============================*/
.menu-reserve {
  display: none;
  width: 56.7%;
  margin: 70px auto 0 auto;
  z-index: 50;
}
@media screen and (max-width: 1535px) {
  .menu-reserve {
    margin-top: calc(70px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menu-reserve {
    display: block;
  }
}

/* メニューセクション
===============================*/
.sec-menuA .menuA-ph {
  margin-top: -26px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA .menuA-ph {
    margin-top: calc(-28px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA .menuA-ph {
    margin-top: calc(-28 * 0.625 / 375 * 100vw);
  }
}
.sec-menuA .menuA-name {
  margin-top: -20px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA .menuA-name {
    margin-top: calc(-20px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA .menuA-name {
    margin-top: calc(-20 * 0.625 / 375 * 100vw);
  }
}

.sec-menuB {
  padding-bottom: 150px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB {
    padding-bottom: calc(150px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB {
    padding-bottom: calc(150 * 0.625 / 375 * 100vw);
  }
}
.sec-menuB .menuB-name {
  margin-top: -26px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-name {
    margin-top: calc(-26px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-name {
    margin-top: calc(-26 * 0.625 / 375 * 100vw);
  }
}

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

.sec-menuD .menuD-name {
  margin-top: -12px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-name {
    margin-top: calc(-12px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-name {
    margin-top: calc(-12 * 0.625 / 375 * 100vw);
  }
}

/* メニューD
==============================*/
.sec-menuD {
  position: relative;
  overflow-x: clip;
  background-color: #ae3f28;
  z-index: 10;
}

.stickyC {
  position: relative;
  height: 10000px;
  z-index: 20;
}
@media screen and (max-width: 1535px) {
  .stickyC {
    height: 8000px;
  }
}
@media screen and (max-width: 600px) {
  .stickyC {
    height: 5000px;
  }
}
.stickyC .kamishibai-01 {
  position: sticky;
  height: 100vh;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.stickyC .kamishibai-01 .kamishibai-01-box {
  position: absolute;
  background-color: #641e00;
  filter: drop-shadow(0px -1px 4px #993c3c);
  border-radius: 80px 80px 0 0;
  width: 100%;
  height: 85vh;
  left: 0;
  bottom: 0;
}
.stickyC .kamishibai-01 .kamishibai-title {
  width: 100%;
  top: 8%;
  left: 0;
  transition: 0.5s;
  opacity: 1;
}
.stickyC .kamishibai-01 .kamishibai-title-opacity {
  opacity: 0;
}
.stickyC .kamishibai-02 {
  position: sticky;
  height: 100vh;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.stickyC .kamishibai-02 .kamishibai-02-box {
  position: absolute;
  left: 0;
  bottom: 0;
}
.stickyC .kamishibai-03 {
  position: sticky;
  height: 100vh;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.stickyC .kamishibai-03 .kamishibai-03-box {
  position: absolute;
  left: 0;
  bottom: 0;
}
.stickyC .kamishibai-04 {
  position: sticky;
  height: 100vh;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.stickyC .kamishibai-04 .kamishibai-04-box {
  position: absolute;
  left: 0;
  bottom: 0;
}

.fixed-sticky {
  position: fixed;
  width: 600px;
  bottom: 0;
}
@media screen and (max-width: 1535px) {
  .fixed-sticky {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .fixed-sticky {
    width: 100%;
  }
}

/*　バナーセクション
=================================*/
.banner {
  z-index: 100;
  background-color: #e05030;
  margin-top: -3px;
  overflow-x: clip;
}
.banner .banner-link-box {
  height: 838px;
}
@media screen and (max-width: 1535px) {
  .banner .banner-link-box {
    height: 670px;
  }
}
@media screen and (max-width: 1110px) {
  .banner .banner-link-box {
    height: 141vw;
  }
}
.banner .banner-link-01 {
  width: 100%;
  top: 11.9%;
  left: 0;
  transform: rotate(-40deg) translateX(15%);
  transform-origin: right 20%;
  opacity: 1;
  transition: 0.6s ease-in-out;
}
.banner .banner-link-02 {
  width: 100%;
  top: 52.6%;
  left: 0;
  transform: rotate(40deg) translateX(-15%);
  transform-origin: left 10%;
  opacity: 1;
  transition: 0.6s ease-in-out;
}
.banner .banner-active {
  transform: rotate(0) translateX(0);
}

.youtube {
  width: 100%;
  margin-bottom: 93px;
}
@media screen and (max-width: 1535px) {
  .youtube {
    height: 280px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 600px) {
  .youtube {
    height: 56vw;
    margin-bottom: 15.2vw;
  }
}

.banner-cp {
  display: block;
  margin: 0 auto;
  padding-bottom: 93px;
  width: 80.5%;
}
@media screen and (max-width: 1535px) {
  .banner-cp {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 600px) {
  .banner-cp {
    padding-bottom: 15.2vw;
  }
}

/* OP ANIMATION 
===============================*/
.op-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 605px;
  height: 100vh;
  z-index: 200;
  background-image: url(/lp/2025_gohansusumu/images/fixed_bg.png);
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .op-fixed {
    width: 455px;
  }
}
@media screen and (max-width: 600px) {
  .op-fixed {
    width: 100%;
    left: 0;
    transform: translateX(0);
  }
}
.op-fixed .fixed-yuge {
  width: 76.5%;
  left: 12%;
  top: 53%;
  transform: translateY(-60%);
}
.op-fixed .fixed-copyA, .op-fixed .fixed-copyB {
  width: 49.3%;
  left: 25%;
  top: 46%;
  transform: translateY(-60%);
}
.op-fixed .fixed-hashiageA {
  width: 100%;
  top: 81%;
  left: 0;
  transform: translateY(-60%);
}
.op-fixed .fixed-hashiageB {
  width: 100%;
  top: 77.5%;
  left: 0;
  transform: translateY(-60%);
}
.op-fixed .fixed-hashiageC {
  width: 100%;
  top: 28.5%;
  left: 0;
  transform: translateY(-50%);
}
.op-fixed .fixed-hashiageD {
  width: 100%;
  top: 41.5%;
  left: 0;
  transform: translateY(-50%);
}
.op-fixed .fixed-hashiageE {
  width: 100%;
  top: 59.5%;
  left: 0;
  transform: translateY(-50%);
}
.op-fixed .fixed-hashiageF {
  width: 100%;
  top: 74.8%;
  left: 0;
  transform: translateY(-50%);
}/*# sourceMappingURL=style.css.map */