@charset "UTF-8";
/* var */
/* color*/
/* media query(break point) */
/* animation */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* フォーム
----------------------------------------------- */
.contact__note {
  border: 2px solid transparent;
  margin-bottom: 1.5rem;
}

.contact__notelist {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  line-height: 1.8;
}

.contact__notelist a {
  font-weight: 600;
  margin: 0 0.3rem;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact__notelist a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.contact__notelist .em {
  font-weight: 600;
}

.contact__notelist .large {
  font-size: 1.3em;
}

.contact__note .tac {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact__notelist {
    padding: 1rem;
  }
}

/* 物件情報 */
.roominfo {
  border: 1px solid #cecece;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.roominfo__img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 25%;
}

.roominfo__text {
  background-color: #fff;
  color: #656565;
  padding: 2rem 1rem;
  padding-left: 3rem;
  width: 75%;
}

.roominfo__text-title {
  color: #041025;
  display: block;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.roominfo__text-title:hover {
  opacity: 0.7;
  text-decoration: none;
}

.roominfo__text-detail {
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .roominfo {
    margin-bottom: 1.5rem;
  }
  .roominfo__img {
    width: 30%;
  }
  .roominfo__text {
    padding: 1rem;
    width: 70%;
  }
  .roominfo__text-title {
    font-size: 13px;
    margin-bottom: 0.3rem;
  }
  .roominfo__text-detail {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* ラジオボタン */
.radio input[type="radio"] {
  display: none;
}

.radio label:not(:last-child) {
  margin-right: 1.5rem;
}

.radio label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  line-height: 2;
  padding-left: 28px;
}

.radio label::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.radio input[type="radio"]:checked + label {
  color: #30af41;
}

.radio input[type="radio"]:checked + label::after {
  -webkit-animation: radio 0.2s forwards;
  animation: radio 0.2s forwards;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 2px;
  border: 0 #fff solid;
}

@-webkit-keyframes radio {
  0% {
    background-color: #fff;
  }
  15% {
    border-width: 6px;
  }
  70% {
    border-width: 0;
    opacity: 0.7;
  }
  100% {
    background-color: #30af41;
    border-width: 3px;
  }
}

@keyframes radio {
  0% {
    background-color: #fff;
  }
  15% {
    border-width: 6px;
  }
  70% {
    border-width: 0;
    opacity: 0.7;
  }
  100% {
    background-color: #30af41;
    border-width: 3px;
  }
}

@media screen and (max-width: 767px) {
  .radio label {
    display: block;
    padding-left: 24px;
    padding-top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .radio label:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }
  .radio label::before {
    width: 20px;
    height: 20px;
  }
  .radio input[type="radio"]:checked + label::after {
    width: 16px;
    height: 16px;
  }
}

/* checkbox */
.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox input[type="checkbox"] + label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkbox input[type="checkbox"] + label::before {
  background: #fff;
  border: 1px solid #CDD6DD;
  border-radius: 0.3rem;
  content: '';
  display: inline-block;
  height: 30px;
  width: 30px;
  margin-top: -0.25em;
  margin-right: 0.5em;
  vertical-align: middle;
}

.checkbox input[type="checkbox"] + label::after {
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}

.checkbox input[type="checkbox"]:checked + label {
  color: #30af41;
}

.checkbox input[type="checkbox"]:checked + label::after {
  border-bottom: 3px solid #b5b5b5;
  border-left: 3px solid #b5b5b5;
  content: '';
  display: block;
  height: 0.6rem;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 1rem;
  top: 5px;
  left: 6px;
}

@media screen and (max-width: 767px) {
  .checkbox input[type="checkbox"] + label::before {
    height: 24px;
    width: 24px;
  }
}

.formtable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5em;
  margin-right: -10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
      align-items: start;
}

.formtable__title, .formtable__data {
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 3px 0;
}

.formtable__title p, .formtable__data p {
  font-weight: 600;
}

.formtable__title {
  background-color: #fff;
  border-color: #ccc;
  color: #808486;
  padding: 1rem;
  position: relative;
  text-align: left;
  width: 20%;
}

.formtable__data {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #6A6871;
  min-height: 52px;
  padding: 0 10px 0 0.8em;
  width: 80%;
}

.formtable__data p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.formtable.confirm .formtable__data {
  line-height: 3rem;
}

.formtable__data .dash {
  margin: 0 0.5rem;
}

.formtable textarea,
.formtable input[type="text"],
.formtable input[type="date"] {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  padding: 1rem;
  width: 100%;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.formtable textarea:focus,
.formtable input[type="text"]:focus,
.formtable input[type="date"]:focus {
  background-color: #fff;
  color: #656565;
}

.formtable input {
  width: 100%;
  vertical-align: super;
}

.formtable input[type="radio"] {
  width: auto;
}

.formtable .required::after {
  background-color: #30af41;
  color: #fff;
  content: "必須";
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.8;
  margin-left: 1em;
  padding: 0 0.6rem;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-legend {
  display: block;
  padding: 0.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.spacefill {
  padding-top: 1rem;
}

.form-submit {
  text-align: center;
}

.form-submit__btn {
  background-color: #ED436A;
  border-radius: 3rem;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 2rem auto 3rem;
  padding: 2rem;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  width: 30rem;
}

.form-submit__btn:hover {
  opacity: 0.8;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.checkbox input[type="checkbox"] + label {
  width: 33%;
}

.confirmtext {
  line-height: 1.6;
  text-align: center;
}

.confirmtext a {
  color: #30af41;
  text-decoration: underline;
}

.confirmtext a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .formtable {
    margin-bottom: 0;
    margin-right: 0;
  }
  .formtable textarea {
    height: 120px;
  }
  .formtable__title,
  .formtable__data {
    font-size: 1rem;
    width: 100%;
  }
  .formtable__title {
    background-color: #EEF4ED;
    border-color: #EEF4ED;
    color: #30af41;
    padding: 0.3rem 1rem;
  }
  .formtable__data {
    padding: 0;
    padding-bottom: 0.5rem;
  }
  .form-legend {
    margin-bottom: 0.5rem;
  }
  .formtable input[type="text"] {
    padding: 0.5rem;
    font-size: 14px;
  }
  .formtable .formtable__data {
    min-height: unset;
  }
  .formtable.confirm .formtable__data {
    line-height: 1.8;
    padding-left: 0.5rem;
  }
  .form-submit__btn {
    font-size: 16px;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    width: auto;
  }
  .spacefill {
    padding-top: 0;
  }
  .checkbox input[type="checkbox"] + label {
    width: 100%;
  }
}

.alert-panel {
  background-color: #EFF5FA;
  color: #0078DD;
  padding: 2rem;
  margin-bottom: 2rem;
}

.alert-panel.error {
  background-color: #FFF4F8;
  color: #D30049;
}

.alert-panel__text {
  line-height: 1.8;
}

.alert-panel__text-em {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .alert-panel {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .alert-panel__text {
    font-size: 12px;
  }
  .alert-panel__text-em {
    font-size: 16px;
  }
}

/* 完了画面 */
.completetext {
  background-color: #fff;
  padding: 5rem 0 7rem;
  text-align: center;
}

.completetext__title {
  color: #30af41;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 4rem;
}

.completetext__add {
  font-weight: 600;
  margin-bottom: 3rem;
}

.completetext__text {
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .completetext {
    padding: 2.5rem 0;
  }
  .completetext__title {
    font-size: 18px;
    margin-bottom: 2rem;
  }
  .completetext__add {
    margin-bottom: 2rem;
  }
}
/*# sourceMappingURL=contact.css.map */