@charset "utf-8";
/* CSS Document */

/*----------------------------------------
    ヘッダー/ナビゲーション
----------------------------------------*/
header {
	display: block;
	background-image: url(../../_images/top/main_img.webp);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	width: 100%;
    height: 630px;
    margin-bottom: 0;
	position: relative;
}
header .headBox{
	background-color: rgba(255,255,255,0.8);
	padding-bottom: 35px;
	position: absolute;
	bottom: 0;
}

header .headBox > div.inner{
	align-items: flex-end;
}

@media screen and (max-width: 768px) {
	header {
		width: 100%;
		z-index: 999;
		position:fixed;
		background: none;
		height: auto;
	}
	header .headBox{
		background-color: rgba(255,255,255,1);
		width: 100%;
		padding-bottom: 0;
		border-bottom: 1px solid #272727;
		position: relative;
		z-index: 550;
	}
	header .headBox > div.inner{
		align-items: center;
		width: 100%;
		height: 60px;
		padding: 2px 5px;
	}
	header .headBox > div.inner > h1{
		width: 150px;
	}
	header .headBox > div.inner > p{
		display: none;
	}
}


/*--nav--*/
header nav{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
@media screen and (max-width: 768px) {
	header nav {
		height: 100%;
		position: relative;
	}
}

/*----------------------------------------
    トップ_記事ピックアップ
----------------------------------------*/
h2{
    color: #383838;
	margin: 0 auto 30px;
	padding-bottom: 5px;
    font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.4em;
    border-bottom: 1px solid #5d5d5d;
    position: relative;
}
h2:before{
	content: "";
	display: inline-block;
	border-right: 1px solid #5d5d5d;
	margin-right: 20px;
	padding-right: 20px;
	vertical-align: middle;
}


/*----------記事一覧共通----------*/
ul.linkList{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 20px;
}
ul.linkList > li{
    margin-bottom: 15px;
}
ul.linkList > li div.imgBox{
    margin-bottom: 10px;
    position: relative;
}
ul.linkList > li div.imgBox img{
    width: 100%;
}
ul.linkList > li div.imgBox:before{
    display: block;
    color: #fff;
	width: 45px;
	height: 25px;
	padding: 0;
    font-size: 14px;
	font-weight: 500;
    text-align: center;
	line-height: 25px;
    position: absolute;
    top: -25px;
    left: 0;
}

ul.linkList > li div.imgBox:after{
    display: block;
    color: #fff;
	width: 60px;
	height: 60px;
    font-size: 14px;
	font-weight: 600;
    text-align: center;
    line-height: 60px;
	border-radius: 50%;
    position: absolute;
    top: -10px;
	right: -10px;
}

ul.linkList > li a{
    display: block;
}
ul.linkList > li a:hover{
	background: rgba(255,255,255,0.3);
    opacity: 0.6;
}
ul.linkList > li p.day{
    color: #a2a2a2;
    font-size: 14px;
    font-weight: bold;
}
ul.linkList > li p.title{
    color: #00169a;
    font-size: 15px;
    font-weight: bold;
}



/**/
ul.linkList > li div.new:before{
    content: "NEW";
    background-color: #ff2525;
}

ul.linkList > li div.record:after{
    content: "実 績";
    background-color: #2dadff;
}
ul.linkList > li div.column:after{
    content: "コラム";
    background-color: #03992a;
}
ul.linkList > li div.diary:after{
    content: "編集部";
    background-color: #cd0c82;
}
ul.linkList > li div.news:after{
    content: "お知らせ";
    background-color: #d89800;
}



/*----------実績----------*/
.recordCont{
	background-color: #ececec;
	padding: 40px 0 30px;
}
.recordCont > .inner{
	width: 1200px;
	margin: auto;
}

/**/
.recordCont > .inner h2:before{
	content: url(../../_images/top/title_record.gif);
}

/**/
.recordCont ul.linkList{
	width: 1200px;
    justify-content: space-between;
}
.recordCont ul.linkList > li{
	width: calc(100% / 4);
	padding: 0 10px;
}

/*----------コラム//時事ネタ----------*/
.columnCont,
.diaryCont{
	margin: 0 auto 60px;
}

/**/
.columnCont > h2:before{
	content: url(../../_images/top/title_column.gif);
}
.diaryCont > h2:before{
	content: url(../../_images/top/title_diary.gif);
}

/**/
.columnCont ul.linkList,
.diaryCont ul.linkList{
    justify-content: space-between;
}
.columnCont ul.linkList > li,
.diaryCont ul.linkList > li{
	width: calc(100% / 2);
	padding: 0 15px;
}

/*----------サイト更新情報----------*/
.webNewsCont {
	margin: 0 auto 60px;
}
.webNewsCont > h2{
    color: #383838;
	padding: 8px 10px;
    font-size: 20px;
	text-align: center;
    border-top: 1px solid #2a315b;
    border-bottom: 1px solid #2a315b;
}
.webNewsCont > h2:before{
	display: none;
}

/**/
.webNewsCont dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
    font-size: 15px;
    font-weight: bold;
}
.webNewsCont dl dt{
    width: 130px;
    padding: 5px 0;
    color: #a2a2a2;
	letter-spacing: 0.1em;
}
.webNewsCont dl dd{
    width: 590px;
    color: #565fb1;
}
.webNewsCont dl dd a{
	display: block;
    padding: 5px 0;
}
.webNewsCont dl dd a:hover{
    background-color: #eef0fc;
    color: inherit;
}


@media screen and (max-width: 768px) {
	h2{
		font-size: 22px;
		letter-spacing: 0.1em;
	}
	h2:before{
		margin-right: 15px;
		padding-right: 15px;
	}
	
	main .container{
		display: block;
		background-image: url(../../_images/top/main_img.webp);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: 1000px auto;
		padding-top: 290px;
	}


	/*----------実績----------*/
	.recordCont > .inner{
		width: 95%;
	}

	.recordCont ul.linkList{
		width: 100%;
	}
	.recordCont ul.linkList > li{
		width: 48%;
		padding: 0;
	}
	
	/*----------コラム//時事ネタ----------*/
	.columnCont,
	.diaryCont{
		width: 95%;
	}
	
	/**/
	.columnCont ul.linkList > li,
	.diaryCont ul.linkList > li{
		width: 48%;
		padding: 0;
	}

	/*----------サイト更新情報----------*/
	.webNewsCont {
		width: 95%;
	}

    .webNewsCont dl dt{
        width: 20%;
    }
    .webNewsCont dl dd{
        width: 80%;
    }

}

@media screen and (max-width: 480px) {
	h2{
		font-size: 20px;
		text-align: center;
		letter-spacing: 0.1em;
	}
	h2:before{
		display: block;
		margin: 0 0 5px;
		padding: 0;
		border-right: none;
	}

	main .container{
		background-size: 800px auto;
		padding-top: 230px;
	}


    /*--サイト更新情報--*/
    .webNewsCont dl dt{
        width: 100%;
		padding: 0;
        text-align: left;
    }
    .webNewsCont dl dd{
        width: 100%;
		padding: 0;
    }

}


/*----------------------------------------
    トップ_サイト一覧
----------------------------------------*/
.serviceCont{
	margin-bottom: 50px;
	padding: 30px 0;
	border-top: 1px solid #272727;
	border-bottom: 1px solid #272727;
}
.serviceCont h2{
    color: #383838;
	padding-bottom: 5px;
    font-size: 17px;
	text-align: center;
	letter-spacing: 0.1em;
    border: none;
    position: relative;
}
.serviceCont h2:before{
	display: none;
}
.serviceCont h2:after{
	content: url(../../_images/top/title_service.gif);
	display: block;
	margin: 5px 0 0;
	padding-right: 0;
	border-right: none;
}

/*--サイトスライドショー--*/
.serviceCont .swiper-parent {
	display: block;
	position: relative;
}
.serviceCont .swiper-container{
	margin-bottom: 10px;
}
.serviceCont .swiper-wrapper {
	width: 100%;
}
.serviceCont .swiper-slide {
	text-align: center;
	width: auto;
	max-height: 300px;
	padding-bottom: 5px;
}

.serviceCont .swiper-slide img{
	width: 100%;
	max-width: 240px;
	max-height: 130px;
}
.serviceCont .swiper-slide p{
	margin: 8px 0;
	font-size: 16px;
	font-weight: 600;
}
.serviceCont .swiper-slide a{
	display: block;
	width: 70%;
	background-color: #efefef;
	margin: auto;
	padding: 3px;
	padding-right: 20px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3em;
	border: 1px solid #272727;
	border-radius: 5px;
	position: relative;
}
.serviceCont .swiper-slide a:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left: 5px solid #272727;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto;
}

.serviceCont .swiper-slide a:hover{
	background-color: #272727;
	color: #fff;
}
.serviceCont .swiper-slide a:hover:after{
	border-left: 5px solid #fff;
}


@media screen and (max-width: 768px) {
	.swiper-parent {
		width: 95%;
		margin: auto;
	}
	.swiper-slide {
		width: 100%;
		height: 100%;
		text-align: center;
		line-height: auto;
	}

	.serviceCont .swiper-slide p{
		font-size: 14px;
	}
	.serviceCont .swiper-slide a{
		width: 80%;
		letter-spacing: 0.05em;
	}

}





