@charset "UTF-8";
:root {
  --maincolor: #00ffd9;
  --subcolor: #ffc000;
  --textcolor: #fff;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#sunriseplamocollection2025 {
  font-size: 15px;
  font-family: "黎ミン M", "Reimin Medium", sans-serif;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0;
  color: var(--textcolor);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #sunriseplamocollection2025 {
    font-size: 1.32vw;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 {
    font-size: max(2.2vw,12px);
  }
}

#sunriseplamocollection2025 * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#sunriseplamocollection2025 *:before, #sunriseplamocollection2025 *:after {
  content: none;
  visibility: visible;
  height: initial;
}

#sunriseplamocollection2025 a {
  opacity: 1;
  color: inherit;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#sunriseplamocollection2025 a.hover {
  color: var(--maincolor);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#sunriseplamocollection2025 ul, #sunriseplamocollection2025 ol {
  list-style: none;
}

#sunriseplamocollection2025 img {
  max-width: 100%;
  height: auto;
  display: block;
}

#sunriseplamocollection2025 .cover {
  width: 100%;
  max-width: none;
  height: auto;
}

#sunriseplamocollection2025 .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#sunriseplamocollection2025 .widthWrapper {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .widthWrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
}

#sunriseplamocollection2025 .insideWrapper {
  position: relative;
  width: 80%;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#sunriseplamocollection2025 :root {
  --c-flex-gap: 2%;
}

#sunriseplamocollection2025 .c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#sunriseplamocollection2025 .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#sunriseplamocollection2025 .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#sunriseplamocollection2025 .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#sunriseplamocollection2025 .c-flex--2 > * {
  width: calc(100% / 2);
}

#sunriseplamocollection2025 .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#sunriseplamocollection2025 .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#sunriseplamocollection2025 .c-flex--3 > * {
  width: calc(100% / 3);
}

#sunriseplamocollection2025 .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#sunriseplamocollection2025 .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#sunriseplamocollection2025 .c-flex--4 > * {
  width: calc(100% / 4);
}

#sunriseplamocollection2025 .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#sunriseplamocollection2025 .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#sunriseplamocollection2025 .c-flex--5 > * {
  width: calc(100% / 5);
}

#sunriseplamocollection2025 .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#sunriseplamocollection2025 .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#sunriseplamocollection2025 .c-flex--6 > * {
  width: calc(100% / 6);
}

#sunriseplamocollection2025 .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#sunriseplamocollection2025 .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#sunriseplamocollection2025 .c-flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#sunriseplamocollection2025 .c-flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sunriseplamocollection2025 .c-flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#sunriseplamocollection2025 .c-flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#sunriseplamocollection2025 .c-flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sunriseplamocollection2025 .c-flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#sunriseplamocollection2025 .c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#sunriseplamocollection2025 .c-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#sunriseplamocollection2025 .alignCenter {
  text-align: center;
}

#sunriseplamocollection2025 .alignRight {
  text-align: right;
}

#sunriseplamocollection2025 .alignLeft {
  text-align: left;
}

#sunriseplamocollection2025 img.alignCenter {
  margin-left: auto;
  margin-right: auto;
}

#sunriseplamocollection2025 img.alignLeft {
  margin-left: 0;
  margin-right: auto;
}

#sunriseplamocollection2025 img.alignRight {
  margin-left: auto;
  margin-right: 0;
}

#sunriseplamocollection2025 .lh-10 {
  line-height: 1;
}

#sunriseplamocollection2025 .lh-15 {
  line-height: 1.5;
}

#sunriseplamocollection2025 .lh-20 {
  line-height: 2;
}

#sunriseplamocollection2025 .font-10 {
  font-size: 10px !important;
}

#sunriseplamocollection2025 .font-12 {
  font-size: 12px !important;
}

#sunriseplamocollection2025 .font-14 {
  font-size: 14px !important;
}

#sunriseplamocollection2025 .font-16 {
  font-size: 16px !important;
}

#sunriseplamocollection2025 .font-18 {
  font-size: 18px !important;
}

#sunriseplamocollection2025 .font-20 {
  font-size: 20px !important;
}

#sunriseplamocollection2025 .font-22 {
  font-size: 22px !important;
}

#sunriseplamocollection2025 .font-24 {
  font-size: 24px !important;
}

#sunriseplamocollection2025 .font-26 {
  font-size: 26px !important;
}

#sunriseplamocollection2025 .font-28 {
  font-size: 28px !important;
}

#sunriseplamocollection2025 .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #sunriseplamocollection2025 .font-10 {
    font-size: 0.83333vw !important;
  }
  #sunriseplamocollection2025 .font-12 {
    font-size: 1vw !important;
  }
  #sunriseplamocollection2025 .font-14 {
    font-size: 1.16667vw !important;
  }
  #sunriseplamocollection2025 .font-16 {
    font-size: 1.33333vw !important;
  }
  #sunriseplamocollection2025 .font-18 {
    font-size: 1.5vw !important;
  }
  #sunriseplamocollection2025 .font-20 {
    font-size: 1.66667vw !important;
  }
  #sunriseplamocollection2025 .font-22 {
    font-size: 1.83333vw !important;
  }
  #sunriseplamocollection2025 .font-24 {
    font-size: 2vw !important;
  }
  #sunriseplamocollection2025 .font-26 {
    font-size: 2.16667vw !important;
  }
  #sunriseplamocollection2025 .font-28 {
    font-size: 2.33333vw !important;
  }
  #sunriseplamocollection2025 .font-30 {
    font-size: 2.5vw !important;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .font-10 {
    font-size: 2.375vw !important;
  }
  #sunriseplamocollection2025 .font-12 {
    font-size: 2.7vw !important;
  }
  #sunriseplamocollection2025 .font-14 {
    font-size: 2.975vw !important;
  }
  #sunriseplamocollection2025 .font-16 {
    font-size: 3.2vw !important;
  }
  #sunriseplamocollection2025 .font-18 {
    font-size: 3.375vw !important;
  }
  #sunriseplamocollection2025 .font-20 {
    font-size: 3.5vw !important;
  }
  #sunriseplamocollection2025 .font-22 {
    font-size: 3.575vw !important;
  }
  #sunriseplamocollection2025 .font-24 {
    font-size: 3.6vw !important;
  }
  #sunriseplamocollection2025 .font-26 {
    font-size: 3.575vw !important;
  }
  #sunriseplamocollection2025 .font-28 {
    font-size: 3.5vw !important;
  }
  #sunriseplamocollection2025 .font-30 {
    font-size: 3.375vw !important;
  }
}

#sunriseplamocollection2025 .mt-5 {
  margin-top: 0.5em !important;
}

#sunriseplamocollection2025 .mt-10 {
  margin-top: 1em !important;
}

#sunriseplamocollection2025 .mt-15 {
  margin-top: 1.5em !important;
}

#sunriseplamocollection2025 .mt-20 {
  margin-top: 2em !important;
}

#sunriseplamocollection2025 .mt-25 {
  margin-top: 2.5em !important;
}

#sunriseplamocollection2025 .mt-30 {
  margin-top: 3em !important;
}

#sunriseplamocollection2025 .mt-35 {
  margin-top: 3.5em !important;
}

#sunriseplamocollection2025 .mt-40 {
  margin-top: 4em !important;
}

#sunriseplamocollection2025 .mt-45 {
  margin-top: 4.5em !important;
}

#sunriseplamocollection2025 .mt-50 {
  margin-top: 5em !important;
}

#sunriseplamocollection2025 .u-bold {
  font-family: "黎ミン B", "Reimin Bold", sans-serif;
}

#sunriseplamocollection2025 .u-heavy {
  font-family: "黎ミン H", "Reimin Heavy", sans-serif;
}

#sunriseplamocollection2025 .u-note {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

#sunriseplamocollection2025 .u-marker {
  padding: 0 0.2em;
  margin: 0 0.2em;
  background: var(--maincolor);
  color: #fff;
}

#sunriseplamocollection2025 .u-maincolor {
  color: var(--maincolor);
}

#sunriseplamocollection2025 .u-subcolor {
  color: var(--subcolor);
}

#sunriseplamocollection2025 .u-hidden {
  display: none;
  visibility: hidden;
}

#sunriseplamocollection2025 .c-blockLink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#sunriseplamocollection2025 [data-ruby] {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#sunriseplamocollection2025 [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  #sunriseplamocollection2025 .sp {
    display: none !important;
  }
  #sunriseplamocollection2025 a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .pc {
    display: none !important;
  }
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#cduWrap {
  width: 100%;
  background: #fff;
}

#cduFooter {
  max-width: 1016px;
}

#sunriseplamocollection2025 .parallaxWrapper {
  position: relative;
}

#sunriseplamocollection2025 .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#sunriseplamocollection2025 .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .parallax {
    background-size: auto 100vh;
  }
  #sunriseplamocollection2025 .parallax.parallax1 .bg {
    background-size: 200% auto;
  }
}

#sunriseplamocollection2025 h2.heading {
  font-family: "黎ミン B", "Reimin Bold", sans-serif;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  color: var(--maincolor);
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 h2.heading {
    font-size: 2.834vw;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 h2.heading {
    font-size: 4.25vw;
  }
}

#sunriseplamocollection2025 h3.heading {
  font-family: "黎ミン B", "Reimin Bold", sans-serif;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1em 0.5em;
  margin: 0 auto;
  border: 1px solid var(--maincolor);
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 h3.heading {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 h3.heading {
    font-size: 4vw;
  }
}

#sunriseplamocollection2025 .c-btn a {
  font-size: 30px;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.175em;
  width: 100%;
  max-width: 21.34em;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#c8ae28), to(#7e6217));
  background: linear-gradient(#c8ae28, #7e6217);
  border-radius: 0.267em;
  padding: 0.1em;
  display: block;
  position: relative;
  -webkit-transition: 0.3s cubic-bezier(0.2, 0, 0, 1.25);
  transition: 0.3s cubic-bezier(0.2, 0, 0, 1.25);
  -webkit-transition: 0.3;
  transition: 0.3;
}

#sunriseplamocollection2025 .c-btn a .wrap {
  width: 100%;
  min-height: 2.134em;
  background: -webkit-gradient(linear, left top, left bottom, from(#006bb6), to(#00b398));
  background: linear-gradient(#006bb6, #00b398);
  border-radius: 0.23em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sunriseplamocollection2025 .c-btn a.vote i {
  width: 1.767em;
  aspect-ratio: 1 / 1;
  margin-right: 0.5em;
}

#sunriseplamocollection2025 .c-btn a.center {
  margin-left: auto;
  margin-right: auto;
}

#sunriseplamocollection2025 .c-btn a:hover {
  -webkit-filter: contrast(0.8) brightness(1.2) drop-shadow(0 0 0.1em rgba(200, 174, 40, 0.5));
          filter: contrast(0.8) brightness(1.2) drop-shadow(0 0 0.1em rgba(200, 174, 40, 0.5));
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 .c-btn a {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .c-btn a {
    font-size: min(4vw,30px);
  }
}

#sunriseplamocollection2025 .c-hr {
  border: none;
  width: 100%;
  height: 1px;
  background: var(--maincolor);
  margin: 0 auto;
  -webkit-transition: 0.6s linear 0.3s;
  transition: 0.6s linear 0.3s;
}

#sunriseplamocollection2025 .c-hr.js-scroll {
  width: 0;
  -webkit-filter: brightness(1.5) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
          filter: brightness(1.5) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
}

#sunriseplamocollection2025 .c-hr.is-scroll {
  width: 100%;
  -webkit-filter: none;
          filter: none;
}

#sunriseplamocollection2025 .p-kv {
  position: relative;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

#sunriseplamocollection2025 .p-kv > *:not(.bg) {
  position: absolute;
}

#sunriseplamocollection2025 .p-kv > *:not(.bg) > img {
  width: 100%;
  max-width: none;
}

#sunriseplamocollection2025 .p-kv .logo {
  top: 9%;
  left: 33%;
  width: 33.7890625%;
  z-index: 20;
}

#sunriseplamocollection2025 .p-kv .txt1 {
  top: 69.7%;
  left: 32.6%;
  width: 34.1796875%;
  z-index: 20;
}

#sunriseplamocollection2025 .p-kv .decL {
  top: 4.3%;
  left: -1.7%;
  width: 43.28125%;
}

#sunriseplamocollection2025 .p-kv .decR {
  top: 4.3%;
  right: -1.7%;
  width: 43.359375%;
}

#sunriseplamocollection2025 .p-kv_slider {
  top: 0%;
  left: 0;
  width: 100%;
  overflow: visible;
  z-index: 10;
}

#sunriseplamocollection2025 .p-kv_slider .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 1s !important;
  transition: 1s !important;
  opacity: 0 !important;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

#sunriseplamocollection2025 .p-kv_slider .swiper-slide-active {
  opacity: 1 !important;
  -webkit-filter: none;
          filter: none;
}

#sunriseplamocollection2025 .p-kv.js-scroll .bg {
  -webkit-transition: 3s cubic-bezier(0.3, 0, 0.3, 1) 0.3s;
  transition: 3s cubic-bezier(0.3, 0, 0.3, 1) 0.3s;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

#sunriseplamocollection2025 .p-kv.js-scroll .logo {
  -webkit-transition: 2s cubic-bezier(0.2, 0, 0.2, 1) 1s;
  transition: 2s cubic-bezier(0.2, 0, 0.2, 1) 1s;
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#sunriseplamocollection2025 .p-kv.js-scroll .txt1 {
  -webkit-transition: 1s ease 2.5s;
  transition: 1s ease 2.5s;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

#sunriseplamocollection2025 .p-kv.js-scroll .decL, #sunriseplamocollection2025 .p-kv.js-scroll .decR {
  -webkit-transition: 1s cubic-bezier(0.6, 0, 0.6, 1) 1.5s;
  transition: 1s cubic-bezier(0.6, 0, 0.6, 1) 1.5s;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#sunriseplamocollection2025 .p-kv.js-scroll .p-kv_slider {
  -webkit-transition: 1s cubic-bezier(0.6, 0, 0.6, 1) 1.8s;
  transition: 1s cubic-bezier(0.6, 0, 0.6, 1) 1.8s;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#sunriseplamocollection2025 .p-kv.is-scroll .bg, #sunriseplamocollection2025 .p-kv.is-scroll .logo, #sunriseplamocollection2025 .p-kv.is-scroll .txt1, #sunriseplamocollection2025 .p-kv.is-scroll .decL, #sunriseplamocollection2025 .p-kv.is-scroll .decR, #sunriseplamocollection2025 .p-kv.is-scroll .p-kv_slider {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .p-kv .logo {
    top: 21.5%;
    left: 4%;
    width: 91.9%;
  }
  #sunriseplamocollection2025 .p-kv .txt1 {
    top: 61.4%;
    left: 0.9%;
    width: 98.2%;
  }
  #sunriseplamocollection2025 .p-kv .decL {
    top: 5.6%;
    left: -12%;
    width: 61.5%;
  }
  #sunriseplamocollection2025 .p-kv .decR {
    top: 5.6%;
    right: -12%;
    width: 61.6%;
  }
  #sunriseplamocollection2025 .p-kv_slider {
    top: 5.7%;
    left: -10%;
    width: 120%;
  }
}

#sunriseplamocollection2025 .p-loopslider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

#sunriseplamocollection2025 .p-sec01 {
  padding-top: 72px;
}

#sunriseplamocollection2025 .p-sec01 h2 {
  font-family: "黎ミン H", "Reimin Heavy", sans-serif;
  font-size: 42px;
  font-weight: normal;
  text-align: center;
  line-height: 1.3;
}

#sunriseplamocollection2025 .p-sec01 h2 .gold {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #e3a846), color-stop(#ffee90), color-stop(80%, #92590f));
  background: linear-gradient(#e3a846 20%, #ffee90, #92590f 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#sunriseplamocollection2025 .p-sec01 h2.js-scroll {
  opacity: 0;
}

#sunriseplamocollection2025 .p-sec01 h2.is-scroll {
  -webkit-animation: sec01H2 2s ease 0.3s 1 normal forwards running;
          animation: sec01H2 2s ease 0.3s 1 normal forwards running;
}

@-webkit-keyframes sec01H2 {
  0% {
    opacity: 0;
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
  10% {
    opacity: 1;
    -webkit-filter: brightness(2) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
            filter: brightness(2) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
  }
  100% {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes sec01H2 {
  0% {
    opacity: 0;
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
  10% {
    opacity: 1;
    -webkit-filter: brightness(2) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
            filter: brightness(2) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
  }
  100% {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 .p-sec01 {
    padding-top: 7%;
  }
  #sunriseplamocollection2025 .p-sec01 h2 {
    font-size: 3.34vw;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .p-sec01 h2 {
    font-size: 4.25vw;
  }
}

#sunriseplamocollection2025 .p-sec02 {
  padding-top: 45px;
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 .p-sec02 {
    padding-top: 5%;
  }
  #sunriseplamocollection2025 .p-sec02 figure img {
    max-width: 50vw;
  }
}

#sunriseplamocollection2025 .p-sec03 {
  padding-top: 45px;
}

#sunriseplamocollection2025 .p-sec03 h4 {
  font-size: 24px;
  text-align: center;
  color: var(--maincolor);
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 .p-sec03 {
    padding-top: 5%;
  }
  #sunriseplamocollection2025 .p-sec03 h4 {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .p-sec03 h4 {
    font-size: 4vw;
  }
}

#sunriseplamocollection2025 .p-sec04 {
  padding-top: 40px;
  padding-bottom: 110px;
}

#sunriseplamocollection2025 .p-sec04 .period {
  font-family: "黎ミン B", "Reimin Bold", sans-serif;
  font-size: 30px;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.14em;
  color: var(--subcolor);
}

#sunriseplamocollection2025 .p-sec04 .bnr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 1220px) {
  #sunriseplamocollection2025 .p-sec04 {
    padding-top: 4%;
    padding-bottom: 11%;
  }
  #sunriseplamocollection2025 .p-sec04 .period {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #sunriseplamocollection2025 .p-sec04 .period {
    font-size: 3.6vw;
  }
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.fadeInPop {
  -webkit-transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.js-scroll.fadeInMask {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
  -webkit-mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
          mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
          mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
  -webkit-mask-size: 300%;
          mask-size: 300%;
  -webkit-mask-position: 100%;
          mask-position: 100%;
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom, .js-scroll.is-scroll.fadeInPop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-scroll.is-scroll.fadeInMask {
  -webkit-mask-position: 0%;
          mask-position: 0%;
}

/* ======== ↑ End main ↑ ======== */
