@charset "UTF-8";

.mainVisual-2 {
  background-image: url(../images/contact/mv_contact.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mainVisual-2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(50, 50, 50, .3);
}

.contact__read {
  max-width: 1160px;
  margin: 100px auto 0;
  text-align: center;
}

.contact__form {
  border: 1px solid #323232;
  margin: 100px auto 55px;
  max-width: 1160px;
}

.contact__item {
  display: flex;
  border-bottom: 1px solid #323232;
}

.contact__item:last-of-type {
  border-bottom: unset;
}

.contact__label {
  width: 20%;
  border-right: 1px solid #323232;
  padding: 20px;
  background: #F2FAFC;
}

.contact__label p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact__label span {
  background: #3F83D1;
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 5px;
  color: #fff;
}

.contact__contents {
  width: 80%;
  padding: 20px;
  display: block;
}

.contact__contents div {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

textarea {
  width: 100%;
  height: 7em;
  font-size: 1.6rem;
  padding: 5px;
  border: 1px solid #323232;
  border-radius: 5px;
}

label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

label::before,
label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}

label::after {
  background-color: #3F83D1;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 7px
}

input:checked+label::after {
  opacity: 1;
}

input[type=text] {
  width: 100%;
  border: 1px solid #323232;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 5px;
}

.Form-Btn {
  margin-bottom: 100px;
}

@media screen and (max-width:769px) {
  .contact__read {
    margin: 75px 2.6% 0;
    text-align: center;
  }
  .contact__form {
    margin: 75px 2.6% 45px;
  }
  .contact__item {
    display: block;
    border-bottom: 1px solid #323232;
}
.contact__label {
  width: 100%;
  border-right: unset;
  padding: 10px;
  background: #fff;
}
.contact__contents {
  width: 100%;
  padding: 10px;
}
.contact__label p {
  justify-content: start;
}
}

/*==========================
お問い合わせ完了画面
==========================*/

.contact__txt {
  max-width: 1160px;
  margin: 100px auto;
  text-align: center;
}
.contact__txt p {
  margin-bottom: 20px;
}
.contact__txt .subtitle {
  font-size: 24px;
  font-weight: bold;
  font-family: "Sawarabi Mincho", serif;
  color: #3f83d1;
}
.contact__txt .btnBlue {
  margin-top: 50px;
}

@media screen and (max-width:769px) {
  .contact__txt {
    margin: 75px 2.6%;
    text-align: center;
  }
  .contact__txt p {
    margin-bottom: 15px;
  }
  .contact__txt .subtitle {
    font-size: 22px;
  }
}