@charset "utf-8";

:root {
	--color-point: #325081;
	--color-subColor: #1d98d8;
	--btn-bg: #1d98d8;
	
	--table-border: #c8e0ea;
	--table-theadBg: #f0f0f0;
	--table-thead-border: #c8e0ea;
	--table-thead-txt: #000000;
	--table-tbody-thBg: #eff6fb;
	--table-tbody-th-txt: #000000;
	--table-tdBg: #FFFFFF;
	
	--ol-bg: #F6D054;
	--ol-txt: #FFFFFF;
	
	--newsCategory-infor: #62aecd;
	--newsCategory-news: #ef7545;
	--newsCategory-update: #82c455;
}
/*FV
************************************************************************************/
#FV{
	width: 100%;
	position: relative;
}
#FV:before{
	padding-top: 38%;
	content: "";
	display: block;
}
#FV .bgImage{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
}
#FV .bgImage img{
	width: 100%;
	height: 100%;
    object-fit: cover;
    object-position: top center;
}
#FV .copyWrap{
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	left: 0;
	z-index: 20;
	width: 100%;
	text-align: center;
	font-weight: 600;
    color: #FFF;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
#FV .copyWrap .title{
	font-size: 1.875em;
	padding-bottom: .4em;
}
#FV .copyWrap .subtitle{
	font-size: 1.125em;
}
#FV .btnsWrap{
	position: absolute;
	bottom: 5%;
	left: 0;
	z-index: 40;
	width: 100%;
	text-align: center;
}
#FV .btnsWrap ul{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
	column-gap: 20px;
	row-gap: 20px;
	align-items: stretch;
	width: 50%;
	margin: auto;
}
#FV .btnsWrap ul li img{
	width: 100%;
	height: auto;
}
@media screen and (min-width: 1025px) {
	#FV .btnsWrap ul li img{
		transition: all .3s;
	}
	#FV .btnsWrap ul li img:hover{
		opacity: .7;
	}
}


@media screen and (max-width: 1024px){
	#FV{
		position: static;
		margin-bottom: 30px;
	}
	#FV:before{
		display: none !important;
        padding-top: 0;
	}
	#FV .bgImage{
		position: static;
		height: auto;
        overflow: hidden;
    	aspect-ratio: 6 / 3;
        
	}
	#FV .copyWrap{
		position: static;
		margin: 1.5em 0;
		font-size: 12px;
        transform: none;
        color: #000;
        text-shadow: 2px 3px 3px rgba(0, 0, 0, 0);
	}
	#FV .btnsWrap{
		position: static;
	}
	#FV .btnsWrap ul{
		width: 95%;
	}
}
@media screen and (max-width: 599px) {
	#FV .btnsWrap ul{
		column-gap: 10px;
		row-gap: 10px;
	}
}
@media screen and (max-width: 415px){
	#FV .btnsWrap ul{
		grid-template-columns: 1fr 1fr;
		width: 80%;
	}
}

/*news
************************************************************************************/
section#news{
	padding: 60px 0;
	margin: 0;
	background: #eff6fb;
}
#news .wrapper{
	display: flex;
	flex-wrap: wrap;
}
#news .wrapper .titleWrap{
	width: 300px;
	text-align: center;
}
#news .wrapper .titleWrap .titleWrapInner{
	text-align: center;
	color: var(--color-point);
	margin-bottom: 2em;
}
#news .wrapper .titleWrap .titleWrapInner h1{
	font-size: 1.875em;
	margin: 0 0 .2em;
}
#news .wrapper .titleWrap .titleWrapInner .en{
	font-size: 1.313em;
}

#news .wrapper .titleWrap .btn{
	display: inline-block;
	border: 1px solid var(--color-point);
	border-radius: 40px;
	background: #FFF;
}
#news .wrapper .titleWrap .btn a{
	display: block;
	line-height: 45px;
	color: var(--color-point);
	text-decoration: none;
	padding: 0 35px 0 55px;
	background: url("../img/common/ar_blue.svg") no-repeat left 30px center;
	background-size: 10px auto;
}
@media screen and (min-width: 1025px) {
	#news .wrapper .titleWrap .btn a{
		transition: all .3s;
	}
	#news .wrapper .titleWrap .btn a:hover{
	background: url("../img/common/ar_blue.svg") no-repeat left 35px center;
	background-size: 10px auto;
	}
}

#news .wrapper .newsWrap{
	width: calc(100% - 300px);
}
.newsWrap ul li:first-child{
	border-top: 1px solid #E1E1E1;
}
.newsWrap ul li{
	width: 100%;
	padding: 1em 0;
	border-bottom: 1px solid #E1E1E1;
	display: grid;
	grid-template-columns: 5em 10em 1fr;
	column-gap: 1em;
	box-sizing: border-box;
}
@media screen and (min-width: 769px){
	.newsWrap ul li:hover{
		background: #FFF;
	}
}

.newsWrap ul li p{
	box-sizing: border-box;
}
.newsWrap ul li p.date{
	width: 6em;
}
.newsWrap ul li p.category{
	width: 10em;
}
.newsWrap ul li p.category a{
	color: #FFF;
	text-decoration: none;
	display: block;
}
.newsWrap ul li p.category span{
	background: #ccc;
	display: inline-block;
	color: #FFF;
	cursor: pointer;
	font-size: 0.875em;
	text-align: center;
	box-sizing: border-box;
	width: 10em;
	padding: 0.1em 1em;
}

.newsWrap ul li p.category span.infor{
	background: var(--newsCategory-infor);
}
.newsWrap ul li p.category span.news{
	background: var(--newsCategory-news);
}
.newsWrap ul li p.category span.update{
	background: var(--newsCategory-update);
}
.newsWrap ul li p.ttl img{
	vertical-align: middle;
	margin-left: .5em;
}

@media screen and (max-width: 1024px){
	#news .wrapper{
		display: block;
	}
	#news .wrapper .titleWrap{
		width: 100%;
	}
	
	#news .wrapper .titleWrap .titleWrapInner h1{
		margin: 0;
		display: inline-block;
		vertical-align: middle;
	}
	#news .wrapper .titleWrap .titleWrapInner .en{
		display: inline-block;
		padding-left: 1em;
		vertical-align: middle;
	}
	#news .wrapper .titleWrap .btn{
		margin: 0 0 2em 0;
	}
	#news .wrapper .newsWrap{
		width: 100%;
	}
}
@media screen and (max-width: 768px){
	.newsWrap ul li{
		padding: 1em;
		display: block;
		box-sizing: border-box;
	}
	.newsWrap ul li p{
		display: inline-block;
	}
	.newsWrap ul li p.date{
		padding-right: 1em;
		box-sizing: border-box;
	}
	.newsWrap ul li p.ttl{
		margin-top: 10px;
		display: block;
	}
}

/*
************************************************************************************/
section#property{
	padding: 60px 0;
	margin: 0;
	background: #FFFFFF;
}
#property .wrapper{
	position: relative;
}
#property .swiper{
	position: relative;
	width: 1200px;
	margin: auto;
}
.swiper-wrapper{
	height: auto;
}
.swiper-button-next,
.swiper-button-prev{
	color: var(--color-subColor);
}
.swiper-slide{
	border: 2px solid var(--color-subColor);
	padding: 20px;
	box-sizing: border-box;
	height: 100%;
}
.swiper-slide a{
	display: block;
	text-decoration: none;
}
.swiper-slide .imageWrap{
	width: 100%;
	position: relative;
}
.swiper-slide .imageWrap .photo:before{
	padding-top: 60%;
	content: "";
	display: block;
}
.swiper-slide .imageWrap .photo img{
	width: auto;
	height: 100%;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.swiper-slide .imageWrap .icon{
	width: 60px;
	height: 60px;
	position: absolute;
	z-index: 20;
	top: -15px;
	left: -15px;
}
.swiper-slide .imageWrap .icon img{
	width: 100%;
	height: 100%;
}
.swiper-slide .title{
	color: var(--color-point);
	font-weight: 700;
	font-size: 1.313em;
	padding: .5em 0;
}
.swiper-slide .title .cate{
	font-size: 0.8rem;
	color:#888;
}
.swiper-slide table{
	width: 100%;
	margin: auto;
	border-collapse:collapse;
	border-top: 1px solid var(--table-border);
}
.swiper-slide th{
	padding: .5em 1em;
	border-bottom: 1px solid var(--table-border);
	background: var(--table-tbody-thBg);
	color: var(--table-tbody-th-txt);
}
.swiper-slide td{
	padding: .5em 1em;
	border-bottom: 1px solid var(--table-border);
	background: var(--table-tdBg);
	
}
.swiper-slide .btn{
	background: var(--color-subColor);
	color: #FFF;
	text-decoration: none;
	padding: .5em 0;
	display: block;
	margin-top: 1em;
	text-align: center;
}
.swiper-button-prev{
	left: -50px;
}
.swiper-button-next{
	right: -50px;
}
.swiper-pagination{
	bottom: -40px !important;
}
@media screen and (min-width: 1025px) {
	.swiper-slide .btn{
		transition: all .3s;
	}
	.swiper-slide:hover .btn{
		background: var(--color-point);
	}
}

@media screen and (max-width: 1024px){
	#property .swiper{
		width: calc(100% - 100px);
		padding: 2px;
		box-sizing: border-box;
	}
	.swiper-button-prev{
		left: 0px;
	}
	.swiper-button-next{
		right: 0px;
	}
	.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
		bottom: -30px;
	}
}


/*company
************************************************************************************/
section#company{
	padding: 60px 0;
	margin: 0;
	background: #FFFFFF;
}
section#company .wrapper{
	display: grid;
	grid-template-columns: 3fr 2fr;
	grid-template-rows: auto;
	column-gap: 20px;
	row-gap: 20px;
	align-items: center;
}
section#company .wrapper .map iframe{
	width: 100%;
	height: 450px;
}
section#company .wrapper .information .title{
	font-weight: 500;
	font-size: 1.5em;
	margin: 0 0 .5em;
}
section#company .wrapper .information ul.btns{
	margin-top: 40px;
}
section#company .wrapper .information ul.btns li{
	display: inline-block;
	border: 1px solid var(--color-point);
	border-radius: 40px;
	background: #FFF;
	margin: 5px;
}
section#company .wrapper .information ul.btns li a{
	display: block;
	line-height: 45px;
	color: var(--color-point);
	text-decoration: none;
	padding: 0 35px 0 55px;
	background: url("../img/common/ar_blue.svg") no-repeat left 30px center;
	background-size: 10px auto;
}
@media screen and (min-width: 1025px) {
	section#company .wrapper .information ul.btns li a{
		transition: all .3s;
	}
	section#company .wrapper .information ul.btns li a:hover{
	background: url("../img/common/ar_blue.svg") no-repeat left 35px center;
	background-size: 10px auto;
	}
}
@media screen and (max-width: 1024px){
	section#company .wrapper{
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 768px){
	section#company .wrapper{
		grid-template-columns: 1fr;
	}
	section#company .wrapper .map iframe{
		height: 300px;
	}
	section#company .wrapper .information ul.btns{
		text-align: center;
	}
}
@media screen and (max-width: 599px) {
	section#company .wrapper .information ul.btns li{
		display: block;
	}
}

@media screen and (min-width: 1025px) {
/*pc*/
}
@media screen and (max-width: 1024px){
/*smart phone*/
}
@media screen and (max-width: 768px){
/*smart phone*/
}
@media screen and (max-width: 599px) {
/*sp*/
}
@media screen and (max-width: 415px){
}