/* CSS Document */

.top-catch { 
	padding-top: 5rem;
}

#news-list h2 { margin-bottom: 1.6rem;}

.NewsLists-wrap {
	display: flex;
	flex-wrap: wrap;
	gap:0;
	align-items: stretch;
	max-width: 1440px;
	margin: 0 auto 3rem;
}

.NewsLists-wrap .News-box {
	width: calc(100%/3);
	box-sizing: border-box;
	outline: 1px solid #323232;
	background: white;
	position: relative;
    z-index: 1;
	display: flex;
	flex-direction: column;
}
.NewsLists-wrap .News-box.monmitsu { background: #d7e6f5; }

.NewsLists-wrap .News-thum {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.NewsLists-wrap .News-thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.NewsLists-wrap .News-thum:hover img {
    transform: scale(1.1);
}


.NewsLists-wrap .News-txt {
    padding: 2rem;
    font-weight: bold;
    background-image: linear-gradient(315deg, #d7e6f5 30px, transparent 0);

    flex: 1; 
    display: flex;
    flex-direction: column;
}

.NewsLists-wrap .date-cate {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	font-size: 1.4rem;
}
.NewsLists-wrap .date-cate a { font-size: 1.8rem;}
.NewsLists-wrap .News-title a {
	display: -webkit-box;             
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	text-decoration: none;
}
@media screen and (max-width: 1110px){
	.NewsLists-wrap .News-box { width: calc(100%/2);}
}
@media screen and (max-width: 720px){
	.NewsLists-wrap .News-box { 
		width: 100%;
		padding: 2rem 6%;
		outline: none;
	}
	.NewsLists-wrap .date-cate { 
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	.NewsLists-wrap .News-txt { 
		padding: 1.6rem 0;
		background-image: none;
	}

}

#Expo {
	position: relative;
	margin: 10rem 0;
	background-color: #f6e9d4;
	padding: 4rem 0;
}
#Expo::before {
	content: "";
	display: block;
	width: 100%;
	height: calc(100vw / 18);
	background: url("../include/img/top/common_bg_top.jpg") repeat-x top center / calc(100vw*0.35);
	position: absolute;
	top: calc(100vw / -18);
	left: 0;
	z-index: -1;
}
#Expo::after {
	content: "";
	display: block;
	width: 100%;
	height: calc(100vw / 18);
	background: url("../include/img/top/common_bg_bottom.jpg") repeat-x bottom center / calc(100vw*0.3);
	position: absolute;
	bottom: calc(100vw / -18);
	left: 0;
	z-index: -1;
}

/*@media screen and (max-width: 1100px){
	#Expo::before,
	#Expo::after { background-size: cover;}
}*/

@media screen and (max-width: 720px){
	#Expo { 
		margin: 7rem 0;
		padding: 1rem 0;
	}
	#Expo::before,
	#Expo::after { height: 7rem; background-size: contain;}
	#Expo::before { top: -7rem;}
	#Expo::after { bottom: -7rem;}
}


#History {
	position: relative;
	margin: 10rem 0;
	background-color: #f6e9d4;
	padding: 1rem 0;
}
#History::before {
	content: "";
	display: block;
	width: 100%;
	height: calc(100vw / 18);
	background: url("../include/img/top/common_bg_top.jpg") repeat-x top center / calc(100vw*0.3);
	position: absolute;
	top: calc(100vw / -18);
	left: 0;
	z-index: -1;
}
#History::after {
	content: "";
	display: block;
	width: 100%;
	height: calc(100vw / 18);
	background: url("../include/img/top/common_bg_bottom.jpg") repeat-x bottom center / calc(100vw*0.3);
	position: absolute;
	bottom: calc(100vw / -18);
	left: 0;
	z-index: -1;
}

/*@media screen and (max-width: 1100px){
	#History::before,
	#History::after { background-size: cover;}
}*/
@media screen and (max-width: 720px){
	#History { 
		margin: 7rem 0;
		padding: 1rem 0;
	}
	#History::before,
	#History::after { height: 7rem; background-size: 110% auto;}
	#History::before { top: -7rem;}
	#History::after { bottom: -7rem;}
}


.social-img {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 5rem;
}
.social-img-wrap { position: relative;}
.social-img-wrap:after {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    -moz-box-shadow: inset 0px 0px 30px 30px #fff;
    -webkit-box-shadow: inset 0px 0px 30px 30px #fff;
    box-shadow: inset 0px 0px 30px 30px #fff;
    content: " ";
}

@media screen and (max-width: 720px){
	.social-img { margin-bottom: 1.6rem;}
}