@charset "UTF-8";


* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}


/*==================================
基本設定
=====================================*/

body {
  background-color: #fff;
}

.tit_area {
  position: relative;
  width: 100%;
  height: 320px;
  background-image: url("/tes000/img/back_Illust02.jpg");
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.tit_inner {
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #fff;
  padding: 12px 0 0 0;
  border-radius: 0 160px 0 0;
  width: 100%;
}

.tit_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6% 30px;
  border-bottom: 2px solid #e2e2e2;
  width: 93%;
  margin: 0 auto;
}

.page_tit {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 1.4px;
  margin-right: 3%;
  white-space: nowrap;
  margin-bottom: 22px;
}

.tit_small {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px;
  letter-spacing: 1.4px;
  display: inline-block;
  color: var(--c_key2);
}

.page_desc {
  font-size: clamp(14px, 1.3815vw, 17px);
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.page_desc a {
  color: var(--c_key1);
}


.sub_btn,
.basic_btn {
  margin: 20px auto 5px;
  width: 48%;
  max-width: 500px;
  min-width: 300px;
  text-align: center;
  font-size: 18px;
  display: block;
  border-radius: 50px;
  transition: all 0.3s ease-out;
  position: relative;
}

.sub_btn {
  border: #333 1px solid;
  background-color: #fff;
}

.basic_btn {
  background-color: var(--c_key1);
}

.basic_btn::after,
.sub_btn::after {
  width: 21px;
  display: inline-block;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.basic_btn::after {
  content: url("/common/img/right_arr02.svg");
}

.sub_btn::after {
  content: url("/common/img/right_arr.svg");

}

.sub_btn:hover,
.basic_btn:hover {
  transform: scale(1.05);
  opacity: 0.7;
}

.sub_btn a,
.basic_btn a {
  display: block;
  width: 100%;
  padding: 20px 2%;
  font-weight: 500;
  text-decoration: none;
  font-size: 23px;
  letter-spacing: 1.1px;
}

.sub_btn a {
  color: #333;
}

.basic_btn a {
  color: #fff;
}

.sub_btn span,
.basic_btn span {
  font-size: 16px;
  font-weight: 500;
}

.sub_btn span {
  color: #f76c1c;

}

.basic_btn span {
  color: var(--c_base4);
}


/*==================================
contact
=====================================*/
.contact h2 {
  /* position: absolute;
  left: 20%;
  top: 57%;
  transform: translateY(-50%); */
  color: #fff;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  line-height: 0.6;
  letter-spacing: 2px;
  z-index: 1;
}

.contact h2 span {
  font-size: 16px;
}

.contact_flex {
  max-width: 1000px;
  height: 100%;
  padding: 80px 3%;
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact .inner {
  width: 100%;
  height: 700px;
  border-radius: 5px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.wave {
  opacity: 0.4;
  position: absolute;
  bottom: -450px;
  left: 13%;
  background: #ff4900;
  width: 1100px;
  height: 980px;
  margin-left: -400px;
  margin-top: -400px;
  transform-origin: 50% 48%;
  border-radius: 43%;
  animation: drift 20000ms infinite linear;
}

.wave.-three {
  animation: drift 10000ms infinite linear;
}

.wave.-two {
  animation: drift 11000ms infinite linear;
  opacity: 0.1;
  background: yellow;
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

.contact_btn_area {
  width: 70%;
  z-index: 1;
}

.contact_btn_area li {
  background-color: #fff9ecbd;
  padding: 30px 3%;
  text-align: center;
  margin: 40px auto;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.contact_btn_area h3 {
  font-size: 19px;
  font-weight: bold;
  color: #4f4f4f;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact_btn_area li a {
  background-color: #f76c1c;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 2%;
  margin: 0 2%;
  border-radius: 8px;
  display: inline-block;
  width: 42%;
  letter-spacing: 1.2px;
}

.contact_btn_area a:hover {
  opacity: 0.7;
}


@media screen and (max-width: 1279px) {


  /*==================================
基本設定
=====================================*/
  .tit_area {
    height: 280px;
  }

  .tit_flex {
    width: 88%;
    padding: 10px 32px 20px 10px;
  }

  .page_tit {
    font-size: 34px;

  }

  .basic_btn a,
  .sub_btn a {
    font-size: 21px;
  }


}


@media screen and (max-width: 768px) {

  /*==================================
基本設定
=====================================*/
  .tit_inner {
    border-radius: 0 90px 0 0;
  }

  .tit_area {
    height: 320px;
  }

  .page_tit {
    font-size: 34px;
  }

  .tit_flex {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 0 30px;
  }

  .basic_btn,
  .sub_btn {
    width: 90%;
  }

  .basic_btn a,
  .sub_btn a {
    font-size: 20px;
  }

  /*==================================
contact
=====================================*/

  .contact .inner {
    height: 830px;
  }

  .contact h2 {
    width: 100%;
  }

  .contact_btn_area {
    width: 92%;
    margin: 0 auto;
  }

  .contact_btn_area h3 {
    font-size: 16px;
  }

  .contact_btn_area li a {
    width: 60%;
    margin: 10px auto;
    min-width: 320px;
  }

  .wave {
    bottom: -250px;
  }

}


@media screen and (max-width: 480px) {

  /*==================================
基本設定
=====================================*/
  .tit_area {
    height: 320px;

  }

  .tit_inner {
    border-radius: 0 50px 0 0;
  }

  .tit_small {
    font-size: 15px;
  }

  .page_tit {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .page_desc {
    font-size: clamp(13px, 1.0715vw, 14px);
  }

  .basic_btn,
  .sub_btn {
    width: 100%;
    min-width: unset;
  }

  .basic_btn a,
  .sub_btn a {
    padding: 16px 2%;
    font-size: 16px;
  }


  /*==================================
contact
=====================================*/
  .contact_btn_area li a {
    min-width: auto;
    width: 90%;
  }




}