@charset "utf-8";

html{
	font-size: 10px;
	/*font-size: 62.5%;*/
}

:root{
	--base-color: #2DB200;
	--color-green: #1A6600;
	--bg-color1: #F9FFE9;
	--box-shadow1: 0px 3px 6px rgba(0,0,0,0.16);
}

body{
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 0;
	font-weight: 500;
	font-style: normal;
	line-height: 1.0;
	letter-spacing: 0;
	color: #000000;
}

a,a img,input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="image"]{
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

a:hover img,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="image"]:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

img{
	image-rendering: -webkit-optimize-contrast;
	max-width: 100%;
	height: auto;
}

::before,
::after{
	position: absolute;
	content: '';
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.flexWrap{	
	display:-webkit-box;
  	display:flex;
	flex-wrap: wrap;
}

.flexColumn{	
	display:-webkit-box;
  	display:flex;
	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	flex-direction: column;
}

br.smp{display: none;}



/**************************************************
 header
**************************************************/
header{
	position: fixed;
	width: 100%;
	min-width: 1100px;
	height: 120px;
	top: 0;
	left: 0;
	padding: 0 50px;
	z-index: 9990;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
header.scroll{
	/*height: 90px;*/
	background: rgba(255,255,255,0.95);
}

header h1{
	height: 100%;
	font-size: 3.0rem;
	font-weight: 700;
	letter-spacing: 2px;
	-webkit-box-align: center;
	align-items: center;
}
header h1 a{color: #000000;}
header h1 a:hover{opacity: 0.5;}

#globalNavi{display: inline-block;}
#globalNavi ul{
	position: relative;
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: 1px;
	-webkit-box-align: center;
	align-items: center;
	z-index: 1;
}
#globalNavi ul li{margin: 0 0 0 40px;}
#globalNavi ul li a{
	position: relative;
	color: #000000;
	display: block;
	padding: 10px 0;
}
#globalNavi ul li a::before{
	width: 0;
	height: 1px;
	left: 0;
	bottom: 0;
	background: var(--base-color);
}
#globalNavi ul li a:hover{color: var(--color-green);}
#globalNavi ul li a:hover::before{width: 100%;}
#globalNavi ul li:last-of-type a{
	width: 270px;
	color: #FFFFFF;
	background: var(--base-color);
	text-align: center;
	border-radius: 10.0rem;
	padding: 12px 0 15px 0;
}
#globalNavi ul li:last-of-type a:hover{background: var(--color-green);}
#globalNavi ul li:last-of-type a::before{display: none;}

#menu{
	position: fixed;
	width: 60px;
	height: 60px;
	top: 0;
	right: 0;
	background: var(--base-color);
	cursor: pointer;
	z-index: 9992;
	display: none;
}
#menu span{
	position: absolute;
	width: 30px;
	height: 2px;
	top: 19px;
	left: calc(50% - 15px);
	background: #FFFFFF;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
#menu span:nth-of-type(2){top: 29px;}
#menu span:nth-of-type(3){top: 39px;}
/*#menu.open{background: var(--main-txt-color);}*/
#menu.open span{
	width: 32px;
	top: 29px;
	left: calc(50% - 16px);
	background: #FFFFFF;
}
#menu.open span:first-of-type{transform: rotate(-45deg);}
#menu.open span:nth-of-type(2){display: none;}
#menu.open span:nth-of-type(3){transform: rotate(45deg);}
header.style1 #menu span{background: #FFFFFF;}
header.style1.scroll #menu span{background: var(--main-txt-color);}
header.style1.scroll #menu.open span{background: #FFFFFF;}



/**************************************************
 wrapper
**************************************************/
#wrapper{
	position: relative;
	min-width: 1100px;
	overflow: hidden;
}
#wrapper.cursorNone{cursor: none;}



/**************************************************
 visualHanger
**************************************************/
.visualHanger{
	position: relative;
	height: calc(100vh - 60px);
	min-height: 650px;
	background: #FFFFBF;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	align-items: flex-end;
}
.visualHanger::before{
	width: 1200px;
	height: 100%;
	top: 0;
	left: calc(50% - 600px);
	background: url("../img/visual_bg.svg") no-repeat center top;
	z-index: 0;
}
.visualHanger h2{
	position: absolute;
	font-size: 3.0rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFFFFF;
	padding: 15px 50px;
	background: #FF7373;
	border-top-right-radius: 10.0rem;
	border-bottom-right-radius: 10.0rem;
	top: 120px;
	left: 0;
	z-index: 3;
}
.visualHanger h2 strong{
	font-size: 5.0rem;
	font-weight: 700;
}
.visualHanger h2 span{
	display: block;
	font-size: 2.0rem;
	font-weight: 500;
	margin-top: 10px;
	text-align: center;
}
.visualHanger h3{
	position: absolute;
	font-size: 2.0rem;
	font-weight: 500;
	color: #FFFFFF;
	background: #2693FF;
	padding: 10px 20px;
	bottom: 100px;
	right: 50px;
	border-radius: 10.0rem;
	border: 2px solid #FFFFFF;
	z-index: 4;
}
.visualHanger img{
	position: relative;
	width: auto;
	height: calc(100% - 110px);
	z-index: 1;
}



/**************************************************
 anchorNavi
**************************************************/
.anchorNavi{
	position: relative;
	text-align: center;
	margin-top: -60px;
	padding-bottom: 30px;
	z-index: 10;
}
.anchorNavi ul{
	width: 900px;
	border: 3px solid #FFFFFF;
	border-radius: 10.0rem;
	box-shadow: 0px 5px 6px rgba(0,0,0,0.16);
	overflow: hidden;
	margin: 0 auto;
}
.anchorNavi ul li{
	position: relative;
	width: calc(100% / 3);
}
.anchorNavi ul li::before{
	width: 1px;
	height: 70px;
	background: #FFFFFF;
	top: calc(50% - 35px);
	right: 0;
	z-index: 11;
}
.anchorNavi ul li:last-of-type::before{display: none;}
.anchorNavi ul li a{
	position: relative;
	width: 100%;
	height: 116px;
	font-size: 2.5rem;
	letter-spacing: 2px;
	color: #FFFFFF;
	padding-bottom: 25px;
	background: var(--base-color);
	display:-webkit-box;
  	display:flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
.anchorNavi ul li a::before{
	width: 12px;
	height: 12px;
	border-right: 3px solid #FFFFFF;
	border-bottom: 3px solid #FFFFFF;
	transform: rotate(45deg);
	bottom: 30px;
	left: calc(50% - 7px);
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.anchorNavi ul li a:hover{background: var(--color-green);}
.anchorNavi ul li a:hover::before{bottom: 20px;}



/**************************************************
 common
**************************************************/
article.common{
	position: relative;
	margin-top: 180px;
	background: var(--bg-color1);
	border-radius: 50px;
	padding-bottom: 130px;
}
article.common h2{
	position: relative;
	font-size: 5.0rem;
	font-weight: 900;
	letter-spacing: 2px;
	color: var(--color-green);
	text-align: center;
	top: -25px;
}
article.common h2 span{
	position: relative;
	display: inline-block;
	padding: 0 50px;
}
article.common h2 span::before,
article.common h2 span::after{
	width: 5px;
	height: 70px;
	top: -10px;
	left: 0;
	background: var(--base-color);
	transform: rotate(30deg);
}
article.common h2 span::after{
	left: auto;
	right: 0;
}

article.common section{
	width: 1000px;
	margin: 0 auto;
}
article.common section h3{
	position: relative;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 2px;
	text-align: center;
	color: var(--color-green);
	margin: 100px 0 10px;
	padding-bottom: 60px;
}
article.common section h3::before{
	width: 80px;
	height: 8px;
	bottom: 0;
	left: calc(50% - 40px);
	background: var(--base-color);
}
article.common section p{
	font-size: 2.0rem;
	line-height: 2.0;
	padding-top: 30px;
}
article.common section p span.spacing1{letter-spacing: -1px;}
article.common section p.style1{padding-top: 80px;}
article.common section p.style2{text-align: center;}
article.common section p.note{
	padding-top: 10px;
	line-height: 1.4;
	/*-webkit-box-pack: end;
	justify-content: flex-end;*/
}
article.common section p.note span{
	display: block;
	width: 100%;
	margin-top: 15px;
	padding-left:2.0rem;
	text-indent:-2.0rem;
}
article.common section p.note2{
	padding-top: 30px;
	line-height: 1.4;
	text-align: right;
}
article.common section p a{
	color: #FF4D4D;
	text-decoration: underline;
}
article.common section p a:hover{
	opacity: 0.5;
	text-decoration: none;
}

.copyHanger{
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 2px;
	text-align: center;
	color: var(--color-green);
	margin-top: 80px;
}
.copyHanger span{background:linear-gradient(transparent 60%, #FFFF00 60%);}

.boxHanger{
	position: relative;
	margin-top: 60px;
	border: 5px solid var(--base-color);
	background: #FFFFFF;
	padding: 40px;
	border-radius: 30px;
	box-shadow: var(--box-shadow1);
}
.boxHanger.style1{margin-top: 80px;}
article.common section .boxHanger h3{
	margin: 0;
	padding: 0;
}
article.common section .boxHanger h3::before{display: none;}
article.common section .boxHanger h3.style1 span{
	display: inline-block;
	padding: 10px 30px;
	/*color: #FFFFFF;*/
	border: 5px solid var(--base-color);
	background: var(--bg-color1);
	/*background: var(--base-color);*/
	border-radius: 10.0rem;
}
/*.boxHanger.style2 p{text-align: center;}*/
.boxHanger.style2::before{
	width: 100px;
	height: 100px;
	top: -85px;
	left: calc(50% - 50px);
	background: url("../img/plus.svg") no-repeat 0 0;
}
.boxHanger ul.style1{padding-top: 10px;}
.boxHanger ul.style1 li{
	position: relative;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
	color: var(--color-green);
	margin-top: 15px;
	padding-left: 30px;
}
/*.boxHanger ul.style1 li::before{
	width: 12px;
	height: 12px;
	border-radius: 10.0rem;
	background: var(--base-color);
	top: 12px;
	left: 0;
}*/
.boxHanger ul.style1 li::before{
	content: '1';
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--base-color);
	top: -9px;
	left: 0;
}
.boxHanger ul.style1 li:nth-of-type(2)::before{content: '2';}
.boxHanger ul.style1 li:nth-of-type(3)::before{content: '3';}
.boxHanger ul.style2{
	padding-top: 35px;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.boxHanger ul.style2 li{
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.boxHanger ul.style2 li img{
	display: block;
	margin-bottom: 10px;
}
.boxHanger ul.style2 li:hover{opacity: 0.5;}
.boxHanger ul.style3{
	margin-top: 30px;
	padding: 20px 30px;
	background: var(--bg-color1);
	border-radius: 10.0rem;
	-webkit-box-pack: center;
	justify-content: center;
	/*-webkit-box-pack: justify;
	justify-content: space-between;*/
}
.boxHanger ul.style3 li{
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 2px;
	padding-left: 25px;
	margin: 0 25px;
}
.boxHanger ul.style3 li::before{
	width: 16px;
	height: 16px;
	top: 5px;
	left: 0;
	background: var(--base-color);
	border-radius: 100%;
}

.boxHanger .figHanger{
	text-align: center;
	margin-top: 40px;
}
.boxHanger .figHanger img{max-width: 100%;}
.boxHanger .figHanger img.vertical{max-width: 70%;}



/**************************************************
 about
**************************************************/
.about_feature ul{
	margin-top: 70px;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.about_feature ul li{
	width: 300px;
	height: 300px;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.4;
	color: #FFFFFF;
	text-align: center;
	background: var(--base-color);
	border-radius: 20px;
	box-shadow: var(--box-shadow1);
	display:-webkit-box;
  	display:flex;
	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
.about_feature ul li img{
	display: block;
	margin-bottom: 10px;
}
.about_feature ul li sup{font-size: 1.6rem;}

.targetHanger{margin-top: 80px;}
article.common section .targetHanger h3{
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 1;
}
article.common section .targetHanger h3 span{
	display: inline-block;
	padding: 20px 40px;
	color: #FFFFFF;
	background: var(--base-color);
	border-radius: 10.0rem;
	line-height: 1.0;
}
.targetHanger ul{
	position: relative;
	z-index: 0;
	margin-top: -36px;
}
.targetHanger ul li{
	position: relative;
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 2px;
	text-align: center;
	background: #FFFFFF;
	border-radius: 20px;
	padding: 70px 0 45px 0;
	box-shadow: var(--box-shadow1);
	z-index: 0;
}
.targetHanger ul li strong{
	position: relative;
	font-size: 4.0rem;
	font-weight: 900;
	color: #FF4D4D;
	padding-left: 60px;
}
.targetHanger ul li strong::before{
	width: 50px;
	height: 41px;
	top: 10px;
	left: 0;
	background: url("../img/check_box.svg") no-repeat 0 0;
}

.movieHanger{margin: 70px auto 0 auto;}
.movieHanger div{
	position: relative;
  	width: 100%;
  	padding-top: 56.25%;
}
.movieHanger div iframe{
	position: absolute;
  	top: 0;
  	right: 0;
  	width: 100% !important;
  	height: 100% !important;
}



/**************************************************
 item
**************************************************/
.itemDetail div{
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.4;
	padding: 20px;
	color: #FFFFFF;
	text-align: left;
	background: #0080FF;
	box-shadow: var(--box-shadow1);
	border-radius: 15px;
	margin-top: 30px;
	display: none;
}
.itemDetail div:nth-of-type(2){background: var(--base-color);}
.itemDetail div:nth-of-type(3){background: #D24DFF;}
.itemDetail div:nth-of-type(4){background: #FF4D4D;}
.itemDetail div:last-of-type{background: #FF9326;}
.itemDetail div strong{
	display: block;
	font-size: 2.4rem;
	font-weight: 900;
	letter-spacing: 2px;
}



/**************************************************
 visit
**************************************************/
.boxHanger.step{
	padding-top: 50px;
	margin-top: 160px;
}
.boxHanger.style1.step{margin-top: 100px;}
.boxHanger.step::before{
	width: 50px;
	height: 50px;
	bottom: -88px;
	left: calc(50% - 29px);
	border-right: 10px solid var(--base-color);
	border-bottom: 10px solid var(--base-color);
	transform: rotate(45deg);
}
.boxHanger.step:nth-of-type(4)::before{display: none;}

.boxHanger.step h3.style1{margin-top: 80px;}

.boxHanger.step h4.style1{
	margin-top: 80px;
	font-size: 3.0rem;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.3;
	text-align: center;
	color: var(--color-green);
	padding: 20px;
	background: var(--bg-color1);
	border-radius: 10.0rem;
}
.boxHanger.step h4.style1.firstPos{margin-top: 40px;}

.boxHanger.step h5.style1{
	margin-top: 50px;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
	color: var(--color-green);
}
.boxHanger.step h5.style1.firstPos{margin-top: 30px;}
.boxHanger.step p.style1{
	padding-top: 20px;
	text-align: center;
}
.boxHanger.step p.style1 strong{
	display: block;
	font-size: 3.5rem;
	padding: 0;
	margin: 0;
	line-height: 1.0;
}

.stepNum{
	position: absolute;
	width: 180px;
	top: -29px;
	left: calc(50% - 90px);
	padding: 6px 0 10px 0;
	font-size: 3.5rem;
	font-weight: 900;
	text-align: center;
	color: #FFFFFF;
	background: var(--base-color);
	border-radius: 10.0rem;
}

.btnHanger{
	margin-top: 40px;
	text-align: center;
}
.btnHanger a{
	position: relative;
	display: inline-block;
	font-size: 2.0rem;
	line-height: 1.2;
	text-align: center;
	color: #FFFFFF;
	padding: 15px 50px;
	background: rgba(255,128,0,1.0);
	border-radius: 10.0rem;
}
.btnHanger.style1 a{width: 430px;}
.btnHanger.style2{margin-top: 20px;}
.btnHanger.style2.firstPos{margin-top: 40px;}
.btnHanger.style2 a{width: 550px;}
.btnHanger a::before{
	width: 10px;
	height: 10px;
	top: calc(50% - 6px);
	right: 20px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	transform: rotate(45deg);
}
.btnHanger a:hover{background: rgba(255,128,0,0.5);}
.btnHanger a:hover::before{right: 15px;}

.emp{
	margin-top: 30px;
	padding: 30px 50px;
	background: var(--bg-color1);
	border-radius: 20px;
}
.emp h4{
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-align: center;
	color: var(--color-green);
}
.emp ul.packing{padding-top: 15px;}
.emp ul.packing li{
	position: relative;
	font-size: 2.0rem;
	line-height: 1.4;
	margin-top: 15px;
	padding-left: 30px;
}
.emp ul.packing li::before{
	content: '1';
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.0;
	color: var(--color-green);
	top: -3px;
	left: 0;
}
.emp ul.packing li:nth-of-type(2)::before{content: '2';}
.emp ul.packing li:nth-of-type(3)::before{content: '3';}
.emp ul.packing li:nth-of-type(4)::before{content: '4';}

.mapHanger{
	margin-top: 40px;
	height: 600px;
}
.mapHanger iframe{
	width: 100%;
	height: 100%;
}

.detailList ul{padding-top: 10px;}
.detailList ul li{
	width: 320px;
	margin: 20px 20px 0 0;
}
.detailList ul li:nth-of-type(3n){margin: 20px 0 0 0;}
.detailList ul li a{
	position: relative;
	width: 100%;
	height: 70px;
	font-size: 2.2rem;
	letter-spacing: 1px;
	color: #FFFFFF;
	background: var(--base-color);
	border-radius: 10px;
	box-shadow: var(--box-shadow1);
	display:-webkit-box;
  	display:flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
.detailList ul li a::before{
	width: 10px;
	height: 10px;
	top: calc(50% - 6px);
	right: 20px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	transform: rotate(45deg);
}
.detailList ul li a:hover{background: var(--color-green);}
.detailList ul li a:hover::before{right: 15px;}



/**************************************************
 footer
**************************************************/
footer{
	position: relative;
	margin-top: 130px;
}

.reservation{
	padding: 50px 0;
	background: var(--base-color);
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
}
.reservation dl dt{
	font-size: 4.2rem;
	font-weight: 900;
	letter-spacing: 2px;
	text-align: center;
	color: #FFFF00;
	padding-top: 90px;
	background: url("../img/megaphone_icon.svg") no-repeat center top;
}
.reservation dl dt span{
	position: relative;
	display: inline-block;
	padding: 0 40px;
}
.reservation dl dt span::before,
.reservation dl dt span::after{
	width: 4px;
	height: 70px;
	top: -5px;
	background: #FFFF00;
}
.reservation dl dt span::before{
	transform: rotate(-30deg);
	left: 0;
}
.reservation dl dt span::after{
	transform: rotate(30deg);
	right: 0;
}
.reservation dl dd{padding-top: 60px;}
.reservation dl dd a{
	position: relative;
	width: 450px;
	height: 80px;
	margin: 0 auto;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--color-green);
	background: rgba(255,255,255,1.0);
	border-radius: 10.0rem;
	box-shadow: var(--box-shadow1);
	display:-webkit-box;
  	display:flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
.reservation dl dd a::before{
	width: 14px;
	height: 14px;
	top: calc(50% - 7px);
	right: 30px;
	border-top: 3px solid var(--color-green);
	border-right: 3px solid var(--color-green);
	transform: rotate(45deg);
}
.reservation dl dd a:hover{
	color: #FFFFFF;
	background: var(--color-green);
}
.reservation dl dd a:hover::before{
	border-color: #FFFFFF;
	right: 23px;
}

.footerInfo{
	padding: 90px 0;
	background: #238C00;
}
.footerInfo dl{
	width: 1000px;
	margin: 0 auto;
	color: #FFFFFF;
}
.footerInfo dl dt{
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 2px;
}
.footerInfo dl dd{
	font-size: 2.0rem;
	line-height: 1.5;
	padding-top: 25px;
	letter-spacing: 1px;
}

.pageTop{
	position: absolute;
	width: 90px;
	height: 90px;
	right: 50px;
	bottom: 90px;
	padding-top: 17px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.0;
	text-align: center;
	color: var(--color-green);
	background: #FFFFFF;
	border-radius: 100%;
	box-shadow: var(--box-shadow1);
	cursor: pointer;
	display:-webkit-box;
  	display:flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
.pageTop::before{
	width: 12px;
	height: 12px;
	top: 22px;
	left: calc(50% - 7px);
	border-top: 3px solid var(--color-green);
	border-right: 3px solid var(--color-green);
	transform: rotate(-45deg);
}
.pageTop:hover::before{top: 17px;}


