/*--------------------------
color
---------------------------*/
/*--------------------------
table_layout
---------------------------*/
.form_wrap {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (max-width: 768px) {
  .form_wrap {
    display: block;
  }
}
.form_wrap dl {
  display: table-row;
}
@media only screen and (max-width: 768px) {
  .form_wrap dl {
    display: block;
  }
}
.form_wrap dl dt,
.form_wrap dl dd {
  display: table-cell;
  line-height: 1.5;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .form_wrap dl dt,
  .form_wrap dl dd {
    display: block;
    padding: 20px 0;
  }
}
.form_wrap dl dt {
  width: 250px;
  color: #00868d;
  vertical-align: middle;
  border-right: 1px solid #bdc3c6;
  border-bottom: 1px solid #bdc3c6;
}
@media only screen and (max-width: 768px) {
  .form_wrap dl dt {
    width: 100%;
    padding-bottom: 0;
    border-right: none;
    border-bottom: none;
  }
}
.form_wrap dl dt i {
  margin: 0 5px 0 0;
}
.form_wrap dl dt i .required {
  font-style: normal;
  color: #bf0008;
}
.form_wrap dl dd {
  width: calc(100% - 200px);
  border-bottom: 1px solid #bdc3c6;
}
@media only screen and (max-width: 768px) {
  .form_wrap dl dd {
    width: 100%;
  }
}
.form_wrap dl:last-child dt,
.form_wrap dl:last-child dd {
  border-bottom: none;
}

input,
textarea,
select {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border: none;
  background: rgba(0, 171, 169, 0.09);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #9ca5aa;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #9ca5aa;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #9ca5aa;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #9ca5aa;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #9ca5aa;
}
input:focus,
textarea:focus,
select:focus {
  border: 1px solid #00aba9;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.agree_txt {
  line-height: 1.5;
  margin: 0 0 20px;
  color: #231815;
}
.agree_txt a {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.agree_txt a:hover {
  color: #00868d;
}

.error_blank,
.error_format,
.error_match {
  color: #bf0008;
}

.agree_check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.agree_check input {
  display: none;
}
.agree_check span {
  position: relative;
  padding-left: 28px;
}
.agree_check span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid #bdc3c6;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ffffff;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.agree_check span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.agree_check input:checked + span::before {
  background: #00aba9;
  border-color: #00aba9;
}
.agree_check input:checked + span::after {
  opacity: 1;
}
.agree_check:hover span::before {
  border-color: #00aba9;
}

#form_submit {
  text-align: center;
}
#form_submit #form_submit_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 70px;
  margin: 0 auto;
  color: #00aba9;
  background: rgba(0, 171, 169, 0.09);
  border: 1px solid rgba(0, 171, 169, 0.28);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #form_submit #form_submit_button {
    width: 220px;
    height: 60px;
    font-size: 14px;
  }
}
#form_submit #form_submit_button:hover {
  color: #ffffff;
  background: #00aba9;
}
#form_submit #form_submit_button {
  cursor: pointer;
}
#form_submit #form_submit_button:disabled {
  color: #9ca5aa;
  background: #f0f3f4;
  border-color: #dfe5e7;
  cursor: not-allowed;
  opacity: 0.7;
}
#form_submit #form_submit_button:disabled:hover {
  color: #9ca5aa;
  background: #f0f3f4;
}

div#confirm_field {
  display: none;
  max-width: 1024px;
  margin: 0 auto;
}
div#confirm_field p {
  text-align: center;
}
div#confirm_field #confirm_window {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  div#confirm_field #confirm_window {
    display: block;
  }
}
div#confirm_field #confirm_window dl {
  display: table-row;
}
@media only screen and (max-width: 768px) {
  div#confirm_field #confirm_window dl {
    display: block;
  }
}
div#confirm_field #confirm_window dl dt,
div#confirm_field #confirm_window dl dd {
  display: table-cell;
  line-height: 1.5;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  div#confirm_field #confirm_window dl dt,
  div#confirm_field #confirm_window dl dd {
    display: block;
    padding: 20px 0;
  }
}
div#confirm_field #confirm_window dl dt {
  width: 250px;
  color: #00868d;
  vertical-align: middle;
  border-right: 1px solid #bdc3c6;
  border-bottom: 1px solid #bdc3c6;
}
@media only screen and (max-width: 768px) {
  div#confirm_field #confirm_window dl dt {
    width: 100%;
    padding-bottom: 0;
    border-right: none;
    border-bottom: none;
  }
}
div#confirm_field #confirm_window dl dt i {
  margin: 0 5px 0 0;
}
div#confirm_field #confirm_window dl dt i .required {
  font-style: normal;
  color: #bf0008;
}
div#confirm_field #confirm_window dl dd {
  width: calc(100% - 200px);
  border-bottom: 1px solid #bdc3c6;
}
@media only screen and (max-width: 768px) {
  div#confirm_field #confirm_window dl dd {
    width: 100%;
  }
}
div#confirm_field #confirm_window dl:last-child dt,
div#confirm_field #confirm_window dl:last-child dd {
  border-bottom: none;
}
div#confirm_field #confirm_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
div#confirm_field #confirm_submit #confirm_submit_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 70px;
  margin: 0 auto;
  color: #00aba9;
  background: rgba(0, 171, 169, 0.09);
  border: 1px solid rgba(0, 171, 169, 0.28);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  div#confirm_field #confirm_submit #confirm_submit_button {
    width: 220px;
    height: 60px;
    font-size: 14px;
  }
}
div#confirm_field #confirm_submit #confirm_submit_button:hover {
  color: #ffffff;
  background: #00aba9;
}
div#confirm_field #confirm_submit #confirm_submit_button {
  margin: 0;
  cursor: pointer;
}
div#confirm_field #confirm_submit #confirm_cancel_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 70px;
  margin: 0 auto;
  color: #00aba9;
  background: rgba(0, 171, 169, 0.09);
  border: 1px solid rgba(0, 171, 169, 0.28);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  div#confirm_field #confirm_submit #confirm_cancel_button {
    width: 220px;
    height: 60px;
    font-size: 14px;
  }
}
div#confirm_field #confirm_submit #confirm_cancel_button:hover {
  color: #ffffff;
  background: #00aba9;
}
div#confirm_field #confirm_submit #confirm_cancel_button {
  color: #9ca5aa;
  margin: 0;
  background: #f0f3f4;
  border-color: #dfe5e7;
  cursor: pointer;
}

/*--------------------------
loading
---------------------------*/
div.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
}

span.loading {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.25);
  border-right: 5px solid rgba(255, 255, 255, 0.25);
  border-bottom: 5px solid rgba(255, 255, 255, 0.25);
  border-left: 5px solid #ffffff;
  background: transparent;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load-circle 1s linear infinite;
          animation: load-circle 1s linear infinite;
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: auto;
}

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  width: 100%;
  height: clamp(15rem, 11.786rem + 16.07vw, 26.25rem);
}
#main_visual::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#00aba9), to(#00868d));
  background: linear-gradient(90deg, #00aba9 0%, #00868d 100%);
  -webkit-transition: all 0.7s ease-in-out 0s;
  transition: all 0.7s ease-in-out 0s;
  z-index: -1;
}
#main_visual.animated::before {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #main_visual.animated::before {
    width: calc(100% - 15px);
  }
}
#main_visual .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  padding: 0 30px clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#main_visual .container h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-size: clamp(1rem, 0.786rem + 1.07vw, 1.75rem);
  gap: clamp(0.938rem, 0.848rem + 0.45vw, 1.25rem);
  color: #dee1e3;
  line-height: 1.25;
  text-shadow: 0 4px 3px rgba(0, 0, 0, 0.25);
}
#main_visual .container h1::before {
  content: attr(data-en);
  display: block;
  font-size: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}

/*--------------------------
section01
---------------------------*/
#section01 {
  padding: clamp(5rem, 4.286rem + 3.57vw, 7.5rem) 0;
}
#section01 .form_wrap {
  max-width: 1024px;
  margin: 0 auto;
  margin: 0 auto clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section01 .txt_box {
  text-align: center;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section01 .txt_box .required_mark {
  color: #bf0008;
}
#section01 .txt_box a {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section01 .txt_box a:hover {
  color: #00868d;
}
#section01 .cf-turnstile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
  min-height: 65px;
}
#section01 .btn_box .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 70px;
  margin: 0 auto;
  color: #00aba9;
  background: rgba(0, 171, 169, 0.09);
  border: 1px solid rgba(0, 171, 169, 0.28);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section01 .btn_box .btn {
    width: 220px;
    height: 60px;
    font-size: 14px;
  }
}
#section01 .btn_box .btn:hover {
  color: #ffffff;
  background: #00aba9;
}