@charset "utf-8";


/*############################################*/
/*（1）文字設定-共有*/
/*############################################*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html{
	font-size:14px;
	letter-spacing:0em;
	line-height:180%;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	color:#5a5a5a;
	-webkit-text-size-adjust: none;
}
.large{ font-size:16px; }
.larger{ font-size:18px; }
.smaller{ font-size:12px; }
a:link{
	color:#5c93d7;
	text-decoration:none;
}
a:visited{
	color:#5c93d7;
	text-decoration:none;
}
/*ホバー*/
a:hover{
	color:#df5d5d;
	text-decoration:none;
}
/*文字色*/
.aka{
	color:#cc2222;
}
.kuro{
	color:#000000!important;
}
.ao{
	color:#69a9e1;
}
.bold{
	font-weight:bold;
}
.serif,
.serif span{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/*############################################*/
/*（2）サイト全体-共有*/
/*############################################*/
html,
body{
	height:100%;
}
/* IE7でpadding指定 */
*:first-child+html body {
	padding-left:1px;
}
/* IE6以下でpadding指定 */
*html body {
	padding-left:1px;
}
img, h1, h2, h3, h4, h5, h6, p, form{
	border:none;
	margin:0;
}
img{
	vertical-align: top;
}
ul,dl{
	margin:0;
	padding:0;
	list-style:none;
}
table,
h1,h2,h3,h4,h5,h6{/*これないと、IEでbodyのフォントサイズが引き継がれない*/
	font-size:100%;
}
/*floatキャンセル*/
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.tt{
	border:solid 1px #dbdbdb;
	_border-width:0 1px 1px 0px;
	border-collapse:collapse;
}
.tt td,
.tt th{
	padding: 6px 12px;
	border:solid 1px #dbdbdb;
}
.scrollMargin{
	margin-top:-78px;
	padding-top:78px;
}

/*############################################*/
/*（3）共通アニメーション*/
/*############################################*/
/*ボタン拡大-----------*/
.kakudaiBtn:hover{
	animation:maruHvr;
	animation-duration: 0.7s;
	animation-timing-function: ease;
	animation-fill-mode:forwards;
}
@keyframes maruHvr{
	from{
		opacity:1;
		transform:scale(1.0,1.0); 
	}
	to{
		opacity:1;
		transform:scale(1.2,1.2);
	}
}
/*背景拡大-----------*/
.rollOverTransBox{
	display:block;
	position:absolute;
	overflow:hidden;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	z-index:0;
}
.rollOverTransInner{
	position: absolute;
	display:block;
	width: 100%;
	height:100%;
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	transition: all 0.7s ease-out;
	transform: matrix3d(
		1, 0, 0, 0,
		0, 1, 0, 0,
		0, 0, 1, 0,
		0, 0, 0, 1
	);
	will-change: transform;
}
.rollOverTransInner.hv:hover {
	transform: matrix3d(
		1, 0, 0, 0,
		0, 1, 0, 0,
		0, 0, 1, 0,
		0, 0, 0, 0.8
	);
	opacity:1;
}




/*############################################*/
/*（3）ヘッダーとか基本構成*/
/*############################################*/
body{
	padding:0;
	margin:0;
	text-align:center;
}
.body{
	_width:calc(100% - 146px);
	width:100%;
	/*1340*/
	min-width:1192px;
	_min-width:1340px;
	margin:0 auto;
}



/*体験----------------------------------------------------------------------*/
footer{
	_width:calc(100% - 146px);
	margin:0 auto;
}
footer .sitemapWrapper{
	display:flex;
	justify-content:center;
	width:100%;
	padding:80px 0 50px;
	background:#000;
}
footer .sitemapWrapper div:nth-child(1){
	flex-basis:370px;
	padding-top:300px;
	text-align:right;
	font-size:13px;
	color:#fff;
	-moz-osx-font-smoothing: grayscale;
}
footer .sitemapWrapper div:nth-child(2){
	flex-basis:300px;
}
footer .sitemapWrapper div:nth-child(3){
	flex-basis:370px;
}
footer .copyWrapper{
	padding:30px 0;
	font-size:12px;
}
/**/
footer .sitemapWrapper div:nth-child(1) a{
	color:rgba(255,255,255,0.9);
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
/**/
footer .pcmenu li a:link,
footer .pcmenu li a:visited,
footer .pcmenu li a:hover {
    color: #ccc;
	-moz-osx-font-smoothing: grayscale;
}
footer .pcmenu li a:before{
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(184,171,145,1) 50%, rgba(0,0,0,1) 100%);
}


/*共通----------------------------------------------------------------------*/
/**/
.sectionTitle h2,
.sectionTitle h3{
	-webkit-font-smoothing: antialiased;
	color:rgba(255,255,255,0.9);
	font: inherit;
	font-weight:normal;
	_font-family: 'Work Sans', sans-serif;
	font-family: 'Lato', sans-serif;
	font-weight:300;
	-moz-osx-font-smoothing: grayscale;
	font-size:25px;
	letter-spacing:0.08em;
	line-height:1.8em;
}
.sectionTitle h2 div,
.sectionTitle h3 div{
	position:relative;
}
.sectionTitle h2 div::before,
.sectionTitle h3 div::before{
	position:absolute;
	content:"";
	top:0px;
	left:0;
	right:0;
	margin:0 auto;
	width:230px;
	height:1px;
	background:#ccc;
}
.sectionTitle h2 div::after,
.sectionTitle h3 div::after{
	position:absolute;
	content:"";
	bottom:0px;
	left:0;
	right:0;
	margin:0 auto;
	width:230px;
	height:1px;
	background:#ccc;
}
.entranceWrapper .sectionTitle h3 div::before,
.entranceWrapper .sectionTitle h3 div::after,
.locationWrapper .sectionTitle h3 div::before,
.locationWrapper .sectionTitle h3 div::after{
	background:#777;
}
.sectionTitle h2 p,
.sectionTitle h3 p{
	padding-top:10px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size:13px;
	line-height:1.3em;
	letter-spacing:0em;
}
.chapterBox{
	display:block;
	position:relative;
	margin:0 auto 12px;
	font: inherit;
	font-family: 'Cormorant Infant', serif;
	font-size:26px;
	color:#999;
	letter-spacing:0.05em;
}
.chapterBox span{
	padding-right:6px;
	font-size:17px;
}
.pBox{
	background-size:cover;
	background-position:center center;
}

/*ボタン-ライン処理***********************************/
.basicBtn{
	position: relative;
	cursor: pointer;
	display:block;
	width:245px;
	height:53px;
	padding:12px 0 0 0;
	font-family: 'Lato', sans-serif;
	font-size:16px;
	letter-spacing:0.05em;
	text-align:center;
	background:rgba(242,240,236,0);
	border:solid 1px #e4e4e4;
}
.basicBtn:link,
.basicBtn:visited,
.basicBtn:hover{
	color:#818181;
}
.basicBtn:hover{
	color:#b8ab91;
}
.basicBtn span{
	display: block;
	width:245px;
}
.basicBtn::before,
.basicBtn::after{
	content:"";
	width: 0;
	height: 1px;
	position: absolute;
	transition: all 0.2s linear;
	background: #b8ab91;
	transition-delay: 0s;
}
.basicBtn span::before,
.basicBtn span::after{
	content:"";
	width:1px;
	height:0;
	position: absolute;
	transition: all 0.2s linear;
	background: #b8ab91;
	transition-delay: 0.2s;
}
.basicBtn:hover::before,
.basicBtn:hover::after{
	width: 100%;
	transition-delay: 0.2s;
}
.basicBtn:hover span::before,
.basicBtn:hover span::after{
	height: 100%;
	transition-delay: 0s;
}
/*下の辺の背景と一緒に動かす用*/
.sitaWrapper .innerBox a:hover .basicBtn::before,
.sitaWrapper .innerBox a:hover .basicBtn::after{
	width: 100%;
	transition-delay: 0.2s;
}
/*下の辺の背景と一緒に動かす用*/
.sitaWrapper .innerBox a:hover .basicBtn span::before,
.sitaWrapper .innerBox a:hover .basicBtn span::after{
	height: 100%;
	transition-delay: 0s;
}
.basicBtn::before{
	right: 0;
	top: -1px;
}
.basicBtn::after{
	left: 0;
	bottom: -1px;
}
.basicBtn span::before{
	left: -1px;
	top: 0;
}
.basicBtn span::after{
	right: -1px;
	bottom: 0;
}


/*サイドナビ----------------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 0px;
    bottom: 0;
    width: 50%;
    background-color: #fff;
}
/*左*/
.sidebar.left {
	left: -50%;
	text-align:center;
}
.sidebar.left .wrapper{
	display:flex;
	width:50%;
	margin:0 auto;
}
/*左メニューバーガー*/
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 40px;
	height: 25px;
	margin-top:4px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 11px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
/**/
.menu-trigger.active {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
	width:19px;
	_opacity:0.3;
	left:9px;
}
.menu-trigger.active span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
width:19px;
	_opacity:0.3;
	left:9px;
}
.menu-trigger.active span:nth-of-type(3) {
	opacity: 0;
}
/*左の左*/
.sidebar.left .wrapper .left{
	flex-basis:100%;
}
.sidebar.left .wrapper .left .inner{
	margin: 50vh auto 0;
	transform: translateY(-50%);
}
.accessBox{
	display:flex;
	justify-content:center;
}
.accessBox p{
	padding:5px 0 0 10px;
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:17px;
	letter-spacing:0.07em;
	color:#5a5a5a;
}
/*左の右*/
.sidebar.left .wrapper .right{
	flex-basis:50%;
	margin: 50vh auto 0;
	padding-left:73px;
	transform: translateY(-50%);
}
.langBox{
	display:flex;
	justify-content:space-between;
	position:absolute;
	top:10px;
	left:calc(50% - 110px);
	width:300px;
	margin:0 auto;
}
.langBox li a{
	color:#000;
	transition: all 0.4s ease-out;
}
.langBox li a:hover{
	color: #ccc;
}
.pcmenuLogo{
	margin-bottom:10px;
}
.pcmenu{
	position:relative;
	_width:96%;
	margin:20px  auto;
	padding:36px 0;
	color:#5a5a5a;
	font-size:15px;
	line-height:2.5em;
}
.pcmenu li a:link,
.pcmenu li a:visited,
.pcmenu li a:hover{
	position:relative;
	display:block;
	font-size:17px;
	color:#5a5a5a;
}
.pcmenu li a:before{
	position:absolute;
	content:"";
	bottom:1px;
	left:0;
	right:0;
	margin:0 auto;
	width:0px;
	height:1px;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(184,171,145,1) 50%, rgba(255,255,255,1) 100%);
	transition: all 0.4s ease-out;
}
.pcmenu li a:hover:before{
	width:200px;
}
.pcmenu:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 26px;
	background: #ccc;
}
.pcmenu:after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 26px;
	_border-radius:3px;
	background: #ccc;
}
/*右*/

/*.damiReserve{
	_position:absolute;
	_top:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:-1;
}*/
.quickBook{
	_position:absolute;
	_top:0;
	_left:0;
	_right:0;
	width:450px;
	margin:0 auto;
	padding:18px 48px 22px;
	border:solid 1px #777777;
	border-width:1px 1px;
}
/*.quickBook input{
	height:26px;
	padding:0 5px;
	text-align:center;
	border:solid 1px #fff;
	background:#a5a5a5;
	border-radius:4px;
}*/
.quickBook .dan1{
	display:flex;
	align-items:center;
	padding:15px 0;
}
.quickBook .dan1 a{
	display:flex;
	align-items:center;
}
.quickBook .dan1 input{
	_margin:0px 10px;
}
.quickBook .dan2{
	display:flex;
	flex-direction:column;
	padding:15px 0;
}
.quickBook .dan2 > div{
	padding:3px 0;
}
.quickBook .dan2 input{
	_width:40px;
	_margin:0px 10px;
}
.quickBook .dan3{
	display:flex;
	justify-content:space-between;
	padding:15px 0;
}
.quickBook .dan3 .btn{
/*	display:block;
	width:147px;
	padding:10px 0;
	text-align:center;
	color: rgba(255,255,255,0.9);
	border:solid 1px #777777;*/
}
/*--------*/
.dan1 .bookingNights,
.dan1 .bookingRooms{
	_display:none;
	_width:0;
	_height:0;
}
.dynDate{
	position:relative;
	display:block;
	width:190px;
	height:26px;
	margin:0px 0 0 10px;
	padding:0px 5px;
	text-align:center;
	color:#000;
	border:solid 1px #fff;
	background:#a5a5a5;
	border-radius:4px;
	cursor:pointer;
}
.dynDate::after{
	position:absolute;
	content:"";
	top:2px;
	right:-30px;
	width:22px;
	height:20px;
	background:url(/images_new/share/calendar.png) no-repeat;
	background-size:cover;
	background-position:center center;
	cursor:pointer;
}

.bookingDate br{
	display:none;
}
.dynDate input{
	display:inline;
	_width:auto;
	padding:0;
	margin:0px;
	font-size:14px;
	text-align:center;
	background:rgba(255,255,255,0);
	border:none;
	cursor:pointer;
}
.cmbARRY{
	width:3em!important;
}
.cmbARRM{
	width:1.5em!important;
}
.cmbARRD{
	width:1.5em!important;
}
/**/
.cmbNights,
.cmbRooms,
.cmbPerson0{
	display:inline-block;
	width:50px;
	height:26px;
	margin:0px 10px 0 0;
	padding:0px 5px;
	text-align:center;
	color:#000;
	border:solid 1px #fff;
	background:#a5a5a5;
	border-radius:4px;
	cursor:pointer;
}
.dynSubmit{
	display:flex;
	justify-content:space-between;
	width:100%;
}
.buttonSubmit,
.buttonCancel{
	display:inline-block;
	width:48%;
	padding:10px 0;
	text-align:center;
	color: rgba(255,255,255,0.9);
	background:#000;
	font-size:13px;
	border:solid 1px #777777;
	_border-radius:4px;
	cursor:pointer;
}











.sidebar.right {
    right: -50%;
	_right:0;
    text-align:center;
	background-color: #000;
	color:rgba(255,255,255,0.9);
}
.sidebar.right .wrapper{
	padding-right:73px;
}
.sidebar.right .inner{
	width:100%;
	margin:50vh auto 0;
	transform: translateY(-50%);
	overflow:auto;
	max-height:90vh;
}
.telBox p:nth-child(1){
	margin-bottom:6px;
	font-family: 'Abel', sans-serif;
	_font-size:20px;
}
.telBox p:nth-child(2){
	position:relative;
	margin-bottom:4px;
	font-family: 'Abel', sans-serif;
	font-size:20px;
}
.telBox p:nth-child(2):after{
	display:none;
	/*position: absolute;
	content: "";
	bottom: -8px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 30px;
	height: 3px;
	background: #818181;*/
}
.telBox p:nth-child(2) span.tel,
.telBox p:nth-child(2) span.tel a,
.telBox p:nth-child(2) span.tel a:link,
.telBox p:nth-child(2) span.tel a:visited{
	padding-left:2px;
	font-family: 'Abel', sans-serif;
	font-size:29px;
	letter-spacing:0.07em;
	_color:#5a5a5a;
	color:rgba(255,255,255,0.9);
}
.telBox p:nth-child(3){
	font-family: 'Abel', sans-serif;
	font-size:20px;
}
.telBox p:nth-child(2) u{
	font-size:16px;
	text-decoration:none;
}


/*20230214--osawa追加修正*/
.telBox p:nth-child(1) span.tel,
.telBox p:nth-child(1) span.tel a,
.telBox p:nth-child(1) span.tel a:link,
.telBox p:nth-child(1) span.tel a:visited{
	padding-left:2px;
	font-family: 'Abel', sans-serif;
	font-size:29px;
	letter-spacing:0.07em;
	_color:#5a5a5a;
	color:rgba(255,255,255,0.9);
}
/**/
#g-nav .btnBox,
#g-nav2 .btnBox{
	width:245px;
	margin:50px auto 0;
	color:#fff;
}
#g-nav2 .btnBox{
	margin:0px auto 0;
}
#g-nav .btnBox a,
#g-nav2 .btnBox a{
	display:block;
	padding:24px 0 6px;
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:15px;
	color:rgba(255,255,255,0.9);
	border:solid 1px #777;
	background-size:16px auto;
	background-repeat:no-repeat;
}
#g-nav .btnBox a:hover,
#g-nav2 .btnBox a:hover{
	color:#b8ab91;
}
#g-nav .btnBox .inq a,
#g-nav2 .btnBox .inq a{
	margin-bottom:30px;
	background-image:url(../images_new/share/pict_mail.png);
	background-position:center 10px;
}
#g-nav .btnBox .insta a,
#g-nav2 .btnBox .insta a{
	background-image:url(../images_new/share/pict_book.png);
	background-position:center 10px;
	margin-bottom:30px;
}
/*左右のメニュー開閉ボタン*/
.leftMenu{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:73px;
	height:100vh;
	text-align:center;
	background:#000;
	z-index:3001;
	cursor: pointer
}
.leftMenu div.leftBtnBox{
	margin:calc(50vh - 90px) auto 0;
	/*margin:calc(50vh - 40px) auto 0;-------langなし----------------------------------------------------------------*/
	font-weight: 400;
	font-family: 'Lato', sans-serif;
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-align:center;
	color:#fff;
}
.leftBtnBox img:nth-of-type(1){
	margin:4px auto 20px;
	transition: all .4s;
}
.rightMenu{
	display:none;
	position:fixed;
	top:0;
	right:0;
	width:73px;
	height:100vh;
	text-align:center;
	background:#000;
	z-index:3001;
	cursor: pointer;
}
.rightMenu:hover{
	background:#fff;
}
/*ボタン拡大-----------*/
.leftMenu:hover,
.rightMenu:hover{
	animation:sidemenuHvr;
	animation-duration: 0.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
}
@keyframes sidemenuHvr{
	0%{
		opacity:1;
		background:#000;
	}
	50%{
		opacity:1;
		background:#fff;
	}
	100%{
		opacity:1;
		background:#000;
	}
}
.rightBtnBox{
	font-weight: 400;
	font-family: 'Lato', sans-serif;
	font-size: 10.5px;
	letter-spacing: 0.05em;
	text-align:center;
	color:#fff;
}
.rightMenu .rightBtnBox{
	margin:calc(50vh - 110px) auto 0;
	transition: all .4s;
}
.rightBtnBox img{
	display:block;
	margin:10px auto;
}
.rightMenu .rightBtnBox img{
	pointer-events: none;
}
.rightBtnBox img:nth-of-type(1){
	margin:10px auto 0;
	transition: all .4s;
}
.rightBtnBox img:nth-of-type(2){
	margin:20px auto 26px;
	transition: all .4s;
}
.rightBtnBox img:nth-of-type(3){
	margin:10px auto 0;
	transition: all .4s;
}
/*active*/
.rightMenu.active div{
	_margin:calc(50vh - 200px) auto 0;
	transform: scale(-1, 1);
}
.rightMenu.active div a:nth-of-type(1){
	_margin:50px auto 0;
}
.rightMenu.active div a:nth-of-type(2){
	_margin:60px auto 80px;
}
.rightMenu.active div a:nth-of-type(3){
	_margin:40px auto 0;
}

/**/
.drawer-hamburger{
	display:none;
}




/*############################################*/
/* 次階層 */
/*############################################*/
/*見出し*/
.pageTitleWrapper{
	padding:30px 0 20px;
}
.pageTitleWrapper .sectionTitle h2{
	margin:22px 0 0px;
	font-size:30px;
	letter-spacing:0em;
	line-height:1.8em;
	color: #5a5a5a;
}
.pageTitleWrapper .sectionTitle h2 div{
	position:relative;
}
.pageTitleWrapper .sectionTitle h2 div::before{
	width:325px;
}
.pageTitleWrapper .sectionTitle h2 div::after{
	width:325px;
}
.pageTitleWrapper .sectionTitle h2 p{
	font-size:14px;
}


/*############################################*/
/*Booking Engine css */
/*############################################*/
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900);
#custom_engine{
	width: 425px;
	margin: 0 auto;
	color: #fff;
	border: solid 1px #777;
	padding: 10px 20px;
}
.outer_booking .book-now {
	padding-top: 1px;
	padding-right:0!important;
	width: 100%!important;
}
#custom_engine .outer_booking input.login{background:#707185;text-shadow:none}
#custom_engine p.booking-myaccount a{color:#d95809}
#custom_engine .outer_booking #reservation_search{background:0;padding:0}
#custom_engine .outer_booking{background:0}
#custom_engine .outer_booking p{height:auto}
#custom_engine .outer_booking .calendar{width:145px;}
#custom_engine .outer_booking .calendar input{box-shadow:none}
#custom_engine .outer_booking .room_list{padding-right:0;}
#custom_engine .outer_booking .room{box-shadow:none}
#custom_engine .outer_booking #results_widget{box-shadow:none}
#custom_engine .outer_booking .room{width:92px}
#custom_engine .outer_booking{color:#fff;/*color:#062a4d*/}
#custom_engine p.booking-myaccount a{color:#fff!important;font-size: 12px;}
#custom_engine .margin_top_p{margin-top:34px!important}
#custom_engine .outer_booking input.login{
	width:100%;
	adding:0 40px!important;background-color:#707185 !important;font-weight:normal;
	margin-left:0;
}
#custom_engine .outer_booking input.login:hover{opacity: .8; -webkit-transition: .4s; transition: .4s;}
#custom_engine .outer_booking .room:before{right:30px;border-top:#000 6px solid;border-left-width:4px;border-right-width:4px}
#custom_engine .outer_booking #results_widget:before{border-top:#000 6px solid;border-left-width:4px;border-right-width:4px}
#custom_engine .outer_booking .room:after{content:'';position:absolute;top:8px;right:10px;background:url(/l_en/images_new/book/adults.jpg) no-repeat left top;width:10px;height:19px}
#custom_engine .outer_booking .calendar input{background-image:url(/l_en/images_new/book/calender.jpg)}
#custom_engine .outer_booking p{padding:7px 0 0}
#custom_engine .outer_booking .fields-block,#custom_engine .outer_booking .fields-block-alter{text-align:left!important}
#custom_engine .outer_booking p{display:block}
#custom_engine .outer_booking #reservation_search > .fields-block-alter > .room:after{content:'';position:absolute;top:9px;right:12px;background:url(/l_en/images_new/book/room.jpg) no-repeat left top;width:11px;height:19px}
.outer_booking{font-family: 'Roboto'}
.find_title{display: none;}
#custom_engine .outer_booking{float: none; max-width: 1150px; margin: 0 auto}
#custom_engine .outer_booking p{margin: 0}
#custom_engine .outer_booking .inputbox-be input{box-shadow: none; background-color: #ffffff; color: #666666; }
#custom_engine .outer_booking .inputbox-be{width: 116px; padding-right:0;}
#custom_engine .outer_booking .child-popup .room{width: 65px; border: solid 1px #dadada; }
#custom_engine .outer_booking .child-popup{color: #000000; }
#adbox_widget .fields-block-alter {}
#adbox_widget .child-popup {  width: auto; } 
#adbox_widget .adbox-room-heading p {padding-top: 15px !important;}
.head-line {background: #383336 !important;}
.ui-state-default {font-size: 12px;}
.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {width: 1.8em;height: 1.8em;}
		
#adbox_widget .adbox-item {float:left;width: 33%;}
#adbox_widget .adbox-item .adbox-room-heading {/*width: 17%;*/}
#adbox_widget .adbox-item .adbox-person {}
#ui-datepicker-div .ui-widget-header {
  background-color: #0b2949;
}
#custom_engine {
	_overflow:auto;
	text-align: center;
}
#our_enigne {display: inline-block;}
#ui-datepicker-div { z-index:9999!important;}

/*Booking Engine css */
#our_enigne .outer_booking{
margin: 0;
}
 
body .ui-widget-header{
background-color: #383336;
}
body .ui-widget-header .ui-state-hover{
background-color:#fff !important; 
}
body .ui-datepicker .ui-datepicker-next-hover {right: 2px !important;}
body .ui-datepicker .ui-datepicker-prev-hover {left: 2px !important;}
body .ui-widget-header a{background-color: rgba(255, 255, 255, 0.7);}

 
 .booking_btn { display: none; }

/*----------- CHILD AGE ------------*/
.Age{float: left;
    margin-bottom: 15px;
    width: 100%; background:#fffdf3;}
.Age .child-age {
    float: left;
    width: 46%;
 margin: 2%;
}
.Age .child-age:nth-child(even){float: right}
.child-age .room select{ -moz-appearance: none;appearance: none; -webkit-appearance: none;
    background: #fff url("../images/arrow_booking.png") no-repeat scroll 96% center;
    border: 1px solid #d1d1d1;
    color: #000; width: 100%; height: 28px; padding: 5px;}
.child-age p{margin-bottom: 0px;}
   
.popup-age {
 background-color: rgba(255, 255, 255, 1);
    border: 1px solid #c9c9c9;
    border-radius: 8px;
    padding: 0 0 12px;
    position: absolute;
    width: 200px;
    z-index: 9999999;
}
.popup-age p {margin: 5px 0 0 0;}
.outer_booking {margin-top:15em}
.close-pp {
 background: #fff ;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    height: 18px;
    line-height: 17px;
    position: absolute;
    right: 4px;
    text-indent: 0;
    text-transform: uppercase;
    top: 4px;
    width: 18px;
}
.outer_booking .fields-block-alter {
  position: relative;
}
.popup-age .child-popup{float: left;
    margin: 4%;
    width: 38%;}
.popup-age .child-popup:nth-child(odd){float: right;}
.head-line{background: #1a185d;
    border-radius: 8px 8px 0 0;
    color: #fff;
    height: 30px;
    line-height: 30px;
    text-align: center;}
.age-head{text-align: center; color:#fff;}
.popup-age .child-popup select{width: 100%;border: 1px solid #ddd;
    color: #000;
    width: 100%; -moz-appearance: none;appearance: none;-webkit-appearance: none;
    background: #fff url("../images/arrow_booking.png") no-repeat scroll 98% center;height: 35px;}
.xpm-text {width: 96%; display: inline-block; padding-bottom: 10px;}
 
.ui-state-focus, .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-focus, .ui-widget-header .ui-state-hover { background-color: #383336 !important; color:#fff !important; } 			

.outer_booking .adbox-item .fields-block-alter {
	float: none!important;
	_padding: 0 7px 0 0;
}


/*20220627*/
.iconBox{
	display:flex;
	justify-content:space-between;
	width:85px;
	margin:0 auto;
}
.iconBox a:hover{
	transition: all 0.5s;
	opacity:0.7;
}
/*20230131nino追記-グロナビ背景*/
.topMenu{
	background: rgba(0,0,0,0.4);
	padding: 0 0 9px 0;
}
.topMenu div.topBtnBox.n01 ul li {
	background:none;
}
.topMenu div.topBtnBox.n01 ul li {
	padding:10px 10px 3px;
}
.topMenu div.topBtnBox.n01 select {
	padding: 1px 13px 0px 8px;
	font-size: 12px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
/**/
.pageTitleWrapper {
	padding-top:92px;
}
footer .copyWrapper {
	padding: 30px 0 165px;
}
/*コピーライト内ロゴ入れる-20230818大澤*/
footer .copyWrapper .copyLogo{
	max-width: 1160px;
	margin: 0 auto;
	padding:0px 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .copyWrapper .copyLogo img{
	width: 100%;
	vertical-align: middle;
}
footer .copyWrapper .copyLogo a{
	max-width: 225px;
	text-decoration: none;
	cursor: pointer;
}
footer .copyWrapper .copyLogo .logo_oh{
	width: 15%;
	margin-left: 5em;
}
/**/
/*20230127osawa追記下部メニュースマホ
---------------------------*/
/*下部のメニューボタン*/
.underMenu{
	position:fixed;
	display:none;
	/* top:0; */
	left:0;
	bottom: 0;
	width:100vw;
	/* height:100vh; */
	text-align:center;
	background:#000;
	z-index:9999;
	cursor: pointer
}
.underMenu div.underBtnBox{
	/* margin:calc(50vh - 90px) auto 0; */
	/*margin:calc(50vh - 40px) auto 0;-------langなし----------------------------------------------------------------*/
	font-weight: 400;
	font-family: 'Lato', sans-serif;
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-align:center;
	color:#fff;
}
.underBtnBox img:nth-of-type(1){
	margin:4px auto 20px;
	transition: all .4s;
}
.underMenu div.underBtnBox ul{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0;
	margin: 0;
	border-top: solid 1px #fff;
}
.underMenu div.underBtnBox ul li{
	width: calc(100vw / 3);
	background-color: #000;
	position: relative;
}
.underMenu div.underBtnBox ul li:not(:last-child){
border-right: solid 1px #fff;
	}
.underMenu div.underBtnBox ul li a{
	display: block;
	text-decoration: none;
	padding: 30px 0 5px;
	color:#fff;
	background-image: url(../images_new/share/pict_bed.png);
	background-position: center 12px;
	background-size: 16px auto;
	background-repeat: no-repeat;
}
/* .underMenu div.underBtnBox ul li:nth-of-type(2) a{
	background-image: url(../images_new/share/pict_access.png);
} */

.underMenu div.underBtnBox ul li:nth-of-type(2) a{
	background-image: url(../images_new/share/pict_news.png);/*202230215 osawa*/
}
.underMenu div.underBtnBox ul li:nth-of-type(3) a{
	background-image: url(../images_new/share/pict_access.png);/*202230215 osawa*/
}
.underMenu div.underBtnBox ul li:last-child a{
	background-image: none;
}
.underMenu div.underBtnBox ul li a span{
	display: block;
}
.underMenu div.underBtnBox ul li a span::before{

}
/*ボタン拡大-----------*/
/* .underMenu li:hover{
	animation:sidemenuHvr;
	animation-duration: 0.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
} */






/*responsive---------------------------------------------------------------------------------------*/
.ip5{
	display:none;
}
.img100per{
	width:100%;
	height: auto;
}
.img-sp100per{
}
.img-max100per{
	display: block;
	max-width: 100%;
	height: auto;
}
/*############################################*/
/*  */
/*############################################*/
.sp{
	display:none;
}
@media (max-width: 992px) {

}
@media only screen and (max-width: 767px) {
	.scroll_position{
		_margin-top:0px;
		_padding-top:0px;
	}
	body{
		font-size:14px;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	.img100per{
		width:100%;
		height: auto;
	}
	.img-sp100per{
		width:100%;
		height: auto;
	}
	.img-max100per{
		display: block;
		max-width: 100%;
		height: auto;
	}

	/*############################################*/
	/*（3）共通アニメーション*/
	/*############################################*/
	/*ボタン拡大-----------*/
	.kakudaiBtn:hover{
		animation:none;
	}
	/*背景拡大-----------*/
	.rollOverTransBox{
	}
	.rollOverTransInner{
		transition: none;
		will-change: none;
	}
	.rollOverTransInner.hv:hover {
		transform:none;
	}

	/*############################################*/
	/*（3）ヘッダーとか基本構成*/
	/*############################################*/
	html,
	body{
		height:auto;
		padding:0;
		margin:0;
		text-align:center;
		_overflow:hidden;/*これがあると、AndroidのChromeでスクロールしなくなる*/
	}
	.body{
		width:100%;
		min-width:100%;
		overflow:hidden;
	}

	/*footer----------------------------------------------------------------------*/
	footer{
		width:100%;
		margin:0 auto;
	}
	footer .sitemapWrapper{
		display:flex;
		flex-wrap:wrap;
		justify-content:center;
		width:100%;
		padding:80px 0 50px;
		_background:#000;
	}
	footer .sitemapWrapper div:nth-child(1){
		order:2;
		flex-basis:100%;
		padding-top:20px;
		text-align:center;
		_color:#fff;
		_-moz-osx-font-smoothing: grayscale;
	}
	footer .sitemapWrapper div:nth-child(2){
		order:1;
		flex-basis:500px;
	}
	footer .sitemapWrapper div:nth-child(3){
		_flex-basis:220px;
		_display:none;
	}
	footer .copyWrapper{
		/*padding: 30px 0 100px;*/
		padding:30px 0;
		font-size:12px;
	}
	/*コピーライト内ロゴ入れる-20230818大澤*/
	footer .copyWrapper .copyLogo{
		display: block;
		max-width: 1230px;
		margin: 0 auto;
		padding:0px 0 50px;
		text-align: center;
		/* padding:0px 0 30px;
		display: flex;
		justify-content: center;
		align-items: center; */
	}
	footer .copyWrapper .copyLogo img{
		width: 100%;
		vertical-align: middle;
	}
	footer .copyWrapper .copyLogo a{
		display: block;
		max-width: 180px;
		margin: 0 auto;
	}
	footer .copyWrapper .copyLogo .logo_oh{
		max-width: 174px;
		width: 46%;
		margin: 2em auto 0 ;
	}
	/**/
	/**/
	footer .sitemapWrapper div:nth-child(1) a{
		color:#fff;
		font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	}
	/**/
	footer .pcmenu li a:link,
	footer .pcmenu li a:visited,
	footer .pcmenu li a:hover {
		color: #ccc;
		-moz-osx-font-smoothing: grayscale;
	}
	footer .pcmenu li a:before{
		background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(184,171,145,1) 50%, rgba(0,0,0,1) 100%);
	}

	/*共通----------------------------------------------------------------------*/
	.chapterBox{
		display:block;
		position:relative;
		font-family: 'Cormorant Infant', serif;
		font-size:30px;
		color:#999;
		letter-spacing:0.05em;
	}
	.chapterBox span{
		padding-right:6px;
		font-size:19px;
	}
	.chapterBox::after{
		/*position:absolute;
		content:"";
		bottom:-10px;
		left:0;
		right:0;
		margin:0 auto;
		width:30px;
		height:3px;
		background:#818181;*/
	}
	.pBox{
		background-size:cover;
		background-position:center center;
	}
	
	/*ボタン-ライン処理***********************************/
	.basicBtn{
		position: relative;
		cursor: pointer;
		display:block;
		width:245px;
		height:53px;
		padding:12px 0 0 0;
		font-family: 'Lato', sans-serif;
		font-size:16px;
		letter-spacing:0.05em;
		text-align:center;
		background:rgba(242,240,236,0);
		border:solid 1px #e4e4e4;
		_transition: all 0.4s
	}
	.basicBtn:link,
	.basicBtn:visited,
	.basicBtn:hover{
		color:#818181;
	}
	.basicBtn:hover{
		_background:rgba(242,240,236,1);
		_transition-delay: .4s;
		color:#b8ab91;
	}
	.basicBtn span{
		display: block;
		width:245px;
		_background:rgba(242,240,236,0);
	}
	.basicBtn::before,
	.basicBtn::after{
		content:"";
		width: 0;
		height: 1px;
		position: absolute;
		transition: all 0.2s linear;
		background: #b8ab91;
		transition-delay: 0s;
	}
	.basicBtn span::before,
	.basicBtn span::after{
		content:"";
		width:1px;
		height:0;
		position: absolute;
		transition: all 0.2s linear;
		background: #b8ab91;
		transition-delay: 0.2s;
	}
	.basicBtn:hover::before,
	.basicBtn:hover::after{
		width: 100%;
		transition-delay: 0.2s;
	}
	.basicBtn:hover span::before,
	.basicBtn:hover span::after{
		height: 100%;
		transition-delay: 0s;
	}
	.basicBtn::before{
		right: 0;
		top: -1px;
	}
	.basicBtn::after{
		left: 0;
		bottom: -1px;
	}
	.basicBtn span::before{
		left: -1px;
		top: 0;
	}
	.basicBtn span::after{
		right: -1px;
		bottom: 0;
	}
	
	
	/*サイドナビ----------------------------------------------------------------------*/
	.sidebar {
		display:none;
	}
	.leftMenu{
		display:none;
	}
	.rightMenu{
		display:none;
	}


	/*20230127osawa追記サイドナビ
	---------------------------*/
	.underMenu{
		display:block;
	}
	.topMenu{
		display: none;
	}
	/*ナビ----------------------------------------------------------------------*/
	/*drawer追記分のみ*/
	.drawer-hamburger{
		position:fixed;
		display:block;
		top:0;
		right:0;
		padding:15px 15px 25px;
		z-index:20;
		background:rgba(0,0,0,0.8);
	}
	.drawer-hamburger:hover {
		background:rgba(0,0,0,0.8);
	}
	.drawer-hamburger:before{
	}
	.drawer-nav{
		_padding:20px 0;
		z-index:14;
		_background:rgba(255,255,255,0.95);
		background:rgba(0,0,0,0.9);
	}
	.drawer-hamburger-icon, .drawer-hamburger-icon::after, .drawer-hamburger-icon::before {
		height:3px;
		background:rgba(90,90,90,1);
	}
	.drawer-nav .drawer-menu{
		margin:0px 0 0px;
		padding:50px 0;
	}
	.drawer-nav .drawer-menu li{
	}
	.drawer-nav .drawer-menu li a{
		color: rgba(255,255,255,0.8);
		font-size:16px;
		line-height:2.2em;
	}
	.drawer--top.drawer-open .drawer-nav {
	}
	/**/
	.drawer-menu .logo{
		margin-bottom:20px;
	}
	/*20230127osawa追記SPナビ
	---------------------------*/
	.drawer-hamburger {
		position: absolute;
		display: block;
		right: 0;
		left: 0;
		top: -1px;
		margin: 0 auto;
		background-image: none;
		background-position: center;
		padding: 10px 10px 20px;
		z-index: 20;
		background: rgba(0,0,0,0);
	}
	.drawer-hamburger:hover {
		background:rgba(0,0,0,0);
	}
	.drawer-hamburger:before{
	}
	.drawer-nav{
		_padding:20px 0;
		z-index:14;
		_background:rgba(255,255,255,0.95);
		background:rgba(0,0,0,0.9);
	}
	.drawer-hamburger-icon, .drawer-hamburger-icon::after, .drawer-hamburger-icon::before {
		height:1px;
		background:rgb(255, 255, 255);
	}
	.drawer-nav .drawer-menu{
		margin:0px 0 0px;
		padding:50px 0 80px;
	}
	.drawer-nav .drawer-menu li{
	}
	.drawer-nav .drawer-menu li a{
		color: rgba(255,255,255,0.8);
		font-size:16px;
		line-height:2.2em;
	}
	.drawer--top.drawer-open .drawer-nav {
	}
	/**/
	.drawer-menu .logo{
		margin-bottom:20px;
	}
	/**/
	.firstBtnBox{
		display:flex;
		justify-content:space-between;
		flex-wrp:wrap;
		width:96%;
		margin:4px auto 0;
		color:#fff;
	}
	.firstBtnBox a{
		display:block;
		width:100%;
		padding:15px 0 15px;
		margin-bottom:1.5vw;
		font-weight:300;
		font-family: 'Lato', sans-serif;
		font-size:15px;
		color:#fff;
		text-align:center;
		border:solid 1px #777;
	}
	.firstBtnBox a:nth-child(1){
		background:#6f7082;
	}
	.firstBtnBox a:nth-child(2),
	.firstBtnBox a:nth-child(3){
		width:48.5%;
	}
	/*.firstBtnBox div{
		width:49%;
	}
	.firstBtnBox .basicBtn{
		display:block;
		width:100%;
		padding:24px 0 6px;
		font-weight:300;
		font-family: 'Lato', sans-serif;
		font-size:15px;
		color:#fff;
		text-align:center;
		border:solid 1px #777;
		background-size:16px auto;
		background-repeat:no-repeat;
	}
	.firstBtnBox .inq a{
		background-image:url(../images_new/share/pict_mail.png);
		background-position:center 10px;
	}
	.firstBtnBox .insta a{
		background-image:url(../images_new/share/pict_book.png);
		background-position:center 10px;
	}
	.firstBtnBox .basicBtn span {
		_display: block;
		width:100%;
	}
*/
	/*20221007*/
	.newToiBtn{
		margin:20px 0 0;
	}
	.newToiBtn a{
		position:relative;
		color:rgba(255, 255, 255, 0.8);
	}
	.newToiBtn a::before{
		content:"";
		position:absolute;
		right:-15px;
		top:5px;
		width: 6px;
		height: 6px;
		border-top: 2px solid rgba(255, 255, 255, 0.8);
		border-right: 2px solid rgba(255, 255, 255, 0.8);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}


	/*-予約1本化で以下削除---------------------------------------------------*/
	.firstBtnBox{
		display:flex;
		justify-content:space-between;
		flex-wrap:wrap;
		width:80%;
		margin:4px auto 0;
		color:#fff;
	}
	.firstBtnBox div{
		width:100%;
	}
	.firstBtnBox p{
		padding:15px 0 3px;
		text-align:center;
		margin:0 auto;
	}
	.spNavSquare{
		position:relative;
		width:96%;
		margin:8px  auto 27px;
		padding:36px 0;
	}
	.spNavSquare:before{
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 1px;
		height: 26px;
		_border-radius:3px;
		background: #ccc;
	}
	.spNavSquare:after{
		position: absolute;
		content: "";
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 1px;
		height: 26px;
		_border-radius:3px;
		background: #ccc;
	}

	/**/
	.spNavSita{
		padding:30px 0 10px;
		border-top:solid 1px #777;
	}
	.telBox p:nth-child(1),
	.telBox p:nth-child(3),
	.telBox p:nth-child(2),
	.telBox p:nth-child(2) span,
	.telBox p:nth-child(2) span a,
	.telBox p:nth-child(2) span a:link,
	.telBox p:nth-child(2) span a:visited,
	.spNavSita .telBox p:nth-child(2){
		color: rgba(255,255,255,0.8);
	}
	.telBox p:nth-child(2){
		color: rgba(255,255,255,0.8);
	}
	.telBox p:nth-child(2) u{
		font-size:14px;
		text-decoration:none;
	}


	.langBox{
		display:flex;
		justify-content:space-between;
		position:absolute;
		top:10px;
		left:0;
		right:0;
		width:100%;
		margin:0 auto;
		padding:0 7%;
		text-align:center;
		border-bottom: solid 1px #777;
	}
	.drawer-nav .drawer-menu .langBox li a{
		color: rgba(255,255,255,0.8);
		font-size:12px;
		transition: all 0.4s ease-out;
	}


	/*############################################*/
	/* 次階層 */
	/*############################################*/
	/*見出し*/
	.pageTitleWrapper{
	}
	.pageTitleWrapper .sectionTitle h2{
	}
	.pageTitleWrapper .sectionTitle h2 div{
	}
	.pageTitleWrapper .sectionTitle h2 div::before{
		width:80%;
	}
	.pageTitleWrapper .sectionTitle h2 div::after{
		width:80%;
	}
	.pageTitleWrapper .sectionTitle h2 p{
	}

	/*20220627*/
	.iconBox{
		margin:0 auto 30px;
	}

	/*20230201-下から出てくるスマホ用ナビ*/
	.underBtnBox a span{
		position:relative;
		z-index:2;
	}
	/*スマホ用グローバルナビ*/
	#g-nav,
	#g-nav2{
		position:fixed;
		z-index: 2;
		bottom:-120%;
		left:0;
		width:100%;
		height: 100vh;/*100dvhだけだと、iOS15.4以降のみにしか的用されなく、高さ取得できないので100vhも必要*/
		height: 100dvh;/*ナビの高さ*/
		background:#000;
		transition: all 0.6s;
	}
	#g-nav.panelactive,
	#g-nav2.panelactive{
		bottom: 0;
	}
	#g-nav.panelactive #g-nav-list,
	#g-nav2.panelactive #g-nav-list2{
		/*ナビの数が増えた場合縦スクロール*/
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;/*100dvhだけだと、iOS15.4以降のみにしか的用されなく、高さ取得できないので100vhも必要*/
		height: 100dvh;/*表示する高さ*/
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	/**/
	.openbtn{
		position:absolute;
		z-index: 9999;/*ボタンを最前面に*/
		top:-3px;
		left:0px;
		right: 0px;
		width: 35px;
		height:50px;
		margin:0 auto;
		cursor: pointer;
		pointer-events: none;
	}
	/*×に変化*/	
	.openbtn span{
		display: inline-block;
		position: absolute;
		left: 0px;
		width:100%;
		height: 2px;
		border-radius: 2px;
		background-color: #fff;
		transition: all .4s;
	}
	.openbtn span:nth-of-type(1) {
		top:15px;	
	}
	.openbtn span:nth-of-type(2) {
		top:22px;
	}
	.openbtn span:nth-of-type(3) {
		top:29px;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		left: 0px;
		transform: translateY(6px) rotate(-45deg);
		width: 90%;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3){
		top: 30px;
		left: 0px;
		transform: translateY(-6px) rotate(45deg);
		width: 90%;
	}
	/*------------------------------------*/
	.openbtn2{
		position:absolute;
		z-index: 0;/*ボタンを最前面に*/
		top:0px;
		left:0px;
		right: 0px;
		width: 35px;
		height:50px;
		margin:0 auto;
		cursor: pointer;
		background:rgba(0,0,0,0);
		transition: all .4s;
		pointer-events: none;
	}
	.openbtn2.active{
		background:rgba(0,0,0,1);
	}
	/*×に変化*/	
	.openbtn2 span{
		display: inline-block;
		position: absolute;
		left: 0px;
		width:100%;
		height: 2px;
		border-radius: 2px;
		background-color: #fff;
		transition: all .4s;
		opacity:0;
	}
	.openbtn2 span:nth-of-type(1) {
		top:15px;	
	}
	.openbtn2 span:nth-of-type(2) {
		top:22px;
	}
	.openbtn2 span:nth-of-type(3) {
		top:29px;
	}
	.openbtn2.active span:nth-of-type(1) {
		top: 15px;
		left: 0px;
		transform: translateY(6px) rotate(-45deg);
		width: 90%;
		opacity:1;
	}
	.openbtn2.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn2.active span:nth-of-type(3){
		top: 27px;
		left: 0px;
		transform: translateY(-6px) rotate(45deg);
		width: 90%;
		opacity:1;
	}



} /* /@media */
@media only screen and (max-width: 374px) {
	/*iPhone5サイズ*/


	/*なぜかdrawer内の文字サイズがおかしくなるので*/
	/*
	と思ったけど、以下をhtmlに指定することで解決
	-webkit-text-size-adjust: none;
	どうもiPhoneの文字サイズ自動調整機能みたい
	
	.firstBtnBox a{
		font-size:8px;
		line-height:1.8em;
	}
	.drawer-nav .drawer-menu li a{
		font-size:10px;
		line-height:2.2em;
	}
	.spNavSita p:nth-child(1){
		font-size:8px;
	}
	*/


} /* /@media */


/*20230130osawa追記トップメニューPC
---------------------------*/
/*上部のメニューボタン*/
.topMenu{
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	text-align: center;
	z-index: 3001;
	cursor: pointer;
	}
	.topMenuinner{
		display: flex;/*20230213 osawa */
		justify-content: space-between;
		min-width: 1192px;
		margin: 0 auto;
		padding: 0 1%;
		/* padding-right: 73px; */
	}
	.topMenu .topMenulogo a{
		display: block;
		/* padding-left: 30px; */
		margin-top: 16px;
	}
	.topMenu .topMenulogo a img{
		width: 310px;
		height: auto;
	}
	/**/
	.topMenu div.topBtnBox{
	font-weight: 400;
	font-size: 14.5px;
	letter-spacing: 0.1em;
	text-align:center;
	color:#fff;
	}
	.topBtnBox img:nth-of-type(1){
	}
	/*上部のメニューボタン--アイコンボタン*/
	.topBtnBox .iconBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: auto;
	margin: 0 auto;
	}
	.topBtnBox .iconBox a{
	width: 20px;
	}
	.topBtnBox .iconBox a+a{
	margin-top: 1px;
	margin-left: 15px;
	}
	.topBtnBox .iconBox a img{
	width: 100%;
	}
	.topMenu div.topBtnBox ul{
	display: flex;
	justify-content: right;
	align-items: center;
	width: 100%;
	padding: 0;
	margin: 0;
	}
	.topMenu div.topBtnBox ul li{
	}
	.topMenu div.topBtnBox ul li:not(:last-child){
	padding-right: 30px;
	}
	.topMenu div.topBtnBox ul li a{
	display: block;
	text-decoration: none;
	padding: 10px 0;
	color:#fff;
	}
	.topMenu div.underBtnBox ul li:nth-of-type(2) a{
	}
	.topMenu div.topBtnBox ul li a span{
	}
	.topMenu div.topBtnBox ul li a span::before{
	
	}
	/*上部のメニューボタン上---n01*/
	.topMenu div.topBtnBox.n01{
	font-weight: 400;
	font-size: 12.5px;
	letter-spacing: 0.1em;
	text-align:center;
	color:#fff;
	}
	.topMenu div.topBtnBox.n01 ul li{
	padding: 10px;
	background: rgba(0,0,0,0.6);
	}
	.topMenu div.topBtnBox.n01 ul li:first-child{
	padding-top: 11px;
	padding-left: 20px;
	}
	.topMenu div.topBtnBox.n01 ul li:nth-child(2){
	}
	.topMenu div.topBtnBox.n01 ul li:last-child{
	padding-right: 20px;
	}
	.topMenu div.topBtnBox.n01 ul li a{
	padding: 0;
	}
	.topMenu div.topBtnBox.n01 select {
	position: relative;
	padding: 5px 13px 5px 8px;
	font-size: 10px;
	border: solid 1px #fff;
	color: #fff;
	background: rgba(0,0,0,0.7);
	}
	.topMenu div.topBtnBox.n01 select::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	right: 0px;
	top: 0px;
	border-top: solid 2px #5070e3;
	border-right: solid 2px #5070e3;
	transform: rotate(135deg);
	}
	
	/*上部のメニューボタン下---n02*/
	.topMenu div.topBtnBox.n02 ul li{
	}
	.topMenu div.topBtnBox.n02 ul li:last-child{
	/* padding-right: 10px; */
	padding-right: 5px;/*20230214--osawa*/
	}
	.topMenu div.topBtnBox.n02 ul li a {
	display: block;
	text-decoration: none;
	padding: 0;
	color: #fff;
	}
	
	/*ボタン拡大-----------*/
	/* .topMenu li:hover{
	animation:topmenuHvr;
	animation-duration: 0.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
	} */
	/*ボタン拡大20230130_osawa追記-----------*/
	
	.topMenu li a:hover{
	animation:topmenuHvr;
	animation-duration: 0.65s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
	}
	@keyframes topmenuHvr{
		0%{
			opacity:1;
			/* background:#000; */
		}
		50%{
			opacity:0.4;
			/* background:#fff; */
			color: #ebebeb;
		}
		100%{
			opacity:1;
			/* background:rgba(255, 0, 0, 0); */
			color: #fff;
		}
	
	}
	/*20230131nino追記-グロナビ背景*/
	.topMenu{
	background: rgba(0,0,0,0.4);
	padding: 0 0 9px 0;
	}
	.topMenu div.topBtnBox.n01 ul li {
	background:none;
	}
	.topMenu div.topBtnBox.n01 ul li {
	padding:10px 10px 3px;
	}
	.topMenu div.topBtnBox.n01 select {
	padding: 1px 13px 0px 8px;
	font-size: 12px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}
	/**/
	.pageTitleWrapper {
	padding-top:92px;
	}
	/*20230818--osawa-追記*/
	footer .copyWrapper {
		padding: 30px 0 135px;
		}
	@media only screen and (max-width: 767px){
		footer .copyWrapper {
			padding: 30px 0 95px;
		}
	} 
	/**/
	@media only screen and (max-width: 767px){
		.pageTitleWrapper {
				padding: 30px 0 20px;
		}
	} 
	/**/
	@media only screen and (max-width: 767px) {
	.topMenu{
		display: none;
	}
	
	}
	
	