@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  text-box-trim: trim-both;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #fff;
  color: #000;
}

html.age-verified .age-verification-modal {
  display: none !important;
}

.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.age-verification-modal.is-hidden {
  display: none;
}

.age-verification-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.age-verification-modal__inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  max-width: min(90vw, 702px);
  width: 100%;
  padding: min(9.231vw, 72px) min(5vw, 39px);
  box-sizing: border-box;
}

.age-verification-modal__content {
  text-align: center;
}

.age-verification-modal__lead {
  font-size: min(3.333vw, 26px);
  line-height: 1.5;
  color: #000;
  margin: 0 0 min(6.41vw, 50px);
}

.age-verification-modal__question {
  font-size: min(6.667vw, 52px);
  line-height: 1.4;
  font-weight: 700;
  color: #000;
  margin: 0 0 min(5.128vw, 40px);
}

.age-verification-modal__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.age-verification-modal__btn {
  display: inline-block;
  width: min(80vw, 624px);
  height: min(18.718vw, 146px);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: min(12.821vw, 100px);
  border: none;
  margin: 0 auto min(3.846vw, 30px);
}
.age-verification-modal__btn a {
  text-decoration: none;
}
.age-verification-modal__btn p {
  font-size: min(5.897vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
  width: 100%;
}
.age-verification-modal__btn p:after {
  content: "";
  background-image: url(../img/md_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: min(7.692vw, 60px);
  height: min(7.692vw, 60px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(5.128vw, 40px);
}
.age-verification-modal__btn--yes {
  background: #004098;
  color: #fff;
  cursor: pointer;
}
.age-verification-modal__btn--no {
  background: #004098;
  color: #fff;
  text-decoration: none;
}

.age-verification-modal__checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: min(3.205vw, 25px);
  color: #000;
  background-color: #EAEAEA;
}

.age-verification-modal__checkbox-input {
  display: none !important;
}

.age-verification-modal__checkbox-parts {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-basis: calc(100% - min(5.769vw, 45px));
  text-align: center;
  font-size: min(3.846vw, 30px);
  font-weight: 400;
  line-height: 1;
  color: #000;
  position: relative;
  padding-left: min(7.051vw, 55px);
}

.age-verification-modal__checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: min(5.769vw, 45px);
  height: min(5.769vw, 45px);
  border: 1px solid #000;
  background-color: #fff;
  box-sizing: border-box;
}

.age-verification-modal__checkbox-input:checked + .age-verification-modal__checkbox-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: min(2.051vw, 16px);
  width: min(1.026vw, 8px);
  height: min(3.077vw, 24px);
  transform: translateY(-50%) rotate(40deg);
  border-bottom: min(0.769vw, 6px) solid #DE0415;
  border-right: min(0.769vw, 6px) solid #DE0415;
}

@media screen and (max-width: 896px) and (orientation: landscape), screen and (min-width: 897px) and (max-height: 800px) {
  .age-verification-modal {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .age-verification-modal__inner {
    margin: 0 auto;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@font-face {
  font-family: "Noto Sans JP";
  src: local("Noto Sans JP");
  ascent-override: 100%;
  descent-override: 22%;
}
sup {
  font-size: 1.1rem;
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
  bottom: 1ex;
}

b {
  font-weight: bold;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

.ctext {
  text-align: center;
}

@media (max-width: 780px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
.btn {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 2;
  cursor: pointer;
}

.btn a:hover {
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  zoom: 1;
  transition: all 0.9s;
}

#wrapper {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  background-image: url(../img/bg.png);
  background-repeat: repeat-y;
  background-position: top;
  background-attachment: fixed;
  background-size: 780px 1928px;
  position: relative;
}
@media (max-width: 780px) {
  #wrapper {
    background-size: 100% auto;
  }
}
#wrapper .info {
  background-color: #fff;
  font-size: min(4.359vw, 34px);
  font-weight: 700;
  padding: min(5.385vw, 42px) 0;
  text-align: center;
  display: block;
}
#wrapper .kv_upper {
  background-color: #004098;
  color: #fff;
  padding: min(7.436vw, 58px) 0 min(7.436vw, 58px);
  text-align: center;
  width: 100%;
  height: auto;
  position: relative;
}
#wrapper .kv_upper h2 {
  font-size: min(4.872vw, 38px);
  font-weight: 700;
  line-height: 1.7;
  margin: 0 auto min(3.205vw, 25px);
  position: relative;
  display: inline-block;
}
#wrapper .kv_upper h2 span {
  background-color: #06C755;
  padding: min(0.385vw, 3px) min(1.026vw, 8px);
  border-radius: min(0.641vw, 5px);
}
#wrapper .kv_upper h2:before {
  content: "";
  background-image: url(../img/h2_before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: min(2.692vw, 21px);
  height: min(2.692vw, 21px);
  position: absolute;
  top: -22px;
  left: 0;
}
@media (max-width: 780px) {
  #wrapper .kv_upper h2:before {
    top: min(-2.308vw, -18px);
  }
}
#wrapper .kv_upper h2:after {
  content: "";
  background-image: url(../img/h2_after.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: min(3.59vw, 28px);
  height: min(3.59vw, 28px);
  position: absolute;
  bottom: -28px;
  right: 0;
}
@media (max-width: 780px) {
  #wrapper .kv_upper h2:after {
    bottom: min(-2.308vw, -18px);
  }
}
#wrapper .kv_upper p {
  font-size: min(3.333vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin: 0 auto;
}
@media (max-width: 780px) {
  #wrapper .kv_upper {
    padding: min(7.436vw, 58px) 0 min(5.128vw, 40px);
  }
  #wrapper .kv_upper:after {
    bottom: min(-1.282vw, -10px);
  }
}
#wrapper .kv_lower {
  display: block;
  padding-bottom: min(7.692vw, 60px);
}
#wrapper .kv_lower img {
  max-width: 100%;
}
#wrapper .kv_lower .date {
  font-size: min(4.103vw, 32px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 0 auto min(2.564vw, 20px);
}
#wrapper .kv_lower p {
  margin: 0 auto min(-1.923vw, -15px);
  font-size: min(2.564vw, 20px);
  font-weight: 400;
  line-height: 1.75;
  color: #fff;
  text-align: left;
  max-width: min(90vw, 702px);
}
#wrapper .comingsoon {
  margin: min(10.256vw, 80px) auto min(7.692vw, 60px);
  text-align: center;
}
#wrapper .comingsoon img {
  max-width: min(90vw, 702px);
}
#wrapper h3 {
  background-color: #004098;
  color: #fff;
  font-size: min(5.897vw, 46px);
  font-weight: 700;
  padding: min(3.846vw, 30px) 0 min(3.846vw, 30px);
  text-align: center;
  border-radius: min(2.564vw, 20px) min(2.564vw, 20px) 0 0;
  max-width: min(90vw, 702px);
  margin: min(10.897vw, 85px) auto 0;
  position: relative;
}
#wrapper h3:before {
  content: "";
  background-image: url(../img/h3_before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: min(11.026vw, 86px);
  height: min(9.359vw, 73px);
  position: absolute;
  top: 0;
  left: min(-0.641vw, -5px);
}
#wrapper h3:after {
  content: "";
  background-image: url(../img/h3_after.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: min(3.59vw, 28px);
  height: min(3.59vw, 28px);
  position: absolute;
  top: min(3.205vw, 25px);
  right: min(5vw, 39px);
}
#wrapper .wbase {
  background-color: #fff;
  border-radius: 0 0 min(2.564vw, 20px) min(2.564vw, 20px);
  padding: min(8.333vw, 65px) min(5vw, 39px);
  max-width: min(90vw, 702px);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}
#wrapper .wbase h4 {
  font-size: min(4.615vw, 36px);
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: center;
  margin: 0 auto min(3.846vw, 30px);
}
#wrapper .wbase .p_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
#wrapper .wbase .p_list li {
  font-size: min(3.333vw, 26px);
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: left;
  margin: 0 min(2.564vw, 20px) min(2.564vw, 20px) 0;
  padding-left: min(3.846vw, 30px);
  position: relative;
}
#wrapper .wbase .p_list li:before {
  content: "●";
  font-size: min(3.333vw, 26px);
  font-weight: 700;
  line-height: 1;
  color: #004098;
  text-align: left;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}
#wrapper .wbase .product_list_text {
  font-size: min(4.103vw, 32px);
  font-weight: 700;
  line-height: 1.9;
  color: #000;
  text-align: left;
  margin: 0 auto;
}
#wrapper .wbase .product_list_text span {
  font-size: min(3.846vw, 30px);
  display: block;
  text-align: left;
  font-weight: 700;
  line-height: 1;
  margin: min(1.282vw, 10px) 0;
}
#wrapper .wbase p {
  font-size: min(3.846vw, 30px);
  font-weight: 700;
  line-height: 1.9;
  color: #000;
  text-align: center;
  margin: 0 auto;
}
#wrapper .wbase .attention {
  font-size: min(2.821vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  text-align: left;
  margin: 0 auto min(2.564vw, 20px);
}
#wrapper .wbase span {
  font-size: min(2.821vw, 22px);
  font-weight: 400;
  line-height: 1.9;
  color: #000;
  text-align: left;
  margin: min(1.282vw, 10px) auto 0;
  display: block;
}
#wrapper .wbase .shop_info {
  font-size: min(2.821vw, 22px);
  font-weight: 400;
  line-height: 1.9;
  color: #000;
  text-align: left;
  margin: min(2.564vw, 20px) auto min(5.128vw, 40px);
  padding-bottom: min(3.846vw, 30px);
  display: block;
  border-bottom: 1px solid #ccc;
}
#wrapper .wbase .stats {
  font-size: min(3.333vw, 26px);
  font-weight: 400;
  line-height: 1.9;
  color: #000;
  margin: 0 auto min(2.564vw, 20px);
  max-width: min(80vw, 624px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#wrapper .wbase .stats:before, #wrapper .wbase .stats:after {
  content: "";
  flex: 1 1 0%;
  height: 1px;
  background: #000;
  margin: 0 min(2.564vw, 20px);
  display: block;
}
#wrapper .wbase .stats:before {
  margin-left: 0;
}
#wrapper .wbase .stats:after {
  margin-right: 0;
}
#wrapper .wbase .logo {
  max-width: min(69.231vw, 540px);
  margin: min(5.128vw, 40px) auto;
}
#wrapper .wbase .logo img {
  width: 100%;
  max-width: 100%;
}
#wrapper .wbase h6 {
  font-size: min(4.359vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto min(3.205vw, 25px);
}
#wrapper .wbase .product_title {
  border: 1px solid #000;
  padding: min(1.923vw, 15px) min(1.923vw, 15px);
  text-align: center;
  margin: min(3.846vw, 30px) auto;
  font-size: min(3.333vw, 26px);
  font-weight: 400;
  line-height: 1;
  color: #000;
}
#wrapper .wbase .product_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
#wrapper .wbase .product_list li {
  flex-basis: 50%;
  text-align: center;
}
#wrapper .wbase .product_list li .pro_img img {
  max-height: min(37.436vw, 292px);
}
#wrapper .wbase .product_list li .cauiton {
  font-size: min(2.564vw, 20px);
  font-weight: 400;
  line-height: 1;
  color: #000;
  text-align: center;
  margin: min(1.282vw, 10px) auto;
  display: block;
}
#wrapper .wbase .product_list li h6 {
  font-size: min(3.333vw, 26px);
  font-weight: 700;
  line-height: 1.5;
  margin: min(2.564vw, 20px) auto min(3.846vw, 30px);
  color: #000;
}
#wrapper .wbase .product_list li p {
  font-size: min(2.564vw, 20px);
  font-weight: 400;
  line-height: 1.9;
  color: #000;
  text-align: left;
  margin: 0 auto min(7.692vw, 60px);
}
#wrapper .wbase .prize {
  font-size: min(6.667vw, 52px);
  font-weight: 900;
  line-height: 1;
  margin: min(-1.923vw, -15px) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#wrapper .wbase .prize:before {
  content: "";
  background-image: url(../img/prize_before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: min(5.128vw, 40px);
  height: min(8.333vw, 65px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: min(0.641vw, 5px);
}
#wrapper .wbase .prize:after {
  content: "";
  background-image: url(../img/prize_after.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: min(5.128vw, 40px);
  height: min(8.333vw, 65px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(0.641vw, 5px);
}
#wrapper .wbase .prize .black {
  font-size: min(5.128vw, 40px);
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: min(1.282vw, 10px) min(1.923vw, 15px);
  border-radius: min(0.641vw, 5px) !important;
  margin: 0 min(1.282vw, 10px) 0 0 !important;
}
#wrapper .wbase .prize .big {
  font-size: min(8.974vw, 70px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  background-color: transparent;
  color: #000;
  text-box-trim: trim-both;
  border-radius: 0;
  margin: 0 min(1.282vw, 10px) min(1.282vw, 10px) 0 !important;
}
#wrapper .wbase ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
}
#wrapper .wbase ul .icon {
  flex-basis: min(16.923vw, 132px);
  margin-right: min(1.282vw, 10px);
}
#wrapper .wbase ul .icon img {
  max-width: 100%;
}
#wrapper .wbase ul .number {
  font-size: min(16.667vw, 130px);
  font-weight: 900;
  line-height: 1;
  color: #000;
  letter-spacing: -0.02em;
}
#wrapper .wbase ul .text {
  font-size: min(7.692vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: #000;
  text-align: left;
}
#wrapper .wbase ul .text span {
  font-size: min(3.333vw, 26px);
  font-weight: 500;
  line-height: 1;
  color: #000;
  display: block;
  margin-bottom: min(1.282vw, 10px);
}
#wrapper .wbase .step_img {
  width: min(90vw, 702px);
  margin-left: min(-5vw, -39px);
}
#wrapper .wbase .step_img img {
  width: 100%;
}
#wrapper .wbase .step_text {
  font-size: min(4.359vw, 34px);
  font-weight: 700;
  line-height: 1.75;
  color: #000;
  text-align: center;
  margin: min(6.41vw, 50px) auto 0;
}
#wrapper .wbase .kiyaku_wrap {
  width: 100%;
  height: min(76.923vw, 600px);
  overflow-y: auto;
}
#wrapper .wbase .kiyaku_wrap .kiyaku_inner {
  max-width: min(75vw, 585px);
  margin: 0 auto;
}
#wrapper .wbase .kiyaku_wrap .kiyaku_inner h6 {
  font-size: min(3.59vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  text-align: left;
  margin: min(5.128vw, 40px) 0 min(1.282vw, 10px);
}
#wrapper .wbase .kiyaku_wrap .kiyaku_inner p {
  font-size: min(3.333vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  text-align: left;
  overflow-wrap: break-word;
}
#wrapper .wbase .kiyaku_wrap .kiyaku_inner p a {
  color: #000;
  text-decoration: underline;
}
#wrapper .arrow {
  margin: min(3.205vw, 25px) auto;
  text-align: center;
}
#wrapper .arrow img {
  max-width: min(5.641vw, 44px);
}
#wrapper .wbase02 {
  background-color: #fff;
  border-radius: min(2.564vw, 20px);
  padding: min(3.846vw, 30px) 0 min(10.256vw, 80px);
  max-width: min(90vw, 702px);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}
#wrapper .wbase02 .step_img {
  width: min(90vw, 702px);
}
#wrapper .wbase02 .step_img img {
  width: 100%;
}
#wrapper .wbase02 .step_text {
  font-size: min(4.359vw, 34px);
  font-weight: 700;
  line-height: 1.75;
  color: #000;
  text-align: center;
  margin: min(6.41vw, 50px) auto 0;
}
#wrapper .wbase02 .step_text span {
  font-size: min(3.333vw, 26px);
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  display: block;
  margin-top: min(1.282vw, 10px);
}
#wrapper .wbase03 {
  background-color: #fff;
  border-radius: 0 0 min(2.564vw, 20px) min(2.564vw, 20px);
  padding: min(3.846vw, 30px) 0 min(10.256vw, 80px);
  max-width: min(90vw, 702px);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}
#wrapper .wbase03 .step_img {
  width: min(90vw, 702px);
}
#wrapper .wbase03 .step_img img {
  width: 100%;
}
#wrapper .wbase03 .step_text {
  font-size: min(4.359vw, 34px);
  font-weight: 700;
  line-height: 1.75;
  color: #000;
  text-align: center;
  margin: min(6.41vw, 50px) auto 0;
}
#wrapper .wbase03 span {
  font-size: min(2.821vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  display: block;
  margin: min(1.923vw, 15px) auto 0;
  max-width: min(75vw, 585px);
}
#wrapper .wbase04 {
  background-color: #fff;
  border-radius: 0 0 min(2.564vw, 20px) min(2.564vw, 20px);
  padding: min(2.564vw, 20px) min(5vw, 39px) min(6.41vw, 50px);
  max-width: min(90vw, 702px);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}
#wrapper .wbase04 .kiyaku_wrap {
  width: 100%;
  height: min(76.923vw, 600px);
  overflow-y: auto;
}
#wrapper .wbase04 .kiyaku_wrap .kiyaku_inner {
  max-width: min(75vw, 585px);
  margin: 0 auto;
}
#wrapper .wbase04 .kiyaku_wrap .kiyaku_inner h6 {
  font-size: min(3.59vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  text-align: left;
  margin: min(5.128vw, 40px) 0 min(1.282vw, 10px);
}
#wrapper .wbase04 .kiyaku_wrap .kiyaku_inner p {
  font-size: min(3.333vw, 26px);
  font-weight: 400;
  line-height: 2;
  color: #000;
  text-align: left;
  overflow-wrap: break-word;
}
#wrapper .wbase04 .kiyaku_wrap .kiyaku_inner p a {
  color: #000;
  text-decoration: underline;
}
#wrapper label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: min(7.692vw, 60px) auto 0;
}
#wrapper .attention02 {
  font-size: min(3.333vw, 26px);
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  margin: min(7.692vw, 60px) auto 0;
  display: block;
}
#wrapper .checkbox-input03 {
  display: none !important;
}
#wrapper .checkbox-parts03 {
  padding-left: min(11.538vw, 90px);
  position: relative;
  margin: 0 auto;
  font-size: min(5.641vw, 44px);
  font-weight: 900;
  color: #fff;
  vertical-align: middle;
}
#wrapper .checkbox-parts03::before {
  content: "";
  display: block;
  position: absolute;
  top: min(-0.641vw, -5px);
  left: 0;
  width: min(8.718vw, 68px);
  height: min(8.718vw, 68px);
  border: 1px solid #000;
  margin-right: min(1.282vw, 10px);
  background-color: #fff;
}
#wrapper .checkbox-input03:checked + .checkbox-parts03::after {
  content: "";
  display: block;
  position: absolute;
  top: min(0vw, 0px);
  left: min(3.205vw, 25px);
  width: min(1.538vw, 12px);
  height: min(4.615vw, 36px);
  transform: rotate(40deg);
  border-bottom: min(1.282vw, 10px) solid #DE0415;
  border-right: min(1.282vw, 10px) solid #DE0415;
}
#wrapper input[type=button] {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: min(6.41vw, 50px) auto;
  text-align: center;
}
#wrapper input[type=button][disabled] {
  height: min(25.513vw, 199px);
  width: min(81.538vw, 636px);
  background: url(../img/entry_of.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: min(6.41vw, 50px) auto;
  text-align: center;
}
#wrapper input[type=button] {
  height: min(25.513vw, 199px);
  width: min(81.538vw, 636px);
  background: url(../img/entry_on.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: min(6.41vw, 50px) auto;
  text-align: center;
  cursor: pointer;
}
#wrapper .history_btn {
  border: min(0.513vw, 4px) solid #fff;
  border-radius: min(12.821vw, 100px);
  width: min(80vw, 624px);
  height: min(18.077vw, 141px);
  margin: min(1.282vw, 10px) auto min(17.308vw, 135px);
  text-align: center;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#wrapper .history_btn p {
  font-size: min(4.872vw, 38px);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-top: -0.2em;
}
#wrapper .history_btn a {
  display: block;
}
#wrapper .footer {
  background-color: #004098;
  text-align: center;
  width: 100%;
  height: auto;
}
#wrapper .footer .footer_inner {
  max-width: min(90vw, 702px);
  padding: min(10vw, 78px) 0;
  margin: 0 auto;
}
#wrapper .footer .footer_inner .ttl {
  background-color: #000;
  font-size: min(5.897vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: min(3.846vw, 30px) 0;
  border-radius: min(2.564vw, 20px);
  margin-bottom: min(3.846vw, 30px);
}
#wrapper .footer .footer_inner h4 {
  font-size: min(4.359vw, 34px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: min(1.923vw, 15px);
}
#wrapper .footer .footer_inner h5 {
  font-size: min(6.923vw, 54px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: min(1.923vw, 15px);
}
#wrapper .footer .footer_inner p {
  font-size: min(3.333vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: min(1.923vw, 15px);
}
#wrapper .footer .footer_inner .wkei {
  padding-bottom: min(3.846vw, 30px);
  margin-bottom: min(5.128vw, 40px);
  border-bottom: 1px solid #fff;
}
#wrapper .footer .footer_inner .footer_logo {
  margin: 0 auto min(3.846vw, 30px);
  width: min(63.846vw, 498px);
}
#wrapper .footer .footer_inner .footer_logo img {
  max-width: 100%;
}
#wrapper .footer .footer_inner .copy {
  font-size: min(2.564vw, 20px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
}
#wrapper .footer .footer_bottom {
  max-width: 100%;
  margin: 0 auto;
}
#wrapper .footer .footer_bottom img {
  max-width: 100%;
  margin-bottom: min(-1.923vw, -15px);
}

@media (max-width: 780px) {
  #wrapper {
    width: 100%;
    max-width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background-image: none;
    position: relative;
  }
  #wrapper:after {
    content: "";
    background-image: url(../img/bg.png);
    background-repeat: repeat-y;
    background-position: top;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    /* モバイルの動的ビューポート対応 */
    position: fixed;
    /* スマホで background-attachment: fixed が効かないため疑似要素で固定 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
}/*# sourceMappingURL=common.css.map */