@charset "UTF-8";
/* CSS Document */

/*
	お問い合わせ
-----------------------------------------------------------------------------------------------*/
.kvheader {
  background: url(../images/contact_top_pc.png) no-repeat center center / cover;
}

.document-list img {
  margin-top: 10px;
}

.document-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}

.checkbox-all {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.checkbox-all label {
  margin-left: 5px;
  margin-bottom: 2px;
  font-weight: 700;
}

.document-checkbox {
  width: 20px;
  height: 20px;
  z-index: 999;
}

.document-table th {
  position: relative;
  vertical-align: middle !important;
  padding: 15px !important;
}

.document-table label {
  z-index: 999;
}

.document-table th:before{
  content: "";
  width: 1px;
  height: 100%;
  background: white;
  display: block;
  position: absolute;
  top: 0;
  left: 55px;
}

.downloadBtn {
  display: block;
  line-height: inherit !important;
  height: inherit !important;
  padding: 12px;
  margin-top: 60px !important;
  color: #fff !important;
  background-color: #37a0dc !important;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.downloadBtn:hover {
  background-color: rgba(20, 90, 165, 1) !important;
  opacity: 1 !important;
}

.contactAreaIn {
  text-align: justify;
  width: 800px;
  margin: 0 auto;
  padding: 100px 0 120px 0;
}

.contactAreaIn ol {
  margin: 0 0 60px 0;
}
.contactAreaIn li {
  list-style: decimal;
  margin: 0 0 20px 2em;
}
.contactAreaIn li:last-child {
  margin: 0 0 0 2em;
}
.contactAreaIn .privacy h3 {
  font-weight: bold;
  font-size: 1.6rem;
  border-bottom: 1px solid #cdd7d7;
  padding: 0 0 10px 0;
  margin: 0 0 15px 0;
}
.contactAreaIn .txtFormInfo p {
  font-size: 1.4rem;
  margin: 0 0 20px 0;
}

/*お問い合わせフォーム*/

.contactAreaIn .tblBase {
  margin: 0 0 30px 0;
}
.contactAreaIn .tblBase:last-of-type {
  margin: 0 0 60px 0;
}
.contactAreaIn .tblBase tbody {
  border: 1px solid #cdd7d7;
}
.contactAreaIn .tblBase th,
.contactAreaIn .tblBase td {
  line-height: 160%;
}
.contactAreaIn .tblBase th {
  vertical-align: top;
  width: 300px;
  padding: 15px 25px;
}
.contactAreaIn .tblBase td {
  padding: 15px 25px;
}

.contactAreaIn .groupLine:nth-child(2n) {
  padding: 5px 0;
}

.contactAreaIn .tblBase input {
  padding: 5px;
  line-height: 160%;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
}
.contactAreaIn .tblBase textarea {
  width: 100%;
  padding: 5px;
  line-height: 160%;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
}

.contactAreaIn .tblBase .ittM {
  width: 400px;
}
.contactAreaIn .tblBase .smalltxt {
  display: block;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 160%;
  text-indent: -1em;
  padding: 5px 0 0 1em;
}

.form-field {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 0 0 40px 0;
}
input[type='checkbox'],
input[type='checkbox'] + label {
  cursor: pointer;
  z-index: 999;
}

/*確認ボタン*/
.contactButton .clrGray,
.contactButton .clrSBlue {
  width: 280px;
  margin: 0;
}
.contactButton .clrGray {
  background-color: #9faeba;
  margin: 0 30px 0 0;
}
.contactButton .clrGray:hover {
  background-color: #698093;
}
.contactButton button.clrGray::after {
  left: 25px;
  transform: translateY(-50%) rotate(-135deg);
}
.contactButton button.clrGray:hover::after {
  left: 15px;
}

.contactButton .clrNavy {
  background-color: #0f3b80;
}
.contactButton .clrNavy:hover {
  background-color: #0d284b;
}
.contactButton button.clrNavy::after {
  left: 25px;
  transform: translateY(-50%) rotate(-135deg);
}
.contactButton button.clrNavy:hover::after {
  left: 15px;
}

/*送信完了*/
#finishWrapper {
  text-align: center;
  margin: 0 0 80px 0;
}
#finishWrapper h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #37a0dc;
  margin: 0 0 50px 0;
}
#finishWrapper .txt span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#finishWrapper .txt {
  font-size: 1.6rem;
}

/*お問い合わせ窓口*/
.contactAreaIn .contactBox {
  margin: 20px 0 30px 0;
}

/* disabled */
.itemOut input[type='checkbox']:disabled + label,
.itemOut input[type='radio']:disabled + label {
  color: var(--clrLine);
  cursor: default;
}
.itemOut input[type='checkbox']:disabled + label::before,
.itemOut input[type='radio']:disabled + label::before {
  background-color: var(--clrLine);
  border-color: #fff;
}
.itemOut input[type='checkbox']:disabled + label::after,
.itemOut input[type='radio']:disabled + label::after {
  display: none;
}

/* error */
form .error input,
form .error textarea {
  background-color: rgba(229, 72, 72, 0.1);
  border: 1px solid #ea545d !important;
}
form .txtError {
  color: #ea545d;
  font-size: 1.4rem;
  margin: 8px 0 5px 5px;
}

@media screen and (max-width: 812px) {
  .document-title {
    font-size: 14px;
  }
  .downloadBtn {
    padding: 8px;
    margin: 20px auto !important;
  }
  .contactAreaIn {
    font-size: 1.4rem;
    width: 100%;
    max-width: 500px;
    padding: 40px 25px 60px 25px;
  }

  .contactAreaIn ol {
    margin: 0 0 40px 0;
  }
  .contactAreaIn li {
    margin: 0 0 20px 2em;
  }
  .contactAreaIn li:last-child {
    margin: 0 0 0 2em;
  }
  .contactAreaIn .privacy h3 {
    font-size: 1.6rem;
  }
  .contactAreaIn .txtFormInfo p {
    font-size: 1.4rem;
    margin: 0 0 20px 0;
  }

  /*お問い合わせフォーム*/

  .contactAreaIn .tblBase {
    margin: 0 0 20px 0;
  }
  .contactAreaIn .tblBase:last-of-type {
    margin: 0 0 40px 0;
  }

  .contactAreaIn .tblBase th {
    width: 100%;
    padding: 10px;
  }
  .contactAreaIn .tblBase td {
    padding: 10px;
  }

  .contactAreaIn .groupLine:nth-child(1n) {
    padding: 5px 0 0 5px;
  }
  .contactAreaIn .groupLine:nth-child(2n) {
    padding: 5px;
  }
  .contactAreaIn .groupLine:nth-child(3n) {
    padding: 0 0 5px 5px;
  }
  .contactAreaIn .tblBase input {
    padding: 5px;
    line-height: 160%;
    border-radius: 3px;
  }
  .contactAreaIn .tblBase textarea {
    width: 100%;
    padding: 5px;
    line-height: 160%;
    border-radius: 3px;
  }
  .contactAreaIn .tblBase .ittM {
    width: 100%;
  }
  .contactAreaIn .tblBase .smalltxt {
    font-size: 1.4rem;
    line-height: 160%;
    text-indent: -1em;
    padding: 5px 0 0 1em;
  }
  .form-field {
    padding: 0 0 20px 0;
  }

  /*確認ボタン*/
  .contactButton .clrGray,
  .contactButton .clrSBlue {
    width: calc((100% - 20px) / 2);
  }
  .contactButton button.clrGray,
  .contactButton button.clrSBlue {
    font-size: 1.4rem;
    line-height: 140%;
  }
  .contactButton .clrGray {
    background-color: #9faeba;
    margin: 0 20px 0 0;
  }
  .contactButton .clrGray:hover {
    background-color: #698093;
  }
  .contactButton button.clrGray::after {
    left: 10px;
  }

  /*お問い合わせ窓口*/
  .contactAreaIn .contactBox {
    margin: 15px 0 30px 0;
  }

  /*送信完了*/
  #finishWrapper {
    margin: 0 0 40px 0;
  }
  #finishWrapper h2 {
    font-size: 2.4rem;
    margin: 0 0 30px 0;
  }
  #finishWrapper .txt span {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 140%;
  }
  #finishWrapper .txt {
    font-size: 1.4rem;
  }
}
