@charset "UTF-8";
.mainvisual {
  position: relative;
}
@media (max-width: 834px) {
  .mainvisual {
    align-items: center;
    display: flex;
    height: 100svh;
    justify-content: center;
    min-height: 130vw;
  }
  .mainvisual::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    animation: FVLineAttentionSp 3s ease-out infinite;
    background-color: #64c66b;
    content: "";
    display: block;
    height: 26.6vw;
    opacity: 0;
    transition: opacity 0s 3s;
    width: 0.1vw;
  }
  .-ready .mainvisual::after {
    opacity: 1;
  }
}

.mainvisual__logo {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 834px) {
  .mainvisual__logo {
    aspect-ratio: 468/246;
    width: 78.1vw;
  }
}
@media (min-width: 835px) {
  .mainvisual__logo {
    aspect-ratio: 468/246;
    width: 468px;
  }
}

.mainvisual__slide {
  position: relative;
  opacity: 0;
  transition: opacity 0.5s 1.2s ease;
}
.-ready .mainvisual__slide {
  opacity: 1;
}
@media (max-width: 834px) {
  .mainvisual__slide {
    margin: 4.2vw auto 0;
    width: 82.6vw;
  }
}
@media (min-width: 835px) {
  .mainvisual__slide {
    margin: 32px auto 0;
    width: 674px;
  }
}

.mainvisual__slide__cont {
  overflow: visible !important;
}

.mainvisual__slide__item {
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
}
.mainvisual__slide__item.swiper-slide-active {
  opacity: 1;
}
.mainvisual__slide__item img {
  opacity: 0;
  filter: none;
  animation: glowIn 0.6s ease 1s forwards;
}
@media (max-width: 834px) {
  @keyframes glowIn {
    from {
      opacity: 0;
      filter: none;
    }
    to {
      opacity: 1;
      filter: drop-shadow(0 0 2.5vw #8eed9e) drop-shadow(0 0 5vw rgba(142, 237, 158, 0.5));
    }
  }
}
@media (min-width: 835px) {
  @keyframes glowIn {
    from {
      opacity: 0;
      filter: none;
    }
    to {
      opacity: 1;
      filter: drop-shadow(0 0 24px #8eed9e) drop-shadow(0 0 48px rgba(142, 237, 158, 0.5));
    }
  }
}

.mainvisual__slide__pagenation {
  position: relative !important;
}
@media (max-width: 834px) {
  .mainvisual__slide__pagenation {
    height: 5vw;
    margin-top: 8.1vw;
  }
}
@media (min-width: 835px) {
  .mainvisual__slide__pagenation {
    height: 26px;
    margin-top: 43px;
  }
}
.mainvisual__slide__pagenation .swiper-pagination-bullet {
  background: url("../img/album/ico_dot.png") no-repeat center/contain;
  border-radius: 0;
  display: inline-block;
  opacity: 1;
}
@media (max-width: 834px) {
  .mainvisual__slide__pagenation .swiper-pagination-bullet {
    height: 5vw;
    margin: 0 2.4vw !important;
    width: 4.8vw;
  }
}
@media (min-width: 835px) {
  .mainvisual__slide__pagenation .swiper-pagination-bullet {
    height: 26px;
    margin: 0 24px 0 0 !important;
    width: 24px;
  }
}
.mainvisual__slide__pagenation .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url("../img/album/ico_dot_active_part2.png") no-repeat center/contain;
}

.mainvisal__slide__link {
  position: fixed;
  white-space: nowrap;
  line-height: 1;
  background: linear-gradient(to bottom, #69b96b, #006f9f);
  color: black;
  border-radius: 50vw;
  font-weight: 700;
  z-index: 1000;
}
@media (max-width: 834px) {
  .mainvisal__slide__link {
    position: fixed;
    bottom: 19px;
    right: 15px;
    font-size: 4.4vw;
    padding: 1.7vw 6.9vw 1.7vw 4.2vw;
  }
}
@media (min-width: 835px) {
  .mainvisal__slide__link {
    position: fixed;
    bottom: 30px;
    right: 40px;
    font-size: 1.25rem;
    padding: 9px 41px 9px 31px;
  }
}
.mainvisal__slide__link::after {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0%, -50%);
  background: url(../img/album/arrow_link.svg) no-repeat center/contain;
}
@media (max-width: 834px) {
  .mainvisal__slide__link::after {
    width: 4.8vw;
    height: 4.8vw;
  }
}
@media (min-width: 835px) {
  .mainvisal__slide__link::after {
    width: 26px;
    height: 26px;
  }
}

.mainvisual__slide__num {
  position: absolute;
  animation: glow 3s ease-in-out infinite;
}
@media (max-width: 834px) {
  .mainvisual__slide__num {
    position: absolute;
    top: -54.4vw;
    right: -8.6vw;
    width: 51.2vw;
    height: 60.6vw;
    background: url("../img/album/num_album_part2_sp.svg");
    opacity: 0.7;
  }
}
@media (min-width: 835px) {
  .mainvisual__slide__num {
    position: absolute;
    top: -168px;
    right: -229px;
    width: 277px;
    height: 332px;
    background: url("../img/album/num_album_part2.svg");
  }
}
@keyframes glow {
  0%, 100% {
    filter: brightness(100%) drop-shadow(0 0 24px #64c66b);
  }
  50% {
    filter: brightness(150%) drop-shadow(0 0 15px #64c66b) drop-shadow(0 0 30px #64c66b);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100svh;
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  z-index: 1000;
}
.modal.-active {
  opacity: 1;
  visibility: visible;
}

.modal__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  height: 60%;
  transform: translate(-50%, -50%);
  width: 60%;
}

.modal__close {
  position: absolute;
  top: 10px;
  left: unset;
  bottom: unset;
  right: 24px;
}
.modal__close span {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
}
.modal__close span::after, .modal__close span::before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  content: "";
  display: block;
  height: 0.0625rem;
  width: 1.5rem;
}
.modal__close span::after {
  transform: rotate(-45deg);
}
.modal__close span::before {
  transform: rotate(45deg);
}

.movie {
  filter: drop-shadow(0px 0px 12px rgba(100, 198, 107, 0.3));
  margin: 0 auto;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s 0s;
}
@media (min-width: 835px) {
  .movie {
    width: 100%;
  }
}
.movie.-reveal {
  opacity: 1;
}

.movie__inner {
  padding-top: 56.03%;
  position: relative;
  width: 100%;
}

.movie__iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 834px) {
  .musiclist {
    margin-top: 4vw;
  }
}
@media (min-width: 835px) {
  .musiclist {
    margin-top: 18px;
  }
}

.musiclist__list__item {
  position: relative;
  align-items: center;
  border-top: 1px solid #dad0ce;
  display: flex;
  justify-content: space-between;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: all 0.5s 0s;
}
.musiclist__list__item:last-of-type {
  border-bottom: 1px solid #dad0ce;
}
.musiclist__list__item.-reveal {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
@media (max-width: 834px) {
  .musiclist__list__item {
    min-height: 15.2vw;
    padding: 5vw 0;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item {
    padding: 24px 0;
  }
}
.musiclist__list__item .ttl {
  align-items: center;
  display: flex;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 834px) {
  .musiclist__list__item .ttl {
    font-size: 3.7vw;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item .ttl {
    font-size: 1.125rem;
  }
}
.musiclist__list__item .ttl span {
  display: inline-block;
  line-height: 1;
}
@media (max-width: 834px) {
  .musiclist__list__item .ttl span {
    font-size: 3.4vw;
    margin-right: 3.2vw;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item .ttl span {
    font-size: 1rem;
    margin-right: 16px;
  }
}
.musiclist__list__item .tieup {
  align-items: center;
  display: flex;
}
@media (max-width: 834px) {
  .musiclist__list__item .tieup {
    font-size: 2.9vw;
    margin-top: 1.6vw;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item .tieup {
    font-size: 0.75rem;
    margin-top: 8px;
  }
}
.musiclist__list__item .tieup::before {
  content: "ー";
  display: block;
}
@media (max-width: 834px) {
  .musiclist__list__item .tieup::before {
    margin-right: 0.5vw;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item .tieup::before {
    margin-right: 4px;
  }
}
.musiclist__list__item .watch {
  transition: all 0.3s ease;
  background: #64c66b;
  border-radius: 9999px;
  color: #000;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  position: relative;
}
@media (max-width: 834px) {
  .musiclist__list__item .watch {
    border: 1px solid #64c66b;
    font-size: 2.9vw;
    position: absolute;
    top: 4.5vw;
    right: 0;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item .watch {
    font-size: 0.875rem;
    border: 2px solid #64c66b;
  }
}
.musiclist__list__item .watch.-disable {
  opacity: 0.3;
  pointer-events: none;
}
.musiclist__list__item .watch a {
  display: block;
}
@media (max-width: 834px) {
  .musiclist__list__item .watch a {
    padding: 5px 18px 5px 6px;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item .watch a {
    padding: 6px 22px 6px 10px;
  }
}
.musiclist__list__item .watch:after {
  position: absolute;
  top: 50%;
  right: 6px;
  transition: all 0.3s ease;
  content: "▶";
  display: block;
  pointer-events: none;
  transform: translateY(-50%);
}
@media (max-width: 834px) {
  .musiclist__list__item .watch:after {
    font-size: 1.8vw;
  }
}
@media (min-width: 835px) {
  .musiclist__list__item .watch:after {
    font-size: 0.6875rem;
  }
}

@media (max-width: 834px) {
  .product {
    margin-top: 4vw;
  }
}
@media (min-width: 835px) {
  .product {
    margin-top: 18px;
  }
}

.product__head {
  opacity: 0;
  position: relative;
  transition: opacity 0.8s 0s;
}
@media (max-width: 834px) {
  .product__head {
    margin: 0 auto;
    padding: 3vw 0 3vw 9.7vw;
    width: 75.2vw;
  }
}
@media (min-width: 835px) {
  .product__head {
    display: flex;
    margin: 0 auto;
    width: 748px;
  }
}
.product__head.-reveal {
  opacity: 1;
}
.product__head::before, .product__head::after {
  border: 2px solid #dad0ce;
  content: "";
  height: 100%;
}
@media (max-width: 834px) {
  .product__head::before, .product__head::after {
    width: 2.9vw;
  }
}
@media (min-width: 835px) {
  .product__head::before, .product__head::after {
    width: 11px;
  }
}
.product__head::before {
  position: absolute;
  top: 0;
  left: 0;
  border-right: none;
}
.product__head::after {
  position: absolute;
  top: 0;
  right: 0;
  border-left: none;
}

.product__head__item {
  line-height: 1;
}
@media (min-width: 835px) {
  .product__head__item {
    padding: 8px 0 8px 43px;
  }
}
@media (max-width: 834px) {
  .product__head__item + .product__head__item {
    margin-top: 2.5vw;
  }
}
@media (min-width: 835px) {
  .product__head__item.-streaming {
    width: 50%;
  }
}
@media (max-width: 834px) {
  .product__head__item.-streaming .cate {
    padding-left: 6.6vw;
  }
}
@media (min-width: 835px) {
  .product__head__item.-streaming .cate {
    padding-left: 35px;
  }
}
.product__head__item.-streaming .cate::before {
  background: url(../img/album/ico_streaming.svg) no-repeat center/contain;
}
@media (max-width: 834px) {
  .product__head__item.-streaming .cate::before {
    height: 3.7vw;
    width: 5.3vw;
  }
}
@media (min-width: 835px) {
  .product__head__item.-streaming .cate::before {
    height: 20px;
    width: 28px;
  }
}
.product__head__item.-cd {
  position: relative;
}
@media (min-width: 835px) {
  .product__head__item.-cd {
    width: 50%;
  }
}
@media (max-width: 834px) {
  .product__head__item.-cd .cate {
    padding-left: 5.3vw;
  }
}
@media (min-width: 835px) {
  .product__head__item.-cd .cate {
    padding-left: 30px;
  }
}
.product__head__item.-cd .cate::before {
  background: url(../img/album/ico_cd.svg) no-repeat center/contain;
}
@media (max-width: 834px) {
  .product__head__item.-cd .cate::before {
    height: 4vw;
    width: 4vw;
  }
}
@media (min-width: 835px) {
  .product__head__item.-cd .cate::before {
    height: 22px;
    width: 22px;
  }
}
@media (min-width: 835px) {
  .product__head__item.-cd::before {
    position: absolute;
    top: 0;
    left: 0;
    background: #dad0ce;
    content: "";
    height: 100%;
    width: 1px;
  }
}
.product__head__item .cate {
  font-weight: 500;
  position: relative;
}
@media (max-width: 834px) {
  .product__head__item .cate {
    font-size: 3.7vw;
  }
}
@media (min-width: 835px) {
  .product__head__item .cate {
    font-size: 1.25rem;
  }
}
.product__head__item .cate::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  transform: translateY(-50%);
}
.product__head__item .date {
  font-weight: 700;
}
@media (max-width: 834px) {
  .product__head__item .date {
    font-size: 5.3vw;
    letter-spacing: 0.05em;
    margin-top: 1.3vw;
  }
}
@media (min-width: 835px) {
  .product__head__item .date {
    font-size: 1.875rem;
    letter-spacing: 0.03em;
    margin-top: 5px;
  }
}

.product__catch {
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s 0s;
  position: relative;
}
.product__catch.-reveal {
  opacity: 1;
}
@media (max-width: 834px) {
  .product__catch {
    font-size: 3.7vw;
    letter-spacing: -0.03em;
    line-height: 1.7857142857;
    margin-top: 10.6vw;
    padding-bottom: 10.6vw;
  }
}
@media (min-width: 835px) {
  .product__catch {
    font-size: 1rem;
    line-height: 1.8125;
    margin-top: 53px;
    padding-bottom: 50px;
  }
}
.product__catch::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #fff;
  content: "";
  transform: translateX(-50%);
}
@media (max-width: 834px) {
  .product__catch::after {
    height: 1vw;
    width: 10.6vw;
  }
}
@media (min-width: 835px) {
  .product__catch::after {
    height: 4px;
    width: 48px;
  }
}
.product__catch .color-pink {
  color: #64c66b;
}

@media (max-width: 834px) {
  .product__items {
    margin-top: 12vw;
  }
}
@media (min-width: 835px) {
  .product__items {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 0;
    justify-content: space-between;
    margin-top: 50px;
  }
}

@media (max-width: 834px) {
  .product-item + .product-item {
    margin-top: 7.2vw;
  }
}
@media (min-width: 835px) {
  .product-item {
    width: 29.5238095238%;
  }
}
@media (min-width: 835px) {
  .product-item:nth-of-type(2) .product-item__img {
    transition-delay: 0.3s;
  }
}
@media (min-width: 835px) {
  .product-item:nth-of-type(3) .product-item__img {
    transition-delay: 0.4s;
  }
}

@media (max-width: 834px) {
  .product-item__inner {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}

.product-item__img {
  aspect-ratio: 245/248;
  opacity: 0;
  clip-path: inset(10% 10% 10% 10%);
  transition: opacity 0.25s 0.2s ease-out, clip-path 0.35s 0.2s ease-out;
}
@media (max-width: 834px) {
  .product-item__img {
    width: 35.7vw;
  }
}
@media (min-width: 835px) {
  .product-item__img {
    width: 248px;
  }
}
.product-item__img img {
  height: auto;
  width: 100%;
}
.-reveal .product-item__img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.product-item__texts {
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.35s 0.7s ease-out, transform 0.5s 0.7s ease-out;
}
@media (max-width: 834px) {
  .product-item__texts {
    width: 48.5vw;
  }
}
@media (min-width: 835px) {
  .product-item__texts {
    margin-top: 16px;
  }
}
.product-item__texts.-normal {
  transition-delay: 0.9s;
}
.-reveal .product-item__texts {
  opacity: 1;
  transform: translate(0, 0);
}

.product-item__offer {
  color: rgba(218, 208, 206, 0.6);
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.35s 0.7s ease-out, transform 0.5s 0.7s ease-out;
}
@media (max-width: 834px) {
  .product-item__offer {
    font-size: 2.9vw;
    line-height: 1.5454545455;
    margin-top: 2.6vw;
  }
}
@media (min-width: 835px) {
  .product-item__offer {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 6px;
  }
}
.-reveal .product-item__offer {
  opacity: 1;
  transform: translate(0, 0);
}

.product__ttl {
  align-items: center;
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 834px) {
  .product__ttl {
    font-size: 4.5vw;
  }
}
@media (min-width: 835px) {
  .product__ttl {
    font-size: 1.375rem;
  }
}

.product__detail {
  line-height: 1.4;
}
@media (max-width: 834px) {
  .product__detail {
    font-size: 3.2vw;
    margin-top: 2.9vw;
  }
}
@media (min-width: 835px) {
  .product__detail {
    font-size: 0.9375rem;
    margin-top: 16px;
  }
}
.product__detail .about {
  line-height: 1.4666666667;
}
@media (max-width: 834px) {
  .product__detail .about {
    margin-top: 1vw;
  }
}
@media (min-width: 835px) {
  .product__detail .about {
    margin-top: 6px;
  }
}

.product__detail__item {
  align-items: center;
  display: flex;
}
@media (max-width: 834px) {
  .product__detail__item + .product__detail__item {
    margin-top: 1.3vw;
  }
}
@media (min-width: 835px) {
  .product__detail__item + .product__detail__item {
    margin-top: 9px;
  }
}
.product__detail__item .cate {
  border: 1px solid #dad0ce;
  line-height: 1;
  text-align: center;
}
@media (max-width: 834px) {
  .product__detail__item .cate {
    font-size: 2.9vw;
    margin-right: 1.3vw;
    min-width: 8.5vw;
    padding: 0.2vw 0 0.4vw;
  }
}
@media (min-width: 835px) {
  .product__detail__item .cate {
    font-size: 0.875rem;
    margin-right: 7px;
    min-width: 50px;
    padding: 1px 0 3px;
  }
}
@media (max-width: 834px) {
  .product__detail__item .mum {
    letter-spacing: -0.03em;
  }
}

@media (max-width: 834px) {
  .product__bonus {
    margin-top: 6.1vw;
  }
}
@media (min-width: 835px) {
  .product__bonus {
    margin-top: 36px;
  }
}

.product__bonus__ttl {
  align-items: center;
  display: flex;
  font-weight: 900;
}
@media (max-width: 834px) {
  .product__bonus__ttl {
    font-size: 5vw;
  }
}
@media (min-width: 835px) {
  .product__bonus__ttl {
    font-size: 1.625rem;
  }
}
.product__bonus__ttl::before {
  background: #dad0ce;
  content: "";
  display: inline-block;
}
@media (max-width: 834px) {
  .product__bonus__ttl::before {
    height: 0.5vw;
    margin-right: 2.1vw;
    width: 5.3vw;
  }
}
@media (min-width: 835px) {
  .product__bonus__ttl::before {
    height: 2px;
    margin-right: 8px;
    width: 24px;
  }
}

.product__note__flex {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 834px) {
  .product__note__flex {
    align-items: center;
    margin-top: 4.2vw;
  }
}
@media (min-width: 835px) {
  .product__note__flex {
    align-items: flex-end;
    margin-top: 16px;
  }
}
@media (max-width: 834px) {
  .product__note__flex + .product__note__flex {
    margin-top: 6.4vw;
  }
}
@media (min-width: 835px) {
  .product__note__flex + .product__note__flex {
    margin-top: 32px;
  }
}

.product__note {
  position: relative;
}
@media (max-width: 834px) {
  .product__note {
    padding-left: 4.6vw;
  }
}
@media (min-width: 835px) {
  .product__note {
    padding-left: 20px;
  }
}
.product__note::before {
  position: absolute;
  top: 0;
  left: 0;
  background: #64c66b;
  content: "";
  height: 98%;
}
@media (max-width: 834px) {
  .product__note::before {
    width: 1.6vw;
  }
}
@media (min-width: 835px) {
  .product__note::before {
    width: 6px;
  }
}
.product__note .ttl {
  color: #64c66b;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 834px) {
  .product__note .ttl {
    font-size: 3.7vw;
  }
}
@media (min-width: 835px) {
  .product__note .ttl {
    font-size: 1rem;
  }
}
@media (max-width: 834px) {
  .product__note .txt {
    font-size: 3.4vw;
    line-height: 1.6153846154;
    margin-top: 0.8vw;
  }
}
@media (min-width: 835px) {
  .product__note .txt {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 5px;
  }
}
.product__note .txt strong {
  font-weight: 900;
}

.product__offer {
  color: rgba(218, 208, 206, 0.6);
}
@media (max-width: 834px) {
  .product__offer {
    font-size: 2.9vw;
    line-height: 1.6363636364;
    margin-top: 1.3vw;
  }
}
@media (min-width: 835px) {
  .product__offer {
    position: absolute;
    left: 0;
    bottom: -25px;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 10px;
  }
}

@media (max-width: 834px) {
  .product__bonusph {
    flex-shrink: 0;
    margin-left: 5vw;
    width: 28.8vw;
  }
}
@media (min-width: 835px) {
  .product__bonusph {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
  }
}
.product__bonusph .ph {
  aspect-ratio: 1/1;
  width: 100%;
}
.product__bonusph .ph img {
  height: auto;
  width: 100%;
}
.product__bonusph .offer {
  color: rgba(218, 208, 206, 0.6);
  font-weight: 500;
}
@media (min-width: 835px) {
  .product__bonusph .offer {
    font-size: 0.75rem;
    margin-top: 2px;
  }
}

.product__bonus__ttl,
.product__note,
.product__note__flex {
  opacity: 0;
  transition: opacity 0.5s 0s;
}
.product__bonus__ttl.-reveal,
.product__note.-reveal,
.product__note__flex.-reveal {
  opacity: 1;
}
.-reveal .product__bonus__ttl,
.-reveal .product__note,
.-reveal .product__note__flex {
  opacity: 1;
}

@media (min-width: 835px) {
  .section:nth-of-type(1) {
    margin-top: 118px;
  }
}
@media (max-width: 834px) {
  .section:nth-of-type(2) {
    margin-top: 13.3vw;
  }
}
@media (min-width: 835px) {
  .section:nth-of-type(2) {
    margin-top: 98px;
  }
}
@media (max-width: 834px) {
  .section:nth-of-type(n+3) {
    margin-top: 18.6vw;
  }
}
@media (min-width: 835px) {
  .section:nth-of-type(n+3) {
    margin-top: 118px;
  }
}

.section__col {
  align-items: center;
  color: #64c66b;
  display: flex;
  justify-content: space-between;
  line-height: 1;
}

.section__title {
  font-weight: 700;
  letter-spacing: 0.035em;
}
@media (max-width: 834px) {
  .section__title {
    font-size: 5.6vw;
  }
}
@media (min-width: 835px) {
  .section__title {
    font-size: 2rem;
  }
}

@media (max-width: 834px) {
  .section__note {
    font-size: 2.9vw;
    letter-spacing: 0.055em;
  }
}
@media (min-width: 835px) {
  .section__note {
    font-size: 0.75rem;
    letter-spacing: 0.055em;
  }
}

.section-image {
  aspect-ratio: 1/1;
}
@media (max-width: 834px) {
  .section-image {
    margin: 15vw auto 11vw;
    width: 43vw;
  }
}
@media (min-width: 835px) {
  .section-image {
    margin: 140px auto 85px;
    width: 270px;
  }
}

.share__col {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 834px) {
  .share__col {
    gap: 0 4vw;
  }
}
@media (min-width: 835px) {
  .share__col {
    gap: 0 18px;
  }
}
.share__col img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

.share__text {
  line-height: 1;
}
@media (max-width: 834px) {
  .share__text {
    font-size: 3.4vw;
  }
}
@media (min-width: 835px) {
  .share__text {
    font-size: 0.9375rem;
  }
}

@media (max-width: 834px) {
  .share__x {
    width: 5.8vw;
  }
}
@media (min-width: 835px) {
  .share__x {
    width: 26px;
  }
}

@media (max-width: 834px) {
  .share__line {
    width: 6.6vw;
  }
}
@media (min-width: 835px) {
  .share__line {
    width: 29px;
  }
}

.share__copy {
  text-align: center;
}
@media (max-width: 834px) {
  .share__copy {
    font-size: 2.6vw;
    margin-top: 4vw;
  }
}
@media (min-width: 835px) {
  .share__copy {
    margin-top: 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 834px) {
  .store {
    margin-block: 5.3vw 18.6vw;
  }
}
@media (min-width: 835px) {
  .store {
    margin-block: 30px 118px;
  }
}

@media (min-width: 835px) {
  .store__items {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 834px) {
  .store__item + .store__item {
    margin-top: 5.3vw;
  }
}
@media (min-width: 835px) {
  .store__item {
    width: 47.619047619%;
  }
}

.store__head {
  color: #64c66b;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 834px) {
  .store__head {
    font-size: 3.4vw;
  }
}
@media (min-width: 835px) {
  .store__head {
    font-size: 1.25rem;
  }
}

.store__lists {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 834px) {
  .store__lists {
    gap: 3.2vw 0;
  }
}
@media (min-width: 835px) {
  .store__lists {
    gap: 16px 0;
  }
}

.store__list {
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.35s ease-out, transform 0.5s ease-out;
}
.store__list.-bd {
  border: 1px solid #fff;
}
.store__list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 834px) {
  .store__list {
    width: 43.2vw;
  }
}
@media (min-width: 835px) {
  .store__list {
    width: 48%;
  }
}
.store__list:nth-child(1) {
  transition-delay: 0.36s;
}
.store__list:nth-child(2) {
  transition-delay: 0.42s;
}
.store__list:nth-child(3) {
  transition-delay: 0.48s;
}
.store__list:nth-child(4) {
  transition-delay: 0.54s;
}
.store__list:nth-child(5) {
  transition-delay: 0.6s;
}
.store__list:nth-child(6) {
  transition-delay: 0.66s;
}
.store__list:nth-child(7) {
  transition-delay: 0.72s;
}
.store__list:nth-child(8) {
  transition-delay: 0.78s;
}
.store__list:nth-child(9) {
  transition-delay: 0.84s;
}
.store__list:nth-child(10) {
  transition-delay: 0.9s;
}
.-reveal .store__list {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 834px) {
  .storebonus {
    margin-top: 5.3vw;
  }
}
@media (min-width: 835px) {
  .storebonus {
    margin-top: 30px;
  }
}

.storebonus__catch {
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s 0s;
  position: relative;
}
.storebonus__catch.-reveal {
  opacity: 1;
}
@media (max-width: 834px) {
  .storebonus__catch {
    font-size: 3.7vw;
    letter-spacing: -0.03em;
    line-height: 1.7857142857;
    margin-top: 4.2vw;
    padding-bottom: 3.2vw;
  }
}
@media (min-width: 835px) {
  .storebonus__catch {
    font-size: 1rem;
    line-height: 1.8125;
    margin-top: 24px;
    padding-bottom: 50px;
  }
}

.storebonus__list__note {
  position: relative;
}
@media (max-width: 834px) {
  .storebonus__list__note {
    padding-left: 4.6vw;
  }
}
@media (min-width: 835px) {
  .storebonus__list__note {
    padding-left: 20px;
    max-width: 584px;
  }
}
.storebonus__list__note::before {
  position: absolute;
  top: 0;
  left: 0;
  background: #64c66b;
  content: "";
  height: 95%;
}
@media (max-width: 834px) {
  .storebonus__list__note::before {
    width: 1.6vw;
  }
}
@media (min-width: 835px) {
  .storebonus__list__note::before {
    width: 6px;
  }
}
.storebonus__list__note .ttl {
  color: #64c66b;
  font-weight: 900;
  line-height: 1.5;
}
@media (max-width: 834px) {
  .storebonus__list__note .ttl {
    font-size: 3.7vw;
  }
}
@media (min-width: 835px) {
  .storebonus__list__note .ttl {
    font-size: 1rem;
  }
}
.storebonus__list__note .txt {
  font-weight: 400;
}
@media (max-width: 834px) {
  .storebonus__list__note .txt {
    font-size: 3.4vw;
    line-height: 1.6153846154;
    margin-top: 0.8vw;
  }
}
@media (min-width: 835px) {
  .storebonus__list__note .txt {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 5px;
  }
}

.storebonus__items {
  position: relative;
}

.storebonus__lists {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 834px) {
  .storebonus__lists {
    gap: 5.3vw 0;
  }
}
@media (min-width: 835px) {
  .storebonus__lists {
    gap: 32px 40px;
  }
}

.storebonus__list {
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.35s ease-out, transform 0.5s ease-out;
}
.storebonus__list:nth-child(1) {
  transition-delay: 0.36s;
}
.storebonus__list:nth-child(2) {
  transition-delay: 0.42s;
}
.storebonus__list:nth-child(3) {
  transition-delay: 0.48s;
}
.storebonus__list:nth-child(4) {
  transition-delay: 0.54s;
}
.storebonus__list:nth-child(5) {
  transition-delay: 0.6s;
}
.storebonus__list:nth-child(6) {
  transition-delay: 0.66s;
}
.storebonus__list:nth-child(7) {
  transition-delay: 0.72s;
}
.storebonus__list:nth-child(8) {
  transition-delay: 0.78s;
}
.storebonus__list:nth-child(9) {
  transition-delay: 0.84s;
}
.storebonus__list:nth-child(10) {
  transition-delay: 0.9s;
}
.-reveal .storebonus__list {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 834px) {
  .storebonus__list {
    width: 100%;
  }
}
@media (min-width: 835px) {
  .storebonus__list {
    width: calc(50% - 20px);
  }
}

.storebonus__list__cont {
  position: relative;
}
@media (max-width: 834px) {
  .storebonus__list__cont {
    margin-top: 3.2vw;
  }
}
@media (min-width: 835px) {
  .storebonus__list__cont {
    margin-top: 1.6vw;
  }
}
.storebonus__list__cont .shoulder {
  position: absolute;
  top: 0;
  left: 0;
  background: #64c66b;
  color: #000;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media (max-width: 834px) {
  .storebonus__list__cont .shoulder {
    font-size: 3.2vw;
    padding: 1vw 1.3vw 1.3vw;
    min-width: 20.2vw;
  }
}
@media (min-width: 835px) {
  .storebonus__list__cont .shoulder {
    font-size: 0.9375rem;
    padding: 5px 6px 7px;
    min-width: 90px;
  }
}

.storebonus__offer {
  color: rgba(218, 208, 206, 0.6);
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.35s ease-out, transform 0.5s ease-out;
  transition-delay: 0.95s;
}
.-reveal .storebonus__offer {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 834px) {
  .storebonus__offer {
    font-size: 2.9vw;
    line-height: 1.6363636364;
    margin-top: 2.1vw;
  }
}
@media (min-width: 835px) {
  .storebonus__offer {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    width: 400px;
  }
}