@charset "UTF-8";
* {
  box-sizing: border-box;
  word-break: break-all;
}

img {
  max-width: 100%;
}

.w100 {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}
a.disable {
  pointer-events: none;
}

.txt_underline {
  text-decoration: underline;
}

@media (min-width: 769px) {
  .hv_op {
    transition: opacity 0.3s;
  }
  .hv_op:hover {
    opacity: 0.7;
  }
  .hv_line {
    position: relative;
  }
  .hv_line::after {
    content: "";
    bottom: -9px;
    left: 0;
    width: 0;
    height: 1px;
    border-bottom: 1px solid;
    position: absolute;
    transition: 0.4s;
  }
  .hv_line:hover::after {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

.c-red {
  color: #C7000E;
}

input::-webkit-input-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

input:-moz-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

input::-moz-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

input:-ms-input-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

svg.hide {
  display: none;
}

/* フェードイン */
[data-anime=fadeIn] {
  opacity: 0;
}
[data-anime=fadeIn].show {
  animation-name: fadeIn;
  animation-duration: 0.6s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* === common
==================================== */
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.075em;
}

.header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .logo {
  width: 64px;
}
@media (min-width: 769px) {
  .header {
    height: 100px;
  }
  .header .logo {
    width: 103px;
  }
}

.footer {
  position: relative;
  background: #F8F8E9;
  padding: 68px 0 45px;
  margin-top: 95px;
}
@media (min-width: 769px) {
  .footer {
    padding: 58px 0;
    margin-top: 100px;
  }
}
.footer .pagetop {
  position: absolute;
  top: -35px;
  left: 50%;
  margin-left: -35px;
}
@media (min-width: 769px) {
  .footer .pagetop {
    display: none;
  }
}
.footer .pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: #D96114;
  transform: rotate(-90deg);
}
.footer .pagetop a img {
  width: 23px;
}
.footer .copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
}

.mv {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .mv {
    margin-bottom: 50px;
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  max-height: 75%;
  background: #D96114;
}
.mv .mv-ttl {
  position: relative;
  padding: 34px 5.3% 0;
}
@media (min-width: 769px) {
  .mv .mv-ttl {
    padding: 60px 60px 0;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.contents {
  padding: 0 20px;
}
@media (min-width: 769px) {
  .contents {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
  }
}

.step {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .step {
    gap: 60px;
    margin-bottom: 60px;
  }
}
.step .step-in {
  position: relative;
  width: 74px;
  height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #F0F0F0;
  border-radius: 100%;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.075em;
  color: #ADADAD;
  text-align: center;
  font-weight: bold;
  gap: 4px;
  padding-bottom: 10px;
}
@media (min-width: 769px) {
  .step .step-in {
    width: 120px;
    height: 120px;
    font-size: 15px;
    border-width: 4px;
    gap: 6px;
  }
}
.step .step-in:not(:first-child)::before {
  content: "";
  width: 13px;
  height: 2px;
  background: #F0F0F0;
  position: absolute;
  left: -15px;
  top: calc(50% - 1px);
}
@media (min-width: 769px) {
  .step .step-in:not(:first-child)::before {
    width: 60px;
    left: -64px;
  }
}
.step .step-in .num {
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 769px) {
  .step .step-in .num {
    font-size: 14px;
  }
}
.step .step-in.active {
  background: #D96114;
  border-color: #D96114;
  color: #fff;
}
.step .step-in.active::before {
  background: #D96114;
}

.page-ttl {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
}
@media (min-width: 769px) {
  .page-ttl {
    font-size: 40px;
  }
}

.lead {
  text-align: center;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .lead {
    font-size: 18px;
    font-weight: 400;
    margin-top: 18px;
  }
}
.lead .caution {
  color: #FF0000;
}

.desc-ttl {
  font-size: 20px;
  margin: 40px 0 14px;
}
@media (min-width: 769px) {
  .desc-ttl {
    font-size: 22px;
    margin: 60px 0 14px;
  }
}

.desc-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69230769;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .desc-text {
    line-height: 1.84615385;
  }
}

.cmn-btn {
  position: relative;
  text-align: center;
}
@media (min-width: 769px) {
  .cmn-btn {
    max-width: 360px;
    margin: 0 auto;
  }
}
.cmn-btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url(../images/arrow.svg) center right/100% no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .cmn-btn::after {
    right: 40px;
  }
}
.cmn-btn .btn-in {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #D96114;
  color: #fff;
  font-size: 16px;
  line-height: 1.375;
}
@media (min-width: 769px) {
  .cmn-btn .btn-in {
    height: 80px;
  }
}

.cmn-btn.btn-back::after {
  background: #D96114;
  -webkit-mask: url(../images/arrow.svg) center right/100% no-repeat;
  mask: url(../images/arrow.svg) center right/100% no-repeat;
  right: auto;
  left: 20px;
  transform: translateY(-50%) rotate(-180deg);
}
@media (min-width: 769px) {
  .cmn-btn.btn-back::after {
    left: 40px;
  }
}
.cmn-btn.btn-back .btn-in {
  background: #fff;
  border: 1px solid #D96114;
  color: #D96114;
}

.btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.btn-wrap .cmn-btn {
  margin-top: 0;
}
@media (min-width: 769px) {
  .btn-wrap {
    flex-direction: row;
    gap: 40px;
    margin-top: 60px;
  }
  .btn-wrap .cmn-btn {
    width: calc((100% - 40px) / 2);
  }
}

/* === index
==================================== */
.form {
  margin-top: 30px;
}
.form .serial_code + .serial_code {
  margin-top: 16px;
}
@media (min-width: 769px) {
  .form .serial_code + .serial_code {
    margin-top: 30px;
  }
}
.form-block + .form-block {
  margin-top: 40px;
}
@media (min-width: 769px) {
  .form-block + .form-block {
    margin-top: 50px;
  }
}
.form-label {
  font-size: 19px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .form-label {
    font-size: 22px;
    line-height: 1.54545455;
  }
}
.form-label .required {
  color: #C7000E;
}
.form-label + .form-field {
  margin-top: 20px;
}
.form .input-note {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69230769;
}
.form .flex-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 769px) {
  .form .flex-box {
    flex-direction: row;
    gap: 40px;
  }
  .form .flex-box .form-field {
    width: calc((100% - 40px) / 2);
  }
}
.form-field {
  margin-top: 10px;
  background: #F5F5F5;
}
.form-field.error, .form-field.js-error-input {
  background: #FFEAE8;
}
@media (min-width: 769px) {
  .form-field.field-half {
    width: calc((100% - 40px) / 2);
  }
}
.form select,
.form textarea,
.form input {
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}
@media (min-width: 769px) {
  .form select,
  .form textarea,
  .form input {
    padding: 27px 29px;
  }
}
.form textarea {
  height: 260px;
}
.form .selectbox-wrap {
  position: relative;
}
.form .selectbox-wrap::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(135deg);
}
@media (min-width: 769px) {
  .form .select-pref,
  .form .select-age {
    width: calc((100% - 40px) / 2);
  }
}
.form .radio-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form .radio-wrap.radio-flex {
  flex-direction: row;
  gap: 25px;
}
.form .radio-wrap label {
  position: relative;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
.form .radio-wrap label .radio-txt {
  position: relative;
  display: inline-block;
  padding-left: 28px;
}
.form .radio-wrap label .radio-txt::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid #CECECE;
  position: absolute;
  top: 5px;
  left: 0;
}
.form .radio-wrap label input[type=radio]:checked + .radio-txt::before {
  border-color: #C7000E;
}
.form .radio-wrap label input[type=radio]:checked + .radio-txt::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #C7000E;
  position: absolute;
  top: 10px;
  left: 5px;
}
.form .radio-wrap label input {
  display: none;
}
.form .checkbox-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form .checkbox-wrap.radio-flex {
  flex-direction: row;
  gap: 25px;
}
.form .checkbox-wrap label {
  position: relative;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
.form .checkbox-wrap label .checkbox-txt {
  position: relative;
  display: inline-block;
  padding-left: 28px;
}
.form .checkbox-wrap label .checkbox-txt::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #CECECE;
  position: absolute;
  top: 5px;
  left: 0;
}
.form .checkbox-wrap label input[type=checkbox]:checked + .checkbox-txt::before {
  background: #C7000E;
}
.form .checkbox-wrap label input[type=checkbox]:checked + .checkbox-txt::after {
  content: "";
  width: 6px;
  height: 10px;
  position: absolute;
  top: 9px;
  left: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.form .checkbox-wrap label input {
  display: none;
}
.form .error-msg {
  display: inline-block;
  color: #C7000E;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
@media (min-width: 769px) {
  .form .error-msg {
    font-size: 16px;
  }
}
.form .js-error-num,
.form .js-error-length {
  display: block;
}

.btn-next {
  margin-top: 50px;
}
@media (min-width: 769px) {
  .btn-next {
    margin-top: 60px;
  }
}

.serial_code-area {
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  padding: 30px 0;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .serial_code-area {
    margin: 60px 0;
    padding: 50px 0;
  }
}
.serial_code-area .ttl {
  font-size: 20px;
}
@media (min-width: 769px) {
  .serial_code-area .ttl {
    font-size: 22px;
  }
}
.serial_code-area .code-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.form-bottom {
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  padding: 30px 0;
  margin: 50px 0;
  text-align: center;
}
@media (min-width: 769px) {
  .form-bottom {
    border: 1px solid #CECECE;
    padding: 50px;
  }
}
.form-bottom .ttl {
  font-size: 20px;
  line-height: 1.5;
}
.form-bottom .text {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69230769;
  margin-bottom: 30px;
}
.form-bottom .text a {
  color: #0068be;
}
.form-bottom .note {
  margin-top: 20px;
  color: #ADADAD;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69230769;
}

/* === confirm
==================================== */
@media (min-width: 769px) {
  .page-form-confirm .serial_code-area {
    margin-bottom: 50px;
  }
}
.page-form-confirm .required {
  color: #C7000E;
}
.page-form-confirm .form-list .list-item {
  border-bottom: 1px solid #CECECE;
  margin-bottom: 40px;
  padding-bottom: 32px;
}
@media (min-width: 769px) {
  .page-form-confirm .form-list .list-item {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}
.page-form-confirm .form-list dt {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .page-form-confirm .form-list dt {
    font-size: 22px;
  }
}
.page-form-confirm .form-list dd {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  margin-top: 14px;
}

/* === thanks
==================================== */
.page-form-thanks .bnr {
  margin-top: 40px;
}
@media (min-width: 769px) {
  .page-form-thanks .bnr {
    margin-top: 60px;
  }
}
.page-form-thanks .line-box {
  position: relative;
  margin: 64px 0 50px;
  padding: 50px 17px 40px;
  background: #F8F8E9;
  text-align: center;
}
@media (min-width: 769px) {
  .page-form-thanks .line-box {
    margin: 84px 0 60px;
    padding: 70px 10px 48px;
  }
}
.page-form-thanks .line-box .icon-line {
  position: absolute;
  width: 54px;
  top: -27px;
  left: 50%;
  margin-left: -27px;
}
@media (min-width: 769px) {
  .page-form-thanks .line-box .icon-line {
    width: 94px;
    margin-left: -47px;
    top: -47px;
  }
}
.page-form-thanks .line-box .ttl {
  font-size: 22px;
}
@media (min-width: 769px) {
  .page-form-thanks .line-box .ttl {
    font-size: 36px;
  }
}
.page-form-thanks .line-box .text {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}
@media (min-width: 769px) {
  .page-form-thanks .line-box .text {
    margin-top: 20px;
    font-size: 34px;
  }
}
.page-form-thanks .line-box .btn {
  width: 300px;
  height: 60px;
  margin: 20px auto 0;
}
@media (min-width: 769px) {
  .page-form-thanks .line-box .btn {
    margin-top: 40px;
  }
}
.page-form-thanks .line-box .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  color: #fff;
  background: #00B900;
}
@media (min-width: 769px) {
  .page-form-thanks .btn-next:after {
    right: 20px;
  }
}
@media (min-width: 769px) {
  .page-form-thanks .btn-back:after {
    left: 20px;
  }
}
/*# sourceMappingURL=map/style.css.map */