@charset "UTF-8";

section.page_title {
    padding: 130px 0 80px;
    text-align: center;
    border-bottom: 1px solid #333;
	background-image: url("../img/report/cover_report.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.page_title_inner h2 {
    font-size: 4rem;
    font-family: "Libre Caslon Display", serif;
}

.page_title_inner h2 span {
    display: block;
    margin-top: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
}

.page_title_inner h2 span:before {
    display: block;
    content: "";
    width: 50px;
    height: 0.5px;
    background: #fff;
    margin: 0 auto 20px;
}

section.contents_wrapper {
    padding: 100px 0;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.report_list {
    display: flex;
    width: 94%;
    margin: 0 auto 50px;
    max-width: 2000px;
    flex-wrap: wrap;
}

.report_list a {
    width: 31%;
    display: block;
    color: #fff;
    justify-content: space-between;
    margin: 0 1.1% 2%;
}

.report_image {
    width: 100%;
    background: #333;
	position: relative;
}

.report_image:before {
    border-top: 0.5px solid #fff;
    border-left: 0.5px solid #fff;
    position: absolute;
    display: block;
    content: "";
    width: 70px;
    height: 70px;
    left: 0;
    top: 0;
    transition: all 1s ease-in-out 0s;
}

.report_image:after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    display: block;
    content: "";
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 0;
    transition: all 1s ease-in-out 0s;
}

.report_list a:hover .report_image:before,
.report_list a:hover .report_image:after {
    width: 100%;
    height: 100%;
}


.report_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 40/21;
    object-fit: cover;
}

.report_info {
    width: 100%;
    padding: 6%;
}

.report_date {
    font-family: "Libre Caslon Display", serif;
    font-size: 1.4rem;
    padding: 2px 10px;
    background: #333;
    width: max-content;
    margin-bottom: 10px;
}

h3.report_title {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 26px;
}

a.more_link {
    display: block;
    width: 94%;
	max-width: 400px;
    padding: 12px 30px;
    border: 0.5px solid #fff;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-weight: 300;
	position: relative;
    transition: all 0.5s ease-in-out 0s;
}

.more_link:after {
    display: block;
    content: "";
    position: absolute;
    width: 24px;
    height: 0.5px;
    background: #fff;
    right: 0;
    top: 50%;
    transition: all 0.5s ease-in-out 0s;
}

.more_link:hover:after {
    width: 0;
}

.more_link:hover {
    background: #fff;
    color: #101010;
}
/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

.page_title_inner h2 {
    font-size: 2.8rem;
}

.page_title_inner h2 span {
    font-size: 1.5rem;
}

section.page_title {
    padding: 100px 0 50px;
}
	
section.contents_wrapper {
    padding: 40px 0;
}

.report_list {
    margin: 0 auto;
    width: 90%;
}

.report_list a {
    width: 100%;
    margin: 0 0 4%;
}

.report_info {
    padding: 20px 4%;
}

}