@charset "UTF-8";
/* CSS Document */

/*------------------------------------------------
 sub.css
------------------------------------------------*/
h1{
  background: linear-gradient(90deg, #24a4c5, #6ecfe7); /* 左から右へのグラデーション */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
  font-weight: 800;
  font-size: 1.0rem;
  max-width: max-content;
}
h1 small {
  display: block;
  font-weight: 600;
  font-size: 0.3rem;
  margin-left: 5px;
  margin-top: 15px;
  max-width: max-content;
}
h2 {
  display: block;
  background-color: #358195;
  border-radius: 6px;
  font-size: 0.24rem;
  line-height: 1.4;
  color: #fff;
  padding: 12px 19px 12px;
  margin: 120px 0 35px
}
h3 {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 0.24rem;
  padding-left: 17px;
  margin-top: 65px;
  margin-bottom: 35px;
}
h3::before {
  content: "";
  position: absolute;
  background-color: var(--site_deco01);
  left: 0;
  border-radius: 50px;
  top: -3px;
  width: 7px;
  height: 40px;
}
main{
  margin-bottom: 0;
}


/*------------------------------------------------
 下層トップ
------------------------------------------------*/
.sub_top{
  border-bottom: 1px solid var(--site_color);
  padding: 65px 0 110px;
  margin-bottom: 15px;
}


/*------------------------------------------------
 お問い合わせ
------------------------------------------------*/
.contact_button_list{
  display: grid;
  list-style: none;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  max-width: max-content;
  gap: 45px;
  margin: 45px auto 0;
}
.contact_button_list .type01,
.contact_button_list .type02 {
  position: relative;
  display: block;
  text-align: center;
  border-radius: 1000px;
  color: #fff;
  padding: 15px;
  margin-bottom: 10px;
}
.contact_button_list .type01{
  background-color: var(--site_deco01);
}
.contact_button_list .type02{
  background-color: var(--site_color);
}
.contact_button_list p{
  display: block;
  text-align: center;
  line-height: 24px;
}
.contact_button_list p:empty{
  display: none;
}


/*------------------------------------------------
------------------------------------------------*/



/*------------------------------------------------
 レスポンシブ　　　max-width:1199px
------------------------------------------------*/
@media screen and (max-width:1199px) {

}

/*------------------------------------------------
 レスポンシブ　　　max-width:991px
------------------------------------------------*/
@media screen and (max-width:991px) {
}

/*------------------------------------------------
 レスポンシブ　　　max-width:767px
------------------------------------------------*/
@media screen and (max-width:767px) {
  h1 {
    font-size: 0.65rem;
  }
  h1 small {
    font-size: 0.26rem;
    margin-top: 10px;
  }
  h2 {
    font-size: 0.21rem;
    margin: 90px 0 25px;
  }
  h3 {
    font-size: 0.21rem;
    margin-top: 65px;
    margin-bottom: 25px;
  }
  h3::before {
    top: 1px;
    height: 30px;
  }
  .sub_top {
    padding: 45px 0 70px;
  }
  .contact_button_list {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:480px
------------------------------------------------*/
@media screen and (max-width:480px) {
  h1 {
    font-size: 0.5rem;
  }
  h1 small {
    font-size: 0.22rem;
  }
}
