@charset "UTF-8";

.btn-container {
  max-width: 660px;
  margin: 50px auto 0;
  border: 2px solid #7FDDB2;
  padding: 20px 30px;
}

.btn-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 4%;
  margin-top: 20px;
  width: 100%;
  max-width: 540px;
}

.btn-list .btn-item {
  position: relative;
  width: 48%;
}

.btn-list .btn-item a,
.btn-list .btn-item label {
  background-color: #31B96F;
  box-shadow: 0px 4px 0px 0px #d9d9d9;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 8px 24px 8px 0px;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  line-height: inherit;
  position: relative;
}

.btn-list .btn-item a,
.btn-list .btn-item label {
  background-color: #31B96F;
  box-shadow: 0px 4px 0px 0px #d9d9d9;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 8px 8px 8px 0px;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  line-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-list .btn-item a span,
.btn-list .btn-item label span {
  position: relative;
  top: -1px;
}

.btn-list .btn-item.mail a {
  text-decoration: none;
  color: #fff;
}

.btn-list .btn-item.tel label:hover {
  transition: 0.5s ease 0s;
  -webkit-transition: 0.5s ease 0s;
  opacity: .6;
}

.btn-list .btn-item span.img {
  position: relative;
  top: -2px;
  margin-right: 10px;
  display: inline-block;
}
.btn-list .btn-item.tel span.img {
  width: 16px;
}
.btn-list .btn-item.mail span.img {
  width: 28px;
}

.btn-list .btn-item:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 8px;
  width: 8px;
  height: 40px;
  right: 8px;
  width: 10px;
  height: 48px;
  background-image: url(/aircon/cleaning/common/images/caret-right-solid.svg);
  background-repeat: no-repeat;
  background-position: right 0em center;
  background-size: 100%;
}

.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  color: #000;
  align-self: center;
  width: 100%;
  max-width: 800px;
  padding: 40px 30px 40px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0px 5%;
}

.modal_content p {
  padding-top: 0;
}

.close_button {
  position: absolute;
  top: -23px;
  right: -22px;
  /* font-size: 33px; */
  /* line-height: 40px; */
  width: 44px;
  height: 45px;
  cursor: pointer;
  /* border-radius: 50%; */
  /* padding: 5px; */
  /* text-align: center; */
  /* background-color: #000; */
  background: url(/aircon/cleaning/common/images/close-btn.png)no-repeat center;
  background-size: 100%;
  margin-bottom: 0;
  /* color: #FFF; */
}

.modal_wrap input:checked~.modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked~.modal_overlay .modal_content {
  transform: translateY(-20px);
}

.open_button {
  /* color: #4f96f6;
  background-color: #eeeeee;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-top: 40px;
  margin-bottom: 1px;
  padding: 12px 2px;
  max-width: 300px; */
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  margin-bottom: 0;
}

.open-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  /*下に動く*/

}

/*アイコンを表示*/
.open-button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  padding-left: 8px;
}

/*ラベルホバー時*/
.open-button:hover {
  color: #FFFFFF;
  background-color: #4f96f6;
  transition: .6s;
}

.modal_title2 {
  font-size: 1.5em;
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.modal_title2::before,
.modal_title2::after {
  content: "";
  position: absolute;
  bottom: 0;
}



/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
  #point+#form .btn-container {
    margin-top: 5rem;
}
  .modal_content {
    width: 90%;
    max-width: 450px;
    padding: 20px 15px 20px;


  }

  .close_button {
    top: -18px;
    right: -15px;
    /* font-size: 22px; */
    width: 36px;
    height: 37px;
    margin-bottom: 0;
    /* line-height: 32px; */
  }

  .btn-list .btn-item,
  .btn-list .btn-item {
    width: 48%;
  }

  .btn-list .btn-item:after {
    right: 6px;
    width: 6px;
    height: 40px;
    top: 1px;
  }
  .btn-list .btn-item.tel label,
  .btn-list .btn-item.mail a {
    font-size: min(3.6vw, 16px);
    height: 44px;
  }
  .btn-list .btn-item span.img {
    margin-right: 6px;
  }

  .btn-list .btn-item.tel span.img {
    width: 12px;
  }
  .btn-list .btn-item.mail span.img {
    width: 21px;
  }
  .btn-list .btn-item span.img {
    position: relative;
    top: -2px;
    margin-right: 10px;
    display: inline-block;
  }
}