@charset "UTF-8";

/* :basic
-----------------------------------------------------------------------------*/
html
{
    height:100%;
}
body
{
	font-family: メイリオ, Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
	word-break: normal;
	word-wrap: break-word;
    height: 100%;
	background-color: #FFFFFF;
	color: #323232;
	font-size: 14px;
	line-height: 1.5;
}
img
{
	margin: 0;
	vertical-align: bottom;
}
.imgbox img
{
	max-width: 100%;
}

a:link {
	color: #36C;
	text-decoration: none;
}
a:visited {
	color: #36C;
	text-decoration: none;
}
a:hover {
	color: #47459A;
	text-decoration: underline;
}

#head {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
.head_l
{
	position: relative;
	float: left;
}
.head_r
{
	position: relative;
	float: right;
}

#head .logo
{
	float: left;
	margin: 18px 10px 10px 18px;
}
#head .logo:hover
{
	opacity: 0.75;
}


.contact {
	margin: 10px 20px 15px 20px;
}
.contact a {
	display: block;
}
.contact a:hover {
	opacity: 0.8;
}

.snsbtn
{
	display: inline-block;
/*
	height: 20px;
*/
	min-height: 20px;
	overflow: hidden;
	margin: 5px;
	vertical-align: top;
}
.snsbtn_pc
{
	padding: 10px 5px 5px 10px;
	line-height: 0;
}
.snsbtn_mb
{
	float: right;
	margin: 10px 5px 0  5px;
}
.snsbtn_mb a
{
	display: inline-block;
	margin: 0 5px 10px 0;
}

.pdf_dl {
	font-weight: normal;
	text-align: right;
	font-size: 10px;
	padding: 0 20px 10px 10px;
}

@media all and (min-width: 768px)
{
	#head
	{
		min-height: 102px;
	}
}



.flexslider
{
	position: relative;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin-bottom: 0 !important;
	background: transparent !important;
}

.flex-direction-nav
{
	position: absolute;
	width: 100%;
	top: 50%;
}
.flex-control-nav
{
	bottom: -25px !important;
}
.flex-next
{
	position: absolute;
	left: auto !important;
	right: -25px !important;
}
.flex-prev
{
	left: -25px !important;
	right: auto !important;
}


.main
{
	background-color: #000000;
	color: #FFFFFF;
	padding-bottom: 100px;
}
.wrapper
{
	max-width: 1340px;
	margin: 50px auto 0 auto;
	background-image: url(../images/bg.png);
	background-position: top center;
	background-repeat: repeat-y;
}
.sect
{
	width: 90%;
	max-width: 900px;
	margin: 30px auto;
}
.topimg
{
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
}
.topimg_inner
{
	position: relative;
	height: 0;
	padding-top: 36.46%;
}
.topimg_l
{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 56.25%;
	text-align: left;
	opacity: 0;
}
.topimg_r
{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 56.25%;
	text-align: right;
	opacity: 0;
}
.topimg_c
{
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	bottom: -100vh;
	text-align: center;
	opacity: 0;
}
.topimg_c_inner
{
	width: 85%;
	max-width: 820px;
	margin: 0 auto;
}
@media all and (min-width: 640px)
{
	.topimg
	{
		padding: 50px 0 100px 0;
	}
}
@media all and (max-width: 639px)
{
	.wrapper
	{
		margin-top: 0;
	}
	.topimg_inner
	{
		padding-top: 160%;
	}
	.topimg_l
	{
		top: 0;
		left: 0;
		width: 100%;
	}
	.topimg_r
	{
		top: 50%;
		right: 0;
		bottom: 0;
		width: 100%;
	}
}


.ready .topimg_l
{
	animation-duration: 0.5s;
	animation-delay: 0.2s;
	animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
	animation-fill-mode: forwards;
	animation-name: slideInLeft;
}
.ready .topimg_r
{
	animation-duration: 0.5s;
	animation-delay: 0.2s;
	animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
	animation-fill-mode: forwards;
	animation-name: slideInRight;
}
.ready .topimg_c {
	animation-duration: 0.5s;
	animation-delay: 0.25s;
	animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
	animation-fill-mode: forwards;
	animation-name: slideInCenter;
}

@keyframes slideInLeft
{
	from {
		opacity: 0;
		transform: translateX(-120%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes slideInRight
{
	from {
		opacity: 0;
		transform: translateX(120%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media all and (min-width: 640px)
{
	@keyframes slideInCenter
	{
		from {
			opacity: 0;
			bottom: -100vh;
		}
		to {
			opacity: 1;
			bottom: -75px;
		}
	}
}
@media all and (max-width: 639px)
{
	@keyframes slideInCenter
	{
		from {
			opacity: 0;
			bottom: -100vh;
		}
		to {
			opacity: 1;
			bottom: 40%;
		}
	}
	.topimg_inner {
		overflow: hidden;
	}
}


.brands
{
	max-width: 480px;
	margin: 20px auto;
}

.sect p
{
	margin: 15px 0;
}

.lead
{
	text-align: center;
	font-weight: bold;
	color: #e60616;
}

p.lead_top_u
{
	font-size: 24px;
	margin: 40px 0 -20px 0;
}
p.lead_top_d
{
	font-size: 96px;
}
.secthd
{
	font-size: 36px;
}
.sectbd p
{
	font-size: 18px;
	font-weight: bold;
}
@media all and (max-width: 839px)
{
	p.lead_top_u
	{
		font-size: 14px;
		margin-top: 20px;
	}
	p.lead_top_d
	{
		font-size: 10vw;
	}
	.secthd
	{
		font-size: 18px;
	}
	.sectbd p
	{
		font-size: 14px;
	}
}

.sectmark
{
	width: 100px;
	margin: 20px auto;
}
@media all and (max-width: 767px)
{
	.sectmark
	{
		width: 80px;
	}
}

.feats3u
{
	padding-top: 30px;
}
.feats3u .feat
{
	box-sizing: border-box;
	border: 2px solid #ffffff;
	border-radius: 10px;
	margin: 10px auto;
	max-width: 400px;
	font-size: 13px;
}
.feats3u .featmark
{
	position: relative;
}
@media all and (min-width: 768px)
{
	.feats3u
	{
		display: flex;
		justify-content: space-between;
	}
	.feats3u .feat
	{
		margin: 0 auto;
		width: 32%;
		padding: 10px 10px 0 10px;
		text-align: center;
	}
	.feats3u .featmark
	{
		width: 90px;
		margin: -40px auto 0 auto;
	}
}
@media all and (max-width: 767px)
{
	.feats3u
	{
		align-items: center;
	}
	.feats3u .feat
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px;
		text-align: left;
	}
	.feats3u .featmark
	{
		width: 45px;
	}
	.feats3u .feat p
	{
		width: calc(100% - 50px);
		margin: 0;
	}
}
@media all and (min-width: 768px) and (max-width: 1020px)
{
	.feats3u .feat p .spbr
	{
		display: none;
	}
}

.feats3d
{
	padding-top: 30px;
}
.feats3d .feat
{
	box-sizing: border-box;
	border: 2px solid #ffffff;
	border-radius: 10px;
	overflow: hidden;
	margin: 10px auto;
	max-width: 400px;
	font-size: 13px;
}
.feat3dhd
{
	font-size: 18px;
	font-weight: bold;
	line-height: 1.25;
	color: #FFFFFF;
	text-align: center;
	padding: 4px 0;
}
.feat3dbd
{
	padding: 10px 10px 0 10px;
}
.feats3d .feat.feat3d_0
{
	border-color: #e3e3e4;
}
.feats3d .feat.feat3d_1
{
	border-color: #ff2b66;
}
.feats3d .feat.feat3d_2
{
	border-color: #5a11c7;
}
.feats3d .feat.feat3d_3
{
	border-color: #0411ff;
}
.feats3d .feat.feat3d_0 .feat3dhd
{
	background-color: #e3e3e4;
	color: #000000;
}
.feats3d .feat.feat3d_1 .feat3dhd
{
	background-color: #ff2b66;
}
.feats3d .feat.feat3d_2 .feat3dhd
{
	background-color: #5a11c7;
}
.feats3d .feat.feat3d_3 .feat3dhd
{
	background-color: #0411ff;
}

@media all and (min-width: 768px)
{
	.feats3d
	{
		display: flex;
		justify-content: space-between;
	}
	.feats3d .feat
	{
		margin: 0 auto;
		width: 32%;
		text-align: center;
	}
	.feats3d .featmark
	{
		width: 70px;
		margin: 10px auto;
	}
	.feats3d .featmark_w
	{
		width: 140px;
	}
}
@media all and (max-width: 767px)
{
	.fig4
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.fig4 .imgbox
	{
		width: 180px;
		margin-right: 15px;
	}
	.feats3d
	{
		flex: 1;
		align-items: center;
		padding: 0;
	}
	.feat3dhd
	{
		font-size: 14px;
		padding: 0;
	}
	.feats3dbd
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.feats3d .featmark
	{
		width: 45px;
		margin: 0 auto 10px auto;
	}
	.feats3d .featmark_w
	{
		width: 90px;
	}
	.feats3d .feat p
	{
		margin: 0 0 5px 0;
		text-align: center;
	}
}


.anime-container
{
    position: relative;
    width: 100%;
    padding-top: 26.67%;
    height: 0;
    overflow: hidden;
}

.anime-container iframe
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.license
{
	max-width: 560px;
	margin: 20px auto 50px auto;
}
.license li
{
	list-style: disc;
	margin: 10px 0 10px 25px;
}










.btBlock {
	text-align:center;
	padding: 50px 0;
	clear:both;
}
.btBlock #btn_caution {
	font-size: 12px;
	line-height: 1.25;
	color: #666666;
	margin: 10px auto;
	max-width: 80%;
}
.btBlock .formBt {
	display: inline-block;
	font-weight: bold;
	border-radius: 8px;
	overflow: hidden;
	margin: 10px;

	background-color: #000000;
	color: #FFFFFF;
}
.btBlock .formBt:hover {
	opacity: 0.8;
	cursor: pointer;
}
.btBlock .formBt a {
	display: inline-block;
	padding: 20px 30px;
	line-height: 1;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	letter-spacing: 1px;

	min-width: 240px;
}

.company {
	margin: 0 auto;
	line-height: 1.5;
	max-width: 730px;
	padding: 0 10px;
}
.company h2 {
	padding: 8px 10px;
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 15px;
	color: #000;
	border: 1px solid #CCCCCC;
	border-radius: 4px;

	/*For Old WebKit*/
	background: -webkit-linear-gradient( top, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 100% );
	/*For Modern Browser*/
	background: linear-gradient( to bottom, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 100% );
}
.company h2 span {
	border-left: 4px solid #CC0000;
	padding: 4px 8px;
	display: inline-block;
	line-height: 1;
}
.company table {
	border-left: #CCC solid 1px;
	border-top: #CCC solid 1px;
	font-size: 12px;
}
.company th {
	border-right: #CCC solid 1px;
	border-bottom: #CCC solid 1px;
	padding: 6px 10px;
	width: 20%;
	white-space: nowrap;
	background-color: #F3F4F1;
}
.company td {
	border-right: #CCC solid 1px;
	border-bottom: #CCC solid 1px;
	padding: 6px 10px;
}


.nwlinks
{
	margin: 20px auto;
	text-align: center;
	border-top: 1px solid #F0F0F0;
	border-bottom: 1px solid #F0F0F0;
	padding: 5px 0;
}
.nwlinks ul
{
	text-align: center;
	font-size: 0;
}
.nwlinks li
{
	list-style: none;
	color: #999999;
	font-size: 14px;
	line-height: 1;
	margin: 0;
}
.nwlinks li a
{
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	color: #999999;
}
.nwlinks li a:hover
{
	color: #3366CC;
	text-decoration: underline;
}
@media all and (min-width: 768px)
{
	.nwlinks li
	{
		display: inline-block;
	}
	.nwlinks li:not(:last-of-type)::after
	{
	    content: "｜";
	    margin: 0 5px;
	}
}



#footer {
	text-align: center;
	padding: 40px 0 60px;
	font-size: 11px;
	color: #999;
}




.clear {
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	margin: 0px;
}

@media all and (max-width: 1599px)
{
	.lgonly
	{
		display: none;
	}
}
@media all and (min-width: 1600px)
{
	.mdonly
	{
		display: none;
	}
}

@media all and (max-width: 767px)
{
	.lgonly,
	.mdonly,
	.pconly
	{
		display: none;
	}
}
@media all and (min-width: 768px)
{
	.mbonly
	{
		display: none;
	}
}

@media all and (max-width: 639px)
{
	.tbonly
	{
		display: none;
	}
}
@media all and (min-width: 640px)
{
	.smonly
	{
		display: none;
	}
}


