body, html {
  scroll-behavior: smooth;
}

.cp-img-wrap + .cp-img-wrap {
  margin-top: 40px;
}

.sp-label-head {
  margin: 0 -2%;
  padding: 10px;
  background: linear-gradient(0, #eacd2e 0, #ffed32 50%, #eacd2e 100%);
  text-align: center;
  font-size: 32px;
  color: #FFFFFF;
  font-family: YuMincho, "Yu Mincho", serif;
}

@media screen and (max-width: 750px) {
  .case-title {
    margin: 20px 0;
    border-left: 8px solid #eacd2e;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .case-monitor-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    margin: 20px 0;
    border-left: 8px solid #eacd2e;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
#form-area {
  padding: 100px 0;
  background-color: #f9f6f1;
}
#form-area .content_wrap {
  max-width: 860px;
}
@media screen and (max-width: 767px) {
  #form-area {
    padding: 50px 0;
  }
}
#form-area h2 {
  text-align: center;
  font-size: 5rem;
  margin-bottom: 10%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #form-area h2 {
    font-size: 3rem;
  }
}
#form-area .copy {
  margin-top: 80px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #form-area .copy {
    font-size: 1.2rem;
  }
}

#form-area .form-wrap {
  margin-top: 65px;
  padding: 75px 50px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  #form-area .form-wrap {
    margin-top: 30px;
    padding: 35px 20px;
  }
}
#form-area .form-row-list > li {
  display: flex;
  padding: 48px 0;
}
@media screen and (max-width: 767px) {
  #form-area .form-row-list > li {
    flex-direction: column;
    padding: 20px 0;
  }
}
#form-area .form-row-list > li > * {
  padding: 0 5px;
}
#form-area .form-row-list > li > *.form-head {
  width: 35%;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  #form-area .form-row-list > li > *.form-head {
    width: 100%;
    margin-right: 0;
  }
}
#form-area .form-row-list > li > *.form-body {
  width: 65%;
}
@media screen and (max-width: 767px) {
  #form-area .form-row-list > li > *.form-body {
    width: 100%;
  }
}
#form-area .form-row-list > li + li {
  border-top: 1px solid #e6e6e6;
}
#form-area .form-row-list > li .form-head {
  font-size: 16px;
  font-weight: bold;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  #form-area .form-row-list > li .form-head {
    margin-bottom: 20px;
  }
}
#form-area .form-row-list > li .form-head .req {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 15px;
  font-size: 14px;
  background-color: #e50b0b;
  color: #FFFFFF;
  margin-left: 5px;
}
#form-area .form-row-list > li .form-body input, #form-area .form-row-list > li .form-body textarea {
  width: 100%;
  padding: 10px 5px;
  border: 2px solid #e6e6e6;
  border-radius: 5px;
  background-color: #f7f7f7;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Noto Sans JP", serif;
  color: #000000;
}
#form-area .form-row-list > li .form-body input[type=date] {
  width: 150px;
  color: #000000;
}
#form-area .form-row-list > li .form-body input[type=radio] {
  width: 16px;
  height: 16px;
}
#form-area .form-row-list > li .form-body select {
  padding: 10px 5px;
  border: 2px solid #e6e6e6;
  border-radius: 5px;
  background-color: #f7f7f7;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Noto Sans JP", serif;
  color: #000000;
}
#form-area .form-row-list > li .form-body select option:disabled {
  color: #c1c1c1;
}
#form-area .form-row-list > li .form-body textarea {
  height: 200px;
}
#form-area .form-row-list > li .form-body .radio-wrap {
  display: flex;
  flex-wrap: wrap;
}
#form-area .form-row-list > li .form-body .radio-wrap .radio-wrap-item {
  display: flex;
  align-items: center;
}
#form-area .form-row-list > li .form-body .radio-wrap .radio-wrap-item label {
  display: inline-block;
  margin-left: 5px;
  flex-shrink: 0;
}
#form-area .form-row-list > li .form-body .radio-wrap .radio-wrap-item + .radio-wrap-item {
  margin-left: 20px;
}
#form-area .form-row-list > li .form-body .radio-wrap._col {
  flex-direction: column;
  align-items: start;
}
#form-area .form-row-list > li .form-body .radio-wrap._col .radio-wrap-item {
  display: flex;
  align-items: baseline;
}
#form-area .form-row-list > li .form-body .radio-wrap._col .radio-wrap-item + .radio-wrap-item {
  margin-left: 0;
  margin-top: 20px;
}
#form-area .input-wrap .input-wrap-hdg {
  display: block;
  font-size: 18px;
}
#form-area .input-wrap + .input-wrap {
  margin-top: 20px;
}
#form-area .input-wrap._row2 {
  display: flex;
}
#form-area .input-wrap._row2 > * {
  width: calc((100% - 30px) / 2);
  min-width: 80px;
  max-width: 150px;
}
#form-area .input-wrap._row2 > * + * {
  margin-left: 15px;
}
#form-area .input-wrap._row3 {
  display: flex;
}
#form-area .input-wrap._row3 > * {
  width: calc((100% - 30px) / 3);
  min-width: 80px;
}
#form-area .input-wrap._row3 > * + * {
  margin-left: 15px;
}
#form-area .error_m {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  color: #e50b0b;
}
#form-area .form-submit-btn {
  margin-top: 50px;
  text-align: center;
}
#form-area .form-submit-btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 64px;
  background-color: #c39705;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
}
#form-area .form-submit-btn button:disabled {
  background-color: #787878;
}
#form-area .form-submit-btn button:hover {
  opacity: 0.7;
}

.form-note-wrap {
  margin-top: 10px;
  text-align: left;
}

.form-note {
  display: flex;
  font-size: 15px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .form-note {
    font-size: 13px;
  }
}
.form-note._red {
  color: #ff0000;
}
.form-note._st {
  font-weight: bold;
}
.form-note ._red {
  color: #ff0000;
}
.form-note a {
  text-decoration: underline;
}
.form-note + .form-note {
  margin-top: 5px;
}

.ui-widget {
  font-size: 1.5em !important;
}

.ui-datepicker {
  width: 18em !important;
}

#thanks-info {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #thanks-info {
    padding: 50px 0;
  }
}
#thanks-info .thanks-main {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #thanks-info .thanks-main {
    font-size: 26px;
  }
}
#thanks-info .thanks-note {
  margin-top: 40px;
  display: flex;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #thanks-info .thanks-note {
    font-size: 14px;
  }
}
#thanks-info .thank-link-wrap {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  #thanks-info .thank-link-wrap {
    margin-top: 60px;
  }
}
#thanks-info .thank-link {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  #thanks-info .thank-link {
    font-size: 16px;
  }
}
#thanks-info .thank-link:hover {
  opacity: 0.7;
}
#thanks-info .thank-link + .thank-link {
  margin-top: 20px;
}

.cp-img-wrap + .btn-link {
  margin-top: 40px;
}

.over-ray-back {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
.over-ray-back img {
  max-width: 100%;
}
.over-ray-back.active {
  display: block;
}

.js-modal-trigger:hover {
  opacity: 0.7;
}

.modal-img {
  height: 85vh;
  width: 80%;
  max-width: 1074px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-img-inner {
  height: 100%;
  overflow: auto;
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 40px;
    border: 2px solid #FFFFFF;
  }
}

/*# sourceMappingURL=adjust.css.map */
