@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*:not(dialog){margin:0}@media (prefers-reduced-motion:no-preference){html{interpolate-size:allow-keywords}}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}p{text-wrap:pretty}h1,h2,h3,h4,h5,h6{text-wrap:balance}#root,#__next{isolation:isolate}
li {list-style: none;} ul{padding: 0; margin: 0;}
a {text-decoration: none; color: inherit;}
html {
  scroll-behavior: smooth;
}
html.is-loading body {
  opacity: 0;
  transform: translateY(18px);
}
body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.1em;
  overflow-y: scroll;
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  background-color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body {
    transition: none;
  }
  html.is-loading body {
    opacity: 1;
    transform: none;
  }
}

/* header */
.header {
  background-color: #fff;
  box-shadow: 0px 0px 15px -5px #7777775a;
  position: relative;
  z-index: 3;
}
.header-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 110px 0 70px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  container-type: inline-size;
}
.header-content--logo {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-content--logo-corp {
  width: 100px;
  height: auto;
}
.header-content--logo-brand {
  width: 214px;
  height: auto;
}
.header-nav-list {
  display: flex;
  gap: 0.7em;
  font-size: 1.125rem;
}
.header-nav-list-itm {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.header-nav-list-itm + .header-nav-list-itm::before {
  content: "";
  display: block;
  width: 3px;
  height: 1em;
  border-radius: 4px;
  background: #000;
}
.header-nav-list-itm a {
  display: block;
  transition: all 0.3s;
}
.header-nav-list-itm a:hover {
  transform: translateY(-4px);
}
.header-menu-btn {
  display: none;
}
.header-menu-btn-txt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* mv */
.mv {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 1920 / 1025;
  background-image: url("/curry-youbi/images/mv_pc_01.webp"), url("/curry-youbi/images/mv_pc_02.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto, 100% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbf2f2;
}
.mv::before,
.mv::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 8.72%;
  height: 101%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 16%,
    rgb(255 255 255 / 97%) 24%,
    rgb(255 255 255 / 90%) 34%,
    rgb(255 255 255 / 78%) 47%,
    rgb(255 255 255 / 62%) 60%,
    rgb(255 255 255 / 41%) 75%,
    rgb(255 255 255 / 15%) 91%,
    rgb(255 255 255 / 0%) 99%
  );
}
.mv::before {
  left: -3px;
}
.mv::after {
  right: -3px;
  transform: rotate(-180deg);
}
.mv img {
  position: relative;
  z-index: 2;
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.contents {
  background-color: #fbf2f2;
}

/* secret */
.secret {
  background: url("/curry-youbi/images/secret_vege_bg_pc.webp") repeat-y bottom center / 1500px auto;
  min-height: 300vh;
  padding: 60px;
}
.secret-inner {
  position: sticky;
  top: var(--secret-sticky-top, 60px);
  margin: 0 auto;
  max-width: 1000px;
  aspect-ratio: 1 / 1;
  background: url("/curry-youbi/images/secret_bg.webp") no-repeat center center / 114% auto;
  container-type: inline-size;
  transition: background-image 0.6s ease;
}
.secret.is-anchor-passing .secret-inner {
  position: relative;
  top: auto;
}
.secret-2-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 18%;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.secret.r-2 {
  .secret-2-3 {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .secret-inner {
    background-image: url("/curry-youbi/images/secret_bg_on.webp")
  }
  .secret-2 {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s;
  }
  .secret-2 img {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .secret-3 {
    opacity: 0;
    visibility: hidden;
  }
}
.secret-ttl img {
  width: 59%;
  height: auto;
  margin: 0 auto;
}
.secret-txt {
  font-size: 1.7rem;
  text-align: center;
  color: #fff;
  padding-left: 2rem;
}
.secret-2 img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.secret-2 {
  position: absolute;
  top: 92%;
  left: 50%;
  width: 74%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px) scale(0.97);
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.65s;
}
.secret-3 {
  position: absolute;
  top: 104%;
  left: 50%;
  width: 61%;
  text-align:justify;
  color: #fff;
  font-size: 1.65rem;
  letter-spacing: 0.2em;
  line-height: 1.9;
  margin-top: 0;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px) scale(0.97);
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.65s;
}
.secret.r-3 {
  .secret-2-3 {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .secret-inner {
    background-image: url("/curry-youbi/images/secret_bg_on.webp")
  }
  .secret-2 {
    opacity: 0;
    visibility: hidden;
  }
  .secret-3 {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s;
  }
}
@media (min-width: 769px) and (max-width: 840px) {
  .secret-ttl img {
    width: 63%;
  }
  .secret-txt {
    font-size: 1.3rem;
  }
  .secret-3 {
    font-size: 1.15rem;
    top:105%;
    width: 66%;
  }
}
@media (min-width: 841px) and (max-width: 1069px) {
  .secret-ttl img {
    width: 63%;
  }
  .secret-txt {
    font-size: 1.5rem;
  }
  .secret-3 {
    font-size: 1.3rem;
    top:105%;
    width: 66%;
  }
}


/* lineup */
.lineup {
  padding: 120px 0 60px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.lineup-ttl-img {
  width: 27%;
  height: auto;
  margin: 0 auto;
}
.lineup-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1788 / 783;
  margin: 45px auto 0;
  margin: 0 auto;
}
.lineup-list {
  position: relative;
  height: 100%;
}
.lineup-list-itm {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.82);
  transition: opacity 0.35s ease, transform 0.5s ease, width 0.5s ease;
  container-type: inline-size;
}
.lineup-list-itm.is-active {
  z-index: 2;
  width: 23%;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.lineup-list-itm.is-prev {
  z-index: 1;
  opacity: 1;
  transform: translateX(-240%) translateY(35px) scale(1);
}
.lineup-list-itm.is-next {
  z-index: 1;
  opacity: 1;
  transform: translateX(140%) translateY(35px) scale(1);
}
.lineup-list-itm.is-before-prev {
  opacity: 0;
  transform: translateX(-240%) translateY(35px) scale(1);
  transition: none;
}
.lineup-list-itm.is-after-next {
  opacity: 0;
  transform: translateX(140%) translateY(35px) scale(1);
  transition: none;
}
.lineup-list-itm-link {
  position: relative;
  display: block;
  color: #000;
  text-align: center;
  transition: 0.3s;
}
.lineup-list-itm-link:hover {
  opacity: 0.7;
}
.lineup-list-itm:not(.is-active) .lineup-list-itm-link {
  pointer-events: none;
}
.lineup-list-itm:not(.is-active) .lineup-list-itm-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(116, 31, 5, 0.56);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.lineup-list-itm-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.lineup-list-itm-txt {
  display: none;
  margin-top: 24px;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0.22em;
  white-space: nowrap;
}
.lineup-list-itm:first-child .lineup-list-itm-txt:not(.r-note) {
  position: relative;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
}
.lineup-list-itm-btn {
  display: none;
  width: 100%;
  aspect-ratio: 487 / 85;
  margin: 24px auto 0;
  background: url("/curry-youbi/images/btn_bg_or.webp") no-repeat center center / contain;
  color: #fff;
  font-size: 1.25rem;
}
.lineup-list-itm-btn.r-02 {
  background-image: url("/curry-youbi/images/btn_bg_gr.webp");
}
.lineup-list-itm-btn.r-03 {
  background-image: url("/curry-youbi/images/btn_bg_bk.webp");
}
.lineup-list-itm.is-active .lineup-list-itm-txt {
  display: block;
}
.lineup-list-itm.is-active .lineup-list-itm-btn {
  display: flex;
  justify-content: center;
  align-items: center;

}
.lineup-carousel-btn {
  position: absolute;
  top: 25%;
  z-index: 3;
  width: 5%;
  height: auto;
  aspect-ratio: 91 / 151;
  border: 0;
  background: transparent no-repeat center center / contain;
  cursor: pointer;
}
.lineup-carousel-btn:focus:not(:focus-visible) {
  outline: none;
}
.lineup-carousel-btn:focus-visible {
  outline: 3px solid #fa4100;
  outline-offset: 8px;
}
.lineup-carousel-btn--prev {
  left: calc(50% - 21%);
  background-image: url("/curry-youbi/images/ico_prev.webp");
}
.lineup-carousel-btn--next {
  right: calc(50% - 21%);
  background-image: url("/curry-youbi/images/ico_next.webp");
}
.lineup-list-itm-txt.r-note {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-top: 1rem;
  text-align: center;
}

/* curry-youbi */
.curry-youbi {
  --center-x: 50%;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 176px;
}
.curry-youbi-veges {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.curry-youbi-vege {
  position: absolute;
  width: var(--w, 6%);
  height: auto;
  scale: 1.6;
  transform-origin: center;
  /* animation: vege-float var(--duration, 5.8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s); */
}
.curry-youbi-vege.r-1 {
  --w: 8.2%;
  --duration: 5.2s;
  --delay: -0.4s;
  --move-1: 8px -14px;
  --move-2: -6px 8px;
  top: -0.2%;
  left: 5%;
  rotate: -5deg;
}
.curry-youbi-vege.r-2 {
  --w: 8.8%;
  --duration: 6.4s;
  --delay: -1.8s;
  --move-1: -10px -12px;
  --move-2: 7px 12px;
  top: 4.5%;
  left: 58%;
  rotate: 12deg;
}
.curry-youbi-vege.r-3 {
  --w: 9.6%;
  --duration: 5.7s;
  --delay: -2.6s;
  --move-1: 12px -10px;
  --move-2: -9px 13px;
  top: 0.8%;
  right: 7%;
  rotate: -1deg;
}
.curry-youbi-vege.r-4 {
  --w: 6.4%;
  --duration: 6.1s;
  --delay: -1.1s;
  --move-1: -8px -17px;
  --move-2: 11px 7px;
  top: 8.8%;
  right: 18%;
  rotate: -7deg;
}
.curry-youbi-vege.r-5 {
  --w: 6.8%;
  --duration: 5.4s;
  --delay: -3.2s;
  --move-1: 9px -13px;
  --move-2: -12px 9px;
  top: 43%;
  left: 2%;
  rotate: 18deg;
}
.curry-youbi-vege.r-6 {
  --w: 6.4%;
  --duration: 6.8s;
  --delay: -2.1s;
  --move-1: -11px -9px;
  --move-2: 8px 15px;
  top: 45%;
  left: 10%;
  rotate: -2deg;
}
.curry-youbi-vege.r-7 {
  --w: 8.8%;
  --duration: 5.4s;
  --delay: -3.2s;
  --move-1: 9px -13px;
  --move-2: -12px 9px;
  top: 31%;
  right: 5%;
  rotate: -118deg;
}
.curry-youbi-vege.r-8 {
  --w: 10.8%;
  --duration: 5.4s;
  --delay: -3.2s;
  --move-1: 9px -13px;
  --move-2: -12px 9px;
  bottom: 4%;
  right: 1%;
  rotate: 18deg;
}
.curry-youbi-vege.r-9 {
  --w: 8.8%;
  --duration: 6.8s;
  --delay: -2.2s;
  --move-1: -11px -9px;
  --move-2: 8px 15px;
  bottom: 4%;
  left: 1%;
  rotate: -51deg;
}
.curry-youbi-vege.r-10 {
  --w: 9.6%;
  --duration: 5.7s;
  --delay: -2.6s;
  --move-1: 12px -10px;
  --move-2: -9px 13px;
  top: 59%;
  right: 6%;
  rotate: 90deg;
}
.curry-youbi-itm {
  position: relative;
  top: 0;
  left: calc(var(--center-x) + var(--x, 0%));
  z-index: 1;
  width: var(--w, 28%);
  aspect-ratio: var(--ratio, 1 / 1);
  margin-top: var(--mt, 0);
  opacity: 0;
  transform: translate(-50%, 72px);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0s);
}
.curry-youbi-itm.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.curry-youbi-itm-img {
  width: 100%;
  height: auto;
}
.curry-youbi-itm.r-1 {
  --ratio: 2833 / 2834;
  --x: -17.5%;
  --w: 73.75%;
  --mt: -7%;
  --delay: 0s;
}
.curry-youbi-itm.r-2 {
  --ratio: 1 / 1;
  --x: 18%;
  --w: 55.15625%;
  --mt: -50%;
  --delay: 0.08s;
}
.curry-youbi-itm.r-3 {
  --ratio: 2276 / 2280;
  --x: -8.385416667%;
  --w: 59.21875%;
  --mt: -24%;
  --delay: 0.16s;
}
.curry-youbi-itm.r-4 {
  --ratio: 2976 / 2975;
  --x: 19.375%;
  --w: 77.44791667%;
  --mt: -46%;
  --delay: 0.24s;
}
.curry-youbi-itm.r-5 {
  --ratio: 2496 / 2494;
  --x: -12.76041667%;
  --w: 64.94791667%;
  --mt: -44%;
  --delay: 0.32s;
}
.curry-youbi-content {
  position: relative;
  z-index: 0;
  width: 64.42708333%;
  aspect-ratio: 1 / 1;
  margin: -23% auto 0;
  text-align: center;
  background: url("/curry-youbi/images/curry_youbi_bg.webp") no-repeat center center / contain;
  container-type: inline-size;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(72px);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.curry-youbi-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.curry-youbi-content-ttl {
  font-size: 2.75rem;
  transform: skewX(-5deg);
}
.curry-youbi-content-txt {
  font-size: 1.55rem;
  transform: skewX(-3deg);
  text-align: left;
  font-weight: 700;
  line-height: 1.9;
}

/* footer */
.footer {
  padding: 30px 0;
  text-align: center;
  box-shadow: 0px 0px 15px -5px #7777775a;
}
.footer-sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.footer-sns-list-itm a {
  display: block;
  transition: 0.3s;
}
.footer-sns-list-itm a:hover {
  transform: translateY(-3px);
}
.footer-sns-list-itm img {
  width: 60px;
  height: auto;
}
.footer-copy {
  display: block;
  margin-top: 20px;
  font-size: 1rem;
  color: #510700;
}

@keyframes vege-float {
  0%,
  100% {
    translate: 0 0;
  }
  35% {
    translate: var(--move-1, 10px -16px);
  }
  70% {
    translate: var(--move-2, -8px 10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .curry-youbi-vege {
    animation: none;
  }
}

@media (min-width: 769px) and (max-width: 1030px) {
  .header-content--logo {
    flex: 0 0 auto;
    width: auto;
    gap: 20px;
  }
  .header-content--logo-corp {
    width: 80px;
  }
  .header-content--logo-brand {
    width: 170px;
  }
  .header-nav-list {
    font-size: 0.875rem;
    white-space: nowrap;
  }
  .lineup-list-itm-txt {
    font-size: 1.1rem;
  }
  .lineup-list-itm-btn {
    font-size: 1rem;
  }
  .curry-youbi-content-ttl {
    font-size: 2.25rem;
  }
  .curry-youbi-content-txt {
    font-size: 1.3rem;
    padding-left: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 840px) {
  .curry-youbi-content-txt {
    font-size: 1.1rem;
    padding-left: 1rem;
  }
}


@media screen and (max-width: 1360px) {
  /* 1360px以下 */
  .header-content {
    padding: 0 40px;
  }
  .header-content--logo {
    gap: 32px;
    width: 40%;
  }
 
}

@media screen and (max-width: 768px) {
  .header-content {
    position: relative;
    flex-wrap: wrap;
    padding: 0 5.3333vw;
    height: 17.06666667vw;
    min-height: 17.06666667vw;
  }
  .header-content--logo {
    gap: 17.8vw;
    width: auto;
  }
  .header-content--logo-corp {
    width: 12.26666667vw;
  }
  .header-content--logo-brand {
    width: 26.4vw;
  }
  .header-menu-btn {
    display: block;
    width: max(44px, 9.6vw);
    height: max(44px, 9.6vw);
    border: 0;
    background: url("/curry-youbi/images/sp_menu_btn_toopen.webp") no-repeat right center / 6.666666667vw auto;
    cursor: pointer;
  }
  .header.is-menu-open .header-menu-btn {
    background-image: url("/curry-youbi/images/sp_menu_btn_toclose.webp");
  }
  .header-nav {
    display: none;
    width: 89.46666667vw;
    margin: 0;
    padding: 5.6vw 0 14.6vw;
    background-color: #fbf2f2;
    border-radius: 0 0 7.2vw 7.2vw;
  }
  .header.is-menu-open .header-nav {
    display: block;
    position: absolute;
    top: 17.06666667vw;
    left:0;
    right: 0;
    margin: 0 auto;
  }
  .header-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 4.933333333vw;
  }
  .header-nav-list-itm {
    display: block;
  }
  .header-nav-list-itm + .header-nav-list-itm::before {
    display: none;
  }
  .header-nav-list-itm a {
    padding: 5.2vw 0 1.6vw;
    text-align: center;
  }
  .header-nav-list-itm a {
    background: url("/curry-youbi/images/sp_menu_line.webp") no-repeat bottom center / 43.6vw auto;
  }
  .header-nav-list-itm:last-child a {
    letter-spacing: 0;
  }

  .mv {
    width: 100%;
    aspect-ratio: initial;
    height: 121.33333333vw;
    background-image: url("/curry-youbi/images/mv_sp_01.webp"), url("/curry-youbi/images/mv_sp_02.webp");
    background-position: top left, top right;
    background-size: auto 100%, auto 100%;
  }
  .mv img {
    width: 20.93333333vw;
      top: -6vw;
  }
  .mv::before,
  .mv::after {
    content: none;
  }

  .secret {
    min-height: 250vh;
    max-width: 100%;
    padding: 11vw 0 4vw;
    background-image: none;
    background-size: 100% auto;
    position: relative;
  }
  .secret-inner::before {
    content: "";
    position: absolute;
    display: block;
    top: -22vw;
    bottom: 0;
    width: 100%;
    height: 11.533333vw;
  background: linear-gradient(
    0deg,
    #fbf2f2 16%,
  rgb(251 242 242 / 97%) 24%,
  rgb(251 242 242 / 90%) 34%,
  rgb(251 242 242 / 78%) 47%,
  rgb(251 242 242 / 62%) 60%,
  rgb(251 242 242 / 41%) 75%,
  rgb(251 242 242 / 15%) 91%,
  rgb(251 242 242 / 0%) 99%
  );
  }

  .secret-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 42.53333333vw;
    background: url("/curry-youbi/images/secret_vege_bg_sp.webp") no-repeat center center / auto 100%;
    position: absolute;
    top: -23.4vw;
    left:0;
    right:0;
    margin: 0 auto;
  }
  .secret-inner {
    top: var(--secret-sticky-top, calc((100vh - 140vw) / 2));
    max-height: initial;
    background-size: 143% auto;
    aspect-ratio: 1 / 1.4;
    max-width: 100%;
  }
  .secret-2-3 {
    padding-top: 23%;
  }
  .secret-ttl img {
    width: 96%;
  }
  .secret-txt {
    padding-left: 0;
    font-size: max(13px, 3.2vw);
  }
  .secret-2 {
    top: 92%;
    width: 98.26666667%;
  }
  .secret-3 {
    top: 112%;
    width: 74.93333333%;
    font-size: max(14px, 3.066666667vw);
    line-height: 1.9;
    letter-spacing: 0.2em;
  }

  .lineup {
    padding: 0 0 10.6667vw;
    overflow-x: hidden;
    max-width: 100%
  }
  .lineup-ttl-img {
    width: 40.13333333vw;
  }
  .lineup-carousel {
    width: 100%;
    aspect-ratio: 750 / 585;
    margin-top: 0;
    overflow: hidden;
  }
  .lineup-list-itm {
    width: 24vw;
  }
  .lineup-list-itm.is-active {
    width: 37.86666667vw;
  }
  .lineup-list-itm.is-active img {
    width: 43.93333333vw;
  }
  .lineup-list-itm.is-prev {
    transform: translateX(-255%) translateY(6vw) scale(1);
  }
  .lineup-list-itm.is-next {
    transform: translateX(160%) translateY(6vw) scale(1);
  }
  .lineup-list-itm.is-before-prev {
    transform: translateX(-205%) translateY(6vw) scale(1);
  }
  .lineup-list-itm.is-after-next {
    transform: translateX(160%) translateY(6vw) scale(1);
  }
  .lineup-list-itm-txt {
    margin-top: 2.6vw;
    font-size: max(14px, 3.466666667vw);
  }
  .lineup-list-itm-btn {
    margin-top: 2.8vw;
    font-size: max(14px, 3.066666667vw);
  }
  .lineup-list-itm-txt.r-note {
    margin-top: 1vw;
    font-size: max(11px, 1.8vw);
    position: relative;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
  }
  .lineup-carousel-btn {
    top: 18vw;
    width: max(44px, 6.266666667vw);
    height: max(44px, 10.3981685vw);
    aspect-ratio: auto;
    background-size: 6.266666667vw auto;
  }
  .lineup-carousel-btn--prev {
    left: 19vw;
    background-position: left top;
  }
  .lineup-carousel-btn--next {
    right: 19vw;
    background-position: right top;
  }

  .curry-youbi {
    max-width: 100%;
    overflow-x: hidden;
    padding-bottom: 6.6667vw;
  }
  .curry-youbi-vege {
    scale: 1.4;
  }
  .curry-youbi-vege.r-1 {
        --w: 17vw;
        top: 0;
        left: 1vw;
  }
  .curry-youbi-vege.r-2 {
        --w: 16vw;
        top: 4%;
        left: 54vw;
  }
  .curry-youbi-vege.r-3 {
        --w: 17vw;
        top: 1%;
        right: 1vw;
  }
  .curry-youbi-vege.r-4 {
        --w: 12vw;
        top: 10%;
        right: 10vw;
  }
  .curry-youbi-vege.r-5 {
    --w: 12vw;
    top: 42%;
    left: 0;
  }
  .curry-youbi-vege.r-6 {
        --w: 12vw;
        top: 48%;
        left: 12vw;
  }
  .curry-youbi-vege.r-7 {
        --w: 16vw;
        top: 34%;
        right: 0;
  }
  .curry-youbi-vege.r-8 {
        --w: 18vw;
        right: 0;
        bottom: 1%;
  }
  .curry-youbi-vege.r-9 {
        --w: 13vw;
        left: 0;
        bottom: 2%;
  }
  .curry-youbi-vege.r-10 {
        --w: 15vw;
        top: 61%;
        right: 2vw;
  }
  .curry-youbi-itm.r-1 {
    --x: -21.73333333vw;
    --w: 94.53333333vw;
    --mt: -4vw;
  }
  .curry-youbi-itm.r-2 {
    --x: 25.6vw;
    --w: 70.66666667vw;
    --mt: -65vw;
  }
  .curry-youbi-itm.r-3 {
    --x: -10.4%;
    --w: 75.86666667vw;
    --mt: -32vw;
  }
  .curry-youbi-itm.r-4 {
    --x: 22.93333333vw;
    --w: 99.2vw;
    --mt: -56vw;
  }
  .curry-youbi-itm.r-5 {
    --x: -16.26666667%;
    --w: 83.2vw;
    --mt: -55vw;
  }
  .curry-youbi-content {
    width: 82.933333vw;
    margin-top: -30vw;
    gap: 2vw;
  }
  .curry-youbi-content-ttl {
    font-size: 4.933333333vw;
    padding-left: 0.5em;
  }
  .curry-youbi-content-txt {
    font-size: max(14px, 2.666666667vw);
    line-height: 1.7;
    padding-left: 4vw;
    letter-spacing: 0;
  }

  .footer {
    padding: 4.8vw 0;
  }
  .footer-sns-list {
    gap: 3vw;
  }
  .footer-sns-list-itm a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max(44px, 12vw);
    height: max(44px, 12vw);
    padding: 1vw;
  }
  .footer-sns-list-itm img {
    width: 10vw;
  }
  .footer-copy {
    margin-top: 3.6vw;
    font-size: max(11px, 2.8vw);
  }
}

@media screen and (min-width: 360px) and (max-width: 375px) {
  .curry-youbi-content-txt {
    font-size: max(13px, 2.666666667vw);
  }
}
@media screen and (min-width: 360px) and (max-width: 390px) {
  .secret-3 {
    font-size: max(13px, 3.066666667vw);
  }
}
@media screen and (min-width: 360px) and (max-width: 374px) {
  .secret-txt {
    font-size: max(12px, 3.2vw);
  }
  .secret-3 {
    font-size: max(12px, 3.066666667vw);
  }
}

