@charset "UTF-8";  

body {
	font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Noto Serif JP", serif;
	font-size	: 3.6vw;
	line-height	: 180%;
	font-weight	: 400;
	-webkit-text-size-adjust: 100%; /* for iOS */
	background: #f7fcff;
}  
.pc ,.pc2 {
	display: none;
}

.sp {
	display: inline-block ;
}

.sp2 {
	display: block ;
}

/*====================================
ヘッダー
=====================================*/
header {
	position: fixed;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	transition: 0.2s linear;
	top: 0;
	left: 0;
	z-index: 100;
}
	header.scroll {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		background: #222;
		border-bottom: 1px solid #fff;
	}
	#header_in {
		width: 100%;
		margin: 0 auto;
		padding: 3% 3%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
		#header_in h1 {
			width: 45%;
			margin: 0;
			padding: 0;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
			#header_in h1 img {
				width: 100%;
				height: auto;
			}
			#header_in h1 p {
				display: none;
			}
		header #header_in nav {
			display: none;
		}

/*====================================
共通
=====================================*/
main {
	margin: 0 auto;
	padding: 0 0 10%;
}
	main.top {
		margin: 0 auto !important;
	}
	main.finish {
		padding: 0;
	}

/* ページコンテンツ */
div.contents_in {
	width: 100%;
	margin: 8% auto 0;
	padding: 0 3%;
}

h3 {
	display: inline-block;
	margin: 0 auto;
	padding: 0 3px 5px;
	font-size: 5.6vw;
	font-weight: 700;
	border-bottom: 3px solid #28aa0e;
	position: relative;
}
	h3:before,
	h3:after {
		position: absolute;
		content: '';
		display: block;
		width: 1.0em;
		height: 1.6em;
		margin: 0;
		padding: 0;
		background: url(../images/icon/tree_ico.png) center / contain no-repeat;
	}
	h3:before {
		top: 0.9em;
		left: -1.3em;
	}
	h3:after {
		top: 0.9em;
		right: -1.3em;
	}
	h3 span {
		display: block;
		margin: 0 auto;
		padding: 0 0 5px;
		font-size: 3.8vw;
	}
div.cont_txt {
	margin: 0 auto;
	padding: 0;
	text-align: left;
}
	div.cont_txt.wide_s {
		width: 100%
	}
	div.cont_txt.wide_50 {
		width: 100%
		margin: 0 !important;
	}
	div.cont_txt p {
		margin: 1em 0 0;
		padding: 0;
	}
		div.cont_txt p strong {
			font-weight: 500;
			background: linear-gradient(transparent 80%, #28aa0e 80%);
		}
		div.cont_txt p:first-of-type {
			margin: 0;
		}
		div.cont_txt h4 + p {
			margin: 1em 0 0 !important;
		}
		div.cont_txt a.txt_link {
			color: #28aa0e;
			font-weight: 700;
		}
		div.cont_txt .img {
			margin: 1em auto 0;
			padding: 0;
			text-align: center;
		}
			div.cont_txt .img img {
				width: 100%;
				height: auto;
			}

h4.sub_ttl {
	display: inline-block;
	margin: 0 0 0 1.2em;
	padding: 0;
	font-size: 4.6vw;
	font-weight: 700;
	position: relative;
}
	h4.sub_ttl:before {
		position: absolute;
		content: '';
		display: block;
		width: 1.0em;
		height: 1.6em;
		margin: 0;
		padding: 0;
		background: url(../images/icon/tree_ico.png) center / contain no-repeat;
		top: -0.2em;
		left: -1.5em;
	}
h4.number_ttl {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 4.6vw;
	font-weight: 700;
}
	h4.number_ttl span {
		display: inline-block;
		margin: 0 10px 0 0;
		padding: 0;
		font-size: 5.0vw;
		font-weight: 700;
		color: #28aa0e;
	}
h4.qa_ttl {
	display: inline-block;
	margin: 0;
	padding: 0 0 0 0.5em;
	font-size: 4.6vw;
	font-weight: 700;
	border-left: 3px solid #28aa0e;
}

div.btn_cont {
	margin: 1.2em 0 0;
	padding: 0;
}
	div.btn_cont p {
		padding: 0;
	}

a.link_btn {
	width: 70%;
	margin: 0 auto;
	padding: 0.8em;
	color: #fff;
	text-align: center;
	background: #28aa0e;
	text-decoration: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
	a.link_btn img {
		width: auto;
		height: 1.5em;
		margin-right: 5px;
	}

/*====================================
コンテンツ
=====================================*/
#kv {
	height: 40em;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
	background: #000;
	z-index: 1;
}
	#kv:before {
		opacity: 0;
		position: absolute;
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		margin: auto;
		padding: 0;
		background: url(../images/kv/kv_bg_sp.jpg) center bottom / cover no-repeat;
		top: 0;
		left: 0;
		-webkit-animation: FadeIn 1.0s ease-out 1.0s 1 forwards;
		animation: FadeIn 1.0s ease-out 1.0s 1 forwards;
	}
	#kv div.pattern {
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.75);
		top: 0;
		left: 0;
		z-index: 2;
	}
	div.video-wrapper-sp {
		aspect-ratio: 10 / 15;
		overflow: hidden;
		position: relative;
		width: 100%;
	}
 		div.video-wrapper-sp video {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
 			div.video-wrapper-sp video .video-content {
				margin: 0;
				position: absolute;
				top: 43%;
				left: 50%;
				margin-right: -50%;
				transform: translate(-50%, -50%);
				color: #fff;
				text-align: center;
				z-index: -1;
			}
 
			div.video-wrapper-sp video .video-content p {
				max-width: 600px;
				padding: 0 2rem;
			}
	div.video-wrapper-pc {
		display: none;
	}
	#kv ul.slick_box {
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		margin: auto;
		padding: 0;
		list-style: none;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		-webkit- transform: translateX(-50%);
		z-index: 10;
	}
		#kv ul.slick_box li {
			width: 100%;
			margin: 0 auto;
		}
		#kv li h2 {
			width: 100%;
			margin: 0 auto;
			font-size: 6.2vw;
			line-height: 160%;
		}
			#kv li h2 p {
				display: none;
			}
		#kv li.kv01 h2 {
			padding: 13em 3% 0;
			text-align: left;
		}
			#kv li.kv01 h2 img {
				width: 86%;
				height: auto;
			}
		#kv li.kv02 h2 {
			padding: 13em 3% 0;
			text-align: right;
		}
			#kv li.kv02 h2 img {
				width: 100%;
				height: auto;
			}
		#kv li.kv03 h2 {
			padding: 13em 3% 0;
		}
			#kv li.kv03 h2 img {
				width: 76%;
				height: auto;
				margin: 0 auto;
			}
		#kv .arrow span {
			display: none;
		}
		#kv .arrow img {
			position: absolute;
			margin: auto;
			padding: 0;
			bottom: 45px;
			left: 45%;
			width: 10%;
			height: auto;
			-webkit-animation: sdb2 1.5s infinite;
			animation: sdb2 1.5s infinite;
			z-index: 11;
		}

section.campaign {
	margin: 0 auto;
	padding: 15% 0 0;
}

section.new_sauna {
	margin: 0 auto;
	padding: 15% 0;
	background: #f7f7f7;
}

section.about {
	margin: 0 auto;
	padding: 15% 0;
}
	section.about div.about_cont {
		margin: 10% auto 0;
		padding: 0;
	}
		section.about div.about_cont div.cont_txt .img {
			margin: 8% auto 0;
			padding: 0;
			top: 0;
		}
			section.about div.about_cont div.cont_txt .img img {
				width: 100%;
				height: auto;
			}

section.guide {
	margin: 0 auto;
	padding: 15% 0;
	background: #f7f7f7;
}
	section.guide div.guide_cont {
		margin: 0 auto;
		padding: 0;
	}
		section.guide div.guide_cont:nth-of-type(n+2) {
			margin: 10% auto 0;
		}
		section.guide div.guide_cont .img {
			margin: 5% auto 0;
			padding: 0;
		}
			section.guide div.guide_cont .img img {
				width: 100%;
				height: auto;
			}

section.flow {
	margin: 0 auto;
	padding: 15% 0;
}
	section.flow div.flow_cont {
		margin: 0 auto;
		padding: 5% 0;
		border-bottom: 1px solid #ddd;
	}
		section.flow div.flow_cont:first-of-type {
			padding: 0 0 5%;
		}
		section.flow div.flow_cont .img {
			width: 100%;
			margin: 3% auto 0;
			padding: 0;
		}
			section.flow div.flow_cont .img img {
				width: 100%;
				height: auto;
			}

section.qa {
	margin: 0 auto;
	padding: 15% 0;
	background: #f7f7f7;
}
	section.qa div.qa_cont {
		margin: 0 auto;
		padding: 5% 0;
		border-bottom: 1px solid #ddd;
	}
		section.qa div.qa_cont:first-of-type {
			padding: 0 0 5%;
		}

section.access {
	margin: 0 auto;
	padding: 15% 0;
}
	section.access div.gmap {
		height: 25em;
		margin: 8% auto 0;
		padding: 0;
		position: relative;
	}
		section.access div.gmap iframe {
			position: absolute;
			display: block;
			width: 100%;
			height: 100%;
			margin: 0;
			padding: 0;
			top: 0;
			left: 0;
		}
	section.access div.access_cont {
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

section.reservation {
	margin: 0 auto;
	padding: 15% 0;
	background: #f7f7f7;
}
	section.reservation div.reservation_cont {
		width: 100%;
		margin: 5% auto 0;
		padding: 8% 0 0;
		border-bottom: 1px solid #ddd;
	}


/*====================================
フッター
=====================================*/
footer {
	width: 100%;
	margin: 0 auto;
	padding: 8% 0 3%;
	background: #353535;
	border-top: 3px solid #28aa0e;
}
#footer_in {
	width: 100%;
	margin: 0 auto;
	padding: 0 3%;
	color: #fff;
}
	#footer_in h5 {
		margin: 0 auto;
		padding: 0;
	}
		#footer_in h5 img {
			width: 70%;
			height: auto;
		}
	#footer_in p {
		margin: 1.5em auto 0;
		padding: 0;
		font-size: 3.6vw;
	}

#copy {
	margin: 5% auto 0;
	padding: 0;
	font-size: 3.2vw;
	line-height: 120%;
	color: #eee;
}

#page_top {
	position: fixed;
	width: 8%;
	bottom: 5px;
    right: 1%;
	z-index: 45;
}
	#page_top img {
		width: 100%;
		height: auto;
	}