@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, sup, var, b, i, dl, dt, dd,
ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif, serif, "Shippori Mincho";
  line-height: 2;
  margin: 0;
  padding: 0;
  color: #000;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}

img {
  max-width: 100%;
  height: auto;
}

rt {
  text-align: center;
}

/*---------------------------------------------------------
共通定義
---------------------------------------------------------*/
/* スマホのみ改行 */
.sp_br {
  display: none;
}

/* フェードライン */
.separate_fade {
  margin: 1.5rem 0;
  border: 0;
  height: 1.5px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

/* 波紋のボタン */
.btn_wave {
  position: relative;
  display: inline-block;
  /* background: #ffffff; */
  width: fit-content;
  height: fit-content;
  border-radius: 50%;
  color: #ffffff;
  outline: none;
  transition: all .3s;
  text-decoration: none;
}

.btn_wave:hover {
  background: #666;
}

.btn_wave::after,
.btn_wave::before {
  content: '';
  position: absolute;
  left: -25%;
  top: -25%;
  border: 1px solid #fff;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  opacity: 1;
  animation: 1s circleanime linear infinite;
}

.btn_wave::before {
  animation-delay: .5s;
}

@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* 光るボタン */
.btneffect_shining {
  position: relative;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  outline: none;
  transition: all .2s linear;
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #151515d1;
}

.btneffect_shining:hover {
  background-color: #ffffffeb;
  color: #333;
  /* border: 1px solid #fff; */
}

.btnshine {
  position: relative;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

.btnshine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
}

.btnshine:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/*---------------------------------------------------------
フェード系
---------------------------------------------------------*/
/* そのままゆっくり表示 */
.fade {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-800px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(800px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*---------------------------------------------------------
ナビゲーションメニュー
---------------------------------------------------------*/
header #g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

header .circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #000000e0;
  transform: scale(0);
  left: -50px;
  top: -50px;
  transition: all .6s;
}

header .circle-bg.circleactive {
  transform: scale(50);
}

header #g-nav-list {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

header #g-nav.panelactive #g-nav-list {
  display: block;
}

header #g-nav .header_menu {
  width: 100%;
  font-family: serif;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

header #g-nav .header_menu .header_title {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}

header #g-nav .header_menu .header_title hr {
  margin: 1rem auto 2rem;
  width: 70%;
}

header #g-nav.panelactive ul {
  opacity: 1;
}

header #g-nav.panelactive ul li {
  /* animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0; */
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header #g-nav li {
  text-align: center;
  list-style: none;
}

header #g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

header .openbtn {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

header .openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

header .openbtn span:nth-of-type(1) {
  top: 15px;
}

header .openbtn span:nth-of-type(2) {
  top: 23px;
}

header .openbtn span:nth-of-type(3) {
  top: 31px;
}

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

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

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

/* SNS */
header .sns_block {
  width: 40px;
  position: fixed;
  top: 8px;
  right: 15rem;
}

header .sns_block:hover {
  animation-name: header_sns;
  animation-duration: 0.6s;
}

@keyframes header_sns {
  50% {
    opacity: 0.5;
  }
}

/* 予約ボタン */
header .reserve_btn {
  position: fixed;
  top: 0;
  right: 0;
  font-family: serif;
}

/*---------------------------------------------------------
TOPページ
---------------------------------------------------------*/
/* メインビジュアル */
#TOP .visual {
  position: fixed;
  top: 0;
  left: 0;
  width: 101%;
  height: 101vh;
  z-index: -1;
  /* ← 背面に送る */
  overflow: hidden;
}

#TOP .visual video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: blur(0.5px) brightness(1);
}

#TOP .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 0 1rem;
  font-family: math;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: opacity 0.5s ease;
}

#TOP .overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

#TOP .overlay h1 {
  font-size: 3rem;
  letter-spacing: 0.5rem;
}

#TOP .overlay p {
  font-size: 1.5rem;
}

/* 下のコンテンツエリア */
#TOP .content {
  margin-top: 100vh;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    /* rgba(0, 0, 0, 0.5) 40%, */
    rgba(0, 0, 0, 0.8) 50%,
    /* rgba(0, 0, 0, 0.5) 60%, */
    rgba(0, 0, 0, 0) 100%);
  padding: 20rem 0;
}

/*---------------------------------------------------------
概要
---------------------------------------------------------*/
#TOP .container_about {
  max-width: 1000px;
  margin: 0 auto 5rem;
}

#TOP .container_about .title {
  margin-top: 2rem;
  font-size: 2rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-family: serif;
  font-weight: 500;
}

#TOP .container_about .contents_wrap {
  display: flex;
  justify-content: space-between;
}

#TOP .container_about .contents_wrap .contents_img {
  padding: 5rem 0;
  width: 40%;
  height: 550px;
}

#TOP .container_about .contents_wrap .contents_img img {
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: 25% 50%;
}

#TOP .container_about .contents_wrap .contents_word {
  color: #fff;
  text-align: right;
  font-family: serif;
  line-height: 2.5rem;
}

#TOP .container_about .contents_wrap .contents_word .contents_word_block {
  margin: 3rem 0;
}

#TOP .container_about .contents_wrap .btn_block {
  text-align: center;
}

/*---------------------------------------------------------
ファシリティ
---------------------------------------------------------*/
#TOP .container_facility {
  max-width: 1000px;
  margin: 5rem auto;
}

#TOP .container_facility .title {
  margin-top: 2rem;
  font-size: 2rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-family: serif;
  font-weight: 500;
  text-align: right;
}

#TOP .container_facility .contents_wrap {
  display: flex;
  justify-content: space-between;
}

#TOP .container_facility .contents_wrap .contents_img {
  padding: 5rem 0;
  width: 40%;
  height: 550px;
}

#TOP .container_facility .contents_wrap .contents_img img {
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: 90% 50%;
}

#TOP .container_facility .contents_wrap .contents_word {
  color: #fff;
  font-family: serif;
  line-height: 2.5rem;
}

#TOP .container_facility .contents_wrap .contents_word .contents_word_block {
  margin: 3rem 0;
}

#TOP .container_facility .contents_wrap .btn_block {
  text-align: center;
}

/*---------------------------------------------------------
ご案内
---------------------------------------------------------*/
#INFO .page_wrap {}

#INFO .page_wrap .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#INFO .page_wrap .title_wrap .page_title {
  font-family: serif;
  font-weight: 100;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

#INFO .page_wrap .title_wrap .page_title h1 {
  font-size: 2rem;
  font-family: serif;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #3f3d3d;
}

#INFO .page_wrap .title_wrap .page_title p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5d5d5d38;
  font-size: 5rem;
}

#INFO .page_wrap .title_wrap .page_img {
  width: 50%;
}

#INFO .page_wrap .title_wrap .page_img img {
  height: 100vh;
  width: fit-content;
  margin: 0 auto;
  display: block;
}

#INFO .page_wrap .contents_info {
  background-color: #ece7de;
  margin: -5rem 0 0 0;
  font-family: serif;
}

#INFO .page_wrap .contents_info .contents_wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
}

#INFO .page_wrap .contents_info .contents_wrap:first-child {
  padding: 10rem 0 5rem;
}

#INFO .page_wrap .contents_info .contents_wrap:last-child {
  padding: 5rem 0 10rem;
}

#INFO .page_wrap .contents_info .contents_wrap .contents_tltle h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2a1806;
  width: 200px;
}

#INFO .page_wrap .contents_info .contents_wrap .contents_tbl {
  width: 100%;
}

#INFO .page_wrap .contents_info .contents_wrap .tbl_row {
  display: flex;
  padding: 1rem 0;
  border-top: 1px solid #999;
}

#INFO .page_wrap .contents_info .contents_wrap .tbl_row .tbl_head {
  width: 30%;
  color: #827968;
}

#INFO .page_wrap .contents_info .contents_wrap .tbl_row .tbl_body {
  width: 70%;
}

/*---------------------------------------------------------
フッター
---------------------------------------------------------*/
#FOOTER {
  background-color: #000;
  padding: 5rem 0 3rem;
  color: #fff;
  text-align: center;
  line-height: 2rem;
}

#FOOTER .footer_contactarea {
  display: flex;
  justify-content: center;
}

#FOOTER .footer_contactarea p {
  margin: 0 0.5rem;
}

#FOOTER a {
  color: #fff;
}
