@charset "UTF-8";
/** keyvisual **/
.keyvisual{
	position: relative;
	overflow: hidden;
	z-index: 1;
	background-image: url(../images/visual_bg.jpg);
	background-size:contain;
}
.keyvisual .keyvisualIn{
	height:auto;
}
.keyvisual .keyvisualIn .pcImg img{
	width:105%;
	z-index: 1;
}
.keyvisual .keyvisualIn .pcImg{
	display:block;
}
.keyvisual .keyvisualIn .spImg{
	display:none;
}
.keyvisual .keyvisualIn img{
	width:100%;
	height:auto;
}
.keyvisual.load .keyvisualIn .pcImg{
	opacity: 0;
}
.keyvisual.load .keyvisualIn .pcImg li{
	z-index:0!important;
	visibility: hidden;
}
.keyvisual.load .keyvisualIn .pcImg li.prev{
	z-index:8!important;
	visibility: visible!important;
}
.keyvisual.load .keyvisualIn .pcImg li.next{
	z-index:9!important;
	visibility: visible!important;
}
.keyvisual.load .keyvisualIn .pcImg li.active{
	z-index:10!important;
	visibility: visible!important;
}
.keyvisual.load .keyvisualIn .pcImg img{
	margin-right: -40px;
	-webkit-animation-name: vertical_float;
	-webkit-animation-duration: 12s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: normal;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-name: vertical_float;
	-moz-animation-duration: 12s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: normal;
	-moz-animation-timing-function: ease-in-out;
	animation-name: vertical_float;
	animation-duration: 12s;
	animation-iteration-count: infinite;
	animation-direction: normal;
	animation-timing-function: ease-in-out
}
@-webkit-keyframes vertical_float {
	0%   {-webkit-transform: translate(0, 0);transform: translate(0, 0)}
	100% {-webkit-transform: translate(-40px, 0);transform: translate(-40px, 0)}
}
@-moz-keyframes vertical_float {
	0%   {-moz-transform: translate(0, 0);transform: translate(0, 0)}
	100% {-moz-transform: translate(-40px, 0);transform: translate(-40px, 0)}
}
@keyframes vertical_float {
	0%   {-webkit-transform: translate(0, 0);-moz-transform: translate(0, 0);transform: translate(0, 0)}
	100% {-webkit-transform: translate(-40px, 0);-moz-transform: translate(-40px, 0);transform: translate(-40px, 0)}
}
.keyvisual .keyvisualCopy{
	position: absolute;
	width: 100%;
	height: auto;
	left:0;
	top:0;
	z-index: 11;
}
.keyvisual .keyvisualCopy .animation,
.keyvisual .keyvisualCopy .pcCopy{
	display: block;
}
.keyvisual .keyvisualCopy .spCopy{
	display: none;
}
.keyvisual .keyvisualCopy .pcCopy{
	position: absolute;
	width: 100%;
	height: auto;
	left:0;
	top:0;
}
.keyvisual .keyvisualCopy .pcCopy img{
	position: absolute;
	width: 100%;
	height: auto;
	left:0;
	top:0;
}
.keyvisual.load .keyvisualCopy .pcCopy img {
	-webkit-animation: fadein 3s ease-in 0s forwards;
	-moz-animation: fadein 3s ease-in 0s forwards;
	animation: fadein 3s ease-in 0s forwards;
}
@-webkit-keyframes fadein {
	0%{opacity:0;}
	70%{opacity:0;}
	100% {opacity:1;}
}
@-moz-keyframes fadein {
	0%{opacity:0;}
	70%{opacity:0;}
	100% {opacity:1;}
}
@keyframes fadein {
	0%{opacity:0;}
	70%{opacity:0;}
	100% {opacity:1;}
}
.keyvisual .keyvisualCopy .animation{
	overflow: hidden;
	width: 100%;
}
.keyvisual .keyvisualCopy .animation #obt{
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}
.keyvisual .floatBnr{
	position: absolute;
	top: 34%;
	right: 15px;
	z-index: 11;
	margin-top: -81px;
	width: 162px;
	text-align: right;
}
.keyvisual .floatBnr p{
	float: right;
}
.keyvisual .floatBnr img{
	width: 100%;
	height: auto;
	max-width: 162px;
	min-width: 80px;
	margin-bottom: 20px;
}
.keyvisual .floatBnr:after{
	content:'.';
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.sp_floatBnr{
	display: none;
}

/** introduction **/
.introduction{
	display: table;
	width: 100%;
}
.introduction li{
	display: table-cell;
	float:left;
	width: 33.333%;
	position: relative;
	min-height:140px;
}
.introduction li a{
	display: table;
	width: 100%;
	color:#333;
	overflow:hidden;
}
.introduction li a:hover{
	text-decoration: underline;
}
.introduction li .image{
	display: table-cell;
	max-width: 227px;
	position: relative;
}
.introduction li dl{
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	text-align: left;
	position: relative;
	padding: 25px 15px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #f3f3f3;
}
.introduction li .image img{
	width: 100%;
	height: auto;
}
.introduction li .image {
	position: relative;
	overflow: hidden;
}
.introduction li .image::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background-color: rgba(255,255,255,.3);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.introduction li .image:hover::before {
	-webkit-animation: circle 1.5s;
	animation: circle 1.5s;
}
@-webkit-keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 600px;
		height: 600px;
	}
}
@keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 600px;
		height: 600px;
	}
}
.introduction li dl dt{
	font-size:22px;
	line-height: 1.2;
}
.introduction li dl:before {
	position: absolute;
	left:0;
	top:50%;
	margin: -10px 0 0 -9px;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-right: 10px solid #f3f3f3;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	z-index: 1;
}

@media screen and (min-width: 1024px) and (max-width: 1350px){
	.keyvisual .floatBnr {
		width: 150px;
    	top: 30%;
	}
	.keyvisual .floatBnr p{
		float: left;
		margin: 0px 10px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px){
	.introduction li dl dt{
		font-size:18px;
	}
	.keyvisual .floatBnr {
		display: none;
	}
	.sp_floatBnr{
		display: block;	
	}
	.sp_floatBnr .linkBtn{
		width: 90%;
		padding: 20px 0;
		margin: 0 auto;
	}
	.sp_floatBnr .linkBtn a{
		display: block;
		width: 100%;
		height: 20px;
		padding: 20px 0;
		text-align: center;
		color: #fff;
	}
	.sp_floatBnr .linkBtn a:nth-child(1){
		background: #888;
		margin-bottom: 20px;
	}
	.sp_floatBnr .linkBtn a:nth-child(2){
		background: #888;
	}
}
.introduction li dl dd{
	font-size:13px;
	margin-top: 10px;
}
.introduction li dl dd.sTitle{
	position: absolute;
	top:8%;
	left:15px;
	font-size:12px;
	margin-top: 0;
	color:#cc0000;
}
/** tit **/
.tit{
	text-align: center;
	margin-bottom: 10px;
}
.subTxt{
	text-align: center;
	color: #9F9F9F;
}
/** product **/
.product{
	display: inline-block;
	margin: 0 -40px;
	text-align: center;
}
.product li{
	display: inline-block;
	width: 190px;
	margin: 20px 40px 0;
	vertical-align: top;
}
.product:after{
	content:'.';
	display:block;
	height:0;
	font-size:0;
	clear:both;
	visibility:hidden;
}
.product li img{
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.product li a{
	display: block;
	color:#cc0000;
}
.product li a:hover{
	text-decoration: underline;
}
.product li dl{
	position: relative;
	overflow: hidden;
}
.product li dl .icon{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	top: 0;
}
.product li dl .image,
.product li dl .icon{
	overflow: hidden;
}
.product li dl .image img,
.product li dl .icon img{
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.product li dl .icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 20;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background-color: rgba(255,255,255,.3);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.product li dl .icon:hover::after {
	-webkit-animation: circle2 .75s;
	animation: circle2 .75s;
}
@-webkit-keyframes circle2 {
	50% {
		opacity: 1;
	}
	100% {
		width: 300px;
		height: 300px;
	}
}
@keyframes circle2 {
	50% {
		opacity: 1;
	}
	100% {
		width: 300px;
		height: 300px;
	}
}
.product li dl .text{
	width: 100%;
	text-align: center;
	margin-top: 10px;
	font-size: 16px;
}
.inlineBtn{
	text-align: center;
}
.inlineBtn li{
	display: inline-block;
	margin: 16px auto 0;
	float: none;
}

.newsList {
	margin-top: 20px;
}
#includenews{
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 20px;
}
#includenews p{
	border:1px solid #cc0000;
	padding: 20px;
	margin: 50px 0;
}

@media screen and (max-width: 768px){
	.tit{
		font-size: 26px;
	}
	/*** keyvisual ***/
	.keyvisual {
	background-image: url(../images/visual_bg_sp.jpg);
	background-size:contain;
	}
	.keyvisual_jp_ex {
	background-image: url(../images/visual_bg_2_sp.jpg) !important;
	}
	.keyvisual .keyvisualIn .pcImg{
		display: none;
	}
	.keyvisual .keyvisualIn .spImg{
		display: block;
	}
	.keyvisual.load .keyvisualIn .spImg{
		visibility:hidden;
		opacity: 0;
	}
	.keyvisual .keyvisualCopy {
		width: 100%;
		margin:0;
	}
	.keyvisual .keyvisualCopy .animation,
	.keyvisual .keyvisualCopy .pcCopy,
	.keyvisual .floatBnr{
		display: none;
	}
	.keyvisual .keyvisualCopy .spCopy{
		display: block;
	}
	.keyvisual.load .keyvisualIn .spCopy img{
		opacity: 1;
		-webkit-animation-name: copy_start;
		-webkit-animation-duration: 4s;
		-webkit-animation-iteration-count: 1;
		-webkit-animation-direction: normal;
		-webkit-animation-timing-function: ease;
		-moz-animation-name: copy_start;
		-moz-animation-duration: 4s;
		-moz-animation-iteration-count: 1;
		-moz-animation-direction: normal;
		-moz-animation-timing-function: ease;
		animation-name: copy_start;
		animation-duration: 3s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-timing-function: ease;
	}
	.sp_floatBnr{
		display: block;	
	}
	.sp_floatBnr ul{
		width: 100%;
		height: auto;
		margin: 20px auto;
		text-align: center;
	}
	.sp_floatBnr ul li{
	    display: inline-block;
	    width: 160px;
	    margin: 0px 8px;
	    border: 1px solid #ddd;
	    border-radius: 30px;
	}
	.sp_floatBnr ul li:nth-of-type(2){
		margin-left: 20px;
	}
	.sp_floatBnr ul li img{
		width: 100%;
	}
	.sp_floatBnr .linkBtn{
		width: 90%;
		padding: 20px 0;
		margin: 0 auto;
	}
	.sp_floatBnr .linkBtn a{
		display: block;
		width: 100%;
		height: 25px;
		padding: 15px 0 20px;
		font-size: 20px;
		text-align: center;
		color: #fff;
	}
	.sp_floatBnr .linkBtn a:nth-child(1){
		background: #888;
		margin-bottom: 20px;
	}
	.sp_floatBnr .linkBtn a:nth-child(2){
		background: #888;
	}

	@-webkit-keyframes copy_start {
		0%   {opacity: 0;}
		100% {opacity: 1;}
	}
	@-moz-keyframes copy_start {
		0%   {opacity: 0;}
		100% {opacity: 1;}
	}
	@keyframes copy_start {
		0%   {opacity: 0;}
		100% {opacity: 1;}
	}


	/*** introduction ***/
	.introduction li{
		display: block;
		float:none;
		width: 100%;
		min-height:auto;
	}
	.introduction li.case03{
		display: none;
	}
	.introduction li dl dt {
		font-size: 18px;
	}
	.introduction li dl dd {
		font-size: 12px;
	}
	.introduction li dl dd.sTitle{
		font-size: 10px;
	}
	.introduction li .image{
		width:50%;
	}
	.introduction li dl:before {
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
	}
	.introduction li.case01 dl{
		background-color: #fff;
	}
	/*** product ***/
	.product{
		margin: 0 -8px;
	}
	.product li{
		float: left;
		display: block;
		width:50%;
		margin: 20px 0 0;
		text-align: center;
	}
	.product li a{
		padding: 0 8px;
	}
}

