@charset "utf-8";

.floating-banner {
    position: fixed; /* 追従 */
    z-index: 99999; /* 他の要素の下に隠れないように */
    bottom: 0px;/* バナーの上下の位置 */
   left:0px; /* バナーの左右の位置 */
}
.pc {
    width: 550px; /* バナーの横幅を指定 */

}

.sp {
    display: none; /* PCではスマホ用のバナーは非表示に */
}
/*############################################*/
/*（1）文字設定-共有*/
/*############################################*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html{
	font-size:14px;
	letter-spacing:0em;
	line-height:180%;
	_font-family: 'Noto Serif JP', serif;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	_font-weight:400;
	color:#5a5a5a;
	-webkit-text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
}
.large{ font-size:16px; }
.larger{ font-size:18px; }
.smaller{ font-size:12px; }
a:link{
	color:#ffffff;
	text-decoration:none;
}
a:visited{
	color:#ffffff;
	text-decoration:none;
}
/*ホバー*/
a:hover{
	color:#ffffff;
	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;
	_border-width:1px 0 0 1px;
}
.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% - 73px);
	margin:0;
	min-width:1192px;
}


/*ヘッダー----------------------------------------------------------------------*/
/*.headWrapper{
	width:100%;
	min-width:1192px;
	height:142px;
}
.headWrapper h1{
	position:relative;
	width:100%;
	height:142px;
	margin:0 auto;
}
.headWrapper h1 .logo{
	position:absolute;
	top:28px;
	left:0;
	right:0;
	margin:0 auto;
}
.headWrapper h1 .siteTitle{
	position:absolute;
	top:54px;
	left:20px;
	text-align:left;
	font-family: 'Abel', sans-serif;
	font-weight:normal;
	font-size:11.4px;
	letter-spacing:0.11em;
}
.headWrapper h1 .siteTitle p{
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:24.4px;
	letter-spacing:0.1em;
}*/

/*tel----------------------------------------------------------------------*/
.footUeWrapper{
	position:relative;
	width:100%;
	min-width:1192px;
	margin:0 auto;
	padding:30px 0 30px;
}
.footUeWrapper .right{
	position:absolute;
	right:calc(50% - 450px);
	top:37px;
}
/*foot----------------------------------------------------------------------*/
footer{
	position:relative;
	width:100%;
	min-width:1192px;
	margin:0 auto;
	padding:30px 0 0px;
}
footer .footBox{
	padding:70px 0 70px;
	background:#f6f6f6;
}
footer .footBox::before{
	position:absolute;
	content:"";
	left:0;
	right:0;
	top:-5px;
	width:1px;
	height:70px;
	margin:0 auto;
	background:#bebebe;
}
footer .footBox .inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	background:#f6f6f6;
}
footer .footBox .inner div{
	flex-basis:33%;
}
footer .footBox .inner div:nth-child(1){
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	text-align:right;
}
footer .footBox .inner div:nth-child(1) .basicBtn{
	margin:0 0 10px 40%;
	margin-left:calc(33vw - 245px +73px);
}
footer .footBox .inner div:nth-child(1) .basicBtn span{
	width:100%;
	font-size:14px;
}
footer .footBox .inner div:nth-child(3){
	text-align:left;
}
footer .footBox .inner div:nth-child(3) h5{
	display:inline-block;
	margin:0 0 7px 0;
	padding:0 0 5px 0;
	border-bottom:dotted 1px #ccc;
}
footer .footBox .inner div:nth-child(3) a{
	color:#5a5a5a;
	font-size:13px;
	_font-weight:bold;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
}
footer .siteTitle{
	padding:0 0 0 10vw;
	text-align:left;
	font-family: 'Oswald', sans-serif;
	font-weight:300;
	font-weight:normal;
	font-size:11.4px;
	letter-spacing:0.11em;
}
footer .siteTitle p{
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:24.4px;
	letter-spacing:0.1em;
}
footer .copyWrapper{
	padding:30px 0;
	font-size:12px;
}
/**/
.pcmenuLogo{
	margin-bottom:10px;
}
.pcmenu{
	position:relative;
	width:85%;
	margin:20px  auto;
	padding:36px 0;
	color:#5a5a5a;
	font-size:15px;
	line-height:2.2em;
}
.pcmenu li a:link,
.pcmenu li a:visited,
.pcmenu li a:hover{
	position:relative;
	display:block;
	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:300px;
	color:#c01757;
}
.pcmenu:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 26px;
	background: #bebebe;
}
.pcmenu:after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 26px;
	_border-radius:3px;
	background: #bebebe;
}
/**/
footer .rightBtnBox a{
	display:block;
	width:80px;
}
footer .rightBtnBox a img{
	transition: all .4s;
}
footer .rightBtnBox a:hover img{
	transform: scale(1.3,1.3);
}
/**/
.hotelBtnWrapper.flex{
	justify-content:center;
	padding:26px 0;
}
.hotelBtnWrapper a{
	width:160px;
	font-family: 'Oswald', sans-serif;
	font-size:16px;
	letter-spacing:0.05em;
	color:#5a5a5a;
}
.hotelBtnWrapper a span{
	display:block;
	width:160px;
	font-size:13px;
	line-height:1.2em;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
}
/**/
.hotelfootWrapper{
	padding:60px 0 40px;
	background:#f6f6f6;
}
.hotelfootWrapper .flex{
	flex-wrap:wrap;
	width:931px;
	margin:0 auto;
}
.hotelfootWrapper .flex div{
	text-align:left;
}
.hotelfootWrapper .flex div:nth-child(1){
	display:flex;
	flex-wrap:wrap;
	width:356px;
}
.hotelfootWrapper .flex div:nth-child(2){
	width:215px;
}
.hotelfootWrapper .flex div img{
	width:158px;
	margin:0 20px 20px 0;
}
.hotelfootWrapper .flex ul{
	text-align:left;
	font-size:14px;
	line-height:1.9em;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
	color:#5a5a5a;
}
.hotelfootWrapper .flex ul:nth-child(3){
	width:150px;
	text-align:left;
}
.hotelfootWrapper .flex ul:nth-child(4){
	width:210px;
	text-align:left;
}
.hotelfootWrapper .flex ul a{
	color:#5a5a5a;
}



/*共通----------------------------------------------------------------------*/
.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;
}
.flex{
	display:flex;
	justify-content:space-between;
	_flex-wrap:wrap;
}

/*ボタン-ライン処理***********************************/
.basicBtn{
	position: relative;
	cursor: pointer;
	display:block;
	width:230px;
	height:53px;
	padding:12px 0 0 0;
	font-family: 'Lato', 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
	font-size:16px;
	letter-spacing:0.05em;
	text-align:center;
	background:rgba(242,240,236,0);
	border:solid 1px #e4e4e4;
 		flex-wrap:wrap;
}
.basicBtn:link,
.basicBtn:visited,
.basicBtn:hover{
	color:#818181;
}
.basicBtn:hover{
	color:#b8ab91;
}
.basicBtn span{
	display: block;
	width:100%;
	text-align:center;
}
.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{
	display:flex;
	right: -80vw;
	text-align:center;
	position: fixed;
	top: 0px;
	bottom: 0;
	width: 80vw;
	background-color: #fff;
}
.sidebar .wrap{
	width:calc(50% - 36px);
}
.sidebar .wrap.left{
	background:#f6f6f6;
}
.sidebar .wrap .innerBox{
	margin: 50vh auto 0;
	transform: translateY(-50%);
}
.sidebar .wrap .innerBox .basicBtn{
	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;
}
/**/
.active .menu-trigger {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.active .menu-trigger span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
	width:19px;
	left:9px;
}
.active .menu-trigger span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
	width:19px;
	left:9px;
}
.active .menu-trigger span:nth-of-type(3) {
	opacity: 0;
}
/**/
.telBox{
	margin-bottom:40px
}
.telBox p:nth-child(1){
	position:relative;
	margin-bottom:10px;
	font-family: 'Oswald', sans-serif;
	font-weight:300;
	font-size:20px;
}
.telBox p:nth-child(1):after{
	position: absolute;
	content: "";
	bottom: -8px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 30px;
	height: 3px;
	background: #818181;
}
.telBox p:nth-child(1) span,
.telBox p:nth-child(1) span a,
.telBox p:nth-child(1) span a:link,
.telBox p:nth-child(1) span a:visited{
	padding-left:2px;
	font-family: 'Oswald', sans-serif;
	font-weight:300;
	font-size:29px;
	letter-spacing:0.07em;
	color:#5a5a5a;
}
.telBox p:nth-child(2){
	padding-top:8px;
	font-family: 'Oswald', sans-serif;
	font-weight:300;
	font-size:12px;
	line-height:1.6em;
}
.telBox .accessBox{
	display:flex;
	justify-content:center;
	padding:20px 0 0;
	width: 150px;
	margin: 0 auto;
}
.telBox .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 .btnBox{
	width:245px;
	margin:20px auto 0;
}
.sidebar .btnBox a{
	display:block;
	padding:24px 0 6px;
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:15px;
	color:#5a5a5a;
	border:solid 1px #e4e4e4;
	background-size:16px auto;
	background-repeat:no-repeat;
}
.sidebar .btnBox a:hover{
	color:#b8ab91;
}
.sidebar .btnBox .inq a{
	margin-bottom:30px;
	background-image:url(../images/share/pict_mail_w.png);
	background-position:center 10px;
}
.sidebar .btnBox .insta a{
	background-image:url(../images/share/pict_insta_w.png);
	background-position:center 8px;
}
.sidebar .btnBox .special a{
	background-image:url(../images/share/pict_sp_w.png);
	background-position:center 8px;
}
.sidebar .btnBox div {
	margin-top:10px;
}
.sidebar .btnBox span{
	display:block;
	width:100%;
}
.sidebar .accessBox{
	display:block;
	_margin-top:30px;
	font-family: 'Lato', sans-serif;
	font-weight:300;
	font-size:15px;
	color:#5a5a5a;
	width: 150px;
	margin: 30px auto 0;
}
/*左右のメニュー開閉ボタン*/
.rightMenu{
	position:fixed;
	top:0;
	right:0px;
	width:73px;
	height:100vh;
	text-align:center;
	background:#000;
	z-index:3001;
	cursor: pointer
}
.rightBtnBox{
	margin: 50vh auto 0;
	transform: translateY(-50%);
	font-weight: 400;
	font-family: 'Lato', sans-serif;
	font-size: 10.5px;
	letter-spacing: 0.05em;
	text-align:center;
	color:#fff;
}
.rightMenu .rightBtnBox{
	transition: all .4s;
}
.rightMenu .menu-trigger{
	margin:0 0 0px 0;
}
.rightMenu p{
	margin:10px 0 6px 0;
}


/*メイン次階層----------------------------------------------------------------------*/
.nextLogoBox{
	margin:0 0 75px;
}
.nextLogoBox + .upperLine p::before{
	position:absolute;
	content:"";
	left:0;
	right:0;
	top:-58px;
	width:1px;
	height:40px;
	margin:0 auto;
	background:#bebebe;
}
/**/
article.honbunWrapper {
    padding: 55px 0 0px;
}
article.honbunWrapper.nextLogo{
    padding: 35px 0 0px;
}
.mainNextWrapper{
	position:relative;
	width:100%;
	min-width:1192px;
	height:40vw;
	min-height:506px;
	margin:0 auto;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	text-indent:-200vw;
}
/*ページ上部のコピー*/
.mainCopyWrapper{
	
}
.titleBox{
	position:relative;
}
.titleBox p{
	position:relative;
	margin:0 0 43px;
	font-family: 'Oswald', sans-serif;
	font-size:22px;
	font-weight:normal;
	letter-spacing:0.24em;
	line-height:1.3em;
}
.titleBox p::after{
	position:absolute;
	content:"";
	left:0;
	right:0;
	bottom:-10px;
	width:30px;
	height:2px;
	margin:0 auto;
	background:#5d5d5d;
}
.upperLine p::before{
	position:absolute;
	content:"";
	left:0;
	right:0;
	top:-90px;
	width:1px;
	height:70px;
	margin:0 auto;
	background:#bebebe;
}
.titleBox span{
	position:absolute;
	display:block;
	bottom:-40px;
	left:0;
	right:0;
	padding:0px 0 0;
	font-size:11px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
}
.catchCopy{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size:29px;
	font-weight:normal;
	letter-spacing:0.06em;
}
.leadCopy{
	width:270px;
	margin:60px auto;
	text-align:left;
}
/*次階層の基本*/
.contWrapper {
	min-width:1000px;
	margin: 0 auto;
	padding: 50px 0 0;
}

/*ふた—上--------------------------------------------------------------*/
.thumFairWrapper{
	position:relative;
	margin-top:100px;
	padding:40px 0 50px;
	background: url(../images/share/concept_bk.jpg);
	background-size: 100% 100%;
}
.thumFairWrapper .flex{
	width:1056px;
	margin:0 auto;
	padding:20px 0 0;
}
.thumFairWrapper .thumFairBox{
	width:340px;
	padding:15px 15px 25px;
	background:#fff;
	color:#5a5a5a;
	transition: all 0.4s
}
.thumFairWrapper .thumFairBox:hover{
	opacity:1;
}
.thumFairBox .dayImgBox{
	display:flex;
	width:100%;
	background:#fff;
}
.thumFairBox .dayImgBox .pBox{
	position:relative;
	width:calc(100% - 100px);
	height:11vw;
	overflow:hidden;
}
/*おすすめりぼん----------------------------------*/
.caption {
	position:absolute;
	display: inline;
	top:0;
	left:0;
}
.caption span {
  position: absolute;
  display: inline-block;
  top: 14px;
  left: -32px;
  width: 120px;
  padding: 2px 10px;
  background: #b8ab91;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  color: #fff;
  text-align: center;
  transform: rotate(-45deg);
  font-size:12px;
  font-weight:bold;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
}
.caption.pickup span {
  background: #428089;
}

/**/
.thumFairBox .dayBox{
	padding:0px 0 0;
	width:100px;
	height:11vw;
	font-family: 'Cormorant Infant', serif;
	font-weight:400;
	font-style: italic; 
	color:#818181;
	background:#ededed;
}
.thumFairBox .dayBox .inner{
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%)
}
.thumFairBox .dayBox p:nth-child(1){
	font-size:17px;
}
.thumFairBox .dayBox p:nth-child(1) span{
	font-size:22px;
}
.thumFairBox .dayBox p:nth-child(2) {
    position: relative;
    margin: 0px auto;
    padding: 27px 0;
    font-size: 66px;
}
.thumFairBox .dayBox p:nth-child(2)::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 2px;
    background: 
    #9c9c9c;
}
.thumFairBox .dayBox p:nth-child(2)::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 2px;
    background: 
    #9c9c9c;
}
.thumFairBox .dayBox p:nth-child(3) {
    font-size: 20px;
}
.thumFairBox .midashi{
	padding:4px 0 0;
	font-size:14px;
	text-align:left;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
}
/**/
.thumFairWrapper .btnBox{
	position:absolute;
	top:40px;
	right:calc((100% - 1056px) / 2 );
}
/*ふた—上のバナー--------------------------------------------------------------*/
.thumBannerWrapper{
	position:relative;
	_margin-top:100px;
	padding:40px 0 50px;
	background-size: 100% 100%;
}
.thumBannerWrapper .flex{
	width:1200px;
	margin:0 auto;
	padding:10px 0 0;

}
.thumBannerWrapper .pBox{
	width:393px;
	height:230px;
	color:#5a5a5a;
	transition: all 0.4s
}
.thumBannerWrapper .pBox:hover{
	opacity:0.8;
}
.thumBannerWrapper .pBox .inner{
	width:120px;
	height:106px;
	margin-left:15px;
	padding:26px 0 0 10px;
	text-align:left;
	background-color:rgba(255,255,255,0.8);
}
.thumBannerWrapper .pBox .inner.photo{
	_background:url(../images/share/pict_insta_w.png);
	background-image:url(/ship/images/share/pict_insta_w.png);
	background-position:100px 10px;
	background-size:25px auto;
	background-repeat:no-repeat;
}
.thumBannerWrapper .pBox .inner p:nth-child(1){
	font-family: 'Oswald', sans-serif;
	font-size:12px;
	font-weight:300;
	letter-spacing:0.17em;
	line-height:1.4em;
}
.thumBannerWrapper .pBox .inner p:nth-child(2){
	position:relative;
	margin-bottom:7px;
	font-family: 'Oswald', sans-serif;
	font-size:23px;
	font-weight:300;
	letter-spacing:0.05em;
}
.thumBannerWrapper .pBox .inner p:nth-child(2)::after{
	position:absolute;
	content:"";
	left:0;
	bottom:-8px;
	width:24px;
	height:2px;
	background:#5d5d5d;
}
.thumBannerWrapper .pBox .inner p:nth-child(3){
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
	font-size:11px;
	font-weight:bold;
	letter-spacing:-0.05em;
}

.container{
  display: flex;
  justify-content: center;
  background: #fff;
  flex-wrap: wrap;
}

.box{
  width: 100%;
  margin: 10px;
  background-color: #fff;
}


/**/
.fancy{
	cursor:pointer;
	transition: all 0.4s;
}
.fancy:hover{
	opacity:1;
}
/*20200716*/
.spFixedWrapper{
	display:none;
}












/**/
.drawer-hamburger{
	display:none;
}
/*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;
	}

	/*ボタン-ライン処理***********************************/
	.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;
	}

	/*ナビ----------------------------------------------------------------------*/
	/*drawer追記分のみ*/
	.drawer-hamburger{
		position:fixed;
		display:block;
		top:0;
		right:0;
		padding:15px 15px 25px;
		z-index:20;
		background:rgba(255,255,255,0.8);
	}
	.drawer-hamburger:before{
	}
	.drawer-nav{
		_padding:20px 0;
		z-index:14;
		_background:rgba(255,255,255,0.95);
		background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,1) 100%);
	}
	.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:20px 0;
	}
	.drawer-nav .drawer-menu li{
	}
	.drawer-nav .drawer-menu li a{
		color:#5a5a5a;
		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;
		width:96%;
		margin:4px auto 0;
	}
	.firstBtnBox a{
		display:block;
		flex-basis:49%;
		padding:24px 0 6px;
		font-weight:300;
		font-family: 'Lato', sans-serif;
		font-size:15px;
		color:#5a5a5a;
		border:solid 1px 5a5a5a;
		background-size:16px auto;
		background-repeat:no-repeat;
	}

	.spNavSquare{
		position:relative;
		width:96%;
		margin:20px  auto;
		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;
	}
	/**/
	.spNavAccess{
		display:block;
		padding:20px 0;
		border-top:solid 1px #e4e4e4;
	}
	.spNavAccess p{
		padding-top:4px;
		font-weight:300;
		font-family: 'Lato', sans-serif;
		font-size:17px;
		letter-spacing:0.07em;
		color:#5a5a5a;
	}
	/**/
	.spNavSita{
		padding:30px 0 10px;
		border-top:solid 1px #e4e4e4;
	}

	/*tel----------------------------------------------------------------------*/
	.footUeWrapper{
		width:100%;
		min-width:100%;
		padding:0;
	}
	.footUeWrapper .right{
	}
	/*foot----------------------------------------------------------------------*/
	footer{
		width:100%;
		min-width:100%;
	}
	footer .footBox{
		padding:70px 0 10px;
	}
	footer .footBox::before{
	}
	footer .footBox .inner{
		flex-wrap:wrap;
	}
	footer .footBox .inner div{
		flex-basis:100%;
		margin:0 0 30px 0;
	}
	footer .footBox .inner div:nth-child(1) .basicBtn{
		margin:0 auto 10px;
		float:none;
	}
	footer .footBox .inner div:nth-child(1) .basicBtn span{
		width:100%;
		font-size:14px;
	}
	footer .footBox .inner div:nth-child(3){
		text-align:center;
	}
	footer .footBox .inner div:nth-child(3) a{
	}
	footer .siteTitle{
	}
	footer .siteTitle p{
	}
	footer .copyWrapper{
		padding-bottom:76px;
	}
	/**/
	.pcmenuLogo{
	}
	.pcmenu{
		margin right:30px;
                margin left:30px;
	}
	.pcmenu li a:link,
	.pcmenu li a:visited,
	.pcmenu li a:hover{
	}
	.pcmenu li a:before{
	}
	.pcmenu li a:hover:before{
	}
	.pcmenu:before{
	}
	.pcmenu:after{
	}
	/**/
	.hotelBtnWrapper.flex{
		flex-wrap:wrap;
		padding: 0;
	}
	.hotelBtnWrapper a{
		width:50%;
		padding:20px 0;
		text-align:center;
		border:solid 1px #f6f6f6;
	}
	.hotelBtnWrapper a span{
		width:100%;
	}
	/**/
	.hotelfootWrapper{
		padding:30px 0 40px;
		background:#f6f6f6;
	}
	.hotelfootWrapper .flex{
		flex-wrap:wrap;
		width:90%;
		margin:0 auto;
	}
	.hotelfootWrapper .flex div{
	}
	.hotelfootWrapper .flex div:nth-child(1){
		justify-content:space-between;
		width:100%;
	}
	.hotelfootWrapper .flex div:nth-child(1) a{
		display:block;
		width:49%;
		margin:2vw 0 0;
	}
	.hotelfootWrapper .flex div:nth-child(2){
		width:100%;
		display:flex;
		justify-content:space-between;
	}
	.hotelfootWrapper .flex div:nth-child(2) a{
		display:block;
		width:49%;
		margin:2vw 0 0;
	}
	.hotelfootWrapper .flex div img{
		width:100%;
		height:auto;
		margin:0 0 0 0;
	}
	.hotelfootWrapper .flex ul{
	}
	.hotelfootWrapper .flex ul:nth-child(3){
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
		width:100%;
		margin-top:20px;
		text-align:left;
	}
	.hotelfootWrapper .flex ul:nth-child(3) li{
		width:49%;
	}
	.hotelfootWrapper .flex ul:nth-child(3) li a{
		display:block;
		width:100%;
		padding:4px 0;
		text-align:center;
		font-weight:bold;
		border-bottom:solid 1px #ccc;
	}
	.hotelfootWrapper .flex ul:nth-child(4){
		width:100%;
		margin:20px 0 0;
		padding:10px 20px 20px;
		background:#fff;
		text-align:left;
	}
	.hotelfootWrapper .flex ul:nth-child(4) li a{
		display:block;
		width:100%;
		padding:4px 0;
		border-bottom:dotted 1px #ccc;
	}
	.hotelfootWrapper .flex ul a{
		color:#5a5a5a;
	}



	/*共通----------------------------------------------------------------------*/
	.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;
	}
	.flex{
		display:flex;
		justify-content:space-between;
		_flex-wrap:wrap;
	}
	
	/*ボタン-ライン処理***********************************/
	.basicBtn{
		position: relative;
		cursor: pointer;
		display:block;
		width:245px;
		height:53px;
		padding:12px 0 0 0;
		font-family: 'Lato', 游ゴシック体, 'Yu Gothic', YuGothic, 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{
		display:flex;
		right: -80vw;
		text-align:center;
		position: fixed;
		top: 0px;
		bottom: 0;
		width: 80vw;
		background-color: #fff;
	}
	.sidebar .wrap{
		width:calc(50% - 36px);
	}
	.sidebar .wrap.left{
		background:#f6f6f6;
	}
	.sidebar .wrap .innerBox{
		margin: 50vh auto 0;
		transform: translateY(-50%);
	}
	.sidebar .wrap .innerBox .basicBtn{
		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;
	}
	/**/
	.active .menu-trigger {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	.active .menu-trigger span:nth-of-type(1) {
		-webkit-transform: translateY(11px) rotate(-45deg);
		transform: translateY(11px) rotate(-45deg);
		width:19px;
		left:9px;
	}
	.active .menu-trigger span:nth-of-type(2) {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
		width:19px;
		left:9px;
	}
	.active .menu-trigger span:nth-of-type(3) {
		opacity: 0;
	}
	/**/
	.drawer-nav .btnBox{
		width:245px;
		margin:10px auto 30px;
	}
	.drawer-nav .btnBox .special a{

		background-position: center 8px;
		display: block;
		padding: 24px 0 6px;
		font-weight: 300;
		font-family: 'Lato', sans-serif;
		font-size: 15px;
		color: #5a5a5a;
		border: solid 1px #e4e4e4;
		background-size: 16px auto;
		background-repeat: no-repeat;
	}
	.drawer-nav .btnBox .special .basicBtn{
		width:100%;
	}
	.drawer-nav .btnBox .special .basicBtn span{
		width:100%;
	}

	/**/
	.telBox{
		margin-bottom:10px
	}
	.telBox p:nth-child(1){
	}
	.telBox p:nth-child(1):after{
	}
	.telBox p:nth-child(1) span,
	.telBox p:nth-child(1) span a,
	.telBox p:nth-child(1) span a:link,
	.telBox p:nth-child(1) span a:visited{
	}
	.telBox p:nth-child(2){
	}
	.telBox .accessBox{
	}
	.telBox .accessBox p{
	}


	/*メイン次階層----------------------------------------------------------------------*/
	article.honbunWrapper {
		padding: 40px 0 0px;
	}
	.mainNextWrapper{
		position:relative;
		width:100%;
		min-width:100%;
		height:120vw;
		min-height:0;
		margin:0 auto;
		text-indent:-500vw;
	}
	/*ページ上部のコピー*/
	.mainCopyWrapper{
		
	}
	.titleBox{
		
	}
	.titleBox p{
		margin:0 0 36px;
	}
	.titleBox p::after{
	}
	.upperLine p::before{
	}
	.catchCopy{
		font-size:26px;
		letter-spacing:0em;
		line-height:1.4em;
	}
	/*次階層の基本*/
	.contWrapper {
		min-width:100%;
		padding: 50px 0 0;
	}

	/*ふた—上--------------------------------------------------------------*/
	.thumFairWrapper{
		margin-top:50px;
		padding:40px 0 30px;
	}
	.thumFairWrapper .flex{
		width:100%;
		flex-wrap:wrap;
		padding:10px 0 0;
	}
	.thumFairWrapper .thumFairBox{
		width:100%;
		padding:15px 20px 0px;
		background:transparent;
	}
	.thumFairWrapper .thumFairBox:hover{
		opacity:1;
	}
	.thumFairBox .dayImgBox{
	}
	.thumFairBox .dayImgBox .pBox{
		min-height:45vw;
		height: calc(55vw - 40px);
	}
	.thumFairBox .dayBox{
		padding:0;
		width:100px;
		height:45vw;
		background:#fff;
	}
	.thumFairBox .midashi{
	}
	/**/
	.thumFairWrapper .btnBox{
		position:static;
		margin:50px auto 0;
		top:auto;
		right:auto;
	}
	.thumFairWrapper .btnBox .basicBtn{
		width:calc(100% - 40px);
		margin:0 auto;
	}
	.thumFairWrapper .btnBox .basicBtn span{
		width:100%;
	}
	/*ふた—上のバナー--------------------------------------------------------------*/
	.thumBannerWrapper{
		padding:20px 0 30px;
	}
	.thumBannerWrapper .flex{
		width:100%;
		padding:0px 20px 0;
 		flex-wrap:wrap;
	}

	.thumBannerWrapper .pBox{
		width:100%;
		height:130px;
		margin-bottom:20px;
	}


.container{
  display: flex;
  justify-content: center;
  background: #fff;
  flex-wrap: wrap;
}

.box{
  width: 100%;
  margin: 10px;
  background-color: #fff;
}


	.thumBannerWrapper .pBox:hover{
		opacity:1;
	}
	.thumBannerWrapper .pBox .inner{
	}
	.thumBannerWrapper .pBox .inner.photo{
	}
	.thumBannerWrapper .pBox .inner p:nth-child(1){
	}
	.thumBannerWrapper .pBox .inner p:nth-child(2){
	}
	.thumBannerWrapper .pBox .inner p:nth-child(2)::after{
	}
	.thumBannerWrapper .pBox .inner p:nth-child(3){
	}
	/*20200716*/
	.spFixedWrapper{
		position:fixed;
		display:flex;
		width:100%;
		bottom:0;
		z-index:3;
	}
	.spFixedWrapper a{
		position:relative;
		display:block;
		width:34%;
		height:65px;
		padding:0 0 0px;
		color:#000;
		background:#ccc;
	}
	.spFixedWrapper a p{
		position:absolute;
		bottom:5px;
		left:0;
		right:0;
		margin:0 auto;
		line-height:1em;
		text-align:center;
	}
	.spFixedWrapper a:nth-child(1){
		width:50%;
		font-size: 14px;
		font-family: 游ゴシック体, 'Yu Gothic', YuGothic, sans-serif;
		color:#fff;
		background:#f44b0f url(ship/images/share/bel.png) 5vw center no-repeat;
		background-size:auto 26px;
	}
	.spFixedWrapper a:nth-child(1) p{
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%); /* Safari用 */
		transform: translateY(-50%);
		margin-left:6vw;
		line-height:1em;
		text-align:center;
	}
	.spFixedWrapper a:nth-child(2){
		width:17%;
		font-weight: 300;
		font-family: 'Lato', sans-serif;
		font-size: 11px;
		color:#fff;
		background:#f48b0f url(../../ship/images/share/walk_w.png) center 15px no-repeat;
		background-size:auto 30px;
		_border:solid 1px #fff;
		_border-width:0 1px;
	}
	.spFixedWrapper a:nth-child(3){
		width:17%;
		font-weight: 300;
		font-family: 'Lato', sans-serif;
		font-size: 11px;
		color:#fff;
		background:#bca507 url(../../ship/images/share/pict_tel.png) center 8px no-repeat;
		background-size:auto 34px;
	}
	.spFixedWrapper a:nth-child(4){
		width:17%;
		font-weight: 300;
		font-family: 'Lato', sans-serif;
		font-size: 11px;
		color:#fff;
		background:#82bc07 url(../../ship/images/share/home.png) center 17px no-repeat;
		background-size:auto 26px;
		_border-left:solid 1px #fff;
	}









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

	.thumFairBox .dayBox{
		padding:0;
	}

	/*なぜか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 */





