@charset "utf-8";


/*============

purpose-bottom.css

=============*/
.mainttl{
  position: relative;
  height: 48rem;
  background-color: #edf4fb;
}

.usage-list_bottom{
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 25px;
  flex: 1;
  box-sizing: border-box;
  background-size: 100% auto;
}

.usage-list_bottom li{
  margin-bottom: 30px;
}

.usage-list_bottom li img{
  width: 100%;
  height: auto;
}

.usage-list_bottom h4{
  margin: 0 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  height: 4.0em;
  background-color: #003889;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.usage-list_bottom h4:before{
  content: '';
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  border: none;
  border-bottom: solid 25px transparent;
  border-left: solid 35px #13a7eb;
}

.usage-list_bottom li div{
  margin: 10px 0 0;
}

.usage-list_bottom li p{
  margin: 5px 0 0;
}

.usage-list_bottom h5 a,
.usage-list h5 span{
  display: inline-block;
  color: #003889;
  font-size: 1.8rem;
  font-weight: bold;
}

.usage-list_bottom a{
  padding-left: 1em;
  display: inline-block;
  position: relative;
  color: #003889;
}

.usage-list_bottom a::before{
  content: '';
  margin: 0 auto;
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #003889;
  border-right: 1px solid #003889;
  transform: rotate(45deg);
}

.usage-list_bottom a::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #003889;
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.usage-list_bottom a:hover::after{
  transform: scale(1, 1);
}

.second-ttl.usage-ttl{
  margin-bottom: 30px;
}

/*============

media queries

=============*/
/*-------------
PC
--------------*/
@media screen and (min-width: 960px){
  .usage-list_bottom{
    max-width: 1236px;
    width: 100%;
  }
}

/*-------------
タブレット
--------------*/
@media (max-width: 959px){
  .usage-list_bottom{
    margin: 0 2.4rem;
  }
}

/*-------------
スマホ
--------------*/
@media (max-width: 519px){
  .usage-list_bottom{
    margin: 0 2.4rem;
    grid-template-columns: repeat(1, 1fr);
    box-sizing: border-box;
  }

  .usage-list_bottom h4{
    font-size: 2.4rem;
  }

  .usage-list_bottom h5 a{
    font-size: 2.5rem;
  }

  .usage-list_bottom h5 a{
    font-size: 2.5rem;
  }

  .oneitem__info-text h5 span{
    font-size: 2.4rem;
  }

  .usage-list_bottom a::before{
    top: 0.65em;
  }
}
