@charset "UTF-8";
/* default settings */
/* =================================================================== */
.loading-mask, .loading-mask02 {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loading-mask:before, .loading-mask02:before {
  position: absolute;
  content: "";
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 999;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
.loading-mask.loading-mask--initial:before, .loading-mask02.loading-mask--initial:before {
  background: #FFE655;
}
.loading-mask.loading-mask--skyblue:before, .loading-mask.loading-mask02--skyblue:before, .loading-mask02.loading-mask--skyblue:before, .loading-mask02.loading-mask02--skyblue:before {
  background: #2886F7;
}
.loading-mask.loading-mask--teal:before, .loading-mask.loading-mask02--teal:before, .loading-mask02.loading-mask--teal:before, .loading-mask02.loading-mask02--teal:before {
  background: #3DC6A7;
}
.loading-mask.loading-mask--blue:before, .loading-mask.loading-mask02--blue:before, .loading-mask02.loading-mask--blue:before, .loading-mask02.loading-mask02--blue:before {
  background: #013D84;
}
.loading-mask.loading-mask--orange:before, .loading-mask.loading-mask02--orange:before, .loading-mask02.loading-mask--orange:before, .loading-mask02.loading-mask02--orange:before {
  background: #FD7453;
}
.loading-mask.loading-mask--pink:before, .loading-mask.loading-mask02--pink:before, .loading-mask02.loading-mask--pink:before, .loading-mask02.loading-mask02--pink:before {
  background: #EB70AE;
}

.is-loaded .loading-mask {
  -webkit-animation: fadeOut 0.8s ease-in-out 2s forwards;
          animation: fadeOut 0.8s ease-in-out 2s forwards;
}
.is-loaded .loading-mask:before {
  -webkit-animation: PageAnime-circle 2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: PageAnime-circle 2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
.is-loaded .is-gen-done .loading-mask02 {
  -webkit-animation: fadeOut 0.8s ease-in-out 2s forwards;
          animation: fadeOut 0.8s ease-in-out 2s forwards;
}
.is-loaded .is-gen-done .loading-mask02:before {
  -webkit-animation: PageAnime-circle 2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
          animation: PageAnime-circle 2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}

@-webkit-keyframes PageAnime-circle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(100);
            transform: scale(100);
  }
  60% {
    -webkit-transform: scale(100);
            transform: scale(100);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes PageAnime-circle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(100);
            transform: scale(100);
  }
  60% {
    -webkit-transform: scale(100);
            transform: scale(100);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(51, 51, 51, 0.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3.125rem 0 3.125rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.45s linear;
  transition: opacity 0.45s linear;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}
.modal ::-webkit-scrollbar,
.modal ::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  background: none;
  z-index: 2;
}
.modal-close:before, .modal-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.375rem;
  height: 2px;
  background-color: #fff;
}
.modal-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-content {
  position: relative;
  width: 22.1875rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: url("/assets/img/modal_bg.png") bottom no-repeat, #FFE655;
  background-size: contain;
  color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
}
.modal__head {
  padding: 2.5rem 0 3.75rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 32, 119, 0.24);
          box-shadow: 0 0 0.75rem rgba(0, 32, 119, 0.24);
}
.modal__head:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/img/explore-designer/modal_bg-rp.png") top center repeat-y;
  background-size: 22.1875rem;
  z-index: -1;
  pointer-events: none;
}
.modal__ttl {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding: 0 1.875rem 2.125rem;
}
.modal__img {
  width: 18.4375rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  border: 0.25rem solid #fff;
}
.modal__img img {
  border-radius: 0.375rem;
}
.modal__txt {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 2;
  padding: 2.4375rem 1.875rem 2rem;
}
.modal__list {
  padding-inline: 1.875rem;
}
.modal__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__list dl + dl {
  margin-top: 0.6875rem;
}
.modal__list dl dt {
  width: 5rem;
  min-height: 1.625rem;
  padding: 0.1875rem 0.625rem;
  background: #fff;
  border-radius: 1.875rem;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
  margin-left: 1rem;
}
.modal-btn__wrapper {
  padding: 4rem 0 4.375rem;
}
.modal-btn__wrapper .btn__back {
  margin-top: 2.625rem;
}
.modal.modal-color-skyblue .modal-content .modal__head {
  background: #2886F7;
}
.modal.modal-color-skyblue .modal-content .modal__head .modal__list dl dt {
  color: #2886F7;
}
.modal.modal-color-teal .modal-content .modal__head {
  background: #3DC6A7;
}
.modal.modal-color-teal .modal-content .modal__head .modal__list dl dt {
  color: #3DC6A7;
}
.modal.modal-color-blue .modal-content .modal__head {
  background: #013D84;
}
.modal.modal-color-blue .modal-content .modal__head .modal__list dl dt {
  color: #013D84;
}
.modal.modal-color-orange .modal-content .modal__head {
  background: #FD7453;
}
.modal.modal-color-orange .modal-content .modal__head .modal__list dl dt {
  color: #FD7453;
}
.modal.modal-color-pink .modal-content .modal__head {
  background: #EB70AE;
}
.modal.modal-color-pink .modal-content .modal__head .modal__list dl dt {
  color: #EB70AE;
}

.modal-info {
  background: #ffe655;
  padding: 1.875rem 0 3.125rem;
  top: 6.25rem;
  width: 23.4375rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .modal-info {
    top: 0;
  }
}
.modal-info .slick-track {
  padding: 1.25rem 0;
}
.modal-info .modal-content {
  background: transparent;
  width: 100%;
  max-width: 23.4375rem;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.16s linear;
  transition: all 0.16s linear;
}
.modal-info.is-active .modal-content {
  opacity: 1;
  visibility: visible;
}
.modal-info .modal__info {
  padding: 0.8125rem;
  background: #fff;
  width: 20.9375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 0.3125rem;
  -webkit-box-shadow: 0 0.25rem 1.5rem rgba(119, 64, 0, 0.16);
          box-shadow: 0 0.25rem 1.5rem rgba(119, 64, 0, 0.16);
}
.modal-info .modal__info.modal__info--skyblue {
  border: 0.125rem solid #005FCE;
}
.modal-info .modal__info.modal__info--skyblue .modal__info-tag li {
  color: #005FCE;
}
.modal-info .modal__info.modal__info--teal {
  border: 0.125rem solid #05C6BC;
}
.modal-info .modal__info.modal__info--teal .modal__info-tag li {
  color: #05C6BC;
}
.modal-info .modal__info.modal__info--blue {
  border: 0.125rem solid #013D84;
}
.modal-info .modal__info.modal__info--blue .modal__info-tag li {
  color: #013D84;
}
.modal-info .modal__info.modal__info--orange {
  border: 0.125rem solid #FD7453;
}
.modal-info .modal__info.modal__info--orange .modal__info-tag li {
  color: #FD7453;
}
.modal-info .modal__info.modal__info--pink {
  border: 0.125rem solid #EB70AE;
}
.modal-info .modal__info.modal__info--pink .modal__info-tag li {
  color: #EB70AE;
}
.modal-info .modal__info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.modal-info .modal__info-img {
  width: 11.25rem;
  margin: 0 auto;
  border-radius: 0.375rem;
  overflow: hidden;
}
.modal-info .modal__info-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
  letter-spacing: 0.01em;
  font-weight: bold;
}
.modal-info .modal__info-name .c-label {
  font-size: 0.6875rem;
  line-height: 1.9090909091;
  margin-bottom: 0.25rem;
}
.modal-info .modal__info-name .c-name {
  font-size: 1rem;
  line-height: 2.25;
  display: block;
}
.modal-info .modal__info-name .c-name small {
  font-size: 0.75rem;
  font-weight: 500;
}
.modal-info .modal__info-desc {
  min-height: 9.8125rem;
  padding: 0 0.625rem;
}
.modal-info .modal__info-txt {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}
.modal-info .modal__info-tag {
  margin-top: 0.4375rem;
}
.modal-info .modal__info-tag li {
  font-size: 0.75rem;
  line-height: 1.68;
  letter-spacing: 0.04em;
}
.modal-info .modal__info-gallery {
  margin: 0.3125rem 0.5625rem 0.5625rem;
}
.modal-info .modal__info-gallery .c-ttl {
  color: #333333;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid rgba(76, 76, 77, 0.2);
  padding-bottom: 0.1875rem;
  margin-bottom: 0.75rem;
}
.modal-info .modal__info-gallery .c-gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.90625rem;
}
.modal-info .modal__info-gallery .c-gallery__item {
  width: 5.375rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.modal-info .scroll-hint {
  position: absolute;
  top: 14.375rem;
  left: calc(50% - 2.25rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.25rem;
  -webkit-transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: 10;
  pointer-events: none;
}
.modal-info .scroll-hint.is-active {
  opacity: 0;
  visibility: hidden;
}
.modal-info .modal-btn__wrapper {
  padding: 0 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
.modal-info .modal-btn__wrapper .btn__close {
  width: 6.25rem;
  height: 4rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #333;
  background: #fff;
  color: #333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .modal-info .modal-btn__wrapper .btn__close:hover {
    opacity: 0.8;
  }
}
.modal-info .modal-btn__wrapper .btn__main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 10rem;
  height: 4rem;
  padding-right: 0;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  margin: 0;
}
.modal-info .modal-btn__wrapper .btn__main:after {
  display: none;
}
.modal-info .modal-btn__wrapper .btn__main span {
  display: block;
  font-size: 0.875rem;
}
.modal-info .modal-close:before, .modal-info .modal-close:after {
  background-color: #333;
}

.modal.is-active .modal-slider.swiper-initialized {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes opening-loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes opening-loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes scroll-loop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes scroll-loop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes bounceImg {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes bounceImg {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes katakata {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-10.245deg);
            transform: rotate(-10.245deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(10.245deg);
            transform: rotate(10.245deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes katakata {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-10.245deg);
            transform: rotate(-10.245deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(10.245deg);
            transform: rotate(10.245deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.loading__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  -webkit-animation: dotWave 1.2s ease-in-out infinite;
          animation: dotWave 1.2s ease-in-out infinite;
}

.loading__dot--red {
  background-color: #FF5555;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.loading__dot--purple {
  background-color: #EB70AE;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.loading__dot--blue {
  background-color: #3DC6A7;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.loading__dot--orange {
  background-color: #FD7453;
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

.loading__dot--dark-blue {
  background-color: #005FCE;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loading__text {
  font-size: 0.75rem;
  color: rgba(51, 51, 51, 0.4);
  font-weight: 500;
}

/* Animations */
@-webkit-keyframes dotWave {
  0%, 60%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-0.625rem);
            transform: translateY(-0.625rem);
    opacity: 1;
  }
}
@keyframes dotWave {
  0%, 60%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-0.625rem);
            transform: translateY(-0.625rem);
    opacity: 1;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.slick-dots li.slick-active button {
  background: #E60048;
  border-color: #E60048;
}

/* =================================================================== */
.kv:before {
  content: "";
  z-index: -1;
}
@media (min-width: 768px) {
  .kv:before {
    position: fixed;
    width: 187.5rem;
    height: 71.875rem;
    background: url("/assets/img/top/kv_bg-detail.png") no-repeat center;
    background-size: contain;
    top: 6.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .kv:before {
    position: absolute;
    width: 23.4375rem;
    height: 32.5rem;
    background: url("/assets/img/top/kv_bg_sp.png") no-repeat center;
    background-size: cover;
    top: 1.25rem;
    left: 0;
    right: 0;
  }
}
.kv__opening {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 23.4375rem;
  margin: 0 auto;
  text-align: center;
  pointer-events: none;
  background: #fce656;
}
@media (min-width: 768px) {
  .kv__opening {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .kv__opening:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 137.5rem;
    height: 77.5rem;
    background: url("/assets/img/top/opening_bg.png") no-repeat center;
    background-size: cover;
  }
}
.kv__opening-inner {
  position: relative;
  padding-bottom: 3.125rem;
  margin-top: -7.75rem;
}
@media (min-width: 768px) {
  .kv__opening-inner {
    width: 100%;
  }
}
.kv__opening-ttl {
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .kv__opening-ttl {
    font-size: 1.5rem;
    line-height: 2.5;
    letter-spacing: 0.08em;
  }
}
.kv__opening-txt {
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: bold;
}
@media (min-width: 768px) {
  .kv__opening-txt {
    font-size: 2rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}
.kv__opening-loading {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.625rem;
  width: 14.6875rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .kv__opening-loading {
    width: 30rem;
    height: 0.875rem;
  }
}
.kv__opening-loading span {
  display: block;
  width: 0;
  height: 100%;
  background: #005FCE;
  border-radius: 0.5rem;
}
.kv__content {
  z-index: 9;
}
@media (min-width: 768px) {
  .kv__content {
    position: fixed;
    top: 6.25rem;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100dvh - 6.25rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .kv__content {
    height: 60vw;
  }
}
@media (max-width: 767px) {
  .kv__content {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 3.25rem;
    position: relative;
  }
}
@media (min-width: 768px) {
  .kv__content-img {
    width: 23.75rem;
    margin-left: 0;
    position: absolute;
    top: calc(50% - 10.125rem);
    left: calc(50% - 40.25rem);
    margin-top: -3.4375rem;
    z-index: 3;
  }
}
@media (max-width: 767px) {
  .kv__content-img {
    width: 21.375rem;
    margin-left: -0.1875rem;
  }
}
.kv__content-slider {
  z-index: -1;
  position: absolute;
  width: 32.25rem;
  pointer-events: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .kv__content-slider {
    width: 24.75rem;
  }
}
.kv__content-slider img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  will-change: transform;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media (min-width: 768px) {
  .kv__content-slider img {
    width: 65rem;
  }
}
@media (max-width: 767px) {
  .kv__content-slider img {
    width: 51rem;
  }
}
.kv__content-slider__list {
  will-change: transform;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: translateX(8%);
          transform: translateX(8%);
}
.kv__content-slider-01 {
  -webkit-transform: rotate(-8deg) scaleX(-1);
          transform: rotate(-8deg) scaleX(-1);
}
@media (min-width: 768px) {
  .kv__content-slider-01 {
    top: calc(50% - 12.3125rem);
    left: calc(50% + 10.9375rem);
  }
}
@media (max-width: 767px) {
  .kv__content-slider-01 {
    top: -1.25rem;
    left: -0.75rem;
    right: 0;
  }
}
.kv__content-slider-02 {
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media (min-width: 768px) {
  .kv__content-slider-02 {
    top: calc(50% - 0.5rem);
    left: calc(50% + 10.875rem);
  }
}
@media (max-width: 767px) {
  .kv__content-slider-02 {
    bottom: 1.625rem;
    left: -0.75rem;
    right: 0;
  }
}
@media (min-width: 768px) {
  .kv__content-slider-02 img {
    width: 68.75rem;
  }
}
@media (min-width: 768px) {
  .kv__content-deco {
    position: fixed;
    top: 8.0625rem;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
  }
  .kv__content-deco::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 103.75rem;
    height: 38.125rem;
    background: url("/assets/img/top/kv_deco-pc.png") no-repeat center;
    background-size: cover;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .kv__content-deco {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
  .kv__content-deco:before, .kv__content-deco:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
  }
  .kv__content-deco:before {
    top: 4.375rem;
    height: 5.3125rem;
    background: url("/assets/img/top/kv_deco01.png") no-repeat center;
    background-size: contain;
  }
  .kv__content-deco:after {
    bottom: 6.75rem;
    height: 5rem;
    background: url("/assets/img/top/kv_deco02.png") no-repeat center;
    background-size: contain;
  }
}
.kv__content-avt {
  position: absolute;
  bottom: 0;
  left: calc(50% + 18.75rem);
  width: 25.625rem;
  height: 12.875rem;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 767px) {
  .kv__content-avt {
    position: fixed;
    left: auto;
    right: 0;
    width: 15.625rem;
    height: 7.75rem;
    z-index: 10;
  }
}
.kv__content-avt img {
  width: auto;
  height: 12.875rem;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 767px) {
  .kv__content-avt img {
    height: 7.75rem;
  }
}
.kv__content-avt img.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 2;
}
.kv__content-avt img.is-leave {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 1;
}
@media (max-width: 767px) {
  .kv__content-avt .is-pause {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
}
.kv__opening-content {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.kv__opening-loading {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.kv__opening-loading span {
  -webkit-animation: opening-loading 2s forwards;
          animation: opening-loading 2s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.kv__content-img {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.kv__content-deco {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.kv.is-opening .kv__opening-content {
  opacity: 1;
  visibility: visible;
}
.kv.is-opening .kv__opening-loading {
  opacity: 1;
  visibility: visible;
}
.kv.is-opening .kv__opening-loading span {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@media (min-width: 768px) {
  .kv.is-opening.is-active .kv__opening {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
  }
}
.kv.is-opening.is-active .kv__opening-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.kv.is-opening.is-active .kv__opening-loading {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.kv.is-opening.is-active .kv__content .kv__content-img {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.kv.is-opening.is-active .kv__content .kv__content-deco {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.kv.is-opening.is-active .kv__content .kv__content-slider__list {
  -webkit-animation: slideIn 30s linear 1.5s forwards;
          animation: slideIn 30s linear 1.5s forwards;
}
.kv.is-opening.is-active .kv__content .kv__content-slider__list.is-marquee {
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
}

@media (max-width: 767px) {
  .page-top .kv {
    height: calc(100svh - 3.75rem);
    margin-top: 3.75rem;
    position: relative;
  }
}
@media (min-width: 768px) {
  .page-top .kv:before {
    display: none;
  }
}
.page-top .kv__content {
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-top .kv__content {
    z-index: 1;
  }
  .page-top .kv__content:before, .page-top .kv__content:after {
    content: "";
    position: absolute;
    top: 0;
    width: 93.75rem;
    height: 71.875rem;
    pointer-events: none;
  }
  .page-top .kv__content:before {
    background: url("/assets/img/top/kv_bg-01.png") no-repeat center, #FFE23B;
    background-size: cover;
    left: calc(50% - 93.75rem);
    z-index: 1;
  }
  .page-top .kv__content:after {
    background: url("/assets/img/top/kv_bg-02.png") no-repeat center, #FFE23B;
    background-size: cover;
    left: 50%;
    z-index: -2;
  }
}
.page-top .kv.is-cache.kv__opening {
  display: none;
}

@media (max-width: 767px) {
  .page-detail .kv {
    display: none;
  }
}
.page-detail .kv__opening {
  display: none;
}
.page-detail .kv__content {
  pointer-events: none;
}
.page-detail .kv__content-img {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 768px) {
  .page-detail .kv__content-img {
    margin-top: 0;
  }
}

/* ==========================PAGE================================= */
.page-top .main {
  opacity: 0;
}
@media (min-width: 768px) {
  .page-top .kv__content, .page-top .header {
    opacity: 0;
  }
}
.page-top.is-loaded .main {
  opacity: 1;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
@media (min-width: 768px) {
  .page-top.is-loaded .kv__content, .page-top.is-loaded .header {
    opacity: 1;
    -webkit-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
  }
}
.page-top.is-locked {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .page-top header {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-top .banner {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-top .banner {
    padding: 3rem 0 0;
  }
}
@media (max-width: 767px) {
  .page-top .banner .btn__secondary {
    margin-top: 0.5rem;
  }
}
.page-top .intro {
  background-size: contain;
  position: relative;
}
@media (min-width: 768px) {
  .page-top .intro {
    padding: 4.375rem 1.25rem 6.25rem;
  }
}
@media (max-width: 767px) {
  .page-top .intro {
    padding: 5.375rem 1.25rem 6.25rem;
  }
}
.page-top .intro:before, .page-top .intro:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.page-top .intro:before {
  top: 1.375rem;
  height: 58.75rem;
  background: url("/assets/img/top/intro_deco01.png") no-repeat center;
  background-size: contain;
}
.page-top .intro__txt {
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.04em;
  background: url("/assets/img/bg_dot.png") top center repeat;
  background-size: 0.5rem;
  padding: 3.75rem 1.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.page-top .intro__txt .note {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-top: 1.9375rem;
}
.page-top .intro__txt p + p {
  margin-top: 2.3125rem;
}
.page-top .intro__img {
  margin-top: 6.25rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-inline: -1.25rem;
}
.page-top .intro__img-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll-loop 80s linear infinite;
          animation: scroll-loop 80s linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  pointer-events: none;
}
.page-top .intro__img-track img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 51.625rem;
  height: auto;
}
.page-top .step {
  padding-bottom: 7.5rem;
  background: url("/assets/img/top/step_bg.png") no-repeat bottom center;
  background-size: contain;
}
.page-top .step__item {
  background: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0 -0.5rem 1.5rem rgba(119, 64, 0, 0.08);
          box-shadow: 0 -0.5rem 1.5rem rgba(119, 64, 0, 0.08);
  padding: 2.25rem 1.25rem 7.375rem;
  position: relative;
  z-index: 1;
  margin-bottom: -3.3125rem;
}
.page-top .step__item:last-child {
  margin-bottom: 0;
  padding-bottom: 4.1875rem;
}
.page-top .step__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 23.4375rem;
  height: 22.8125rem;
  background: url("/assets/img/top/step_deco.png") no-repeat center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}
.page-top .step__item:nth-child(even):before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.page-top .step__num {
  width: 6.5625rem;
  height: 6.5625rem;
  margin: 0 auto;
  position: relative;
}
.page-top .step__num img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: katakata 3s infinite step-start;
          animation: katakata 3s infinite step-start;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.page-top .step__num-02 img {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.page-top .step__ttl {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.4583333333;
  font-weight: bold;
  margin-top: 0.8125rem;
  text-align: center;
}
.page-top .step__txt {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}
.page-top .step__img {
  width: 13.4375rem;
  margin: 1.875rem auto 0;
}
.page-top .step__icon {
  width: 3.9375rem;
  height: 3.9375rem;
  margin: 0.625rem auto 0;
}
.page-top .step__icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: katakata 3s infinite step-start;
          animation: katakata 3s infinite step-start;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.page-top .step__note {
  padding-inline: 2.3125rem;
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 2.3125rem;
}
.page-top .step__btn {
  margin-top: 4.9375rem;
}

.page-terms {
  opacity: 0;
}
.page-terms.is-loaded {
  opacity: 1;
  -webkit-transition: opacity 0.45s linear;
  transition: opacity 0.45s linear;
}
.page-terms .terms {
  padding: 1.75rem 1.0625rem 1.5rem;
}
.page-terms .terms__ttl {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.1875rem;
}
.page-terms .terms__box {
  background: #fff;
  border-radius: 0.5rem;
  border: 0.1875rem solid #FFF9D6;
  padding: 1.125rem 1.25rem;
  height: calc(100dvh - 6.25rem - 4.6875rem - 12.5rem - 3.25rem);
  min-height: 15.625rem;
  overflow: auto;
}
@media (max-width: 767px) {
  .page-terms .terms__box {
    height: calc(100dvh - 3.75rem - 4.6875rem - 13.125rem - 3.25rem);
  }
}
.page-terms .terms__sttl {
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0.625rem;
  text-align: center;
}
.page-terms .terms__text {
  font-size: 0.75rem;
  line-height: 2;
  margin-bottom: 1.375rem;
}
.page-terms .terms__subtext {
  margin-left: 1.25rem;
}
.page-terms .terms__agree {
  text-align: center;
  margin: 1.1875rem 0 0;
}
.page-terms .terms__agree .terms__checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.page-terms .terms__agree .terms__checkbox-input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #333;
  border-radius: 0.125rem;
  background-color: #fff;
  position: relative;
  margin-right: 0.75rem;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-terms .terms__agree .terms__checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.1875rem;
  width: 0.625rem;
  height: 0.4375rem;
  background: url("/assets/img/icon_checked.png") no-repeat center;
  background-size: 100%;
}
.page-terms .terms__agree .terms__checkbox-label {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
}
.page-terms .terms__note {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 0.75rem;
  margin-bottom: 1.1875rem;
  text-align: center;
  display: block;
}
.page-terms .terms__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.page-terms .terms__btn .btn__main.is-disable {
  pointer-events: none;
  background: #BEBEBE;
}

.page-explore-designer {
  opacity: 0;
}
.page-explore-designer.is-loaded {
  opacity: 1;
  -webkit-transition: opacity 0.45s linear;
  transition: opacity 0.45s linear;
}
.page-explore-designer .mobility {
  background: url("/assets/img/bg_dot.png") top center repeat;
  background-size: 0.5rem;
  position: relative;
  width: 23.4375rem;
  overflow: hidden;
}
.page-explore-designer .mobility__header {
  text-align: center;
  background: url("/assets/img/explore-designer/mobility_head-deco.png") center top no-repeat, #FFE655;
  background-size: 100% auto;
  padding: 2.125rem 0 1rem;
  border-radius: 1rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(119, 64, 0, 0.07);
          box-shadow: 0 0.1875rem 0.375rem rgba(119, 64, 0, 0.07);
  position: fixed;
  left: 0;
  right: 0;
  width: 23.4375rem;
  margin: 0 auto;
  z-index: 9;
  top: 6.25rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 767px) {
  .page-explore-designer .mobility__header {
    top: 3.75rem;
  }
}
.page-explore-designer .mobility__header.is-collapse {
  -webkit-transform: translateY(-6.875rem);
          transform: translateY(-6.875rem);
}
.page-explore-designer .mobility__title {
  width: 19.0625rem;
  margin: 0 auto;
}
.page-explore-designer .mobility__tabs {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-explore-designer .mobility__tabs::-webkit-scrollbar {
  display: none;
}
.page-explore-designer .mobility__tabs-inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 0.375rem;
  padding: 1.25rem 0 0;
  padding-inline: 1.25rem;
}
.page-explore-designer .mobility__tab {
  text-align: center;
  min-width: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.page-explore-designer .mobility__tab-icon {
  width: 4.625rem;
  aspect-ratio: 1/1;
  padding: 0.25rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.page-explore-designer .mobility__tab-icon img {
  border: 0.125rem solid #FFE655;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.page-explore-designer .mobility__tab-inner {
  position: relative;
  z-index: 1;
}
.page-explore-designer .mobility__tab-inner:before {
  content: "";
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  position: absolute;
  background: #FFE655;
  border-radius: 50%;
  z-index: 2;
}
.page-explore-designer .mobility__tab-inner:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  background: url("/assets/img/explore-designer/bg_gradient-all.png"), url("/assets/img/explore-designer/bg_gradient-skyblue.png"), url("/assets/img/explore-designer/bg_gradient-teal.png"), url("/assets/img/explore-designer/bg_gradient-blue.png"), url("/assets/img/explore-designer/bg_gradient-orange.png"), url("/assets/img/explore-designer/bg_gradient-pink.png");
}
.page-explore-designer .mobility__tab-label {
  font-size: 0.625rem;
  font-weight: 500;
  color: #333333;
  opacity: 0.4;
}
.page-explore-designer .mobility__tab.is-active .mobility__tab-icon {
  margin-bottom: 0.25rem;
}
.page-explore-designer .mobility__tab.is-active.is-all .mobility__tab-icon {
  background: url("/assets/img/explore-designer/bg_gradient-all.png") no-repeat center, #FFE655;
  background-size: cover;
}
.page-explore-designer .mobility__tab.is-active.is-skyblue .mobility__tab-icon {
  background: url("/assets/img/explore-designer/bg_gradient-skyblue.png") no-repeat center, #FFE655;
  background-size: cover;
}
.page-explore-designer .mobility__tab.is-active.is-teal .mobility__tab-icon {
  background: url("/assets/img/explore-designer/bg_gradient-teal.png") no-repeat center, #FFE655;
  background-size: cover;
}
.page-explore-designer .mobility__tab.is-active.is-blue .mobility__tab-icon {
  background: url("/assets/img/explore-designer/bg_gradient-blue.png") no-repeat center, #FFE655;
  background-size: cover;
}
.page-explore-designer .mobility__tab.is-active.is-orange .mobility__tab-icon {
  background: url("/assets/img/explore-designer/bg_gradient-orange.png") no-repeat center, #FFE655;
  background-size: cover;
}
.page-explore-designer .mobility__tab.is-active.is-pink .mobility__tab-icon {
  background: url("/assets/img/explore-designer/bg_gradient-pink.png") no-repeat center, #FFE655;
  background-size: cover;
}
.page-explore-designer .mobility__tab.is-active .mobility__tab-label {
  opacity: 1;
}
.page-explore-designer .mobility__list {
  padding: 17rem 1.25rem 6.25rem;
  position: relative;
  min-height: calc(100dvh - 6.25rem);
}
@media (max-width: 767px) {
  .page-explore-designer .mobility__list {
    min-height: calc(100dvh - 3.75rem);
  }
}
.page-explore-designer .mobility__list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1.1875rem 0.625rem;
}
.page-explore-designer .mobility__item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.375rem;
  width: 10.125rem;
  -webkit-box-shadow: 0 0.1875rem 0.625rem rgba(119, 64, 0, 0.07);
          box-shadow: 0 0.1875rem 0.625rem rgba(119, 64, 0, 0.07);
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.page-explore-designer .mobility__image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.375rem;
  overflow: hidden;
}
.page-explore-designer .mobility__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-explore-designer .mobility__caption {
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: bold;
  padding: 1rem 0.5rem 0.75rem;
}
.page-explore-designer .mobility__tag {
  width: 1.5625rem;
  height: 0.9375rem;
  display: block;
  position: absolute;
  right: 0.4375rem;
  bottom: 0.4375rem;
}
.page-explore-designer .mobility__tag--skyblue {
  background: url("/assets/img/explore-designer/tag_skyblue.png") no-repeat center;
  background-size: cover;
}
.page-explore-designer .mobility__tag--orange {
  background: url("/assets/img/explore-designer/tag_orange.png") no-repeat center;
  background-size: cover;
}
.page-explore-designer .mobility__tag--teal {
  background: url("/assets/img/explore-designer/tag_teal.png") no-repeat center;
  background-size: cover;
}
.page-explore-designer .mobility__tag--blue {
  background: url("/assets/img/explore-designer/tag_blue.png") no-repeat center;
  background-size: cover;
}
.page-explore-designer .mobility__tag--pink {
  background: url("/assets/img/explore-designer/tag_pink.png") no-repeat center;
  background-size: cover;
}
.page-explore-designer .mobility__btn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFE655;
  padding: 0.875rem 0;
  z-index: 9;
  width: 23.4375rem;
  margin: 0 auto;
}
.page-explore-designer .mobility__loading {
  text-align: center;
  margin-top: 11.875rem;
  width: 100%;
  position: fixed;
  top: 7.625rem;
  left: 0;
  right: 0;
  width: 23.4375rem;
  margin: 0 auto;
  height: 80vh;
  padding-top: 18.75rem;
  z-index: 20;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 767px) {
  .page-explore-designer .mobility__loading {
    top: 3.75rem;
  }
}
.page-explore-designer .mobility__loading.is-collapse {
  -webkit-transform: translateY(-6.875rem);
          transform: translateY(-6.875rem);
}
.page-explore-designer .mobility__loading .loader {
  position: relative;
  z-index: 1;
}

/* Enhanced styles for drag functionality */
.mobility__tabs {
  cursor: -webkit-grab;
  cursor: grab;
  scroll-behavior: smooth;
}

.mobility__tabs:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

@media (min-width: 768px) {
  .mobility__tabs {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .mobility__tab-label {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .mobility__tabs {
    -webkit-overflow-scrolling: touch;
    cursor: default;
    scroll-behavior: auto;
  }
}
.page-step .select {
  background: url("/assets/img/select-designer/step01/step01_bg.png") no-repeat center top;
  background-size: contain;
  padding: 2.5rem 0.625rem 6.25rem;
}
.page-step .step {
  text-align: center;
  margin-bottom: 2.5rem;
}
.page-step .step-list {
  width: 11.25rem;
  height: 2.5rem;
  margin: 0 auto;
  position: relative;
}
.page-step .step-list__num {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: red;
  padding: 0 0.625rem;
}
.page-step .step-caption {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
}
.page-step .select__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: #FFE655;
  padding: 0.8125rem 1.25rem 0.875rem;
  width: 23.4375rem;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 249, 214, 0.5);
}
.page-step .select__btn {
  font-size: 0.9375rem;
  padding: 0.625rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  width: 9.8125rem;
  height: 2.75rem;
  cursor: pointer;
}
.page-step .select__btn--back {
  background: #fff;
  border: 1px solid #333333;
  font-weight: 500;
}
.page-step .select__btn--next {
  background: #ccc;
  color: #fff;
  position: relative;
  cursor: inherit;
  pointer-events: none;
}
.page-step .select__btn--next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/img/select-designer/step01/select_btn_deco.png") no-repeat center;
  background-size: cover;
}
.page-step .select__btn--next:not([disabled], .is-disable) {
  background: #005FCE;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1025px) {
  .page-step .select__btn:not([disabled]):not(.is-disable):hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 600px) {
  .page-step input,
  .page-step textarea {
    font-size: 16px !important;
  }
}

.page-step01 .select {
  padding-inline: 1.25rem;
}
.page-step01 .select__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.page-step01 .select__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.04);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.04);
  padding: 0.3125rem;
  border-radius: 0.5rem;
  min-height: 10.75rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.page-step01 .select__item:before, .page-step01 .select__item:after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-step01 .select__item:before {
  top: 0;
  right: 0;
  width: 20.8125rem;
  bottom: 0;
  z-index: -1;
  border-radius: 0.5rem;
}
.page-step01 .select__item.is-selected:after {
  top: -0.125rem;
  left: -0.125rem;
  right: -0.125rem;
  bottom: -0.125rem;
  border-radius: 0.75rem;
  border: 0.1875rem solid transparent;
}
.page-step01 .select__item-skyblue:before {
  background: url("/assets/img/select-designer/step01/mask_skyblue.png") no-repeat center;
  background-size: cover;
}
.page-step01 .select__item-skyblue.is-selected:after {
  border-color: #2886F7;
}
.page-step01 .select__item-teal:before {
  background: url("/assets/img/select-designer/step01/mask_teal.png") no-repeat center;
  background-size: cover;
}
.page-step01 .select__item-teal.is-selected:after {
  border-color: #05C6BC;
}
.page-step01 .select__item-blue:before {
  background: url("/assets/img/select-designer/step01/mask_blue.png") no-repeat center;
  background-size: cover;
}
.page-step01 .select__item-blue.is-selected:after {
  border-color: #013D84;
}
.page-step01 .select__item-orange:before {
  background: url("/assets/img/select-designer/step01/mask_orange.png") no-repeat center;
  background-size: cover;
}
.page-step01 .select__item-orange.is-selected:after {
  border-color: #FD7453;
}
.page-step01 .select__item-pink:before {
  background: url("/assets/img/select-designer/step01/mask_pink.png") no-repeat center;
  background-size: cover;
}
.page-step01 .select__item-pink.is-selected:after {
  border-color: #EB70AE;
}
.page-step01 .select__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0.9375rem;
}
.page-step01 .select__info {
  padding: 0 0.625rem;
}
.page-step01 .select__info-label {
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.9090909091;
  letter-spacing: 0.01em;
}
.page-step01 .select__info-name {
  font-size: 1.125rem;
  line-height: 1.7777777778;
  font-weight: bold;
}
.page-step01 .select__info-name small {
  font-size: 0.75rem;
  font-weight: 500;
}
.page-step01 .select__image {
  width: 11.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.page-step01 .select__question {
  font-size: 0.75rem;
  width: 1.375rem;
  height: 1.375rem;
  background: #333333;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 1.375rem;
  font-weight: bold;
  position: absolute;
  left: 0.9375rem;
  bottom: 0.9375rem;
}

.page-step02 .select .form {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2.1875rem 1.875rem 2.5rem;
}
.page-step02 .select .form__label {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 1rem;
}
.page-step02 .select .form__note {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin-bottom: 0.9375rem;
}
.page-step02 .select .form__input, .page-step02 .select .form__select {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-size: 0.875rem;
  height: 2.75rem;
  border: 1px solid #C2C2C2;
  border-radius: 0.25rem;
  background: #fff;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-step02 .select .form__input:focus, .page-step02 .select .form__select:focus {
  border-color: #C2C2C2;
  outline: none;
}
.page-step02 .select .form__input::-webkit-input-placeholder, .page-step02 .select .form__select::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
.page-step02 .select .form__input::-moz-placeholder, .page-step02 .select .form__select::-moz-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
.page-step02 .select .form__input:-ms-input-placeholder, .page-step02 .select .form__select:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
.page-step02 .select .form__input::-ms-input-placeholder, .page-step02 .select .form__select::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
.page-step02 .select .form__input::placeholder, .page-step02 .select .form__select::placeholder {
  color: rgba(51, 51, 51, 0.4);
}
.page-step02 .select .form__select-wrapper {
  position: relative;
}
.page-step02 .select .form__select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0.375rem solid transparent;
  border-top-color: #888;
  pointer-events: none;
}
.page-step02 .select .form__select-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
}
.page-step02 .select .form__count {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #7B7B7E;
  text-align: right;
  margin-top: 0.25rem;
}
.page-step02 .select .form .form__error {
  color: #FF5555;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  padding-top: 0.25rem;
  padding-bottom: 0.375rem;
}
.page-step02 .select .form .custom-select__selected.error,
.page-step02 .select .form .form__input.error {
  border-color: #FF5555;
  background: rgba(255, 85, 85, 0.2);
}
.page-step02 .select .form .custom-select {
  position: relative;
  font-size: 0.875rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.page-step02 .select .form .custom-select__selected {
  height: 2.75rem;
  padding: 0.8125rem 1rem;
  font-size: 0.875rem;
  border: 1px solid #C2C2C2;
  border-radius: 0.25rem;
  background: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(51, 51, 51, 0.4);
  position: relative;
  z-index: 11;
}
.page-step02 .select .form .custom-select__selected.is-selected {
  color: #333;
}
.page-step02 .select .form .custom-select__selected:before {
  content: "";
  position: absolute;
  top: 1.1875rem;
  right: 1rem;
  display: inline-block;
  width: 0.875rem;
  height: 0.5rem;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background: url("/assets/img/icon_down.png") no-repeat center;
  background-size: contain;
}
.page-step02 .select .form .custom-select.is-open .custom-select__selected:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-step02 .select .form .custom-select.is-open .custom-select__dropdown {
  display: block;
}
.page-step02 .select .form .custom-select__dropdown {
  position: absolute;
  top: calc(100% - 0.125rem);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  padding: 0.625rem 0;
  max-height: 12.375rem;
  overflow-y: auto;
  z-index: 10;
  display: none;
}
.page-step02 .select .form .custom-select__dropdown .custom-select__option {
  padding: 0.625rem 0.75rem;
  cursor: pointer;
}
.page-step02 .select .form .custom-select__dropdown .custom-select__option:hover {
  background: #f0f0f0;
}
.page-step02 .select .form__group {
  margin-bottom: 1.125rem;
}
.page-step02 .select .form__group--select {
  margin-bottom: 1.6875rem;
}
.page-step02 .select .form__group--select .form__error {
  padding: 0;
  margin: 0.375rem 0 -0.5rem;
}
.page-step02 .select .form__group--text {
  margin-bottom: 0;
}
.page-step02 .select .form__group--text .form__label {
  margin-bottom: 0.375rem;
}

.page-step03 {
  opacity: 0;
}
.page-step03.is-loaded {
  opacity: 1;
  -webkit-transition: opacity 0.45s linear;
  transition: opacity 0.45s linear;
}
@media (max-width: 767px) {
  .page-step03 {
    background-color: transparent;
  }
}
.page-step03 .select {
  padding: 0;
  background: none;
}
.page-step03 .select .step-caption {
  color: #fff;
  font-weight: 500;
}
.page-step03 .user {
  position: fixed;
  top: 6.1875rem;
  left: 0;
  right: 0;
  width: 23.4375rem;
  margin: 0 auto;
  z-index: 11;
  background: #fff;
  border-top: 2px solid #DEE0E6;
}
@media (max-width: 767px) {
  .page-step03 .user {
    top: 3.6875rem;
  }
}
.page-step03 .user:before, .page-step03 .user:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 0.25rem;
}
.page-step03 .user:before {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.page-step03 .user:after {
  background: #FFE655;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  width: var(--progress, 0%);
}
.page-step03 .user__btn {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 12;
}
.page-step03 .user__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.1875rem 2.5rem 0.5rem;
}
.page-step03 .user__info-avt {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 0.125rem solid #fff;
  overflow: hidden;
  margin-top: 0.25rem;
}
.page-step03 .user__info-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.625rem;
}
.page-step03 .user__info-name .user__label {
  font-size: 0.625rem;
  font-weight: bold;
  line-height: 2.1;
  letter-spacing: 0.01em;
  color: #7B7B7E;
}
.page-step03 .user__info-name .user__name {
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}
.page-step03 .user__info-name .user__name small {
  font-size: 0.5rem;
  font-weight: 400;
}
.page-step03 .step {
  padding-top: 5.6875rem;
  margin-bottom: 1.5rem;
}
.page-step03 .step-list__num span:nth-child(1) {
  position: relative;
  left: 0.1875rem;
}
.page-step03 .step-list__num span:nth-child(3) {
  position: relative;
  left: -0.0625rem;
}
.page-step03 .chat {
  padding-bottom: 3.75rem;
  min-height: calc(100dvh - 6.25rem);
  position: relative;
}
@media (max-width: 767px) {
  .page-step03 .chat {
    min-height: calc(100dvh - 3.75rem);
  }
}
.page-step03 .chat__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 23.4375rem;
  margin: 0 auto;
  height: 100dvh;
  z-index: -1;
  pointer-events: none;
}
.page-step03 .chat__head {
  position: relative;
}
.page-step03 .chat__head-avt {
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 50%;
  border: 0.25rem solid rgba(255, 255, 255, 0.4);
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
}
.page-step03 .chat__head-name {
  position: absolute;
  left: calc(50% + 3.9375rem);
  right: 0;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-wrap: break-word; /* IE 5.5-7 */
  white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
  white-space: pre-wrap;
}
.page-step03 .chat__head-name small {
  font-size: 0.5rem;
  font-weight: 500;
}
.page-step03 .chat__content {
  padding: 1.5rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.page-step03 .chat__msg {
  max-width: 89%;
  padding: 0.5625rem 1rem 0.625rem;
  background: #E6EEF5;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  position: relative;
  word-break: break-word;
}
.page-step03 .chat__msg--left {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: rgba(255, 255, 255, 0.8);
  border-bottom-left-radius: 0;
  width: 18.4375rem;
}
.page-step03 .chat__msg--right {
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: #fff;
  border: 1px solid transparent;
  font-weight: 500;
  border-bottom-right-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-block: 0.5rem 0.5625rem;
}
.page-step03 .chat__msg.is-loading {
  background: #E6EEF5;
  border-radius: 0.75rem 0.75rem 0.75rem 0;
  padding: 0.9375rem 1.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 1.5rem;
  width: auto;
}
.page-step03 .chat__msg.is-loading .loading__dots {
  margin-bottom: 0;
  padding-top: 0.3125rem;
}
.page-step03 .chat__input-area {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 23.4375rem;
  margin: 0 auto;
  overflow: hidden;
}
.page-step03 .chat__suggestions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem;
  margin: 0 0.625rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.96);
}
.page-step03 .chat__suggestions .chat__suggestion {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
}
.page-step03 .chat__suggestions .chat__suggestion-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 1px;
  background: #A6A6AC;
  color: #fff;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.09375rem;
}
.page-step03 .chat__suggestions .chat__suggestion-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #7B7B7E;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.5;
  word-break: break-all;
}
.page-step03 .chat__input {
  padding: 0.25rem 0.625rem 0.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  overflow: hidden;
  position: relative;
}
.page-step03 .chat__input:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  z-index: -1;
  pointer-events: none;
}
.page-step03 .chat__input:after {
  content: "";
  position: absolute;
  right: 0.625rem;
  bottom: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  z-index: 1;
  border-radius: 0.25rem;
}
.page-step03 .chat__input.is-disable:after {
  display: none;
}
.page-step03 .chat__input.is-disable .chat__input-inner {
  background: rgba(255, 255, 255, 0.45);
}
.page-step03 .chat__input-inner {
  border: 1px solid #F8F8FF;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  border-radius: 0.25rem;
  background: #fff;
  padding-block: 0.4375rem 0.5625rem;
}
.page-step03 .chat__input input, .page-step03 .chat__input textarea {
  width: 100%;
  height: 100%;
  min-height: 1.875rem;
  resize: none;
  max-height: 5.25rem;
  padding-inline: 1rem 3rem;
  font-size: 0.875rem;
  line-height: 1.5;
  scrollbar-width: none;
  position: relative;
  background: transparent;
  border: none;
  outline: none;
}
.page-step03 .chat__input input:disabled::-webkit-input-placeholder, .page-step03 .chat__input textarea:disabled::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.page-step03 .chat__input input:disabled::-moz-placeholder, .page-step03 .chat__input textarea:disabled::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.page-step03 .chat__input input:disabled:-ms-input-placeholder, .page-step03 .chat__input textarea:disabled:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.page-step03 .chat__input input:disabled::-ms-input-placeholder, .page-step03 .chat__input textarea:disabled::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.page-step03 .chat__input input:disabled::placeholder, .page-step03 .chat__input textarea:disabled::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.page-step03 .chat__input input::-webkit-scrollbar, .page-step03 .chat__input textarea::-webkit-scrollbar {
  display: none;
}
.page-step03 .chat__input button {
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: url("/assets/img/icon_arrow-top-w.png") center no-repeat;
  background-size: 0.75rem;
  background-color: #333333;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 46%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.page-step03 .chat__input button:before {
  content: "";
  opacity: 0;
  visibility: hidden;
  background: url("/assets/img/icon_arrow-top-g.png") center no-repeat;
}
.page-step03 .chat__input button.js-chat-send:disabled {
  background: url("/assets/img/icon_arrow-top-g.png") center no-repeat;
  background-size: 0.75rem;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  cursor: default;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .page-step03 .chat__input button:hover {
    opacity: 0.8;
  }
}
.page-step03 .chat-skyblue .chat__bg, .page-step03 .chat-skyblue .chat__input:before {
  background: #26B7D1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(38, 183, 209)), color-stop(55%, rgb(69, 154, 226)), to(rgb(0, 154, 222)));
  background: linear-gradient(0deg, rgb(38, 183, 209) 0%, rgb(69, 154, 226) 55%, rgb(0, 154, 222) 100%);
}
.page-step03 .chat-skyblue .step-list__num span {
  color: #2886F7;
}
.page-step03 .chat-skyblue .chat__msg--right {
  border-color: #2886F7;
}
.page-step03 .chat-teal .chat__bg, .page-step03 .chat-teal .chat__input:before {
  background: #05B48C;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(82, 209, 226)), to(rgb(5, 180, 140)));
  background: linear-gradient(0deg, rgb(82, 209, 226) 0%, rgb(5, 180, 140) 100%);
}
.page-step03 .chat-teal .step-list__num span {
  color: #3DC6A7;
}
.page-step03 .chat-teal .chat__msg--right {
  border-color: #3DC6A7;
}
.page-step03 .chat-blue .chat__bg, .page-step03 .chat-blue .chat__input:before {
  background: #2E92F7;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(46, 146, 247)), to(rgb(9, 43, 185)));
  background: linear-gradient(0deg, rgb(46, 146, 247) 0%, rgb(9, 43, 185) 100%);
}
.page-step03 .chat-blue .step-list__num span {
  color: #013D84;
}
.page-step03 .chat-blue .chat__msg--right {
  border-color: #013D84;
}
.page-step03 .chat-orange .chat__bg, .page-step03 .chat-orange .chat__input:before {
  background: #FD7454;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 170, 34)), color-stop(55%, rgb(255, 143, 64)), to(rgb(253, 116, 84)));
  background: linear-gradient(0deg, rgb(255, 170, 34) 0%, rgb(255, 143, 64) 55%, rgb(253, 116, 84) 100%);
}
.page-step03 .chat-orange .step-list__num span {
  color: #FD7453;
}
.page-step03 .chat-orange .chat__msg--right {
  border-color: #FD7453;
}
.page-step03 .chat-pink .chat__bg, .page-step03 .chat-pink .chat__input:before {
  background: #EC70AD;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 160, 208)), to(rgb(236, 112, 173)));
  background: linear-gradient(0deg, rgb(255, 160, 208) 0%, rgb(236, 112, 173) 100%);
}
.page-step03 .chat-pink .step-list__num span {
  color: #EB70AE;
}
.page-step03 .chat-pink .chat__msg--right {
  border-color: #EB70AE;
}
@media (max-width: 767px) {
  .page-step03 .header, .page-step03 .user {
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  }
}
@media (max-width: 767px) {
  .page-step03 .step {
    -webkit-transition: padding-top 0.3s linear;
    transition: padding-top 0.3s linear;
  }
}
@media (max-width: 767px) {
  .page-step03.is-scroll .header {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media (max-width: 767px) {
  .page-step03.is-scroll .user {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media (max-width: 767px) {
  .page-step03.is-scroll .step {
    padding-top: 3.75rem;
  }
}

.page-loading:not(.loading-02) {
  opacity: 0;
}
.page-loading:not(.loading-02).is-loaded {
  opacity: 1;
  -webkit-transition: opacity 0.45s linear;
  transition: opacity 0.45s linear;
}

.page-loading .loading-screen, .page-complete .loading-screen {
  padding: 7.8125rem 0.9375rem;
}
.page-loading .loading-screen__content, .page-complete .loading-screen__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  padding-bottom: 2rem;
}
.page-loading .loading-screen__avatar, .page-complete .loading-screen__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.page-loading .loading-screen__image, .page-complete .loading-screen__image {
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.25rem solid rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  -webkit-box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
}
.page-loading .loading-screen__name, .page-complete .loading-screen__name {
  font-size: 0.875rem;
  font-weight: bold;
}
.page-loading .loading-screen__name small, .page-complete .loading-screen__name small {
  font-size: 0.5rem;
  font-weight: 500;
}
.page-loading .loading-screen__message, .page-complete .loading-screen__message {
  background: #fff;
  padding: 0.375rem 1.25rem;
  border-radius: 0.75rem 0.75rem 0.75rem 0;
  margin-bottom: 2.5rem;
}
.page-loading .loading-screen__message.message--skyblue, .page-complete .loading-screen__message.message--skyblue {
  border: 1px solid #005FCE;
}
.page-loading .loading-screen__message.message--teal, .page-complete .loading-screen__message.message--teal {
  border: 1px solid #05C6BC;
}
.page-loading .loading-screen__message.message--blue, .page-complete .loading-screen__message.message--blue {
  border: 1px solid #013D84;
}
.page-loading .loading-screen__message.message--orange, .page-complete .loading-screen__message.message--orange {
  border: 1px solid #FD7453;
}
.page-loading .loading-screen__message.message--pink, .page-complete .loading-screen__message.message--pink {
  border: 1px solid #EB70AE;
}
.page-loading .loading-screen__text, .page-complete .loading-screen__text {
  font-size: 0.75rem;
  line-height: 1.75;
  color: #333333;
}
.page-loading .loading-screen__subttl, .page-complete .loading-screen__subttl {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 1.3125rem;
}
@media (max-width: 767px) {
  .page-loading.loading-02, .page-complete.loading-02 {
    background: transparent;
  }
}
.page-loading.loading-02 .loading__bg--skyblue, .page-complete.loading-02 .loading__bg--skyblue {
  background: #26B7D1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(38, 183, 209)), color-stop(55%, rgb(69, 154, 226)), to(rgb(0, 154, 222)));
  background: linear-gradient(0deg, rgb(38, 183, 209) 0%, rgb(69, 154, 226) 55%, rgb(0, 154, 222) 100%);
  height: 100%;
}
.page-loading.loading-02 .loading__bg--teal, .page-complete.loading-02 .loading__bg--teal {
  background: #05B48C;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(82, 209, 226)), to(rgb(5, 180, 140)));
  background: linear-gradient(0deg, rgb(82, 209, 226) 0%, rgb(5, 180, 140) 100%);
  height: 100%;
}
.page-loading.loading-02 .loading__bg--blue, .page-complete.loading-02 .loading__bg--blue {
  background: #2E92F7;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(46, 146, 247)), to(rgb(9, 43, 185)));
  background: linear-gradient(0deg, rgb(46, 146, 247) 0%, rgb(9, 43, 185) 100%);
  height: 100%;
}
.page-loading.loading-02 .loading__bg--orange, .page-complete.loading-02 .loading__bg--orange {
  background: #FD7454;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 170, 34)), color-stop(55%, rgb(255, 143, 64)), to(rgb(253, 116, 84)));
  background: linear-gradient(0deg, rgb(255, 170, 34) 0%, rgb(255, 143, 64) 55%, rgb(253, 116, 84) 100%);
  height: 100%;
}
.page-loading.loading-02 .loading__bg--pink, .page-complete.loading-02 .loading__bg--pink {
  background: #EC70AD;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 160, 208)), to(rgb(236, 112, 173)));
  background: linear-gradient(0deg, rgb(255, 160, 208) 0%, rgb(236, 112, 173) 100%);
  height: 100%;
}
.page-loading.loading-02 .loading-screen, .page-complete.loading-02 .loading-screen {
  padding-top: 4.25rem;
}
.page-loading.loading-02 .loading-screen__name, .page-complete.loading-02 .loading-screen__name {
  color: #fff;
}
.page-loading.loading-02 .loading-screen__message, .page-complete.loading-02 .loading-screen__message {
  margin-bottom: 2.8125rem;
}
.page-loading.loading-02 .loading-screen .loading__text, .page-complete.loading-02 .loading-screen .loading__text {
  color: rgba(255, 255, 255, 0.4);
}

.page-complete.is-locked {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.page-complete .main {
  background: #FFE655;
}
.page-complete .complete {
  color: #fff;
  padding-bottom: 5rem;
}
.page-complete .complete-skyblue .complete__head, .page-complete .complete-skyblue .complete__capture {
  background: #2886F7;
}
.page-complete .complete-skyblue .complete__list dl dt {
  color: #2886F7;
}
.page-complete .complete-teal .complete__head, .page-complete .complete-teal .complete__capture {
  background: #05C6BC;
}
.page-complete .complete-teal .complete__list dl dt {
  color: #05C6BC;
}
.page-complete .complete-blue .complete__head, .page-complete .complete-blue .complete__capture {
  background: #013D84;
}
.page-complete .complete-blue .complete__list dl dt {
  color: #013D84;
}
.page-complete .complete-orange .complete__head, .page-complete .complete-orange .complete__capture {
  background: #FD7453;
}
.page-complete .complete-orange .complete__list dl dt {
  color: #FD7453;
}
.page-complete .complete-pink .complete__head, .page-complete .complete-pink .complete__capture {
  background: #EB70AE;
}
.page-complete .complete-pink .complete__list dl dt {
  color: #EB70AE;
}
.page-complete .complete__loading {
  position: fixed;
  top: 5.625rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  width: 23.4375rem;
  margin: 0 auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-complete .complete__loading {
    top: 3.75rem;
  }
}
.page-complete .complete__head {
  padding: 0 0 0.9375rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-complete .complete__head:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/img/complete/complete_bg.png") top center repeat-y;
  background-size: 100% auto;
  z-index: -1;
}
.page-complete .complete__capture {
  padding: 24px 0 26px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__capture {
    padding: 1.5rem 0 1.625rem;
  }
}
.page-complete .complete__capture-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -18.75rem;
  background: url("/assets/img/complete/complete_bg.png") top center repeat-y;
  background-size: 100% auto;
  z-index: -1;
}
.page-complete .complete__capture-deco {
  position: absolute;
  width: 6.25rem;
  height: 4.375rem;
  right: 0.875rem;
  bottom: 0.625rem;
}
.page-complete .complete__capture-deco img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-complete .complete__note {
  position: absolute;
  top: 0.125rem;
  left: 0.625rem;
  right: 0.625rem;
  text-align: center;
  z-index: 10;
}
.page-complete .complete__note span {
  background: rgba(51, 51, 51, 0.8);
  color: #fff;
  font-size: 0.6875rem;
  line-height: 1.6363636364;
  font-weight: 500;
  padding: 0.25rem 0.6875rem;
}
.page-complete .complete__ttl {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.01em;
  padding: 0 30px 16px;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__ttl {
    font-size: 1.25rem;
    padding: 0 1.875rem 1rem;
  }
}
.page-complete .complete__img {
  width: 215px;
  height: 215px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__img {
    width: 13.4375rem;
    height: 13.4375rem;
    border-radius: 0.625rem;
  }
}
.page-complete .complete__img img {
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__img img {
    border-radius: 0.5rem;
  }
}
.page-complete .complete__txt {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 16px 36px 12px;
  color: #fff;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__txt {
    font-size: 0.75rem;
    padding: 1rem 2.25rem 0.75rem;
  }
}
.page-complete .complete__list {
  padding-inline: 36px;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__list {
    padding-inline: 2.25rem;
  }
}
.page-complete .complete__list dl {
  position: relative;
  height: 15px;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__list dl {
    height: 0.9375rem;
  }
}
.page-complete .complete__list dl + dl {
  margin-top: 5px;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__list dl + dl {
    margin-top: 0.3125rem;
  }
}
.page-complete .complete__list dl dt {
  padding: 0 10px;
  width: 66px;
  height: 16px;
  line-height: 16px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  z-index: 1;
  font-family: sans-serif;
  float: left;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__list dl dt {
    padding: 0 0.625rem;
    width: 4.125rem;
    height: 1rem;
    line-height: 1rem;
    border-radius: 1.875rem;
    font-size: 0.625rem;
  }
}
.page-complete .complete__list dl dt:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 16px;
  border-radius: 30px;
  background-color: #ffffff;
  z-index: -1;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__list dl dt:before {
    height: 1rem;
    border-radius: 1.875rem;
  }
}
.page-complete .complete__list dl dd {
  float: right;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 16px;
  width: calc(100% - 66px - 10px);
  height: 16px;
  margin-left: 10px;
  font-family: sans-serif;
}
@media screen and (min-width: 600px) and (max-width: 1025px) {
  .page-complete .complete__list dl dd {
    font-size: 0.6875rem;
    line-height: 1rem;
    width: calc(100% - 4.125rem - 0.625rem);
    height: 1rem;
    margin-left: 0.625rem;
  }
}
.page-complete .complete__sign {
  width: 20.9375rem;
  margin: 1rem auto 0;
  position: relative;
}
.page-complete .complete-btn__wrapper {
  padding: 4rem 0;
}
.page-complete .complete-btn__wrapper .btn__back {
  margin-bottom: 1.75rem;
}
.page-complete .complete__btn {
  padding: 2.375rem 1.875rem 0;
}
.page-complete .complete__btn-twitter {
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.page-complete .complete__btn-twitter .c-note {
  font-size: 0.8125rem;
  line-height: 2.4615384615;
  letter-spacing: 0.08em;
  display: block;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5625rem;
  text-align: center;
}
@media (min-width: 768px) {
  .page-complete .complete__btn-twitter .c-note {
    display: none;
  }
}
.page-complete .complete__btn-twitter .btn__share-x {
  width: 8.375rem;
  height: 2.5rem;
  color: #333;
  background: #fff;
  border: 1px solid #333333;
  border-radius: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin: 0 auto 2.5rem;
}
.page-complete .complete__btn-twitter .btn__share-x img {
  width: 0.9375rem;
  height: 0.9375rem;
  margin-right: 0.375rem;
}
@media screen and (min-width: 1025px) {
  .page-complete .complete__btn-twitter .btn__share-x:hover {
    opacity: 0.8;
  }
}
.page-complete .complete__btn-gr {
  padding-bottom: 1rem;
  margin-bottom: 2.3125rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.page-complete .complete__btn-gr .btn__main {
  margin-bottom: 1rem;
  text-align: center;
  padding-right: 0;
}
.page-complete .complete__btn-gr .btn__main:after {
  display: none;
}
.page-complete .complete__btn-gr .btn__main-w {
  background: #fff;
  border: 1px solid #005FCE;
  color: #005FCE;
}
.page-complete .complete__btn-gr .btn__main-w:before, .page-complete .complete__btn-gr .btn__main-w:after {
  display: none;
}
.page-complete .complete__btn .btn__secondary {
  width: 17.3125rem;
  margin-bottom: 1.5625rem;
}
.page-complete .complete__btn .btn__back {
  font-size: 0.8125rem;
}
.page-complete .complete__btn-banner {
  width: 17.5rem;
  margin: 0 auto 3.9375rem;
}
.page-complete .complete__btn-banner a {
  display: block;
}
@media screen and (min-width: 1025px) {
  .page-complete .complete__btn-banner a:hover {
    opacity: 0.8;
  }
}

.page-error .error-screen {
  padding: 7.625rem 1rem 5rem;
  text-align: center;
  background: url("/assets/img/error/error_bg.png") no-repeat center top;
  background-size: contain;
}
.page-error .error-screen__img {
  width: 11.5625rem;
  margin: 0 auto 0.625rem;
}
.page-error .error-screen__title {
  font-size: 1.5rem;
  line-height: 1.4583333333;
  font-weight: bold;
  margin-bottom: 0.8125rem;
}
.page-error .error-screen__message {
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 2.25rem;
}
.page-error .error-screen__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-error .error-screen__buttons .btn__main {
  padding-right: 0;
}
.page-error .error-screen__buttons .btn__main::after {
  display: none;
}

/* =================================================================== */