@charset "utf-8";
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  padding-top: 10rem;
}
.mv-page__image {
  position: relative;
}
.mv-page__item {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-5%, -50%);
  height: min(80%, 29.5rem);
  width: min(55%, 73.5rem);
  margin: 0 auto;
}
/* 枠 */
.mv-page__item::before, .mv-page__item::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10rem;
  height: 10rem;
}
.mv-page__item::before {
  top: 0;
  left: 0;
  border-left: solid 3rem #ff6d00;
  border-top: solid 3rem #ff6d00;
}
.mv-page__item::after {
  bottom: 0;
  right: 0;
  border-right: solid 3rem #ff6d00;
  border-bottom: solid 3rem #ff6d00;
}
/* TITLE */
.mv-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(100%, 29.5rem);
}
.mv-title h2 {
  color: #fff;
  font-size: clamp(3.2rem, 3vw, 5rem);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.mv-title h2 span {
  margin: 0 0 3rem 2.5rem;
  padding-left: 2.5rem;
  border-left: 1px solid #fff;
  color: #4dcee5;
  font-family: "Lexend", sans-serif;
  font-size: clamp(4rem, 3vw, 6.2rem);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .mv-page__item {
    height: min(50%, 29.5rem);
    width: min(65%, 73.5rem); /* お問い合わせ追記 */
  }
  .mv-page__item::before, .mv-page__item::after {
    width: 5rem;
    height: 5rem;
  }
  .mv-page__item::before {
    border-left-width: 1.5rem;
    border-top-width: 1.5rem;
  }
  .mv-page__item::after {
    border-right-width: 1.5rem;
    border-bottom-width: 1.5rem;
  }
  .mv-title {
    width: 90%;
    margin: 0 auto;
    padding: 3.5rem 0;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .mv-page__item {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    height: min(80%, 20.5rem);
    width: max(33rem, 75%);
  }
  .mv-title {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5rem 0;
  }
  .mv-title h2 {
    font-size: 3.2rem;
    text-align: center;
  }
  .mv-title h2 span {
    display: block;
    margin: 1.5rem 0 3rem;
    padding: 1rem 0 0;
    border-left: none;
    border-top: 1px solid #fff;
    font-size: 4rem;
    text-align: center;
  }
}
/* Page Title
----------------------------------------------------------------------------------------------------*/
.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10rem;
  background: linear-gradient(-90deg, rgba(0, 9, 23, 1) 0%, rgba(22, 65, 134, 1) 100%);
}
.page-title h3 {
  color: #FFF;
  font-size: clamp(2.8rem, 3vw, 4.2rem);
  font-weight: 700;
}
/* Page Container
----------------------------------------------------------------------------------------------------*/
.container {
  width: 100%;
}
.contents {
  width: min(90%, 151rem);
  margin: 0 auto;
  text-align: left;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* Section - Headline
----------------------------------------------------------------------------------------------------*/
.sec-headline {
  width: min(97%, 120rem);
  margin: 20rem auto 7rem;
}
.sec-headline__copy {
  margin-bottom: 8.5rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  text-align: left;
  line-height: 1.75;
}
.sec-headline__copy a {
  text-decoration: none;
}
.sec-headline__copy b {
  color: #ff3200;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .sec-headline {
    margin: 9rem auto 7rem;
  }
  .sec-headline__copy {
    margin: 0 auto 6rem;
  }
}
/* Form
----------------------------------------------------------------------------------------------------*/
form, input, textarea, select {
  color-scheme: light;
}
fieldset {
  border: none;
}
/* Section - Contact
----------------------------------------------------------------------------------------------------*/
.sec-form {
  width: min(97%, 120rem);
  padding-bottom: 20rem;
  margin: 0 auto;
}
.sec-form-footer {
  padding: 0;
  margin: 0 auto 7rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  text-align: center;
}
.sec-form-footer input[type="checkbox"] {
  transform: scale(1.8);
  margin-right: 0.6em;
}
.sec-form-footer p {
  text-align: left;
}
.alert-box {
  margin-bottom: 4rem;
  color: #FF3200;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 600;
}
.submit-box {
  margin-bottom: 4rem;
  font-size: clamp(1.6rem, 4vw, 2rem);
}
.sec-form__err {
  padding: 2rem;
  margin-bottom: 5rem;
  border: 1px solid #CCC;
  text-align: left;
}
.sec-form .label.warning {
  background-color: #ff6d00;
  padding: 0 0.8rem;
  margin-left: 0.5rem;
  border-radius: 1rem;
  color: #FFF;
  font-size: 1.4rem;
}
.sec-form input {
  width: 100%;
  padding: 1.9rem 4rem;
  background-color: #FFF;
  border: 1px solid #4dcee5;
  border-radius: 1.5rem;
  outline: none;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.sec-form input::placeholder {
  color: #999999;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.sec-form input[type='checkbox'] {
  width: auto;
}
.sec-form select {
  padding: 2.5rem 10rem 2.5rem 1.2rem;
  background-color: #FFF;
  border: 1px solid #4dcee5;
  border-radius: 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.sec-form textarea {
  width: 100%;
  padding: 1.9rem 4rem;
  background-color: #FFF;
  border: 1px solid #4dcee5;
  border-radius: 1.5rem;
  outline: none;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.sec-form textarea::placeholder {
  color: #999999;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.form-item__type input[type="checkbox"] {
  accent-color: #164186;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .sec-form {
    padding-bottom: 10rem;
  }
  .sec-form-footer {
    margin: 0 auto 4rem;
  }
  .sec-form input {
    padding: 1.2rem;
  }
  .sec-form textarea {
    padding: 1.2rem;
  }
}
/* Section - Table
----------------------------------------------------------------------------------------------------*/
.sec-form table {
  width: 100%;
  margin-bottom: 6rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.sec-form tr {
  display: flex;
  justify-content: space-between;
}
.sec-form th {
  width: calc(425 / 1200 * 100%);
  padding: 2rem 0;
  color: #164186;
  text-align: left;
  font-weight: 700;
  vertical-align: top;
}
.sec-form td {
  width: calc(775 / 1200 * 100%);
  margin-bottom: 4rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.sec-form.kakunin td {
  padding: 2rem 0;
  margin-bottom: 4rem;
}
.sec-form th label {
  padding-right: 0;
}
.sec-form th label.label-off {
  padding-right: 0;
}
.sec-form th .label {
  padding: 0.2rem 0.5rem;
  font-size: clamp(1rem, 4vw, 1.2rem);
}
.sec-form th small {
  font-size: clamp(1.4rem, 4vw, 2rem);
}
.sec-form tr:last-child th, .sec-form tr:last-child td {
  /*padding: 20px 0;*/
}
.form-item__type {
  display: flex;
  flex-wrap: wrap;
  width: 62rem;
}
.form-item__type .cell {
  display: block;
  width: 13rem;
}
.form-item__type .cell:nth-child(2) {
  width: 35rem;
}
.form-item__type .cell:nth-child(5) {
  width: 20rem;
}
.contact__txt p {
  line-height: 1;
}
.contact__txt span {
  font-size: clamp(1rem, 4vw, 1.4rem);
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .sec-form table {
    margin-bottom: 3rem;
  }
  .sec-form tr {
    display: flex;
    flex-direction: column;
  }
  .sec-form th {
    width: 100%;
    padding: 1.5rem 0 0.5rem;
    margin: 0;
  }
  .sec-form th label {
    padding-left: 0;
  }
  .sec-form td {
    width: 100%;
    padding: 0.6rem 0;
    margin-bottom: 0;
    border-top: none;
  }
  .form-item__type {
    flex-direction: column;
    width: 100%;
  }
  .form-item__type .cell {
    width: 100%;
  }
  .form-item__type .cell:nth-child(2) {
    width: 100%;
  }
  .form-item__type .cell:nth-child(5) {
    width: 100%;
  }
}
/* Section - Thanks Page
----------------------------------------------------------------------------------------------------*/
.sec-thanks {
  width: min(97%, 89rem);
  padding-bottom: 5rem;
  margin: 10rem auto;
}
.contact-body {
  width: min(100%, 89rem);
  padding: 0;
  margin: 10rem auto;
  font-size: 2rem;
}
.sec-form-header {
  margin-bottom: 3rem;
  text-align: center;
}
.sec-form-header__head {
  margin-bottom: 3rem;
  font-size: 4rem;
}
.sec-form-header__box {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 2rem;
  font-size: 2.4rem;
}
.sec-form-header__box span {
  font-family: "Noto Sans JP", sans-serif;
}
.sec-form-header__box small {
  font-size: 2rem;
}
.thanks__text p {
  margin-bottom: 2rem;
}
.telno__box {
  margin-bottom: 5rem;
}
/* Section - Button
----------------------------------------------------------------------------------------------------*/
.form-item__button {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
/* ボタン共通 */
.sec-link__btn button {
  display: block;
  min-width: 44rem;
  height: 10rem;
  padding: 0 2rem;
  border: none;
  border-radius: 1.6rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.sec-link__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44rem;
  height: 10rem;
  padding: 0 2rem;
  border: none;
  border-radius: 1.6rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.button-text {
  color: #fff;
}
/* 取り消す */
.form-item__button-reset {
  background: #999999;
}
/* 確認 */
.form-item__button-submit {
  background: #164186;
}
/* TABLET */
@media (max-width: 1023px) {
  .form-item__button {
    flex-direction: column;
    align-items: center;
  }
  /* 確認ボタンを上 */
  .sec-link__btn:nth-child(2) {
    order: 1;
  }
  /* 取り消すを下 */
  .resetbtn {
    order: 2;
  }
  .sec-link__btn button,
  .sec-link__btn a {
    width: 100%;
    height: 8rem;
    min-width: 33rem;
  }
}