@charset "UTF-8";
/* フォントインストール */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&display=swap");
/* ============================================ */
body {
  background: #f8f9fa;
}

.btn {
  display: flex;
  width: 100%;
  max-width: 370rem;
  height: 64rem;
  background-color: green;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 100px;
  font-weight: 500;
  font-size: 20rem;
  box-shadow: 0px 2px 7px 0px #ccc;
  border: white 3rem solid;
}

.btn:hover {
  background: #f39c12;
  color: white;
  transition: 0.3s;
}

.btn-main {
  background: #0075db;
}

.btn-main:hover {
  background: #f39c12;
}

.btn-sub {
  background: #f39c12;
}

.btn-sub:hover {
  background: #0075db;
}

.hd-common {
  margin-top: 120rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.hd-common span {
  display: block;
}

.hd-common .en {
  font-size: 48rem;
}

.hd-common .ja {
  font-size: 20rem;
  color: #0075db;
}

.hd-common::after {
  content: "";
  position: absolute;
  background: #0075db;
  width: 48rem;
  height: 3rem;
  left: 50%;
  bottom: -24rem;
  transform: translateX(-50%);
}

/* ヘッダー */
/* ============================================ */
#contact-form {
  padding-top: 100rem;
  padding-bottom: 200rem;
}

#contact-form dl {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
}

#contact-form dl dt {
  color: white;
  background: #a9885b;
  margin: 0;
  width: 50%;
  box-sizing: border-box;
  padding: 10px 0 7px;
  border-radius: 0;
  font-weight: 500;
  height: auto;
  box-sizing: border-box;
  border-bottom: solid 1px #ccc;
}

#contact-form dl dd {
  margin: 0;
  width: 50%;
  padding: 10px 0 7px;
  font-weight: 300;
  box-sizing: border-box;
  border-radius: 0;
  height: auto;
  box-sizing: border-box;
  background: white;
  border-bottom: solid 1px #ccc;
  align-items: center;
}

#contact-form .plan-list {
  margin-top: 8rem;
  padding: 16rem 32rem;
}

#contact-form .plan-list > li {
  line-height: 2;
}

#contact-form .flow {
  width: 80%;
  margin: 0rem auto;
  margin-bottom: 100rem;
}

#contact-form .guid {
  font-size: 15rem;
  text-align: center;
  color: #26272c;
  margin-top: 80rem;
  margin-bottom: 64rem;
  font-weight: 500;
}

#contact-form .guid span {
  font-size: 18rem;
  color: red;
  font-weight: 500;
}

#contact-form .Form {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50rem;
  width: 100%;
}

#contact-form .Form table {
  margin: 0 auto;
}

#contact-form .Form table tbody tr {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#contact-form .Form table tbody tr th {
  display: block;
  padding-bottom: 10rem;
  width: 100%;
  font-size: 16rem;
}

#contact-form .Form table tbody tr th .Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  width: 10px;
  display: inline-block;
  text-align: center;
  color: red;
  font-size: 14px;
}

#contact-form .Form table tbody tr td {
  display: block;
  padding-bottom: 30rem;
  width: 100%;
}

#contact-form .Form table tbody tr td input {
  width: 100%;
  border: 1px solid #cccccc;
  height: 40rem;
  padding-left: 1em;
  padding-right: 1em;
  background: white;
  border-radius: 5rem;
}

#contact-form .Form table tbody tr td textarea {
  width: 100%;
  border: 1px solid #cccccc;
  height: 240rem;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1em;
  background: white;
  border-radius: 5rem;
}

#contact-form .Form table tbody tr td .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
}

#contact-form .Form table tbody tr td .wpcf7-radio .wpcf7-list-item input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 2px solid #3f51b5;
  border-radius: 50%;
  display: block;
  justify-content: center;
  align-items: center;
}

#contact-form .Form table tbody tr td .wpcf7-radio .wpcf7-list-item input[type="select"] {
  color: red;
}

#contact-form .Form table tbody tr td .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked:after {
  content: "";
  width: 70%;
  height: 70%;
  background-color: #3f51b5;
  border-radius: 50%;
}

#contact-form .Form table tbody tr td .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  margin-left: 16rem;
}

#contact-form .Form table tbody tr td .wpcf7-select {
  display: block;
  background: white;
  width: 100%;
  border: 1px solid #cccccc;
  height: 40rem;
  padding-left: 1em;
  padding-right: 1em;
}

#contact-form .Form-Btn input {
  display: flex;
  text-align: center;
  width: 100%;
  max-width: 370rem;
  height: 64rem;
  background-color: #0075db;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 100px;
  font-weight: 500;
  font-size: 20rem;
  box-shadow: 0px 2px 7px 0px #ccc;
  border: white 3rem solid;
  margin: 40rem auto 0;
}

#contact-form .Form-Btn input:hover {
  background: #f39c12;
  color: white;
  transition: 0.3s;
}

#contact-form .caution {
  text-align: center;
  font-size: 15rem;
  margin-top: 70rem;
  margin-bottom: 50rem;
}

#contact-form .caution a {
  color: blue;
  text-decoration: underline;
}

@media screen and (max-width: 1080px) {
  #contact-form dl dt {
    width: 100%;
  }
  #contact-form dl dd {
    width: 100%;
  }
}
