@charset "utf-8";
/* ===================================================
	Reset
====================================================== */

#customer_header h1,
#customer_header h2,
#customer_header h3,
#customer_header h4,
#customer_header h5,
#customer_header h6,
#customer_footer h1,
#customer_footer h2,
#customer_footer h3,
#customer_footer h4,
#customer_footer h5,
#customer_footer h6 { margin: 0;}

#customer_header ul,
#customer_header ol,
#customer_header li,
#customer_footer ul,
#customer_footer ol,
#customer_footer li { padding: 0; margin: 0; list-style-type: none;}

#customer_header dl,
#customer_footer dl { padding: 0; margin: 0;}

#customer_header p,
#customer_footer p { padding: 0; margin: 0;}

#customer_header em,
#customer_footer em{
	font-style: normal;
}

#customer_header img,
#customer_footer img{
	max-width: 100%;
}


/* ===================================================
	Custom CSS
	※ 予約番自体のコンテンツに影響するのを避けるため、
	　必ず #customer_header または #customer_footer からの継承で記述してください。
====================================================== */
body {
	position: relative;
	min-width: 1120px;
}
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#fff;
	z-index: 15;
	pointer-events: none;
	-webkit-animation: loading 0.8s ease forwards;
	animation: loading 0.8s ease forwards;
}

@-webkit-keyframes loading {
	from { opacity: 1;}
	to { opacity: 0;}
}
@-o-keyframes loading {
	from { opacity: 1;}
	to { opacity: 0;}
}
@-moz-keyframes loading {
	from { opacity: 1;}
	to { opacity: 0;}
}
@keyframes loading {
	from { opacity: 1;}
	to { opacity: 0;}
}

#customer_header,
#customer_footer {
	color: #000;
	font-size: 15px;
	font-weight: normal;
	line-height: 1.8;
	font-family: 'Noto Serif JP', serif;
	-webkit-text-size-adjust: 100%;
}

#customer_header #header_wrap,
#customer_header #nav_wrap,
#customer_footer #footer_wrap {
	padding: 0; margin: 0;
}

#customer_header a,
#customer_footer a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
#customer_header a img,
#customer_footer a img{
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
#customer_header a:hover,
#customer_footer a:hover {
	text-decoration: none;
}
#customer_header a:hover img,
#customer_footer a:hover img{
	opacity: 0.75;
}
#customer_header a:focus,
#customer_footer a:focus{
	opacity: 0.75;
}

#customer_header .container,
#customer_footer .container {
	width: 1120px;
	padding: 0 10px !important;
	margin: 0 auto;
	position: relative;
	max-width: 100%;
}

#customer_header .sp,
#customer_footer .sp{
	display: none!important;
}


@media screen and (orientation:landscape) {
	body { width: 100%;}
}
@media screen and (max-width: 768px) {
	body{
		min-width: 0;
	}
	#customer_header,
	#customer_footer {
		font-size: 14px;
	}
	#customer_header .container,
	#customer_footer .container {
		width: 94%;
		padding: 0 !important;
	}
	#customer_header .sp,
	#customer_footer .sp {
		display: block!important;
	}
}


/* ---------------------------------------------------
	Header
------------------------------------------------------ */
#customer_header {
	padding: 90px 0 0;
}
#customer_header #header_wrap {
	position: absolute;
	z-index: 101;
	min-width: 1120px;
	width: 100%;
	height: 90px;
	background: #fff;
	top: 0;
	left: 0;
}
#customer_header #header {
	height: 100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#customer_header #h_logo {
	margin-left: 15px;
}
#customer_header #h_lang{
	text-align: center;
	margin: 0 auto 0 30px;
	position: relative;
}
#customer_header #h_lang p{
	border: 1px #000 solid;
	border-radius: 15px;
	font-size: 17px;
	height: 30px;
	cursor: pointer;
	line-height: 27px;
	width: 120px;
	text-align: center;
	background: url(../img/h_lang_arrow.png) no-repeat right 10px center;
	padding-right: 5px;
	position: relative;
}
#customer_header #h_lang p a {
	display: block;
	width: 100%;
	border-radius: 15px;
}
#customer_header #h_lang p a[href="#close"] {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	pointer-events: none;
}
#customer_header:target #h_lang p a[href="#close"] {
	pointer-events: auto;
}
#customer_header #h_lang span{
	margin-right: 5px;
}
#customer_header #h_lang:hover{
	opacity: 0.75;
}
#customer_header #h_langlist{
	position: absolute;
	top: 35px;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	-webkit-transition: height 0.5s;
	-o-transition: height 0.5s;
	transition: height 0.5s;
}
#customer_header:target #h_langlist {
	height: calc((1.8em + 6px) * 4 + 6px);
}
#customer_header #h_langlist ul {
	background: #fff;
	border: 1px #000 solid;
	border-radius: 15px;
}
#customer_header #h_langlist li + li{
	border-top: 1px #e0e2dd solid;
}
#customer_header #h_langlist li a{
	display: block;
	padding: 3px 0;
	-webkit-transition: none;
	transition: none;
}
#customer_header #h_langlist li a:hover{
	background: #000;
	color: #fff;
	opacity: 1;
}
#customer_header #h_langlist li:first-child a {
	border-radius: 15px 15px 0 0;
}
#customer_header #h_langlist li:last-child a {
	border-radius: 0 0 15px 15px;
}
#customer_header #h_nav ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: flex-end;
}
#customer_header #h_nav ul li a{
	height: 90px;
}
#customer_header #h_tel_pc{
	margin-right: 30px;
}
#customer_header #h_tel_pc p{
	font-size: 14px;
	border-bottom: 1px #000 solid;
	margin-bottom: 5px;
}
#customer_header #h_tel_sp{
	display: none;
}
#customer_header #h_dayplan,
#customer_header #h_plan{
	width: 180px;
}
#customer_header #h_dayplan a,
#customer_header #h_plan a{
	color: #fff;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 20px;
	line-height: 1.5;
	position: relative;
}
#customer_header #h_dayplan a{
	background: #b41e1a;
}
#customer_header #h_plan a{
	background: #77100e;
}
#customer_header #h_dayplan a span,
#customer_header #h_plan a span{
	font-size: 12px;
}
#customer_header #h_dayplan a:hover,
#customer_header #h_plan a:hover{
	opacity: 0.75;
}
#customer_header #h_reserve{
	display: none;
}
#customer_header #h_menu{
	width: 75px;
	position: relative;
}
#customer_header #h_menu a{
	background: #000;
	color: #fff;
	position: relative;
	display: block;
	z-index: 0;
}
#customer_header #h_menu a[href="#close"] {
	background: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
#customer_header #header_wrap:target #h_menu a[href="#close"] {
	pointer-events: auto;
}
#customer_header #h_menu:hover {
	opacity: 0.75;
}
#customer_header #h_menu a span{
	position: absolute;
	left: 50%;
	height: 3px;
	width: 40px;
	display: block;
	background: #fff;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.5s ease-in-out;
	margin-left: -20px;
}
#customer_header #h_menu a span:nth-child(1){
	top: 22px;
}
#customer_header #h_menu a span:nth-child(2){
	top: 34px;
}
#customer_header #h_menu a span:nth-child(3){
	top: 46px;
}
#customer_header #header_wrap:target #h_menu a span:nth-child(1) {
	top: 32px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#customer_header #header_wrap:target #h_menu a span:nth-child(2){
	opacity: 0;
}
#customer_header #header_wrap:target #h_menu a span:nth-child(3) {
	top: 32px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
#customer_header #h_menu em{
	position: absolute;
	bottom: 17px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 12px;
	line-height: 1;
}

@media screen and (max-width: 768px) {
	#customer_header {
		padding-top: 60px;
	}
	#customer_header #header_wrap{
		position: fixed;
		height: 60px;
		min-width: 100%;
	}
	#customer_header #header{
		display: block;
	}
	#customer_header #h_logo{
		float: left;
		width: 120px;
		margin-top: 7px;
	}
	#customer_header #h_lang {
		display: none;
	}
	#customer_header #h_nav ul li a{
		height: 60px;
		display: block;
	}
	#customer_header #h_tel_pc {
		display: none;
	}
	#customer_header #h_tel_sp,
	#customer_header #h_reserve{
		display: block;
		width: 60px;
	}
	#customer_header #h_tel_sp a,
	#customer_header #h_reserve a{
		padding-top: 11px;
		font-size: 12px;
		text-align: center;
	}
	#customer_header #h_tel_sp img,
	#customer_header #h_reserve img{
		display: block;
		height: 20px;
		margin: 0 auto 5px;
	}
	#customer_header #h_dayplan,
	#customer_header #h_plan{
		display: none;
	}
	#customer_header #h_menu{
		width: 60px;
	}
	#customer_header #h_menu a{
		background: transparent;
		color: #000;
	}
	#customer_header #h_menu a span{
		background: #000;
		width: 34px;
		margin-left: -17px;
		height: 2px;
	}
	#customer_header #h_menu a span:nth-child(1){
		top: 10px;
	}
	#customer_header #h_menu a span:nth-child(2){
		top: 20px;
	}
	#customer_header #h_menu a span:nth-child(3){
		top: 30px;
	}
	#customer_header #header_wrap:target #h_menu a span:nth-child(1),
	#customer_header #header_wrap:target #h_menu a span:nth-child(3){
		top: 20px;
	}
	#customer_header #h_menu em{
		bottom: 8px;
	}
}


/* ---------------------------------------------------
	G-nav
------------------------------------------------------ */

#customer_header #gnav {
	position: absolute;
	top: 90px;
	z-index: 99;
	right: 0;
	bottom: 0;
	height: 0;
	background: rgba(255,255,255,0.9);
	padding: 0;
	font-size: 15px;
	width: 255px;
	overflow: hidden;
	-webkit-transition: height 0.8s;
	-o-transition: height 0.8s;
	transition: height 0.8s;
}
#customer_header #header_wrap:target + #gnav {
	height: calc(100% - 90px);
	overflow: auto;
}
#customer_header #gnav ul {
	padding: 10px 30px 30px;
}
#customer_header #gnav ul li {
	border-bottom: 1px #ccc solid;
}
#customer_header #gnav ul li a {
	padding: 6px 30px 6px 5px;
	display: block;
	position: relative;
}
#customer_header #gnav ul li a:hover{
	background-color: rgba( 0, 0, 0, 0.1);
}
#customer_header #gnav ul li a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: -3px;
}


@media screen and (max-width: 768px) {
	#customer_header #gnav{
		position: fixed;
		top: 60px;
		width: 100%;
		background: #fff;
	}
	#customer_header #header_wrap:target + #gnav {
		height: calc(100% - 60px);
	}
	#customer_header #gnav ul{
		padding: 20px;
		margin-bottom: 30px;
	}
	#customer_header #gnav ul li a {
		padding: 15px 30px 15px 0;
	}
	#customer_header #gnav ul li a .pc {
		display: none;
	}
}


/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
#customer_header #main_img{
	height: 430px;
	position: relative;
}
#customer_header #main_img:before{
	content: '';
	position: absolute;
	top: 0;
	left: 400px;
	width: calc(100% - 400px);
	height: 100%;
	background: url(../img/main_img.jpg);
	background-size: cover!important;
	background-repeat: no-repeat!important;
	background-position: center!important;
}
#customer_header #main_img .title{
	position: absolute;
	background: #faf8f8;
	left: 0;
	top: 0;
	width: 400px;
	height: 100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	top: 0;
}
#customer_header #main_img .title h1{
	line-height: 1.4;
	font-size: 18px;
}
#customer_header #main_img .title h1 em{
	color: #972b2b;
	display: block;
	font-weight: 400;
	font-size: 35px;
}
#customer_header #main_img .title h1 span{
	display: block;
}

@media screen and (max-width: 768px) {
	#customer_header #main_img{
		height: 200px;
	}
	#customer_header #main_img:before {
		top: 60px;
		left: 0;
		width: 100%;
		height: calc(100% - 60px);
	}
	#customer_header #main_img .title {
		width: 100%;
		height: 60px;
		font-size: 12px;
		text-align: left;
		justify-content: left;
		padding: 0 3%;
	}
	#customer_header #main_img .title h1 {
		font-size: 12px;
	}
	#customer_header #main_img .title h1 em {
		font-size: 22px;
	}
}


/* breadcrumb
------------------------------------------------------ */
#customer_header #breadcrumb {
	text-align: right;
	font-size: 14px;
	background: #b41e1a;
	padding: 7px 15px;
	margin-bottom: 70px;
}
#customer_header #breadcrumb li{
	display: inline-block;
}
#customer_header #breadcrumb li:not(:last-child):after{
	content: '>';
	margin: 0 15px;
	color: #fff;
}
#customer_header #breadcrumb li:last-child{
	text-decoration: underline;
	color: #fff;
}
#customer_header #breadcrumb li a{
	color: #fff;
}
#customer_header #breadcrumb li a:hover{
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	#customer_header #breadcrumb {
		font-size: 12px;
		padding: 3px 10px;
		margin-bottom: 40px;
	}
	#customer_header #breadcrumb li a span span{
		display: none;
	}
	#customer_header #breadcrumb li:not(:last-child):after{
		margin: 0 5px;
	}
}


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */

#customer_footer #pagetop{
	border-top: 1px #ccc solid;
	font-size: 0;
}
#customer_footer #pagetop a{
	display: block;
	text-align: center;
	padding: 27px 0;
}
#customer_footer #pagetop a:hover{
	opacity: 0.75;
}
#customer_footer #f_top{
	height: 700px;
	background: url(../img/f_bg.jpg) no-repeat center/cover;
	text-align: center;
	padding-top: 100px;
	position: relative;
}
#customer_footer #f_logo{
	display: block;
	width: 107px;
	margin: 0 auto 70px;
}
#customer_footer #f_address{
	color: #fff;
	margin-top: 20px;
}
#customer_footer #f_nav1{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
#customer_footer #f_nav1 ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#customer_footer #f_nav1 ul li{
	width: 33.3%;
	border-top: 1px #fff solid;
	height: 70px;
	line-height: 70px;
}
#customer_footer #f_nav1 ul li:not(:nth-child(3n)){
		border-right: 1px #fff solid;
}
#customer_footer #f_nav1 ul li a{
	color: #fff;
	display: block;
}
#customer_footer #f_nav1 ul li a:hover{
	opacity: 0.75;
}
#customer_footer #f_nav1 ul li a span{
	display: inline-block;
	width: 10em;
}
#customer_footer #f_nav1 ul li:nth-child(1) a span {background: url(../img/f_icon1.png) no-repeat left}
#customer_footer #f_nav1 ul li:nth-child(2) a span {background: url(../img/f_icon2.png) no-repeat left}
#customer_footer #f_nav1 ul li:nth-child(3) a span {background: url(../img/f_icon3.png) no-repeat left}
#customer_footer #f_nav1 ul li:nth-child(4) a span {background: url(../img/f_icon4.png) no-repeat left}
#customer_footer #f_nav1 ul li:nth-child(5) a span {background: url(../img/f_icon5.png) no-repeat left}
#customer_footer #f_nav1 ul li:nth-child(6) a span {background: url(../img/f_icon6.png) no-repeat left}

#customer_footer #f_bottom{
	padding-top: 60px;
	margin-bottom: 20px;
}
#customer_footer #f_bottom>.container {
	width: 1300px;	
	max-width: 96%;	
}
#customer_footer #f_nav2{
	float: left;
	width: 62%;
}
#customer_footer .acc_tit{
	display: none;
}
#customer_footer #f_nav2 ul li a{
	position: relative;
	padding-left: 15px;
}
#customer_footer #f_nav2 ul li a:before{
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 4px;
	height: 4px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#customer_footer #f_nav2 ul li a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 100%;
	border-top: 1px #000 solid;
	-webkit-transition: right 0.3s;
	transition: right 0.3s;
}
#customer_footer #f_nav2 ul li a:hover:after{
	right: 0;
}
#customer_footer #f_nav2 ul:nth-of-type(1){
	margin-bottom: 17px;
}
#customer_footer #f_nav2 ul:nth-of-type(2){
	width: 28%;
	float: left;
}
#customer_footer #f_nav2 ul:nth-of-type(3){
	width: 42%;
	float: left;
}
#customer_footer #f_nav2 ul:nth-of-type(4){
	width: 30%;
	float: left;
}
#customer_footer #f_nav2 ul li + li{
	margin-top: 17px;
}
#customer_footer #f_banner{
	float: right;
	width: 34%;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: -20px 0 20px;
}
#customer_footer #f_banner + p{
	float: right;
	width: 34%;
	font-size: 13px;
	padding-bottom: 10px;
}
#customer_footer #f_reserve{
	float: right;
	width: 34%;
}
#customer_footer #f_reserve ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
}
#customer_footer #f_reserve ul li:nth-child(1){
	width: 100%;
	margin-bottom: 7px;
}
#customer_footer #f_reserve ul li:nth-child(2){
	width: 100%;
	margin-bottom: 18px;
}
#customer_footer #f_reserve ul li:nth-child(3){
	width: 48%;
}
#customer_footer #f_reserve ul li:nth-child(4){
	width: 48%;
}
#customer_footer #f_reserve ul li:nth-child(5){
	width: 100%;
	margin-top: 12px;
}
#customer_footer #f_reserve ul li a{
	display: block;
}
#customer_footer #f_reserve ul li a:hover{
	background: #ddd;
}
#customer_footer #f_reserve ul li:nth-child(1) a,
#customer_footer #f_reserve ul li:nth-child(2) a{
	color: #fff;
	font-size: 17px;
	height: 60px;
	line-height: 60px;
	position: relative;
}
#customer_footer #f_reserve ul li:nth-child(1) a{
	background: #aa2929;
}
#customer_footer #f_reserve ul li:nth-child(2) a{
	background: #b05959;
}
#customer_footer #f_reserve ul li:nth-child(1) a:hover,
#customer_footer #f_reserve ul li:nth-child(2) a:hover{
	opacity: 0.75;
}
#customer_footer #f_reserve ul li:nth-child(3) a,
#customer_footer #f_reserve ul li:nth-child(4) a,
#customer_footer #f_reserve ul li:nth-child(5) a{
	height: 32px;
	line-height: 30px;
	border: 1px #000 solid;
	border-radius: 5px;
}
#customer_footer #f_catch{
	margin-top: 30px;
	font-size: 13px;
	color: #b28850;
}
#customer_footer #copyright{
	border-top: 1px #ccc solid;
	padding: 3px 10px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#customer_footer #pagetop a{
		padding: 15px 0;
	}
	#customer_footer #pagetop a img{
		width: 30px;
	}
	#customer_footer #f_top {
		height: 430px;
		padding-top: 55px;
	}
	#customer_footer #f_top .tel-link img{
		width: 180px;
	}
	#customer_footer #f_logo{
		width: 60px;
		margin-bottom: 20px;
	}
	#customer_footer #f_address {
		margin-top: 10px;
	}
	#customer_footer #f_nav1 ul li{
		width: 50%;
		height: 40px;
		line-height: 40px;
	}
	#customer_footer #f_nav1 ul li:not(:nth-child(3n)){
		border-right: none;
	}
	#customer_footer #f_nav1 ul li:nth-child(odd){
		border-right: 1px #fff solid;
	}
	#customer_footer #f_nav1 ul li a span{
		width: 9em;
	}
	#customer_footer #f_bottom{
		padding-top: 30px;
	}
	#customer_footer #f_nav2{
		display: block;
		width: 100%;
		margin-bottom: 30px;
		float: none;
	}
	#customer_footer .acc_tit{
		display: block;
		position: relative;
		text-align: center;
		margin-bottom: 20px;
		height: 44px;
		line-height: 44px;
		font-size: 16px;
		border: 1px #000 solid;
		border-radius: 22px;
	}
	#customer_footer .acc_tit:after{
		content: '';
		position: absolute;
		top: 17px;
		left: 50%;
		margin-left: 50px;
		background: url(../img/icon_acc.png) no-repeat center/contain;
		width: 9px;
		height: 9px;
	}
	#customer_footer #f_nav2 ul:nth-of-type(1),
	#customer_footer #f_nav2 ul:nth-of-type(2),
	#customer_footer #f_nav2 ul:nth-of-type(3),
	#customer_footer #f_nav2 ul:nth-of-type(4){
		float: none;
		width: 21em;
		margin: 0 auto;
		font-size: 15px;
	}
	#customer_footer #f_nav2 ul:nth-of-type(2),
	#customer_footer #f_nav2 ul:nth-of-type(3),
	#customer_footer #f_nav2 ul:nth-of-type(4){
		margin-top: 10px;
	}
	#customer_footer #f_nav2 ul li + li {
		margin-top: 10px;
	}
	#customer_footer #f_banner{
		float: none;
		width: 260px;
		display: table;
		margin: 0 auto 30px;
	}
	#customer_footer #f_banner li{
		display: table-cell;
		vertical-align: middle;
		padding: 0 10px;
	}
	#customer_footer #f_banner + p{
	float: none;
	width: 100%;
	font-size: 13px;
    padding-bottom: 20px;
    margin-top: -20px;
	}
	#customer_footer #f_reserve{
		float: none;
		width: 100%;
	}
	#customer_footer #f_reserve ul li:nth-child(1) a,
	#customer_footer #f_reserve ul li:nth-child(2) a {
		height: 45px;
		line-height: 45px;
	}
}


/* ---------------------------------------------------
	更新履歴
------------------------------------------------------



------------------------------------------------------ */