@charset "UTF-8";
/* vp:480px */
/* vp:896px */
/* vp:1024px */
/* Scss Document */
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  word-break: break-all;
  border-bottom: none;
  text-decoration: none;
}
a img {
  border-bottom: none;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  border-bottom: none;
}

ul, li {
  list-style: none;
}

/* FORM */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-y: scroll;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

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

caption, th {
  text-align: left;
}

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

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

html {
  font-size: 62.5%; /*16px x 0.625 = 10px(=1rem) */
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  color: #000;
  display: none;
  background-color: #fff;
  letter-spacing: 0.15rem;
  line-height: 1.5;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-padding-top: 5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  body {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  body {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  body {
    font-size: 3.3333333333vw;
  }
}
body footer {
  margin-top: auto;
}
body::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}
@media screen and (max-width: 896px) {
  body::before {
    background-size: 70%;
    opacity: 0.08;
  }
}

.inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

a {
  -webkit-tap-highlight-color: transparent;
  color: #8B3636;
  font-weight: 700;
  text-decoration: underline;
}
a:hover, a:active {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover svg, a:active svg {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input:disabled {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
  opacity: 0.2;
}

::selection {
  background: #8B3636;
  color: #fff;
}

::-moz-selection {
  background: #8B3636;
  color: #fff;
}

.header {
  margin: 0 auto 10rem;
}
.header .main-content {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-display: swap;
  position: relative;
  min-height: 48.8vw;
  margin-bottom: 10rem;
  color: #fff;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .header .main-content {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .header .main-content {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .header .main-content {
    font-size: 3.3333333333vw;
  }
}
.header .main-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  max-width: 2000px;
  background-image: url(../img/main.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 2000px) {
  .header .main-content {
    min-height: 60vh;
  }
  .header .main-content::before {
    max-width: 2000px;
    margin: auto;
    right: 0;
    left: 0;
  }
}
.header .menu-content {
  width: 90%;
  max-width: 960px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.header .menu-content__item {
  width: 50%;
}
.header .menu-content__item.on {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 896px) {
  .header {
    margin: 0 auto 3rem;
  }
  .header .main-content {
    min-height: 95vw;
    margin-bottom: 3rem;
  }
  .header .main-content::before {
    background-position: 53%;
  }
  .header .menu-content {
    justify-content: center;
  }
  .header .menu-content__item {
    width: auto;
  }
}

.main section {
  margin: 8rem auto 0;
}
.main .intro {
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
.main .intro p {
  margin-bottom: 1.8rem;
}
.main .serial-number__input {
  letter-spacing: 0.2em;
  margin-top: 7rem;
  font-weight: 700;
}
.main .serial-number .list-style--caution {
  margin: 2rem 0 5rem;
}
.main #caution .overview__content {
  padding: 4rem;
  margin: 3rem 0;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.main #caution .overview__content div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}
.main #caution .overview__content div:last-child {
  margin-bottom: 0;
}
.main #caution .overview__content dt {
  width: 30%;
  margin-right: 3rem;
}
.main #caution .overview__content dd {
  width: calc(70% - 3rem);
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .main #caution .overview__content dd {
    font-size: 1.953125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .main #caution .overview__content dd {
    font-size: 2.2321428571vw;
  }
}
@media screen and (max-width:480px) {
  .main #caution .overview__content dd {
    font-size: 3.75vw;
  }
}
.main #caution .list-style--disc {
  font-size: 1.6rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .main #caution .list-style--disc {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .main #caution .list-style--disc {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .main #caution .list-style--disc {
    font-size: 3.3333333333vw;
  }
}
.main #caution .list-style--disc li {
  margin-bottom: 1.6rem;
}
.main #contact .text--lead {
  margin-bottom: 2rem;
}
.main .download > .title--section + * {
  margin-bottom: 2rem;
}
.main .download__content > * {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 2px;
}
.main .download__content--all .btn--download a {
  justify-content: flex-start;
}
.main .download__content .content p {
  margin: 3rem 0 2rem;
}
.main .download div[class^=download__content--].disable {
  opacity: 0.5;
  pointer-events: none;
}
.main .download a[id^=chk] {
  display: none;
}
.main .download .btn--back {
  margin-top: 10rem;
}
@media screen and (max-width: 896px) {
  .main section {
    margin: 5rem auto 0;
  }
  .main section:first-of-type {
    margin-top: 0;
  }
  .main .intro {
    text-align: left;
  }
  .main .serial-number__input {
    margin-top: 2rem;
  }
  .main .serial-number .list-style--caution {
    margin: 2rem 0 2.5rem;
  }
  .main #caution .overview__content {
    padding: 2rem;
  }
  .main #caution .overview__content div {
    flex-direction: column;
    margin-bottom: 0;
  }
  .main #caution .overview__content div .tag {
    margin: 0;
  }
  .main #caution .overview__content div:last-of-type dd {
    margin-bottom: 0;
  }
  .main #caution .overview__content dt {
    width: 100%;
    margin-right: 0;
  }
  .main #caution .overview__content dd {
    width: 100%;
    margin: 1rem 0;
  }
  .main #caution .list-style--disc li {
    margin-bottom: 1rem;
  }
  .main .download__content > * {
    padding: 1.5rem 1rem;
  }
  .main .download__content .content p {
    margin: 1.5rem 0 1rem;
  }
}

.footer {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-display: swap;
  width: 90%;
  margin: 0 auto;
  padding: 10rem 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .footer {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .footer {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .footer {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 896px) {
  .footer {
    padding: 6rem 0;
    font-size: 2.9166666667vw;
  }
}

.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 16px 12px -8px #000;
  z-index: 9998;
}
.loading .loader {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: solid 8px;
  border-color: #919191 #000 #000;
  position: relative;
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  z-index: 9999;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn {
  display: block;
  margin: 0 auto;
}
.btn--submit {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-display: swap;
  position: relative;
  background-color: #000;
  border-radius: 50vh;
  border: 1px solid #000;
  text-align: center;
  max-width: 300px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--submit {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--submit {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .btn--submit {
    font-size: 3.3333333333vw;
  }
}
.btn--submit input {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  padding: 1.5rem 4rem;
  display: block;
  width: 100%;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--submit input {
    font-size: 2.1484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--submit input {
    font-size: 2.4553571429vw;
  }
}
@media screen and (max-width:480px) {
  .btn--submit input {
    font-size: 4.5833333333vw;
  }
}
.btn--submit::before {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  position: absolute;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 2rem;
  top: 0;
  bottom: 0;
}
.btn--submit:hover, .btn--submit:active {
  background-color: #919191;
  color: #919191;
  border: #919191 1px solid;
}
.btn--submit:hover input, .btn--submit:active input {
  letter-spacing: 0.4em;
}
.btn--submit:hover::before, .btn--submit:active::before {
  right: 1.5rem;
  border-top: 2px solid #919191;
  border-right: 2px solid #919191;
}
@media screen and (max-width: 896px) {
  .btn--submit {
    max-width: 100%;
  }
  .btn--submit input {
    padding: 1.2rem;
  }
}
.btn--back {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-display: swap;
  position: relative;
  background-color: #fff;
  border-radius: 50vh;
  border: 1px solid #000;
  max-width: 300px;
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--back {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--back {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .btn--back {
    font-size: 3.3333333333vw;
  }
}
.btn--back input {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  width: 100%;
  line-height: 1;
  padding: 1.5rem 4rem;
  display: block;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--back input {
    font-size: 2.1484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--back input {
    font-size: 2.4553571429vw;
  }
}
@media screen and (max-width:480px) {
  .btn--back input {
    font-size: 4.5833333333vw;
  }
}
.btn--back::before {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  position: absolute;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  left: 2rem;
  top: 0;
  bottom: 0;
}
.btn--back:hover, .btn--back:active {
  background-color: #919191;
  color: #919191;
  border: #919191 1px solid;
}
.btn--back:hover input, .btn--back:active input {
  letter-spacing: 0.4em;
}
.btn--back:hover::before, .btn--back:active::before {
  left: 1.5rem;
  border-left: 2px solid #919191;
  border-bottom: 2px solid #919191;
}
.btn--download {
  background-color: #000;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px;
  position: relative;
}
.btn--download a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.btn--download a::after {
  position: absolute;
  content: "";
  cursor: pointer;
  width: 100%;
  height: 100%;
  right: 0;
}
.btn--download .title {
  margin-top: 0.1rem;
}
@media screen and (max-width:480px) {
  .btn--download .title {
    font-size: 3.3333333333vw;
    letter-spacing: 0em;
  }
}
.btn--download .number {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-display: swap;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border-radius: 50vh;
  display: inline-block;
  min-width: 6rem;
  margin-right: 2rem;
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--download .number {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--download .number {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .btn--download .number {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--download .number {
    font-size: 1.953125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--download .number {
    font-size: 2.2321428571vw;
  }
}
@media screen and (max-width:480px) {
  .btn--download .number {
    font-size: 2.9166666667vw;
  }
}
.btn--download .size {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-display: swap;
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: 2rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--download .size {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--download .size {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .btn--download .size {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--download .size {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--download .size {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .btn--download .size {
    font-size: 2.9166666667vw;
  }
}
.btn--download::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background-image: url(../img/icon--download.svg);
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1;
}
.btn--download:hover {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.8);
}
.btn--download.downloaded {
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.btn--download.downloaded a {
  justify-content: flex-start;
}
.btn--download.downloaded .size {
  display: none;
}
.btn--download.downloaded::after {
  content: "";
  width: 3.1rem;
  height: 3rem;
  background-image: url(../img/icon--downloaded.svg);
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1;
}
@media screen and (max-width: 896px) {
  .btn--download {
    padding: 1rem 0.8rem;
    margin-bottom: 1.5rem;
  }
  .btn--download .number {
    min-width: 3rem;
    margin-right: 0.8rem;
  }
  .btn--download .size {
    margin-right: 0.8rem;
  }
  .btn--download::after {
    width: 1.8rem;
    height: 1.8rem;
  }
  .btn--download.downloaded::after {
    width: 2rem;
    height: 2rem;
  }
}

.bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.m0a {
  margin: 0 auto;
}

.red {
  color: red;
}

.tag {
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  max-width: 250px;
  background-color: #919191;
  display: inline-block;
  padding: 2rem 1rem;
  margin: 0.5rem 0;
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .tag {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .tag {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .tag {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 896px) {
  .tag {
    max-width: 100%;
    padding: 0.5rem;
  }
}

.qa-list div {
  position: relative;
  margin-bottom: 1.8rem;
}
.qa-list--q {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  background-color: #919191;
  color: #fff;
  padding: 1.6rem 2.2rem;
  padding-right: 5rem;
  cursor: pointer;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .qa-list--q {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .qa-list--q {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .qa-list--q {
    font-size: 3.3333333333vw;
  }
}
.qa-list--q:hover {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  opacity: 0.8;
}
.qa-list--q.active .icon--close {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  transform: rotate(45deg);
}
.qa-list--a {
  padding: 1.6rem 2.2rem;
  border: 1px solid #919191;
  background-color: #fff;
}
.qa-list .icon--close {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  position: absolute;
  right: 1.8rem;
  color: #fff;
  width: 24px;
  height: 24px;
}
.qa-list .icon--close:before, .qa-list .icon--close:after {
  content: "";
  position: absolute;
  top: 12px;
  width: 24px;
  height: 2px;
  background-color: #fff;
}
.qa-list .icon--close:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.qa-list .icon--close:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 896px) {
  .qa-list--q {
    padding: 1rem 4rem 1rem 1rem;
  }
  .qa-list--a {
    padding: 1rem;
  }
  .qa-list .icon--close {
    right: 1rem;
    width: 20px;
    height: 20px;
  }
  .qa-list .icon--close:before, .qa-list .icon--close:after {
    top: 8px;
    width: 20px;
    height: 2px;
  }
}

.list-style--disc li, .list-style--num li, .list-style--caution li {
  margin-left: 2rem;
}
.list-style--disc li:last-child, .list-style--num li:last-child, .list-style--caution li:last-child {
  margin-bottom: 2rem;
}
.list-style--disc li {
  list-style-type: disc;
}
.list-style--num li {
  list-style-type: decimal;
}
.list-style--caution li {
  list-style: "※";
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .list-style--disc li, .list-style--num li, .list-style--caution li {
    margin-left: 1.4rem;
  }
  .list-style--caution li {
    margin-bottom: 0.5rem;
  }
}

.icon--arrow {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  display: inline-block;
  padding: 0 0 0 28px;
  color: #000;
  text-decoration: none;
}
.icon--arrow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 3px;
  width: 20px;
  height: 20px;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 896px) {
  .icon--arrow {
    padding: 0 0 0 19px;
  }
  .icon--arrow::before {
    width: 13px;
    height: 13px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}

.pc-non {
  display: none;
}
@media screen and (max-width: 896px) {
  .pc-non {
    display: block;
  }
}

.sp-non {
  display: block;
}
@media screen and (max-width: 896px) {
  .sp-non {
    display: none;
  }
}

.title--top {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-display: swap;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 1;
  z-index: 1;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--top {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--top {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--top {
    font-size: 3.3333333333vw;
  }
}
.title--top > * {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}
.title--top__top {
  display: block;
  width: 34.11vw;
  margin: 2.3vw auto 0;
}
.title--top__cdTitle {
  letter-spacing: 0.025em;
  font-size: 2vw;
  margin-top: 1.2vw;
}
.title--top__main {
  font-size: 7vw;
  margin: 0.2vw 0 0.5vw;
  line-height: 0.8;
}
.title--top__bottom {
  font-size: 2.1vw;
  margin-top: 1.12vw;
  font-weight: 400;
}
.title--top__bottom small {
  font-size: 1.5vw;
}
@media screen and (max-width: 896px) {
  .title--top {
    display: flex;
    flex-direction: column;
  }
  .title--top > * {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  }
  .title--top__top {
    display: block;
    width: 75vw;
    margin-top: 5.5vw;
    margin-bottom: auto;
  }
  .title--top__cdTitle {
    letter-spacing: 0em;
    font-size: 8vw;
  }
  .title--top__main {
    font-size: 14vw;
    margin: 1.5vw;
  }
  .title--top__bottom {
    font-size: 7vw;
    margin-bottom: 4.5vw;
    font-weight: 500;
  }
  .title--top__bottom small {
    font-size: 4vw;
  }
}
.title--section {
  letter-spacing: 0.1em;
  font-size: 2.8rem;
  font-weight: 700;
  border-left: 5px solid #000;
  padding-left: 1.5rem;
  margin-bottom: 4rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--section {
    font-size: 2.734375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--section {
    font-size: 3.125vw;
  }
}
@media screen and (max-width:480px) {
  .title--section {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 896px) {
  .title--section {
    padding-left: 1rem;
    margin-bottom: 2rem;
  }
}
.title--download {
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--download {
    font-size: 1.953125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--download {
    font-size: 2.2321428571vw;
  }
}
@media screen and (max-width:480px) {
  .title--download {
    font-size: 3.75vw;
  }
}
.title--download .icon--arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 10px;
}

input.serial-number__input {
  letter-spacing: 0.2em;
  display: block;
  width: 100%;
  font-size: 2.2rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15) inset;
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  input.serial-number__input {
    font-size: 2.1484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  input.serial-number__input {
    font-size: 2.4553571429vw;
  }
}
@media screen and (max-width:480px) {
  input.serial-number__input {
    font-size: 3.75vw;
  }
}
@media screen and (max-width: 896px) {
  input.serial-number__input {
    padding: 1.5rem;
  }
}

input[type=radio] + label {
  position: relative;
  cursor: pointer;
  padding-left: 4rem;
}
input[type=radio] + label::before, input[type=radio] + label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
input[type=radio] + label::before {
  background-color: #fff;
  border: 1.5px solid #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  left: 0;
}
input[type=radio] + label::after {
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
  width: 20px;
  height: 20px;
  left: 5px;
}
input[type=radio]:checked + label::after {
  opacity: 1;
}
input[type=radio]:checked + label .icon--arrow {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: rotate(180deg);
  bottom: -5px;
}
@media screen and (max-width: 896px) {
  input[type=radio] + label {
    padding-left: 3rem;
  }
  input[type=radio] + label::before {
    width: 21px;
    height: 21px;
  }
  input[type=radio] + label::after {
    width: 13px;
    height: 13px;
    left: 4px;
  }
}

.text--lead {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .text--lead {
    font-size: 1.953125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .text--lead {
    font-size: 2.2321428571vw;
  }
}
@media screen and (max-width:480px) {
  .text--lead {
    font-size: 3.75vw;
  }
}
.text--small {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .text--small {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .text--small {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width:480px) {
  .text--small {
    font-size: 2.9166666667vw;
  }
}/*# sourceMappingURL=style.css.map */