.title_kv h1.page_title::after {
  width: 100%;
}
.main {
  background-image: none;
}
.page-body {
  margin-bottom: 12.5vw;
}
.page-body > .container {
  padding: 20px;
}
.page-body h1 {
  font-size: 2rem;
  color: #222222;
  margin-bottom: 50px;
}
.page-body section {
  padding-bottom: 0;
  margin-bottom: 40px;
}

.page-body section ul {
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.page-body section ul li {
  max-width: calc((100% - 10px) / 2);
  -webkit-flex: 0 0 calc((100% - 10px) / 2);
  -ms-flex: 0 0 calc((100% - 10px) / 2);
  flex: 0 0 calc((100% - 10px) / 2);
  margin-bottom: 0;
  margin-top: 10px;
  display: flex;
}

.page-body section ul li:nth-child(-n + 2) {
  margin-top: 0;
}
.page-body section ul li img {
  border-radius: 0;
  margin-top: auto;
}
.radio {
  padding: 13px 8px;
  display: block;
  width: 100%;
  border: 2px solid #eeeeee;
  background-color: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.radio.selected {
  border: 2px solid #0092e5;
  background-color: #f2f9fe;
}
.radio-group {
  display: flex;
  align-items: flex-start;
}
.radio-input {
  appearance: none;
  position: absolute;
  display: none;
}
.radio-text::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 2px solid #eeeeee;
  width: 16px;
  height: 16px;
}
.radio-text {
  margin: 0;
  position: relative;
}
.radio-input:checked + .radio {
  background-color: #f2f9fe;
}
.radio-input:checked + .radio-text::before {
  border: 2px solid transparent;
}
.radio-input:checked + .radio-text::after {
  content: '';
  position: absolute;
  top: 3px;
  left: calc(8px - 5px);
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #0092e5;
}
.radio-text p {
  line-height: 1.4;
  margin: 0px 0px 10px 21px;
  font-weight: bold;
}
.description {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.6;
}
.note {
  margin: 0 0 50px;
}
.note p {
  margin: 0;
  font-size: 1.2rem;
}
.note .red {
  color: #e50016;
}
.note ul {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
.note ul li {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e50016;
}
.note ul li.which {
  display: none;
}
.note ul li.show {
  display: block !important;
}
button {
  text-align: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-family: '游ゴシック', 'YuGothic', 'ヒラギノ角ゴ W3 JIS2004', 'Hiragino Kaku Gothic W3 JIS2004', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
}
.apply-btn {
  width: 270px;
  margin: 0 auto 15px;
  background-color: #0092e5;
  color: #fff;
  padding: 15px;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  border-radius: 30px;
  display: block;
  transition: 0.7s;
}
.apply-btn:hover {
  background-color: #222222;
}
.reset-btn {
  width: 270px;
  margin: 0 auto;
  background-color: #eeeeee;
  color: #222222;
  padding: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  border-radius: 28px;
  display: block;
}
.reset-btn:hover {
  opacity: 0.75;
}
.sp-only {
  display: block;
}
.agree {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 20px;
}
.checkbox-input {
  display: none;
}
.checkbox-parts {
  padding-left: 20px;
  position: relative;
  display: block;
  cursor: pointer;
  font-weight: bold;
}
.checkbox-parts::before {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  border: 1px solid #222222;
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.checkbox-input:checked + .checkbox-parts::before {
  background-color: #0092e5;
  border: 1px solid #0092e5;
}
.checkbox-input:checked + .checkbox-parts::after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 5px;
  width: 6px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}
.disable {
  background-color: #dddddd;
  pointer-events: none !important;
}
.attention {
  margin-top: 40px;
  background: #eeeeee;
  padding: 20px;
  border-radius: 5px;
}
.attention .attention-title {
  margin: 0;
  text-align: center;
  font-weight: bold;
}
.attention .attention-txt {
  margin: 0;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8;
}
@media only screen and (min-width: 769px) {
  .page-body > .container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 80px;
  }
  .page-body h1 {
    font-size: 3rem;
  }
  .page-body section {
    margin-bottom: 80px;
  }
  .page-body section ul li:nth-child(-n + 4) {
    margin-top: 0;
  }
  .page-body section ul li {
    max-width: calc((100% - 20px) / 2);
    -webkit-flex: 0 0 calc((100% - 20px) / 2);
    -ms-flex: 0 0 calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
    margin-top: 20px;
  }
  .radio:hover {
    opacity: 0.75;
    cursor: pointer;
  }
  .radio-text::before {
    top: 3px;
  }
  .radio-input:checked + .radio-text::after {
    top: 6px;
  }
  .page-body section ul:after {
    content: '';
    max-width: calc((100% - 20px) / 2);
    -webkit-flex: 0 0 calc((100% - 20px) / 2);
    -ms-flex: 0 0 calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .page-body section ul li img {
    max-width: 286px;
    margin: 30px auto;
  }
  .checkbox-parts::before {
    top: 9px;
  }
  .checkbox-input:checked + .checkbox-parts::after {
    top: 10px;
  }
  .sp-only {
    display: none;
  }
  .attention {
    margin: 80px auto;
    max-width: 800px;
    padding: 40px;
  }
  .attention .attention-txt {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.8;
  }
  .description {
    font-size: 1.4rem;
    margin-top: 20px;
    line-height: 1.8;
  }
  .note p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  footer {
    margin-right: 0;
  }
  footer .footer_inner .footer_nav {
    display: block;
    width: 1000px;
    margin: 0 auto;
  }
  footer .footer_inner .footer_nav ul {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  footer {
    background: transparent;
    margin-right: 0;
  }
  footer .footer_inner .footer_nav {
    display: none;
  }
}
