@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.select2-container--default .select2-search--inline .select2-search__field {
  font-size: 16px;
  padding: 5px;
  height: 30px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #ffffff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-right: none;
}

.select2-container--default .select2-selection--multiple {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: textfield;
  background-color: #ffdfdf;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: inherit;
  background: #b1e6c0;
}

#estimate-footer.ok + .select2-container--default .select2-selection--multiple {
  background: #b1e6c0;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-results__option {
  font-size: 16px;
}

.serviceList2 .service-plus {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 20px;
}
.serviceList2 .service-plus span {
  font-size: 3rem;
}
.serviceList2 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.serviceList2 ul li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .serviceList2 ul li {
    width: calc(50% - 7px);
  }
}
.serviceList2 div.serviceList-wide,
.serviceList2 li {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .serviceList2 div.serviceList-wide,
  .serviceList2 li {
    line-height: 1.5;
  }
}
.serviceList2 div.serviceList-wide img,
.serviceList2 li img {
  display: block;
  margin-bottom: 10px;
  width: 12.5rem;
}
.serviceList2 div.serviceList-wide h3,
.serviceList2 li h3 {
  font-size: 2.5rem;
  color: #085bc2;
}
@media screen and (max-width: 767px) {
  .serviceList2 div.serviceList-wide h3,
  .serviceList2 li h3 {
    font-size: 3rem;
  }
}
.serviceList2 div.serviceList-wide h3 small,
.serviceList2 li h3 small {
  color: #777;
  font-weight: normal;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .serviceList2 div.serviceList-wide h3 small,
  .serviceList2 li h3 small {
    font-size: 1.8rem;
  }
}
.serviceList2 div.serviceList-wide p,
.serviceList2 li p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .serviceList2 div.serviceList-wide p,
  .serviceList2 li p {
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 768px) {
  .header-form-wrap {
    width: 280px;
    position: absolute;
    z-index: 100;
    right: 0;
    bottom: 0;
    background: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .header-form-wrap {
    display: none;
  }
}
.header-form-wrap .container {
  width: 100%;
  max-width: 100%;
}

.form .title {
  background-color: #eaeaea;
}
.form .title img {
  display: block;
}
.form .title.title-form-footer {
  padding: 10px;
}
.form .title.title-form-footer img {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.form small {
  color: #777 !important;
}
@media screen and (max-width: 767px) {
  .form {
    padding: 0px;
  }
}
.form.form-head {
  background-size: auto 100%;
}
@media screen and (min-width: 768px) {
  .form.form-head {
    padding: 30px 0;
  }
}
.form input,
.form select,
.form textarea {
  width: 100%;
  display: block;
  background: #ffdfdf;
  padding: 10px;
  font-size: 16px;
  border: none;
}
.form input.ok,
.form select.ok,
.form textarea.ok {
  background: #b1e6c0;
}
.form input.ok + .after .fa-chevron-down,
.form select.ok + .after .fa-chevron-down,
.form textarea.ok + .after .fa-chevron-down {
  display: none !important;
}
.form input.ok + .after .fa-check-circle,
.form select.ok + .after .fa-check-circle,
.form textarea.ok + .after .fa-check-circle {
  display: block !important;
}
.form textarea {
  height: 50px;
  border: 1px solid #777;
  background: #ffffff;
}
.form select {
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}
.form ::-ms-expand {
  /* select要素のデザインを無効にする（IE用） */
  display: none;
}
.form input[type=radio] {
  height: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.form input[type=radio] + label {
  cursor: pointer;
  position: relative;
  display: block;
  padding-left: 30px;
  padding-bottom: 5px;
}
.form input[type=radio] + label::before, .form input[type=radio] + label::after {
  position: absolute;
  top: 0;
  left: 0;
}
.form input[type=radio] + label::before {
  content: "○";
  color: #cdcdcd;
  font-size: 25px;
}
.form input[type=radio]:checked + label::after {
  content: "●";
  color: #e94c37;
  font-size: 16px;
  top: 0px;
  left: 4px;
}
.form .area-limited {
  display: block;
  margin: 0px auto 40px;
}
.form .box {
  border: 3px solid #e94c37 !important;
  border-radius: 10px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .form .box {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .form .box {
    box-sizing: border-box;
    width: 700px;
    max-width: 100%;
    padding: 40px 100px;
  }
  .form .box.header-form {
    width: 100%;
    padding: 0px 30px;
  }
}
.form .box h3 {
  color: #353535;
  margin-top: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
  position: relative;
}
.form .box h3:before {
  content: "・";
  position: absolute;
  left: -20px;
}
.form .box .req,
.form .box .any {
  margin-left: 5px;
  color: #e94c37;
  font-weight: bold;
  font-size: 13px;
}
.form .box .any {
  color: #777777;
}
.form .box .form-attention-box input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
}
.form .box .form-attention-box input[type=checkbox]:checked + label:before {
  content: "⚫︎";
  color: #e94c37;
}
.form .box .form-attention-box label {
  color: #353535;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-weight: bold;
}
.form .box .form-attention-box label:before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  border-radius: 100px;
  border: 2px solid #ccc;
  height: 18px;
  width: 18px;
  position: absolute;
  left: 0;
  top: 0;
}
.form .box .form-attention-box .form-attention {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #e94c37;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .form .box .form-attention-box .form-attention {
    font-size: 16px;
    margin: 0;
  }
}
.form .box strong {
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.form .box.box1 strong {
  font-weight: normal;
}
.form .box.box2 {
  border: 3px solid #e94c37;
}
.form .box.box2 strong {
  color: #e94c37;
  margin-bottom: 5px;
}
.form .box.box2 p {
  text-align: center;
  margin-bottom: 20px;
}
.form .box.box2 select {
  margin-bottom: 20px;
}
.form .box.box3 {
  border: 3px solid #e94c37;
  padding-top: 0;
}
.form .box.box3 strong {
  background: #e94c37;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  margin: 0 -20px 20px;
}
@media screen and (min-width: 768px) {
  .form .box.box3 strong {
    margin: 0 -100px 30px;
    padding: 10px;
  }
}
.form .box.box3 table {
  width: 100%;
}
.form .box.box3 table th,
.form .box.box3 table td {
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .form .box.box3 table th,
  .form .box.box3 table td {
    width: 100%;
    clear: both;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .form .box.box3 table th {
    width: 150px;
  }
}
.form .submitbutton {
  width: 300px;
  display: block;
  background: none;
  border: none;
  margin: 30px auto 0;
  max-width: 100%;
  background: url(../img/submit.png) no-repeat;
  background-size: contain;
  height: 80px;
  cursor: pointer;
}
.form .submitbutton:hover {
  opacity: 0.7;
}

.form#form-head-pc .title {
  padding: 10px;
}
.form#form-head-pc .title img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.form#form-head-pc .box {
  font-size: 14px;
  padding: 20px 30px 15px;
  border-radius: 0;
}
.form#form-head-pc .box .input-wrap .after {
  font-size: 16px !important;
  top: 0px !important;
  right: 0px !important;
}
.form#form-head-pc .box input,
.form#form-head-pc .box select {
  padding: 5px;
  font-size: 15px;
}
.form#form-head-pc .box h3 {
  font-size: 15px;
  margin: 5px 0 0;
}
.form#form-head-pc .box .form-attention {
  font-size: 15px;
}
.form#form-head-pc .box .form-attention-box {
  padding: 10px 0 0;
}
.form#form-head-pc .box .form-attention-box .form-attention {
  font-size: 15px;
}
.form#form-head-pc .submitbutton {
  margin-top: 10px;
  background-position: 50% 50%;
}

input[type=text] {
  ime-mode: active;
}

input[type=email] {
  ime-mode: inactive;
}

.error_message {
  display: block;
  color: #e94c37;
}
.error_message[aria-hidden=true] {
  display: none;
}

.input-wrap {
  position: relative;
}
.input-wrap .after {
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.input-wrap .after .fa-check-circle {
  display: none !important;
}
.input-wrap .after i {
  position: absolute;
  right: 10px;
  top: 5px;
}
.input-wrap.ok {
  background: #b1e6c0;
}
.input-wrap.ok + .after .fa-chevron-down {
  display: none !important;
}
.input-wrap.ok + .after .fa-check-circle {
  display: block !important;
}
.input-wrap.is_error input,
.input-wrap.is_error select {
  background: #ffdfdf !important;
}
.input-wrap.is_error input + .after .fa-check-circle,
.input-wrap.is_error select + .after .fa-check-circle {
  display: none !important;
}
.input-wrap.is_error input.ok + .after .fa-check-circle,
.input-wrap.is_error select.ok + .after .fa-check-circle {
  display: none !important;
}

.error_message {
  line-height: 120%;
  font-size: 13px;
}

.ba-fade-slider {
  position: relative;
  max-width: 100%;
  width: 660px;
  margin: 0px auto;
  padding: 0;
}
.ba-fade-slider .ba-viewport {
  position: relative;
  aspect-ratio: 21/7;
  background: #1f5cc9;
  border-radius: 18px;
  overflow: hidden;
  display: block;
}
.ba-fade-slider .ba-viewport .ba-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 26px 54px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.ba-fade-slider .ba-viewport .ba-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.ba-fade-slider .ba-viewport .ba-slide .ba-card {
  position: relative;
  margin: 0;
  border-radius: 22px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .ba-fade-slider .ba-viewport .ba-slide .ba-card {
    margin-bottom: 20px;
  }
}
.ba-fade-slider .ba-viewport .ba-slide .ba-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 14/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 22px;
}
@media screen and (max-width: 767px) {
  .ba-fade-slider .ba-viewport .ba-slide .ba-card img {
    aspect-ratio: 15/10;
  }
}
.ba-fade-slider .ba-viewport .ba-slide .ba-card .ba-pill {
  position: absolute;
  left: 50%;
  top: -20px;
  font-size: 18px;
  text-align: center;
  width: 145px;
  max-width: 80%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0px 5px;
  background: #fff;
  color: #1f5cc9;
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ba-fade-slider .ba-nav {
  padding: 0;
  position: absolute;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .ba-fade-slider .ba-nav {
    top: 50%;
  }
}
.ba-fade-slider .ba-nav.ba-prev {
  left: 0;
}
.ba-fade-slider .ba-nav.ba-next {
  right: 0;
}
.ba-fade-slider .ba-nav:hover {
  filter: brightness(0.95);
}
.ba-fade-slider .ba-dots {
  display: none;
}
@media (max-width: 880px) {
  .ba-fade-slider {
    padding: 20px 50px 0;
  }
  .ba-fade-slider .ba-viewport {
    aspect-ratio: 10/18;
  }
  .ba-fade-slider .ba-viewport .ba-slide {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 10px;
  }
}

.form-step-estimate-other {
  display: none;
}

.cta {
  margin: -40px 0 40px;
}
.cta.not-fv {
  margin: 40px 0 0px;
}
.cta .container {
  display: flex;
  justify-content: center;
}
.cta .container a {
  max-width: 80%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .cta .container a {
    width: 400px;
  }
}
.cta .container a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.cta .container a:after, .cta .container a:before {
  position: absolute;
  top: -200%;
  left: -150%;
  content: "";
  height: 500%;
  width: 70px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  transform: rotate(60deg);
  animation: 3s shine infinite linear;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  80% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}/*# sourceMappingURL=common.css.map */