@charset "UTF-8";

/* header */
#header h1.main-logo {
  max-width: 260px;
  min-width: 260px;
  font-size: 0;
  position: absolute;
  top: 18px;
  left: 40px;
  z-index: 999;
}

#header h1.main-logo a {
  display: block;
}

#g-nav {
  width: 100%;
  height: 100vh;
  background: #170a0a;
  position: fixed;
  /* 縦スクロールバージョン↓ */
  /* top: -120%; */
  /* left: 0; */

  /* 横スクロールバージョン↓ */
  top: 0%;
  left: 100%;
  z-index: 999;
  transition: all 0.6s;
}

#g-nav.panelactive {
  /* top: 0; */
  left: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /* overflow: auto; */
  /* -webkit-overflow-scrolling: touch; */
  overflow-y: scroll;
  /*ナビの数が増えた場合縦スクロール*/
}

#g-nav ul.g-nav-flex {
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav ul.g-nav-flex li {
  width: calc((100% - 120px) / 4);
  /* background: #f0f0f0; */
  background: rgba(255, 255, 255, 0.8);
  margin-right: 40px;
}

#g-nav ul.g-nav-flex li:nth-of-type(4n) {
  margin-right: 0;
}

#g-nav ul.g-nav-flex li:nth-of-type(n + 5) {
  margin-top: 40px;
}

#g-nav ul.g-nav-flex li.cv-link {
  width: 100%;
  background: none;
  margin-top: 100px;
  margin-right: 0;
}

#g-nav ul.g-nav-flex li.cv-link .cv-link-flex {
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

#g-nav ul.g-nav-flex li.cv-link .cv-link-flex li {
  width: 42%;
}

#g-nav ul.g-nav-flex li.cv-link .cv-link-flex li.request-link {
  margin-right: 2%;
}

#g-nav ul.g-nav-flex li.cv-link .cv-link-flex li.reserve-link::before {
  content: none;
}

#g-nav ul.g-nav-flex li a {
  display: block;
  font-size: 20px;
  color: #060303;
  text-align: center;
  padding: 20px 20px 20px 20px;
  position: relative;
}

#g-nav ul.g-nav-flex li a::before {
  content: "＞";
  color: #060303;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%) scale(0.6, 1);
  transform: translate(0, -50%) scale(0.6, 1);
}

#g-nav ul.g-nav-flex li a::after {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
}

#g-nav ul.g-nav-flex li a .ja {
  display: block;
  font-size: 12px;
  color: #060303;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 10px 0 0 -5px;
}

#g-nav ul.g-nav-flex li a:hover {
  opacity: 0.7;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 28px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.openbtn::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #a49963;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.openbtn span {
  display: inline-block;
  width: 30px;
  background: #fff;
  position: absolute;
  left: 14px;
  height: 1px;
  transition: all 0.4s;
}

.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) {
  width: 30px;
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  width: 30px;
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
}

/* sub-btn */
.sub-btn {
  position: fixed;
  z-index: 999;
  top: 40px;
  right: 100px;
}

.sub-btn li:nth-of-type(1),
.sub-btn li:nth-of-type(2) {
  display: flex;
  align-items: center;
  margin-right: 25px;
}

.sub-btn li:nth-of-type(1) a,
.sub-btn li:nth-of-type(2) a {
  color: #fff;
}

.sub-btn li a {
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s;
}

.sub-btn li.sub-request {
  margin-right: 5px;
}

.sub-btn li.sub-request a,
.sub-btn li.sub-reserve a {
  padding: 10px 20px;
}

.sub-btn li a:hover {
  opacity: 0.7;
}

/* 未公開ページ */
#g-nav ul.g-nav-flex li:nth-of-type(2) a,
#g-nav ul.g-nav-flex li:nth-of-type(4) a,
#g-nav ul.g-nav-flex li:nth-of-type(6) a,
#g-nav ul.g-nav-flex li:nth-of-type(7) a,
#g-nav ul.g-nav-flex li:nth-of-type(8) a {
  opacity: 0.4;
  pointer-events: none;
}

/* NEWアイコン */
#g-nav ul.g-nav-flex li {
  position: relative;
}

/* #g-nav ul.g-nav-flex li:nth-of-type(3):before,
#g-nav ul.g-nav-flex li:nth-of-type(4):before,
#g-nav ul.g-nav-flex li:nth-of-type(5):before,
#g-nav ul.g-nav-flex li:nth-of-type(7):before,
#g-nav ul.g-nav-flex li:nth-of-type(8):before,
#g-nav ul.g-nav-flex li:nth-of-type(9):before {
  content: "NEW";
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #fff;
  background: #8a0a0a;
  padding: 3px 8px 2px 8px;
  position: absolute;
  top: 0;
  left: 0;
} */

/* current */

/* ヘッダースクロールで背景色 */
header.scroll {
  width: 100%;
  height: 110px;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 888;
}

/* cv-btn */
.cv-btn-area {
  width: 90%;
  font-size: 24px;
  letter-spacing: 2px;
  padding: 80px 0px;
  margin: 0 auto 0;
}

.cv-btn {
  width: 56%;
  margin: 60px auto;
}

.cv_bottom {
  flex-wrap: wrap;
  justify-content: center;
}

.cv_bottom li {
  width: 48%;
  max-width: 360px;
}

.cv_bottom li:nth-of-type(2) {
  margin-left: 2%;
}

.cv_bottom li a {
  display: block;
  font-size: 18px;
  color: #231815;
  letter-spacing: 6px;
  text-align: center;
  padding: 15px 0;
  position: relative;
  transition: all 0.5s;
}

.cv_bottom li a::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 1px #231815;
  border-right: solid 1px #231815;
  position: absolute;
  top: 45%;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.cv_bottom li a:hover {
  opacity: 0.7;
}

.c-request {
  color: #060303;
  background: #c9af6b;
}

.c-reserve {
  background: #dfe0df;
}

.cv-btn {
  max-width: 280px;
  font-size: 24px;
  text-align: center;
  border-radius: 50px;
  padding: 20px 0;
}

.cv-btn:hover {
  opacity: 0.7;
}

.cv-btn.border {
  border-radius: 50px;
  position: relative;
}

.cv-btn.border::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  transition: 0.5s;
}

.cv-btn.border:hover::before {
  right: -35px;
}

.cv-btn.border.viewmore {
  font-size: 14px;
  border: 1px solid #231815;
  letter-spacing: 6px;
  text-align: center;
  margin: 30px auto 0;
}

.cv-btn.border.viewmore::before {
  background: #231815;
}

/* footer */
footer {
  background: #060303;
}

.company_info a {
  width: 90%;
  max-width: 550px;
  padding: 60px 0 60px 0;
  margin: 0 auto;
}

.company_info a:hover {
  opacity: 0.7;
}

/* 全ページ共通 */

#content_Wrap {
  padding: 110px 0 100px;
}

.enttl {
  font-size: 22px;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 20px;
}

.ja-copy {
  font-size: 16px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.8;
  text-align: center;
}

.pagettl {
  background-size: cover;
  padding: 120px 0;
  position: relative;
}

.pagettl p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 40px;
  letter-spacing: 8px;
  text-align: center;
  color: #565555;
}

/*---------------------------
tab_横
---------------------------*/
@media only screen and (max-width: 1180px) {
}

@media only screen and (max-width: 1024px) {
  #header h1.main-logo {
    max-width: 160px;
    min-width: 160px;
    top: 15px;
    left: 20px;
  }

  header.scroll {
    height: 75px;
  }

  .sub-btn {
    top: 24px;
  }

  .sub-btn li a {
    font-size: 12px;
  }

  .openbtn {
    top: 14px;
  }
}

/*---------------------------
sp
---------------------------*/
@media only screen and (max-width: 820px) {
  #header h1.main-logo {
    max-width: 140px;
    min-width: 140px;
    top: 12px;
    left: 15px;
  }

  #g-nav ul.g-nav-flex li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }

  #g-nav ul.g-nav-flex li a {
    font-size: 14px;
    padding: 20px 10px;
  }

  #g-nav ul.g-nav-flex li a::before {
    right: 5px;
  }

  #g-nav ul.g-nav-flex {
    justify-content: flex-start;
    padding: 0 0 120px 0;
    top: 80px;
    transform: translateX(-50%);
  }

  #g-nav ul.g-nav-flex li:nth-of-type(2n) {
    margin-right: 0;
  }

  #g-nav ul.g-nav-flex li:nth-of-type(n + 3) {
    margin-top: 20px;
  }

  #g-nav ul.g-nav-flex li:nth-of-type(9) {
    margin-left: 0;
  }

  #g-nav ul.g-nav-flex li:nth-of-type(10) {
    margin-right: 0;
  }

  #g-nav ul.g-nav-flex li.cv-link {
    margin-right: 0;
    margin-top: 40px;
  }

  #g-nav ul.g-nav-flex li.cv-link .cv-link-flex li {
    width: 100%;
  }

  #g-nav ul.g-nav-flex li.cv-link .cv-link-flex li.request-link {
    margin-right: 0;
  }

  #g-nav ul.g-nav-flex li.cv-link .cv-link-flex li.reserve-link {
    margin-top: 20px;
  }

  .openbtn {
    top: 9px;
    right: 10px;
  }

  .sub-btn {
    display: none;
  }

  header.scroll {
    height: 62px;
  }

  /* company_Area */
  .company_Area {
    margin: 40px auto;
  }

  /* sp_bottom_nav */
  .sp_bottom_nav {
    /* display: block; */
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
  }

  .sp_bottom_nav ul li {
    /* width: calc(100% / 4); */
    width: calc(100% / 3);
    position: relative;
  }

  .sp_bottom_nav ul li:nth-of-type(1) {
    background: #342a25;
  }

  .sp_bottom_nav ul li:nth-of-type(2) {
    background: #2d3232;
  }

  .sp_bottom_nav ul li:nth-of-type(3) {
    background: #6c6b6b;
  }

  .sp_bottom_nav ul li:nth-of-type(4) {
    background: #a38c4f;
  }

  .sp_bottom_nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 11px;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }

  .sp_bottom_nav ul li a span {
    width: 100%;
    font-feature-settings: "palt" 1;
    letter-spacing: 1px;
  }

  .sp_bottom_nav ul li a span::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto 5px;
  }

  .sp_bottom_nav ul li.map a span::before {
    background: url(../img/icon-map.svg) no-repeat;
    background-size: contain;
  }

  .sp_bottom_nav ul li.tel a span::before {
    background: url(../img/icon-tel.svg) no-repeat center top;
    background-size: contain;
  }

  .sp_bottom_nav ul li.outline a span::before {
    background: url(../img/icon-outline.svg) no-repeat;
    background-size: contain;
    width: 26px;
    height: 24px;
  }

  .sp_bottom_nav ul li.request a span::before {
    background: url(../img/icon-request.svg) no-repeat center center;
    background-size: contain;
  }

  .sp_bottom_nav ul li.reserve a span::before {
    background: url(../img/icon-reserve.svg) no-repeat;
    background-size: contain;
  }

  .cv-btn-area {
    padding: 40px 0;
  }

  .cv-btn {
    font-size: 18px;
    padding: 10px 0;
    margin: 20px auto 0;
  }

  .cv_bottom {
    width: 90%;
    margin: 0 auto;
  }

  .cv_bottom li {
    width: 100%;
  }

  .cv_bottom li:nth-of-type(2) {
    margin: 20px 0 0 0;
  }

  .cv_bottom li a {
    letter-spacing: 2px;
  }

  .cv-btn.border.viewmore {
    font-size: 13px;
  }

  /* 全ページ共通 */
  #content_Wrap {
    padding: 62px 0 50px 0;
  }

  .pagettl {
    margin: 0;
    padding: 50px 0;
  }

  .pagettl p {
    font-size: 20px;
  }
}

/* 来場予約非表示 */
.sub-btn li.sub-reserve {
  display: none;
}

#g-nav ul.g-nav-flex li.cv-link .cv-link-flex li.reserve-link {
  display: none;
}

.cv_bottom li:nth-of-type(2) {
  display: none;
}

.sp_bottom_nav ul li.reserve {
  display: none;
}

