@charset "utf-8";

/* Achievement Styles */



/* Index List
------------------------------------------------------------- */

.achieve_cont_box {
	margin-bottom: 60px;
}

.achieve_cont_box > h3 {
	width: 100%;
	margin: 40px 0 20px 0;
	padding: 8px 15px;
	line-height: 1.6;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: left;
	color: #fff;
	background-color: #006865;
	background: linear-gradient(45deg,#067d9b 0%, #36c6c1 50%, #069b69 100%);
}

.achieve_cont_box > h3:nth-child(n+3) {
	margin-top: 100px;
}

.achieve_article_box {
	margin: 0 0 60px 0;
	padding: 0 2px;
}

.achieve_article_box::after {
	content:"";
	display:block;
	clear:both;
}

.achieve_article_box > h3 {
	margin: 0;
	padding: 8px 2px;
	line-height: 1.4;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0;
	border-top: 5px solid #067d9b;
	position: relative;
}

.achieve_article_box > h3 a,
.achieve_article_box > h3 a:hover,
.achieve_article_box > h3 a:active {
	text-decoration: none;
	color: #151515;
}

.achieve_article_box > h3 a:hover,
.achieve_article_box > h3 a:active {
	text-decoration: underline;
}

.achieve_img {
	width: 100%;
	max-width: 480px;
	margin: 0 auto 20px auto;
}

.achieve_img > a {
	margin-bottom: 20px;
}

.achieve_img img {
	width: 100%;
}

dl.achieve_list {
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
	background-color: #f9f5ed;
	border-bottom: 1px solid #d5d5d5;
}

dl.achieve_list dt {
	font-weight: 500;
	width: 6em;
	padding: 6px 15px 6px 0;
	text-align: right;
	white-space: nowrap;
	float: left;
	clear: left;
	border-top: 1px solid #d5d5d5;
}

dl.achieve_list dd {
	width: calc(100% - 6em);
	margin-left: 6em;
	padding: 6px 10px 6px 15px;
	background-color: #fff;
	border-top: 1px solid #d5d5d5;
}

dl.achieve_list dd a::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.2em;
	margin-left: 0.2em;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/icon_extlink_blue.svg);
}



/* Details
------------------------------------------------------------- */

.achieve_details_box {
	margin: 0 0 40px 0;
	padding: 0;
}

.achieve_details_box::after {
	content:"";
	display:block;
	clear:both;
}

.achieve_details_box > h2 {
	width: 100%;
	margin: 0 0 20px 0;
	padding: 8px 15px;
	line-height: 1.6;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: left;
	color: #fff;
	background-color: #006865;
	background: linear-gradient(45deg,#067d9b 0%, #36c6c1 50%, #069b69 100%);
}



/* for SmallSize
--------------------------------------------------------------------------------- */
@media print, screen and (min-width:360px) {



}





/* for MiddleSize(480-)
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:640px) {

	/* Details
	------------------------------------------------------------- */

	.achieve_details_box > .achieve_img {
		width: 100%;
		max-width: 760px;
		margin: 10px auto 20px auto;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
		gap: 20px ;
	}

	.achieve_details_box > .achieve_img > a {
		margin: 0;
	}


}





/* for MiddleSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:788px) {

	/* Index List
	------------------------------------------------------------- */

	.achieve_article_box > h3 {
	font-size: 2rem;
	}

	.achieve_article_box {
		display: grid;
		grid-template-areas: "title title" "cont img";
		grid-template-columns: 1fr 25%;
		grid-template-rows: auto auto;
		align-content: start;
		align-items: start;
	}

	.achieve_article_box h3 {
		grid-area: title;
	}

	.achieve_article_box .achieve_img {
		max-width: none;
		width: 100%;
		grid-area: img;
		margin-bottom: 0;
	}

	.achieve_article_box .achieve_img a:last-child {
		margin-bottom: 0;
	}

	.achieve_article_box dl.achieve_list {
		margin-right: 40px;
		grid-area: cont;
		align-content: start;
	}


}





/* for LargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:980px) {

	/* Index List
	------------------------------------------------------------- */

	.achieve_cont_box {
		margin-bottom: 80px;
	}

	.achieve_cont_box > h3 {
		font-size: 2.4rem;
	}

	dl.achieve_list {
		font-size: 1.6rem;
	}

	.achieve_article_box {
		grid-template-columns: 1fr 240px;
	}


	/* Details
	------------------------------------------------------------- */

	.achieve_details_box > h2 {
		font-size: 2.4rem;
	}

}





/* for LargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:1080px) {

	/* Details
	------------------------------------------------------------- */

	.achieve_details_box > .achieve_img {
		width: 100%;
		max-width: 960px;
		grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
		gap: 30px ;
	}


}





/* for ExtraLargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:1280px) {

	/* Index List
	------------------------------------------------------------- */

	.achieve_cont_box > h3 {
		font-size: 2.6rem;
	}

	.achieve_article_box > h3 {
		font-size: 2.2rem;
	}

	.achieve_article_box {
		grid-template-columns: 1fr 40%;
	}

	.achieve_article_box .achieve_img {
		max-width: none;
		width: 100%;
		grid-area: img;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}

	.achieve_article_box .achieve_img > a {
		display: block;
		width: calc(50% - 8px);
		margin-bottom: 0;
	}

	dl.achieve_list {
		font-size: 1.5rem;
	}


	/* Details
	------------------------------------------------------------- */

	.achieve_details_box > h2 {
		font-size: 2.6rem;
	}




}





/*** Print Styles ***/

@media print {

	.achieve_article_box {
		grid-template-columns: 1fr 25%;
		break-inside: avoid;
		margin-bottom: 20px;
	}

	.achieve_article_box .achieve_img {
		display: block;
	}

	.achieve_img img {
		width: 100%;
		margin-bottom: 10px;
	}

	.achieve_article_box .achieve_img > a {
		width: 100%;
	}

	/* Details
	------------------------------------------------------------- */

	.achieve_details_box > .achieve_img {
		max-width: 90%;
		grid-template-columns: 1fr 1fr;
		gap: 20px ;
	}


}


