@charset "UTF-8";
@media only screen and (max-width: 991px) {
  .ContentBox {
    margin-top: 120px;
  }
}
.ContentBox--title {
  background-color: #00689d;
  font-size: 1.4rem;
  color: white;
  display: inline-block;
  letter-spacing: 0.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  border-radius: 30px 30px 30px 0;
}
@media only screen and (max-width: 991px) {
  .ContentBox--title {
    padding: 15px 80px 15px 20px;
  }
}
.ContentBox--entitle {
  color: #00689d;
  font-family: "Poppins", serif;
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
}
@media only screen and (max-width: 991px) {
  .ContentBox--entitle {
    font-size: 4rem;
  }
}
.ContentBox__contact {
  margin-bottom: 50px;
}
.ContentBox__contact--title {
  font-size: 4rem;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .ContentBox__contact--title {
    font-size: 3rem;
    margin-top: 40px;
  }
}
.ContentBox__contact--subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 20px 0 40px 0;
  line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  .ContentBox__contact--subtitle {
    font-size: 1.8rem;
  }
}
.ContentBox__contact--text {
  font-size: 1.8rem;
  font-weight: 500;
}

.privacypolicy-text {
  margin-top: -100px;
  padding-top: 100px;
}
.privacypolicy-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
.privacypolicy-text__text {
  margin: 30px auto;
}
.privacypolicy-text__box {
  overflow: scroll;
  height: 200px;
  border: 1px solid;
  padding: 40px;
  border-radius: 5px;
  overflow-x: hidden;
  /* スクロールバー全体（背景を透明にし、幅を狭める） */
}
@media only screen and (max-width: 991px) {
  .privacypolicy-text__box {
    padding: 20px;
  }
}
.privacypolicy-text__box::-webkit-scrollbar {
  width: 16px;
}
.privacypolicy-text__box::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 9px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  background-clip: padding-box;
  min-height: 10px;
}
.privacypolicy-text__box::-webkit-scrollbar-track {
  margin-top: 4px;
  margin-bottom: 4px;
}

input[type=checkbox] {
  display: block;
}
@media only screen and (max-width: 991px) {
  input[type=checkbox] {
    display: inline-block;
  }
}

input[type=checkbox]:before {
  position: absolute;
  content: "";
  left: -5px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid black;
  border-radius: 5px;
}
input[type=checkbox]:hover {
  cursor: pointer;
}
input[type=checkbox]:checked:before {
  border: 1px solid #00689d;
  background: #00689d;
}

input[type=submit], .wpcf7c-btn-back {
  border: 1px solid black;
  color: black;
  width: 40%;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  padding: 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: black;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 991px) {
  input[type=submit], .wpcf7c-btn-back {
    width: 90%;
  }
}
input[type=submit]:hover, .wpcf7c-btn-back:hover {
  background: black;
  color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

div.wpcf7-mail-sent-ng, div.wpcf7-aborted, div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border: none;
  color: red;
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
}

span.wpcf7-not-valid-tip {
  font-weight: 600;
  margin-top: 10px;
}

form .required-text {
  background-color: #00689d;
  color: white;
  padding: 2px 15px;
  border-radius: 5px;
  margin-right: 5px;
}
form label {
  margin-bottom: 50px;
  display: block;
}
@media only screen and (max-width: 991px) {
  form label {
    margin-bottom: 20px;
  }
}
form .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media only screen and (max-width: 991px) {
  form .flex {
    display: block;
  }
}
form .flex label {
  width: 48%;
}
@media only screen and (max-width: 991px) {
  form .flex label {
    width: 100%;
  }
}
form input[type=text], form input[type=password], form input[type=number], form input[type=tel], form input[type=email] {
  border-radius: 5px;
  border-color: black;
  margin: 10px 0 0;
  height: 70px;
  padding: 20px;
  background-color: white;
}
@media only screen and (max-width: 991px) {
  form input[type=text], form input[type=password], form input[type=number], form input[type=tel], form input[type=email] {
    height: auto;
    padding: 10px;
    font-size: 1.6rem;
  }
}
form textarea {
  border-radius: 5px;
  border-color: black;
  margin: 10px 0 0;
  padding: 20px;
  font-size: 1.6rem;
  border: 1px solid !important;
}

.wpcf7c-conf {
  background-color: white;
  border: none;
}

.checkprivacybox {
  text-align: center;
  margin: 50px auto 50px;
}
.checkprivacybox .privacypolicycheck span {
  font-size: 1.8rem;
  font-weight: 600;
}
.checkprivacybox p {
  margin-top: 10px;
}

.comptitle {
  margin-bottom: 20px;
}

.complete-btn {
  border: 1px solid;
  border-radius: 20px;
  display: block;
  text-align: center;
  width: 20%;
  padding: 10px;
  margin: 50px auto;
  color: black;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 991px) {
  .complete-btn {
    width: 90%;
  }
}
.complete-btn:hover {
  background: black;
  color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}