@charset "utf-8";

/*********************************

                common

**********************************/
body {
  color: #696969;
  font-size: 13px;
  line-height: 1.3;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
a {
  text-decoration: none;
}
.wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
a:hover{
    opacity: 0.7;
}
.fadeIn {
    transform: translate3d(0, -10px, 0);
    transition: 1s;
    opacity: 0;
}

.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
@media screen and (min-width:640px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  .wrapper {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
      max-width: 1200px;
  }
}
/*********************************

               header

**********************************/
header {
  width: 100%;
  height: 60px;
  position: fixed;
  background-color: #ffffff;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #CBC6C6;
}
.header-content {
  padding: 0 20px;
  position: relative;
}
.logo img {
  width: 130px;
  height: 60px;
}
/*========= ハンバーガーメニュー ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: absolute;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  /*top: 60px;
    left:50%;
    transform: translate(-50%,-50%);*/
  width: 100%;
  padding-top: 60px;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  width: 100%;
  height: 60px;
  border-bottom: dotted #dd959b 2px;
  box-sizing: border-box;
  justify-content: center;
}
#g-nav li a {
  text-decoration: none;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-top: 20px;
  color: #696969;
}
/*予約ボタン設定*/
.nav-contact {
    background: #92b65d;/*背景色*/
    border-radius: 27px;
    width: 125px;
    height: 27px;
    padding: 6px  5px 2px 5px;
    color: #fff;  
    display: block;
}
.item a{
    margin-top: 10px !important;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*========= アイコン ===============*/
.instagram {
  font-size: 30px;
  color: #696969;
  position: absolute;
  top: 10px;
  right: 50px;
}
.icon-instagram:before {
  content: "\ea92";
}
@media screen and (min-width:640px) {
  header {
    height: 85px;
  }
  .header-content {
    padding: 0;
    height: 85px;
  }
  .logo img {
    height: auto;
    width: 163px;
    margin-left: 3%;
    justify-content: center;
  }
  .logo {
    margin-top: 20px;
  }
  .openbtn {
    display: none;
  }
  #g-nav {
    right: 0;
    height: auto;
    width: 50%;
  }
  #g-nav ul {
    display: flex;
    padding-top: 0;
    margin-right: 20%;
    position: absolute;
    right: 0px;
  }
  #g-nav li {
    border-bottom: none;
  }
  #g-nav li a {
    margin-top: 10px;
  }
  .nav-contact a {
    width: 130px;
    height: 33px;
  }
  .instagram {
    right: 3%;
    font-size: 36px;
    top: 0px;
  }
            .item a{
    margin-top: 5px !important;
}
}
/*********************************

　　　　       main

**********************************/
/*----------パンくずナビ---------------*/
.pankuzulist {
  margin-top: 64px;
  background-color: rgba(173, 108, 109, 0.1);
  padding: 5px 0;
}
.List-Item {
  display: inline;
  font-size: 14px;
}
.List-Item::after {
  content: '＞';
  padding: 0 16px;
}
.List-Item:last-child::after {
  content: '';
}
.List-Item-Link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
/*----------メイン領域---------------*/
h1 {
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin: 30px 0;
  text-align: center;
    font-weight: bold;
}
h1 span {
  display: block;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 3px;
}
h2{
    font-size: 1.2rem;
    text-align: center;
    background-color: #EEEEEE;
    padding: 10px;
}
.menu{
    margin-bottom: 50px;
}
.menu li{
    margin-top: 20px;
    width: 94%;
    padding: 10px 10px;
    border-bottom: 1px solid #E6E6E6;
    display: table;
    letter-spacing: 0.5px;
    font-size: 13px;
}
.detail{
    display: table-cell;
    vertical-align: middle;
}
.menu p{
    letter-spacing: 0.8px;
    line-height: 1.4;
}
.menu span{
        display: block;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1;
    margin: 4px 0 5px;
    letter-spacing: 0;
}
.price{
    width: 20%;
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}

@media screen and (min-width:640px) {
  /*----------パンくずナビ---------------*/
  .pankuzulist {
    margin-top: 85px;
  }
  /*----------メイン領域---------------*/
  h1 {
    font-size: 2.7rem;
    letter-spacing: 2px;
    margin: 55px 0;
    text-align: center;
  }
  h1 span {
    display: block;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
  }
    .menu li{
        width: 94%;
    padding: 28px 25px;
    border-bottom: 1px solid #E6E6E6;
    display: table;
    letter-spacing: 0.5px;
}
.detail{
    display: table-cell;
    vertical-align: middle;
}
.menu p{
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.8;
}
.menu span{
        display: block;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1;
    margin: 4px 0 5px;
    letter-spacing: 0;
}
.price{
    width: 165px;
    display: table-cell;
    text-align: right;
    vertical-align: middle;
    font-size: 1.2rem;
}
}
/******************************************
pagrtop
*******************************************/
#page_top {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #efefef;
  position: fixed;
  right: 18px;
  bottom: 100px;
  opacity: 0.7;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #92b65d;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -35px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: 'PAGE TOP';
  font-size: 7px;
  color: #92b65d;
  position: absolute;
  top: 25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (min-width:640px) {
  .hero {
    margin-top: 85px;
  }
  .slider-item {
    width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
  /*pagetop*/
  #page_top {
    width: 80px;
    height: 80px;
  }
  #page_top a::after {
    font-size: 14px;
    top: 40px;
  }
  #page_top a::before {
    font-size: 50px;
    top: -85px;
  }
}
/*********************************

　　　　       footer

**********************************/
.footer-content {
  height: 165px;
  width: auto;
  background-color: #e7d2d2;
}
.banner {
  width: 200px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  padding-top: 25px;
  padding-bottom: 35px;
}
.banner a:hover {
  opacity: 0.7;
}
.copy {
  font-size: 7px;
  text-align: center;
}
@media screen and (min-width:640px) {
  .footer-content {
    height: 200px;
  }
  .banner {
    height: auto;
    width: 250px;
  }
}