@charset "UTF-8";
.popup-area {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: none;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  overflow-x: hidden;
  overflow-y: auto;
}

.popup-wrap {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  border-radius: 12px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 20px;
  width: 801px;
  height: 751px;
  aspect-ratio: 801/751;
  background: url(../img/popup-bg.png);
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .popup-wrap {
    scale: 0.9;
    top: 45%;
    left: 45%;
  }
}
@media (max-width: 860px) {
  .popup-wrap {
    scale: 0.8;
    top: 40%;
    left: 40%;
  }
}
@media (max-width: 768px) {
  .popup-wrap {
    scale: 1;
    left: 50%;
    top: 45%;
    background: url(../img/popup-bg-m.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 570px;
    height: 800px;
    aspect-ratio: 570/800;
  }
}
@media (max-width: 639px) {
  .popup-wrap {
    width: 90vw;
    height: auto;
  }
}
.popup-wrap .popup-content-box {
  width: 663px;
  position: absolute;
  top: 55%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box {
    top: 51%;
    left: 48%;
    width: 441px;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box {
    top: 50%;
    left: 50%;
    width: 76vw;
    height: auto;
  }
}
.popup-wrap .popup-content-box .subtitle-img {
  position: absolute;
  top: -7.5%;
  left: 11.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 90;
}
.popup-wrap .popup-content-box .subtitle-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .subtitle-img {
    top: -5%;
    left: 17%;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .subtitle-img {
    top: -5.5%;
    left: 17%;
    width: 30vw;
    height: auto;
  }
}
.popup-wrap .popup-content-box .title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .title {
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .title {
    margin-bottom: 3vw;
  }
}
.popup-wrap .popup-content-box .title p {
  font-family: "源泉圓體月";
  font-weight: 900;
  letter-spacing: 1.25px;
  font-size: 40px;
  color: #262626;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .title p {
    line-height: 1.25;
    text-align: left;
    font-size: 45px;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .title p {
    font-size: 7vw;
  }
}
.popup-wrap .popup-content-box .title p .divider {
  font-family: "Noto sans";
}
.popup-wrap .popup-content-box .title p .divider::after {
  content: "｜";
  width: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .title p .divider {
    display: none;
  }
}
.popup-wrap .popup-content-box .title p br {
  display: none;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .title p br {
    display: block;
  }
}
.popup-wrap .popup-content-box .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 25px;
  gap: 18px;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .info-box {
    margin-bottom: 15px;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .info-box {
    margin-bottom: 1.5vw;
    gap: 1.8vw;
  }
}
.popup-wrap .popup-content-box .info-box .info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .info-box .info-content {
    gap: 1.2vw;
  }
}
.popup-wrap .popup-content-box .info-box .info-content .subtitle {
  width: 117px;
  height: 37px;
  aspect-ratio: 117/37;
  border-radius: 20px;
  border: #0d63b3 2px solid;
  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;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .info-box .info-content .subtitle {
    width: 19vw;
    height: auto;
  }
}
.popup-wrap .popup-content-box .info-box .info-content .subtitle p {
  font-family: "源泉圓體月";
  font-weight: 700;
  font-size: 20px;
  color: #0d63b3;
  letter-spacing: 0.8px;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .info-box .info-content .subtitle p {
    font-size: 3vw;
  }
}
.popup-wrap .popup-content-box .info-box .info-content .text {
  font-family: "源泉圓體月";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #262626;
  padding-left: 2px;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .info-box .info-content .text {
    line-height: 1.25;
    text-align: left;
    max-width: 340px;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .info-box .info-content .text {
    font-size: 2.5vw;
    max-width: 57vw;
  }
}
.popup-wrap .popup-content-box .info-box .info-content .text .note {
  font-size: 12px;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .info-box .info-content .text .note {
    font-size: 2vw;
  }
}
.popup-wrap .popup-content-box .buy-btnBox {
  width: 100%;
  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;
  margin-bottom: 22.5px;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .buy-btnBox {
    margin-bottom: 3vw;
  }
}
.popup-wrap .popup-content-box .buy-btnBox .buy-btn {
  width: 200px;
  height: 40px;
  aspect-ratio: 200/40;
  background-color: #ffd148;
  border-radius: 20px;
  cursor: pointer;
  font-family: "源泉圓體月";
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.8px;
  color: #262626;
  line-height: 40px;
  text-decoration: none;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .buy-btnBox .buy-btn {
    width: 30vw;
    height: auto;
    line-height: 6vw;
    font-size: 3vw;
  }
}
.popup-wrap .popup-content-box .line {
  width: 663px;
  height: 2px;
  aspect-ratio: 663/2;
  background: url(../img/popup-dotted-line.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .line {
    width: 432px;
    height: 2px;
    aspect-ratio: 432/2;
    background: url(../img/popup-dotted-line-m.png);
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .line {
    width: 70vw;
    height: auto;
  }
}
.popup-wrap .popup-content-box .notice-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: left;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .notice-info {
    gap: 1.5vw;
  }
}
.popup-wrap .popup-content-box .notice-info h6 {
  font-family: "源泉圓體月";
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .notice-info h6 {
    font-size: 3vw;
  }
}
.popup-wrap .popup-content-box .notice-info ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  list-style-position: inside;
}
@media (max-width: 768px) {
  .popup-wrap .popup-content-box .notice-info ol {
    max-width: 310px;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .notice-info ol {
    gap: 0.75vw;
    max-width: 48vw;
  }
}
.popup-wrap .popup-content-box .notice-info ol li {
  font-family: "源泉圓體月";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-indent: -1.1em;
  padding-left: 1.2em;
  word-break: break-all;
}
@media (max-width: 639px) {
  .popup-wrap .popup-content-box .notice-info ol li {
    font-size: 2.5vw;
  }
}
.popup-wrap .popup-content-box .notice-info ol li:nth-child(3) {
  line-height: 1.3;
}
.popup-wrap .popup-img {
  position: absolute;
  right: -10%;
  bottom: -39%;
  z-index: 90;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 228px;
  height: 487px;
  aspect-ratio: 228/487;
  background: url(../img/popup-img-ill.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .popup-wrap .popup-img {
    right: -12%;
    bottom: -35.5%;
    width: 192px;
    height: 455px;
    aspect-ratio: 192/455;
    background: url(../img/popup-img-ill-m.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 639px) {
  .popup-wrap .popup-img {
    right: -12%;
    bottom: -34%;
    width: 30.7vw;
    height: auto;
  }
}
.popup-wrap .close-btn {
  position: absolute;
  right: 5%;
  top: 5%;
  cursor: pointer;
  z-index: 99;
  width: 23px;
  height: 24px;
  aspect-ratio: 23/24;
}
.popup-wrap .close-btn img {
  width: 100%;
  height: auto;
}
@media (max-width: 639px) {
  .popup-wrap .close-btn {
    width: 3.2vw;
    height: auto;
  }
}

.popup-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
  display: block;
}

.popup-open .popup-wrap {
  z-index: 999;
}
.popup-open .bg-overlay {
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
}

.bg-overlay {
  height: 100vh;
  width: 100%;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  transition: background 0.15s linear;
}