@charset "utf-8";
/* CSS Document */

main#press-release {
	margin: 200px 0;
}
#press-release  > h1 {
    font-family: 'Beausite';
    font-size: 80px;
    color: #002e52;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}
#press-release > h2 {
    display: block;
    font-family: 'BeausiteLight', 'Noto Serif JP', sans-serif;
    font-size: 32px;
	color: #668297;
    text-align: center;
    margin: 40px 0 0 0;
}

#press-release > section {
    max-width: 1400px;
    margin: 48px auto 120px;
}
#press-release > section > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch; /*高さ揃え*/
}
#press-release > section > ul > li {
	width: calc((100% - 54px) / 3);
	color: #002e52;
	background-color: #E0EEF1;
	margin:0 26px 26px 0;
	padding: 16px;
	position: relative;
	
	display: grid;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: max-content max-content 1fr auto;
	gap: 20px;
}
#press-release > section > ul > li:nth-of-type(3n) {
	margin-right: 0;
}
#press-release > section > ul > li > div:nth-of-type(1) {
	grid-row: 1 / 2;
	grid-column: 1 / 2;
}
#press-release > section > ul > li > div:nth-of-type(1) > img {
	width: 100%;
	height: auto;
}
#press-release > section > ul > li > div:nth-of-type(2) {
	grid-row: 2 / 3;
	grid-column: 1 / 2;
	font-family: 'BeausiteLight';
	font-size: 14px;
	text-align: center;
	padding: 0;
}
#press-release >section > ul > li > div:nth-of-type(3) {
	grid-row: 3 / 4;
	grid-column: 1 / 2;
}
#press-release >section > ul > li > div:nth-of-type(3) > h3 {
	font-family: "Noto Serif JP", Serif;
    font-size: 26px;
    font-weight: 500;
	text-align: center;
    line-height: 150%;
}
#press-release >section > ul > li > div:nth-of-type(3) > h3 > small {
	display: inline-block;
	font-size: 20px;
	line-height: 140%;
	padding: 8px 0;
}
#press-release >section > ul > li > div:nth-of-type(4) {
	grid-row: 4 / 5;
	grid-column: 1 / 2;
	text-align: center;
}
#press-release >section > ul > li > div:nth-of-type(4) > a {
	display: inline-block;
	width: auto;
	text-transform: uppercase;
	border: #002e52 1px solid;
	transition: 0.5s;
	margin: 50px auto 0;
	padding: 16px 24px;
}
#press-release >section > ul > li > div:nth-of-type(4) > a:hover {
	color: #fff;
	background-color: #002e52;
	transition: 0.5s
}

	@media only screen and (max-width: 767px) {
		main#press-release {
			margin: 130px 0;
		}
		#press-release  > h1 {
			font-size: 34px;
			color: #002e52;
		}
		#press-release > h2 {
			font-size: 20px;
			margin: 10px 0 0 0;
		}

		#press-release > section {
			max-width: 90%;
			margin: 36px auto 120px;
		}
		#press-release > section > ul {
			display: block;
			flex-wrap: nowrap;
			justify-content: flex-start;
			align-items: stretch; /*高さ揃え*/
		}
		#press-release >section > ul > li {
			width: 100%;
		}
		#press-release >section > ul > li > div:nth-of-type(3) > h3 {
			font-size: 20px;
		}
		#press-release >section > ul > li > div:nth-of-type(3) > h3 > small {
			font-size: 16px;
		}

	}
