/*--------------------------------
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, li, summary{
    list-style-type: none;
}
summary::-webkit-details-marker {
  display: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: #f0f0f0;
	font-size: 24px;
	color: #fff;
	-webkit-text-size-adjust: 100%;
	font-family: sans-serif;
}
a,button{
	transition: .3s;
}
a:hover,button:hover{
	opacity:.6;
}
.wrap{
	margin: 0 auto;
	width: 100%;
	max-width: 750px;
	position: relative;
	overflow: hidden;
	background: url(../images/bg.jpg) repeat center / 100% auto;
}
img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.inner-txt{
	padding: 200% 0 0 0;
	display: block;
}
/*--------------------------------
Header
--------------------------------*/
.top{
	position: relative;
	background: #000;
}
.logo-link{
	display: block;
}

/*Main
--------------------------------------------------------------------------------------------------------------*/
.content-head{
	position: relative;
}
.content-head-txt{
	margin: auto;
	padding: 2%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.content03{
	padding: 4% 0;
}
.general-txt{
	padding: 0 2% 4%;
}
.content02 .general-txt, .content04 .general-txt{
	padding: 4% 2%;
}
.btn-row{
	padding: 8% 2%;
	background: rgba(0,0,0,.6);
}
.reg-btn{
	display: block;
	animation: pulse 1.5s ease 2s infinite both;
}
.general{
	margin: 4%;
	padding: 4% 4% 0;
	background: rgba(255,255,255,.8);
	color: #333;
}
.general div.general{
	margin: 0;
	padding: 0;
	background: none;
}
.general .heading-txt{
	padding: 4% 0 0;
	text-align: center;
	font-weight: bold;
}
.general-item{
	padding: 8% 0;
}
.general-item h3{
	margin: 0 0 4%;
	padding: 2% 0;
	color: #ff6699;
	font-size: 1.1em;
	font-weight: bold;
	border-bottom: 2px solid #f69;
}
.general-item h4{
	margin: 0 0 4%;
	padding: 2% 0;
	color: #905100;
	font-size: 1.1em;
}
.general-item p{
	padding: 0 0 4%;
	font-size: .9em;
	line-height: 1.8;
}
.wrap .lpprtitle{
	margin: 10px;
}

/*--------------------------------
Animation
--------------------------------*/
@keyframes pulse { 
	0% { transform: scale(1); } 
	10% { transform: scale(0.9); } 
	25% { transform: scale(1); } 
	30% { transform: scale(0.98); } 
	35% { transform: scale(1); } 
} 
/*--------------------------------
Footer
--------------------------------*/
.footer{
	padding: 4% 4% 0;
	text-align: center;
	background: #3e2607;
	color: #fff;
}
.gnav-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.gnav-item{
	width: 33%;
	text-align: center;
}
.nav-link{
	padding: 4% 0;
	color: #fff;
	display: block;
	font-size: .9em;
	text-decoration: underline;
}
.copy{
	padding: 4% 0;
	font-size: .9em;
	line-height: 1.2;
}
@media screen and (max-width:767px) {
	/*--------------------------------
	global element
	--------------------------------*/
	body{
		font-size: 16px;
	}
	/*--------------------------------
	Contents
	--------------------------------*/
	/*--------------------------------
	Footer
	--------------------------------*/
	.footer{
		padding: 4% 0;
	}
	.gnav-item{
		width: 100%;
		border-bottom: 1px solid rgba(0,0,0,.1);
	}
	.nav-link{
		padding: 4% 0;
	}
	.copy{
		padding: 4% 0;
		font-size: .8em;
	}
}
@media screen and (max-width:320px) {
	/*--------------------------------
	global element
	--------------------------------*/
	body{
		font-size: 13px;
	}
}