@charset "UTF-8";
/* Scss Document */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 1110px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .sp {
    display: block;
  }
}

a.link {
  transition: 0.2s;
  text-decoration: underline;
  position: relative;
}
a.link:hover {
  text-decoration: none;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 1110px) {
  .mb15 {
    margin-bottom: 2.5vw !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1110px) {
  .mb30 {
    margin-bottom: 5vw !important;
  }
}

.mb45 {
  margin-bottom: 45px !important;
}
@media screen and (max-width: 1110px) {
  .mb45 {
    margin-bottom: 7.5vw !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1110px) {
  .mb60 {
    margin-bottom: 10vw !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1110px) {
  .mb90 {
    margin-bottom: 10vw !important;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb15 {
  padding-bottom: 15px !important;
}
@media screen and (max-width: 1110px) {
  .pb15 {
    padding-bottom: 2.5vw !important;
  }
}

.pb30 {
  padding-bottom: 30px !important;
}
@media screen and (max-width: 1110px) {
  .pb30 {
    padding-bottom: 5vw !important;
  }
}

.pb45 {
  padding-bottom: 45px !important;
}
@media screen and (max-width: 1110px) {
  .pb45 {
    padding-bottom: 7.5vw !important;
  }
}

.pb60 {
  padding-bottom: 60px !important;
}
@media screen and (max-width: 1110px) {
  .pb60 {
    padding-bottom: 10vw !important;
  }
}

.pb90 {
  padding-bottom: 90px !important;
}
@media screen and (max-width: 1110px) {
  .pb90 {
    padding-bottom: 10vw !important;
  }
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.ta-c {
  text-align: center;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-weight: 400;
  font-size: 1.6em;
  font-family: "YakuHanJPs", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.7;
  word-wrap: break-word;
  color: #333138;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: 1s;
  transition-delay: 0.6s;
  opacity: 1;
  z-index: 1000;
}
@media screen and (max-width: 1110px) {
  .loading {
    transition-delay: 0.5s;
  }
}
.loading::before {
  display: block;
  position: absolute;
  content: "";
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdfac0, #facfe6, #bceafc, #bef3ea, #fdfac0);
  background-size: 200% 200%;
  transition: 1.25s;
  z-index: -1;
}
@media screen and (max-width: 1110px) {
  .loading::before {
    transition: 1s;
  }
}
@media screen and (max-width: 767px) {
  .loading::before {
    width: 80px;
    height: 80px;
  }
}
.loaded .loading {
  opacity: 0;
}
.loaded .loading::before {
  width: 250vw;
  height: 250vw;
}
@media screen and (max-width: 1110px) {
  .loaded .loading::before {
    width: 200vh;
    height: 200vh;
  }
}

.loading-sub {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: 0.3s;
  opacity: 1;
  z-index: 1000;
}
.loaded .loading-sub {
  opacity: 0;
}

.wrap {
  overflow-x: hidden;
  position: relative;
}
.wrap::before, .wrap::after {
  display: block;
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
.wrap::before {
  background: linear-gradient(135deg, #fdfac0, #facfe6, #bceafc, #bef3ea, #fdfac0);
  background-size: 800% 800%;
  animation: gradient 28s ease-in-out infinite;
  z-index: -1;
}
@media screen and (max-width: 1110px) {
  .wrap::before {
    background: linear-gradient(135deg, #fdfac0, #facfe6, #bceafc, #bef3ea, #fdfac0);
    background-size: 240vh 240vh;
    animation: gradient 28s ease-in-out infinite;
  }
}
.wrap::after {
  background: url("../images/202304_sc_5th/parts/bg_dot_w.png") repeat left top;
  z-index: -1;
}

.delighter {
  opacity: 0;
  transition: opacity 0.4s 0.3s, transform 0.4s 0.3s;
  transform: translateY(30px);
}
@media screen and (max-width: 767px) {
  .delighter {
    transition: opacity 0.4s 0.25s, transform 0.4s 0.25s;
  }
}
.delighter.started {
  opacity: 1;
  transform: translateY(0);
}

.btn-goods {
  display: block;
  padding-top: 22.6%;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
  background-image: url("../images/202304_sc_5th/btn_goods.png");
}
.btn-goods:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .btn-goods:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .btn-goods {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .btn-goods {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}

.btn-asobistore {
  display: block;
  padding-top: 17.7%;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
  background-image: url("../images/202304_sc_5th/btn_asobistore.png");
}
.btn-asobistore:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .btn-asobistore:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .btn-asobistore {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .btn-asobistore {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}

.btn-amiami {
  display: block;
  padding-top: 17.7%;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
  background-image: url("../images/202304_sc_5th/btn_amiami.png");
}
.btn-amiami:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .btn-amiami:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .btn-amiami {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .btn-amiami {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}

.btn-detail {
  display: block;
  padding-top: 17.7%;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
  background-image: url("../images/202304_sc_5th/btn_link_detail.png");
}
.btn-detail:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .btn-detail:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .btn-detail {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .btn-detail {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}

.btn-shopper {
  display: block;
  padding-top: 22.6%;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
  background-image: url("../images/202304_sc_5th/btn_shopper.png");
}
.btn-shopper:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .btn-shopper:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .btn-shopper {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .btn-shopper {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}

.btn-official {
  display: block;
  padding-top: 34.4%;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
  background-image: url("../images/202304_sc_5th/btn_official.png");
}
.btn-official:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .btn-official:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .btn-official {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .btn-official {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}

.btn-twitter {
  display: block;
  padding-top: 22.6%;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
  background-image: url("../images/202304_sc_5th/btn_twitter.png");
}
.btn-twitter:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .btn-twitter:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .btn-twitter {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .btn-twitter {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}

[class^=btn-].comingsoon:hover {
  transform: translateY(0);
  filter: drop-shadow(0px 1px 2px #a2a4aa);
}

.header-gift {
  position: relative;
  height: 70px;
  padding: 15px 20px;
  background-color: #ebebee;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header-gift {
    height: 60px;
    padding: 17px 4vw;
  }
}
.header-gift a {
  display: block;
  width: 84px;
  height: 40px;
  background: url("../images/202304_sc_5th/logo_gift.png") no-repeat center center/contain;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header-gift a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .header-gift a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header-gift a {
    width: 54px;
    height: 26px;
  }
}

.header {
  position: relative;
}
@media screen and (max-width: 1110px) {
  .header {
    z-index: 999;
  }
}
.page-home .header {
  position: fixed;
  transition: 0.3s;
  z-index: 102;
}
@media screen and (max-width: 1110px) {
  .page-home .header {
    top: inherit;
  }
}
@media screen and (max-width: 1110px) {
  .header .drawer {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100%;
    top: 0;
    right: -101vw;
    transition: 0.4s;
    padding: 6vh 20vw;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    z-index: 999;
  }
}
.page-home .header .drawer {
  position: fixed;
  top: -120px;
}
@media screen and (max-width: 1110px) {
  .page-home .header .drawer {
    top: 0;
  }
}
@media screen and (max-width: 1110px) {
  .drawer-visible .header .drawer {
    opacity: 1;
    pointer-events: auto;
    right: 0;
  }
}
.header .header-logo {
  position: absolute;
  left: 20px;
  top: 10px;
  width: 225px;
  height: 100px;
  transition: 0.3s;
  z-index: 101;
}
@media screen and (max-width: 1110px) {
  .header .header-logo {
    position: relative !important;
    top: inherit !important;
    left: inherit;
    width: 100%;
    height: auto;
    margin: 0 auto 8vw;
    opacity: 1;
  }
}
.page-home .header .header-logo {
  position: fixed;
  top: -120px;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1110px) {
  .page-home .header .header-logo {
    opacity: 1;
    pointer-events: inherit;
  }
}
.scrolled .header .header-logo {
  position: fixed;
  opacity: 1;
  pointer-events: inherit;
}
.page-home.scrolled .header .header-logo {
  top: 10px;
}
.header .header-logo a {
  display: block;
  width: 185px;
  height: 100px;
  background: url("../images/202304_sc_5th/logo_sc_283shop_new.png") no-repeat center center/contain;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header .header-logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .header .header-logo a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1110px) {
  .header .header-logo a {
    width: clamp(167px, 48%, 326px);
    height: auto;
    margin: 0 auto;
    padding-top: clamp(90px, 26%, 176px);
  }
}
.header .g-nav {
  position: relative;
  width: 100%;
  height: 120px;
  padding: 38px 0;
  transition: 0.3s;
  z-index: 99;
}
@media screen and (max-width: 1110px) {
  .header .g-nav {
    position: relative !important;
    top: inherit !important;
    width: 100%;
    height: auto;
    margin-bottom: 10vw;
    padding: 0;
  }
}
.header .g-nav::before, .header .g-nav::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: -1;
}
.header .g-nav::before {
  height: 120px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1110px) {
  .header .g-nav::before {
    display: none;
  }
}
.header .g-nav::after {
  height: 100%;
  opacity: 0.7;
  background: url("../images/202304_sc_5th/parts/bg_nav.svg") no-repeat right 10px center/auto 100%;
}
@media screen and (max-width: 1110px) {
  .header .g-nav::after {
    display: none;
  }
}
.header .g-nav__list {
  display: flex;
  justify-content: center;
  margin: 0 0 0 2vw;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__list {
    margin: 0;
    flex-direction: column;
  }
}
.header .g-nav [class^=g-nav__item] {
  position: relative;
}
.header .g-nav [class^=g-nav__item] a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 44px;
  margin: 0 auto;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header .g-nav [class^=g-nav__item] a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .header .g-nav [class^=g-nav__item] a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1110px) {
  .header .g-nav [class^=g-nav__item] a {
    width: 100% !important;
    height: clamp(50px, 10vw, 80px);
  }
}
.header .g-nav [class^=g-nav__item] a.comingsoon {
  opacity: 0.4 !important;
}
.header .g-nav__item--summary, .header .g-nav__item--admission {
  padding: 0 54px 0 0;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item--summary, .header .g-nav__item--admission {
    padding: 0;
  }
}
.header .g-nav__item--summary::before, .header .g-nav__item--admission::before {
  display: block;
  position: absolute;
  content: "";
  background: url("../images/202304_sc_5th/parts/deco_nav_w.svg") no-repeat center center/contain;
  width: 16px;
  height: 16px;
  margin: auto;
  top: 14px;
  right: 19px;
  opacity: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item--summary::before, .header .g-nav__item--admission::before {
    display: none;
  }
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item--admission, .header .g-nav__item--goods {
    padding: clamp(10px, 8vw, 40px) 0 0;
  }
}
.header .g-nav__item--admission::after, .header .g-nav__item--goods::after {
  display: block;
  position: absolute;
  content: "";
  background: url("../images/202304_sc_5th/parts/deco_nav_b.svg") no-repeat center center/contain;
  width: 16px;
  height: 16px;
  margin: auto;
  top: 14px;
  left: -35px;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item--admission::after, .header .g-nav__item--goods::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: inherit;
    width: clamp(20px, 5vw, 30px);
    height: clamp(20px, 5vw, 30px);
    opacity: 1;
  }
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item--admission::after {
    transform: translateY(-15%);
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__item--admission::after {
    transform: translateY(-10%);
  }
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item--goods::after {
    transform: translateY(40%);
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__item--goods::after {
    transform: translateY(45%);
  }
}
.header .g-nav__item--summary a {
  width: 94px;
  background-image: url("../images/202304_sc_5th/nav_summary.png");
}
.header .g-nav__item--admission a {
  width: 143px;
  background-image: url("../images/202304_sc_5th/nav_admission.png");
}
.header .g-nav__item--goods a {
  width: 132px;
  background-image: url("../images/202304_sc_5th/nav_goods.png");
}
.header .g-nav__comment {
  text-align: center;
  margin: 2px 0 0;
  font-size: 1.2rem;
}
.header .g-nav__comment .update {
  color: #2aacde;
  font-weight: bold;
}
.header .g-nav__comment .update::before {
  content: "●";
  display: inline;
  padding: 0 0.2em 0 0;
}
@media screen and (max-width: 767px) {
  .header .g-nav__comment {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1110px) {
  .header .g-nav__comment {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__comment {
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  }
}
.header .g-nav__comment .update::before {
  display: none;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item--summary .g-nav__comment, .header .g-nav__item--goods .g-nav__comment {
    margin: min(-20px, -2vw) 0 0;
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__item--summary .g-nav__comment, .header .g-nav__item--goods .g-nav__comment {
    margin: clamp(-20px, -2.5vw, -12px) 0 0;
  }
}
.page-home .header .g-nav {
  position: fixed;
  top: -120px;
}
.page-home .header .g-nav::after {
  display: none;
}
.scrolled .header .g-nav {
  position: fixed;
  top: 0;
  opacity: 1;
}
.scrolled .header .g-nav::before {
  opacity: 1;
}
.scrolled .header .g-nav::after {
  opacity: 0;
}
.scrolled .header .g-nav__item--summary::before, .scrolled .header .g-nav__item--admission::before {
  opacity: 0;
}
.scrolled .header .g-nav__item--admission::after, .scrolled .header .g-nav__item--goods::after {
  opacity: 1;
}
.page-home.scrolled .header .g-nav {
  top: 0;
}
.header .sns-nav {
  position: fixed;
  right: 20px;
  top: 15px;
  transition: 0.3s;
  z-index: 101;
}
@media screen and (max-width: 1110px) {
  .header .sns-nav {
    position: relative;
    right: inherit;
    top: inherit !important;
    transition: 0s;
  }
}
.header .sns-nav__list {
  display: flex;
}
.header .sns-nav__item {
  position: relative;
  margin: 0 0 0 10px;
}
.header .sns-nav__item:first-child {
  margin: 0;
}
@media screen and (max-width: 1110px) {
  .header .sns-nav__item {
    margin: 0 clamp(8px, 1.5vw, 12px) !important;
  }
}
.header .sns-nav__item a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header .sns-nav__item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .header .sns-nav__item a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1110px) {
  .header .sns-nav__item a {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .header .sns-nav__item a {
    width: 40px;
    height: 40px;
  }
}
.header .sns-nav__item a.twitter {
  background-image: url("../images/202304_sc_5th/icon_twitter.png");
}
.header .sns-nav__item a.line {
  background-image: url("../images/202304_sc_5th/icon_line.png");
}
.scrolled .header .sns-nav {
  top: 40px;
}
@media screen and (max-width: 1110px) {
  .header .drawer-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 2.5vw;
    top: 10px;
    background-color: #fff;
    border-radius: 5px;
    z-index: 9999;
    box-shadow: 0px 1px 3px #a2a4aa;
    transition: 0.3s;
    cursor: pointer;
  }
  .header .drawer-btn span {
    display: block;
    position: absolute;
    top: 18px;
    left: 11px;
    width: 28px;
    height: 3px;
    transition: 0.4s;
    border-radius: 2px;
    background-color: #7d7b84;
  }
  .header .drawer-btn span:nth-child(2) {
    top: 29px;
  }
}
@media screen and (max-width: 767px) {
  .header .drawer-btn {
    width: 40px;
    height: 40px;
  }
  .header .drawer-btn span {
    top: 15px;
    left: 9px;
    width: 22px;
    height: 2px;
  }
  .header .drawer-btn span:nth-child(2) {
    top: 23px;
  }
}
.drawer-visible .header .drawer-btn span:first-child {
  transform: rotate(45deg);
  top: 24px;
}
@media screen and (max-width: 767px) {
  .drawer-visible .header .drawer-btn span:first-child {
    top: 19px;
  }
}
.drawer-visible .header .drawer-btn span:nth-child(2) {
  transform: rotate(-45deg);
  top: 24px;
}
@media screen and (max-width: 767px) {
  .drawer-visible .header .drawer-btn span:nth-child(2) {
    top: 19px;
  }
}

.block-top {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 1110px) {
  .block-top {
    margin: 0 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .block-top {
    margin: 0 2.5vw 3vw;
  }
}
.block-top .main-visual {
  position: relative;
  margin: 0 auto 25px;
  padding-top: 78.6%;
  background: url("../images/202304_sc_5th/top/mainvisual_pc_new.png") no-repeat center center;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 1110px) {
  .block-top .main-visual {
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .block-top .main-visual {
    margin: 0 auto;
    background: url("../images/202304_sc_5th/top/mainvisual_sp_new.png") no-repeat center center/contain;
    padding-top: 152%;
  }
}
.block-top .main-visual::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/202304_sc_5th/top/bg_mainvisual_pc.png") no-repeat center center;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.3s;
  transition-delay: 1.4s;
}
@media screen and (max-width: 1110px) {
  .block-top .main-visual::before {
    background-size: contain;
    transition-delay: 1.3s;
  }
}
@media screen and (max-width: 767px) {
  .block-top .main-visual::before {
    transition: opacity 1.2s;
    transition-delay: 1.25s;
    background: url("../images/202304_sc_5th/top/bg_mainvisual_sp.png") no-repeat center center/contain;
    padding-top: 152%;
  }
}
.loaded .block-top .main-visual::before {
  opacity: 1;
}

.top-nav {
  max-width: 1000px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 1110px) {
  .top-nav {
    margin: 0 5vw 16vw;
  }
}
.top-nav__list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-nav__list {
    flex-direction: column;
  }
}
.top-nav [class^=top-nav__item] {
  position: relative;
  width: calc((100% - 4vw) / 3);
  margin: 0 2vw 0 0;
}
.top-nav [class^=top-nav__item]:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-nav [class^=top-nav__item] {
    width: 100%;
    margin: 0 0 3vw;
    padding: 0 14vw;
  }
}
.top-nav [class^=top-nav__item] a {
  display: block;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding-top: 34.5%;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.top-nav [class^=top-nav__item] a:hover {
  transform: translateY(-3px);
}
@media screen and (max-width: 1110px) {
  .top-nav [class^=top-nav__item] a:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1110px) {
  .top-nav [class^=top-nav__item] a {
    transform: translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .top-nav [class^=top-nav__item] a {
    margin: 0 auto;
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}
.top-nav [class^=top-nav__item] a.comingsoon:hover {
  transform: translateY(0);
  filter: drop-shadow(0px 1px 2px #a2a4aa);
}
.top-nav__item--summary a {
  background-image: url("../images/202304_sc_5th/top/btn_summary.png");
}
.top-nav__item--admission a {
  background-image: url("../images/202304_sc_5th/top/btn_admission.png");
}
.top-nav__item--goods a {
  background-image: url("../images/202304_sc_5th/top/btn_goods.png");
}
.top-nav__comment {
  text-align: center;
  line-height: 1.35;
  margin: 0.5em 0 0;
}
.top-nav__comment .update {
  color: #2aacde;
  font-weight: bold;
}
.top-nav__comment .update::before {
  content: "●";
  display: inline;
  padding: 0 0.2em 0 0;
}
@media screen and (max-width: 767px) {
  .top-nav__comment {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .top-nav__comment {
    margin: clamp(0.3em, 1.5vw, 0.5em) 0 0;
  }
}
.top-nav__comment span {
  display: block;
  position: relative;
}

.block-attention {
  max-width: 1000px;
  margin: 0 auto 140px;
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .block-attention {
    margin: 0 5vw 18vw;
  }
}
@media screen and (max-width: 767px) {
  .block-attention {
    font-size: clamp(1.24rem, 3.2vw, 2rem);
  }
}

.section-info {
  max-width: 1000px;
  margin: 0 auto 160px;
}
@media screen and (max-width: 1110px) {
  .section-info {
    margin: 0 5vw 18vw;
  }
}
.section-info__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 45px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-info__heading {
    margin: 0 auto 5vw;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
}
.section-info__heading::after {
  display: block;
  content: "";
  width: 84px;
  height: 24px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("../images/202304_sc_5th/parts/deco_heading_w.svg");
}
@media screen and (max-width: 767px) {
  .section-info__heading::after {
    width: 64px;
    height: 18px;
    margin: 5px auto 0;
  }
}
.section-info__item {
  margin: 0 0 20px;
  padding: 35px 30px;
  line-height: 1.6;
  border: 1px solid #9998a3;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 1110px) {
  .section-info__item {
    margin: 0 0 3vw;
    padding: 3vw 4vw 4vw;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .section-info__item {
    font-size: inherit;
  }
}
.section-info__date {
  margin: 0 0 0.3em;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .section-info__date {
    font-size: 1.2rem;
  }
}

.block-news {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 160px;
}
@media screen and (max-width: 1110px) {
  .block-news {
    margin: 0 4vw 18vw;
  }
}
@media screen and (max-width: 767px) {
  .block-news {
    flex-direction: column;
  }
}

.section-news {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .section-news {
    width: 100%;
    margin: 0 0 18vw;
  }
}
.section-news__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 45px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-news__heading {
    margin: 0 auto 5vw;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
}
.section-news__heading::after {
  display: block;
  content: "";
  width: 84px;
  height: 24px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("../images/202304_sc_5th/parts/deco_heading_w.svg");
}
@media screen and (max-width: 767px) {
  .section-news__heading::after {
    width: 64px;
    height: 18px;
    margin: 5px auto 0;
  }
}
.section-news__item {
  margin: 0 0 1.2em;
  padding: 0 0 1.2em;
  border-bottom: 1px solid #9998a3;
}
.section-news__item:last-child {
  border-bottom: none;
}
.section-news__date {
  display: inline-block;
  padding: 0.25em 0.8em;
  line-height: 1;
  border-radius: 0.8em;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .section-news__date {
    font-size: 1.2rem;
  }
}
.section-news__txt {
  line-height: 1.5;
  margin: 0.2em 0 0;
}
.section-twitter {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .section-twitter {
    width: 100%;
  }
}
.section-twitter__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 45px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-twitter__heading {
    margin: 0 auto 5vw;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
}
.section-twitter__heading::after {
  display: block;
  content: "";
  width: 84px;
  height: 24px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("../images/202304_sc_5th/parts/deco_heading_w.svg");
}
@media screen and (max-width: 767px) {
  .section-twitter__heading::after {
    width: 64px;
    height: 18px;
    margin: 5px auto 0;
  }
}
.section-twitter__txt {
  margin-bottom: 2em;
}
.section-twitter__item {
  min-height: 400px;
}

.area-shop {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1110px) {
  .area-shop {
    padding: 8vw 0 0;
  }
}

.section-column {
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 0 0;
}
@media screen and (max-width: 1110px) {
  .section-column {
    margin: 0 5vw 10vw;
    padding: 8vw 0 0;
  }
}
.section-column__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 45px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-column__heading {
    margin: 0 auto 5vw;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
}
.section-column__heading::after {
  display: block;
  content: "";
  width: 84px;
  height: 24px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("../images/202304_sc_5th/parts/deco_heading_b.svg");
}
@media screen and (max-width: 767px) {
  .section-column__heading::after {
    width: 64px;
    height: 18px;
    margin: 5px auto 0;
  }
}
.section-column__heading--sub {
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 1110px) {
  .section-column__heading--sub {
    margin: 0 0 clamp(6px, 1.2vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .section-column__heading--sub {
    font-size: 1.5rem;
  }
}
.section-column__txt {
  margin-bottom: 2em;
}
.section-column__txt--line-bg {
  display: inline;
  padding: 0.1em 0.2em;
  background: linear-gradient(transparent 10%, #ffff8f 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.section-column__list {
  line-height: 1.65;
  padding: 0 0 0 1em;
}
.section-column__list li {
  margin: 0 0 0.2em;
  text-indent: -1em;
}

.section-summary__list {
  margin: 0 0 3em;
  padding: 0 0 0 6.5em;
}
@media screen and (max-width: 1110px) {
  .section-summary__list {
    padding: 0;
  }
}
.section-summary__item {
  position: relative;
  line-height: 1.65;
  margin: 0 0 1em;
  text-indent: -6.5em;
}
@media screen and (max-width: 1110px) {
  .section-summary__item {
    text-indent: 0;
  }
}
.section-summary__item::before {
  display: inline;
  content: "● ";
}
.section-summary__item p {
  display: inline;
}
@media screen and (max-width: 1110px) {
  .section-summary__item p {
    display: block;
  }
}
.section-summary .section-column__list {
  margin-top: 0.4em;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-summary .section-column__list {
    font-size: 1.3rem;
  }
}

.section-admission {
  margin: 0 auto;
}
@media screen and (max-width: 1110px) {
  .section-admission {
    margin: 0 5vw;
  }
}
@media screen and (max-width: 1110px) {
  .section-admission .primary-heading--blue {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
  }
}
.section-admission__list {
  margin: 0 0 2em;
}
.section-admission__item {
  margin: 0 0 1em;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .section-admission__item {
    font-size: 1.5rem;
  }
}
.section-admission__txt--line-bg {
  display: inline;
  padding: 0.1em 0.2em;
  background: linear-gradient(transparent 10%, #ffff8f 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .section-admission__txt--line-bg {
    font-size: 1.7rem;
  }
}

.box-feature {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 45px;
  padding: 45px 70px;
  background: url("../images/202304_sc_5th/parts/bg_dot_b.png") repeat left top;
}
@media screen and (max-width: 1110px) {
  .box-feature {
    margin: 0 5vw 7vw;
    padding: clamp(20px, 6vw, 40px) 5vw;
  }
}
.box-feature::before, .box-feature::after {
  display: block;
  content: "";
  position: absolute;
  width: 60px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 16px;
}
@media screen and (max-width: 1110px) {
  .box-feature::before, .box-feature::after {
    width: 50px;
    height: 42px;
    top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .box-feature::before, .box-feature::after {
    width: min(45px, 10vw);
    height: min(38px, 8vw);
    top: 7px;
  }
}
.box-feature::before {
  left: 14px;
  background-image: url("../images/202304_sc_5th/parts/deco_frame_01.svg");
}
@media screen and (max-width: 767px) {
  .box-feature::before {
    left: 6px;
  }
}
.box-feature::after {
  right: 14px;
  background-image: url("../images/202304_sc_5th/parts/deco_frame_02.svg");
}
@media screen and (max-width: 767px) {
  .box-feature::after {
    right: 6px;
  }
}
.box-feature__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 25px;
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1110px) {
  .box-feature__heading {
    margin: 1.5vw auto 3vw;
    font-size: clamp(1.6rem, 3vw, 2.9rem);
  }
}
.box-feature__heading--sub {
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 1110px) {
  .box-feature__heading--sub {
    margin: 0 0 clamp(6px, 1.2vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .box-feature__heading--sub {
    font-size: 1.5rem;
  }
}
.box-feature__list {
  line-height: 1.65;
  padding: 0 0 0 1em;
}
.box-feature__list li {
  margin: 0 0 0.2em;
  text-indent: -1em;
}
.box-feature__btn {
  padding: 25px 14%;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .box-feature__btn {
    padding: 20px 11%;
  }
}
@media screen and (max-width: 767px) {
  .box-feature__btn {
    padding: 16px 5%;
  }
}
.box-feature__comment {
  text-align: center;
}
.box-feature__comment .update {
  color: #2aacde;
  font-weight: bold;
}
.box-feature__comment .update::before {
  content: "●";
  display: inline;
  padding: 0 0.2em 0 0;
}
@media screen and (max-width: 767px) {
  .box-feature__comment {
    font-size: 1.3rem;
  }
}
.box-feature__btn + .box-feature__comment {
  margin-top: -18px;
}
@media screen and (max-width: 1110px) {
  .box-feature__btn + .box-feature__comment {
    margin-top: -13px;
  }
}
.box-feature__image {
  margin: 2em auto;
  max-width: 560px;
  text-align: center;
}

.box-goods-tokuten {
  margin-top: 160px;
}
@media screen and (max-width: 1110px) {
  .box-goods-tokuten {
    margin-top: 18vw;
  }
}

.box-photo-spot .box-panel-sche {
  position: relative;
  margin: 20px auto;
  padding: 40px 50px 30px;
  background-color: #fff;
}
@media screen and (max-width: 1110px) {
  .box-photo-spot .box-panel-sche {
    margin: 15px auto;
    padding: 30px clamp(20px, 6vw, 50px) 15px;
  }
}
.box-photo-spot .box-panel-sche::before {
  display: block;
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 4px dotted #36bdef;
}
@media screen and (max-width: 1110px) {
  .box-photo-spot .box-panel-sche::before {
    border-width: 3px;
  }
}
@media screen and (max-width: 767px) {
  .box-photo-spot .box-panel-sche::before {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-width: 2px;
  }
}
.box-photo-spot .box-panel-sche__list {
  margin: 30px auto 0;
  font-weight: bold;
}
@media screen and (max-width: 1110px) {
  .box-photo-spot .box-panel-sche__list {
    margin: 20px auto 0;
  }
}
.box-photo-spot .box-panel-sche__list dt {
  margin: 0 0 5px;
  font-size: 2.2rem;
}
@media screen and (max-width: 1110px) {
  .box-photo-spot .box-panel-sche__list dt {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
  }
}
.box-photo-spot .box-panel-sche__list dt span {
  display: inline-block;
  line-height: 1;
  padding: 0.3em 0.5em;
  background-color: #36bdef;
  color: #fff;
}
.box-photo-spot .box-panel-sche__list dd {
  margin: 0 0 20px;
  font-size: 2.1rem;
}
@media screen and (max-width: 1110px) {
  .box-photo-spot .box-panel-sche__list dd {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
  }
}
.box-photo-spot .box-panel-sche__list--lineup {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1110px) {
  .box-photo-spot .box-panel-sche__list--lineup {
    display: block;
  }
}
.box-photo-spot .box-panel-sche__item--lineup {
  margin: 0 1.5em 0 0;
}
@media screen and (max-width: 1110px) {
  .box-photo-spot .box-panel-sche__item--lineup {
    line-height: 1.3;
    margin: 0 0 0.5em 0;
  }
}
.box-photo-spot .box-panel-sche__new {
  position: relative;
  border-bottom: 2px dotted #ea0f3e;
}
.box-photo-spot .box-panel-sche__new::after {
  position: absolute;
  content: "NEW";
  color: #ea0f3e;
  font-size: 1.2rem;
  top: 0.1em;
  right: -2.8em;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .box-photo-spot .box-panel-sche__new::after {
    font-size: 1rem;
  }
}

.box-gamers__txt {
  margin-bottom: 1em;
}
.box-gamers__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .box-gamers__list {
    flex-direction: column;
  }
}
.box-gamers__item {
  position: relative;
  margin: 0 1em 0 0;
}
.box-gamers__item::before {
  display: inline-block;
  content: "●";
  margin: 0 0.1em 0 0;
  transform: scale(0.6);
}

.section-map {
  max-width: 1000px;
  margin: 160px auto;
}
@media screen and (max-width: 1110px) {
  .section-map {
    margin: 18vw 5vw;
  }
}
.section-map__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 45px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-map__heading {
    margin: 0 auto 5vw;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
}
.section-map__heading::after {
  display: block;
  content: "";
  width: 84px;
  height: 24px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("../images/202304_sc_5th/parts/deco_heading_b.svg");
}
@media screen and (max-width: 767px) {
  .section-map__heading::after {
    width: 64px;
    height: 18px;
    margin: 5px auto 0;
  }
}

.area-goods {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
}

.section-goods {
  max-width: 1000px;
  margin: 140px auto 160px;
}
@media screen and (max-width: 1110px) {
  .section-goods {
    margin: clamp(45px, 12vw, 100px) 5vw 18vw;
  }
}
.section-goods__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 45px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-goods__heading {
    margin: 0 auto 5vw;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
}
.section-goods__heading::after {
  display: block;
  content: "";
  width: 84px;
  height: 24px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("../images/202304_sc_5th/parts/deco_heading_b.svg");
}
@media screen and (max-width: 767px) {
  .section-goods__heading::after {
    width: 64px;
    height: 18px;
    margin: 5px auto 0;
  }
}
.section-goods .block-tokuten {
  margin: 0 auto 140px;
}
@media screen and (max-width: 1110px) {
  .section-goods .block-tokuten {
    margin: 0 auto 16vw;
  }
}
.section-goods .block-tokuten__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 2.8rem;
}
@media screen and (max-width: 1110px) {
  .section-goods .block-tokuten__heading {
    margin: 0 auto clamp(8px, 3vw, 20px);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
  }
}
.section-goods .block-tokuten__heading::before {
  display: inline;
  content: "●";
  padding: 0 0.15em 0 0;
  color: #2aacde;
}
.section-goods .block-tokuten__caption {
  padding: 0 0 0 0.4em;
  font-size: 1.6rem;
  font-weight: normal;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .section-goods .block-tokuten__caption {
    font-size: 1.4rem;
  }
}
.section-goods .box-tokuten {
  margin: 0 auto 40px;
  padding: 30px;
  border: 4px dotted #36bdef;
}
@media screen and (max-width: 1110px) {
  .section-goods .box-tokuten {
    margin: 0 auto min(30px, 5vw);
    padding: min(30px, 5vw);
  }
}
@media screen and (max-width: 767px) {
  .section-goods .box-tokuten {
    border-width: 3px;
  }
}
.section-goods .box-tokuten__list dt {
  margin: 0 0 0.7em;
}
.section-goods .box-tokuten__list dt strong {
  padding: 0.15em 0.4em;
  background: linear-gradient(transparent 10%, #36bdef 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  font-size: 2.2rem;
}
@media screen and (max-width: 1110px) {
  .section-goods .box-tokuten__list dt strong {
    font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  }
}
.section-goods .box-tokuten__note {
  padding: 0.2em 0 0;
  color: #36bdef;
  font-weight: bold;
}
.section-goods .box-tokuten__list--note {
  line-height: 1.65;
  padding: 0 0 0 1em;
}
.section-goods .box-tokuten__list--note li {
  margin: 0 0 0.2em;
  text-indent: -1em;
}
.section-goods .box-tokuten__image {
  margin: 2em auto;
  max-width: 560px;
  text-align: center;
}
.section-goods .block-shopper__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 2.8rem;
}
@media screen and (max-width: 1110px) {
  .section-goods .block-shopper__heading {
    margin: 0 auto clamp(8px, 3vw, 20px);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
  }
}
.section-goods .block-shopper__heading::before {
  display: inline;
  content: "●";
  padding: 0 0.15em 0 0;
  color: #2aacde;
}
.section-goods .block-shopper .box-feature {
  margin-left: 0;
  margin-right: 0;
}

.area-desc {
  overflow: hidden;
  background-color: #fff;
  padding: 90px 0 160px;
}
@media screen and (max-width: 1110px) {
  .area-desc {
    padding: 10vw 0 18vw;
  }
}
.area-desc .box-feature {
  margin: 0;
}

.block-desc {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  border-bottom: 1px solid #9998a3;
}
@media screen and (max-width: 1110px) {
  .block-desc {
    margin: 0 5vw;
    padding: clamp(25px, 5vw, 40px) 0;
  }
}
.block-desc:first-child {
  padding: 0 0 40px;
}
@media screen and (max-width: 1110px) {
  .block-desc:first-child {
    padding: 0 0 clamp(25px, 5vw, 40px);
  }
}
.block-desc:last-child {
  padding: 40px 0 0;
  border-bottom: none;
}
@media screen and (max-width: 1110px) {
  .block-desc:last-child {
    padding: clamp(25px, 5vw, 40px) 0 0;
  }
}
.block-desc__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 2.8rem;
}
@media screen and (max-width: 1110px) {
  .block-desc__heading {
    margin: 0 auto clamp(8px, 3vw, 20px);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
  }
}
.block-desc__heading::before {
  display: inline;
  content: "●";
  padding: 0 0.15em 0 0;
  color: #2aacde;
}
.block-desc__heading--sub {
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  margin: 0 0 20px;
}
@media screen and (max-width: 1110px) {
  .block-desc__heading--sub {
    margin: 0 0 clamp(6px, 1.2vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .block-desc__heading--sub {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1110px) {
  .block-desc__heading--sub {
    margin: 0 0 clamp(12px, 1.8vw, 20px);
  }
}
.block-desc__heading--sub::before {
  display: inline;
  content: "●";
  padding: 0 0.15em 0 0;
}
.block-desc__txt {
  margin: 0 0 0.5em;
}
.block-desc__txt--red {
  color: #ea0f3e;
  margin: 0 0 0.5em;
}
.block-desc__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px auto;
  border: 1px solid #a8a8af;
  border-bottom: none;
  box-sizing: content-box;
}
.block-desc__list dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 20%;
  padding: 20px 15px;
  background-color: #a8a8af;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: center;
}
.block-desc__list dt:last-of-type {
  border-color: #a8a8af;
}
@media screen and (max-width: 767px) {
  .block-desc__list dt {
    width: 100%;
    padding: 4px 10px;
    justify-content: flex-start;
  }
}
.block-desc__list dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  padding: 20px;
  border-bottom: 1px solid #a8a8af;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .block-desc__list dd {
    width: 100%;
    padding: 10px 12px;
  }
}
.block-desc__list dd.half {
  width: 40%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .block-desc__list dd.half {
    width: 50%;
    padding: calc(10px + 0.8vw) 12px;
  }
}
.block-desc__list dd.half + .half {
  border-left: 1px solid #a8a8af;
}
.block-desc__list--note {
  line-height: 1.65;
  padding: 0 0 0 1em;
  font-size: 1.4rem;
}
.block-desc__list--note li {
  margin: 0 0 0.2em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .block-desc__list--note {
    font-size: 1.2rem;
  }
}
.block-desc__caption {
  width: 100%;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .block-desc__caption {
    font-size: 1.2rem;
  }
}
.block-desc__caption--red {
  color: #ea0f3e;
  width: 100%;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .block-desc__caption--red {
    font-size: 1.2rem;
  }
}
.block-desc__list .link-asobistore, .block-desc__list .link-amiami {
  display: inline-block;
  width: 260px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.block-desc__list .link-asobistore:hover, .block-desc__list .link-amiami:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .block-desc__list .link-asobistore:hover, .block-desc__list .link-amiami:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1110px) {
  .block-desc__list .link-asobistore, .block-desc__list .link-amiami {
    width: 80%;
    height: 0;
    padding-top: 18.4%;
  }
}
@media screen and (max-width: 767px) {
  .block-desc__list .link-asobistore, .block-desc__list .link-amiami {
    width: 94%;
    padding-top: 21.6%;
  }
}
.block-desc__list .link-asobistore {
  background-image: url("../images/202304_sc_5th/goods/link_asobistore.png");
}
.block-desc__list .link-amiami {
  background-image: url("../images/202304_sc_5th/goods/link_amiami.png");
}

.area-goods--white {
  overflow: hidden;
  background-color: #fff;
}

.area-goods--blue {
  overflow: hidden;
  background-color: #dcf8ff;
}

.block-goods {
  max-width: 1000px;
  margin: 90px auto 160px;
}
@media screen and (max-width: 1110px) {
  .block-goods {
    margin: 10vw 5vw 18vw;
  }
}
.block-goods__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 2.8rem;
}
@media screen and (max-width: 1110px) {
  .block-goods__heading {
    margin: 0 auto clamp(8px, 3vw, 20px);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
  }
}
.block-goods__heading::before {
  display: inline;
  content: "●";
  padding: 0 0.15em 0 0;
  color: #2aacde;
}
.block-goods__list {
  margin: 30px auto;
}
@media screen and (max-width: 1110px) {
  .block-goods__list {
    margin: 3vw auto;
  }
}
.block-goods__item {
  margin: 0 auto 50px;
}
@media screen and (max-width: 1110px) {
  .block-goods__item {
    margin: 0 auto 5vw;
  }
}
.block-goods__item:last-child {
  margin: 0;
}
.block-goods__item figure {
  margin: 0;
}
.area-goods--white .block-goods__item figure {
  box-shadow: 0px 0px 1px #333138;
}

.area-notice {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 90px 0;
}
@media screen and (max-width: 1110px) {
  .area-notice {
    padding: 12vw 0;
  }
}

.block-notice {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .block-notice {
    margin: 0 5vw;
  }
}
.block-notice__txt {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1110px) {
  .block-notice__txt {
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  }
}
.block-notice__txt--line-bg {
  display: inline;
  padding: 0.1em 0.2em;
  background: linear-gradient(transparent 10%, #ffff8f 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  margin: 0 0 0.5em;
  font-size: 2.9rem;
  font-weight: bold;
}
@media screen and (max-width: 1110px) {
  .block-notice__txt--line-bg {
    font-size: clamp(1.65rem, 3.6vw, 2.9rem);
  }
}

.footer {
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #fff;
}
.footer::before, .footer::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer::before {
  background-color: #a8a8af;
  z-index: -1;
}
.footer::after {
  background: url("../images/202304_sc_5th/parts/bg_dot_w.png") repeat left top;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.3;
}

.block-official {
  max-width: 1000px;
  margin: 100px auto 80px;
}
@media screen and (max-width: 1110px) {
  .block-official {
    margin: 12vw auto 14vw;
  }
}
.block-official__btn {
  padding: 25px 14%;
  text-align: center;
  padding: 0 35%;
}
@media screen and (max-width: 1110px) {
  .block-official__btn {
    padding: 20px 11%;
  }
}
@media screen and (max-width: 767px) {
  .block-official__btn {
    padding: 16px 5%;
  }
}
@media screen and (max-width: 1110px) {
  .block-official__btn {
    padding: 0 33%;
  }
}
@media screen and (max-width: 767px) {
  .block-official__btn {
    padding: 0 29%;
  }
}

.section-caution {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid #d3d3dd;
}
@media screen and (max-width: 1110px) {
  .section-caution {
    margin: 0 5vw 7vw;
    padding: 0 0 6vw;
  }
}
.section-caution__heading {
  position: relative;
  line-height: 1.4;
  margin: 0 auto 45px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-caution__heading {
    margin: 0 auto 5vw;
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
}
.section-caution__heading::after {
  display: block;
  content: "";
  width: 84px;
  height: 24px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("../images/202304_sc_5th/parts/deco_heading_w.svg");
}
@media screen and (max-width: 767px) {
  .section-caution__heading::after {
    width: 64px;
    height: 18px;
    margin: 5px auto 0;
  }
}
.section-caution__list {
  line-height: 1.65;
  padding: 0 0 0 1em;
}
.section-caution__list li {
  margin: 0 0 0.2em;
  text-indent: -1em;
}

.block-company {
  max-width: 1000px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1110px) {
  .block-company {
    margin: 0 5vw 12vw;
  }
}
.block-company__item {
  line-height: 1.65;
  margin: 0 0 0.3em;
}
.block-company__item:nth-child(2), .block-company__item:nth-child(3) {
  display: inline-block;
}
.block-company__item:nth-child(2) {
  padding: 0 1em 0 0;
}

.foot-nav {
  margin: 0 auto 70px;
}
@media screen and (max-width: 1110px) {
  .foot-nav {
    margin: 0 auto 12vw;
  }
}
.foot-nav__list {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .foot-nav__list {
    flex-direction: column;
  }
}
.foot-nav__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .foot-nav__item {
    margin: 0 0 1em;
  }
}
.foot-nav__item::after {
  display: inline-block;
  content: "｜";
  padding: 0 1em;
}
@media screen and (max-width: 1110px) {
  .foot-nav__item::after {
    padding: 0 0.6em;
  }
}
@media screen and (max-width: 767px) {
  .foot-nav__item::after {
    display: none;
  }
}
.foot-nav__item:last-child::after {
  display: none;
}
.foot-nav__item a {
  font-weight: bold;
  color: #fff;
  transition: 0.2s;
  opacity: 1;
}
.foot-nav__item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .foot-nav__item a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .foot-nav__item a {
    font-size: 1.5rem;
  }
}
.foot-nav__item a.comingsoon {
  opacity: 0.4 !important;
}

.copyright {
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .copyright {
    margin: 0 3vw 10vw;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  width: 54px;
  height: 54px;
  cursor: pointer;
  transition: 0.1s;
  border-radius: 50%;
  background: #fff url("../images/202304_sc_5th/btn_pagetop.png") no-repeat center center/contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  transition: transform 0.12s ease;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 1110px) {
  .pagetop {
    width: 50px;
    height: 50px;
    right: 2.5vw;
    bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}
.pagetop:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 1110px) {
  .pagetop:hover {
    transform: translateY(0);
  }
}

.block-shipping {
  display: block;
  border-radius: 10px;
  border: 1px solid #9998a3;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0px 1px 2px #a2a4aa);
  max-width: 1000px;
  margin: 0 auto 120px;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 1110px) {
  .block-shipping {
    margin: 0 auto 8vw;
    padding: 5vw;
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .block-shipping {
    border-radius: 7px;
    filter: drop-shadow(0px 1px 1px #a2a4aa);
  }
}
.block-shipping:after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px dotted #ddd;
  border-radius: 7px;
  position: absolute;
  left: 15px;
  top: 15px;
}
@media screen and (max-width: 1110px) {
  .block-shipping:after {
    width: calc(100% - 4vw);
    height: calc(100% - 4vw);
    left: 2vw;
    top: 2vw;
  }
}
.block-shipping + .block-shipping {
  margin-top: -70px;
}
@media screen and (max-width: 1110px) {
  .block-shipping + .block-shipping {
    margin-top: -3vw;
  }
}
.block-shipping .section-column {
  padding: 0;
  margin: 0;
}/*# sourceMappingURL=202304_sc_5th.css.map */