@charset "UTF-8";
/* CSS Document */
/*main
----------------------------------------*/
#report.main_sub {
	margin: 0;
	padding: 7.3rem 2rem 2.1rem;
    background-color: var(--whitepink-color);
}
@media only screen and (max-width: 768px) {
	.main_sub_ttl {
        margin-bottom: 3.5rem;
    }
}
/*
----------------------------------------*/

.report {
	padding: 0 2rem 6.9rem;
}
section.report_area {
	max-width: 110rem;
    margin: 0 auto;
	padding: 0 2rem 11.8rem;
}
	
/*reportList
----------------------------------------*/
section#report-list {
	width: 95%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
#reportList {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0 2.6%;
	margin-top: 6rem;
	margin-bottom: 3rem;
}
.report-item {
	width: 31.6%;
	margin-bottom: 5rem;
}
.report-item img {
	width: 100%;
	height: 24.4rem;
	object-fit: cover;
	margin: 0 auto 1.5rem;
}
.report-item .report-info {
	margin: 0 auto 1.5rem;
}
.report-item h3 {
	font-size: 1.3rem;
	font-weight: 400;
	letter-spacing: .05em;
	border-bottom: 1px solid var(--dark-color);
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}
.report-item p.venue {
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: var(--main-color);
}
@media only screen and (max-width: 768px) {
	#reportList {
		justify-content: space-between;
        padding: 4rem 5% 1rem;
	}
	.report-item {
		width: 100%;
        margin-bottom: 5rem;
	}
}

/*pagination
----------------------------------------*/
#pagination {
	display: flex;
	justify-content: center;
	padding-bottom: 7rem;
}
.pagination-link {
	margin: 0 10px;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--main-color);
}
#pagination .active {
	border-bottom: 1px solid;
}
@media only screen and (max-width: 768px) {
	.pagination-link {
        font-size: 1.6rem;
	}
}
	
/*report-detail page*/
/*report_detail
----------------------------------------*/
section.report_inner {
	padding: 0 2rem 9rem;
    background-color: var(--whitepink-color);
}
section.report_inner > * {
	width: 95%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
section.report_inner img {
	margin-bottom: 4rem;
}
section.report_inner h1 {
	margin-bottom: 2rem;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .05em;
}
section.report_inner p.venue {
	text-align: center;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: .05em;
	color: var(--main-color);
}
@media only screen and (max-width: 768px) {
	section.report_inner {
		padding: 0 2rem 4rem;
	}
}
/*report_detail
----------------------------------------*/
section.img_modal {
    max-width: 110rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
	padding: 9.4rem 2rem 8.1rem;
}

.gallery-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /*justify-content: space-around;*/
}
.gallery-item {
	display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
}

.gallery-thumbnail {
    width: 25rem;
    height: 25rem;
    object-fit: cover; /* 画像を正方形にトリミング */
    cursor: pointer;
}

/* モーダルウィンドウ全体のスタイル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* モーダルウィンドウ内のコンテンツ */
.modal_inner {
	padding: 7.3rem 0 0;
}
.modal-content {
	position: relative;
	top: 0;
    left: 0;
    max-width: 77rem;
    margin: auto;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    /*max-height: 100%;*/
	max-height: 90vh;
}

.modal-caption {
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* モーダルウィンドウを閉じるボタン */
.modal-close {
    position: absolute;
	right: -5rem;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

@media only screen and (max-width: 768px) {
	section.img_modal {
		padding: 6.5rem 2rem 7rem;
		margin-bottom: 7rem;
	}
	.gallery-items {
		gap: 1rem;
	}
	.gallery-item {
		width: 16rem;
		height: 16rem;
	}
	.modal_inner {
		padding: 8em 0 0;
	}
	.modal-image {
		max-width: 90%;
		max-height: 90%;
		margin: auto;
	}
	.modal-close {
		position: absolute;
		top: -4rem;
        right: 2rem;
	}
	
}