/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,small{
	display: block;
}
ul{
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 200;
}
body{
	line-height: 1;
}
a{
	text-decoration: none;
}
img{
	vertical-align: middle;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
select,option,input,textarea,button{
	font: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border-radius: 0;
}
blockquote::before,blockquote::after,q::before,q::after{
	content: '';
	content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
	cursor: pointer;
}
:focus{
	outline: none;
}

/*--------------------------------
global element
--------------------------------*/
html{
	width: 100%;
	height: 100%;
}
body{
	width: 100%;
	height: 100%;
	background: #000;
	font-size: 16px;
	color: #fff;
	-webkit-text-size-adjust: 100%;
	font-family: "M PLUS 1p",sans-serif;
	animation: fade-in .3s ease 0s forwards;
}
a,button{
	transition: .3s;
}
a:hover,button:hover{
	opacity:.6;
}
.wrap{
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 768px;
	position: relative;
	/*opacity: 0;
	animation: fade-in 1s ease 7.5s forwards;*/
}
.content-img{
	margin: 0 auto;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.inner-txt{
	padding: 200% 0 0 0;
	display: block;
}
/*--------------------------------
Header
--------------------------------*/
.top{
	margin: 0 auto;
	width: 100%;
	max-width: 768px;
	background: url(../images/bg_top.jpg) no-repeat center;
	background-size: cover;
	position: relative;
}
.top-inner{
	opacity: 0;
	background: #000;
	animation: fade-in 2s ease 1s forwards;
}

.catch{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.catch:nth-of-type(1){
	animation: fade-in .5s ease 4s forwards;
}
.catch:nth-of-type(2){
	animation: fade-in .5s ease 6s forwards;
}
.logo{
	opacity: 0;
	animation: fade-in 1s ease 7.5s forwards;
}
/*--------------------------------
Content
--------------------------------*/
.content{
	opacity: 0;
}
.fade-in{
	animation: fade-in .5s ease .1s forwards;
}
.intro{
	background: url(../images/bg_intro.png) #262626;
	background-size: 32px;
}
.about{
}
.heading{
	padding: 16px 0 0 0;
	background: #000;
}
.heading-txt{
	margin: 0 16px;
	padding: 0 0 0 48px;
	border-top: 5px solid #333;
	border-bottom: 2px solid #f03;
	line-height: 48px;
	font-size: 1.2em;
	font-weight: bold;
	border-radius: 8px 0 0 0;
	position: relative; 
}
.heading-txt::before{
	width: 32px;
	height: 44px;
	content: "";
	background: #f03;
	position: absolute;
	top: -5px;
	left: 0;
	z-index: 2;
}
.heading-txt::after{
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	border-width: 0 16px 8px 16px;
	border-color: transparent transparent #000 transparent;
	position: absolute;
	top: 32px;
	left: 0;
	z-index: 3;
}
.hl-txt{
	color: #f03;
	font-weight: bold;
}
.general{
	padding: 16px 16px 0 16px;
}
.general-txt{
	padding: 6px 4px;
	line-height: 1.6;
}
.about .general-img{
	padding: 0 0 5px 0;
}
.slide{
	padding: 0 32px;
	.position: relative;
}
.slide-item{
	padding: 0 16px;
	text-align :center;
}
.slide-desc{
	padding: 8px;
	display: block;
	font-size: .8em;
}
.slide .content-img{
	border-radius: 8px;
	border: 1px solid #fff;
	text-align: center;
}
.slide .arrow{
	margin: auto 0;
	width: 24px;
	height: 24px;
	background: #999999;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
}
.slide .arrow::after{
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	position: absolute;
	top: 6px;
}
.slide .prev{
	left: 0;
}
.slide .prev::after{ 
	border-width: 6px 10px 6px 0;
	border-color: transparent #ffffff transparent transparent; 
	left: 5px;
}
.slide .next{ 
	right: 0;
}
.slide .next::after{ 
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #ffffff;
	left: 7px;
}
.slick-dots{
	margin: 16px 0 0 0;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slick-dots li{
	padding: 0 32px;
}
.slick-dots button{
	padding: 100% 0 0 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(255,255,255,.5);
	transform-origin: center;
}
.slick-dots .slick-active button{
	width: 18px;
	height: 18px;
	background: rgba(255,255,255,1);
}
.sub-head{
	margin: 0 0 16px;
	padding: 0 8px;
	font-size: 1.1em;
	color: #f03;
	font-weight: bold;
}
.sub-label{
	margin: 16px 0;
	padding: 0 8px;
	font-size: 1em;
	font-weight: bold;
	color: #999;
}
.general-list{
	padding: 16px 16px 0 24px;
	list-style-type: square;
}
.list-item{
	padding: 0 0 8px;
	line-height: 1.4;
	font-size: .9em;
}
.signature{
	padding: 8px 0 0;
	text-align: right;
}
.general-table{
	width: 100%;
	font-size: .9em;
	border: 1px solid #333;
	line-height: 1.2;
}
.table-head{
	padding: 8px;
	width: 30%;
	border: 1px solid #333;
	background: #222;
	font-weight: normal;
}
.table-data{
	padding: 8px;
	border: 1px solid #333;
}
.gnav{
	padding: 0 0 16px;
}
.gnav-item{
	padding: 8px 16px;
}
.nav-link{
	color: #fff;
	text-decoration: underline;
	font-size: .8em;
}

/*--------------------------------
Content2
--------------------------------*/
.howto{
	padding: 4% 4% 0;
	background: url(../images/bg_howto.webp) repeat center top / 100% auto;
}
.howto .heading-txt{
	padding: 4% 24%;
}
.howto-item{
	margin: 0 0 4%;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	color: #262626;
}
.howto-head{
	padding: 2%;
	background: url(../images/bg_howtohead.webp) no-repeat center top / 100% auto #cd4;
	text-align: center;
	color: #fff;
}
.howto-head-txt{
	padding: 2% 0;
	font-size: 1.2em;
	font-weight: bold;
}
.howto-head-sub{
	line-height: 1.4;
	font-size: .8em;
	font-weight: bold;
	color: #ffd700;
}
.howto-thumb{
	padding: 4% 4% 0;
}
.howto-item .general-txt{
	padding: 4%;
	text-align: center;
	font-weight: bold;
}
.howto-item:nth-of-type(1) .general-txt:nth-of-type(1){
	padding: 2% 2% 2% 2%;
	font-size: 14px;
}
.howto-item:nth-of-type(1) .general-txt:nth-of-type(1) .hl-txt{
	font-size: 1.2em;
}
.howto-item:nth-of-type(1) .general-txt:nth-of-type(2){
	color: #00a0e9;
}
.howto-item:nth-of-type(2) .general-txt{
	text-align: left;
	color: #00a0e9;
}
.howto-item:nth-of-type(3) .general-txt{
	color: #00a0e9;
}
.howto .btn-row{
	padding: 0 0 8%;
}



/*--------------------------------
Button
--------------------------------*/
.btn-row{
	padding: 15px 15px 25px 15px;
	background: #000;
}
.reg-btn{
	padding: 0 12px 0 0;
	height: 48px;
	background-image: url(../images/icon_btn.png), linear-gradient(to bottom, rgba(255,0,51,1) 0%,rgba(179,0,36,1) 100%);
	background-repeat: no-repeat, repeat;
	background-size: 24px, 100%;
	background-position: right 12px top 12px, center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	box-shadow: 0 3px 0 rgba(255,255,255,.5) inset;
	font-size: 1.4em;
	font-weight: bold;
	color: #fff;
}
/*--------------------------------
Footer
--------------------------------*/
.footer{
	margin: 0 auto;
	padding: 16px 0;
	width: 100%;
	text-align: center;
	color: #c03;
}
.copy{
	padding: 5px 0;
	width: 100%;
	font-size: 14px;
}
/*--------------------------------
Animation
--------------------------------*/
@keyframes fade-in{
	0% {opacity: 0;filter: blur(8px);}
	100% {opacity: 1;filter: blur(0);}
}
@media screen and (max-width: 320px) { 
	.slide{
		padding: 0 16px;
	}
	.btn-row{
		padding: 16px;
	}
	.btn-desc{
		font-size: .9rem;
	}
}
@media screen and (min-width: 768px) { 
	body{
		font-size: 21px;
	}
	.intro{
		padding: 0;
	}
	.about{
		padding: 0;
	}
	.heading{
		padding: 32px 0 0 0;
	}
	.heading-txt{
		margin: 0 32px;
	}
	.general{
		padding: 32px 32px 0 32px;
	}
	.general-txt{
		padding: 16px 16px 32px 16px;
	}
	.about .general-img{
		padding: 0 0 32px 0;
	}
	.reg-btn{
		height: 88px;
		border-radius: 44px;
		background-size: 48px, 100%;
		background-position: right 20px top 20px, center;
		font-size: 2em;
	}
	.sub-head{
		padding: 0 16px;
	}
	.sub-label{
		padding: 0 16px;
	}	
	.table-head{
		padding: 16px;
	}
	.table-data{
		padding: 16px;
	}
	.general-list{
		padding: 16px 16px 0 32px;
	}
	.gnav-list{
		display: flex;
		justify-content: center;
	}
}