@charset "utf-8";
/*----グーグルフォント-----*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');
/*------------- base -------------*/
body {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.8;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;	
}
a:link {
    text-decoration: none;
    color: #5087b4;
}
a:visited {
    text-decoration: none;
	color: #5087b4;
}
a:hover {
    text-decoration: none;
	color: #a0a9b8;
}
a:active {
    text-decoration: none;
	color: #5087b4;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
/* 文字のサイズ自動調整しない */
html {
    -webkit-text-size-adjust: 100%
}

/*--PCで電話番号リンク無効--*/
@media (min-width: 600px) {
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
}
/*--//PCで電話番号リンク無効--*/
/*-- pc.sp切り替え --*/
.sp {
    display: none;
}
@media screen and ( max-width:480px ) {
.pc {
    display: none;
}
.sp {
    display: block;
}
}
/*------△△ pc.sp切り替え △△-----*/
/*---pc.tb切り替え--*/
.sp-991 {
    display: none;
}
@media screen and ( max-width:991px ) {
.pc-991 {
    display: none;
}
.sp-991 {
    display: block;
}
}
/*---//pc.tb切り替え--*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}
/*--ヘッダーナビPC--*/
.pc-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: #f3f1e6;
}
.pc-head .site-logo {
    width: 160px;
    margin: 0 30px;
}
.pc-head .site-logo img {
    width: 100%;
    margin-top: 0px;
}
.pc-head .g-nav {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-left: auto;/*押し出し*/
}
.pc-head .g-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.pc-head .g-nav ul li a {
    padding: 0 10px;
    color: #5087b4;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	height: 90px;
	transition: 0.5s;
}
.pc-head .g-nav ul li a:hover{
	color: #a0a9b8;
}
.pc-head .g-nav ul li.insta a {
    font-size: 30px;
    line-height: 1;
}
.pc-head .g-nav ul li.resav a {
	color:#fff;
    background-color: #5087b4;
	padding: 0 25px;
	margin-left: 15px;
	font-size: 15px;
	transition: 0.3s;
}
.pc-head .g-nav ul li.resav a:hover {
	background-color:#a0a9b8;
	color: #fff;
}
@media screen and ( max-width:1080px ) {
	.pc-head {
		display: none;
	}
}
/*--//ヘッダーナビPC--*/
/*--ヘッダーナビSP--*/
body, ul, li {
    margin: 0;
    padding: 0;
  }
div#head-sp {
    background: #f3f1e6;
    color: #5087b4;
	 width: 100%;
	height: 85px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  }
/*nabi開閉部分*/
.sp-head {
      box-sizing: border-box;
      position: fixed;
      top: 0;
      width: 100%;
	  z-index: 999;
	display: none;
  }
@media screen and ( max-width:1080px ) {
.sp-head {
	display: block;
  }
	}
.sp-head .gnav {
    list-style-type: none;
    background: #f3f1e6;
    width: 100%;
    /*　z-indexは.wrapper部分でpositionを使用した場合は適切な数字（一番大きい値）に変更*/
    z-index: 99;
	font-family:  'Cormorant Garamond', serif;
	text-align: center;
	font-size: 25px;
	padding: 10px 0 60px;
  }
.sp-head .gnav a {
    display: block;
    text-decoration: none;
    /* (44-16)/2=14px */
    padding: 4px;
	color: #5087b4;
  }
/*ハンバーガーボタン*/
.sp-head .icon-animation {
    width: 44px;
    height: 44px;
    display: block;
    cursor: pointer;
    float: left;
    position: absolute;
    left: 22px;
    text-align: center;
    top: 19px;
  }
.sp-head .icon-animation span {
    width: 39px;
    height: 1px;
    display: block;
    background: #5087b4;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
.sp-head .icon-animation .top {
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
  }
.sp-head .icon-animation .bottom {
    -webkit-transform: translateY(7px);
    -ms-transform: translateY(7px);
    transform: translateY(7px);
  }
.sp-head .is-open .middle {
    background: rgba(51, 51, 51, 0);
  }
.sp-head .is-open .top {
    -webkit-transform: rotate(-30deg) translateY(0px);
    -ms-transform: rotate(-30deg) translateY(0px);
    transform: rotate(-30deg) translateY(0px);
  }
.sp-head .is-open .bottom {
    -webkit-transform: rotate(30deg) translateY(0px);
    -ms-transform: rotate(30deg) translateY(0px);
    transform: rotate(30deg) translateY(0px);
  }
/*------*/
.sp-head .sp-h-insta {
	font-size: 32px;
	line-height: 1;
	position: absolute;
	right: 20px;
    top: 25px;
}
.sp-head .sp-h-insta a {
	color: #5087b4;
}
.sp-head .sp-h-logo img {
	width: 150px;
}
.sp-head .gnav .pull-yoyaku p {
    border: 1px solid #5087b4;
    width: 400px;
    max-width: 70%;
    margin: 40px auto 0;
    padding: 0 0 4px;
    line-height: 1.1;
    background-image: url(../image/pull-arrow.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 35px auto;
}
.sp-head .gnav .pull-yoyaku span {
	font-size: 17px;
}
@media screen and ( max-width:767px ) {
div#head-sp {
	height: 75px;
  }
.sp-head .icon-animation {
    top: 13px;
  }
.sp-head .sp-h-insta {
    top: 22px;
}
.sp-head .sp-h-logo img {
	width: 130px;
}
}
/*--//ヘッダーナビSP--*/
/* テキスト */
.large-t {
	font-size: 18px;
}
.middle-t {
	font-size: 14px;
}
.note_kome {
	font-size: 13px;
}
/*--フッター上部予約ボタン--*/
#reserv_botan {
	width: 810px;
	max-width: 80%;
	margin: 20px auto 60px;
}
#reserv_botan p a span {
	font-family: 'Cormorant Garamond', serif;
	font-size: 27px;
	margin-right: 0.5em;
}
#reserv_botan a {
    color: #5087b4;
    display: block;
    border: 1px solid #5087b4;
    line-height: 1.2;
    transition: 0.3s;
    padding: 25px 40px 30px;
    background-image: url("../image/reserv-btn_arrow_off.png");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 150px auto;
}
#reserv_botan a:hover {
	color: #a0a9b8;
	border: 1px solid #a0a9b8;
	background-image: url("../image/reserv-btn_arrow_on.png");
}
@media screen and ( max-width:767px ) {
#reserv_botan a {
    padding: 25px 30px 30px;
    background-image: url("../image/reserv-btn_arrow_off-sp.png");
    background-size: 50px auto;
}
#reserv_botan a:hover {
	color: #a0a9b8;
	border: 1px solid #a0a9b8;
	background-image: url("../image/reserv-btn_arrow_on-sp.png");
}
}
/*--フッター上部予約ボタン--*/
/*--------------------
　　　　　フッター
--------------------*/
footer {
    padding: 25px 0;
    background-color: #f3f1e4;
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
}
footer > div {
    width: 1100px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	margin-bottom: 20px;
}
.f-menu ul li a {
	color: #5087b4;
}
.f-menu ul li a:hover {
	color: #a0a9b8;
}
footer > div > .f-logo {
	margin-right: auto;/*押し出し*/
	padding-top: 10px;
	padding-right: 60px;
	margin-bottom: 20px;
}
footer > div > .f-logo img {
    width: 150px;
}
footer > div > .f-menu {
	margin-right: 130px;
}
.copyright {
	width: 1100px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
	color: #5087b4;
	font-size:70%;
}
@media screen and ( max-width:991px ) {
footer > div > .f-menu {
	margin-right: 100px;
}
}
@media screen and ( max-width:767px ) {
footer > div > .f-menu {
	margin-right: 60px;
}
}
/*--ページトップボタン--*/
#page-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
	z-index: 999;
}
#page-top a {
    width: 30px;
	height: auto;
    display: block;
}
#page-top a img {
	width: 100%;
}
@media screen and ( max-width:767px ) {
#page-top {
    right: 5px;
}
}
/*--//ページトップボタン--*/
/*-------------------------------------------------------------------------------*/
/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 30px);
	transition: all 0.8s ease-out;
 }
