@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*COMMON-----------------------------------------------------------------------------------------------------------------*/
/* --------------------
リセット追加
-------------------- */
input[type="text"], input[type="password"], input[type="submit"], input[type="button"], input[type="tel"], input[type="email"], textarea, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 100%;
}

input[type="text"]:focus-visible, input[type="password"]:focus-visible, input[type="submit"]:focus-visible, input[type="button"]:focus-visible, input[type="tel"]:focus-visible, input[type="email"]:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
  outline: initial;
  outline-width: 1px;
  outline-style: auto;
  outline-color: #005fcc;
  outline-offset: 1px;
}

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

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

input:-ms-input-placeholder {
  color: #999;
  font-size: 1.3125rem;
}

input::placeholder {
  color: #999;
  font-size: 1.3125rem;
}

ul, ol, li {
  list-style: none;
}

/* --------------------
基本設定
-------------------- */
html.msie body {
  font-size: 100%;
}

html.iphone a:hover, html.ipod a:hover, html.ipad a:hover, html.android a:hover {
  opacity: 1.0 !important;
}

html.iphone a:hover img, html.ipod a:hover img, html.ipad a:hover img, html.android a:hover img {
  opacity: 1.0 !important;
}

body {
  -webkit-text-size-adjust: 100%;
  text-align: center;
  color: #231815;
  font-family: "Noto sans JP", "NotoSansCJKjp", sans-serif !important;
  font-weight: normal;
  line-height: 1.4;
}

body.bgChange {
  background-color: #fff;
}

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: bottom;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  max-height: 96vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* //////カラー////// */
body, body input, body button {
  font-family: "Noto sans JP", "NotoSansCJKjp", sans-serif !important;
  font-weight: 400 !important;
}

body img, body input img, body button img {
  width: 100%;
  height: auto;
}

body li, body input li, body button li {
  list-style: none;
}

body *, body :after, body :before, body input *, body input :after, body input :before, body button *, body button :after, body button :before {
  box-sizing: border-box;
  letter-spacing: .05em;
  line-break: strict;
  font-feature-settings: "palt";
}

body p, body input p, body button p {
  font-size: 15px;
}

body a, body input a, body button a {
  cursor: pointer;
}

body article, body input article, body button article {
  position: relative;
}

body {
  position: relative;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/bg_pc_lt.png), url(../images/bg_pc_rb.png), url(../images/bg_pc.jpg);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: top left, bottom right, center center;
  background-size: 305px auto, 305px auto, cover;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background-color: #231815;
}

body .CastrolArticle {
  position: relative;
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
  z-index: 2;
}

body .CastrolArticle .indexInner {
  width: 92.82051282%;
  margin-right: auto;
  margin-left: auto;
}

body .LowerHead {
  color: #fff;
  font-size: 18px;
}

body .LowerTxt {
  color: #fff;
  font-size: 14px;
}

body .LowerCap {
  color: #fff;
  font-size: 12px;
}

body .copyright {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 11px;
  line-height: 1.4;
}

body .Btn {
  display: block;
  overflow: hidden;
  width: 93.2%;
  height: 0;
  margin: 0 auto;
  padding-bottom: 19.2%;
  border: none;
  white-space: nowrap;
  text-indent: -9999px;
  color: transparent;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.4));
  cursor: pointer;
}

body .Btn.BtnIndex {
  background: url(../images/btn_index.png) no-repeat center/contain;
}

body .Btn.BtnForm {
  background: url(../images/btn_form.png) no-repeat center/contain;
}

body .Btn.BtnConfirm {
  background: url(../images/btn_confirm.png) no-repeat center/contain;
}

body .Btn.BtnComplete {
  height: auto;
  padding: 0;
  background: none;
}

body .BtnBack {
  display: block;
  width: 75%;
  margin: 0 auto;
  background-color: #fff;
  color: transparent;
  cursor: pointer;
}

body .LowerSec {
  padding: 25px 18px 30px;
  background-color: #e60021;
}

body .LowerSec .FormWrap {
  padding: 12px 18px;
  background-color: #fff;
  text-align: left;
}

body .LowerSec .FormWrap sup {
  vertical-align: super;
  color: #e60021;
  font-size: .75em;
  line-height: 0;
}

body .LowerSec .FormWrap .FormDl {
  padding: 16px 6px 20px;
  border-bottom: 1px solid #888;
}

body .LowerSec .FormWrap .FormDl:first-child {
  margin-top: 0;
}

body .LowerSec .FormWrap .FormDl .FormTxtLink {
  position: relative;
  display: inline-block;
  padding: 8px 18px 8px 0;
  text-decoration: underline;
  font-size: 13px;
  font-weight: 600;
}

body .LowerSec .FormWrap .FormDl .FormTxtLink::after {
  content: "\f591";
  position: absolute;
  top: 53%;
  right: 0;
  transform: translateY(-50%);
  font-family: "Material Symbols Outlined";
  font-size: 16px;
  font-weight: normal;
}

body .LowerSec .FormWrap .FormDl .FormCap {
  margin-top: 5px;
  font-size: 12px;
}

body .LowerSec .FormWrap .FormDl .FormCap li {
  padding-left: 1em;
  text-indent: -1em;
}

body .LowerSec .FormWrap .FormDl > dt {
  font-weight: 600;
}

body .LowerSec .FormWrap .FormDl > dt .FormDtTxt {
  font-size: 14px;
  line-height: 1.6;
}

body .LowerSec .FormWrap .FormDl > dd .FileUpload {
  display: flex;
  margin-top: 10px;
}

body .LowerSec .FormWrap .FormDl > dd .FileUpload .FileInput {
  display: none;
}

body .LowerSec .FormWrap .FormDl > dd .FileUpload .FileLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 46px;
  background-color: #231815;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  transition: all .2s ease;
  cursor: pointer;
}

body .LowerSec .FormWrap .FormDl > dd .FileUpload .FileName {
  display: flex;
  align-items: center;
  width: calc(100% - 130px);
  padding-left: 8px;
  word-break: break-all;
  color: #666;
  font-size: 12px;
  line-height: 1.25;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  font-size: 14px;
  gap: .75em;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio input[type="radio"] {
  display: none;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio .RadioBtn {
  position: relative;
  padding-left: 26px;
  line-height: 1.4;
  cursor: pointer;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio .RadioBtn > span {
  font-weight: 600;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio .RadioBtn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  box-sizing: border-box;
  width: 17px;
  height: 17px;
  border: 2px solid #666;
  border-radius: 50%;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio .RadioBtn::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 7px;
  height: 7px;
  background: #009143;
  border-radius: 50%;
  transition: opacity .2s ease;
  opacity: 0;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio input[type="radio"]:checked + .RadioBtn::after {
  opacity: 1;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 8px;
  color: #231815;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio02 input {
  display: none;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio02 .RadioBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 12px) / 3);
  min-height: 38px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #231815;
  border-radius: 6px;
  color: #231815;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteRadio02 input[type="radio"]:checked + .RadioBtn {
  background-color: #009143;
  border: 1px solid #009143;
  color: #fff;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteSelect {
  position: relative;
  margin-top: 8px;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteSelect select {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  padding: 2px 25px 0 12px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top 55% right 10px;
  background-size: 10px auto;
  border: 1px solid #231815;
  border-radius: 6px;
  text-align: left;
  color: #231815;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteSelect::after {
  content: "\e5c5";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  pointer-events: none;
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  font-weight: normal;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteInput, body .LowerSec .FormWrap .FormDl > dd .EnqueteInputHalf {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: 8px;
  padding: 6px 0 6px 12px;
  background: #fff;
  border: 1px solid #231815;
  border-radius: 6px;
  color: #231815;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 1.3;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteInput::placeholder, body .LowerSec .FormWrap .FormDl > dd .EnqueteInputHalf::placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteInputFlex {
  display: flex;
  align-items: end;
  gap: 6px;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteInputHalf {
  width: calc((100% - 6px) / 2);
}

body .LowerSec .FormWrap .FormDl > dd .AddressInputBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 120px;
  height: 42px;
  background-color: #231815;
  border: 1px solid #231815;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteTextarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 80px;
  margin-top: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #231815;
  border-radius: 6px;
  color: #231815;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}

body .LowerSec .FormWrap .FormDl > dd .EnqueteTextarea::placeholder {
  color: #999;
  font-size: 15px;
  font-weight: 400;
}

body .LowerSec .FormWrap .FormDl > dd .ConfirmTxt {
  margin-top: 10px;
  padding: 10px;
  background-color: #f3f3f3;
  border-radius: 4px;
  font-size: 14px;
}

body .LowerSec .FormWrap .FormDl > dd .ConfirmTxt span {
  font-weight: 600;
}

body .LowerSec .FormWrap .FormInnerWrap {
  padding: 16px 6px 12px;
  border-bottom: 1px solid #888;
}

body .LowerSec .FormWrap .FormInnerWrap:last-child {
  border-bottom: none;
}

body .LowerSec .FormWrap .FormInnerWrap .FormInnerWrapHead {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}

body .LowerSec .FormWrap .FormInnerWrap .FormDl {
  padding: 0 0 16px;
  border-bottom: none;
}

body .Footer {
  padding: 25px 18px 30px;
  background-color: #231815;
  color: #fff;
}

body .Footer .FooterTel {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

body .Footer .FooterTel::after {
  content: "\e0b0";
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Material Symbols Outlined";
  font-size: 26px;
  font-weight: normal;
}

body .MarginTop65 {
  margin-top: 65px !important;
}

body .MarginTop60 {
  margin-top: 60px !important;
}

body .MarginTop50 {
  margin-top: 50px !important;
}

body .MarginTop40 {
  margin-top: 40px !important;
}

body .MarginTop35 {
  margin-top: 35px !important;
}

body .MarginTop30 {
  margin-top: 30px !important;
}

body .MarginTop25 {
  margin-top: 25px !important;
}

body .MarginTop20 {
  margin-top: 20px !important;
}

body .MarginTop15 {
  margin-top: 15px !important;
}

body .MarginTop10 {
  margin-top: 10px !important;
}

body .MarginTop5 {
  margin-top: 5px !important;
}

body .MarginTop0 {
  margin-top: 0 !important;
}

input[type="checkbox"] {
  accent-color: #009143;
}

label.checkbox {
  display: flex;
  gap: .5em;
  border-radius: 8px;
}

label.checkbox input[type="checkbox"] {
  margin-top: 4px;
}

label.checkbox + label {
  margin-top: .75em;
}

input[type="text"].otherText {
  display: block;
  width: 100%;
  border: 1px solid #231815;
  border-radius: 4px;
  margin-top: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  margin-top: 8px;
  padding: 1px 8px;
  background: #fff;
  border: 1px solid #231815;
  border-radius: 6px;
  color: #231815;
  font-size: 16px;
  line-height: 1.3;
}

input[type="text"].otherText::placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

input[type="text"].otherText:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed; /* Show a "not allowed" icon on hover */
}

.EnqueteCheckbox {
  margin-top: 10px;
  font-size: 14px;
}

.errorText {
  background-color: #e60021;
  color: #fff;
  margin-top: 12px;
  padding: .5em .75em;
  line-height: 1.1;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
}

.bg-red {
  background-color: #e60021;
}

.bg-green {
  background-color: #009143;
}

.bg-white {
  background-color: #fff;
}

.section {
  padding: 7.69230769vw 0;
}

@media (min-width: 460px) {
  .section {
    padding: 35.38462px 0;
  }
}

.section-cource {
  padding-top: 3.84615384vw;
}

@media (min-width: 460px) {
  .section-cource {
    padding-top: 17.69231px;
  }
}

.list-course {
  display: grid;
  gap: 3.46153846vw;
  overflow: hidden;
  grid-template-areas: "a a" "b c" "d d";
  margin-bottom: 6.79487179vw;
}

@media (min-width: 460px) {
  .list-course {
    gap: 15.92308px;
    margin-bottom: 31.25641px;
  }
}

.list-course .course-a {
  grid-area: a;
}

.list-course .course-b {
  grid-area: b;
}

.list-course .course-c {
  grid-area: c;
}

.list-course .doubleChance {
  grid-area: d;
}

.list-course img {
  display: block;
}

.box-target {
  padding: 5.12820513vw;
}

@media (min-width: 460px) {
  .box-target {
    padding: 23.58974px;
  }
}

.box-target * + .ttl {
  margin-top: 3.84615385vw;
}

@media (min-width: 460px) {
  .box-target * + .ttl {
    margin-top: 17.69231px;
  }
}

.box-target .notice {
  font-size: 2.56410256vw;
  line-height: 1.2;
}

@media (min-width: 460px) {
  .box-target .notice {
    font-size: 11.79487px;
  }
}

.box-target .notice li + li {
  margin-top: .5em;
}

.list-flow {
  margin-top: 5.38461538vw;
}

@media (min-width: 460px) {
  .list-flow {
    margin-top: 24.76923px;
  }
}

.list-flow li + li {
  margin-top: 3.84615385vw;
}

@media (min-width: 460px) {
  .list-flow li + li {
    margin-top: 17.69231px;
  }
}

.scrollBox {
  background-color: #fff;
  border: 1px solid #9a9a9a;
  margin-top: 2.56410256vw;
  aspect-ratio: 708/300;
  overflow-y: scroll;
  text-align: left;
  font-size: 12px;
}

@media (min-width: 460px) {
  .scrollBox {
    margin-top: 11.79487px;
  }
}

.scrollBox + .ttl {
  margin-top: 5.12820513vw;
}

@media (min-width: 460px) {
  .scrollBox + .ttl {
    margin-top: 23.58974px;
  }
}

.scrollBox .scrollBoxInner {
  padding: 1em;
}

.scrollBox .scrollBoxInner *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.scrollBox .scrollBoxInner * + * {
  margin-top: 1em;
}

.scrollBox .scrollBoxInner h3 {
  font-size: 1.1em;
  margin: 2em 0 1em;
}

.scrollBox .scrollBoxInner p {
  font-size: 1em;
}

.scrollBox .scrollBoxInner ul, .scrollBox .scrollBoxInner ol {
  margin-top: .5em;
}

.scrollBox .scrollBoxInner ul li + li, .scrollBox .scrollBoxInner ol li + li {
  margin-top: .25em;
}

.scrollBox .scrollBoxInner ul li, .scrollBox .scrollBoxInner ol li {
  padding-left: 1em;
  text-indent: -1em;
}

.scrollBox .scrollBoxInner ul li ul, .scrollBox .scrollBoxInner ul li ol, .scrollBox .scrollBoxInner ul li li, .scrollBox .scrollBoxInner ol li ul, .scrollBox .scrollBoxInner ol li ol, .scrollBox .scrollBoxInner ol li li {
  margin-top: .25em;
}

.checkSubmit {
  color: #fff;
}

.checkSubmit label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3em;
  padding: 1.5em;
  margin-top: 1em;
  font-size: 3.58974359vw;
  font-weight: bold;
}

@media (min-width: 460px) {
  .checkSubmit label {
    font-size: 16.51282px;
  }
}

.checkSubmit label input {
  width: 1.25em;
  height: 1.25em;
}

.checkSubmit .btn-submit {
  display: block;
  width: 84.61538462vw;
  margin: 0 auto;
}

@media (min-width: 460px) {
  .checkSubmit .btn-submit {
    width: 389.23077px;
  }
}

.qa {
  margin-top: 7.69230769vw;
}

@media (min-width: 460px) {
  .qa {
    margin-top: 35.38462px;
  }
}

.qa button {
  padding: 0;
  display: block;
}

.qa .accordionToggle {
  position: relative;
}

.qa .accordionToggle::before, .qa .accordionToggle::after {
  content: "";
  display: block;
  font-size: 4vw;
  position: absolute;
  top: 0;
  right: 1.2em;
  bottom: 0;
  margin: auto;
  width: 1em;
  height: .15em;
  background: #fff;
}

@media (min-width: 460px) {
  .qa .accordionToggle::before, .qa .accordionToggle::after {
    font-size: 18.4px;
  }
}

.qa .accordionToggle::before {
  transform: rotate(90deg);
}

.qa .accordionToggle.closer::before {
  display: none;
}

.qa .accordionBox .accordionBoxInner {
  width: 100%;
  background-color: #fff;
  border: 1px solid #9a9a9a;
  border-top: none;
  aspect-ratio: 708/300;
  text-align: left;
  font-size: 12px;
  padding: 2em 1em;
}

.qa .accordionBox .accordionBoxInner *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.qa .accordionBox .accordionBoxInner * + * {
  margin-top: 1em;
}

.qa .accordionBox .accordionBoxInner h3 {
  font-size: 1.1em;
  margin: 2em 0 1em;
}

.qa .accordionBox .accordionBoxInner p {
  font-size: 1em;
}

.qa .accordionBox .accordionBoxInner ul, .qa .accordionBox .accordionBoxInner ol {
  margin-top: .5em;
}

.qa .accordionBox .accordionBoxInner ul li + li, .qa .accordionBox .accordionBoxInner ol li + li {
  margin-top: .25em;
}

.qa .accordionBox .accordionBoxInner ul li, .qa .accordionBox .accordionBoxInner ol li {
  padding-left: 1em;
  text-indent: -1em;
}

.qa .accordionBox .accordionBoxInner ul li ul, .qa .accordionBox .accordionBoxInner ul li ol, .qa .accordionBox .accordionBoxInner ul li li, .qa .accordionBox .accordionBoxInner ol li ul, .qa .accordionBox .accordionBoxInner ol li ol, .qa .accordionBox .accordionBoxInner ol li li {
  margin-top: .25em;
}

.qa .accordionBox .accordionBoxInner .question {
  margin-top: 2em;
}

.qa .accordionBox .accordionBoxInner .question:first-child {
  margin-top: 0;
}

.btn-submit.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

#modal-1-content {
  margin-bottom: 0;
  font-size: 14px;
}

#modal-1-content ul {
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-size: .8em;
}

#modal-1-content ul li {
  padding-left: 1em;
}

#modal-1-content ul li span {
  display: inline-block;
  text-align: center;
  width: 1em;
  margin-left: -1em;
}

#modal-1-content ul li + li {
  margin-top: .25em;
}
