@charset "UTF-8";
.loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--l-body-w);
  max-width: 768px;
  overflow: hidden;
  transform: translateX(-50%);
  container-type: inline-size;
  container-name: base;
  transition: opacity 1.2s ease;
  background-image: linear-gradient(180deg, #ffbcd6 0%, #ff488d 100%);
  background-repeat: no-repeat;
  background-size: 100% var(--l-deco-h);
}
.loading.is-hide {
  opacity: 0;
  pointer-events: none;
}
.loading_deco {
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 780/280;
  background: url("../img/preloader-bg.webp") no-repeat center top/100% 100%;
  pointer-events: none;
}
.loading_deco-top {
  top: 0;
}
.loading_deco-bottom {
  bottom: 0;
  transform: scaleY(-1);
}
.loading_inner {
  position: relative;
  top: 1.385cqw;
  width: 100%;
}
.loading_inner img {
  display: block;
  width: 100%;
  height: auto;
}
.loading_deco {
  opacity: 0;
  transition: opacity 1.4s ease;
}
.loading.is-ready .loading_deco {
  opacity: 1;
}
.loading_inner {
  opacity: 0;
  transform: scale(0.55);
}
.loading.is-ready .loading_inner {
  animation: loading-pop 1.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.loading_pulse {
  display: block;
  animation: loading-breathe 1.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .loading {
    transition: none;
  }
  .loading_deco {
    transition: none;
  }
  .loading_pulse {
    animation: none;
  }
  .loading.is-ready .loading_deco, .loading.is-ready .loading_inner {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes loading-breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
}
@keyframes loading-pop {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  30% {
    opacity: 1;
    transform: scale(1.03);
  }
  90% {
    opacity: 1;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(0.95);
  }
}
#mv {
  position: relative;
}
#mv .mv_img {
  width: 100%;
}

.mv_info {
  padding: 3.077cqw 0 7.179cqw;
  text-align: center;
}

.mv_date {
  font-size: 13.333cqw;
  line-height: 1;
  letter-spacing: -0.01em;
}
.mv_date .mv_deco {
  position: relative;
  display: inline-block;
  color: #391970;
  -webkit-text-stroke: 1.538cqw #391970;
  filter: drop-shadow(0.513cqw 0.513cqw 0 #1a1459);
}
.mv_date .mv_deco::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 0;
  background-color: #ffc6d2;
  background-image: radial-gradient(circle at center, #fff 0 26%, transparent 28%);
  background-size: 0.769cqw 0.769cqw;
  -webkit-background-clip: text;
  background-clip: text;
}
.mv_date_dow {
  font-size: 3.846cqw;
}

.mv_place {
  margin-top: 1.538cqw;
  font-size: 7.436cqw;
  line-height: 1.2;
}
.mv_place .mv_deco {
  position: relative;
  display: inline-block;
  color: #391970;
  -webkit-text-stroke: 1.538cqw #391970;
  filter: drop-shadow(0.513cqw 0.513cqw 0 #1a1459);
}
.mv_place .mv_deco::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 0;
  background-color: #ffc6d2;
  background-image: radial-gradient(circle at center, #fff 0 26%, transparent 28%);
  background-size: 0.769cqw 0.769cqw;
  -webkit-background-clip: text;
  background-clip: text;
}

.mv_stage {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8.462cqw;
  margin-top: 3.846cqw;
}
.mv_stage::before {
  content: "";
  position: absolute;
  top: 9.231cqw;
  left: 50%;
  height: 20.513cqw;
  border-left: 0.385cqw dotted #391970;
}
.mv_stage_item {
  width: 37.692cqw;
}
.mv_stage_ttl {
  padding: 0.769cqw 0;
  border-radius: 9999px;
  color: #fff;
  font-size: 4.615cqw;
  line-height: 1.2;
}
.mv_stage_ttl-day {
  background: #ff679f;
}
.mv_stage_ttl-night {
  background: #391970;
}
.mv_stage_time {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  align-items: baseline;
  -moz-column-gap: 2.051cqw;
       column-gap: 2.051cqw;
  row-gap: 0;
  margin-top: 2.051cqw;
  color: #1a1459;
}
.mv_stage_time dt {
  font-size: 3.59cqw;
  text-align: right;
}
.mv_stage_time dd {
  font-size: 5.641cqw;
  line-height: 1;
}
.mv_stage_time_end {
  font-size: 2.821cqw;
}
.mv_stage_time_end:is(dd) {
  font-size: 3.59cqw;
}
.mv_stage_note {
  margin-top: 2.564cqw;
  color: #391970;
  font-size: 3.077cqw;
  line-height: 1.4;
}

.mv_btn {
  margin-top: 3.59cqw;
}

.goods_lineup_img {
  --imgbox-ratio: 16 / 9;
  margin-top: 6.154cqw;
}

.goods_lineup_note {
  --note-gap: 0;
  color: #411a7b;
  margin-top: 6.154cqw;
  text-align: left;
}

.mv_cloud {
  --deco-img: url("../img/deco_cloud01.webp");
  --deco-size: 100% auto;
  --deco-pos: center top;
  --deco-h: 38.462cqw;
}

.about_cloud {
  --deco-img: url("../img/deco_cloud02.webp");
  --deco-size: 100% auto;
  --deco-pos: center top;
  --deco-h: 38.462cqw;
}

.member_cloud {
  --deco-img: url("../img/deco_cloud03.webp");
  --deco-size: 100% auto;
  --deco-pos: center top;
  --deco-h: 38.462cqw;
}

.goods_cloud {
  --deco-img: url("../img/deco_cloud04.webp");
  --deco-size: 100% auto;
  --deco-pos: center top;
  --deco-h: 38.462cqw;
}

.access_cloud {
  --deco-img: url("../img/deco_cloud05.webp");
  --deco-size: 100% auto;
  --deco-pos: center top;
  --deco-h: 25.641cqw;
}

#news {
  padding-bottom: 15.385cqw;
}

#access {
  padding-bottom: 0cqw;
}

#member {
  padding-bottom: 8.974cqw;
}

#about {
  padding-bottom: 8.974cqw;
}

#goods {
  padding-bottom: 1.282cqw;
}

#news {
  position: relative;
  z-index: 1;
  margin-top: -5.128cqw;
  margin-bottom: -5.128cqw;
}
#news .news_ttl {
  --ttl-w: 61.795cqw;
  position: relative;
  z-index: 2;
  margin-left: 4.615cqw;
  margin-bottom: -10.256cqw;
}
#news .c-box {
  padding-top: 14.872cqw;
}
#news .news_list {
  padding: 4.615cqw 4.103cqw;
  border: 0.769cqw solid #ffc6d2;
  background-color: #fff5f7;
  background-image: linear-gradient(to right, rgba(65, 26, 123, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(65, 26, 123, 0.05) 1px, transparent 1px);
  background-size: 2.564cqw 2.564cqw;
}
#news .news_item {
  display: flex;
  align-items: flex-start;
  gap: 3.59cqw;
}
#news .news_item + .news_item {
  margin-top: 3.59cqw;
}
#news .news_item_date {
  flex: 0 0 auto;
  padding: 0.513cqw 3.59cqw;
  border-radius: 9999px;
  background: #ff4d94;
  box-shadow: 0 0.513cqw 0 0 #d63c76;
  color: #fff;
  font-size: 3.846cqw;
  line-height: 1.5;
}
#news .news_item_ttl {
  flex: 1 1 auto;
  color: #411a7b;
  font-size: 3.846cqw;
  line-height: 1.5;
}

.about_dot-01 {
  --deco-img: url("../img/dot_1.webp");
  --dot-ratio: 528 / 492;
  --dot-w: 67.692cqw;
  --dot-top: 0;
  --dot-left: -14.103cqw;
}

.about_dot-02 {
  --deco-img: url("../img/dot_2.webp");
  --dot-ratio: 346 / 526;
  --dot-w: 44.359cqw;
  --dot-bottom: -7.692cqw;
  --dot-right: -7.692cqw;
}

.goods_dot-01 {
  --deco-img: url("../img/dot_3.webp");
  --dot-ratio: 376 / 534;
  --dot-w: 48.205cqw;
  --dot-top: 0;
  --dot-right: -8.462cqw;
}

.goods_dot-02 {
  --deco-img: url("../img/dot_4.webp");
  --dot-ratio: 344 / 502;
  --dot-w: 44.103cqw;
  --dot-bottom: -5.128cqw;
  --dot-left: 0;
}

#about {
  position: relative;
  z-index: 1;
  padding-top: 0cqw;
}
#about .about_ttl {
  --ttl-w: 66.667cqw;
  position: relative;
  z-index: 2;
  margin-left: 17.949cqw;
  margin-bottom: -10.769cqw;
}
#about .c-box {
  padding: 15.385cqw 4.615cqw 8.718cqw;
  text-align: center;
}
#about .about_lead {
  color: #411a7b;
  font-size: 5.897cqw;
  line-height: 1.5;
}
#about .about_sub {
  margin-top: 3.59cqw;
  color: #ff4d94;
  font-size: 4.359cqw;
  line-height: 1.5;
}
#about .about_text {
  font-size: 4.103cqw;
  line-height: 1.65;
  color: #411a7b;
}
#about .about_text + .about_text {
  margin-top: 6.667cqw;
}

#member {
  position: relative;
  z-index: 1;
  margin-top: -7.692cqw;
  background: transparent;
}
#member .member_ttl {
  --ttl-w: 68.718cqw;
  margin-bottom: 2.564cqw;
}
#member .member_group + .member_group {
  margin-top: 5.128cqw;
}
#member .member_group_head {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: -3.846cqw;
  position: relative;
}
#member .member_group_head-right {
  align-items: flex-end;
}
#member .member_group_head-left {
  align-items: flex-start;
}
#member .member_group:nth-of-type(4) .member_group_head {
  margin-bottom: 0;
}
#member .member_group_ttl {
  width: 100%;
  margin-top: -1.538cqw;
}
#member .member_group_ttl img {
  display: block;
  width: 100%;
  height: auto;
}
#member {
}
#member .member_list {
  --member-stagger: 2.308cqw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.077cqw 1.538cqw;
}
#member .member_group:nth-of-type(odd) .member_list > .member_item:nth-child(even) {
  transform: translateY(calc(var(--member-stagger) * -1));
}
#member .member_group:nth-of-type(even) .member_list > .member_item:nth-child(even) {
  transform: translateY(var(--member-stagger));
}
#member .member_item img {
  display: block;
  width: 100%;
  height: auto;
}

#goods {
  position: relative;
  padding-top: 0cqw;
}
#goods .goods_ttl {
  --ttl-w: 69.231cqw;
  margin-left: -2.821cqw;
  margin-bottom: 0cqw;
  position: relative;
  z-index: 3;
}

#access {
  padding-top: 0cqw;
  position: relative;
  z-index: 1;
}
#access .access_ttl {
  --ttl-w: 70.256cqw;
  margin-right: 2.564cqw;
  margin-left: auto;
  position: relative;
  top: -8.974cqw;
  margin-bottom: -6.923cqw;
}
#access .access_name {
  color: #411a7b;
  font-size: 6.667cqw;
  line-height: 1.3;
}
#access .access_addr {
  margin-top: 1.026cqw;
  color: #411a7b;
  font-size: 4.103cqw;
  line-height: 1.4;
}
#access .access_map {
  margin-top: 5.641cqw;
}
#access .access_map img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#share {
  padding-top: 7.179cqw;
  padding-bottom: 7.692cqw;
}
#share .pop-btn_wrap {
  margin: 0;
}
#share .pop-btn {
  --btn-font-size: 5.641cqw;
  width: 100%;
}

.js-inview {
  opacity: 0;
}
.js-inview.is-inview {
  animation: fadeUp 0.8s ease forwards;
}
