/*--------------------------------
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: sans-serif;
}
a,button{
	transition: .3s;
}
a:hover,button:hover{
	opacity:.6;
}
.wrap{
	margin: 0 auto;
	width: 100%;
	max-width: 768px;
	height: 100dvh;
	position: relative;
	overflow: hidden;
	border: 5px solid #ffeb94;
	background: #303335;
}
.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
--------------------------------*/
/*--------------------------------
Contents
--------------------------------*/
.spash-pane{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}
.spash-pane::after{
	width: 100%;
	height: 60%;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../images/img_splash01.webp) no-repeat right bottom / 45% auto, url(../images/img_splash02.webp) no-repeat top left 8% / 40% auto;
}
.splash-head{
	padding: 4% 16% 0;
	width: 100%;
	height: 50%;
	background: url(../images/bg.webp) no-repeat left top / cover;
}
.spash-pane .btn-row{
	padding: 8%;
	width: 100%;
	height: 50%;
	display: flex;
	align-items: flex-end;
	position: relative;
	z-index: 9;
}
.spash-pane .btn-start{
	width: 60%;
	border-radius: 8px;
	overflow: hidden;
}
.q-pane{
	height: 100%;
}
.q-inner{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}
.q-head{
	padding: 8%;
	width: 100%;
	height: 50%;
	background: url(../images/bg.webp) no-repeat left top / cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.q-head-txt{
	color: #fff;
	font-size: 1.2em;
	line-height: 1.4;
	transform-origin: center;
	opacity: 0;
	transform: scale(1.4);
}
.fade-in .q-head-txt{
	animation: zoom-in .5s ease 0s forwards;
}
.q-list{
	padding: 8% 8% 4%;
	width: 100%;
	height: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.q-list-item{
	margin: 0 0 4%;
	padding: 4% 2%;
	width: 100%;
	background: linear-gradient(to bottom, #fffde3 40%,#ffef80 77%);
	color: #333;
	font-weight: bold;
	text-align: center;
	transition: .3s;
	border-radius: 8px;
	box-shadow: 2px 2px 4px rgba(0,0,0,.2);
	opacity: 0;
	transform: translate3d(0,32px,0);
}
.fade-in .q-list-item{
	animation: slide-up .5s ease 0s forwards;
}
.q-list-item:hover{
	opacity: .6;
}
.result{
	height: 100%;
}
.r-inner{
	padding: 8%;
	height: 100%;
	background: url(../images/bg.webp) repeat left top / 100% auto;
	overflow: auto;
}
.r-item{
	margin: 0 0 4%;
	padding: 4% 4% 8%;
	background: #303335;
}
.r-head-txt{
	padding: 0 0 4%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	line-height: 1.4;
	text-align: center;
}
.r-head-txt .lg-txt{
	font-size: 1.2em;
	font-weight: bold;
}
.result-desc{
	font-size: .9em;
	line-height: 1.6;
}
.r-inner .heading-txt, .recommend-txt{
	padding: 0 0 4%;
	text-align: center;
	font-size: 1.2em;
}
.r-inner .btn-row{
	padding: 8% 0 0;
}
.btn-again{
	padding: 2%;
	width: 100%;
	background: linear-gradient(to bottom, #fffde3 40%,#ffef80 77%);
	color: #333;
	font-weight: bold;
	text-align: center;
	border-radius: 8px;
	box-shadow: 2px 2px 4px rgba(0,0,0,.2);
}
/*--------------------------------
Button
-------------------------------*/
/*--------------------------------
Footer
--------------------------------*/
.footer{
	padding: 4% 4% 0;
	text-align: center;
	background: #ff7995;
	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 zoom-in{
0% {opacity: 0;transform: scale(1.4);}
100% {opacity: 1;transform: scale(1);}
}
@keyframes slide-up{
0% {opacity: 0; transform: translate3d(0,32px,0);}
100% {opacity: 1; transform: translate3d(0,0,0);}
}
@media screen and (max-width:767px) {
	/*--------------------------------
	global element
	--------------------------------*/
	body{
		font-size: 18px;
	}
	/*--------------------------------
	Header
	--------------------------------*/
	/*--------------------------------
	Contents
	--------------------------------*/
	.spash-pane::after{
		width: 100%;
		height: 60%;
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		background: url(../images/img_splash01.webp) no-repeat right bottom / 60% auto, url(../images/img_splash02.webp) no-repeat top left 8% / 50% auto;
	}
	.splash-head{
		padding: 4% 8%;
		display: flex;
		align-items: center;
	}
	.spash-pane .btn-start{
		width: 70%;
	}
	.q-list{
		padding: 8% 4% 4%;
	}
	/*--------------------------------
	Button
	--------------------------------*/
	/*--------------------------------
	Footer
	--------------------------------*/
}
@media screen and (max-width:320px) {
	/*--------------------------------
	global element
	--------------------------------*/
	body{
		font-size: 16px;
	}
}