@charset "utf-8";
/*=============================================================
 contents Layout
=============================================================*/
#container:after{
	display: none;
}
#contents {
 padding: 0;
}
/* main
-------------------------------------------------------------*/
#main{
}
#main .box{
	position: relative;
}
#main .box .photo img{
	width: 100%;
	height: auto;
}
#main .boxTxt{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-100%);
}
#main .boxTxt .txt{
	padding: 10px 0 0;
	font-size: 24px;
	line-height: 1.45;
	text-shadow: 0px 0px 5px rgba(255,255,255,0.9), 0px 0px 7px rgba(255,255,255,0.8);
}

/* news
-------------------------------------------------------------*/
#news{
	margin: 0 0 60px;
	padding: 20px;
	background-color: #e1e7ee;
	text-align: center;
}
#newsInner{
	display: inline-block;
	text-align: left;
}
#newsInner dl{
	width: 100%;
	display: flex;
	max-width: 1460px;
	margin: 0 auto 0;
}
#newsInner dl dt{
	width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-left: 1px solid #121738;
	border-right: 1px solid #121738;
	box-sizing: border-box;
	color: #121738;
	font-size: 24px;
}
#newsInner dl dd{
	width: calc(100% - 200px);
	padding: 5px 0 5px 40px;
	box-sizing: border-box;
}
#newsInner dl dd li{
	padding: 5px 0;
}
#newsInner dl dd li a{
	width: 100%;
	display: flex;
}
#newsInner dl dd li span.date{
	width: 8em;
}
#newsInner dl dd li span.txt{
	width: calc(100% - 8em);
}
#newsInner dl dd p{
	margin: 15px 0 0;
	text-align: center;
}
#newsInner dl dd p a{
	display: inline-block;
	color: #121738;
	font-size: 19px;
	text-decoration: underline;
	font-weight: 700;
}

/* product
-------------------------------------------------------------*/
#product{
	padding: 0 20px 135px;
}
#product ul{
	width: 100%;
	max-width: 1460px;
	margin: 0 auto 0;
	display: flex;
	justify-content: space-between;
}
#product ul li{
	width: calc((100% - 1px) / 2);
}
#product ul li a{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #121738;
	z-index: 1;
	transition:all .6s;
}
#product ul li a:after{
	content: "";
	width: 44px;
	height: 44px;
	background: url("/img/arw_products.png") no-repeat 0 0;
	background-size: 100% 100%;
	position: absolute;
	right: 15px;
	bottom: 15px;
}
#product ul li a p{
	width: 100%;
	position: absolute;
	top: 12%;
	left: 7%;
	font-size: 28px;
	font-weight: 500;
	text-shadow: 0px 0px 5px rgba(255,255,255,0.9), 0px 0px 7px rgba(255,255,255,0.8);
	z-index: 3;
}
#product ul li a:hover{
	opacity: 1.0;
	z-index: 10;
	transform: scale(1.05);
}
/* about
-------------------------------------------------------------*/
#about{
	padding: 0 20px 135px;
	background: #f0f3f6 url("/img/bg_company.jpg") no-repeat 0 0;
	background-size: 100% auto;
}
#about ul{
	width: 100%;
	max-width: 1460px;
	margin: 0 auto 0;
	display: flex;
	justify-content: space-between;
}
#about ul li{
	width: calc((100% - 3px) / 4);
}
#about ul li a{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #121738;
	z-index: 1;
	transition:all .6s;
}
#about ul li a:hover figure img{
	transition:all .6s;
}
#about ul li a p{
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
	font-weight: 500;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.9), 0px 0px 7px rgba(0,0,0,0.8), 0px 0px 8px rgba(0,0,0,0.7);
	z-index: 3;
}
#about ul li a:hover{
	opacity: 1.0;
	z-index: 10;
	transform: scale(1.05);
}
/* TTL
-------------------------------------------------------------*/
section h2{
	padding: 60px 0;
	font-size: 48px;
	color: #121738;
	text-align: center;
	letter-spacing: 0.03em;
}
/* BTN
-------------------------------------------------------------*/
.btnCategory{
	width: 100%;
	max-width: 400px;
	margin: 60px auto 0;
}
.btnCategory a{
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 0 45px;
	background-color: #121738;
	border-radius: 100px;
	font-size: 22px;
	color: #fff;
}
.btnCategory a:before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 0 9px 15px;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:1023px){

/* main
-------------------------------------------------------------*/
#main{
	background: #eee;
}
#main .box{
	position: relative;
}
#main .box .photo img{
	width: 100%;
	height: auto;
}
#main .boxTxt{
	position: static;
	transform: translate(0,0);
	padding: 20px;
}
#main .boxTxt .ttl{
	width: 200px;
	margin: 0 auto;
}
#main .boxTxt .txt{
	font-size: 18px;
}
#main .boxTxt .txt span{
	display: inline-block;
}
/* news
-------------------------------------------------------------*/
#news{
	margin: 0 0 20px;
}
#newsInner{
	display: block;
}
#newsInner dl{
	width: 100%;
	display: block;
}
#newsInner dl dt{
	width: 100%;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	padding: 0 0 10px;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #121738;
	font-size: 20px;
}
#newsInner dl dt span+span{
	margin: 0;
}
#newsInner dl dt span:first-child{
	margin: 5px 0;
}
#newsInner dl dd{
	width: calc(100%);
	padding: 10px 0 0;
}
#newsInner dl dd li{
	padding: 5px 0;
	line-height: 1.45em;
}
#newsInner dl dd li a{
	width: 100%;
	display: block;
}
#newsInner dl dd li span.date{
	display: block;
	width: auto;
}
#newsInner dl dd li span.txt{
	display: block;
	width: calc(100%);
}
#newsInner dl dd p a{
	font-size: 16px;
}
/* product
-------------------------------------------------------------*/
#product{
	padding: 0 20px 80px;
}
#product ul{
	display: block;
}
#product ul li{
	width: calc(100%);
	padding: 0 0 1px;
}
#product ul li a:after{
	width: 22px;
	height: 22px;
	right: 10px;
	bottom: 10px;
}
#product ul li a p{
	font-size: 18px;
}
#product ul li a:hover{
	transform: scale(1.0);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}
/* about
-------------------------------------------------------------*/
#about{
	padding: 0 20px 80px;
}
#about ul{
	flex-wrap: wrap;
}
#about ul li{
	width: calc((100% - 1px) / 2);
	padding: 0 0 1px;
}
#about ul li a p{
	font-size: 18px;
}
#about ul li a:hover{
	transform: scale(1.0);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}
#about ul li a:hover figure img{
	opacity: 1;
}
/* TTL
-------------------------------------------------------------*/
section h2{
	padding: 30px 0;
	font-size: 28px;
}
/* BTN
-------------------------------------------------------------*/
.btnCategory{
	margin: 30px auto 0;
}
.btnCategory a{
	height: 50px;
	font-size: 16px;
}
.btnCategory a:before{
	border-width: 7px 0 7px 11px;
}
}

