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

/*------------------------------------------------
 index.css
------------------------------------------------*/
section{
  margin-bottom: 90px;
}

/* 見出し */
h2 {
  display: block;
  background-color: var(--site_color);
  border-radius: 6px;
  font-size: 0.25rem;
  font-weight: 500;
  color: #fff;
  padding: 11px 15px 13px;
  margin-bottom: 35px;
}
h3{
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 0.2rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 13px;
  margin: 35px 0 13px;
}
h3::before{
  content: "";
  position: absolute;
  background-color: var(--site_color);
  width: 100px;
  height: 2px;
  left: 0;
  bottom: -2px;
}



/*------------------------------------------------
 index01
------------------------------------------------*/
.index01{
  background-color: var(--site_color_mid);
}
.index01 img{
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/*------------------------------------------------
 index02
------------------------------------------------*/
.index02 p{
  margin-bottom: 35px;
}
.index02_bubble_list{
  display: grid;
  list-style: none;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  margin-bottom: 55px;
}
.index02_bubble_list b{
  position: relative;
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 0.21rem;
  padding-bottom: 10px;
  margin: 0 auto 15px;
}
.index02_bubble_list b::before{
  content: "";
  position: absolute;
  background-color: var(--site_color);
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  width: 45px;
  height: 2px;
}
.index02_bubble_list img{
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
  border-radius: 6px;
  width: 100%;
}
.index02_bubble_list article {
  position: relative;
  text-align: center;
  line-height: 1.6;
  color: #fff;
  padding: 10px 15px 10px;
  margin: 10px auto 0;
  z-index: 10;
}
.index02_bubble_list article::after{
  content: "";
  position: absolute;
  background-color: var(--font_color);
  border-radius: 1000px;
  inset: 0;
  z-index: -10;
}
.index02_bubble_list article::before {
  content: "";
  position: absolute;
  aspect-ratio: 8/9;
  background: url(../img/index/bubble_arrow.svg) no-repeat;
  background-position: center;
  background-size: contain;
  left: 35px;
  top: -30px;
  width: 40px;
  z-index: -20;
}


/*------------------------------------------------
 index07
------------------------------------------------*/
.form_button{
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: max-content;
  transition: transform .2s ease;
  margin: 0 auto 35px;
}
.form_button:hover{
  transform: translateY(-5px) !important;
}


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

/*------------------------------------------------
 レスポンシブ　　　max-width:991px
------------------------------------------------*/
@media screen and (max-width:991px) {
  .index02_bubble_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 5%;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:767px
------------------------------------------------*/
@media screen and (max-width:767px) {
  section {
    margin-bottom: 65px;
  }
  h2 {
    font-size: 0.23rem;
    padding: 8px 11px 10px;
    margin-bottom: 35px;
  }
  h3 {
    font-size: 0.18rem;
    padding-bottom: 10px;
    margin: 25px 0 10px;
  }
  .index02_bubble_list {
    grid-template-columns: 1fr;
  }
}

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