@charset "UTF-8";

/*関連記事*/
.reco{
	max-width:1200px;
	margin:2em auto;
}
.reco_title{
    color: var(--maincolor);
    border-bottom: 2px solid var(--maincolor);
}
.reco_title.animation{
    animation: show-to-right 2s forwards;
}
.reco_list{
    margin: 3em auto;
    --gap:2em;
    --listitem-length:3;
    width: 80%;
    flex-wrap: wrap;
    justify-content: center;
}
.reco_list_item{
    opacity: 0;
    position: relative;
}
.reco_list.animation .reco_list_item{
    animation: slide-up 1s forwards;
}
.reco_list_item figure{
    padding: 0;
    width: 100%;
    background: #fff;
    margin-bottom:0;
    overflow:hidden;
    text-align:center;
}
.reco_list_item img{
    height: 100%;
    object-fit: cover;
}
.reco_list_item h3{
  position: absolute;
  height: 100%;
  width: 100%;
  padding:0 1em;
  background: rgba(255,255,255,0.9);
  color: var(--maincolor);
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 130%;
}
.reco_list_item a:hover img{
  opacity: 1;
	scale:1.1;
}

.reco_list_item a:hover h3{
  background: rgba(255,255,255,0.9);
  opacity: 1;
}
