@charset "UTF-8";
.form-field {
  border-top: solid 1px #D8D8D8;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: solid 1px #D8D8D8;
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field__item > dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 959px) {
  .form-field__item > dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field__item > dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  .form-field__item > dd {
    width: 100%;
  }
}

.guest-form-field {
  padding: 32px 12px;
  border-top: dotted 1px #2E3784;
  border-bottom: dotted 1px #2E3784;
}

.guest-form-field__item:not(:nth-last-of-type(1)) {
  margin-bottom: 20px;
}

.guest-form-field__item > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 8px;
  color: #2E3784;
  font-weight: bold;
}

.form-required {
  display: inline-block;
  width: 48px;
  height: 20px;
  border: solid 1px #CE2A2A;
  color: #CE2A2A;
  font-size: 1.2rem;
  text-align: center;
  line-height: 18px;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background: #F5F5F5;
  border-radius: 1px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  line-height: 40px;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #888888;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #888888;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #888888;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #888888;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #888888;
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 2px #2E3784;
}

select {
  min-width: 104px;
  padding-right: 40px;
  background: url("/img/frontend/common/select.svg") center right 6px/8px 4px no-repeat, linear-gradient(to left, #2E3784 20px, #F5F5F5 20px, #F5F5F5);
  cursor: pointer;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.length-short {
  max-width: 160px;
}

.form-select.--fit select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.form-checkbox__item {
  position: relative;
  cursor: pointer;
}

.form-checkbox__item input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.form-checkbox__item .form-checkbox-label {
  position: relative;
  padding-left: 32px;
}

.form-checkbox__item .form-checkbox-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  border: solid 2px #F5F5F5;
  border-radius: 1px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-checkbox__item .form-checkbox-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 1px;
  left: 9px;
  z-index: 1;
  width: 7px;
  height: 14px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #2E3784 #2E3784 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.form-checkbox__item input:checked + .form-checkbox-label::before {
  border-color: #2E3784;
}

.form-checkbox__item input:checked + .form-checkbox-label::after {
  display: block;
}

.form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.form-radio__item {
  position: relative;
  cursor: pointer;
}

.form-radio__item input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.form-radio__item .form-radio-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.form-radio__item .form-radio-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  border: solid 2px #F5F5F5;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-radio__item .form-radio-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #888888;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-radio__item input:checked + .form-radio-label::before {
  border-color: #888888;
}

.form-radio__item input:checked + .form-radio-label::after {
  display: block;
}

.form-note {
  padding-top: 4px;
  font-size: 1.4rem;
}

.form-note::before {
  content: '※';
  color: #CE2A2A;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.form-flex__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form-through {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.form-through input {
  max-width: 160px;
}

.form-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 16px;
}

.form-file__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 104px;
  height: 32px;
  background: #333333;
  border: solid 1px #333333;
  border-radius: 1px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

.form-file__btn input {
  display: none;
}

.form-file__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: calc(100% - 120px);
}

.form-file__data span {
  max-width: calc(100% - 72px);
  font-size: 1.4rem;
  line-height: 1.4;
  word-break: break-all;
}

.form-file__data a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 48px;
  height: 24px;
  background: #CE2A2A;
  border: solid 1px #CE2A2A;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

.form-file__data a:hover {
  background: #ffffff;
  color: #CE2A2A;
}

.form-place__item:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.form-place__item.--zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.form-card {
  height: 40px;
  padding: 12px;
  background: #F5F5F5;
  border-radius: 1px;
  font-size: 1.6rem;
}

.field-expiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.field-expiry input {
  width: 80px;
  margin-right: 8px;
}

.field-expiry__txt {
  margin-right: 16px;
}

.form-btn a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 28px;
  padding: 0 16px;
  background: #333333;
  border-radius: 1px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 28px;
  white-space: nowrap;
}

.form-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px 24px;
}

@media screen and (max-width: 767px) {
  .form-send {
    gap: 16px;
  }
}

.form-send button,
.form-send label,
.form-send input,
.form-send a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 240px;
  min-height: 48px;
  padding: 8px 12px;
  background: #2E3784;
  border: solid 1px #2E3784;
  border-radius: 1px;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.4;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .form-send button,
  .form-send label,
  .form-send input,
  .form-send a {
    min-height: 40px;
  }
}

.form-send button:hover,
.form-send label:hover,
.form-send input:hover,
.form-send a:hover {
  background: #ffffff;
  color: #2E3784;
}

.form-send button:disabled,
.form-send label:disabled,
.form-send input:disabled,
.form-send a:disabled {
  background: #F5F5F5;
  border: #F5F5F5;
  color: #D8D8D8;
  pointer-events: none;
}

.form-send button.bc-red,
.form-send label.bc-red,
.form-send input.bc-red,
.form-send a.bc-red {
  background: #CE2A2A;
}

.form-send button.bc-red:hover,
.form-send label.bc-red:hover,
.form-send input.bc-red:hover,
.form-send a.bc-red:hover {
  background: #ffffff;
  color: #CE2A2A;
}

.form-send button.bc-aqu,
.form-send label.bc-aqu,
.form-send input.bc-aqu,
.form-send a.bc-aqu {
  background: #22ACF2;
}

.form-send button.bc-aqu:hover,
.form-send label.bc-aqu:hover,
.form-send input.bc-aqu:hover,
.form-send a.bc-aqu:hover {
  background: #ffffff;
  color: #22ACF2;
}

.form-send button.bc-blu,
.form-send label.bc-blu,
.form-send input.bc-blu,
.form-send a.bc-blu {
  background: #2E3784;
}

.form-send button.bc-blu:hover,
.form-send label.bc-blu:hover,
.form-send input.bc-blu:hover,
.form-send a.bc-blu:hover {
  background: #ffffff;
  color: #2E3784;
}

.form-send button.bc-nvy,
.form-send label.bc-nvy,
.form-send input.bc-nvy,
.form-send a.bc-nvy {
  background: #000080;
}

.form-send button.bc-nvy:hover,
.form-send label.bc-nvy:hover,
.form-send input.bc-nvy:hover,
.form-send a.bc-nvy:hover {
  background: #ffffff;
  color: #000080;
}

.form-send button.bc-grn,
.form-send label.bc-grn,
.form-send input.bc-grn,
.form-send a.bc-grn {
  background: #18a08c;
}

.form-send button.bc-grn:hover,
.form-send label.bc-grn:hover,
.form-send input.bc-grn:hover,
.form-send a.bc-grn:hover {
  background: #ffffff;
  color: #18a08c;
}

.form-send button.bc-yel,
.form-send label.bc-yel,
.form-send input.bc-yel,
.form-send a.bc-yel {
  background: #ffff00;
}

.form-send button.bc-yel:hover,
.form-send label.bc-yel:hover,
.form-send input.bc-yel:hover,
.form-send a.bc-yel:hover {
  background: #ffffff;
  color: #ffff00;
}

.form-send button.bc-orn,
.form-send label.bc-orn,
.form-send input.bc-orn,
.form-send a.bc-orn {
  background: #F85B40;
}

.form-send button.bc-orn:hover,
.form-send label.bc-orn:hover,
.form-send input.bc-orn:hover,
.form-send a.bc-orn:hover {
  background: #ffffff;
  color: #F85B40;
}

.form-send button.bc-beg,
.form-send label.bc-beg,
.form-send input.bc-beg,
.form-send a.bc-beg {
  background: #f5f5dc;
}

.form-send button.bc-beg:hover,
.form-send label.bc-beg:hover,
.form-send input.bc-beg:hover,
.form-send a.bc-beg:hover {
  background: #ffffff;
  color: #f5f5dc;
}

.form-send button.bc-brn,
.form-send label.bc-brn,
.form-send input.bc-brn,
.form-send a.bc-brn {
  background: #a52a2a;
}

.form-send button.bc-brn:hover,
.form-send label.bc-brn:hover,
.form-send input.bc-brn:hover,
.form-send a.bc-brn:hover {
  background: #ffffff;
  color: #a52a2a;
}

.form-send button.bc-pnk,
.form-send label.bc-pnk,
.form-send input.bc-pnk,
.form-send a.bc-pnk {
  background: #ffc0cb;
}

.form-send button.bc-pnk:hover,
.form-send label.bc-pnk:hover,
.form-send input.bc-pnk:hover,
.form-send a.bc-pnk:hover {
  background: #ffffff;
  color: #ffc0cb;
}

.form-send button.bc-ppl,
.form-send label.bc-ppl,
.form-send input.bc-ppl,
.form-send a.bc-ppl {
  background: #c54ea0;
}

.form-send button.bc-ppl:hover,
.form-send label.bc-ppl:hover,
.form-send input.bc-ppl:hover,
.form-send a.bc-ppl:hover {
  background: #ffffff;
  color: #c54ea0;
}

.form-send button.bc-vio,
.form-send label.bc-vio,
.form-send input.bc-vio,
.form-send a.bc-vio {
  background: #704cbc;
}

.form-send button.bc-vio:hover,
.form-send label.bc-vio:hover,
.form-send input.bc-vio:hover,
.form-send a.bc-vio:hover {
  background: #ffffff;
  color: #704cbc;
}

.form-send button.bc-blk,
.form-send label.bc-blk,
.form-send input.bc-blk,
.form-send a.bc-blk {
  background: #333333;
}

.form-send button.bc-blk:hover,
.form-send label.bc-blk:hover,
.form-send input.bc-blk:hover,
.form-send a.bc-blk:hover {
  background: #ffffff;
  color: #333333;
}

.form-send button.bc-wht,
.form-send label.bc-wht,
.form-send input.bc-wht,
.form-send a.bc-wht {
  background: #ffffff;
}

.form-send button.bc-wht:hover,
.form-send label.bc-wht:hover,
.form-send input.bc-wht:hover,
.form-send a.bc-wht:hover {
  background: #ffffff;
  color: #ffffff;
}

.form-send button.bc-l-gry,
.form-send label.bc-l-gry,
.form-send input.bc-l-gry,
.form-send a.bc-l-gry {
  background: #F5F5F5;
}

.form-send button.bc-l-gry:hover,
.form-send label.bc-l-gry:hover,
.form-send input.bc-l-gry:hover,
.form-send a.bc-l-gry:hover {
  background: #ffffff;
  color: #F5F5F5;
}

.form-send button.bc-gry,
.form-send label.bc-gry,
.form-send input.bc-gry,
.form-send a.bc-gry {
  background: #D8D8D8;
}

.form-send button.bc-gry:hover,
.form-send label.bc-gry:hover,
.form-send input.bc-gry:hover,
.form-send a.bc-gry:hover {
  background: #ffffff;
  color: #D8D8D8;
}

.form-send button.bc-d-gry,
.form-send label.bc-d-gry,
.form-send input.bc-d-gry,
.form-send a.bc-d-gry {
  background: #888888;
}

.form-send button.bc-d-gry:hover,
.form-send label.bc-d-gry:hover,
.form-send input.bc-d-gry:hover,
.form-send a.bc-d-gry:hover {
  background: #ffffff;
  color: #888888;
}

.alert {
  margin-bottom: calc(8px * 4);
  padding: 16px;
  background: #ffffff;
  border: solid 1px #D8D8D8;
  border-radius: 1px;
  color: #333333;
  font-size: 1.4rem;
}

@media screen and (max-width: 959px) {
  .alert {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .alert {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.alert.--success {
  border-color: #2E3784;
  color: #2E3784;
}

.alert.--error {
  border-color: #CE2A2A;
  color: #CE2A2A;
}

.error-txt {
  padding-top: 4px;
  color: #CE2A2A;
  font-size: 1.4rem;
}

#guest-top {
  display: block;
  padding-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  #guest-top {
    padding-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #guest-top {
    padding-bottom: calc((8px * 13) * 0.5);
  }
}

#guest-top .wrap-s {
  max-width: 980px;
}

#guest-top .headline {
  position: relative;
  margin-bottom: calc(8px * 5);
  padding-bottom: 12px;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "", serif;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 959px) {
  #guest-top .headline {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #guest-top .headline {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  #guest-top .headline {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  #guest-top .headline {
    font-size: 2rem;
    letter-spacing: 0;
  }
}

#guest-top .headline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #2E3784;
}

@media screen and (max-width: 1023px) {
  #guest-top .headline::before {
    width: 16px;
  }
}

@media screen and (max-width: 767px) {
  #guest-top .headline::before {
    width: 12px;
    height: 1px;
  }
}

#guest-top .ttl-l {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
  font-size: 2.4rem;
  font-family: "", serif;
  line-height: 1.4;
}

@media screen and (max-width: 1023px) {
  #guest-top .ttl-l {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #guest-top .ttl-l {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
}

#guest-top .ttl-l::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 20px;
  background: #2E3784;
  -webkit-mask-image: url("/img/frontend/common/headline-deco.svg");
  mask-image: url("/img/frontend/common/headline-deco.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  #guest-top .ttl-l::before {
    top: 2px;
  }
}

#guest-top .txt {
  line-height: 1.8;
}

#guest-top .txt em {
  color: #2E3784;
  font-size: 2rem;
  background: linear-gradient(to top, transparent 2px, #eaebf3 2px, #eaebf3 12px, transparent 12px);
}

@media screen and (max-width: 767px) {
  #guest-top .txt em {
    font-size: 1.6rem;
    background: linear-gradient(to top, transparent 2px, #eaebf3 2px, #eaebf3 10px, transparent 10px);
  }
}

.regist {
  padding: 88px 40px;
  background: url("/img/frontend/common/regist-bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 1023px) {
  .regist {
    padding: 64px 32px;
  }
}

@media screen and (max-width: 767px) {
  .regist {
    padding: 48px 24px;
  }
}

@media screen and (max-width: 519px) {
  .regist {
    padding: 32px 24px;
  }
}

.regist .regist-txt {
  margin-bottom: 32px;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .regist .regist-txt {
    margin-bottom: 24px;
    font-size: 1.6rem;
    text-align: left;
  }
}

.regist .regist-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 64px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(#F85B40), to(#FF9021));
  background: linear-gradient(to right, #F85B40, #FF9021);
  border-radius: 64px;
  -webkit-box-shadow: 4px 4px 0 #B8422D;
  box-shadow: 4px 4px 0 #B8422D;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  font-family: "", serif;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .regist .regist-btn a {
    height: 56px;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .regist .regist-btn a {
    height: 48px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

.regist .regist-btn a:hover {
  opacity: 0.8;
}

.regist .regist-btn a.is-disable {
  opacity: 0.5;
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(100dvh - 144px);
  max-height: 1000px;
  background: url("/img/frontend/top/hero-bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 1023px) {
  .hero {
    height: calc(100vh - 136px);
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: calc(100vh - 128px);
  }
}

@media screen and (max-width: 519px) {
  .hero {
    height: calc(100vh - 116px);
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  width: calc(100% - 16px);
  aspect-ratio: 1418 / 92;
  background: url("/img/frontend/top/hero-typo.png") center/contain no-repeat;
}

.hero__wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.hero .hero-logo {
  width: 50%;
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: calc(8px * 3);
}

@media screen and (max-width: 959px) {
  .hero .hero-logo {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-logo {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

.hero .hero-txt {
  text-align: center;
}

.hero .hero-txt__main {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 4px 40px;
  background: #ffffff;
  border-radius: 2px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .hero .hero-txt__main {
    padding: 4px 32px;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-txt__main {
    padding: 4px 24px;
    font-size: 2rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 519px) {
  .hero .hero-txt__main {
    font-size: 1.6rem;
  }
}

.hero .hero-txt__sub {
  color: #ffffff;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .hero .hero-txt__sub {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .hero .hero-txt__sub {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}

.intoro {
  position: relative;
  margin-bottom: calc(8px * 11);
}

@media screen and (max-width: 959px) {
  .intoro {
    margin-bottom: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .intoro {
    margin-bottom: calc((8px * 11) * 0.5);
  }
}

.intoro::before {
  content: '';
  position: absolute;
  top: -88px;
  left: -16px;
  z-index: -1;
  width: 205px;
  aspect-ratio: 205 / 502;
  background: url("/img/frontend/top/intoro-bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 1023px) {
  .intoro::before {
    width: 154px;
  }
}

@media screen and (max-width: 767px) {
  .intoro::before {
    display: none;
  }
}

.intoro .intoro-ttl {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  margin-bottom: calc(8px * 7);
  color: #2E3784;
  font-size: 4.8rem;
  font-family: "", serif;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1279px) {
  .intoro .intoro-ttl {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-ttl {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .intoro .intoro-ttl {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-ttl {
    margin-bottom: calc((8px * 7) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .intoro .intoro-ttl {
    margin-bottom: calc((8px * 7) * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  .intoro .intoro-ttl {
    font-size: 4rem;
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-ttl {
    font-size: 3.2rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .intoro .intoro-ttl {
    font-size: 2.8rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 519px) {
  .intoro .intoro-ttl {
    font-size: 2.4rem;
  }
}

.intoro .intoro-ttl em {
  background: #2E3784;
  color: #ffffff;
}

.intoro .intoro-ttl span {
  font-size: 3.2rem;
}

@media screen and (max-width: 1023px) {
  .intoro .intoro-ttl span {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-ttl span {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .intoro .intoro-ttl span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .intoro .intoro-ttl span {
    font-size: 1.6rem;
  }
}

.intoro .intoro-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.intoro .intoro-unit.--center {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 1279px) {
  .intoro .intoro-unit.--center {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-unit.--center {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .intoro .intoro-unit.--center {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.intoro .intoro-unit.--center .intoro-unit__vsl {
  width: calc(30% - 12px);
}

@media screen and (max-width: 959px) {
  .intoro .intoro-unit.--center .intoro-unit__vsl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

.intoro .intoro-unit.--center .intoro-unit__dtl {
  width: calc(70% - 12px);
  padding: 16px;
  background: #ffffff;
}

@media screen and (max-width: 959px) {
  .intoro .intoro-unit.--center .intoro-unit__dtl {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding: 0;
  }
}

.intoro .intoro-unit.--left {
  max-width: calc(50vw + 640px);
  padding-right: 40px;
}

@media screen and (max-width: 1279px) {
  .intoro .intoro-unit.--left {
    padding-right: 32px;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-unit.--left {
    padding: 0 24px;
  }
}

@media screen and (max-width: 519px) {
  .intoro .intoro-unit.--left {
    padding: 0 16px;
  }
}

.intoro .intoro-unit.--left .intoro-unit__vsl {
  width: calc(50% - 12px);
  min-width: calc(100% - 624px);
}

@media screen and (max-width: 1279px) {
  .intoro .intoro-unit.--left .intoro-unit__vsl {
    min-width: none;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-unit.--left .intoro-unit__vsl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

.intoro .intoro-unit.--left .intoro-unit__dtl {
  width: calc(50% - 12px);
  max-width: 600px;
  padding: 16px;
  background: #ffffff;
}

@media screen and (max-width: 1279px) {
  .intoro .intoro-unit.--left .intoro-unit__dtl {
    max-width: none;
  }
}

@media screen and (max-width: 959px) {
  .intoro .intoro-unit.--left .intoro-unit__dtl {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding: 0;
  }
}

.vision {
  overflow: clip;
}

.vision .vision-headline {
  margin-bottom: calc(8px * 4);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .vision .vision-headline {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .vision .vision-headline {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.vision .vision-headline__main {
  color: #2E3784;
  font-size: 4.8rem;
  font-family: "Libre Baskerville", sans-serif;
  letter-spacing: 0.4em;
}

@media screen and (max-width: 1023px) {
  .vision .vision-headline__main {
    font-size: 4rem;
    letter-spacing: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .vision .vision-headline__main {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
}

.vision .vision-headline__sub {
  font-size: 2rem;
  font-weight: bold;
  font-family: "", serif;
}

@media screen and (max-width: 1023px) {
  .vision .vision-headline__sub {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .vision .vision-headline__sub {
    font-size: 1.4rem;
  }
}

.vision .vision-list {
  counter-reset: vision-num;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px 40px;
  position: relative;
  margin-bottom: calc(8px * 8);
}

@media screen and (max-width: 959px) {
  .vision .vision-list {
    margin-bottom: calc((8px * 8) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .vision .vision-list {
    margin-bottom: calc((8px * 8) * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  .vision .vision-list {
    gap: 24px 32px;
  }
}

@media screen and (max-width: 767px) {
  .vision .vision-list {
    gap: 16px 24px;
  }
}

.vision .vision-list::before {
  content: '';
  position: absolute;
  bottom: -88px;
  left: calc(50vw + 50% - 212px);
  z-index: -1;
  width: 212px;
  aspect-ratio: 212 / 308;
  background: url("/img/frontend/top/vision-bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 1023px) {
  .vision .vision-list::before {
    width: 160px;
  }
}

@media screen and (max-width: 767px) {
  .vision .vision-list::before {
    display: none;
  }
}

.vision .vision-list__item {
  position: relative;
  width: calc((100% / 3) - (40px * 2 / 3));
  padding: 0 28px 32px;
}

@media screen and (max-width: 1023px) {
  .vision .vision-list__item {
    width: calc((100% / 2) - (32px * 1 / 2));
    padding: 0 24px 28px;
  }
}

@media screen and (max-width: 767px) {
  .vision .vision-list__item {
    width: calc((100% / 2) - (24px * 1 / 2));
    padding: 0 16px 24px;
  }
}

@media screen and (max-width: 519px) {
  .vision .vision-list__item {
    width: 100%;
  }
}

.vision .vision-list__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 19px);
  background: #ffffff;
  border: solid 1px #2E3784;
}

.vision .vision-list__item .vision-num {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 16px;
  padding: 0 16px;
  background: #ffffff;
  color: #2E3784;
  font-weight: bold;
  font-family: "", serif;
  letter-spacing: 0.1em;
}

.vision .vision-list__item .vision-num em {
  counter-increment: vision-num;
  content: counter(vision-num, decimal-leading-zero);
  font-size: 2.4rem;
}

.vision .vision-list__item .vision-num::before, .vision .vision-list__item .vision-num::after {
  content: '';
  width: 1px;
  height: 10px;
  background: #333333;
  -webkit-transform: skewX(-32deg);
  transform: skewX(-32deg);
}

.vision .vision-list__item .vision-num::before {
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
}

.vision .vision-list__item .vision-num::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
}

.vision .vision-future {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.vision .vision-future dt {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #2E3784;
  border-radius: 2px 0 0 2px;
  color: #ffffff;
  font-size: 2.4rem;
  font-family: "", serif;
}

@media screen and (max-width: 1023px) {
  .vision .vision-future dt {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .vision .vision-future dt {
    width: 100%;
    padding: 12px;
    border-radius: 2px 2px 0 0;
    font-size: 1.8rem;
  }
}

.vision .vision-future dd {
  width: calc(100% - 180px);
  padding: 32px 24px;
  background: #ffffff;
  border: solid 2px #2E3784;
  border-radius: 0 2px 2px 0;
}

@media screen and (max-width: 767px) {
  .vision .vision-future dd {
    width: 100%;
    padding: 16px;
    border-width: 1px;
    border-radius: 0 0 2px 2px;
  }
}

.value .content-inner,
.provide .content-inner,
.fee .content-inner,
.flow .content-inner,
.faq .content-inner {
  position: relative;
  padding: 8px 0 8px 96px;
}

@media screen and (max-width: 1023px) {
  .value .content-inner,
  .provide .content-inner,
  .fee .content-inner,
  .flow .content-inner,
  .faq .content-inner {
    padding: 6px 0 6px 68px;
  }
}

@media screen and (max-width: 767px) {
  .value .content-inner,
  .provide .content-inner,
  .fee .content-inner,
  .flow .content-inner,
  .faq .content-inner {
    padding: 4px 0 4px 52px;
  }
}

.value .content-inner::before,
.provide .content-inner::before,
.fee .content-inner::before,
.flow .content-inner::before,
.faq .content-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 44px;
  width: 2px;
  height: 100%;
  background: #2E3784;
}

@media screen and (max-width: 1023px) {
  .value .content-inner::before,
  .provide .content-inner::before,
  .fee .content-inner::before,
  .flow .content-inner::before,
  .faq .content-inner::before {
    left: 34px;
  }
}

@media screen and (max-width: 767px) {
  .value .content-inner::before,
  .provide .content-inner::before,
  .fee .content-inner::before,
  .flow .content-inner::before,
  .faq .content-inner::before {
    left: 26px;
    width: 1px;
  }
}

.value .content-inner::after,
.provide .content-inner::after,
.fee .content-inner::after,
.flow .content-inner::after,
.faq .content-inner::after {
  content: 'Value';
  position: absolute;
  top: 0;
  left: 0;
  color: #2E3784;
  font-size: 3.2rem;
  font-family: "Libre Baskerville", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.1em;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotateZ(-90deg) translateX(-100%);
  transform: rotateZ(-90deg) translateX(-100%);
}

@media screen and (max-width: 1023px) {
  .value .content-inner::after,
  .provide .content-inner::after,
  .fee .content-inner::after,
  .flow .content-inner::after,
  .faq .content-inner::after {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .value .content-inner::after,
  .provide .content-inner::after,
  .fee .content-inner::after,
  .flow .content-inner::after,
  .faq .content-inner::after {
    font-size: 2rem;
  }
}

.value .value-list {
  counter-reset: value-num;
}

.value .value-list__item {
  position: relative;
  padding-left: 128px;
}

@media screen and (max-width: 1023px) {
  .value .value-list__item {
    padding-left: 104px;
  }
}

@media screen and (max-width: 767px) {
  .value .value-list__item {
    padding: 48px 0 0;
  }
}

@media screen and (max-width: 519px) {
  .value .value-list__item {
    padding: 40px 0 0;
  }
}

.value .value-list__item:not(:nth-last-child(1)) {
  margin-bottom: calc(8px * 3);
}

@media screen and (max-width: 959px) {
  .value .value-list__item:not(:nth-last-child(1)) {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .value .value-list__item:not(:nth-last-child(1)) {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

.value .value-list__item .value-num {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 104px;
  height: 100%;
  background: #F5F5F5;
  color: #2E3784;
  font-size: 1.2rem;
  font-family: "Alumni Sans", sans-serif;
}

@media screen and (max-width: 1023px) {
  .value .value-list__item .value-num {
    width: 80px;
  }
}

@media screen and (max-width: 767px) {
  .value .value-list__item .value-num {
    gap: 4px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 120px;
    height: 40px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .value .value-list__item .value-num {
    width: 104px;
    height: 32px;
    font-size: 1.4rem;
  }
}

.value .value-list__item .value-num::before {
  counter-increment: value-num;
  content: counter(value-num, decimal-leading-zero);
  font-size: 4rem;
  margin-bottom: 8px;
  border-bottom: solid 1px #2E3784;
}

@media screen and (max-width: 1023px) {
  .value .value-list__item .value-num::before {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .value .value-list__item .value-num::before {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
    border-bottom: none;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .value .value-list__item .value-num::before {
    font-size: 2rem;
  }
}

.provide .content-inner::after {
  content: 'Content';
}

.provide .provide-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 56px;
}

@media screen and (max-width: 1279px) {
  .provide .provide-unit {
    gap: 48px;
  }
}

@media screen and (max-width: 1023px) {
  .provide .provide-unit {
    gap: 40px;
  }
}

@media screen and (max-width: 959px) {
  .provide .provide-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .provide .provide-unit {
    gap: 24px;
  }
}

.provide .provide-unit__col {
  width: calc((100% / 2) - (56px * 1 / 2));
}

@media screen and (max-width: 1279px) {
  .provide .provide-unit__col {
    width: calc((100% / 2) - (48px * 1 / 2));
  }
}

@media screen and (max-width: 1023px) {
  .provide .provide-unit__col {
    width: calc((100% / 2) - (40px * 1 / 2));
  }
}

@media screen and (max-width: 959px) {
  .provide .provide-unit__col {
    width: calc((100% / 2) - (32px * 1 / 2));
  }
}

@media screen and (max-width: 767px) {
  .provide .provide-unit__col {
    width: 100%;
  }
}

.provide .provide-unit__col .provide-vsl {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .provide .provide-unit__col .provide-vsl {
    margin-bottom: 16px;
  }
}

.provide .provide-unit__col .provide-ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 16px;
  padding: 0 24px;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "", serif;
}

@media screen and (max-width: 1279px) {
  .provide .provide-unit__col .provide-ttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 1023px) {
  .provide .provide-unit__col .provide-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .provide .provide-unit__col .provide-ttl {
    margin-bottom: 12px;
    padding: 0 16px;
    font-size: 1.8rem;
  }
}

.provide .provide-unit__col .provide-ttl::before, .provide .provide-unit__col .provide-ttl::after {
  content: '';
  width: 2px;
  height: 16px;
  background: #333333;
  -webkit-transform: skewX(-32deg);
  transform: skewX(-32deg);
}

@media screen and (max-width: 767px) {
  .provide .provide-unit__col .provide-ttl::before, .provide .provide-unit__col .provide-ttl::after {
    width: 1px;
    height: 12px;
  }
}

.provide .provide-unit__col .provide-ttl::before {
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
}

.provide .provide-unit__col .provide-ttl::after {
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
}

.fee .content-inner::after {
  content: 'Fee';
}

.fee .fee-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: solid 1px #2E3784;
}

.fee .fee-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.fee .fee-list__item dt {
  position: relative;
  width: 150px;
  padding: 12px 8px;
}

@media screen and (max-width: 767px) {
  .fee .fee-list__item dt {
    width: 100%;
    margin-bottom: 8px;
    padding: 0;
    color: #2E3784;
  }
}

.fee .fee-list__item dt::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 24px);
  background: #2E3784;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .fee .fee-list__item dt::after {
    display: none;
  }
}

.fee .fee-list__item dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: calc(100% - 150px);
  padding: 12px 24px;
}

@media screen and (max-width: 767px) {
  .fee .fee-list__item dd {
    width: 100%;
    padding: 0;
  }
}

.fee .fee-list__item dd em {
  font-size: 3.2rem;
  font-family: "Alumni Sans", sans-serif;
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .fee .fee-list__item dd em {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .fee .fee-list__item dd em {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .fee .fee-list__item dd em {
    font-size: 2rem;
  }
}

.fee .fee-campaign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
  padding: 0 8px;
  border-radius: 2px;
  background: #CE2A2A;
  color: #ffffff;
  line-height: 1;
}

.flow .content-inner::after {
  content: 'Flow';
}

.flow .flow-chart {
  counter-reset: flow-num;
}

.flow .flow-chart__step {
  position: relative;
  padding-left: 144px;
}

@media screen and (max-width: 1023px) {
  .flow .flow-chart__step {
    padding-left: 124px;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-chart__step {
    padding: 32px 0 0;
  }
}

.flow .flow-chart__step::before {
  counter-increment: flow-num;
  content: "STEP " counter(flow-num, decimal-leading-zero);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 4px;
  left: 0;
  width: 120px;
  height: 32px;
  background: #2E3784;
  border-radius: 32px;
  color: #ffffff;
  font-family: "Alumni Sans", sans-serif;
}

@media screen and (max-width: 1023px) {
  .flow .flow-chart__step::before {
    width: 104px;
    height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-chart__step::before {
    top: 0;
    width: 80px;
    height: 24px;
  }
}

.flow .flow-chart__step:not(:nth-last-of-type(1)) {
  margin-bottom: 4px;
  padding-bottom: 28px;
}

@media screen and (max-width: 767px) {
  .flow .flow-chart__step:not(:nth-last-of-type(1)) {
    margin-bottom: 24px;
    padding-bottom: 0;
  }
}

.flow .flow-chart__step:not(:nth-last-of-type(1))::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 59px;
  width: 2px;
  height: calc(100% - 44px);
  background: #D8D8D8;
}

@media screen and (max-width: 767px) {
  .flow .flow-chart__step:not(:nth-last-of-type(1))::after {
    display: none;
  }
}

.flow .flow-chart__step dt {
  margin-bottom: calc(8px * 2);
  color: #2E3784;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "", serif;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .flow .flow-chart__step dt {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .flow .flow-chart__step dt {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  .flow .flow-chart__step dt {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .flow .flow-chart__step dt {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .flow .flow-chart__step dt {
    font-size: 1.6rem;
  }
}

.flow .flow-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 40px;
}

@media screen and (max-width: 767px) {
  .flow .flow-unit__col {
    width: 100%;
  }
}

.faq .content-inner::after {
  content: 'FAQ';
}

.faq .faq-list__item {
  position: relative;
  gap: 4px 12px;
}

.faq .faq-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: calc(8px * 3);
  padding-bottom: calc(8px * 3);
  border-bottom: dashed 1px #888888;
}

@media screen and (max-width: 959px) {
  .faq .faq-list__item:not(:nth-last-of-type(1)) {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item:not(:nth-last-of-type(1)) {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .faq .faq-list__item:not(:nth-last-of-type(1)) {
    padding-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item:not(:nth-last-of-type(1)) {
    padding-bottom: calc((8px * 3) * 0.5);
  }
}

.faq .faq-list__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 48px;
  margin-bottom: 12px;
  padding-left: 64px;
  color: #2E3784;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "", serif;
  line-height: 1.4;
  gap: 4px 12px;
}

@media screen and (max-width: 1023px) {
  .faq .faq-list__item dt {
    min-height: 40px;
    padding-left: 52px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .faq .faq-list__item dt {
    position: relative;
    min-height: 32px;
    padding-left: 40px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item dt {
    font-size: 1.6rem;
  }
}

.faq .faq-list__item dt::before {
  content: 'Q';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  aspect-ratio: 1/1;
  background: #2E3784;
  border-radius: 2px;
  color: #ffffff;
}

@media screen and (max-width: 1023px) {
  .faq .faq-list__item dt::before {
    width: 40px;
  }
}

@media screen and (max-width: 767px) {
  .faq .faq-list__item dt::before {
    top: 50%;
    width: 32px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.faq .faq-list__item dd {
  padding-left: 64px;
}

@media screen and (max-width: 1023px) {
  .faq .faq-list__item dd {
    padding-left: 52px;
  }
}

@media screen and (max-width: 767px) {
  .faq .faq-list__item dd {
    padding-left: 0;
  }
}

.faq .faq-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 40px;
}

@media screen and (max-width: 767px) {
  .faq .faq-unit__col {
    width: 100%;
  }
}

/*# sourceMappingURL=../../../maps/frontend/pages/guest-top.css.map */
