/* CSS Document */


/*ページ内リンク
-----------------------------------------------------*/

div.content_link{
	text-align: center;
	background-color: #EAF1FA;
	padding:14px 0 16px;
	/*min-width: 960px;*/
}
div.content_link ul li a{
	text-decoration: none;
	color: #212121;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	background-color: #fff;
	height: 100%;
	padding: 0.9375rem 0 1rem;
	border: #447aac 1px solid;
	border-radius: 4px;
	box-shadow: 1px 2px 8px -2px rgba(0,0,0,0.3);
	font-size: 1rem;
	line-height: 1.3;
	transition: background-color 0.3s;
}
div.content_link ul li a:hover{
	background-color: #c4e2fc;
}
div.content_link ul::after{
	display: none;
}

/*p-area_section
-----------------------------------------------------*/
.p-area_section{
	border-top: #447AAC 2px solid;
	margin-top: 6px;
	margin-bottom: 1.875rem;
}
h2.p-area_label{
	font-size: 1.875rem;
	padding: 2.125rem 0 2.5rem;
	line-height: 1;
}
.sp h2.p-area_label{
	text-align: center;
}
h3.p-country_label{
	font-size: 1.5rem;
	border-top: #E6002D 2px solid;
	padding: 0.875rem 0 0;
}

/*p-thumb_list
-----------------------------------------------------*/
.p-thumb_list__item{
	margin-right: 40px;
	position: relative;
}
.p-thumb_list .p-thumb_list__item:nth-of-type(4n){
	margin-right: 0px;
}
.sp .p-thumb_list .p-thumb_list__item:nth-of-type(4n){
	margin-right: auto;
}
.p-thumb_list__item .p-thumb {
	aspect-ratio:1.3/1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.p-thumb_list__item .p-thumb img{
	/*width: 100%;
	height: auto;*/
	width: auto;
	height: 100%;
	transition: transform 0.4s ease-in-out;
}
.p-thumb_list__item:hover .p-thumb img{
	transform: scale(1.1);
}
.p-thumb_list__info{
	/*font-size: 0.8125rem;*/
	font-size: 0.75rem;
	line-height: 1.5;
	margin-top: 0.4375rem;
	letter-spacing: 0;
	padding-bottom: 26px;
}
.p-thumb_list__info h4{
	font-size: 0.9375rem;
	margin-bottom: 0.375rem;
}
.p-thumb_list__info>p{
	/*text-indent: -3em;
	padding-left: 3em;*/
	text-indent: -2.6em;
	padding-left: 2.6em;
}
.p-thumb_list__info>p.p-detail_link{
	text-indent: 0;
	padding-left: 0;
}
.p-detail_link{
	position: absolute;
	width: auto;
	right: 0px;
	bottom: 0px;
}
.p-detail_link a{
	display: inline-block;
	padding: 0.125rem 0.625rem 0.125rem 1.125rem;
	text-decoration: none;
	color: #1d3994;
	background: url("/english/tech/overseas/common/images/arrow_right_s_red.svg") no-repeat 0.375rem 0.3125rem;
	background-size: 6px auto;
	font-size: 0.75rem;
	border-radius: 3px;
	transition: background-color 0.3s;
}
.p-thumb_list__item:hover .p-detail_link a{
	background-color: #EFF0F2;
}

/*.p-thumb_list__item .p-thumb:before{*/
.p-thumb_list__item .p-thumb_list__info:before{
	content: '';
	display: block;
	box-sizing: border-box;
	position: absolute;
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	left: -4px; top: -4px;
	transition: all 0.3s;
	border: #a6c4eb 1px solid;
	border-radius: 2px;
	background-color: rgba(166,196,235,0.1);
	transform: scale(0.9);
	opacity: 0;
	z-index: 2;
	cursor: pointer;
}
.p-thumb_list__item:hover .p-thumb_list__info:before{
	border-width: 2px;
	opacity: 1;
	transform: scale(1);
}

/*sp*/
.sp div.content_link .c-flex--between{
	display: flex;
	flex-wrap: wrap;
}
.sp div.content_link .col4 .c-col{
	width: calc((100% - 20px)/2);
	margin-bottom: 0.25rem;
	margin-top: 0.25rem;
}
