@charset "utf-8";

/**********************************************/
/*研究概要*/
/**********************************************/

p {
    text-align:justify;
}

/*見出し*/
.page-headline {
    line-height: 100%;
}
.page-headline h2 {
    margin: 0 0 60px;
    position: relative;
}
.page-headline h2::before {
    position: absolute;
    border-bottom: 2px solid #039393;
    top: 100%;
    left: 50px;    
    transform: translateX(-50%);
    width: 100px;
    content: '';
    padding-bottom: 20px;
}


/*研究概要一覧*/
.menulists {
    display: flex;
    flex-wrap: wrap;
}

.menulist {
    width: calc((100% / 3) - 30px);
    margin: 0 15px 30px;
    padding: 0;
    list-style-type: none;
    /* background-color: #f9f9f9; */
    background-color: #fff;
    border: 1px #ddd solid;
}
.menulist .menulist-img {
    height: 180px;
    overflow: hidden;
}
.menulist .menulist-img img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    /*object-fit: cover;*/
    object-fit: contain;
}
.menulist .menulist-img img.full {
    object-fit: cover;
    padding: 0px;
}

.menulist .menulist-txt {
    text-align: center;
    font-weight: bold;
    /*14-18*/
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    padding: 10px 0;
    background-color: #f9f9f9;
}

.menulist a {
    display: block;
    color: #000;
	overflow: hidden;
    text-decoration: none;
}
.menulist a img {
	transition-duration: 0.3s;
}
.menulist a:hover img {
	transform: scale(1.1);
	transition-duration: 0.5s;
	opacity: 0.8;
}









/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1480px) {
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {

}

@media screen and (max-width: 780px) {

    .menulist {
        width: calc((100% / 2) - 30px);
        margin: 0 15px 30px;
    }

}

@media screen and (max-width: 580px) {
    .menulist .menulist-img {
        height: 130px;
    }
    .menulist .menulist-txt {
        padding: 10px 0;
    }

}

@media screen and (max-width: 380px) {
    .menulist {
        width: calc((100% / 2) - 20px);
        margin: 0 10px 20px;
    }
    .menulist .menulist-img {
        height: 100px;
    }
    .menulist .menulist-txt {
        padding: 5px 0;
    }
}


