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

html,
body {
	padding: 0;
	margin: 0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
img {
	width: 100%;
}
ul,li {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1,h2,h3 {
	padding: 0;
	margin: 0;
	font-weight:normal;
}

#br {
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	max-width: 1280px;
}
.top {
	position: relative;
	box-sizing: border-box;
	padding: 65px 50px 30px 50px;
}
.top h1 {
	width: 42%;
	margin: 0% auto;
}
.top .title {
	width: 25%;
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translate(0,-50%);
}
@media screen and (max-width: 768px) {
	.top {
		padding: 25px 25px 0;
	}
	.top h1 {
		width: 76%;
	}
	.top .title {
		width: 35%;
		right: 25px;
	}
	
}
.concept {
	position: relative;
	font-size: 10px;
	box-sizing: border-box;
	padding: 25px 50px;
	line-height: 2.2
}
@media screen and (max-width: 768px) {
	.concept {
		font-size: 9px;
		padding: 25px;
		line-height: 1.6;
	}	
}

.cate {
	text-align: center;
	font-size: 16px;
	padding: 0px 50px 50px;
	position: relative;
}
@media screen and (max-width: 768px) {
	.cate {
		text-align: center;
		font-size: 12px;
		padding: 5px 25px 25px 25px;
		position: relative;
	}
	
}

.contents {
	position:relative;
}
.contents ul {
	position:relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
}
.contents li {
	position: relative;
	box-sizing: border-box;
	padding: 50px;
}
.contents li .img {
	box-sizing: border-box;
	border: 1px solid #ddd;
	line-height:0;
}
.contents li .data {
	margin-top: 5px;
	font-size: 12px;
}
.contents li .data .time {
	color: #999;
	display: block;
	margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
	.contents ul {
		position:relative;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
	.contents li {
		position: relative;
		box-sizing: border-box;
		padding: 25px;
	}
	.contents li .data {
		margin-top: 5px;
		font-size: 10px;
	}
	.contents li .data .time {
		color: #999;
		display: block;
		margin-bottom: 5px;
	}

}

.contents::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
	
}

.contents::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
	
}
.contents ul::before {
	content: "";
	position: absolute;
	top: 0;
	left: 33%;
	width: 1px;
	height:100%;
	background: #000;
	
}
.contents ul::after {
	content: "";
	position: absolute;
	top: 0;
	left: 66%;
	width: 1px;
	height:100%;
	background: #000;
}
.contents ul li::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0%;
	width: 100%;
	height:1px;
	background: #000;
}
@media screen and (max-width: 768px) {
	.contents ul::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		width: 1px;
		height:100%;
		background: #000;

	}
	.contents ul::after {
		display: none;
	}
	
}

.anim {
	opacity: 0;
	transition: 2s all 0s ease;
}
.anim.ac {
	opacity: 1;
}



.foot {
	margin: 5% auto;
	max-width: 150px;
	width: 40%;
}
@media screen and (max-width: 768px) {
	.foot {
		margin: 15% auto;
		max-width: 120px;
	}
	
}

/*////pcview////*/
   .spview {
        display: none;
    }    
    .pcview {
        display: block;
    }
@media only screen and (max-width: 768px)  {
   .spview {
        display: block;
    }    
   .pcview {
        display: none;
    }    
}



