@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
.wait_cover {
  position: relative;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  visibility: hidden;
  z-index: 999;
}

.wait_cover_item {
  width: 20%;
  height: 0%;
  display: inline-block;
  background: url(../img/diamond.svg) #f3f0ff;
  background-size: 25px;
  -webkit-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
  position: absolute;
  top: 0;
}

.wait_cover_item:nth-child(1) {
  left: 0;
}

.wait_cover_item:nth-child(2) {
  left: 20%;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.wait_cover_item:nth-child(3) {
  left: 40%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.wait_cover_item:nth-child(4) {
  left: 60%;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.wait_cover_item:nth-child(5) {
  left: 80%;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.play.wait_cover {
  visibility: initial;
}

.play .wait_cover_item {
  top: auto;
  bottom: 0;
  height: 100%;
}

.wait_cover_pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.play .wait_cover_pattern {
  opacity: 1;
}

.wait_cover_icon {
  width: 150px;
  margin-bottom: 10px;
  -webkit-animation: wait_icon_ani 1s infinite alternate ease-in-out;
  animation: wait_icon_ani 1s infinite alternate ease-in-out;
}

@-webkit-keyframes wait_icon_ani {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes wait_icon_ani {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.wait_cover_txt {
  font-size: 30px;
  color: #885dc1;
  font-weight: 400;
  text-align: center;
  font-family: 'VT323', monospace;
}

.overflow_wrap {
  overflow: hidden;
}

.load_bg {
  background: url(../img/diamond_bg.svg) #faeef4;
  background-size: 80px;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

.load_bg::before {
  content: '';
  height: 1200px;
  width: 45px;
  z-index: 1;
  background: url(../img/lace_line.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.load_bg::after {
  content: '';
  height: 1200px;
  width: 45px;
  z-index: 1;
  background: url(../img/lace_line_right.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}

.load_svg {
  position: absolute;
}

.load_svg01 {
  width: 150px;
  left: 100px;
  top: 50px;
  -webkit-animation: load_svg_round 5s infinite linear;
  animation: load_svg_round 5s infinite linear;
}

.load_svg02 {
  width: 120px;
  left: 50px;
  top: 150px;
  overflow: hidden;
}

.load_svg02 img {
  -webkit-animation: load_svg_show 3s infinite cubic-bezier(0.02, 0.88, 0.58, 1);
  animation: load_svg_show 3s infinite cubic-bezier(0.02, 0.88, 0.58, 1);
}

.load_svg03 {
  width: 100px;
  top: 50%;
  left: 100px;
  -webkit-animation: load_svg_move 1.5s infinite alternate ease-in-out;
  animation: load_svg_move 1.5s infinite alternate ease-in-out;
}

.load_svg04 {
  width: 80px;
  top: 100px;
  right: 150px;
  -webkit-animation: load_svg_move 2s infinite alternate ease-in-out;
  animation: load_svg_move 2s infinite alternate ease-in-out;
}

.load_svg05 {
  width: 180px;
  bottom: 50px;
  left: -30px;
  -webkit-animation: load_svg_big 1s infinite cubic-bezier(0.58, 0, 0.46, 1) alternate;
  animation: load_svg_big 1s infinite cubic-bezier(0.58, 0, 0.46, 1) alternate;
}

.load_svg06 {
  width: 50px;
  bottom: 50px;
  left: 120px;
  overflow: hidden;
}

.load_svg06 img {
  animation: load_svg_show 4s infinite cubic-bezier(0.58, 0, 0.46, 1) reverse;
}

.load_svg07 {
  width: 150px;
  bottom: 150px;
  right: 40px;
  -webkit-animation: load_svg_round 5s infinite linear;
  animation: load_svg_round 5s infinite linear;
}

.load_svg08 {
  width: 70px;
  right: 160px;
  bottom: 150px;
  animation: load_svg_round 5s infinite linear reverse;
}

@-webkit-keyframes load_svg_round {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load_svg_round {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes load_svg_show {
  0% {
    -webkit-transform: translateX(0px) translateY(-100px);
    transform: translateX(0px) translateY(-100px);
  }
  50% {
    -webkit-transform: translateX(0px) translateY(0);
    transform: translateX(0px) translateY(0);
  }
  100% {
    -webkit-transform: translateX(-130px) translateY(0);
    transform: translateX(-130px) translateY(0);
  }
}

@keyframes load_svg_show {
  0% {
    -webkit-transform: translateX(0px) translateY(-100px);
    transform: translateX(0px) translateY(-100px);
  }
  50% {
    -webkit-transform: translateX(0px) translateY(0);
    transform: translateX(0px) translateY(0);
  }
  100% {
    -webkit-transform: translateX(-130px) translateY(0);
    transform: translateX(-130px) translateY(0);
  }
}

@-webkit-keyframes load_svg_move {
  0% {
    -webkit-transform: translateX(0px) translateY(0) rotate(0);
    transform: translateX(0px) translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateX(20px) translateY(-20px) rotate(5deg);
    transform: translateX(20px) translateY(-20px) rotate(5deg);
    -webkit-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
  }
}

@keyframes load_svg_move {
  0% {
    -webkit-transform: translateX(0px) translateY(0) rotate(0);
    transform: translateX(0px) translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateX(20px) translateY(-20px) rotate(5deg);
    transform: translateX(20px) translateY(-20px) rotate(5deg);
    -webkit-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
  }
}

@-webkit-keyframes load_svg_big {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes load_svg_big {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.load_wrap {
  width: 1200px;
  margin: 0 auto;
}

.lace_img {
  position: relative;
}

.lace_img img {
  width: 100%;
}

.lace_img::before {
  content: '';
  width: 100%;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/lace.svg);
  background-size: 42px;
  z-index: 1;
}

.lace_img::after {
  content: '';
  width: 100%;
  height: 25px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/lace_bottom.svg);
  background-size: 42px;
  z-index: 1;
}

.lace_img_g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.lace_img_g .lace_img {
  width: 50%;
}

.lace_img_g .lace_img + .lace_img {
  margin-left: 30px;
}

.load_totop {
  width: 110px;
  position: fixed;
  right: 50px;
  bottom: 30px;
  z-index: 10;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.load_totop img {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.load_totop.show {
  -webkit-animation: load_totop_ani 1.5s infinite alternate ease-in-out;
  animation: load_totop_ani 1.5s infinite alternate ease-in-out;
}

.load_totop.show img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

@-webkit-keyframes load_totop_ani {
  0% {
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
  }
  100% {
    -webkit-transform: translateY(-20px) scale(1);
    transform: translateY(-20px) scale(1);
  }
}

@keyframes load_totop_ani {
  0% {
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
  }
  100% {
    -webkit-transform: translateY(-20px) scale(1);
    transform: translateY(-20px) scale(1);
  }
}

.load_header {
  z-index: 20;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.load_header img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none;
  transition: none;
}

.load_header img:first-child {
  position: relative;
  -webkit-transform: scale(1.51);
  transform: scale(1.51);
}

.load_first {
  margin-top: 100px;
}

.load_first img {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.show.load_first img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.load_first_m {
  display: none;
}

.load_gold_outer {
  margin-top: 350px;
}

.load_title {
  width: 450px;
  margin: 0 auto;
  position: absolute;
  top: -75px;
  left: 50%;
  -webkit-transform: translate(-50%, 100px);
  transform: translate(-50%, 100px);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
  z-index: 9;
}

.show .load_title {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}

.load_lace_bg {
  width: 100%;
  position: absolute;
  top: -250px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.5);
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

.show .load_lace_bg {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.load_gold_box {
  position: relative;
  padding: 100px;
  background-color: rgba(255, 255, 255, 0.6);
}

.load_goldLineTop::before,
.load_goldLineTop::after,
.load_goldLineBottom::before,
.load_goldLineBottom::after {
  width: 250px;
  height: 135px;
}

.load_goldLineTop {
  width: calc(100% + 30px);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  top: -10px;
}

.load_goldLineTop::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: url('../img/load_gold_line01.svg') no-repeat;
}

.load_goldLineTop::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: url('../img/load_gold_line02.svg') no-repeat;
}

.load_goldLineBottom {
  width: calc(100% + 30px);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  bottom: -10px;
}

.load_goldLineBottom::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: url('../img/load_gold_line03.svg') no-repeat;
}

.load_goldLineBottom::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: url('../img/load_gold_line04.svg') no-repeat;
}

.load_goldLineCenter {
  width: calc(100% + 30px);
  height: calc(100% - 400px);
  min-height: 300px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.load_goldLineCenter::before {
  content: '';
  width: 25px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url('../img/load_gold_line05.svg') repeat-y;
}

.load_goldLineCenter::after {
  content: '';
  width: 25px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: url('../img/load_gold_line06.svg') repeat-y;
}

.gold_txt {
  width: 500px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  bottom: -40px;
}

.gold_txt_top {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  top: -40px;
  -webkit-transform: translate(-50%, 60px);
  transform: translate(-50%, 60px);
  bottom: initial;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.show .gold_txt_top {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

.shadow_img {
  -webkit-box-shadow: 5px 5px 5px rgba(111, 76, 135, 0.4);
  box-shadow: 5px 5px 5px rgba(111, 76, 135, 0.4);
  font-size: 0;
}

.shadow_img iframe {
  position: relative;
  z-index: 10;
  height: 600px;
}

.load_box {
  padding: 20px;
  position: relative;
  border: 2px solid #6f4c87;
  border-radius: 10px;
  background: #f9eff8;
  background-size: 6px;
  -webkit-box-shadow: 10px 10px 0 rgba(111, 76, 135, 0.2);
  box-shadow: 10px 10px 0 rgba(111, 76, 135, 0.2);
  margin-bottom: 150px;
}

.load_box_inner {
  border: 2px solid #6f4c87;
  background: url('../img/line.svg') #fff;
  padding: 80px 100px;
  border-radius: 8px;
  background: url('../img/diamond.svg') #fff;
  background-size: 28px;
}

.load_box01 {
  margin-top: 500px;
}

.load_box02 {
  margin-top: 150px;
}

.load_party_big_title {
  width: 950px;
  margin-top: -350px;
}

.load_party_big_title img {
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.show .load_party_big_title img {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.load_party_secondBig_title {
  margin: 0 auto;
  width: 650px;
  margin-top: 50px;
  position: relative;
  left: -10px;
}

.load_party_title {
  width: 450px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.load_party_content p,
.load_table_title p,
.load_table_txt p {
  color: #5e5951;
  font-size: 24px;
  font-weight: 500;
}

.load_party_content p {
  text-align: center;
  margin-bottom: 18px;
}

.load_party_content .load_party_ps {
  font-size: 21px;
  color: #8e8880;
  margin-bottom: 15px;
  margin-top: -18px;
}

.load_party_content p span {
  color: #eb5ebe;
}

.load_ribbon {
  width: 600px;
  height: 20px;
  background: url('../img/load_ribbon.svg') repeat-x;
  margin: 50px auto;
}

.load_box_ribbon .load_ribbon_feature {
  margin: 20px auto;
}

.load_heart_three {
  width: 150px;
  margin: 0 auto;
}

.gold_frame {
  position: relative;
}

.gold_frame::before {
  content: '';
  width: 48px;
  height: 100%;
  background: url('../img/load_gold_left.svg') repeat-y;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gold_frame::after {
  content: '';
  width: 48px;
  height: 100%;
  background: url('../img/load_gold_right.svg') repeat-y;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.load_dialogue {
  width: 160px;
  position: absolute;
  bottom: 100px;
  right: 150px;
}

.load_call {
  width: 110px;
  position: absolute;
  left: 200px;
  bottom: 50px;
}

.load_deco_topLeft,
.load_deco_topRight,
.load_deco_bottomLeft,
.load_deco_bottomRight {
  width: 120px;
  position: absolute;
}

.load_deco_topLeft {
  left: -40px;
  top: -40px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

.load_deco_topRight {
  top: -40px;
  right: -40px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.load_deco_bottomLeft {
  left: -40px;
  bottom: -40px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

.load_deco_bottomRight {
  right: -40px;
  bottom: -40px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.load_deco img {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.show .load_deco img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.load_area_txt {
  position: relative;
  margin-top: 40px;
}

.load_area_txt p {
  font-size: 28px;
  font-weight: 400;
  color: #885dc1;
  text-align: center;
}

.load_last_arrow {
  width: 130px;
  height: 35px;
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -60px;
  z-index: 1;
  background: url('../img/load_last_arrow.svg') no-repeat;
  -webkit-animation: load_last_ani 0.5s infinite alternate linear;
  animation: load_last_ani 0.5s infinite alternate linear;
}

.load_last_arrow:hover {
  background: url('../img/load_last_arrow_pink.svg') no-repeat;
}

.load_next_arrow {
  width: 130px;
  height: 35px;
  position: absolute;
  right: 0;
  bottom: 0;
  bottom: -60px;
  background: url('../img/load_next_arrow.svg') no-repeat;
  z-index: 1;
  -webkit-animation: load_next_ani 0.5s infinite alternate linear;
  animation: load_next_ani 0.5s infinite alternate linear;
}

.load_next_arrow:hover {
  background: url('../img/load_next_arrow_pink.svg') no-repeat;
}

@-webkit-keyframes load_next_ani {
  0% {
    margin-right: 5px;
  }
  100% {
    margin-right: 0px;
  }
}

@keyframes load_next_ani {
  0% {
    margin-right: 5px;
  }
  100% {
    margin-right: 0px;
  }
}

@-webkit-keyframes load_last_ani {
  0% {
    margin-left: 5px;
  }
  100% {
    margin-left: 0px;
  }
}

@keyframes load_last_ani {
  0% {
    margin-left: 5px;
  }
  100% {
    margin-left: 0px;
  }
}

.load_box_ribbon .load_box_inner {
  padding-top: 110px;
}

.load_box_ribbon {
  margin-top: 200px;
}

.load_purple_ribbon {
  width: 550px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  -webkit-transform: translate(-50%, 100px);
  transform: translate(-50%, 100px);
  top: -100px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.show .load_purple_ribbon {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}

.load_table {
  border: 2px solid #adb7ff;
  border-radius: 10px;
  background-color: #fff;
  z-index: 2;
  position: relative;
}

.load_table_title {
  border-bottom: 2px solid #adb7ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #dddaec;
  border-radius: 8px 8px 0 0;
}

.load_table_title p {
  color: #885dc1;
  padding: 15px;
}

.load_table_title p:first-child {
  width: 200px;
  border-right: 2px solid #adb7ff;
}

.load_table_title p:last-child {
  width: calc(100% - 200px);
}

.load_table_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.load_table_txt p {
  padding: 15px;
}

.load_table_txt p:first-child {
  width: 200px;
  border-right: 2px solid #adb7ff;
}

.load_table_txt p:last-child {
  width: calc(100% - 200px);
}

.load_table_txt + .load_table_txt {
  border-top: 2px solid #adb7ff;
}

.load_table_txt span {
  color: #eb5ebe;
}

.load_table_txt:nth-child(odd) {
  background-color: #fff5fa;
}

.load_table_txt:last-child {
  border-radius: 0 0 8px 8px;
}

.load_table_title_m {
  display: none;
}

.load_table_call {
  margin-left: 15px;
}

.load_table_call img {
  width: 30px;
}

.load_ticket {
  margin-top: 130px;
}

.load_stay_slick {
  margin-bottom: 100px;
}

.load_stay_title {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.load_stay_title .load_party_title {
  margin-bottom: 0;
  margin: initial;
}

.load_stay_title .load_ribbon {
  width: 180px;
  margin: initial;
  margin-bottom: 20px;
}

.load_box_inner_noBottom {
  padding-bottom: 0;
}

.purple_title {
  width: 1200px;
}

.load_img_m {
  display: none;
}

.load_gold_box_program .load_ribbon_program {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -10px;
}

.load_program_item {
  width: calc((100% - 60px) / 4);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 5px rgba(200, 190, 200, 0.5);
  box-shadow: 5px 5px 5px rgba(200, 190, 200, 0.5);
  border: 2px solid #ddd7f5;
  margin-left: 10px;
  margin-right: 10px;
}

.load_program_item_pink {
  background-color: #fffafc;
}

.load_program_item_pink .load_program_title {
  background-color: #eb5895;
}

.load_program_title {
  background-color: #885dc1;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
}

.load_program_title span {
  font-size: 16px;
  margin-left: 10px;
}

.load_gold_box_program {
  padding: 100px 50px;
}

.load_program_content {
  padding: 20px;
}

.load_program_txt p {
  font-size: 18px;
  font-weight: 400;
  color: #5e5951;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.load_program_txt p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  top: 7px;
  width: 17px;
  height: 17px;
  background: url(../img/load_heart_lock.svg) no-repeat;
}

.load_program_txt .load_no_supply {
  color: #e5e5e5;
}

.load_program_txt .load_no_supply::before {
  background: url(../img/load_heart_lock_gray.svg) no-repeat;
}

.load_program_price {
  color: #eb5895;
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  padding-top: 10px;
  margin-top: 25px;
  border-top: 2px solid #f3f0ff;
}

.load_program_price span {
  font-size: 24px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.load_program_box {
  font-size: 18px;
  color: #885dc1;
  background-color: #f3f0ff;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.load_program_box span {
  margin-left: 10px;
}

.load_program_ps {
  color: #eb5895;
  text-align: center;
  font-weight: 500;
}

.load_program .slick-dots li {
  width: initial;
  height: initial;
  opacity: 1;
}

.load_program .slick-dots li button {
  width: 12px;
  height: 12px;
  position: relative;
  padding: 0;
  margin: 5px;
}

.load_program .slick-dots li button:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  background-color: #885dc1;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border-radius: 999em;
}

.load_program .slick-dots li button:hover:before {
  background-color: #eb5895;
}

.load_program .slick-dots li.slick-active button:before {
  background-color: #eb5895;
  opacity: 1;
}

.load_program .slick-dots {
  bottom: -50px;
}

.load_program .slick-list {
  padding-bottom: 20px;
}

.load_department_outer {
  margin-bottom: 150px;
}

.load_department_item_g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.load_department_item + .load_department_item {
  margin-left: 100px;
}

.load_department_item {
  display: inline-block;
}

.load_department_item p {
  font-size: 20px;
  font-weight: 400;
  border-bottom: 2px solid #dfd2ef;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.load_department_item img {
  width: initial;
  height: 80px;
}

.load_department_item img + img {
  margin-left: 30px;
}

.love_neru {
  width: 450px;
  position: absolute;
  bottom: 0;
  right: 50px;
}

.loading_footer {
  padding: 25px;
  background: url(../img/load_footer.svg) no-repeat center center;
  background-size: cover;
  text-align: center;
}

.loading_footer p {
  color: #fff;
}

@media (max-width: 1300px) {
  .load_wrap {
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }
  .load_party_secondBig_title {
    max-width: 650px;
    width: 90%;
  }
  .load_party_big_title {
    max-width: 950px;
    width: 100%;
  }
  .load_party_big_title,
  .load_gold_outer .purple_title {
    width: 100%;
  }
  .load_dialogue,
  .load_call,
  .load_goldLineCenter {
    display: none;
  }
  .love_neru {
    width: 35%;
    right: -20px;
  }
  .load_box_inner {
    padding: 60px 35px;
  }
  .load_box_inner_noBottom {
    padding-bottom: 0;
  }
  .load_gold_box {
    padding: 70px 35px;
  }
  .load_deco_topLeft,
  .load_deco_topRight,
  .load_deco_bottomLeft,
  .load_deco_bottomRight {
    width: 80px;
  }
}

@media (max-width: 1024px) {
  .gold_frame::before,
  .gold_frame::after {
    display: none;
  }
  .load_area_txt {
    margin-top: 80px;
  }
  .load_ribbon {
    width: 100%;
  }
  .load_lace_bg {
    top: -180px;
  }
  .love_neru {
    display: none;
  }
  .load_department_item {
    width: 100%;
  }
  .load_department_item_g .load_department_item {
    width: 50%;
  }
  .load_box01 {
    margin-top: 400px;
  }
  .load_party_content p,
  .load_table_title p,
  .load_table_txt p {
    font-size: 22px;
  }
  .load_area_txt p {
    font-size: 24px;
  }
}

@media (max-width: 990px) {
  .load_goldLineTop::before,
  .load_goldLineTop::after,
  .load_goldLineBottom::before,
  .load_goldLineBottom::after {
    width: 180px;
    height: 100px;
  }
  .gold_txt {
    width: 400px;
    bottom: -30px;
  }
  .load_title {
    width: 380px;
  }
  .load_first_pc {
    display: none;
  }
  .load_first_m {
    display: inline-block;
  }
  .load_gold_outer {
    margin-top: 280px;
  }
  .load_stay_title .load_ribbon {
    display: none;
  }
  .load_party_title {
    width: 350px;
  }
  .load_purple_ribbon {
    width: 450px;
    top: -75px;
  }
  .load_box_ribbon .load_box_inner {
    padding-top: 80px;
  }
  .load_bg::before,
  .load_bg::after {
    height: 800px;
    width: 33px;
  }
}

@media (max-width: 800px) {
  .load_party_content p,
  .load_table_title p,
  .load_table_txt p {
    font-size: 18px;
  }
  .load_party_content .load_party_ps {
    font-size: 16px;
  }
  .load_title {
    width: 300px;
    top: -45px;
  }
  .load_goldLineTop::before,
  .load_goldLineTop::after,
  .load_goldLineBottom::before,
  .load_goldLineBottom::after {
    width: 120px;
    height: 70px;
  }
  .gold_txt {
    width: 300px;
    bottom: -20px;
  }
  .load_party_big_title {
    width: calc(100% + 70px);
    margin-top: -250px;
    position: relative;
    left: -35px;
  }
  .load_box01 {
    margin-top: 250px;
  }
  .load_lace_bg {
    top: -130px;
    width: 90%;
  }
  .load_gold_outer {
    margin-top: 200px;
  }
  .load_area_txt p {
    font-size: 22px;
  }
  .load_bg {
    background-size: 60px;
  }
  .gold_txt_top {
    top: -25px;
  }
  .load_department_item img {
    height: 50px;
  }
  .load_department_item + .load_department_item {
    margin-left: 30px;
  }
  .load_party_secondBig_title {
    left: -5px;
  }
}

@media (max-width: 600px) {
  .load_department_item {
    margin-bottom: 20px;
  }
  .load_department_item p {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .load_department_item_g {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .load_department_item_g .load_department_item {
    width: 100%;
    margin-left: 0;
  }
  .load_wrap {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .load_bg::before,
  .load_bg::after {
    display: none;
  }
  .load_deco_topLeft,
  .load_deco_topRight,
  .load_deco_bottomLeft,
  .load_deco_bottomRight {
    width: 60px;
  }
  .load_deco_topLeft {
    left: -20px;
    top: -20px;
  }
  .load_deco_topRight {
    top: -20px;
    right: -20px;
  }
  .load_deco_bottomLeft {
    left: -20px;
    bottom: -20px;
  }
  .load_deco_bottomRight {
    right: -20px;
    bottom: -20px;
  }
  .load_purple_ribbon {
    width: 300px;
    top: -45px;
  }
  .load_title {
    width: 230px;
    top: -30px;
  }
  .load_table_txt p:first-child {
    width: 140px;
  }
  .load_table_txt p:last-child {
    width: calc(100% - 140px);
  }
  .load_table_title p:first-child {
    width: 140px;
  }
  .load_table_title p:last-child {
    width: calc(100% - 140px);
  }
  .load_last_arrow,
  .load_next_arrow {
    width: 90px;
    height: 25px;
    bottom: -40px;
  }
  .load_area_txt {
    margin-top: 50px;
  }
  .lace_img::before,
  .lace_img::after {
    height: 18px;
    background-size: 30px;
  }
  .lace_img_g {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .lace_img_g .lace_img {
    width: 100%;
  }
  .lace_img_g .lace_img + .lace_img {
    margin-left: 0;
    margin-top: 30px;
  }
  .load_table_txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .load_table_txt p {
    text-align: center;
  }
  .load_table_txt p:first-child {
    border-right: 0;
    width: 100%;
    padding-bottom: 0;
  }
  .load_table_txt p:last-child {
    width: 100%;
    padding-top: 5px;
  }
  .load_table_title p {
    text-align: center;
    width: 100%;
  }
  .load_table_title p:first-child {
    display: none;
  }
  .load_table_title p:last-child {
    display: none;
  }
  .load_table_title_pc {
    display: none;
  }
  .load_table_title_m {
    display: block;
  }
  .load_party_big_title {
    margin-top: -200px;
  }
  .load_box01 {
    margin-top: 220px;
  }
  .load_party_secondBig_title {
    margin-top: 20px;
  }
  .load_box {
    padding: 10px;
  }
  .load_box_inner {
    background-size: 20px;
  }
  .load_area_txt p {
    font-size: 18px;
  }
  .load_ribbon {
    height: 10px;
  }
  .load_heart_three {
    width: 100px;
  }
  .load_box_ribbon .load_ribbon_feature {
    margin: 15px auto;
  }
  .load_box_inner {
    padding: 40px 25px;
  }
  .load_box_ribbon .load_box_inner {
    padding-top: 70px;
  }
  .load_lace_bg {
    top: -90px;
  }
  .load_box_inner_noBottom {
    padding-bottom: 0;
  }
  .load_party_title {
    width: 300px;
  }
  .load_goldLineTop,
  .load_goldLineBottom {
    width: calc(100% + 10px);
  }
  .load_img_pc {
    display: none;
  }
  .load_img_m {
    display: block;
  }
  .shadow_img iframe {
    height: 350px;
  }
}

@media (max-width: 430px) {
  .load_purple_ribbon {
    width: 250px;
  }
  .lace_img::before,
  .lace_img::after {
    height: 15px;
    background-size: 25px;
  }
  .load_party_title {
    width: 250px;
  }
  .loading_footer p {
    font-size: 12px;
  }
  .load_first {
    margin-top: 50px;
  }
  .load_gold_outer {
    margin-top: 150px;
  }
  .load_box_ribbon {
    margin-top: 150px;
  }
  .gold_txt {
    width: 250px;
  }
  .gold_txt_top {
    top: -20px;
  }
  .load_wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .load_gold_box {
    padding: 55px 30px;
  }
  .load_box_inner {
    padding: 40px 20px;
  }
  .load_box_inner_noBottom {
    padding-bottom: 0;
  }
  .load_deco_topLeft,
  .load_deco_topRight,
  .load_deco_bottomLeft,
  .load_deco_bottomRight {
    width: 50px;
  }
  .morning_call {
    margin-top: 50px;
  }
  .purple_title {
    top: -25px;
  }
  .load_goldLineTop {
    top: -5px;
  }
  .load_goldLineTop::before {
    background: url('../img/load_gold_line01_m.svg') no-repeat;
  }
  .load_goldLineTop::after {
    background: url('../img/load_gold_line02_m.svg') no-repeat;
  }
  .load_goldLineBottom {
    bottom: -5px;
  }
  .load_goldLineBottom::before {
    background: url('../img/load_gold_line03_m.svg') no-repeat;
  }
  .load_goldLineBottom::after {
    background: url('../img/load_gold_line04_m.svg') no-repeat;
  }
  .load_goldLineTop::before,
  .load_goldLineTop::after,
  .load_goldLineBottom::before,
  .load_goldLineBottom::after {
    width: 40px;
    height: 40px;
  }
  .load_box {
    margin-bottom: 90px;
  }
  .load_box_ribbon {
    margin-top: 100px;
  }
  .load_ticket {
    margin-top: 70px;
  }
  .load_box02 {
    margin-top: 90px;
  }
  .load_stay_slick {
    margin-bottom: 70px;
  }
  .load_box_ribbon .load_box_inner {
    padding-top: 50px;
  }
  .load_program .slick-dots {
    bottom: -25px;
  }
  .load_gold_box_program {
    padding: 40px 20px;
    padding-top: 60px;
  }
  .load_totop {
    width: 90px;
    right: 20px;
    bottom: 20px;
  }
  .load_department_outer {
    margin-bottom: 90px;
  }
  .load_party_content p {
    margin-bottom: 10px;
  }
  .load_party_title {
    margin-bottom: 20px;
  }
  .load_ribbon {
    margin: 30px auto;
  }
  .load_party_content .load_party_ps {
    margin-top: -10px;
  }
  .load_svg01 {
    width: 100px;
    left: 10px;
    top: 50px;
  }
  .load_svg02 {
    width: 70px;
    left: 50px;
    top: 110px;
  }
  .load_svg03 {
    width: 80px;
    left: 10px;
  }
  .load_svg04 {
    right: 40px;
  }
  .load_svg05 {
    width: 150px;
    bottom: 110px;
    left: -30px;
  }
  .load_svg06 {
    width: 40px;
    bottom: 160px;
    left: 80px;
  }
  .load_svg07 {
    width: 140px;
    bottom: 300px;
    right: -40px;
  }
  .load_svg08 {
    width: 70px;
    right: 50px;
    bottom: 280px;
  }
  .load_table_call {
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }

  .shadow_img iframe {
    height: 250px;
  }
}
