@charset "UTF-8";
/* CSS Document */
.FigBlock.FloatRight {
	width: 480px;
	margin-left: 1em;
}
.StrengthsBlock {
	display: flex;
	justify-content: center;
	align-items: center;
    width: 100%;
    height: auto;
    aspect-ratio: 980/500;
	position: relative;
    background: url("../images/strengths/strengths.jpg") no-repeat center center;
    background-size: cover;
    text-indent: -999em;
}
#AwardsArea {
	display: grid;
	display: -ms-grid;
	grid-template-columns: auto 210px;
	-ms-grid-columns: 1fr 210px;
	grid-template-rows: auto;
	-ms-grid-rows: auto;
	grid-template-areas: "AwardsListArea FigArea";
	width: 100%;
	margin: 0 auto;
}
#AwardsListArea {
	grid-area: AwardsListArea;
	-ms-grid-column: 1;
	-ms-grid-row: 1;
}
#AwardsListArea h2 sup {
	font-size: 50%;
	vertical-align: super;
}
#AwardsListArea table {
	width: 100%;
}
#AwardsListArea table th, #AwardsListArea table td {
	border: solid 1px #cccccc;
	padding: 5px;
	font-weight: 500;
}
#AwardsListArea table th {
	background-color: #eeeeee;
}
#AwardsListArea table tr.Prize td {
	background-color: #fefcd3;
}
#AwardsListArea table tr.Prize td .Trophy {
	padding-left: 22px;
	background: url("../images/strengths/icn_trophy.png") no-repeat left center;
	background-size: 20px;
}
#FigArea {
	grid-area: FigArea;
	-ms-grid-column: 2;
	-ms-grid-row: 1;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 10px;
	margin-bottom: auto;
}
#FigArea figure {
	margin-bottom: 1em;
}
#FigArea figure img {
	width: 200px;
	height: 200px;
}
/*タブレット*/
@media screen and (max-width: 999px) {
	p#MainCopy {
		font-size: 2.4vw;
	}
	.FigBlock.FloatRight {
		width: 45vw;
	}
	#AwardsArea {
		grid-template-columns: 80% 20%;
		-ms-grid-columns: 80% 20%;
	}
	#FigArea figure img {
		width: 100%;
		height: auto;
	}
	#AwardsListArea table th, #AwardsListArea table td {
		padding: 1vw;
	}
	#AwardsListArea table tr.Prize td .Trophy {
		margin-left: 0;
		padding-left: 1em;
		background-size: 1em;
	}
}
/*スマホ*/
@media screen and (max-width: 767px) {
	/* 縦向きの場合のスタイル */
	@media screen and (max-aspect-ratio: 11/10) {
        .StrengthsBlock {
            background-image: url("../images/strengths/strengths_SP.jpg");
            aspect-ratio: 1/1;
        }
		#AwardsArea {
			display: grid;
			display: -ms-grid;
			grid-template-columns: auto;
			-ms-grid-columns: auto;
			grid-template-rows: auto auto;
			-ms-grid-rows: auto auto;
			grid-template-areas: "FigArea""AwardsListArea";
			width: 100%;
			margin: 0 auto;
		}
		#AwardsListArea table th, #AwardsListArea table td {
			font-size: 60%;
		}
		#FigArea {
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
			-ms-flex-direction: row;
			flex-direction: row;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-box-pack: center;
			-ms-flex-pack: center;
			justify-content: center;
			-webkit-box-align: stretch;
			-ms-flex-align: stretch;
			align-items: stretch;
			padding-left: 0;
			margin-bottom: auto;
		}
		#FigArea figure {
			margin: 1vw;
			padding: 0
		}
		#FigArea figure img {
			width: 25vw;
			height: 25vw;
		}
		#FigArea figure figcaption {
			font-size: 60%;
		}
	}
}