@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 15px;
	font-family: MyYuGothicM,"游ゴシック","Yu Gothic",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	line-height: 1.7;
	letter-spacing: .05em;
  color: #c5c5c5;
  background: #423e3a;
}
#content,
.wrap {
	max-width: 1000px;
	margin: 0 auto;
}
a{
  color: #555;
	text-decoration: none;
}
a:hover{
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
  list-style: none;
  margin-left: 0;
}
h2 {
  font-family: 'Cormorant SC', serif;
  font-size: 50px;
  font-weight: normal;
  text-align: center;
  color: #bdb292;
  margin-bottom: 50px;
  line-height: 1;
}
h2 span {
  font-family: MyYuGothicM,"游ゴシック","Yu Gothic",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
}
h3 {
  text-align: center;
  font-size: 19px;
  font-weight: normal;
  color: #bdb292;
  border-bottom: 1px solid;
  margin-bottom: 15px;  
}

@media screen and (max-width:768px) {
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
  }
  body {
    font-size: 14px;
  }
	#content,
  .wrap {
		width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }
  h2 {
    font-size: 37px;
    margin-bottom: 30px;
  }
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  box-sizing: border-box;
}
/* inner-left */
header .inner-left {
  width: 35%;
  position: relative;
}
header .inner-left h1 {
  padding: 10px;
}
header .inner-left h1 img.default {
  display: inline-block;
}
header .inner-left h1.change {
  display: none;
}
header .inner-left .catch {
  font-size: 10px;
    position: absolute;
    top: 10px;
    left: 40%;
    color: #111;
}
/* inner-right */
header .inner-right {
  width: 65%;
  padding-right: 3%;
  box-sizing: border-box;
}
nav.gnav ul {
  text-align: right;
}
nav.gnav ul li {
  display: inline-block;
  padding: 20px 15px;
  text-align: center;
  font-size: 12px;
}
nav.gnav ul li span {
  font-family: 'Cormorant SC', serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
/* spのみ */
nav.gnav .gnav_sp {
  display: none;
}
/* changeNav */
header.changeNav {
  background-color: #928A83;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header.changeNav nav.gnav ul li a {
  color: #fff;
}
header.changeNav .inner-left h1.default {
  display: none;
}
header.changeNav .inner-left h1.change {
  display: inline-block;
  width: 60%;
}
header.changeNav .inner-left .catch {
  color: #fff;
  font-size: 8px;
  transform: scale(0.8);
  left: 20%;
  top: 5px;
}

@media screen and (max-width:900px) {
  header .inner-left {
    width: 55%;
  }
  header .inner-left h1.default{
    padding: 20px 10px 0 10px;
  }
  header .inner-left .catch {
    font-size: 8px;
    transform: scale(0.8); 
    top: 5px;
    left: 10px;
  }
  /* changeNav */
  header.changeNav .inner-left h1.change {
    width: 70%;
  }
  header.changeNav .inner-left .catch {
    display: none;
  }
  /* ハンバーガーメニュー */
	nav.global-nav {
	    position: fixed;
	    right: -420px;
	    top: 0;
	    width: 270px;
	    height: 100vh;
	    background: #928A83;
	    transition: all .2s ease-out;
	    z-index: 200;
	    overflow-y: auto;
	    padding: 60px 30px 40px 40px;
    }
    nav.gnav.global-nav ul li {
	    margin-bottom: 15px;
      border-bottom: 1px dotted rgba(255,255,255,0.5);
      width: 100%;
      padding: 5px 12px;
      font-size: 11px;
    }
    nav.gnav ul li a {
      color: #fff;
    }
    /* SPのみホットペッパー */
    nav.gnav ul li.gnav_sp,
    nav.gnav .gnav_sp {
      display: block;
      border-bottom: none;
    }
    nav.gnav ul li.hotpepper img {
      zoom: .4;
      margin-top: 30px;
    }
    nav.gnav .gnav_sns {
      display: inline-block;
      padding: 20px 7px;
    }
    nav.gnav .gnav_sns img {
      width: 25px;
      height: 25px;
      object-fit: contain;
    }

	  .hamburger {
	    position: absolute;
	    right: 10px;
      top: 5px;
	    width: 40px;
	    height: 40px;
	    cursor: pointer;
	    z-index: 300;
	  }
	  .global-nav__list {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	  }
	  .global-nav__item a {
	    display: block;
	    padding: 8px 0;
	    border-bottom: 1px solid #fff;
	    line-height: 1.3;
	  }
	  .global-nav__item a:hover {
	    background-color: #eee;
	  }
	  .hamburger__line {
	    position: absolute;
	    left: -5px;
	    width: 30px;
	    height: 1px;
	    background-color: #423e3a;
	    transition: all .2s ease-out;
	  }
	  .hamburger__line--1 {
	    top: 18px;
	  }
	  .hamburger__line--2 {
	    top: 26px;
	  }
	  .hamburger__line--3 {
	    top: 33px;
	  }
	  .black-bg {
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100vw;
	    height: 100vh;
	    z-index: 100;
	    background-color: #000;
	    opacity: 0;
	    visibility: hidden;
	    transition: all .6s;
	    cursor: pointer;
	  }
	  /* 表示された時用のCSS */
	  .nav-open .global-nav {
	    right: 0;
	  }
	  .nav-open .black-bg {
	    opacity: .8;
	    visibility: visible;
	  }
	  .nav-open .hamburger__line--1 {
	    transform: rotate(45deg);
	    top: 20px;
	  }
	  .nav-open .hamburger__line--2 {
	    width: 0;
	    left: 50%;
	  }
	  .nav-open .hamburger__line--3 {
	    transform: rotate(-45deg);
	    top: 20px;
	  }
}
@media screen and (max-width:768px)  {
  header .inner-left {
    width: 75%;
  }
}

/* ==================================================
  preloader
====================================================*/
.preloader-area {
  background-color: #938a83;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.preloader-area .loader-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
.preloader-area .loader {
    background-image: url(../images/loading-pc.png);
    width: 478px;
    height: 322px;
  }
@media screen and (max-width:768px) {
  .preloader-area .loader {
    background-image: url(../images/loading-sp.png);
    width: 239px;
    height: 161px;
  }
}


/* =======================================================
* section
* ======================================================= */
section {
  padding-bottom: 5rem;
}
.section {
  padding-top: 5rem;
}
/* ボタン */
.btnArea {
  margin: 50px 0;
}
.btnArea a {
  padding: 20px 120px;
  color: #bdb292;
  position: relative;
  border: 1px solid;
}
.btnArea a::after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: #bdb292;
  transition: width 0.3s ease-in-out;
}
.btnArea a:hover::after {
  width: 100%;
}
/* btnMore */
.btnMore {
  text-align: right;
  font-family: 'Cormorant SC', serif;
}
.btnMore a {
  color: #bdb292;
}
/* インスタチェック */
.check {
  text-align: center;
  margin: 90px auto 30px;
}

@media screen and (max-width:768px) {
  section {
    padding-bottom: 3rem;
  }
  .section {
    padding-top: 3rem;
  }
  /* ボタン */
  .btnArea a {
    padding: 17px 45px;
  }
}



/* =======================================================
* main
* ======================================================= */
#main .swiper-slide {
  height: 100vh;
}
#main .swiper-slide.slide01{
  background: url(../images/slide01.jpg) center / cover no-repeat;
}
#main .swiper-slide.slide02{
  background: url(../images/slide04.jpg) center / cover no-repeat;
}
#main .swiper-slide.slide03{
  background: url(../images/slide05.jpg) center / cover no-repeat;
}
#main .swiper_ttl {
  position: absolute;
  bottom: 2%;
  right: 2%;
  font-family: 'Strings';
  z-index: 1;
  font-size: 90px;
  color: #bdb292;
}
#main .swiper-catch {
  position: absolute;
  top: 25%;
  left: 5%;
  z-index: 1;
  width: 28%;
}

@media screen and (max-width:768px) {
  #main .swiper-slide.slide01 {
    background-position: center left 40%;
  }
  #main .swiper-slide.slide02 {
     background-position: center left 30%;
  }
  #main .swiper_ttl {
    font-size: 80px;
    bottom: 18%;
    right: 5%;
    line-height: .8;
    text-align: right;
  }
  #main .swiper-catch {
    top: 20%;
    width: 55%;
    left: 2%;
  }
}

/* =======================================================
*intro
* ======================================================= */
#intro .intro_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
#intro .intro_sp {
  display: none;
}
#intro .w30 p {
  margin-top: 30px;
}
#intro .w30 p span {
  font-size: 20px;
  color: #bdb292;
  letter-spacing: .1em;
}
@media screen and (max-width:768px) {
  #intro .intro_pc {
    display: none;
  }
  #intro .intro_sp {
    display: block;
  }
  #intro p {
    margin-top: 30px;
  }
  #intro p span {
    font-size: 18px;
    color: #bdb292;
  letter-spacing: .1em;
  }
}

/* =======================================================
* menu
* ======================================================= */
#menu ul {
  margin-top: 50px;
}
#menu ul li {
  width: 31%;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  #menu ul li {
    width: 100%;
  }
}


/* =======================================================
* reserve
* ======================================================= */
#reserve {
  text-align: center;
  background: url(../images/bg-reserve.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}
#reserve::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(23, 21, 19, .7);
  top: 0;
  left: 0;
  z-index: -1;
}
#reserve::before {
  color: #bdb292;
  font-family: 'Strings';
  font-size: 150px;
  position: absolute;
  content: "Reserve";
  top: -3%;
    left: 5%;
    line-height: 0;
    transform: rotate(-5deg);
}
#reserve p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 50px;
}
#reserve ul a {
  width: 32%;
  border: 1px solid #fff;
  background-color: rgba(255,255,255,0.6);
  padding: 25px 5px;
  box-sizing: border-box;
  color: #111;
  font-weight: bold;
  font-size: 14px;
}
#reserve ul a img {
  height: 50px;
  object-fit: cover;
  margin-bottom: 10px;
}
#reserve ul a:hover {
  opacity: 1;
  background-color: rgba(255,255,255,0.8);
}
/* 電話予約 */
.reserve_tel a {
  color: #fff;
}
@media screen and (max-width:1024px) {
	#reserve {
    background-attachment: unset;
  }
}
@media screen and (max-width:768px) {
  #reserve {
    padding: 5rem 0;
  }
  #reserve::before {
    top: 0;
    font-size: 90px;
  }
  #reserve ul a {
    width: 85%;
    margin: 0 auto 20px;
    padding: 15px 5px;
    font-size: 13px;
  }
  #reserve ul a img {
    height: 35px;
  }
}


/* =======================================================
* under_main
* ======================================================= */
#under_main {
  height: 450px;
  position: relative;
}
#under_main .under_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Strings';
  font-size: 120px;
  color: #fff;
}
@media screen and (max-width:768px) {
  #under_main {
    height: 250px;
  }
  #under_main .under_ttl {
    top: 55%;
    font-size: 70px;
  }
}




/* =======================================================
*footer
* ======================================================= */
footer {
  background-color: #928a83;
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
  color: #e0e0e0;
  font-size: 14px;
}
footer .logo img {
  zoom: .3;
}
.footer_menu {
  margin-bottom: 30px;
}
.footer_menu li {
  display: inline-block;
  padding: 0 10px;
}
footer a,
.footer_menu li a {
  color: #e0e0e0;
}
.address {
  font-size: 13px;
  line-height: 2;
}
.copyright{
  margin-top: 30px;
  font-size: 10px;
  font-family: serif;
}

@media screen and (max-width:768px) {
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .logo img {
    zoom: .2;
  }
  .footer_menu li {
    display: block;
    padding: 10px 0 5px 25px;
    text-align: left;
    border-bottom: 1px dotted #bfb7b0;
    position: relative;
  }
  .footer_menu li::before {
    position: absolute;
    content: "-";
    font-weight: 900;
    top: 9px;
    left: 10px;
  }
  .address {
    text-align: left;
    font-size: 12px;
  }
}


/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    overflow: visible!important;
    z-index: 9;
}

#pagetop .arrow-up {
	width: 20px;
  height: 20px;
  border: 1px solid;
  border-color:#bdb292#bdb292 transparent transparent;
  transform: rotate(-45deg);
}

