/*--------------------------------
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%;
}
body{
	width: 100%;
	background: #f0f0f0;
	font-size: 24px;
	color: #555;
	font-family: sans-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: #e6ecee;
}
.content-img{
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}
.inner-txt{
	padding: 200% 0 0 0;
	display: block;
}
/*--------------------------------
Header
--------------------------------*/
.top{
	position: relative;
}
.top .btn-row{
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}
.sub-top{
	padding: 2% 0;
	background: #023740;
}
.logo-link{
	height: 96px;
	display: block;
}
.logo-link .content-img{
	height: 100%;
}
/*--------------------------------
Contents
--------------------------------*/
.heading{
	padding: 8% 0;
}
.heading-txt{
	font-size: 1.2em;
	font-weight: bold;
	color: #023740;
}
.review-list{
	padding: 8% 4% 4%;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.review-item{
	margin: 0 0 4%;
	width: 48%;
	display: flex;
	flex-direction: column;
}
.review-thumb{
	order: 1;
}
.review-head{
	order: 2;
}
.review-head-txt{
	padding: 4% 0;
	font-size: .9em;
	text-align: center;
}
.review-txt{
	order: 3;
	color: #457a8c;
	line-height: 1.6;
}
.howto-list{
	padding: 0 8%;
}
.safety-list{
	padding: 0 8% 4%;
}
.safety-list-item{
	margin: 0 0 4%;
}
.general{
	padding: 0 8% 4%;
}
.general .heading{
	background: none
}
.general .heading-txt{
	font-size: 1.2em;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
.general h3{
	padding: 0 0 2%;
	font-size: 1.1em;
	line-height: 1.4;
	font-weight: bold;
	color: #457a8c;
}
.general h4{
	padding: 0 0 2%;
	font-size: 1em;
	line-height: 1.4;
	font-weight: bold;
	color: #457a8c;
}
.general p{
	padding: 0 0 4%;
	font-size: .8em;
	line-height: 1.4;
}
.general li{
	margin: 0 0 4%;
	padding: 1%;
	font-size: .8em;
	line-height: 1.2;
	border-left: 2px solid #84d8d1;
}
.general-table{
	width: 100%;
	font-size: .9em;
}
.table-row{
	border-bottom: 1px solid #000;
}
.table-head{
	padding: 2%;
	width: 30%;
	font-weight: normal;
	background: #444;
	color: #fff;
	border-right: 1px solid #000;
}
.table-data{
	padding: 2%;
	width: 70%;
	background: #222;
}
.hl-txt{
	color: #fff100;
}
.howto-list .slick-arrow{
	margin: auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	background: #6f97a5;
	text-indent: -9999px;
	box-shadow: 1px 1px 2px rgba(0,0,0,.2);
}
.slick-arrow::after{
	margin: auto;
	width: 16px;
	height: 18px;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	background: #fff;
	
}
.howto-list .slick-next{
	right: 4%;
	z-index: 3;
}
.howto-list .slick-next::after{
	left: 16px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.howto-list .slick-prev{
	position: absolute;
	left: 4%;
	z-index: 3;
}
.howto-list .slick-prev::after{
	right: 16px;
	clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.howto-list .slick-disabled{
	opacity: 0;
}
.wrap .slick-track {
  display: flex;
}
.wrap .slick-slide {
  height: auto !important;
}

.general{
	padding: 4% 4% 0;
}
.general-item h3{
	margin: 0 0 4%;
	padding: 2%;
	background: #e7fdfd;
	color: #276270;
	border-left: 4px solid #276270;
	font-size: 1.1em;
}
.general-item h4{
	padding: 2% 0;
	color: #6cc;
	font-size: 1em;
}
.general-item p,.general-txt{
	padding: 0 0 4%;
	font-size: .9em;
	line-height: 1.6;
}
.general-item li{
	margin: 0 0 2%;
	padding: 1%;
	font-size: .9em;
	line-height: 1.6;
	border-left: 4px solid #6cc;
}
.general-item table{
	width: 100%;
	font-size: .9em;
}
.general-item tr{
	border-bottom: 1px solid #fff;
}
.general-item th{
	padding: 4%;
	width: 30%;
	font-weight: normal;
	background: #ccc;
	color: #fff;
	border-right: 1px solid #fff;
}
.general-item td{
	padding: 4%;
	width: 70%;
	background: #f0f0f0;
}
.hl-txt{
	color: #6cc;
}
.general-img{
	padding: 0 0 4%;
}
/*--------------------------------
Button
-------------------------------*/
.btn-row{
	padding: 4% 16% 8%;
	width: 100%;
	text-align: center;
}
.fixed{
	margin: 0 auto;
	padding: 4% 8%;
	width: 100%;
	max-width: 768px;
	background: rgba(255,255,255,.9);
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	box-shadow: 0 -2px 0 rgba(0,0,0,.05);
}
.home-btn{
	display: none;
}
.reg-btn{
	line-height: 88px;
	border-radius: 44px;
	text-align: center;
	display: block;
	background: linear-gradient(to bottom, #0e1b24 0%, #396473 100%);
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
}
.txt-link{
	margin: 2% auto 0;
	text-decoration: underline;
	color: #fff;
	text-shadow: 2px 2px 4px #0e1b24;
	display: block;
}
.fixed .txt-link{
	text-shadow: none;
	color: #457a8c;
}
/*--------------------------------
Footer
--------------------------------*/
.footer{
	padding: 4%;
	width: 100%;
	text-align: center;
	background: #457a8c;
	color: #fff;
}
.gnav-list{
	width: 100%;
	text-align: center;
}
.nav-link{
	padding: 2% 0;
	color: #fff;
	display: block;
	font-size: .8em;
	border-bottom: 1px solid rgba(255,255,255,.2);
}
.copy, .info{
	padding: 2% 0;
	font-size: .8em;
	line-height: 1.4;
}
/*--------------------------------
Modal
--------------------------------*/
.overlay{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: rgba(0,0,0,.75);
	display: none;
	backdrop-filter: blur(1.5rem);
}
.modal-pane{
	margin: auto;
	width: 90%;
	max-width: 736px;
	max-height: 90svh; 
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11;
	overflow: hidden;
	border-radius: 8px;
	display: none;
}
.modal-pane .modal-content{
	height: 100%;
	overflow: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal-inner{
	padding: 4%;
	width: 100%;
	background: #fff;
	border-radius: 8px;
	text-align: center;
}
.close-modal{
	width: 32px;
	height: 32px;
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(45deg);
	transform-origin: center;
}
.close-modal::before,.close-modal::after{
	margin: auto;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
}
.close-modal::before{
	width: 4px;
	height: 100%;
}
.close-modal::after{
	width: 100%;
	height: 4px;
}
.modal-btn-row{
	padding: 0 4% 4%;
}
.modal-btn-row .reg-btn{
	margin: 0 0 4%;
	padding: 0 0 0 20px;
	position: relative;
}
.modal-btn-row .reg-btn::after{
	margin: auto;
	width: 44px;
	height: 44px;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 44px;
}
.modal-btn-row .reg-btn:nth-of-type(1)::after{
	background: url(../images/icon_mail.webp) no-repeat center / contain;
}
.modal-btn-row .reg-btn:nth-of-type(2)::after{
	background: url(../images/icon_phone.webp) no-repeat center / contain;
}
/*--------------------------------
Animation
--------------------------------*/
@keyframes fade-in{
0% {opacity: 0;filter: blur(4px);}
100% {opacity: 1;filter: blur(0);}
}
@keyframes slide-in{
0% {opacity: 0;filter: blur(4px);transform: translate3d(-32px,0,0);}
100% {opacity: 1;filter: blur(0);transform: translate3d(0,0,0);}
}
@media screen and (max-width:767px) {
	/*--------------------------------
	global element
	--------------------------------*/
	body{
		font-size: 16px;
	}
	/*--------------------------------
	Header
	--------------------------------*/
	.logo-link{
		height: 64px;
	}
	/*--------------------------------
	Contents
	--------------------------------*/
	.howto-list .slick-next{
		right: 2%;
	}
	.howto-list .slick-prev{
		left: 2%;
	}
	/*--------------------------------
	Button
	-------------------------------*/
	.reg-btn{
		line-height: 64px;
		border-radius: 32px;
	}
	/*--------------------------------
	Footer
	--------------------------------*/
	/*--------------------------------
	Modal
	--------------------------------*/
	.modal-btn-row .reg-btn::after{
		width: 24px;
		height: 24px;
		left: 20px;
	}
}
@media screen and (max-width:320px) {
	/*--------------------------------
	global element
	--------------------------------*/
	body{
		font-size: 14px;
	}
}