@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;
}
@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/2026_irodori/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2026_irodori/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-image: url(/lp/2026_irodori/images/bg_left.jpg);
  background-size: 660px;
  background-repeat: repeat;
  background-position: left top;
  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-item-01 {
  width: 44.3%;
  top: 40%;
  left: 0%;
}
.left .left-item-02 {
  width: 21.8%;
  top: 68%;
  left: 30%;
}
.left .left-item-03 {
  width: 33.5%;
  top: 27%;
  left: 41%;
}
.left .left-item-04 {
  width: 24.5%;
  top: 57.5%;
  left: 63%;
}
.left .left-item-05 {
  width: 29.2%;
  top: 34%;
  left: 85%;
}

/* RIGHT STYLE
=============================*/
.right {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-image: url(/lp/2026_irodori/images/bg_right.jpg);
  background-size: 660px;
  background-repeat: repeat;
  background-position: left top;
  z-index: 80;
}
@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-item-01 {
  width: 30%;
  top: 26%;
  left: 3%;
}
.right .right-item-02 {
  width: 38.4%;
  top: 55%;
  left: 15%;
}
.right .right-item-03 {
  width: 18.2%;
  top: 37%;
  left: 42%;
}
.right .right-item-04 {
  width: 12%;
  top: 55%;
  left: 58%;
}
.right .right-item-05 {
  width: 14.4%;
  top: 28%;
  left: 67%;
}
.right .right-item-06 {
  width: 38%;
  top: 36%;
  left: 74%;
}
.right .right-anker-01 {
  width: 35%;
  left: 13%;
  bottom: 3%;
  transition: 0.2s;
}
.right .right-anker-01:hover {
  transform: rotate(5deg);
}
.right .right-anker-02 {
  width: 35%;
  left: 53%;
  bottom: 4%;
  transition: 0.2s;
}
.right .right-anker-02:hover {
  transform: rotate(5deg);
}

.select-cap {
  font-size: 20px;
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  color: #7b5542;
}
@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: #e3caa6;
  padding: 4.3% 5.5% 4.5% 5.8%;
}
@media screen and (max-width: 1535px) {
  .select-card {
    padding-top: 5.2%;
    padding-bottom: 5%;
  }
}
@media screen and (max-width: 600px) {
  .select-card {
    padding-top: 3.7%;
    padding-bottom: 3.5%;
  }
}

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

.price {
  font-size: 32px;
  font-weight: 400;
  font-family: "rubik";
  color: #3b201b;
  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: 45%;
  margin: 0 auto;
  padding-top: 20px;
}
@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-con-01 {
  padding-top: 35px;
}
@media screen and (max-width: 1535px) {
  #pr-con-01 {
    padding-top: 24px;
  }
}
@media screen and (max-width: 600px) {
  #pr-con-01 {
    padding-top: 5.3vw;
  }
}

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

.price-img {
  width: 59%;
}

/* 共通アニメーション
===============================*/
@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 trans-y {
  0% {
    opacity: 0;
    transform: translateY(6%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.trans-y {
  opacity: 0;
}

.trans-y-active {
  animation: trans-y 0.75s ease-in-out forwards;
}

.menu-ph-active {
  animation: trans-y 0.75s ease-in-out forwards;
}
.menu-ph-active:nth-child(2) {
  animation-delay: 0.1s;
}
.menu-ph-active:nth-child(3) {
  animation-delay: 0.2s;
}
.menu-ph-active:nth-child(4) {
  animation-delay: 0.1s;
}

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

.flash-delay-01 {
  animation-delay: 0.5s;
}

.flash-delay-02 {
  animation-delay: 1s;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down {
  animation: up-down 3s ease-in-out alternate infinite;
}

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

.delay-02 {
  animation-delay: 0.2s;
}

.delay-03 {
  animation-delay: 0.3s;
}

.delay-04 {
  animation-delay: 0.4s;
}

.delay-05 {
  animation-delay: 0.5s;
}

@keyframes rotate {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.rotate {
  animation: rotate 2.5s ease-in-out alternate infinite;
}

@keyframes puru-rotate {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
.fixed-fukidashi-active img {
  animation: puru-rotate 1.5s ease-in-out alternate infinite 1s;
}

/* オープニング
==============================*/
.mv-title-img-active {
  animation: op-trans-y 0.5s ease-in-out forwards 2.5s;
}
.mv-title-img-active:nth-child(2) {
  animation-delay: 2.55s;
}
.mv-title-img-active:nth-child(3) {
  animation-delay: 2.625s;
}
.mv-title-img-active:nth-child(4) {
  animation-delay: 2.7s;
}
.mv-title-img-active:nth-child(5) {
  animation-delay: 2.775s;
}
.mv-title-img-active:nth-child(6) {
  animation-delay: 2.85s;
}
.mv-title-img-active:nth-child(7) {
  animation-delay: 2.925s;
}
.mv-title-img-active:nth-child(8) {
  animation-delay: 3s;
}
.mv-title-img-active:nth-child(9) {
  animation-delay: 3.075s;
}
.mv-title-img-active:nth-child(10) {
  animation-delay: 3.15s;
}
.mv-title-img-active:nth-child(11) {
  animation-delay: 3.225s;
}
.mv-title-img-active:nth-child(12) {
  animation-delay: 3.3s;
}
.mv-title-img-active:nth-child(13) {
  animation-delay: 3.375s;
}
.mv-title-img-active:nth-child(14) {
  animation-delay: 3.45s;
}
.mv-title-img-active:nth-child(15) {
  animation-delay: 3.525s;
}
.mv-title-img-active:nth-child(16) {
  animation-delay: 3.6s;
}

@keyframes op-trans-y {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/* VARIOUS
===============================*/
.vari-h3-img-active {
  animation: trans-y 0.5s ease-in-out forwards;
}
.vari-h3-img-active:nth-child(3) {
  animation-delay: 0.05s;
}
.vari-h3-img-active:nth-child(4) {
  animation-delay: 0.1s;
}
.vari-h3-img-active:nth-child(5) {
  animation-delay: 0.15s;
}
.vari-h3-img-active:nth-child(6) {
  animation-delay: 0.2s;
}
.vari-h3-img-active:nth-child(7) {
  animation-delay: 0.25s;
}
.vari-h3-img-active:nth-child(8) {
  animation-delay: 0.3s;
}
.vari-h3-img-active:nth-child(9) {
  animation-delay: 0.35s;
}

.vari-h3-slide-wrap {
  animation-delay: 0.15s;
}

.small-h3-img-active {
  animation: trans-y 0.5s ease-in-out forwards;
}
.small-h3-img-active:nth-child(3) {
  animation-delay: 0.05s;
}
.small-h3-img-active:nth-child(4) {
  animation-delay: 0.1s;
}
.small-h3-img-active:nth-child(5) {
  animation-delay: 0.15s;
}
.small-h3-img-active:nth-child(6) {
  animation-delay: 0.2s;
}
.small-h3-img-active:nth-child(7) {
  animation-delay: 0.25s;
}
.small-h3-img-active:nth-child(8) {
  animation-delay: 0.3s;
}
.small-h3-img-active:nth-child(9) {
  animation-delay: 0.35s;
}

/* STICKY 切り替え
===============================*/
.fixed-sticky {
  position: fixed !important;
  width: 600px;
  bottom: 0;
}
@media screen and (max-width: 1535px) {
  .fixed-sticky {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .fixed-sticky {
    width: 100%;
  }
}

@keyframes trans-intro {
  0% {
    opacity: 0;
    transform: translateY(1%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.copy-slide {
  animation-delay: 0.33s;
  animation-duration: 1.9s;
  opacity: 0;
}

.copy-slide-img {
  animation-delay: 0.33s;
  animation-duration: 1.9s;
  opacity: 0;
}

.feat-h2-img-active {
  animation: trans-y 0.6s forwards;
}
.feat-h2-img-active:nth-child(2) {
  animation: trans-y 0.6s forwards 0s;
}
.feat-h2-img-active:nth-child(3) {
  animation: trans-y 0.6s forwards 0.05s;
}
.feat-h2-img-active:nth-child(4) {
  animation: trans-y 0.6s forwards 0.1s;
}
.feat-h2-img-active:nth-child(5) {
  animation: trans-y 0.6s forwards 0.15s;
}
.feat-h2-img-active:nth-child(6) {
  animation: trans-y 0.6s forwards 0.2s;
}
.feat-h2-img-active:nth-child(7) {
  animation: trans-y 0.6s forwards 0.25s;
}
.feat-h2-img-active:nth-child(8) {
  animation: trans-y 0.6s forwards 0.3s;
}
.feat-h2-img-active:nth-child(9) {
  animation: trans-y 0.6s forwards 0.35s;
}
.feat-h2-img-active:nth-child(10) {
  animation: trans-y 0.6s forwards 0.4s;
}
.feat-h2-img-active:nth-child(11) {
  animation: trans-y 0.6s forwards 0.45s;
}
.feat-h2-img-active:nth-child(12) {
  animation: trans-y 0.6s forwards 0.5s;
}
.feat-h2-img-active:nth-child(13) {
  animation: trans-y 0.6s forwards 0.55s;
}
.feat-h2-img-active:nth-child(14) {
  animation: trans-y 0.6s forwards 0.6s;
}
.feat-h2-img-active:nth-child(15) {
  animation: trans-y 0.6s forwards 0.65s;
}
.feat-h2-img-active:nth-child(16) {
  animation: trans-y 0.6s forwards 0.7s;
}
.feat-h2-img-active:nth-child(17) {
  animation: trans-y 0.6s forwards 0.75s;
}
.feat-h2-img-active:nth-child(18) {
  animation: trans-y 0.6s forwards 0.8s;
}
.feat-h2-img-active:nth-child(19) {
  animation: trans-y 0.6s forwards 0.85s;
}
.feat-h2-img-active:nth-child(20) {
  animation: trans-y 0.6s forwards 0.9s;
}

@keyframes appear-vegi {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.small-menu-img-active {
  animation: appear-vegi 0.6s forwards;
}

.small-menu-img:nth-child(2) {
  animation-delay: 0.1s;
}
.small-menu-img:nth-child(3) {
  animation-delay: 0.15s;
}

.small-menu-pop-active {
  animation: appear-vegi 0.6s forwards;
}

.small-menu-pop-01 {
  animation-delay: 0.3s;
}

.small-menu-pop-02 {
  animation-delay: 0.4s;
}

.small-menu-pop-03 {
  animation-delay: 0.5s;
}

.vegi-li-active:nth-child(1) {
  animation: appear-vegi 0.4s forwards 0s;
}
.vegi-li-active:nth-child(2) {
  animation: appear-vegi 0.4s forwards 0.1s;
}
.vegi-li-active:nth-child(3) {
  animation: appear-vegi 0.4s forwards 0.2s;
}
.vegi-li-active:nth-child(4) {
  animation: appear-vegi 0.4s forwards 0.3s;
}
.vegi-li-active:nth-child(5) {
  animation: appear-vegi 0.4s forwards 0.4s;
}
.vegi-li-active:nth-child(6) {
  animation: appear-vegi 0.4s forwards 0.5s;
}
.vegi-li-active:nth-child(7) {
  animation: appear-vegi 0.4s forwards 0.6s;
}
.vegi-li-active:nth-child(8) {
  animation: appear-vegi 0.4s forwards 0.7s;
}
.vegi-li-active:nth-child(9) {
  animation: appear-vegi 0.4s forwards 0.8s;
}
.vegi-li-active:nth-child(10) {
  animation: appear-vegi 0.4s forwards 0.9s;
}

/* oshiA
=====================*/
.oshiA-ph-abs {
  opacity: 0;
  transition: 0.3s;
}

.oshiA-ph-abs-active {
  animation: appear-vegi 0.5s ease-in-out forwards;
}

/* oshiB
=====================*/
.oshiB-ph-img-active {
  animation: appear-vegi 0.6s forwards;
}
.oshiB-ph-img-active:nth-child(2) {
  animation-delay: 0.1s;
}
.oshiB-ph-img-active:nth-child(3) {
  animation-delay: 0.2s;
}

.calorie:nth-child(1) {
  animation-delay: 0.4s;
}
.calorie:nth-child(2) {
  animation-delay: 0.5s;
}
.calorie:nth-child(3) {
  animation-delay: 0.6s;
}
.calorie:nth-child(4) {
  animation-delay: 0.7s;
}

.game-h2-title {
  animation-duration: 1s;
  animation-delay: 0.05s;
}

.game-h2-title-img {
  animation-duration: 1s;
  animation-delay: 0.05s;
}

/* GAME
============================*/
.result-appear {
  opacity: 0;
  transform: translateY(5%);
  transition: 0.75s;
  transition-delay: 0.1s;
}

.result-appear-active {
  opacity: 1;
  transform: translateY(0%);
}

/* LEFT APPEAR ANIME
============================*/
@keyframes left-anime {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  1.75% {
    transform: scale(1.08);
  }
  3% {
    opacity: 1;
    transform: scale(1);
  }
  17% {
    opacity: 1;
    transform: scale(1);
  }
  18.25% {
    opacity: 1;
    transform: scale(1.05);
  }
  20% {
    opacity: 0;
    transform: scale(0.8);
  }
}
.leftA-img {
  animation: left-anime 15s infinite ease;
}

.leftB-img {
  animation: left-anime 15s infinite ease 3s;
}

.leftC-img {
  animation: left-anime 15s infinite ease 6s;
}

.leftD-img {
  animation: left-anime 15s infinite ease 9s;
}

.leftE-img {
  animation: left-anime 15s infinite ease 12s;
}

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

.leftA-02 {
  animation-delay: 0.2s;
}

.leftB-01 {
  animation-delay: 3.1s;
}

.leftB-02 {
  animation-delay: 3.2s;
}

.leftC-01 {
  animation-delay: 6.1s;
}

.leftC-02 {
  animation-delay: 6.2s;
}

.leftD-01 {
  animation-delay: 9.1s;
}

.leftD-02 {
  animation-delay: 9.2s;
}

.leftE-01 {
  animation-delay: 12.1s;
}

.leftE-02 {
  animation-delay: 12.2s;
}

.opacityA {
  animation: result-appear 1s forwards 0.2s;
}

@keyframes result-appear {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.resS {
  animation-delay: 0.35s;
}

.resE {
  animation-delay: 0.5s;
}

/* SVG */
#mask-01 {
  fill: none;
  stroke: #598e77;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 4.5px;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

#mask-02 {
  fill: none;
  stroke: #598e77;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 4.5px;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

.mask-base {
  width: 100%;
  height: auto;
}

/* LOOP
===============================*/
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-128%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-228%);
  }
}
.looper {
  display: flex;
  width: 210%;
  height: 100vh;
  overflow-x: clip;
  left: 0;
}

.loop-first {
  display: inline;
  animation: loop 20s -10s linear infinite;
  width: 130%;
  height: 100vh;
}

.loop-second {
  display: inline;
  animation: loop2 20s linear infinite;
  width: 130%;
  height: 100vh;
}

/* FIXED
============================*/
.fixed {
  position: fixed;
  top: 0;
  left: calc(50% - 300px);
  width: 602px;
  height: 100vh;
  z-index: 50;
  background-color: #fff;
  background-image: url(/lp/2026_irodori/images/bg_color.png);
  background-size: 100.1%;
  transform: translateX(-1px);
}
@media screen and (max-width: 1535px) {
  .fixed {
    width: 451px;
    left: calc(50% - 224px);
  }
}
@media screen and (max-width: 600px) {
  .fixed {
    width: 100vw;
    left: 0;
  }
}
.fixed .fixed-star {
  width: 4.75%;
}
.fixed .fixed-star:nth-child(1) {
  top: 14%;
  left: 68%;
}
.fixed .fixed-star:nth-child(2) {
  top: 78.5%;
  left: 14%;
}
.fixed .fixed-star:nth-child(3) {
  top: 83.5%;
  left: 80%;
  z-index: 1;
}
.fixed .fixed-star:nth-child(4) {
  top: 22.5%;
  left: 9%;
  z-index: 1;
}
.fixed .fixed-star:nth-child(5) {
  top: 41%;
  left: 88%;
  z-index: 1;
}
.fixed .fixed-star:nth-child(6) {
  top: 89%;
  left: 67%;
  z-index: 1;
}
.fixed .fixed-ph {
  top: 39%;
  width: 100%;
}
.fixed .fixed-fukidashi {
  top: 20%;
  left: 10%;
  width: 74%;
}

.fixed-ph-active {
  animation: appear-vegi 0.5s forwards;
}
.fixed-ph-active:nth-child(9) {
  animation-delay: 0.1s;
}
.fixed-ph-active:nth-child(10) {
  animation-delay: 0.2s;
}

.fixed-fukidashi-active {
  animation: appear-vegi 0.5s forwards;
  animation-delay: 0.275s;
}

/* FEAT ABS
============================*/
.vari-abs {
  display: block;
  width: 93%;
  top: 2.8%;
  left: 0%;
}

.vari-abs-p {
  width: 93%;
  top: 2.8%;
  left: 0%;
  animation-delay: 0.1s;
}
.vari-abs-p .vari-abs-p-img {
  animation-delay: 0.1s;
}

.vari-abs-circle {
  width: 22.18%;
  top: 6.8%;
  left: 7.2%;
}

.small-abs {
  width: 81.6%;
  top: 1%;
  left: 10%;
  z-index: 15;
}

.small-abs-p {
  width: 81.6%;
  top: 1%;
  left: 10%;
  z-index: 15;
}

.small-abs-circle {
  width: 20.8%;
  top: 3.5%;
  left: 14.5%;
  z-index: 15;
}

/* FEAT お野菜
============================*/
.feat-vegi-01 {
  width: 29.33%;
  top: 29%;
  left: -3%;
}

.feat-vegi-02 {
  width: 38.33%;
  top: 33%;
  right: -7%;
}

.feat-vegi-03 {
  width: 24.9%;
  top: 48.5%;
  left: -6.5%;
}

.feat-vegi-04 {
  width: 22.4%;
  top: 66.6%;
  right: -5.5%;
}

.feat-vegi-05 {
  width: 45.8%;
  top: 66.6%;
  left: -9%;
}

.feat-vegi-06 {
  width: 17.28%;
  top: 71.5%;
  left: 78.5%;
}

.feat-vegi-07 {
  width: 11.46%;
  top: 76%;
  left: 42%;
}

.feat-vegi-08 {
  width: 33.14%;
  top: 78%;
  left: 47%;
}

.feat-light {
  width: 100%;
  top: 33%;
}

/* SMALL ポップ
=========================*/
.small-menu-pop-01 {
  width: 34.375%;
  top: 6%;
  left: 26%;
}

.small-menu-pop-02 {
  width: 40%;
  top: 83%;
  left: 7.5%;
}

.small-menu-pop-03 {
  width: 35%;
  top: 80%;
  left: 57.8%;
}

/* FEAT 背景 野菜
==========================*/
.bg-vegi-01 {
  width: 25%;
  top: 40%;
  left: -6%;
}

.bg-vegi-02 {
  width: 40%;
  top: 46%;
  right: -10.5%;
}

.bg-vegi-03 {
  width: 30%;
  top: 53.2%;
  left: -7.5%;
}

.bg-vegi-04 {
  width: 37%;
  top: 58.5%;
  right: -16.5%;
}

.bg-vegi-05 {
  width: 40.08%;
  top: 66.3%;
  left: -9.5%;
}

.bg-vegi-06 {
  width: 34.3%;
  top: -9.6%;
  left: 65%;
  z-index: 5;
}

.bg-vegi-07 {
  width: 26.3%;
  top: 17.75%;
  left: -6%;
}

.bg-vegi-08 {
  width: 40.86%;
  top: 30.25%;
  left: 76.5%;
}

.bg-vegi-09 {
  width: 65.86%;
  top: 57.5%;
  left: -25.5%;
}

.bg-vegi-10 {
  width: 28.26%;
  top: 72.5%;
  left: 61.5%;
}

/* 推し A
============================*/
.oshiA-h2 .oshiA-h2-abs {
  width: 24%;
  top: 6%;
  left: 39.5%;
  transform-origin: bottom;
}

.oshiA-ph {
  top: 49%;
}

.oshiA-ph-abs {
  width: 63.2%;
  top: -58%;
  left: 12%;
}

.oshiA-bg-01 {
  width: 33%;
  top: -12%;
  left: -2%;
}

.oshiA-bg-02 {
  width: 26%;
  top: 24%;
  left: 87%;
}

/* 推し B
============================*/
.oshiB-h2-abs {
  width: 33.3%;
  top: 1.5%;
  left: 37.5%;
}

.oshiB-p-img-02 {
  width: 68%;
  top: 9%;
  left: 21.2%;
}

.oshiB-ph {
  width: 100%;
  top: 46%;
}

.oshiB-ph-abs {
  width: 57%;
  top: -23.5%;
  left: 15%;
}

.oshiB-bg-01 {
  width: 36%;
  top: -24%;
  left: -10%;
}

.oshiB-bg-02 {
  width: 34%;
  top: -2%;
  left: 80%;
}

.oshiB-bg-03 {
  width: 27%;
  top: 74%;
  left: -10.5%;
}

/* 推し B
============================*/
.result-abs-01 {
  width: 24.6%;
  top: 15%;
  left: -15%;
}

.result-abs-02 {
  width: 24.6%;
  top: 31.5%;
  left: 92%;
}

.result-abs-03 {
  width: 28.84%;
  top: 89%;
  left: 0%;
}

/* アンカー
============================*/
.vegiA {
  width: 28%;
  top: -25%;
  left: 0;
}

.vegiB {
  width: 41%;
  top: 12%;
  left: 86.8%;
}

.vegiC {
  width: 22%;
  top: 90%;
  left: 29%;
}

.vegiD {
  width: 40%;
  top: 32%;
  left: -5%;
}

/* バナー
============================*/
.cp-star {
  width: 4.8%;
}

.cp-star-01 {
  top: 9%;
  left: 69%;
}

.cp-star-02 {
  top: 15%;
  left: 83%;
}

.cp-star-03 {
  top: 29%;
  left: 13%;
}

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

.sticky {
  position: sticky;
}

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

.opacity {
  opacity: 0;
}

/* 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 {
  height: 2845px;
}
@media screen and (max-width: 1535px) {
  .sec-mv {
    height: 2133px;
  }
}
@media screen and (max-width: 600px) {
  .sec-mv {
    height: 474.166vw;
  }
}
.sec-mv .sticky-01 {
  top: 0;
  position: sticky;
  position: -webkit-sticky; /* safari */
}
.sec-mv .sticky-01 .mv-title {
  top: 0%;
  left: 0%;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .sec-mv .sticky-01 .mv-title {
    top: 0;
  }
}

/* イントロコピー 周辺
===============================*/
.sec-intro {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background: url(/lp/2026_irodori/images/intro_bg.jpg);
  background-size: 100%;
}
.sec-intro .intro-copy {
  width: 77%;
  top: 25%;
  left: 12%;
}

/* メニュー 周辺
===============================*/
.sec-menu {
  margin-top: -90px;
  padding-top: 140px;
  z-index: 5;
}
@media screen and (max-width: 1535px) {
  .sec-menu {
    margin-top: -67.5px;
    padding-top: 105px;
  }
}
@media screen and (max-width: 600px) {
  .sec-menu {
    margin-top: -15vw;
    padding-top: 23.33vw;
  }
}
.sec-menu .menu-bg-02 {
  top: 2%;
  transform: translateY(5%);
  transition: 0.7s;
}
.sec-menu .menu-bg-active {
  top: 2%;
  transform: translateY(0%);
}
.sec-menu .menu-set {
  margin-top: 15px;
}
@media screen and (max-width: 1535px) {
  .sec-menu .menu-set {
    margin-top: calc(15px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menu .menu-set {
    margin-top: calc(15 * 0.625 / 375 * 100vw);
  }
}

/* いろどりセット 特徴
===============================*/
.sec-feat {
  background-image: url(/lp/2026_irodori/images/bg_color.png);
  background-size: 100.1%;
  overflow-x: clip;
}
.sec-feat .feat-h2-box {
  height: 1400px;
  margin-top: 20px;
}
@media screen and (max-width: 1535px) {
  .sec-feat .feat-h2-box {
    height: calc(1400px * 0.75);
    margin-top: 220px;
  }
}
@media screen and (max-width: 600px) {
  .sec-feat .feat-h2-box {
    height: calc(1400 * 0.625 / 375 * 100vw);
    margin-top: 270px;
  }
}
.sec-feat .feat-h2-box .feat-h2 {
  width: 100%;
  top: 40.46%;
}

/* バリエーション
===============================*/
.sec-vari {
  padding-bottom: 64px;
}
@media screen and (max-width: 1535px) {
  .sec-vari {
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 600px) {
  .sec-vari {
    padding-bottom: 10.66vw;
  }
}
.sec-vari .vari-wrapper {
  width: 85.3333%;
  margin: 0 auto 0 auto;
  padding-bottom: 120px;
  background-image: url(/lp/2026_irodori/images/various_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1535px) {
  .sec-vari .vari-wrapper {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 600px) {
  .sec-vari .vari-wrapper {
    padding-bottom: 20vw;
  }
}
.sec-vari .vari-wrapper .vegi-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 84%;
  margin: 0 auto;
}
.sec-vari .vari-wrapper .vegi-ul .vegi-li {
  width: 33%;
}
.sec-vari .vari-wrapper .vegi-ul .vegi-li:last-child {
  width: 100%;
}

/* スモール
===============================*/
.sec-small {
  position: relative;
  padding-bottom: 210px;
}
@media screen and (max-width: 1535px) {
  .sec-small {
    padding-bottom: calc(210px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-small {
    padding-bottom: calc(210 * 0.625 / 375 * 100vw);
  }
}
.sec-small .small-wrapper {
  width: 85.3333%;
  margin: 0 auto;
  padding-bottom: 157px;
  background-image: url(/lp/2026_irodori/images/small_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 10;
}
@media screen and (max-width: 1535px) {
  .sec-small .small-wrapper {
    padding-bottom: 118px;
  }
}
@media screen and (max-width: 600px) {
  .sec-small .small-wrapper {
    padding-bottom: 26vw;
  }
}
.sec-small .small-caption {
  margin-top: 62px;
}
@media screen and (max-width: 1535px) {
  .sec-small .small-caption {
    margin-top: calc(62px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-small .small-caption {
    margin-top: calc(62 * 0.625 / 375 * 100vw);
  }
}

/* 推しA
===============================*/
.oshi-box {
  margin-top: -112px;
}

.sec-oshiA {
  padding-top: 30px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-oshiA {
    padding-top: 22.5px;
  }
}
@media screen and (max-width: 600px) {
  .sec-oshiA {
    padding-top: 0;
  }
}
.sec-oshiA .oshiA-content {
  height: 905px;
  background-color: #d2e6c8;
}
@media screen and (max-width: 1535px) {
  .sec-oshiA .oshiA-content {
    height: calc(905px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-oshiA .oshiA-content {
    height: calc(905 * 0.625 / 375 * 100vw);
  }
}

/* 推しB
===============================*/
.sec-oshiB {
  z-index: 10;
  margin-top: -117px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-oshiB {
    margin-top: -88px;
  }
}
@media screen and (max-width: 600px) {
  .sec-oshiB {
    margin-top: -19.5vw;
  }
}
.sec-oshiB .oshiB-content {
  background-color: #EAD7BC;
  height: 830px;
}
@media screen and (max-width: 1535px) {
  .sec-oshiB .oshiB-content {
    height: calc(830px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-oshiB .oshiB-content {
    height: calc(830 * 0.625 / 375 * 100vw);
  }
}

/* ルーレットゲーム
===============================*/
.sec-game {
  margin-top: -200px;
  padding-top: 230px;
  background-image: url(/lp/2026_irodori/images/game_bg.jpg);
  background-size: 100.1%;
  z-index: 5;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-game {
    margin-top: -150px;
    padding-top: 206px;
  }
}
@media screen and (max-width: 600px) {
  .sec-game {
    margin-top: -33.33vw;
    padding-top: 45.8vw;
  }
}
@media screen and (max-width: 1535px) {
  .sec-game {
    margin-top: calc(-200px * 0.75);
    padding-top: calc(230px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-game {
    margin-top: calc(-200 * 0.625 / 375 * 100vw);
    margin-top: calc(230 * 0.625 / 375 * 100vw);
  }
}

.game-h2 .game-h2-abs-01 {
  width: 45%;
  top: -17%;
  left: 7.5%;
}
.game-h2 .game-h2-abs-02 {
  width: 37%;
  top: -10%;
  left: 45%;
}

.game-ph {
  width: 100%;
  height: 546px;
}
@media screen and (max-width: 1535px) {
  .game-ph {
    height: 410px;
  }
}
@media screen and (max-width: 600px) {
  .game-ph {
    height: 91vw;
  }
}
.game-ph .game-dish-box {
  top: 33%;
}
.game-ph .game-drink-box {
  width: 45%;
  top: -1.5%;
}
.game-ph .game-soup-box {
  width: 65%;
  top: 5%;
  left: 35%;
}

.start-btn-box {
  width: 53%;
  margin: 0 auto;
  height: 152px;
}
.start-btn-box .start-btn {
  transition: 0.3s;
}
.start-btn-box .start-btn img {
  display: block;
}

.start-btn {
  margin: 0 auto 30px auto;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
}

.btn-01 {
  z-index: 100;
}

.btn-02 {
  z-index: 90;
}

.btn-03 {
  z-index: 80;
}

.game-result {
  padding-top: 20px;
  padding-bottom: 101px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .game-result {
    padding-bottom: 76px;
  }
}
@media screen and (max-width: 600px) {
  .game-result {
    padding-bottom: 16.833vw;
  }
}
.game-result .result-box {
  width: 83.2%;
  background-image: url(/lp/2026_irodori/images/result_bg.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 22px auto 101px auto;
  padding-top: 115px;
  padding-bottom: 72px;
}
@media screen and (max-width: 1535px) {
  .game-result .result-box {
    margin: 17px auto 76px auto;
    padding-top: 86px;
    padding-bottom: 54px;
  }
}
@media screen and (max-width: 600px) {
  .game-result .result-box {
    margin: 3.6vw auto 16.888vw auto;
    padding-top: 19.16vw;
    padding-bottom: 12vw;
  }
}
.game-result .result-box .result-h3 {
  width: 80%;
  top: -8.5%;
  right: 0;
}
.game-result .result-box .result-h3-abs {
  width: 32.5%;
  top: 21.5%;
  left: -27.8%;
}
.game-result .btn-again {
  width: 53.3%;
  margin: 0 auto;
}
.game-result .btn-again .btn-again-abs {
  width: 15%;
  top: -29.5%;
  right: -9%;
}

/* バナーセクション
===============================*/
.sec-closing {
  background-image: url(/lp/2026_irodori/images/bg_color.png);
  background-size: 100.2%;
  padding-top: 160px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-closing {
    padding-top: 120px;
  }
}
@media screen and (max-width: 600px) {
  .sec-closing {
    padding-top: 26.66vw;
  }
}
.sec-closing .anker-01 {
  display: block;
  width: 69%;
  margin-left: 7%;
  margin-bottom: 41px;
}
@media screen and (max-width: 1535px) {
  .sec-closing .anker-01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .sec-closing .anker-01 {
    margin-bottom: 6.8vw;
  }
}
.sec-closing .anker-01 .anker-01-img {
  transition: transform 0.3s ease;
}
.sec-closing .anker-01:hover .anker-01-img {
  transform: rotate(6deg);
}
.sec-closing .anker-02 {
  display: block;
  width: 85%;
  margin-left: 9%;
  margin-bottom: 274px;
}
@media screen and (max-width: 1535px) {
  .sec-closing .anker-02 {
    margin-bottom: 205px;
  }
}
@media screen and (max-width: 600px) {
  .sec-closing .anker-02 {
    margin-bottom: 45.6vw;
  }
}
.sec-closing .anker-02 .anker-02-img, .sec-closing .anker-02 .anker-03-img {
  transition: transform 0.3s ease;
}
.sec-closing .anker-02:hover .anker-02-img {
  transform: rotate(8deg);
}
.sec-closing .anker-02:hover .anker-03-img {
  transform: rotate(-5deg);
}
.sec-closing .youtube {
  width: 100%;
}
@media screen and (max-width: 1535px) {
  .sec-closing .youtube {
    height: 280px;
  }
}
@media screen and (max-width: 600px) {
  .sec-closing .youtube {
    height: 56vw;
  }
}
.sec-closing .sec-cp {
  padding-top: 160px;
  padding-bottom: 145px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-closing .sec-cp {
    padding-top: 120px;
    padding-bottom: 109px;
  }
}
@media screen and (max-width: 600px) {
  .sec-closing .sec-cp {
    padding-top: 24.1vw;
  }
}

.cp-banner {
  display: block;
  width: 84.8%;
  margin: 0 auto;
  filter: drop-shadow(0 5px 5px rgba(173, 134, 118, 0.65));
  transition: 0.3s;
}
.cp-banner:hover {
  transform: scale(0.97);
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */