@charset "UTF-8";
/* =========================================================
body
========================================================= */
body {
  color: #ffffff;
  line-height: 1.5;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
}

img {
  max-width: 100%;
  height: auto;
}
img.w100 {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pc-disp {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-disp {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .to-pc {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .to-sp {
    display: none !important;
  }
}

@media (hover: hover) {
  .opacity-link {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .opacity-link:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/*------------------------------------------
fade up
------------------------------------------*/
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
}
.fadeup.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out;
}
.fade.is-active {
  opacity: 1;
}

/* =========================================================
splash 
========================================================= */
@-webkit-keyframes clippath {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
}
@keyframes clippath {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
}
@-webkit-keyframes colorUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-200%) scaleY(0.8);
            transform: translateY(-200%) scaleY(0.8);
  }
}
@keyframes colorUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-200%) scaleY(0.8);
            transform: translateY(-200%) scaleY(0.8);
  }
}
.splash {
  z-index: 9999;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: clippath 0.66s 2.2s ease-in-out forwards;
          animation: clippath 0.66s 2.2s ease-in-out forwards;
}
@media (min-width: 1025px) {
  .splash {
    -webkit-animation: clippath 1s 2.2s ease-in-out forwards;
            animation: clippath 1s 2.2s ease-in-out forwards;
  }
}
.splash .splash__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.splash .splash__bg {
  background: url(../images/splash_bg.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  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;
}
.splash .splash__cnt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 335px;
  height: 350px;
  -webkit-animation: clippath 0.5s 2.1s ease-in-out forwards;
          animation: clippath 0.5s 2.1s ease-in-out forwards;
}
@media (min-width: 1025px) {
  .splash .splash__cnt {
    width: 38.5065885798vw;
    height: 37.9209370425vw;
    -webkit-animation: clippath 1s 2s ease-in-out forwards;
            animation: clippath 1s 2s ease-in-out forwards;
  }
}
.splash .splash__cnt .logo {
  width: 100%;
  margin: 0 auto 25px;
}
@media (min-width: 1025px) {
  .splash .splash__cnt .logo {
    margin: 0 auto 2.7818448023vw;
  }
}
.splash .splash__cnt .ttl {
  width: 314px;
  margin: 0 auto 30px;
}
@media (min-width: 1025px) {
  .splash .splash__cnt .ttl {
    width: 27.1595900439vw;
    margin: 0 auto 2.2693997072vw;
  }
}
.splash .splash__cnt .date {
  width: 244px;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .splash .splash__cnt .date {
    width: 23.8653001464vw;
  }
}
.splash .splash__color {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation: colorUp 1.5s 1.8s ease-in-out forwards;
          animation: colorUp 1.5s 1.8s ease-in-out forwards;
}
@media (min-width: 1025px) {
  .splash .splash__color {
    -webkit-animation: colorUp 1.5s 1.8s ease-in-out forwards;
            animation: colorUp 1.5s 1.8s ease-in-out forwards;
  }
}
.splash .splash__label {
  width: 100%;
  height: 206px;
}
.splash .splash__label.color--1 {
  background: #2d54a8;
}
.splash .splash__label.color--2 {
  background: #7f67aa;
}
.splash .splash__label.color--3 {
  background: #c677ad;
}

/* =========================================================
l-wrapper
========================================================= */
.l-wrapper {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.page-show .l-wrapper {
  opacity: 1;
}

@-webkit-keyframes fadeLoop {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeLoop {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.star__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.star__bg.left .bg__img {
  background: url(../images/mv_left_bg.webp) no-repeat center top/cover;
}
.star__bg.right .bg__img {
  background: url(../images/mv_right_bg.webp) no-repeat center top/cover;
}
.star__bg.bg__sp .bg__img {
  background: url(../images/mv_sp_bg.png) no-repeat center top/cover;
}
.star__bg .bg__img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
}
.star__bg .bg__img.bg--1 {
  -webkit-animation: fadeLoop 4s ease-in-out infinite;
          animation: fadeLoop 4s ease-in-out infinite;
  z-index: 2;
}
.star__bg .bg__img.bg--2 {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-animation: fadeLoop 4s ease-in-out infinite;
          animation: fadeLoop 4s ease-in-out infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  z-index: 1;
}

/*------------------------------------------
.shining-effect
------------------------------------------*/
@-webkit-keyframes shining-effect {
  0% {
    -webkit-transform: skewX(-20deg) translateX(-150%);
            transform: skewX(-20deg) translateX(-150%);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: skewX(-20deg) translateX(150%);
            transform: skewX(-20deg) translateX(150%);
    opacity: 0;
  }
}
@keyframes shining-effect {
  0% {
    -webkit-transform: skewX(-20deg) translateX(-150%);
            transform: skewX(-20deg) translateX(-150%);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: skewX(-20deg) translateX(150%);
            transform: skewX(-20deg) translateX(150%);
    opacity: 0;
  }
}
.shining-effect {
  position: relative;
  overflow: hidden;
}
.shining-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: shining-effect 2s ease-in-out infinite;
          animation: shining-effect 2s ease-in-out infinite;
}

/*------------------------------------------
left__container
right__container
------------------------------------------*/
.left__container,
.right__container {
  display: none;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
}
@media (min-width: 1025px) {
  .left__container,
  .right__container {
    display: block;
  }
}

/*------------------------------------------
left__container
------------------------------------------*/
.left__container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.left__container .left__mv {
  width: 100%;
  height: 100%;
  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;
  position: relative;
  z-index: 2;
}
.left__container .left__mv .in {
  width: 36.1639824305vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.left__container .mv__logo {
  width: 100%;
  margin: 0 auto 2.635431918vw;
  position: relative;
  overflow: hidden;
}
.left__container .mv__ttl {
  width: 25.4758418741vw;
  margin: 0 auto 2.0497803807vw;
}
.left__container .mv__date {
  width: 22.5475841874vw;
  margin: 0 auto 2.196193265vw;
}
.left__container .mv__person {
  width: 20.1317715959vw;
  margin: 0 auto;
}

/*------------------------------------------
right__container
------------------------------------------*/
.right__container {
  width: 29.6486090776vw;
}
.right__container .inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/*------------------------------------------
gnav
------------------------------------------*/
.nav__container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
@media (min-width: 1025px) {
  .nav__container {
    display: block !important;
    left: auto;
    width: 29.6486090776vw;
  }
}
@media (max-width: 1024px) {
  .nav__container {
    background: #fff;
    display: none;
    overflow: auto;
    overscroll-behavior-y: contain;
  }
}
.nav__container .gav__btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  z-index: 10;
}
@media (min-width: 1025px) {
  .nav__container .gav__btn {
    display: none;
  }
}
.nav__container .gav__header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1025px) {
  .nav__container .gav__header {
    display: none;
  }
}
.nav__container .gav__header .logo {
  width: 105px;
  padding-top: 6px;
}
.nav__container .gav__header .logo > a {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__container .gav__header .gav__close {
  width: 42px;
}
.nav__container .nav__cnt {
  height: 100%;
}
@media (min-width: 1025px) {
  .nav__container .nav__cnt {
    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;
  }
}
@media (max-width: 1024px) {
  .nav__container .nav__cnt {
    width: 100%;
    height: 100%;
    background: url(../images/gnav_bg.png) no-repeat center/cover;
    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;
  }
}
.nav__container .nav__inner {
  position: relative;
  z-index: 2;
}
.nav__container .nav__box {
  width: 230px;
  position: relative;
}
@media (min-width: 1025px) {
  .nav__container .nav__box {
    margin: 0 auto;
  }
}
.nav__container .nav__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.nav__container .nav__list > li {
  width: 100%;
  height: 45px;
}
.nav__container .nav__list > li > a {
  width: 100%;
  height: 100%;
  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;
  border: 1px solid #ffffff;
}
@media (min-width: 1025px) {
  .nav__container .nav__list > li > a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .nav__container .nav__list > li > a:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}
.nav__container .nav__list > li .nav__img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.nav__container .nav__list > li:first-child .nav__img {
  width: 116px;
  margin-top: -6px;
}
.nav__container .nav__list > li:nth-child(2) .nav__img {
  width: 53px;
  margin-top: -6px;
}
.nav__container .nav__list > li:nth-child(3) .nav__img {
  width: 144px;
}
.nav__container .nav__list > li:nth-child(4) .nav__img {
  width: 42px;
  margin-top: -6px;
}
.nav__container .nav__list > li:nth-child(5) .nav__img {
  width: 87px;
}
.nav__container .nav__list > li:nth-child(6) .nav__img {
  width: 74px;
}

/*------------------------------------------
header__container
------------------------------------------*/
.header__container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
@media (min-width: 1025px) {
  .header__container {
    display: none;
  }
}
.header__container .header__box {
  padding: 10px 0 0;
}
.header__container .header__box .inner {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__container .header__box .inner .logo {
  width: 105px;
  padding-top: 6px;
}
.header__container .header__box .inner .logo > a {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__container .header__box .inner .gav__btn {
  width: 42px;
  position: relative;
}

/*------------------------------------------
main__container
------------------------------------------*/
.main__container {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .main__container {
    width: 375px;
  }
}

/*------------------------------------------
mv__container
------------------------------------------*/
.mv__container {
  position: relative;
  height: 144vw;
}
@media (min-width: 1025px) {
  .mv__container {
    display: none;
  }
}
@media (max-width: 1024px) {
  .mv__container {
    z-index: 3;
  }
}
.mv__container .inner {
  width: 89.3333333333vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.mv__container .inner .mv__logo {
  width: 100%;
  margin: 0 auto 6.6666666667vw;
  position: relative;
  overflow: hidden;
}
.mv__container .inner .mv__ttl {
  width: 83.7333333333vw;
  margin: 0 auto 6.6666666667vw;
}
.mv__container .inner .mv__date {
  width: 82.1333333333vw;
  margin: 0 auto 8vw;
}
.mv__container .inner .mv__person {
  width: 61.0666666667vw;
  margin: 0 auto;
}

/*------------------------------------------
lead__container
------------------------------------------*/
.lead__container {
  background: -webkit-gradient(linear, left top, left bottom, from(#e590ba), to(#2753a8));
  background: linear-gradient(to bottom, #e590ba 0%, #2753a8 100%);
  padding: 18px 0 40px;
}
@media (max-width: 1024px) {
  .lead__container {
    position: relative;
    z-index: 3;
  }
}
.lead__container .inner {
  width: 100%;
  padding: 0 26px;
}
.lead__container .txt {
  line-height: 1.9;
  text-align: center;
  font-size: 14px;
  margin-bottom: 25px;
}
.lead__container .date {
  width: 100%;
  margin: 0 auto 40px;
}
.lead__container .btn {
  width: 280px;
  height: 50px;
  margin: 0 auto;
}
.lead__container .btn > a {
  background: url(../images/btn_bg.png) no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  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;
  color: #483e8d;
  -webkit-box-shadow: 3px 3px #483e8d;
          box-shadow: 3px 3px #483e8d;
  font-weight: 700;
  font-size: 13px;
}

/* =========================================================
modal
========================================================= */
.modal-block {
  width: 100vw;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  overflow: scroll;
  z-index: 9999;
  display: none;
}
@media (min-width: 1025px) {
  .modal-block {
    overflow: auto;
    left: 0;
    right: auto;
  }
}

.modal-bg {
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.modal-wrap {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  height: 120lvh;
  margin: 0 auto;
  background: rgb(65, 60, 138);
  mix-blend-mode: multiply;
  position: relative;
}
@media (min-width: 1025px) {
  .modal-wrap {
    width: 375px;
    height: 100vh;
    margin: 0 29.6486090776vw 0 auto;
  }
}
.modal-wrap .modal-wrap-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-cont .contents__block {
  padding: 20px 20px 60px;
}
@media (min-width: 1025px) {
  .modal-cont .contents__block {
    padding: 3.6603221083vw 20px;
  }
}
.modal-cont .contents__info {
  position: relative;
  z-index: 10;
  background: #2a2664;
  padding: 40px 38px 30px;
}
.modal-cont .shop__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.modal-cont .shop__list > li {
  width: 100%;
  padding: 16px 0 0;
  border-top: 1px solid #713B58;
  font-size: 14px;
  line-height: 1.7;
}
.modal-cont .shop__list > li:last-child {
  padding-bottom: 16px;
  border-bottom: 1px solid #713B58;
}

.modal-bottom-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
}
@media (min-width: 1025px) {
  .modal-bottom-close {
    top: calc(3.6603221083vw - 20px);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
  .modal-bottom-close:hover {
    opacity: 0.6;
  }
}

.modal-bottom-close-2 {
  width: 63px;
  height: 15px;
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  z-index: 11;
  margin: auto;
}
@media (min-width: 1025px) {
  .modal-bottom-close-2 {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
  .modal-bottom-close-2:hover {
    opacity: 0.6;
  }
}

/*------------------------------------------
ambassador__container
------------------------------------------*/
.cmn__lead {
  text-align: center;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 30px;
}
.cmn__lead.left {
  text-align: left;
  padding: 0 20px;
}

.container__star,
.ttl__label {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.container__star {
  mix-blend-mode: screen;
}

.section__label {
  mix-blend-mode: screen;
  position: absolute;
}
.section__label.type--1 {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  width: 1070px;
  top: 314px;
  right: -175px;
}
.section__label.type--2 {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  width: 814px;
  top: 470px;
  right: -251px;
}
.section__label.type--3 {
  -webkit-transform: rotate(142deg);
          transform: rotate(142deg);
  width: 814px;
  top: 1547px;
  left: 0;
}
.section__label.type--4 {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  width: 814px;
  top: 1015px;
  right: -292px;
}
.section__label.type--5 {
  -webkit-transform: scale(1, -1) rotate(-30deg);
          transform: scale(1, -1) rotate(-30deg);
  width: 814px;
  bottom: -94px;
  right: -93px;
}

.ambassador__container {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#202B63), to(#605da8));
  background: linear-gradient(to bottom, #202B63 0%, #605da8 100%);
  padding: 117px 0 40px;
}
@media (max-width: 1024px) {
  .ambassador__container {
    z-index: 3;
  }
}
.ambassador__container .inner {
  width: 100;
  padding: 0 20px;
  position: relative;
}
.ambassador__container .ambassador__ttl {
  width: 200px;
  margin: 0 auto 35px;
  position: relative;
  overflow: hidden;
}
.ambassador__container .cmn__lead {
  line-height: 1.8;
  font-size: 13px;
}
.ambassador__container .ambassador__img {
  width: 100%;
  margin: 0 auto 14px;
}
.ambassador__container .ambassador__name {
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 14px;
}
.ambassador__container .ambassador__category {
  color: #DE9ED0;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 11px;
}
.ambassador__container .ambassador__sns {
  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;
  gap: 15px;
  margin: 0 auto 20px;
}
.ambassador__container .ambassador__sns > li {
  width: 30px;
}
.ambassador__container .ambassador__sns > li > a {
  display: block;
  width: 100%;
}
.ambassador__container .ambassador____info {
  padding: 0 10px;
  line-height: 2;
  font-size: 12px;
}

/*------------------------------------------
movie__special--container
------------------------------------------*/
.movie__special--container {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#605da8), color-stop(30%, #CB70A8), to(#2753a8));
  background: linear-gradient(to bottom, #605da8 0%, #CB70A8 30%, #2753a8 100%);
}
@media (max-width: 1024px) {
  .movie__special--container {
    z-index: 3;
  }
}
.movie__special--container .movie__block {
  position: relative;
  padding: 27px 0 80px;
}
.movie__special--container .movie__block .inner {
  width: 100%;
  padding: 0 20px;
}
.movie__special--container .movie__ttlbg {
  position: absolute;
  width: 245px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
.movie__special--container .movie__ttl {
  width: 94px;
  margin: 0 auto 35px;
  overflow: hidden;
  position: relative;
}
.movie__special--container .movie__img {
  width: 100%;
  margin: 0 auto;
}
.movie__special--container .special__block {
  position: relative;
  padding: 0 0 40px;
}
.movie__special--container .special__block::before {
  content: "";
  position: absolute;
  background: url(../images/icon_lantern.png) no-repeat center/100%;
  width: 56px;
  height: 84px;
  top: -23px;
  right: 0;
}
.movie__special--container .special__block .special__ttl {
  width: 254px;
  margin: 0 auto 24px;
  position: relative;
  overflow: hidden;
}
.movie__special--container .special__block .special__list--cnt {
  width: 100%;
  padding: 0 44px;
  position: relative;
  z-index: 2;
  margin: 0 auto 30px;
}
.movie__special--container .special__block .special__list--cnt:last-child {
  margin: 0 auto;
}
.movie__special--container .special__block .special__list--cnt .special__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 20px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li .img {
  width: 100%;
}
.movie__special--container .special__block .special__list--cnt .special__list > li .img img {
  border-radius: 30px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li .info {
  width: 100%;
}
.movie__special--container .special__block .special__list--cnt .special__list > li .info .ttl {
  padding: 0 0 5px 0;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 15px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li .info .ttl .txt {
  display: block;
  font-weight: 700;
  font-size: 16px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li .info .detail {
  line-height: 1.7;
  font-size: 12px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li .info .detail .strong {
  font-weight: 700;
  font-size: 14px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li.type--1 .img, .movie__special--container .special__block .special__list--cnt .special__list > li.type--2 .img, .movie__special--container .special__block .special__list--cnt .special__list > li.type--3 .img {
  position: relative;
}
.movie__special--container .special__block .special__list--cnt .special__list > li.type--1 .img::before, .movie__special--container .special__block .special__list--cnt .special__list > li.type--1 .img::after, .movie__special--container .special__block .special__list--cnt .special__list > li.type--2 .img::before, .movie__special--container .special__block .special__list--cnt .special__list > li.type--2 .img::after, .movie__special--container .special__block .special__list--cnt .special__list > li.type--3 .img::before, .movie__special--container .special__block .special__list--cnt .special__list > li.type--3 .img::after {
  content: "";
  position: absolute;
}
.movie__special--container .special__block .special__list--cnt .special__list > li.type--1 .img::before {
  background: url(../images/icon_lantern.png) no-repeat center/100%;
  width: 56px;
  height: 84px;
  top: -27px;
  right: -25px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li.type--1 .img::after {
  background: url(../images/icon_snow_3.png) no-repeat center/100%;
  width: 43px;
  height: 43px;
  bottom: -26px;
  left: -15px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li.type--2 .img::before {
  background: url(../images/icon_lantern_2.png) no-repeat center/100%;
  width: 44px;
  height: 60px;
  top: -31px;
  right: -15px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li.type--2 .img::after {
  background: url(../images/icon_snow_4.png) no-repeat center/100%;
  width: 54px;
  height: 54px;
  bottom: -20px;
  left: -25px;
}
.movie__special--container .special__block .special__list--cnt .special__list > li.type--3 .img::after {
  background: url(../images/icon_snow_3.png) no-repeat center/100%;
  width: 43px;
  height: 43px;
  top: -2px;
  left: -15px;
}
.movie__special--container .special__block .special__list--cnt .special__btn {
  width: 220px;
  height: 40px;
  margin: 0 auto;
}
.movie__special--container .special__block .special__list--cnt .special__btn > a {
  background: url(../images/btn_bg.png) no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  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;
  color: #483e8d;
  font-weight: 700;
  font-size: 12px;
}

/*------------------------------------------
item__container
------------------------------------------*/
.item__container {
  position: relative;
  padding: 31.2vw 0 0;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .item__container {
    padding: 117px 0 0;
  }
}
.item__container .item__bg--1 {
  background: -webkit-gradient(linear, left top, left bottom, from(#843F66), to(#292977));
  background: linear-gradient(to bottom, #843F66 0%, #292977 100%);
  width: 100%;
  height: 85.3333333333vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1025px) {
  .item__container .item__bg--1 {
    height: 322px;
  }
}
@media (max-width: 1024px) {
  .item__container .item__bg--1 {
    z-index: 2;
  }
}
@media (max-width: 1024px) {
  .item__container .container__star,
  .item__container .ttl__label {
    z-index: 2;
  }
}
.item__container .item__label {
  mix-blend-mode: screen;
  width: 95px;
  height: 100%;
  position: absolute;
  top: 175px;
  z-index: 4;
  pointer-events: none;
}
.item__container .item__label::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.item__container .item__label.type--1 {
  left: -20px;
}
.item__container .item__label.type--1::before {
  background: url(../images/item_bg_line_l.png) repeat-y 0/95px 3027px;
}
.item__container .item__label.type--2 {
  right: -20px;
}
.item__container .item__label.type--2::before {
  background: url(../images/item_bg_line_r.png) repeat-y 0/95px 3027px;
}
.item__container .item__ttl {
  position: relative;
  overflow: hidden;
  z-index: 2;
  width: 18.9333333333vw;
  margin: 0 auto 8.5333333333vw;
}
@media (min-width: 1025px) {
  .item__container .item__ttl {
    width: 71px;
    margin: 0 auto 32px;
  }
}
.item__container .item__interview {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 69.3333333333vw;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.6666666667vw;
}
@media (min-width: 1025px) {
  .item__container .item__interview {
    max-width: 260px;
    gap: 10px;
    margin: 0 auto 60px;
  }
}
.item__container .item__interview .img {
  width: 18.1333333333vw;
}
@media (min-width: 1025px) {
  .item__container .item__interview .img {
    width: 68px;
  }
}
.item__container .item__interview .detail {
  font-size: 3.4666666667vw;
}
@media (min-width: 1025px) {
  .item__container .item__interview .detail {
    font-size: 13px;
  }
}
.item__container .item__block {
  position: relative;
}
@media (min-width: 1025px) {
  .item__container .item__block {
    background: url(../images/bg_silver.png) repeat-y 60% 0/contain;
    background-attachment: fixed;
  }
}
@media (max-width: 1024px) {
  .item__container .item__block {
    margin-top: 16vw;
  }
  .item__container .item__block::before {
    content: "";
    background: url(../images/bg_silver.png) repeat-y center top/100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
}
.item__container .item__block .item__cnt {
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .item__container .item__block .item__cnt {
    z-index: 3;
  }
}
.item__container .item__block .item__cnt .icon {
  position: absolute;
}
.item__container .item__block .item__cnt .icon.snow {
  width: 64px;
  top: -5.3333333333vw;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateX(25.3333333333vw) rotate(105deg);
          transform: translateX(25.3333333333vw) rotate(105deg);
}
@media (min-width: 1025px) {
  .item__container .item__block .item__cnt .icon.snow {
    top: -20px;
    -webkit-transform: translateX(95px) rotate(105deg);
            transform: translateX(95px) rotate(105deg);
  }
}
.item__container .item__block .item__cnt .icon.snow-2 {
  width: 62px;
  top: 236px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateX(-127px);
          transform: translateX(-127px);
}
.item__container .item__block .item__cnt .icon.lantern {
  width: 69px;
  top: 5px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateX(95px);
          transform: translateX(95px);
}
.item__container .item__block .item__cnt .cnt__img {
  position: relative;
  width: 72vw;
  margin: 0 auto;
  aspect-ratio: 1/1;
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
@media (min-width: 1025px) {
  .item__container .item__block .item__cnt .cnt__img {
    width: 270px;
  }
}
.item__container .item__block .item__cnt .cnt__info {
  width: 100%;
  padding: 3.7333333333vw 0 9.6vw;
}
@media (min-width: 1025px) {
  .item__container .item__block .item__cnt .cnt__info {
    padding: 14px 0 36px;
  }
}
.item__container .item__block .item__cnt .cnt__info .info__in {
  width: 100%;
  max-width: 62.9333333333vw;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .item__container .item__block .item__cnt .cnt__info .info__in {
    max-width: 236px;
  }
}
.item__container .item__block .item__cnt .cnt__info .brand {
  text-align: center;
  font-size: 13px;
  margin-bottom: 6px;
}
.item__container .item__block .item__cnt .cnt__info .name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6px;
}
.item__container .item__block .item__cnt .cnt__info .name.blue {
  background: #4B9CD8;
}
.item__container .item__block .item__cnt .cnt__info .name.pink {
  background: #DC557F;
}
.item__container .item__block .item__cnt .cnt__info .name .txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: 13px;
  padding: 3px 8px 4px;
}
.item__container .item__block .item__cnt .cnt__info .name:nth-of-type(2) {
  margin: -3px auto 6px;
}
.item__container .item__block .item__cnt .cnt__info .price {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  font-size: 13px;
  margin: 0 auto 10px;
}
.item__container .item__block .item__cnt .cnt__info .price::after {
  content: "円（税込）";
  font-size: 10px;
  display: inline-block;
  vertical-align: bottom;
}
.item__container .item__block .item__cnt .cnt__info .detail {
  line-height: 1.6;
  font-size: 12px;
}
.item__container .item__block .item__cnt .cnt__info .option {
  margin-top: 10px;
}
.item__container .item__block .item__cnt .cnt__info .option span {
  font-size: 11px;
}
.item__container .item__block .item__cnt .cnt__info .option .txt--1 {
  margin-right: 6px;
}
.item__container .item__block .item__cnt.type--1 .cnt__img--bg {
  background: url(../images/item_bg_1.png) no-repeat center/cover;
}
.item__container .item__block .item__cnt.type--1 .cnt__info {
  background: #B1548D;
}
.item__container .item__block .item__cnt.type--2 .cnt__img--bg {
  background: url(../images/item_bg_2.png) no-repeat center/cover;
}
.item__container .item__block .item__cnt.type--2 .cnt__info {
  background: #292977;
}
.item__container .item__block .item__cnt.ico-limited::before {
  background: url(../images/icon_limited.png) no-repeat center/100%;
}
.item__container .item__block .item__cnt.ico-leading::before {
  background: url(../images/icon_leading.png) no-repeat center/100%;
}
.item__container .item__block .item__cnt.ico-limited::before, .item__container .item__block .item__cnt.ico-leading::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  top: 3px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  -webkit-transform: translateX(-123px);
          transform: translateX(-123px);
}
.item__container .item__bottom {
  background: #292977;
  padding: 10px 0 60px;
}
@media (max-width: 1024px) {
  .item__container .item__bottom {
    position: relative;
    z-index: 3;
  }
}
.item__container .item__bottom .date {
  width: 318px;
  margin: 0 auto 40px;
}
.item__container .item__bottom .btn {
  width: 280px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.item__container .item__bottom .btn > a {
  background: url(../images/btn_bg.png) no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  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;
  color: #483e8d;
  -webkit-box-shadow: 3px 3px #4A4086;
          box-shadow: 3px 3px #4A4086;
  font-weight: 700;
  font-size: 13px;
}
.item__container .item__bottom .container__star {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  top: auto;
  bottom: 0;
}

/* =========================================================
campaign__container
========================================================= */
.campaign__container {
  background: #955282;
  padding: 33px 0 10px;
  position: relative;
}
.campaign__container::before, .campaign__container::after {
  content: "";
  position: absolute;
}
.campaign__container::before {
  background: url(../images/icon_lantern.png) no-repeat center/100%;
  width: 93px;
  height: 125px;
  top: 0;
  left: 4px;
}
.campaign__container::after {
  background: url(../images/campaign_ico_2.png) no-repeat center/100%;
  width: 113px;
  height: 63px;
  top: 26px;
  right: -16px;
}
.campaign__container .inner {
  padding: 0 10px;
}
.campaign__container .campaign__ttl {
  width: 155px;
  margin: 0 auto 25px;
  position: relative;
  overflow: hidden;
}
.campaign__container .campaign__info {
  background: #793C68;
  padding: 22px 35px 30px;
}
.campaign__container .campaign__info .ttl {
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}
.campaign__container .campaign__info .ttl::before {
  content: "";
  background: url(../images/campaign_info_icon.png) no-repeat center/100%;
  width: 335px;
  height: 35px;
  position: absolute;
  top: 20px;
  left: -25px;
  right: 0;
  margin: auto;
}
.campaign__container .campaign__info .detail {
  width: 285px;
  margin: 0 auto 20px;
}
.campaign__container .campaign__info .txt {
  font-size: 12px;
  line-height: 2;
  margin-bottom: 30px;
}
.campaign__container .campaign__info .btn {
  width: 280px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.campaign__container .campaign__info .btn > a {
  background: url(../images/btn_bg.png) no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  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;
  color: #483e8d;
  -webkit-box-shadow: 3px 3px #4A4086;
          box-shadow: 3px 3px #4A4086;
  font-weight: 700;
  font-size: 13px;
}

/* =========================================================
sns__container
========================================================= */
.sns__container {
  position: relative;
}
.sns__container .bg__1 {
  padding: 34px 0 0;
  background: url(../images/sns_bg.png) no-repeat center/cover;
  width: 100%;
}
.sns__container .bg__2 {
  padding: 30px 0 36px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e590ba), color-stop(50%, #2753a8), to(#CB70A8));
  background: linear-gradient(to bottom, #e590ba 0%, #2753a8 50%, #CB70A8 100%);
}
.sns__container .sub__ttl {
  width: 304px;
  margin: 0 auto 28px;
}
.sns__container .main__ttl {
  width: 227px;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
}
.sns__container .sns__info {
  width: 335px;
  margin: 0 auto;
}
.sns__container .sns__info.mg-btm {
  margin: 0 auto 30px;
}
.sns__container .sns__info .info__ttl {
  width: 315px;
  margin: 0 auto;
  background: #B954B5;
  border-radius: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sns__container .sns__info .info__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 16px solid #B954B5;
}
.sns__container .sns__info .info__ttl .txt {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 0 11px;
}
.sns__container .sns__info .info__ttl.line {
  background: #31A7D3;
}
.sns__container .sns__info .info__ttl.line::after {
  border-top: 16px solid #31A7D3;
}
.sns__container .sns__info .sns__cnt {
  width: 100%;
  background: rgba(72, 62, 141, 0.4);
  padding: 64px 25px 25px;
  border-radius: 10px;
  margin: -30px auto 0;
  position: relative;
}
.sns__container .sns__info .sns__cnt::after {
  content: "";
  background: url(../images/sns_ttl_icon.png) no-repeat center/100%;
  width: 335px;
  height: 64px;
  position: absolute;
  top: 51px;
  left: 0;
  right: 0;
  margin: auto;
}
.sns__container .sns__info .cnt__ttl {
  width: calc(100% - 24px);
  margin: 0 auto 22px;
}
.sns__container .sns__info .cnt__ttl .in {
  padding: 7px 0 8px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  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;
}
.sns__container .sns__info .cnt__ttl .in .group--1,
.sns__container .sns__info .cnt__ttl .in .group--2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sns__container .sns__info .cnt__ttl .in .group--1 .number,
.sns__container .sns__info .cnt__ttl .in .group--2 .number {
  font-size: 15px;
}
.sns__container .sns__info .cnt__ttl .in .group--1 .txt,
.sns__container .sns__info .cnt__ttl .in .group--2 .txt {
  font-size: 11px;
}
.sns__container .sns__info .cnt__ttl .in .arrow {
  width: 18px;
  height: 7px;
  margin: 3px 6px 0 8px;
  position: relative;
}
.sns__container .sns__info .cnt__ttl .in .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/sns_arrow.png) no-repeat center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sns__container .sns__info .cnt__txt {
  line-height: 2;
  font-size: 12px;
}
.sns__container .sns__info .cnt__op {
  margin-top: 15px;
  line-height: 1.7;
  font-size: 11px;
  opacity: 0.6;
}
.sns__container .sns__info .cnt__sns {
  margin-top: 20px;
  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;
  gap: 15px;
}
.sns__container .sns__info .cnt__sns > li {
  width: 40px;
}
.sns__container .sns__info .cnt__sns > li > a {
  display: block;
}
.sns__container .sns__info .line__btn {
  width: 220px;
  height: 40px;
  margin: 20px auto 0;
}
.sns__container .sns__info .line__btn > a {
  background: url(../images/btn_bg.png) no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  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;
  color: #483e8d;
  font-weight: 700;
  font-size: 12px;
  position: relative;
}
.sns__container .sns__info .line__btn > a::after {
  content: "";
  background: url(../images/ico_line.png) no-repeat center/100%;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}

/* =========================================================
link__container
========================================================= */
.link__container {
  background: #3E4091;
  padding: 24px 0 30px;
  position: relative;
  z-index: 2;
}
.link__container .inner {
  width: 100%;
  padding: 0 45px;
  margin: 0 auto;
}
.link__container .link__ttl {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}
.link__container .link__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.link__container .link__list > li {
  width: 100%;
  height: 60px;
}
.link__container .link__list > li > a {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px 0 22px;
  position: relative;
  background: url(../images/btn_bg.png) no-repeat center/cover;
  border-radius: 20px;
  color: #483e8d;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
.link__container .link__list > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 21px;
  bottom: 0;
  margin: auto;
}
.link__container .link__list > li.ins > a::after {
  background: url(../images/ico_ins.png) no-repeat center/100%;
  width: 24px;
  height: 24px;
}
.link__container .link__list > li.x > a::after {
  background: url(../images/ico_x.png) no-repeat center/100%;
  width: 28px;
  height: 28px;
}
.link__container .link__list > li.line > a::after {
  background: url(../images/ico_line.png) no-repeat center/100%;
  width: 26px;
  height: 26px;
  right: 22px;
}
.link__container .link__list > li.mall > a::after {
  background: url(../images/ico_mall.png) no-repeat center/100%;
  width: 24px;
  height: 24px;
  right: 22px;
}

/* =========================================================
app__container
========================================================= */
.app__container {
  padding: 24px 0 48px;
  background: #555691;
}
@media (max-width: 1024px) {
  .app__container {
    position: relative;
    z-index: 2;
  }
}
.app__container .inner {
  width: 100%;
  padding: 0 30px;
}
.app__container .app__ttl {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.app__container .app__lead {
  text-align: center;
  font-size: 12px;
  margin-bottom: 18px;
}
.app__container .app__info {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 0 28px;
}
.app__container .app__info .logo {
  width: 234px;
  margin: 0 auto 20px;
}
.app__container .app__info .link {
  width: 240px;
  height: 40px;
  margin: 0 auto;
}
.app__container .app__info .link > a {
  width: 100%;
  height: 100%;
  background: #3E4091;
  border-radius: 30px;
  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;
  line-height: 1;
  font-weight: 700;
  font-size: 13px;
  position: relative;
}
.app__container .app__info .link > a::after {
  content: "";
  background: url(../images/ico_arrow_2.png) no-repeat center/100%;
  width: 12px;
  height: 11px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}

/* =========================================================
btm__container
========================================================= */
.btm__container {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#e590ba), to(#2753a8));
  background: linear-gradient(to bottom, #e590ba 0%, #2753a8 100%);
  padding: 40px 0 64px;
}
@media (max-width: 1024px) {
  .btm__container {
    z-index: 3;
  }
}
.btm__container::before, .btm__container::after {
  content: "";
  position: absolute;
}
.btm__container::before {
  background: url(../images/icon_lantern.png) no-repeat center/100%;
  width: 92px;
  height: 124px;
  top: 0;
  left: 6px;
}
.btm__container::after {
  background: url(../images/icon_cosmetics.png) no-repeat center/100%;
  width: 57px;
  height: 113px;
  top: -18px;
  right: 36px;
}
.btm__container .btm__ttl {
  width: 130px;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
}
.btm__container .btm__btn {
  width: 280px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.btm__container .btm__btn > a {
  background: url(../images/btn_bg.png) no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  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;
  color: #483e8d;
  -webkit-box-shadow: 3px 3px #483e8d;
          box-shadow: 3px 3px #483e8d;
  font-weight: 700;
  font-size: 13px;
}
.btm__container .container__star {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  top: auto;
  bottom: 0;
}

.footer__container {
  background: #ffffff;
  padding: 36px 0 30px;
}
@media (max-width: 1024px) {
  .footer__container {
    position: relative;
    z-index: 2;
  }
}
.footer__container .logo {
  width: 141px;
  margin: 0 auto 14px;
}
.footer__container .copyright {
  color: #4a4848;
  text-align: center;
  font-size: 10px;
}

.mask {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  /* Chrome, Safari用 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
}
.mask.for__ambassador {
  mask-image: url(../images/ambassador_ttl.webp);
  -webkit-mask-image: url(../images/ambassador_ttl.webp);
}
.mask.for__movie {
  mask-image: url(../images/movie_ttl.webp);
  -webkit-mask-image: url(../images/movie_ttl.webp);
}
.mask.for__special {
  mask-image: url(../images/special_ttl.webp);
  -webkit-mask-image: url(../images/special_ttl.webp);
}
.mask.for__item {
  mask-image: url(../images/item_ttl.webp);
  -webkit-mask-image: url(../images/item_ttl.webp);
}
.mask.for__campaign {
  mask-image: url(../images/campaign_ttl.webp);
  -webkit-mask-image: url(../images/campaign_ttl.webp);
}
.mask.for__sns {
  mask-image: url(../images/sns_ttl.webp);
  -webkit-mask-image: url(../images/sns_ttl.webp);
}
.mask.for__btm {
  mask-image: url(../images/btm_ttl.webp);
  -webkit-mask-image: url(../images/btm_ttl.webp);
}
.mask::before {
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: shining-effect 2s ease-in-out infinite;
          animation: shining-effect 2s ease-in-out infinite;
}

.is-animate .for__mv {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  /* Chrome, Safari用 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  mask-image: url(../images/mv_logo.webp);
  -webkit-mask-image: url(../images/mv_logo.webp);
}
.is-animate .for__mv::before {
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: shining-effect 1.5s ease-in-out forwards;
          animation: shining-effect 1.5s ease-in-out forwards;
}