@charset "utf=8";

.fadeInd {
    transform: translate3d(0, 50px, 0);
    transition: 2s;
    opacity: 0;
  }
  .fadeInd.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  
/* 見出し */
.news-top{
    padding-top: 8em;
}
.news-top h1{
    width: 6em;
    display: block;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 4em;
    padding-bottom: 0.5em;
    border-bottom: 3px solid #000;
    margin: 0 auto 1.5em;
    position: relative;
}
.news-top h1::before {
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 8em;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    content: 'NEWS';
    z-index: -1;
}

.news-main{
    width: 90%;
    margin: 10em auto 20em;
}
.news-main ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5em;
}
.news-main ul .content{
    background-color: #fff;
    border-radius: 30px;
}
.img-hidden img{
    aspect-ratio: 1.5/1;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.content{
    transition: 0.3s;
}
.news-contents{
    margin: 4em auto;
    width: 80%;
    line-height: 2em;
}
.news-main ul li a .new{
    background-color: #fcd701;
    border-radius: 5px;
    color: #fff;
    padding: 2px 2em;
    margin: 0 2em;
}
.news-main ul li a .osirase{
    background-color: #f84d4e;
    border-radius: 5px;
    color: #fff;
    padding: 2px 2em;
    margin: 0 2em;
}
.news-main ul li a .event{
    background-color: #38bfff;
    border-radius: 5px;
    color: #fff;
    padding: 2px 2em;
    margin: 0 2em;
}
.news-contents p{
    margin-top: 2em;
    font-weight: bold;
}
.content:hover{
    scale: 1.1;
}
.content:hover p{
    font-weight: bold;
}