@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #595959; /* RGB */
  font-family: 'Cormorant Garamond', serif;
  font-family: 'Montserrat', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #fff;
  position: relative;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}
@media(min-width:768px) {
  body {
    cursor: none;
  }
  a:hover {
    cursor: none;
  }
  @media(max-width:767px) {
    *:hover {
      cursor: none;
    }
  }
  #cursor {
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    width: 40px;
    height: 40px;
    margin: -25px 0 0 -25px; /*真ん中にくるようにマイナスマージンで調整*/
    z-index: 100000; /*一番手前に来るように*/
    pointer-events: none; /*クリックできなくなるのを防ぐため。noneで対応*/
    opacity: 0;
  }
  #cursor.active {
    transform: scale(2);
  }
}
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100%; /*ナビの高さ*/
  background-image: url("../images/main/nav.jpg");
  background-repeat: no-repeat;
  background-size: 155% 100%;
  background-position: right;
  /*動き*/
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 9999;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
  display: block;
}
/*リストのレイアウト設定*/
#g-nav ul li.has-child ul {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  display: none; /*JSのslidetoggleで表示させるため非表示に*/
  transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  transform: none;
}
@media (min-width:768px) {
  #g-nav {
    background-size: 100% 100%;
  }
  #g-nav ul {
    top: 50%;
    left: 70%;
  }
}
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  text-decoration: none;
  margin-bottom: 30px;
  display: block;
  cursor: none;
}
#g-nav li a span.nav-title {
  color: #979088;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.2;
}
#g-nav li a span.nav-title:hover {
  color: #ececec;
}
#g-nav.dropdwn_menu li a {
  text-decoration: none;
  display: block;
}
#g-nav li a span.nav-title-dwn {
  color: #979088;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.2;
}
#g-nav li a span.nav-title-dwn:hover {
  color: #ececec;
}
@media(min-width: 1440px) {
  #g-nav li a span.nav-title {
    font-size: 5rem;
    line-height: 1.3;
  }
  #g-nav li a span.nav-title-dwn {
    font-size: 2.7rem;
    line-height: 1.2;
  }
}
.fade-in {
  animation-name: fadein;
  animation-duration: 1.5s;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade {
  opacity: 0;
  transition: opacity 2.5s;
}
.fade.view {
  opacity: 1;
}
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 18px;
  right: 10px;
  width: 35px;
  height: 30px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .1.5s; /*アニメーションの設定*/
  position: absolute;
  right: 10px;
  top: 12px;
  height: 1px;
  background: #747474;
  width: 80%;
}
.openbtn span:nth-of-type(1) {
  top: 8px;
  width: 25px;
}
.openbtn span:nth-of-type(2) {
  top: 15px;
  width: 18px;
}
.openbtn.active {
  position: fixed;
  z-index: 10000; /*ボタンを最前面に*/
  top: 18px;
  right: 10px;
  width: 41px;
  height: 36px;
}
.openbtn.active span:nth-of-type(1) {
  top: 10px;
  right: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
  background-color: #847c74;
}
.openbtn.active span:nth-of-type(2) {
  top: 22px;
  right: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
  background-color: #847c74;
}
@media(min-width:768px) {
  .openbtn {
    top: 18px;
    right: 10px;
    width: 70px;
    height: 30px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    right: 10px;
    top: 12px;
    height: 1px;
    background: #747474;
    width: 80%;
  }
  .openbtn span:nth-of-type(1) {
    top: 8px;
    width: 60px;
  }
  .openbtn span:nth-of-type(2) {
    top: 15px;
    width: 33px;
  }
  .openbtn.active {
    position: fixed;
    z-index: 10000; /*ボタンを最前面に*/
    top: 18px;
    right: 10px;
    width: 60px;
    height: 40px;
  }
}
@media(min-width: 1024px) {
  .openbtn span:nth-of-type(2)::after {
    position: absolute;
    top: 3px;
    right: 0px;
    content: "MENU";
    color: #747474;
    font-family: cormorant-garamond, serif;
    font-size: 10px;
    letter-spacing: -0.05em;
  }
  .openbtn.active.openbtn span:nth-of-type(2)::after {
    display: none;
  }
}
#header {
  z-index: 9000;
  width: 100%;
  position: relative;
}
/*JSを使いfixedクラスが付与された際の設定*/
#header-wrapper.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 9000; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
#header-wrapper {
  position: fixed;
  top: 0;
  display: flex;
  z-index: 9000;
  width: 100%;
  height: 66px;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.header-logo {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 22px;
}
#header-wrapper h1 img {
  width: 190px;
  height: auto;
  display: inline-block;
}
@media (min-width: 1024px) {
  #header-wrapper h1 img {
    width: 235px;
  }
}