@charset "UTF-8";
/*-----------------
  問い合わせフォーム
-----------------*/
input:focus {
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}

.contact-form {
  width: 100%;
  margin-bottom: 60px;
  font-size: 1.6rem;
}
.contact-form p {
  line-height: 1.75;
}
.contact-form .form-wrap {
  width: 100%;
  margin-bottom: 20px;
  padding: 0 1rem;
}
.contact-form .form-wrap .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #E6E6E6;
}
.contact-form .form-wrap .container > label {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 0 0 5px 0;
  margin-bottom: 0.5rem;
}
.contact-form .form-wrap .container > input {
  height: 3.5rem;
  padding: 5px 10px;
  border: solid 1px #CCCCCC;
  margin-bottom: 0.5em;
}
.contact-form .form-wrap .container input[type=email], .contact-form .form-wrap .container input[type=tel] {
  height: 3.5rem;
  padding: 5px 10px;
  border: solid 1px #CCCCCC;
  margin-bottom: 0.5em;
}
.contact-form .form-wrap .container select {
  height: 3.5rem;
  padding: 5px 10px;
  border: solid 1px #CCCCCC;
  margin-bottom: 0.5rem;
}
.contact-form .form-wrap .container > input[type=radio] {
  margin: 0 10px;
}
.contact-form .form-wrap .container .search {
  display: flex;
  width: 100%;
}
.contact-form .form-wrap .container .search input {
  width: 45%;
  padding: 5px 10px;
  border: solid 1px #CCCCCC;
}
.contact-form .form-wrap .container .search button {
  flex: 0 0 110px;
}
.contact-form .form-wrap .container .textarea-wrap {
  width: 100%;
  padding: 10px 0;
}
.contact-form .form-wrap .container .textarea-wrap textarea {
  width: 100%;
  padding: 10px;
  border: solid 1px #CCCCCC;
}
.contact-form .form-wrap .container .parts {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.contact-form .form-wrap .container .parts p {
  display: flex;
  margin-bottom: 0;
}
.contact-form .form-wrap .container .parts p input {
  display: flex;
  flex: 0 0 1.5rem;
  height: 1.5rem;
  margin: 5px;
}
.contact-form .form-wrap .container .parts p input label {
  display: inline-block;
  width: auto;
  padding: 5px 0;
}
.contact-form .form-wrap .container:last-of-type {
  border-bottom: none;
}
.contact-form .submit-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact-form .submit-wrap .submit-btn {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.contact-form .submit-wrap .submit-btn .show {
  display: inline-block;
}
.contact-form .submit-wrap .submit-btn .loading {
  -webkit-animation: spin 1.5s linear infinite;
  display: none;
  width: 1.2em;
  height: 1.2em;
  animation: spin 1.5s linear infinite;
}
.contact-form .submit-wrap .submit-btn .loading img {
  width: 100%;
}

.contact-dl {
  padding-top: 0.5rem;
  border-bottom: 1px solid #d5d4dc;
  display: flex;
  flex-wrap: wrap;
}
.contact-dl dt {
  width: 25%;
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  float: left;
  border-top: 1px solid #d5d4dc;
  border-left: 1px solid #d5d4dc;
  background-color: #f0f0f3;
}
.contact-dl dd {
  width: 75%;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.5rem 1rem;
  border-top: 1px solid #d5d4dc;
  border-right: 1px solid #d5d4dc;
  border-left: 1px solid #d5d4dc;
}

/* 必須 */
.req {
  margin-left: 1em;
  padding: 1px 10px;
  background-color: #C01616;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

/* 送信ボタン */
.button, .button-sm {
  box-sizing: border-box;
  padding: 10px 60px;
  border: none;
  background-color: #416d9e;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
}
.button:disabled, .button-sm:disabled {
  background-color: #7ca0c9;
}
.button a:link, .button a:visited, .button a:active, .button a:hover, .button-sm a:link, .button-sm a:visited, .button-sm a:active, .button-sm a:hover {
  color: white;
}

.button-sm {
  font-size: 1.2rem;
  padding: 10px;
  margin-left: 10px;
  margin-bottom: 8px;
}

.policy-box a {
  color: #00008b;
  text-decoration: underline;
}
.policy-box input[type=checkbox] {
  transform: scale(1.2);
}

@media (max-width: 769px) {
  .contact-form p {
    font-size: 1.2rem;
  }
  .contact-form .form-wrap {
    padding: 0;
  }
  .contact-form .form-wrap .container {
    padding: 0;
  }
  .contact-form .form-wrap .container input {
    width: 100%;
  }
  .button {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .contact-dl dd, .contact-dl dt {
    width: 100%;
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.margin-bottom0 {
  margin-bottom: 0px !important;
}

.margin-top0 {
  margin-top: 0px !important;
}

.margin-left0 {
  margin-left: 0px !important;
}

.margin-right0 {
  margin-right: 0px !important;
}

.margin-bottom5 {
  margin-bottom: 5px !important;
}

.margin-top5 {
  margin-top: 5px !important;
}

.margin-left5 {
  margin-left: 5px !important;
}

.margin-right5 {
  margin-right: 5px !important;
}

.margin-bottom10 {
  margin-bottom: 10px !important;
}

.margin-top10 {
  margin-top: 10px !important;
}

.margin-left10 {
  margin-left: 10px !important;
}

.margin-right10 {
  margin-right: 10px !important;
}

.margin-bottom15 {
  margin-bottom: 15px !important;
}

.margin-top15 {
  margin-top: 15px !important;
}

.margin-left15 {
  margin-left: 15px !important;
}

.margin-right15 {
  margin-right: 15px !important;
}

.margin-bottom20 {
  margin-bottom: 20px !important;
}

.margin-top20 {
  margin-top: 20px !important;
}

.margin-left20 {
  margin-left: 20px !important;
}

.margin-right20 {
  margin-right: 20px !important;
}

.margin-bottom25 {
  margin-bottom: 25px !important;
}

.margin-top25 {
  margin-top: 25px !important;
}

.margin-left25 {
  margin-left: 25px !important;
}

.margin-right25 {
  margin-right: 25px !important;
}

.margin-bottom30 {
  margin-bottom: 30px !important;
}

.margin-top30 {
  margin-top: 30px !important;
}

.margin-left30 {
  margin-left: 30px !important;
}

.margin-right30 {
  margin-right: 30px !important;
}

.margin-bottom35 {
  margin-bottom: 35px !important;
}

.margin-top35 {
  margin-top: 35px !important;
}

.margin-left35 {
  margin-left: 35px !important;
}

.margin-right35 {
  margin-right: 35px !important;
}

.margin-bottom40 {
  margin-bottom: 40px !important;
}

.margin-top40 {
  margin-top: 40px !important;
}

.margin-left40 {
  margin-left: 40px !important;
}

.margin-right40 {
  margin-right: 40px !important;
}

.margin-bottom45 {
  margin-bottom: 45px !important;
}

.margin-top45 {
  margin-top: 45px !important;
}

.margin-left45 {
  margin-left: 45px !important;
}

.margin-right45 {
  margin-right: 45px !important;
}

.margin-bottom50 {
  margin-bottom: 50px !important;
}

.margin-top50 {
  margin-top: 50px !important;
}

.margin-left50 {
  margin-left: 50px !important;
}

.margin-right50 {
  margin-right: 50px !important;
}

.margin-bottom55 {
  margin-bottom: 55px !important;
}

.margin-top55 {
  margin-top: 55px !important;
}

.margin-left55 {
  margin-left: 55px !important;
}

.margin-right55 {
  margin-right: 55px !important;
}

.margin-bottom60 {
  margin-bottom: 60px !important;
}

.margin-top60 {
  margin-top: 60px !important;
}

.margin-left60 {
  margin-left: 60px !important;
}

.margin-right60 {
  margin-right: 60px !important;
}

.padding-left0 {
  padding-left: 0px !important;
}

.padding-left30 {
  padding-left: 30px !important;
}

.padding-left60 {
  padding-left: 60px !important;
}

.padding-left90 {
  padding-left: 90px !important;
}

.padding-left120 {
  padding-left: 120px !important;
}

.padding-left150 {
  padding-left: 150px !important;
}

.font-size50 {
  font-size: 0.5rem !important;
}

.font-size60 {
  font-size: 0.6rem !important;
}

.font-size70 {
  font-size: 0.7rem !important;
}

.font-size80 {
  font-size: 0.8rem !important;
}

.font-size90 {
  font-size: 0.9rem !important;
}

.font-size100 {
  font-size: 1rem !important;
}

.font-size110 {
  font-size: 1.1rem !important;
}

.font-size120 {
  font-size: 1.2rem !important;
}

.font-size130 {
  font-size: 1.3rem !important;
}

.font-size140 {
  font-size: 1.4rem !important;
}

.font-size150 {
  font-size: 1.5rem !important;
}

.font-bold {
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.text-shadow {
  filter: drop-shadow();
}

.text-left, .td-left {
  text-align: left;
}

.text-right, .td-right {
  text-align: right;
}

.text-center, .td-center {
  text-align: center;
}

.text-red {
  color: #C01616;
}
