@charset 'utf-8';

/* ------------------------------------------------------------ COMMON ------------------------------------------------------------ */

html {
	font-size: 62.5%;
	background-color: #a5d1df;
}

body {
	width:100%;
	background-color: #fff;
  font-size: 1.6rem; /* 初期値16px */
	line-height:1.8;
	color:#000;
	letter-spacing: 0.06em;
	font-family: "本明朝-M 新がな", "HonMinSink-M", "游明朝", YuMincho, "Yu Mincho", 'ヒラギノ明朝 ProN', "Hiragino Mincho ProN", "HGS明朝E", serif;
}

@media all and (-ms-high-contrast:none) {/* for IE10 */
    body { font-family: "本明朝-M 新がな", "HonMinSink-M", Century, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif; }
}

/* ページ遷移のトランジション [ローディングあり] */

body #loader-wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99999;
	pointer-events: none;
	background-color: #a5d1df;
	opacity: 0;
	-webkit-transition: opacity .8s ease;
	transition: opacity .8s ease;
	will-change: opacity;
}

body.transition #loader-wrapper {
	opacity: 1;
}

body.evacuation #loader-wrapper { /* for IE10 */
	z-index: -1;
}

body #loader-wrapper #loader {
	position: absolute;
	top:calc(50% - 22px);
	left:calc(50% - 22px);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	border-top: 3px solid rgba(255, 255, 255, 0.2);
	border-right: 3px solid rgba(255, 255, 255, 0.2);
	border-bottom: 3px solid rgba(255, 255, 255, 0.2);
	border-left: 3px solid rgba(255, 255, 255, 0.8);
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: loader 1.1s infinite linear;
	animation: loader 1.1s infinite linear;
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* box-sizing */

* {
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* 画像 */

img {
	max-width: 100%;
	height: auto;
}

a img {
	/* GPU acceleration */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    will-change: opacity, transform;
/*
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	will-change: opacity, transform;
*/
}

/* 電話番号リンクの無効化 */

a[href^="tel:"] {
	pointer-events: none;
}

/* ウェブフォント読み込み中の挙動（Chromeのみ） */

@font-face {
	font-display:swap;
}

/* 表示の切り替え */

.disp_pc {
	display: inline !important;
}

.disp_sp {
	display: none !important;
}


/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {
	
	body {
		font-size: 1.4rem;
		letter-spacing: 0;
		-webkit-text-size-adjust: 100%;
		-webkit-tap-highlight-color:rgba(0,156,255,0.4);
	}
	
	/* 電話番号リンクの無効化解除 */
	
	a[href^="tel:"] {
		pointer-events: auto;
	}
	
	/* 表示の切り替え */
	
	.disp_pc {
		display: none !important;
	}
	
	.disp_sp {
		display: inline !important;
	}

}


/* ------------------------------------------------------------ LINK ------------------------------------------------------------ */

/* リンク基本スタイル */

a,
a img,
a svg {
	-webkit-transition: 0.6s;
	transition: 0.6s;
}

a:link,
a:visited { color:#000; text-decoration:none; }
a:hover,
a:active { color:#999; text-decoration:none; }


/* 矢印付きリンクテキスト */

.link_txt a svg {
	width:18px;
	height:18px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top:-2px;
	margin: 0 5px 0 0;
	fill:#000;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
}

.link_txt a:hover svg {
	fill:#999;
	-webkit-transform:translate3d(3px, 0, 0);
	transform:translate3d(3px, 0, 0);
}

/* moreボタン */

.link_more {
	display: block;
	margin: 30px auto 0;
}

.link_more a {
	display: inline-block;
	min-width: 150px;
	height: 34px;
	line-height: 31px;
	padding: 0 20px;
	font-style: normal;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	border: 1px solid #000;
	text-align: center;
}

.link_more a:hover {
	border: 1px solid #3599c1;
	background-color: #3599c1;
}

.link_more a:link,
.link_more a:visited { color: #000; }
.link_more a:hover,
.link_more a:active { color: #fff; }


/* リンクボタン */

.link_btn {
	display: inline-block;
	margin: 30px auto 0;
	width:25%;
	min-width: 300px;
	height:50px;
	line-height: 48px;
	font-size: 1.8rem;
	text-align: center;
}

.link_btn a {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #000;
}

.link_btn a:hover {
	border: 1px solid #3599c1;  
	background-color: #3599c1;
}

.link_btn a:link,
.link_btn a:visited { color: #000; }
.link_btn a:hover,
.link_btn a:active { color: #fff; }

.link_btn a svg {
	width:18px;
	height:18px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top:-2px;
	margin: 0 0 0 10px;
	fill:#000;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
}

.link_btn a:hover svg {
	fill: #fff;
	transform: translate3d(3px, 0, 0);
}

/* PDFボタン */

.link_pdf {
	display: inline-block;
	margin: 0 15px;
	width: 300px;
	height:50px;
	line-height: 48px;
	font-size: 1.5rem;
}

.link_pdf a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	border: 1px solid #000;
}

.link_pdf a:hover {
	border: 1px solid #3599c1;
	background-color: #3599c1;
}

.link_pdf a:link,
.link_pdf a:visited { color: #000; }
.link_pdf a:hover,
.link_pdf a:active { color: #fff; }

.link_pdf a svg {
	width:24px;
	height:24px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top:-3px;
	margin: 0 0 0 10px;
	fill:#000;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: fill;
}

.link_pdf a:hover svg {
	fill: #fff;
	transform:translate3d(0, 3px, 0);
}


/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/* リンク */

	a:link,
	a:visited { color:#000; text-decoration:none; }
	a:hover,
	a:active { color:#000; text-decoration:none; }

	/* 矢印付きリンクテキスト */
	
	.link_txt a svg {
		width:16px;
		height:16px;
		fill:#000;
		margin: 0 5px 0 0;
	}
	
	.link_txt a:hover svg {
		fill:#025894;
		-webkit-transform:translate3d(0, 0, 0);
		transform:translate3d(0, 0, 0);
	}
	
	/* moreボタン */
	
	.link_more {
		margin: 20px auto 0;
	}
	
	.link_more a {
		border: 1px solid #000;
	}
	
	.link_more a:hover {
		border: 1px solid #000;
		background-color: transparent;
	}

	.link_more a:link,
	.link_more a:visited { color:#000; }
	.link_more a:hover,
	.link_more a:active { color:#000; }

	
	/* リンクボタン */
	
	.link_btn {
		display: block;
		width: 70vw;
		max-width: 100vw;
		height: 40px;
		line-height: 38px;
		font-size: 1.4rem;
		margin: 20px auto 0;
		letter-spacing: 0.04em;
	}
	
	.link_btn a:hover {
		border: 1px solid #000;
		background-color: transparent;
	}
	
	.link_btn a:link,
	.link_btn a:visited { color:#000; }
	.link_btn a:hover,
	.link_btn a:active { color:#000; }
	
	.link_btn a svg {
		width:16px;
		height:16px;
		fill:#000;
	}
	
	.link_btn a:hover svg {
		fill:#000;
	}
	
	/* PDFボタン */
	
	.link_pdf {
		display: block;
		width: 70vw;
		max-width: 100vw;
		height: 40px;
		line-height: 38px;
		font-size: 1.4rem;
		margin: 10px auto 0;
	}
	
	.link_pdf a {
		padding: 0 10px;
	}
	
	.link_pdf a:hover {
		border: 1px solid #000;
		background-color: transparent;
	}
	
	.link_pdf a:link,
	.link_pdf a:visited { color:#000; }
	.link_pdf a:hover,
	.link_pdf a:active { color:#000; }
	
	.link_pdf a svg {
		width:16px;
		height:16px;
		fill:#000;
	}
	
	.link_pdf a:hover svg {
		fill:#000;
	}
	
}


/* ------------------------------------------------------------ HEADER + NAVI ------------------------------------------------------------ */

/*--------------------------------
	ヘッダー
--------------------------------*/

header {
	position: fixed;
	left: 0;
	top: 0;
	display: block;
	z-index: 99990;
	width:100%;
	height: 60px;
	line-height: 60px;
	padding: 0 3%;
	color: #fff;
	min-height:1px;
	zoom:1;
	clear:both;
}

header:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

header h1 {
	float: left;
	margin: 16px 0 0;
    position: relative;
    z-index: 10001;
}

header h1 img {
	display: block;
	width: 100px;
	height: 28px;
}

header a:link,
header a:visited { color:#fff; }
header a:hover,
header a:active { color:rgba(255, 255, 255, 0.7); }

/* 背景 */

header:before {
	position: fixed;
	top: -60px;
	left: 0;
	display: block;
	content: "";
	width: 100%;
	height: 60px;
	background-color: #a5d1df;
	z-index: -1;
	-webkit-transition: 0.6s ease;
	transition: 0.6s ease;
	will-change: top;
}

header.head_bg:before {
	top: 0;
}

/*--------------------------------
	ナビゲーション
--------------------------------*/

header .language {
	display: none;
	float: right;
	font-size: 1.4rem;
}

.top header .language { /* トップのみ表示 */
	display: block;
}

header .language li {
	display: inline-block;
	-webkit-text-shadow: 0px 0px 5px rgba(0,0,0, 0.2);
	text-shadow: 0px 0px 5px rgba(0,0,0, 0.2);
}

header .language li.active a {
	padding: 0 0 2px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

header .language li:nth-of-type(n+2):before {
	content: "/";
	display: inline-block;
	margin: 0 10px;
}

/* ハンバーガーメニュー */

#nav_btnwrapper {
	display: none;
}

/* ナビ */

nav {
    width: 100%;
	position: absolute;
	right: 3%;
	top: 0;
    z-index: 10000;
}

nav ul {
	width:100%;
	margin: 0 auto;
	font-size: 0;
/*    text-align: center;*/
    text-align: right;
}

nav ul li {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	font-weight: 700;
	line-height: 1;
}

nav ul li:nth-of-type(n+2) {
	margin: 0 0 0 20px;
}

nav ul li a {
	position: relative;
	display: inline-block;
	padding: 0 5px;
}

nav ul li a:after {
	-webkit-transition: 0.4s;
	transition: 0.4s;
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -8px;
	left: 50%;
	background: transparent;
}

nav ul li a:hover:after,
nav ul li a.active:after {
	width: 100%;
	background: #fff;
	margin: 0 0 0 -50%;
}

nav ul li a.active:after {
	background: rgba(255, 255, 255, 0.6);
}

nav ul li.recruit_btn {
  margin: 0 0 0 25px;
}

nav ul li.recruit_btn a {
  background-color: #fff;
  color: #a5d1df;
  border: 1px solid #fff;
  padding: 5px 10px;
}

nav ul li.recruit_btn a:hover,
nav ul li.recruit_btn a.active {
  background-color: #a5d1df;
  color: #fff;
}

nav ul li.recruit_btn a:after {
  display: none;
}


@media only screen and (max-width: 1200px) {

    nav ul li {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }

    nav ul li:nth-of-type(n+2) {
        margin: 0 0 0 8px;
    }

    nav ul li.recruit_btn {
      margin: 0 0 0 13px;
    }

}

/* ウィンドウ上部固定 */

nav.windowfix {
	position:fixed;
	top:0;
	left:0;
	z-index: 9999;
}


/*--------------------------------
	ご予約・空室検索ボタン
--------------------------------*/

.btn_reserve {
	position: fixed;
	bottom:15px;
	right:15px;
	z-index: 5000;
	-webkit-transition: transform 1s ease 2s;
	transition: transform 1s ease 2s;
	-webkit-transform: translate3d(150px, 150px, 0);
	transform: translate3d(150px, 150px, 0);
}

.evacuation .btn_reserve {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.btn_reserve a {
	display: block;
	zoom:1;
  background-color: #be9e6c;
  color: #fff;
	width:150px;
	height:150px;
	padding: 20px 0 0;
	text-align: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 3px 0px rgba(0,0,0, 0.1);
	box-shadow: 0 0 3px 0px rgba(0,0,0, 0.1);
  line-height: 1.4;
  font-size: 2.0rem;
}

.btn_reserve:hover a {
	background-color: #3599c1;
	color: #fff;
}

.btn_reserve a span {
    display: block;
}

.btn_reserve a span em {
    font-size: 12px;
    display: block;
}

.btn_reserve a span em::after {
    display: block;
    content: "";
    width: 75%;
    height: 1px;
    background-color: #fff;
    margin: 7px auto;
}

/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/*--------------------------------
		ヘッダー
	--------------------------------*/

	header {
		height: 40px;
		line-height: 40px;
		padding: 0 3%;
	}
	
	header h1 {
		float: none;
		position: fixed;
		top: 10px;
		left: 3%;
		margin: 0;
		z-index: 10001;
	}
	
	header h1 img {
		display: block;
		width: 82px;
		height: 22px;
	}
	
	header a:link,
	header a:visited { color:#fff; }
	header a:hover,
	header a:active { color:#fff; }

	/* 背景 */
	
	header:before {
		top: -40px;
		height: 40px;
	}
	
	header.head_bg:before {
		top: 0;
	}
	
	/*--------------------------------
		ナビゲーション
	--------------------------------*/
	
	header .language {
		margin: 0 45px 0 0;
		font-size: 1.3rem;
	}
	
	header .language li:nth-of-type(n+2):before {
		margin: 0 7px;
	}

	/* ハンバーガーメニュー */
	
	#nav_btnwrapper {
		display: block;
		position: fixed;
		top:0;
		right:0;
		z-index: 10001;
	}
	
	#nav_btnwrapper #nav_btn {
		display: block;
		position: relative;
		width: 40px;
		height: 40px;
		cursor: pointer;
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 50%;
		height: 2px;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
		background-color: #fff;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon:before,
	#nav_btnwrapper #nav_btn #nav_btn_icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon:before {
		-webkit-transform:translate(0, -400%);
		transform:translate(0, -400%);
	}
	
	#nav_btnwrapper #nav_btn #nav_btn_icon:after {
		-webkit-transform:translate(0, 400%);
		transform:translate(0, 400%);
	}
	
	#nav_btnwrapper.close #nav_btn #nav_btn_icon {
		background: transparent;
	}
	
	#nav_btnwrapper.close #nav_btn #nav_btn_icon:before {
	    -webkit-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	
	#nav_btnwrapper.close #nav_btn #nav_btn_icon:after {
	    -webkit-transform: rotate(45deg);
	    transform: rotate(45deg);
	}


	/* ナビ */
	
	nav {
		position: relative;
		right: auto;
		top: auto;
	}

  nav ul {
      text-align: center;
  }

	nav ul li {
		display: block;
		font-size: 1.6rem;
	}

	nav ul li:nth-of-type(n+2) {
		margin: 22px auto 0;
	}

	nav ul li.disp_sp {
		display: block !important;
	}

	nav ul li a {
		padding: 0 5px;
	}

	nav ul li a:hover:after {
		width: 0;
		background: transparent;
		margin: 0;
	}

	nav ul li a.active:after {
		width: 100%;
		background: #fff;
		margin: 0 0 0 -50%;
	}


  nav ul li.recruit_btn {
    	margin: 40px auto 0;
  }

  nav ul li.recruit_btn a:hover,
  nav ul li.recruit_btn a.active {
    background-color: #fff;
    color: #a5d1df;
  }


	/* ナビ モーダル型 */

	nav.modal_navi {
		opacity: 0;
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		pointer-events: none;
		position: fixed;
		top:0;
		left:0;
		z-index: 10000;
		background-color: rgba(164, 208, 222, 1);
		width:100%;
		height:100%;
		-webkit-transition: 0.6s;
		-moz-transition: 0.6s;
		-ms-transition: 0.6s;
		transition: 0.6s;
	
		/* GPU acceleration */
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		will-change: opacity, transform;
	}
	
	nav.modal_navi.show {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		pointer-events: auto;
	}
	
	nav.modal_navi.evacuation { /* for IE10 */
		z-index: -1;
	}
	
	nav.modal_navi > div {
		width: 100%;
		padding: 30px 0 0;
		position: absolute;
		top:50%;
		left:50%;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	
	/* ナビ出現時に背景でスクロールを止める処理 */
	
	body.noscroll {
		overflow: hidden;
		height: 100%;
	}
	
	/*--------------------------------
		ご予約ボタン
	--------------------------------*/
	
	.btn_reserve {
		bottom:10px;
        bottom:calc(env(safe-area-inset-bottom) + 10px);
		right:10px;
		-webkit-transition: transform 1s ease 2s;
		transition: transform 1s ease 2s;
		-webkit-transform: translate3d(110px, 110px, 0);
		transform: translate3d(110px, 110px, 0);
	}
	
	.evacuation .btn_reserve {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.btn_reserve a {
		display: block;
		zoom:1;
        background-color: #be9e6c;
		width:110px;
		height:110px;
        padding: 13px 0 0;
		font-size: 1.6rem;
		line-height: 1.3
	}
	
	.btn_reserve:hover a {
        background-color: #be9e6c;
		color: #fff;
	}
    
    .btn_reserve a span {
        
    }
    
    .btn_reserve a span em {
        font-size: 11px;
    }

    .btn_reserve a span em::after {
        width: 85%;
        margin: 6px auto;
    }

    
	@media only screen and (max-height: 666px) {
		
		nav ul li {
			font-size: 1.5rem;
		}
		nav ul li:nth-of-type(n+2) {
			margin: 18px auto 0;
		}
		nav .serach_reserve {
			margin: 40px auto 0;
		}
	}
	
}

/* ------------------------------------------------------------ ご予約・空室検索（予約プロ用リンクボタン） ------------------------------------------------------------ */

.serach_reserve_btn {
	margin: 0 auto 100px;
	text-align: center;
}

.serach_reserve_btn a {
	display: block;
	width: 80%;
	max-width: 550px;
	height: 120px;
/*	line-height: 120px;*/
	margin: 0 auto;
	font-size: 2.8rem;
	letter-spacing: 0.15em;
    background-color: #be9e6c;
    line-height: 1.4;
/*    padding-top: 23px;*/
    
    display: -webkit-flex; /* Safari */
    display: flex; /* Chrome, Firefox, IE11 */
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: space-around;
    align-content: space-around;
}

.serach_reserve_btn a:hover {
	background-color: #3599c1;
}

.serach_reserve_btn a:link,
.serach_reserve_btn a:visited { color:#fff; }
.serach_reserve_btn a:hover,
.serach_reserve_btn a:active { color:#fff; }

.serach_reserve_btn a span {
    display: block;
    min-width: 100%;
}

.serach_reserve_btn a span em {
    font-size: 15px;
    letter-spacing: 0.1em;
    display: block;
    width: 100%;
    
    align-self: center;
}

.serach_reserve_btn a span em::after {
    display: block;
    content: "";
    width: 85%;
    height: 1px;
    background-color: #fff;
    margin: 8px auto;
}

/* スマホ時ナビ空室検索 */

nav .serach_reserve_btn {
	display: none;
}

/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	.serach_reserve_btn {
		margin: 0 auto 50px;
	}

	.serach_reserve_btn a {
		height: 70px;
		font-size: 1.8rem;
	}
	
	.serach_reserve_btn a:hover {
        background-color: #be9e6c;
	}
	
	.serach_reserve_btn a:link,
	.serach_reserve_btn a:visited { color:#fff; }
	.serach_reserve_btn a:hover,
	.serach_reserve_btn a:active { color:#fff; }

    .serach_reserve_btn a span {
    }
    
    .serach_reserve_btn a span em {
        font-size: 13px;
        letter-spacing: 0.08em;
    }

    .serach_reserve_btn a span em::after {
        width: 85%;
        margin: 5px auto;
    }
    
	nav .serach_reserve_btn {
		display: block;
		margin: 50px auto 0;
	}

}

/* ------------------------------------------------------------ ご予約・空室検索（日付+空室検索） ------------------------------------------------------------ */

.serach_reserve {
	width: 700px;
	max-width: 90%;
	margin: 0 auto 100px;
	padding: 35px;
	background: #a5d1df;
	font-size: 0;
	text-align: center;
	letter-spacing: 0;
}

.serach_reserve p {
	display: inline-block;
	width: 65%;
	height: 55px;
	line-height: 35px;
	padding: 10px 5px;
	background-color: #fff;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	text-align: center;
	vertical-align: top;
}

.serach_reserve p span {
	display: inline-block;
	padding: 0 15px 0 0;
	margin: 0 15px 0 0;
	border-right: 1px solid #ccc;
	letter-spacing: 0;
}

.serach_reserve div {
	display: inline-block;
	width: 32%;
	margin: 0 0 0 3%;
	vertical-align: top;
}

.serach_reserve div a {
	display: block;
	width: 100%;
	height: 55px;
	line-height: 35px;
	padding: 10px;
	font-size: 1.8rem;
	letter-spacing: 0.15em;
	background-color: #DEEEF3;
}

.serach_reserve div a:hover {
	background-color: #3599c1;
}

.serach_reserve div a:link,
.serach_reserve div a:visited { color:#000; }
.serach_reserve div a:hover,
.serach_reserve div a:active { color:#fff; }


/* スマホ時ナビ空室検索 */

nav .serach_reserve {
	display: none;
}

/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {
	
	.serach_reserve {
		width: 90%;
		max-width: 90%;
		margin: 0 auto 50px;
		padding: 10px;
	}
	
	.serach_reserve p {
		display: block;
		width: 100%;
		height: 40px;
		line-height: 30px;
		padding: 5px;
		font-size: 1.4rem;
	}
	
	.serach_reserve p span {
		padding: 0 10px 0 0;
		margin: 0 10px 0 0;
	}
	
	.serach_reserve div {
		display: block;
		width: 100%;
		margin: 10px auto 0;
	}
	
	.serach_reserve div a {
		display: block;
		width: 100%;
		height: 40px;
		line-height: 30px;
		padding: 5px;
		font-size: 1.6rem;
	}

	.serach_reserve div a:hover:after {
		-webkit-transform:translate(0, 0);
		transform:translate(0, 0);
	}
	
	.serach_reserve div a:link,
	.serach_reserve div a:visited { color:#000; }
	.serach_reserve div a:hover,
	.serach_reserve div a:active { color:#000; }
	
	
	/* スマホ時ナビ空室検索 */

	nav .serach_reserve {
		display: block;
		width: 90%;
		max-width: 90%;
		margin: 50px auto 0;
		color: #000;
		background: rgba(255, 255, 255, 0.3);
	}
	
}


/* ------------------------------------------------------------ FOOTER ------------------------------------------------------------ */

footer {
	display: block;
	width:100%;
	margin: 100px auto 0;
	padding: 60px 0 60px;
	background-color: #a5d1df;
	color: #fff;
	text-align: center;
	min-height:1px;
	zoom:1;
	clear:both;
}

footer:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

footer a:link,
footer a:visited { color: #fff; }
footer a:hover,
footer a:active { color: rgba(255, 255, 255, 0.7); }

footer .inner {
	padding: 0 3%;
}
	
footer strong {
	display: block;
	width: 180px;
	margin: 0 auto 55px;
}

/* お問い合わせ */

footer .footer_contact {
	padding: 0 0 50px;
	margin: 0 0 30px;
	border-bottom: 1px solid #fff;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}

footer .footer_contact p:nth-of-type(1) {
	font-size: 1.8rem;
}

footer .footer_contact em {
	display: block;
	margin: 5px auto;
	font-size: 2.4rem;
	letter-spacing: 0.15em;
}

footer .footer_contact em small {
	display: inline-block;
	margin: 0 0 0 10px;
	font-size: 1.4rem;
}

footer .footer_contact p a {
	display: inline-block;
	margin: 0 0 0 15px;
}

footer .footer_contact div {
	margin: 50px auto 0;
	font-size: 1.8rem;
}

/*
footer .footer_contact div a {
	position: relative;
}

footer .footer_contact div a:after {
	-webkit-transition: 0.4s;
	transition: 0.4s;
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	background: transparent;
}

footer .footer_contact div a:hover:after {
	width: 100%;
	background: #fff;
	margin: 0 0 0 -50%;
} */

footer .footer_contact div a {
  display: inline-block;
  line-height: 1;
  background-color: #fff;
  color: #a5d1df;
  border: 1px solid #fff;
  padding: 5px 16px;
  margin: 0 15px;
}

footer .footer_contact div a:hover,
footer .footer_contact div a.active {
  background-color: #a5d1df;
  color: #fff;
}

footer .language {
	float: left;
	text-align: left;
	line-height: 1;
}

footer .language li {
	display: inline-block;
}

footer .language li:nth-of-type(n+2):before {
	content: "/";
	display: inline-block;
	margin: 0 10px;
}

footer .language li.active a {
	padding: 0 0 2px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

footer .footer_copyright {
	float: right;
	font-size: 1.0rem;
}

footer .footer_copyright span {
	font-family: "Hiragino Mincho ProN";
}

.footer_pagetop {
	opacity: 0;
	pointer-events: none;
	position: fixed;
	bottom:-30px;
	left: 50%;
	margin: 0 0 0 -35px;
	z-index: 5000;
	zoom:1;
	width:70px;
	height:70px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	background: #a5d1df;
}

.footer_pagetop:hover {
	background-color: #3599c1;
	bottom: -20px;
}

.footer_pagetop.exist {
	opacity: 1;
	pointer-events: auto;
}

.footer_pagetop a {
	display: block;
	width: 100%;
	height: 100%;
}

.footer_pagetop a svg {
	display: block;
	width:18px;
	height: 18px;
	fill: #fff;
	margin: 13px auto 0;
}

.footer_pagetop:hover a svg {
	fill:#a5d1df;
	margin: 18px auto 0;
}

/* pagetopがfooterにかぶる時・白背景 */

.footer_pagetop.white {
	background: #fff;
}

.footer_pagetop.white a svg {
	fill: #a5d1df;
}

.footer_pagetop.white:hover a svg {
	fill:#fff;
}

.footer_pagetop.white:hover {
	background-color: #3599c1;
}

/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {
	
	footer {
		margin: 0 auto;
		padding: 50px 0 20px;
	}
	
	footer a:link,
	footer a:visited { color: #fff; }
	footer a:hover,
	footer a:active { color: #fff; }
	
	footer .inner {
		padding: 0 5%;
	}
	
	footer strong {
		display: block;
		width: 120px;
		margin: 0 auto 50px;
	}
	
	/* お問い合わせ */
	
	footer .footer_contact {
		padding: 0 0 30px;
		margin: 0 0 15px;
		border-bottom: 1px solid #fff;
		font-size: 1.3rem;
		line-height: 1.5;
	}
	
	footer .footer_contact p:nth-of-type(1) {
		font-size: 1.5rem;
	}
	
	footer .footer_contact em {
		display: block;
		margin: 5px auto 15px;
		font-size: 2rem;
		line-height: 1.4;
	}
	
	footer .footer_contact em small {
		display: block;
		margin: 0 auto;
		font-size: 1.2rem;
	}
	
	footer .footer_contact p a {
		display: block;
		margin: 0;
	}
	
	footer .footer_contact div {
		margin: 30px auto 0;
		font-size: 1.5rem;
	}
	
	footer .footer_contact div a:after {
		display: none;
	}
	
  footer .footer_contact div a {
    margin: 0 10px;
  }

  footer .footer_contact div a:hover,
  footer .footer_contact div a.active {
    background-color: #fff;
    color: #a5d1df;
  }


	footer .language {
		float: left;
		text-align: left;
		line-height: 1;
		font-size: 1.4rem;
	}
	
	footer .language li:nth-of-type(n+2):before {
		margin: 0 7px;
	}

}


/* triplaウィジェット追加 */

#tripla-widget {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 60px;
}

@media only screen and (min-width: 813px) {

    #tripla-widget {
        width: auto;
        min-width: 900px;
        padding: 0;
        position: fixed;
        z-index: 100;
        bottom: 0;
        left: 50%;
        -webkit-transform:translate(-50%, 0);
        transform:translate(-50%, 0);
    }

    footer {
        padding-bottom: 150px;
    }

    .footer_pagetop {
        left: 15px;
        margin: 0;
    }
}


/* ------------------------------------------------------------ CONTENTS ------------------------------------------------------------ */

/*--------------------------------
	共通レイアウト
--------------------------------*/

/* メイン */

main {
	display: block;
	width:100%;
	padding: 0 0 200px;
	overflow: hidden;
	min-height:1px;
	zoom:1;
	clear:both;
}

main:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

/* インナー */

.inner {
	width:100%;
	max-width: 990px;
	padding:0 30px;
	margin:0 auto;
	min-height:1px;
	zoom:1;
}

.inner:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.inner.wide {
	max-width:1280px; /* wideは最大値を上書き */
}

/* セカンドページメインビジュアル（画像は各ページで設定） */

.second_top {
	position: relative;
	width: 100%;
	height: 75vh;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* セカンドページタイトルまわり */

.second_intro {
	margin: 100px auto;
	text-align: center;
}

.second_intro h2 {
	font-size: 2.8rem;
	margin: 0 auto 30px;
	letter-spacing: 0.1em;
}

.second_intro p {
	line-height: 2.4;
}

/* ページ内リンク */

.second_intro p a {
	position: relative;
	display: inline-block;
	margin: 0 15px;
	padding: 0 5px;
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.second_intro p a:after {
	-webkit-transition: 0.4s;
	transition: 0.4s;
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	background: transparent;
}

.second_intro p a:hover:after {
	width: 100%;
	background: #a5d1df;
	margin: 0 0 0 -50%;
}

/* 小見出し+テキスト */

.ttl {
	margin: 0 auto 100px;
	text-align: center;
}

.ttl h3 {
	display: block;
	margin: 0 auto 30px;
	font-size: 2.8rem;
	letter-spacing: 0.1em;
}

/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/*--------------------------------
		共通レイアウト
	--------------------------------*/

	/* メイン */
	
	main {
		padding: 0 0 80px;
	}

	/* インナー */
	
	.inner {
		padding: 0 5%;
		max-width:none;
	}

	/* セカンドページタイトルまわり */
	
	.second_intro {
		margin: 10px auto 50px;
	}
	
	.second_intro h2 {
		font-size: 2rem;
		margin: 0 auto 20px;
	}
	
	.second_intro p {
		line-height: 1.8;
	}
	
	/* ページ内リンク */
	
	.second_intro p a {
		margin: 0 10px;
		padding: 0;
	}
	
	.second_intro p a:after {
		display: none;
	}
	
	.second_intro p a:hover:after {
		display: none;
	}

	/* 小見出し+テキスト */
	
	.ttl {
		margin: 0 auto 50px;
	}
	
	.ttl h3 {
		margin: 0 auto 30px;
		font-size: 2rem;
	}

}


/* ------------------------------------------------------------ jQuery ------------------------------------------------------------ */

/* ウェーブ */

#bottom_wave_container {
	width: 100%;
	height: 100px;
	position: absolute;
	bottom: -2px;
	left: 0;
}

#bottom_wave_container #bottom_wave {
	width: 100%;
	height: 100%;
}

/*--------------------------------
	slick
--------------------------------*/

.slide {
	opacity: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: relative;
}

.slide.slick-initialized { /* slick動作開始時に表示 */
	opacity: 1;
}

.slide img {
	width: 100%;
	height: auto;
	/* GPU acceleration */
/*
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	will-change: opacity, transform;
*/
}

.slide .slidePrev,
.slide .slideNext {
	display: block;
	background-color: #fff;
	cursor: pointer;
	width:36px;
	height:36px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.slide .slidePrev {
	position: absolute;
	z-index: 1001;
	top:calc(50% - 18px);
	left:-18px;
}

.slide .slideNext {
	position: absolute;
	z-index: 1001;
	top:calc(50% - 18px);
	right:-18px;
}

.slide .slidePrev:hover,
.slide .slideNext:hover {
	background-color: #333;
}

.slide .slidePrev svg,
.slide .slideNext svg {
	display: block;
	margin: 0 auto;
	width: 18px;
	height: 18px;
	fill:#333;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: fill;
	max-width:100%;
}

.slide .slidePrev:hover svg,
.slide .slideNext:hover svg {
	fill:#fff;
}

.slick-dotted.slick-slider {
	margin-bottom: 60px !important;
}

.slide .slick-dots {
	bottom:-60px;
}

.slide .slick-dots li {
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
}

.slide .slick-dots li button {
    width: 30px;
    height: 30px;
}

.slide .slick-dots li button:before {
	color: #a5d1df;
	font-size: 6px;
    width: 30px;
    height: 30px;
	line-height: 30px;
	opacity: 0.9;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: color;
}

.slide .slick-dots li:hover button:before,
.slide .slick-dots li.slick-active button:before {
	color: #3599c1;
	opacity: 0.9;
}


/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/*--------------------------------
		slick
	--------------------------------*/

	.slide .slidePrev,
	.slide .slideNext {
		width:32px;
		height:32px;
	}
	
	.slide .slidePrev {
		top:calc(50% - 16px);
		left:-16px;
	}
	
	.slide .slideNext {
		top:calc(50% - 16px);
		right:-16px;
	}
	
	.slide .slidePrev:hover,
	.slide .slideNext:hover {
		background-color: #fff;
	}
	
	.slide .slidePrev svg,
	.slide .slideNext svg {
		width: 16px;
		height: 16px;
	}
	
	.slide .slidePrev:hover svg,
	.slide .slideNext:hover svg {
		fill:#333;
	}
	
	.slide .slick-dots {
		bottom:-40px;
	}
	
	.slide .slick-dots li {
	    width: 20px !important;
	    height: 20px !important;
	    margin: 0 !important;
	}
	
	.slide .slick-dots li button {
	    width: 20px;
	    height: 20px;
	}
	
	.slide .slick-dots li button:before {
		font-size: 8px;
	    width: 20px;
	    height: 20px;
		line-height: 20px;
	}
	
	.slide .slick-dots li.slick-active button:before {
		opacity: 0.9;
	}

	/*--------------------------------
		fancybox
	--------------------------------*/
	
	.fancybox-slide {
		padding: 6% !important;
	}

}


/* ------------------------------------------------------------ スクロールアニメーション ------------------------------------------------------------ */

/*--------------------------------
	基本
--------------------------------*/

.io {
	-webkit-transition: opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
	transition: opacity 1.0s ease 0s, transform 1.0s ease 0s;

	/* GPU acceleration */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/* -webkit-transform: translate3d(0, 0, 0); */
	/* transform: translate3d(0, 0, 0); */
	will-change: opacity, transform;
}

.io.move {
	opacity: 1 !important;
	-webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
	transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}


/*--------------------------------
	汎用
--------------------------------*/

.io.fade {
	opacity: 0;
}

.io.upS {
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}

.io.scaleUp {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}

.io.lr {
	-webkit-transform: translate3d(-80px, 0, 0);
	transform: translate3d(-80px, 0, 0);
}

.io.rl {
	-webkit-transform: translate3d(80px, 0, 0);
	transform: translate3d(80px, 0, 0); 
}

/* スクロールで左から出現 */

.io.scrollImg {
	position: relative;
	overflow: hidden;
}

.io.scrollImg:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform 1.5s ease 0.5s;
	transition: transform 1.5s ease 0.5s;
}

.io.scrollImg.image_l.move:after {
	-webkit-transform: translate3d(101%, 0, 0);
	transform: translate3d(101%, 0, 0);
}

.io.scrollImg.image_r.move:after {
	-webkit-transform: translate3d(-101%, 0, 0);
	transform: translate3d(-101%, 0, 0);
}

i.io.scrollImg:after {
	-webkit-transition: -webkit-transform 1s ease;
	transition: transform 1s ease;
}


/* ------------------------------------------------------------ sunippet ------------------------------------------------------------ */

/*--------------------------------
	トグルのスタイル
--------------------------------*/

.toggle {
	text-align: left;
	margin: 0 0 30px;
	padding: 5px 10px 5px 55px;
	font-size: 24px;
	color: #333;
	background-color: #ccc;
	border: 2px solid #333;
	/* -webkit-font-smoothing: antialiased; */
	position: relative;
	cursor: pointer;
}

.toggle:before {
	content:'\f054';
	font-family: FontAwesome;
	color: #333;
	font-weight: normal;
	position: absolute;
	top: 6px;
	left: 15px;
	-webkit-transition: all .15s linear;
    transition: all .15s linear;
}

.toggle.open:before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.toggle:hover {
	color: #fff;
	background-color: #333;
	border: 2px solid #333;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.toggle:hover:before {
	color: #fff;
}

/*--------------------------------
	センター揃え
--------------------------------*/

.center_container {
	position: relative;
}

.center_inner_transform {
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}

.center_item_position {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.flex_container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex_container .flex_item {
	/* flex: flex-grow flex-shrink flex-basis; */
	-webkit-flex:0 1 auto; /* old safari default => 0 0 auto */
	-ms-flex:0 1 auto; /* ie default => 0 0 auto */
	flex:0 1 auto;
	max-width:100%;
}

/*--------------------------------
	onject-fit
--------------------------------*/

.onject-fit-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

/*--------------------------------
	CSS3
--------------------------------*/

.round {
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.shadow {
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0, 0.2);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0, 0.2);
}


/*--------------------------------
	animation
--------------------------------*/

.animation {
	animation: animation-name 0.5s linear 0s infinite forwards;
}

@-webkit-keyframes animation-name {
	0%		{ background-color: #fff; }
	100%	{ background-color: #000; }
}
@keyframes animation-name {
	0%		{ background-color: #fff; }
	100%	{ background-color: #000; }
}


