/*--------------------------------
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;
	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;
	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: #111;
	font-size: 24px;
	color: #fff;
	font-family: serif;
}
a,button{
	transition: .3s;
}
a:hover,button:hover{
	opacity:.6;
}
.wrap{
	margin: 0 auto;
	width: 100%;
	max-width: 768px;
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: fade-in .3s ease .3s forwards;
	background: url(../images/bg.webp) repeat center top / 100% auto #000;
}
.content-img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.inner-txt{
	padding: 200% 0 0 0;
	display: block;
}
.clear{
	margin: 0;
	padding: 0;
	clear: both;
}
/*--------------------------------
Header
--------------------------------*/
.top{
	margin: 0 auto;
	width: 100%;
	max-width: 768px;
	height: 100dvh;
	background: url(../images/bg_top.webp) no-repeat center top / cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: translate3d(0,0,0);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
}
.slide-up{
	animation: slide-up .9s ease 0s forwards;
}
.top .logo{
	padding: 4% 16%;
}
.top .logo .content-img{
	height: auto;
}
.top-desc{
	padding: 4%;
	text-align: center;
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.top .btn-row{
	padding: 0 8% 4%;
}
.top-btn .content-img{
	height: auto;
}
.top .btn-desc{
	padding: 2% 0 0;
	font-size: .7em;
}
.sub-top{
	padding: 4% 0;
	position: relative;
	text-align: center;
}
.sub-top .logo{
	padding: 0;
	height: 64px;
}
.logo-link{
	padding: 0 4%;
	height: 64px;
	display: block;
}
.logo-link .content-img{
	margin: 0 auto;
	width: auto;
}
/*--------------------------------
Contents
--------------------------------*/
.main{
	display: none;
	opacity: 0;
}
.show{
	animation: fade-in .6s ease .6s forwards;
	display: block;
}
.content{
	position: relative;
}
.heading{
	padding: 4% 0 8%;
}
.heading-txt{
	padding: 2%;
	font-size: 1.4em;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
}
.content-head{
	padding: 0 0 4%;
}
.intro{
	padding: 4% 4% 8%;
	background: url(../images/bg_intro.webp) no-repeat bottom right/ 50% auto;
}
.intro .content-inner{
	padding: 4%;
	border-left: 2px solid #c00;
	border-bottom: 2px solid #c00;
}
.about{
	margin: 0 4% 4%;
	padding: 4% 0 8%;
	border-bottom: 2px solid #c00;
}
.about .content-head{
	margin: 0 0 4%;
	padding: 4%;
	border-left: 2px solid #c00;
}
.about-bottom{
	padding: 4%;
	background: url(../images/bg_about_bottom.webp) no-repeat center / cover;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.8;
}
.case .content-head{
	padding: 4%;
}
.case-item .general-txt{
	margin: 0 4% 8%;
	padding: 4% 2%;
	border-bottom: 2px solid #999;
}
.case-head{
	padding: 49% 0 0 0;
	position: relative;
}
.case-item:nth-of-type(1) .case-head{
	background: url(../images/img_case01.webp) no-repeat center  top / 100% auto;
}
.case-item:nth-of-type(2) .case-head{
	background: url(../images/img_case02.webp) no-repeat center  top / 100% auto;
}
.case-item:nth-of-type(3) .case-head{
	background: url(../images/img_case03.webp) no-repeat center  top / 100% auto;
}
.case-head-txt{
	padding: 0 6% 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: #a6a6a6;
	font-size: 1.1em;
	line-height: 1.8;
}
.case-item:nth-of-type(3) .general-txt{
	border-bottom: 2px solid #c00;
}
.howto .content-head{
	margin: 0 0 4%;
	padding: 4%;
}
.howto .howto-desc{
	padding: 0 4% 4%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.howto-item{
	margin: 0 4% 4%;
	padding: 4%;
	background: url(../images/bg_howto_item.webp) no-repeat center / cover;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
.howto-item:nth-of-type(3){
	margin: 0 4%;
}
.howto-item .content-inner{
	padding: 2% 0 2% 4%;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.howto-head-txt{
	padding: 0 0 2%;
	color: #c00;
	text-shadow: 2px 2px 2px #000, -2px 2px 2px #000, 2px -2px 2px #000, -2px -2px 2px #000;
	font-size: 1.1em;
	font-weight: bold;
}
.howto-item .general-txt{
	padding: 0;
	flex-grow: 1;
	line-height: 1.4;
	display: flex;
	align-items: center;
}
.howto-ct{
	width: 20%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #c00;
	font-size: 1.2em;
}
.howto .howto-bottom{
	margin: 0 4% 8%;
	padding: 8% 2%;
	background: url(../images/bg_howto.webp) no-repeat right / contain;
	border-bottom: 2px solid #c00;
}
.review{
	padding: 4%;
}
.review .content-head{
	margin: 0 0 4%;
	padding: 4%;
}
.review-item{
	margin: 0 0 4%;
	padding: 0 4%;
	border-bottom: 2px solid #999;
}
.review-item:nth-of-type(2){
	border-bottom: 2px solid #c00;
}
.review-head{
	padding: 0 0 4%;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
.review-head-txt{
	padding: 0 0 0 4%;
	flex-grow: 1;
	font-size: 1em;
	line-height: 1.4;
}
.review-thumb{
	width: 16%;
}
.wrapup{
	padding: 4%;
	text-align: center;
}
.wrapup .content-head-txt{
	padding: 4%;
}
.wrapup .btn-desc{
	padding: 0 0 2%;
	font-size: 1.1em;
	color: #c00;
}
.general-txt{
	padding: 0 0 4%;
	line-height: 1.6;
}
.wrap .lpprtitle{
	margin: 10px;
}
.general{
	padding: 0 4% 4%;
}
.general .general-item{
	margin: 0 0 4%;
}
.general-item .general{
	padding: 0;
}
.general-item h3{
	margin: 0 0 4%;
	padding: 2% 0;
	font-size: 1.1em;
	font-weight: bold;
	border-bottom: 2px solid #c00;
}
.general-item h4{
	margin: 0 0 4%;
	padding: 2% 0;
	color:  #c00;
	font-size: 1.1em;
}
.general .general-txt, .general .general-item p{
	margin: 0 0 4%;
	font-size: .9em;
	line-height: 1.6;
}
.general-table{
	margin: 4% 0 0;
	font-size: .9em;
	line-height: 1.4;
	border-top: 1px solid #000;
}
.table-row{
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
}
.table-head{
	padding: 2%;
	width: 25%;
	font-weight: normal;
	background: #111;
}
.table-data{
	padding: 2%;
	background: rgba(0,0,0,.2);
}
.w100{
	width: 100%;
}
.hl-txt{
	color: #c00;
}
/*--------------------------------
Button
-------------------------------*/
.btn-row{
	margin: 0 auto;
	padding: 8% 0 4%;
	width: 100%;
	max-width: 768px;
	text-align: center;
}
.reg-btn{
	margin: 0 auto;
	display: block;
	position: relative;
}
.caution-txt{
	padding: 2% 0 0;
	font-size: .7em;
	line-height: 1.4;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
/*--------------------------------
Footer
--------------------------------*/
.footer{
	padding: 4% 4% 0;
	text-align: center;
	background: #300;
	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.4;
}
/*--------------------------------
POPUP
--------------------------------*/
/*--------------------------------
Animation
--------------------------------*/
@keyframes fade-in{
	0% {opacity: 0;filter: blur(4px);}
	100% {opacity: 1;filter: blur(0);}
}
@keyframes slide-up{
	0% {transform: translate3d(0,0,0)}
	100% {transform: translate3d(0,-100%,0)}
}
@media screen and (max-width:767px) {
	/*--------------------------------
	global element
	--------------------------------*/
	body{
		font-size: 18px;
	}
	/*--------------------------------
	Header
	--------------------------------*/
	.top{
		justify-content: space-around;
	}
	.top .logo{
		padding: 4% 8%;
	}
	/*--------------------------------
	Contents
	--------------------------------*/
	.about-bottom{
		font-size: 1em;
	}
	/*--------------------------------
	Button
	--------------------------------*/
	/*--------------------------------
	Footer
	--------------------------------*/
	.footer{
		padding: 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: 16px;
	}
}