@charset "utf-8";

/*common
************************************************************************************/
article > section{
	padding: 70px 0;
}
.column_block{
	display: flex;
}
.column_block .column_block_photo{
	width: 500px;
}
.column_block .column_block_photo img{
	max-width: 100%;
	height: auto;
}
.column_block .column_block_details{
	width: calc(100% - 500px);
	box-sizing: border-box;
}
.column_block .column_block_details .text{
	text-align: center;
}
@media screen and (min-width: 1025px) {
	.column_block.photo_left .column_block_photo{
		order: 1;
	}
	.column_block.photo_left .column_block_details{
		order: 2;
	}
	.column_block.photo_right .column_block_photo{
		order: 2;
	}
	.column_block.photo_right .column_block_details{
		order: 1;
	}
	.column_block.photo_left .column_block_details{
		padding-left: 50px;
	}
	.column_block.photo_right .column_block_details{
		padding-right: 50px;
	}
}

@media screen and (max-width: 1024px){
	.column_block .column_block_photo{
		width: 50%;
	}
	.column_block .column_block_details{
		width: 50%;
		padding-left: 1em;
	}
}
@media screen and (max-width: 599px) {
	.column_block{
		display: block;
	}
	.column_block .column_block_photo{
		width: 80%;
		margin: auto;
	}
	.column_block .column_block_details{
		width: 100%;
		padding: 1em;
	}
}

.title_box{
	text-align: center;
	font-weight: 600;
	color: #33326A;
}
.title_box .sub{
	padding-bottom: .7em;
	margin: 0;
}
.title_box .main{
	padding-bottom: 1em;
	font-size: 2.25em;
	margin: 0;
}
.btn_more{
	margin-top: 2.5em;
	text-align: center;
}
.btn_more a{
	display: inline-block;
	border: 1px solid #33326A;
	border-radius: 5px;
	text-decoration: none;
	color: #33326A;
	padding: .8em calc(1em + 50px) .8em 2em;
	background: url("../../img/common/ar_kon.svg") no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
	.btn_more a{
		transition: all .3s ease-in-out;
	}
	.btn_more a:hover{
		background: url("../../img/common/ar_white.svg") no-repeat right 20px center #33326A;
		color: #FFF;
	}
}

/*slick
************************************************************************************/
.eyecatch-area{
	position: relative;
	width: 100%;
	height: 100%;
    aspect-ratio: 3 / 1;
}
.eyecatch-area .slide{
	position: absolute;
    top: 0;
	right: 0;
	width: 100%;
	text-align: center;
}
.slider {
	width: 100%;
	height: 100%;
}
.slick-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*
.eyecatch-area .slide img{
	position: absolute;
    top: 50%;
	right: 0;
	width: 100%;
	transform: translate( 0, -50%);
	border-radius: 30px 0 0 30px;
}
*/

/* 画像調整 */
@media screen and (max-width: 1600px){
	.eyecatch-area .slide img{
		top: 0;
		transform: translate( 0, 0);
	}	
}

/*greeting
************************************************************************************/
#greeting.column_block .column_block_photo{
	width: 300px;
}
#greeting.column_block .column_block_details{
	width: calc(100% - 300px);
}
#greeting.column_block .column_block_details .text{
	text-align: left;
}
@media screen and (max-width: 768px){
	#greeting.column_block .column_block_photo{
		width: 30%;
	}
	#greeting.column_block .column_block_details{
		width: 70%;
	}
}
@media screen and (max-width: 599px) {
	#greeting.column_block .column_block_photo{
		width: 50%;
		margin: auto;
	}
	#greeting.column_block .column_block_details{
		width: 100%;
	}
}

/*news
************************************************************************************/
#news{
	background: url("../../img/toppage/bg_news.jpg") no-repeat center center;
	background-size: cover;
	color: #FFF;
}
#news a{
	color: #FFF;
}
#news .title_box{
	color: #FFF;
}
#news ul li{
	display: table;
	width: 100%;
	padding: .8em 0;
}
#news ul li p{
	display: table-cell;
	vertical-align: top;
}
#news ul li .date{
	width: 9em;
	padding-right: 1em;
	font-weight: 600;
}
#news .btn_more a{
	border: 1px solid #FFF;
	color: #FFF;
	background: url("../../img/common/ar_white.svg") no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
	#news .btn_more a:hover{
		background: url("../../img/common/ar_white.svg") no-repeat right 20px center #000;
	}
}
@media screen and (max-width: 599px) {
	#news ul{
		width: 95%;
		margin: auto;
	}
	#news ul li{
		display: block;
		border-bottom: 1px solid #FFF;
	}
	#news ul li p{
		display: block;
	}
	#news ul li .date{
		width: auto;
		padding: 0 0 .5em;
	}
}