@charset "UTF-8";
/* ========================================================================================================
COMMON
======================================================================================================== */

html {
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  line-height: 1.5;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  background: #0a0a0a;
  color: #fff;
  letter-spacing: 0.05rem;
  word-break: break-all;
}

body {
  height: 150px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

body::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

::selection {
  background: #c27327;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

body {
  opacity: 0;
  overflow: hidden;
  /* transition: opacity .6s ease .5s; */
}

body.onload {
  opacity: 1;
  overflow: auto;
}

body.menu-open {
  overflow: hidden;
}

img[src$=".svg"] {
  width: auto;
  height: auto;
}

svg {
  width: auto;
  height: auto;
  overflow: hidden;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -ms-interpolation-mode: bicubic;
}

h1 {
}

h2 {
}

h3 {
  font-size: 40px;
  line-height: 1;
}

h4 {
  font-size: 20px;
  line-height: 1;
}

h5 {
}

.max-w {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
}

.sec-inner {
  padding: 160px 0px;
}

.sec-wrap {
}

.sec-tit {
  text-align: center;
  margin-bottom: 20px;
}

.sec-tit h3 {
  margin-bottom: 5px;
}

.sec-tit h4 {
}

.btn {
  margin: 20px 0px;
  display: block;
  width: 100%;
}

.btn a {
  border: solid 1px #fff;
  padding: 20px;
  font-size: 14px;
  max-width: 520px;
  display: block;
  text-align: center;
  width: 100%;
  margin: auto;
  font-weight: bold;
  transition: all 0.3s ease 0s;
}

.btn a:hover {
  background-color: #fff;
  color: #000;
}

.din {
  font-family: din-condensed, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.slidein,
#full-menu .site-menu ul li h3,
#full-menu .site-menu ul li p {
  overflow: hidden;
}

.slidein span,
#full-menu .site-menu ul li span {
  display: block;
  transform: translate(0, 105%);
  transition: transform 0.8s ease 0.2s;
}

.slidein.scrollin span,
#full-menu.menu-open .site-menu ul li span {
  transform: translate(0, 0%);
}

.fadein {
  opacity: 0;
  /* transform: translate(0, 5%); */
  transition: all 1s ease 0.3s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0%);
}

/* ========================================================================================================
HEADER
======================================================================================================== */

header {
  position: fixed;
  z-index: 999;
  width: 100%;

}
.home header {
    transform: translate(0px, -50%);
  transition: all 1s ease 2s;
  opacity: 0;
}
body.home.onload header {
  transform: translate(0px, 0%);
  opacity: 1;
}

header .wrap {
  height: 80px;
  width: 100%;
}

header .inner {
  padding: 10px 40px;
  height: 100%;
}

header .flex {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
}

header .menu-wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

header .humb-menu {
}

header .humb {
  width: 60px;
  height: 100%;
  display: flex;
  position: relative;
  cursor: pointer;
}

header .humb:hover span,
body.menu-open header .humb-menu span {
  background-color: #c27327;
}

header .humb span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease 0s;
}

header .humb span:nth-child(1) {
  bottom: 6px;
  transform-origin: center;
}

header .humb span:nth-child(2) {
  top: 6px;
  transform-origin: center;
}

header .humb-menu span:nth-of-type(1) {
  animation: btn07-bar01 0.6s forwards;
}

@keyframes btn07-bar01 {
  0% {
    transform: translateY(3px) rotate(20deg);
  }
  50% {
    transform: translateY(3px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

header .humb-menu span:nth-of-type(2) {
  opacity: 1;
  transition: all 0.3s ease 0s;
}

header .humb-menu span:nth-of-type(3) {
  animation: btn07-bar03 0.6s forwards;
}

header .humb-menu span:nth-of-type(1) {
  animation: btn07-bar01 0.6s forwards;
}

@keyframes btn07-bar01 {
  0% {
    transform: translateY(3px) rotate(20deg);
  }
  50% {
    transform: translateY(3px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

header .humb-menu span:nth-of-type(2) {
  animation: btn07-bar03 0.6s forwards;
}

@keyframes btn07-bar03 {
  0% {
    transform: translateY(-3px) rotate(-20deg);
  }
  50% {
    transform: translateY(-3px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

body.menu-open header .humb-menu span:nth-of-type(1) {
  animation: active-btn07-bar01 0.6s forwards;
}

@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(3px) rotate(0);
  }
  100% {
    transform: translateY(3px) rotate(20deg);
  }
}

body.menu-open header .humb-menu span:nth-of-type(2) {
  animation: active-btn07-bar03 0.6s forwards;
}

@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-3px) rotate(0);
  }
  100% {
    transform: translateY(-3px) rotate(-20deg);
  }
}

header .humb-menu .menu-btn span:nth-child(2) {
  transform-origin: left;
}

header .site-menu {
  opacity: 1;
  transition: opacity 0.3s ease 1s;
}

header.menu-open .site-menu {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

header .site-menu ul {
  display: flex;
  height: 100%;
  align-items: center;
}

header .site-menu ul li {
  margin-right: 20px;
}

header .site-menu ul li a {
  display: block;
  position: relative;
}

header .site-menu h3 {
  font-size: 16px;
}

header .site-menu ul li a:after,
#full-menu .site-menu ul li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #c27327;
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform 0.35s;
  transform-origin: top right;
}

header .site-menu ul li a:hover:after,
#full-menu .site-menu ul li a:hover:after {
  transform: scale(1, 1);
  transform-origin: top left;
}

/* ========================================================================================================
FULL-MENU
======================================================================================================== */

#full-menu {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  background-color: #000000;
  /* transform: translateY(-100%); */
  transition: transform 0.6s ease 0.6s;
  display: flex;
  align-items: center;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  display: none;
}

#full-menu::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

#full-menu .none {
  display: none;
}

#full-menu.menu-open {
  /* transform: translateY(0%); */
  /* transition: transform .6s ease 0s; */
}

#full-menu .wrap {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 680px;
}

#full-menu .inner {
  /* padding: 100px 0px; */
}

#full-menu .site-menu {
}

#full-menu .site-menu ul {
}

#full-menu .site-menu ul li {
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0;
  transition: all 0.3s ease 0s;
  margin-bottom: 20px;
  display: block;
  /* border-bottom: solid 1px #000; */
  /* padding-bottom: 8px; */
  text-align: center;
}

#full-menu .site-menu ul li a {
  display: inline-block;
  position: relative;
}

#full-menu .site-menu ul li span {
}

#full-menu .site-menu ul li span.sp {
  display: none;
}

#full-menu.menu-open .site-menu ul li span {
  transition-delay: 1s;
}

#full-menu.menu-open .site-menu ul li {
  opacity: 1;
  transition: all 0.5s ease 1s;
  /* border-bottom: solid 1px #333; */
}

#full-menu .site-menu ul li p {
  font-size: 16px;
  font-weight: 600;
}

#full-menu .site-menu ul li p span {
  line-height: 2;
}

#full-menu .site-menu ul li h3 {
  font-size: 40px;
}

#full-menu .site-menu ul li.sns {
  /* margin-bottom: 0px; */
  margin-top: 40px;
}

#full-menu .site-menu ul li.sns h3 {
  font-size: 34px;
}

#full-menu .site-menu ul li.sns a {
  padding: 0 20px;
  transition: all 0.3s ease 0s;
}

#full-menu .site-menu ul li.sns a:after {
  content: none;
}

#full-menu .site-menu ul li.sns a:nth-child(1) {
  border-right: solid 1px #333;
}

#full-menu .site-menu ul li.sns a.ig:hover,
footer .sns ul li.ig a:hover {
  color: #e23565;
}

#full-menu .site-menu ul li.sns a.fb:hover,
footer .sns ul li.fb a:hover {
  color: #3b5998;
}

/* ========================================================================================================
TOP-FV-SEC
======================================================================================================== */

#top-fv-sec {
}

#top-fv-sec .wrap {
  height: 100vh;
  width: 100%;
  position: relative;
  min-height: 480px;
}

#top-fv-sec .inner {
  height: 100%;
  width: 100%;
  /* padding: 40px; */
}

#top-fv-sec .area {
  height: 100%;
  position: relative;
  width: 100%;
}

#top-fv-sec .swiper-container {
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease 0s;
}

body.onload #top-fv-sec .swiper-container {
  opacity: 0.4;
}

#top-fv-sec .swiper-wrapper {
  height: 100%;
}

#top-fv-sec .swiper-slide {
}

#top-fv-sec .thumb {
  height: 100%;
  width: 100%;
  background: center / cover no-repeat;
}

#top-fv-sec .contents {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.onload #top-fv-sec .contents .logo {
  opacity: 1;
}

#top-fv-sec .contents-inner {
  padding-bottom: 20px;
}

#top-fv-sec .contents .logo {
  text-align: center;
  margin: 30px 0px 30px;
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}

h1.logo {
}

#top-fv-sec .contents .logo img {
  width: 100px;
}

#top-fv-sec .text {
  text-align: center;
  /* position: absolute; */
}

#top-fv-sec .text h2 {
  font-size: 50px;
  font-weight: 500;
  overflow: hidden;
  display: block;
  margin-bottom: 5px;
}

#top-fv-sec .text h2 span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.2, 0.6, 0.4, 1) 0.8s 1.8s;
}

body.onload #top-fv-sec .text h2 span {
  transform: translate(0, 0%);
}

#top-fv-sec .text h3 {
  font-size: 52px;
  font-weight: 500;
  overflow: hidden;
  display: block;
  margin-bottom: 5px;
}

#top-fv-sec .text h3:nth-child(2) {
  margin-bottom: 10px;
}

#top-fv-sec .text h3 span {
  display: block;
  transform: translate(0, 105%);
  transition: transform ease 1s 1s;
}

body.onload #top-fv-sec .text h3 span {
  transform: translate(0, 0%);
}

#top-fv-sec .text h4 {
  font-size: 30px;
  font-weight: 500;
  overflow: hidden;
  display: block;
  margin-bottom: 0px;
}

#top-fv-sec .text h4 span {
  display: block;
  transform: translate(0, 105%);
  transition: transform 1s ease 1s;
}

body.onload #top-fv-sec .text h4 span {
  transform: translate(0, 0%);
}

.scrolldown {
  width: 1px;
  bottom: -50px;
  height: 100px;
  margin: 0px auto 0;
  background-color: #333;
  position: absolute;
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease 3s;
}

.scrolldown::before {
  content: "";
  width: 1px;
  height: 100px;
  margin: 50px auto 0;
  background-color: #fff;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 3s ease 0s infinite normal;
  animation: arrow 3s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

body.onload .scrolldown {
  opacity: 1;
}

/* ========================================================================================================
TOP-READ-SEC
======================================================================================================== */

#top-read-sec {
  background-color: #0a0a0a;
  position: relative;
  z-index: 1;
}

#top-read-sec .sec-wrap {
}

#top-read-sec .sec-inner {
  padding-bottom: 0px;
}

#top-read-sec .contents {
}

#top-read-sec .contents .text {
  /* display: flex; */
  justify-content: space-between;
}

#top-read-sec .contents .text .jp {
  /* width: calc(50% - 10px); */
  margin-bottom: 40px;
  text-align: center;
}

#top-read-sec .contents .text .jp h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}

#top-read-sec .contents .text .jp h3 .sp_block {
  display: none;
}

#top-read-sec .contents .text .jp p {
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

#top-read-sec .contents .text .en {
  /* width: calc(50% - 10px); */
  text-align: center;
}

#top-read-sec .contents .text .en h3 {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

#top-read-sec .contents .text .en p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

#top-read-sec .contents .text .jp p:last-child,
#top-read-sec .contents .text .en p:last-child {
  margin-bottom: 0;
}

/* ========================================================================================================
TOP-INFO-SEC
======================================================================================================== */

#top-info-sec {
  z-index: 1;
  background-color: #0a0a0a;
  position: relative;
}

#top-info-sec .sec-wrap {
}

#top-info-sec .sec-inner {
  padding-bottom: 0px;
}

#top-info-sec .box {
  border: solid 1px #333;
  padding: 60px 40px;
}

#top-info-sec .box table {
  margin: auto;
  max-width: 490px;
  display: block;
  /* margin-bottom: 20px; */
}

#top-info-sec .box table tbody {
  display: block;
}

#top-info-sec .box table tr {
  text-align: left;
  margin-bottom: 40px;
  display: block;
  border-bottom: solid 1px #212121;
  padding-bottom: 30px;
}

#top-info-sec .box table tr:last-child {
  margin-bottom: 0px;
  border-bottom: unset;
  padding-bottom: 0px;
}

#top-info-sec .box table td {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 300;
}

#top-info-sec .box table td .cap {
  font-size: 11px;
  line-height: 1.5;
  margin-top: 15px;
}

#top-info-sec .box table th {
  font-size: 18px;
  width: 160px;
  letter-spacing: 1px;
  font-weight: 400;
}

#top-info-sec .box table tr.op-hours {
}

#top-info-sec .box table tr.op-hours .cont0 {
  margin-bottom: 5px;
}

#top-info-sec .box table tr.op-hours p {
  display: inline-block;
}

#top-info-sec .box table tr.op-hours .cont01 {
  margin-bottom: 9px;
}

#top-info-sec .box table tr.op-hours .cont01 .hour {
  margin-left: 37px;
}

#top-info-sec .box table tr.op-hours .cont02 .hour {
  margin-left: 13px;
}

#top-info-sec .box table tr.contact {
}

#top-info-sec .box table tr td a {
  /* text-decoration: underline; */
  /* margin-bottom: 20px; */
  display: inline-block;
  border-bottom: solid 1px #fff;
  padding-block: 2px;
}

#top-info-sec .box table tr.contact td p {
  display: inline-block;
}

#top-info-sec .box table tr.contact .cont01 {
  margin-bottom: 10px;
}

#top-info-sec .box table tr.contact .cont01 a {
  margin-left: 30px;
}

#top-info-sec .box table tr.contact .cont02 a {
  margin-left: 20px;
  margin-bottom: 0px;
}

#top-info-sec .box table tr.tel {
}

#top-info-sec .box table tr.tel td a {
  text-decoration: underline;
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
}

#top-info-sec .box table tr.tel td p {
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
}

#top-info-sec .box table tr.tel td p.cont01 {
  font-size: 14px;
  /* font-weight: bold; */
}

#top-info-sec .box table tr.tel td p.cont01 span {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 300;
}

#top-info-sec .box table tr.tel td p.cont02 {
  font-size: 16px;
}

#top-info-sec .box table tr.tel td p.cont03 {
  font-size: 12px;
}

#top-info-sec .box table tr.tel td p.cont03 span {
  line-height: 1.5;
  display: block;
}

#top-info-sec .box table tr.mail {
  border-bottom: unset;
}

#top-info-sec .box table tr.mail p {
  line-height: 1.5;
}

#top-info-sec .box table tr.mail a {
  text-decoration: underline;
  margin-bottom: 10px;
}

#top-info-sec .box table tr.mail span {
  font-size: 12px;
  display: block;
  line-height: 1.5;
}

#top-info-sec .box table tr a {
  display: inline-block;
  transition: all 0.3s ease 0s;
}

#top-info-sec .box table tr a:hover {
  color: #c27327;
  border-color: #c27327;
}

#top-info-sec .box table tr.credit td {
  font-size: 16px;
}

#top-info-sec .box table tr.credit td .en {
  margin-left: 10px;
  font-size: 14px;
}

/* ========================================================================================================
TOP-GALLERY-SEC
======================================================================================================== */

#top-gallery-sec {
  position: relative;
  z-index: 0;
  background-color: #0a0a0a;
}

#top-gallery-sec .area {
  height: 100%;
  position: relative;
  padding-bottom: 35%;
}

#top-gallery-sec .swiper-container {
  /* height: 100%; */
  z-index: 0;
  /* opacity: 0.7; */
  position: absolute;
  top: 0;
  width: 100%;
  /* height: 100%; */
  bottom: 0;
  margin: auto;
}

#top-gallery-sec .swiper-wrapper {
  height: 100%;
}

#top-gallery-sec .swiper-slide {
  padding-bottom: 35%;
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
}

#top-gallery-sec .thumb {
  height: 100%;
  width: 100%;
  background: center / cover no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* ========================================================================================================
top-menu-sec
======================================================================================================== */

#top-menu-sec {
  background-color: #0a0a0a;
}

#top-menu-sec .sec-inner {
  /* padding-top: 0px; */
  padding-bottom: 0px;
}

#top-menu-sec .contents {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #000; */
}

#top-menu-sec .contents .box {
  width: 50%;
  position: relative;
  height: 100%;
  /* display: block; */
  /* overflow: hidden; */
}

#top-menu-sec .contents .box-wrap {
  padding-bottom: 56.25%;
  display: block;
  overflow: hidden;
  position: relative;
}

#top-menu-sec .contents .box .box-inner {
  position: absolute;
  z-index: 2;
  margin-bottom: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 0px;
}

#top-menu-sec .contents .box .thumb-wrap {
  padding-bottom: 56.25%;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  display: block;
  width: 100%;
}

#top-menu-sec .contents .box .thumb {
  height: 100%;
  width: 100%;
  background: center / cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.6;
  transform-origin: center;
  will-change: contents;
  transition: all cubic-bezier(0.2, 0.6, 0.4, 1) 0.5s;
}

#top-menu-sec .contents .box:hover .thumb {
  transform: scale(1.04);
  transition: all cubic-bezier(0.2, 0.6, 0.4, 1) 0.5s;
  transform-origin: center;
  opacity: 0.3;
}

#top-menu-sec .contents .box .box-inner h3 {
  font-size: 42px;
  margin: 30px 0px 10px;
}

#top-menu-sec .contents .box .box-inner p {
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
}

#top-menu-sec .contents .box .box-inner p span {
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.2, 0.6, 0.4, 1) 0.5s;
  display: block;
  font-weight: 400;
  font-size: 16px;
}

#top-menu-sec .contents .box:hover .box-inner p span {
  transform: translate(0, 0%);
}

/* ========================================================================================================
TOP-RESERVATION-SEC
======================================================================================================== */

#top-reservation-sec {
}

#top-reservation-sec .sec-inner {
  padding-bottom: 0px;
}

#top-reservation-sec .box {
  display: block;
  padding: 130px 20px;
  text-align: center;
  position: relative;
}

#top-reservation-sec .box:hover .thumb {
  transform: scale(1.04);
  transition: all cubic-bezier(0.2, 0.6, 0.4, 1) 0.5s;
  transform-origin: center;
  opacity: 0.3;
}

#top-reservation-sec .box:hover p span {
  transform: translate(0, 0%);
}

#top-reservation-sec .box h3 {
  margin: 30px 0px 10px;
}

#top-reservation-sec .box p {
  /* font-size: 16px; */
  /* font-weight: bold; */
}

#top-reservation-sec .box p span {
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.2, 0.6, 0.4, 1) 0.5s;
  display: block;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
}

#top-reservation-sec .thumb-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

#top-reservation-sec .thumb-wrap .thumb {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center;
  will-change: contents;
  transition: all cubic-bezier(0.2, 0.6, 0.4, 1) 0.5s;
}

#top-reservation-sec.plan .sec-inner {
  padding-top: 60px;
}

/* ========================================================================================================
TOP-ACCESS-SEC
======================================================================================================== */

#top-access-sec {
  background-color: #0a0a0a;
}

#top-access-sec .sec-inner {
  padding-bottom: 0px;
  /* padding-top: 0; */
}

#top-access-sec .contents {
}

#top-access-sec .text-wrap {
}

#top-access-sec table {
  margin: auto;
  display: block;
}

#top-access-sec table tbody {
  display: block;
}

#top-access-sec table th {
  font-size: 16px;
  width: 120px;
  text-align: left;
}

#top-access-sec table th p {
}

#top-access-sec table th .en {
  display: block;
  font-weight: 400;
}

#top-access-sec table td {
  width: 100%;
  display: block;
}

#top-access-sec table td p {
  font-size: 14px;
  line-height: 1.8;
}

#top-access-sec table td .en {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

#top-access-sec table tr {
  text-align: left;
  margin-bottom: 16px;
  display: block;
  /* border-bottom: solid 1px #333; */
  /* padding-bottom: 16px; */
}

#top-access-sec table tr:last-child {
  margin-bottom: 0px;
}

#top-access-sec table tr.location {
  text-align: center;
}

#top-access-sec table tr.transport {
}

#top-access-sec table tr.transport p {
}

#top-access-sec .map-wrap {
  padding-bottom: 45%;
  position: relative;
  margin-bottom: 20px;
  position: relative;
}
#top-access-sec .map-wrap iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: grayscale(1);
}

#gmap {
  width: 100%;
  height: 100%;
  position: absolute !important;
}

/* ========================================================================================================
TOP-INSTA-SEC
======================================================================================================== */

#top-insta-sec {
  background-color: #0a0a0a;
}

#top-insta-sec .sec-wrap {
  /* padding: 0 40px; */
}

#top-insta-sec .sec-inner {
  /* padding: 0px; */
  /* padding-top: 0px; */
  padding-bottom: 100px;
}

#top-insta-sec .sp {
  display: none;
}

#top-insta-sec #sb_instagram #sbi_images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#top-insta-sec #sb_instagram.sbi_col_1 #sbi_images .sbi_item {
  width: calc(25% - 10px * 3 / 4);
  /* width: calc(16.666% - 4px*3/4); */
  margin-bottom: 10px !important;
  transition: opacity 0.3s ease 0s;
}

#top-insta-sec #sb_instagram.sbi_col_1 #sbi_images .sbi_item:hover {
  opacity: 0.5;
}

#top-insta-sec #sb_instagram .sbi_type_carousel .fa-clone {
  font-size: 12px;
  opacity: 0;
}

/* ========================================================================================================
FOOTER
======================================================================================================== */

footer {
  background-color: #000;
}

footer .inner {
  padding: 80px 40px 30px;
}

footer .wrap {
}

footer .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

footer .flex .right {
  width: 50px;
}

footer .flex .right a {
  display: block;
  transition: opacity 0.3s ease 0s;
}

footer .flex .right a:hover {
  opacity: 0.5;
}

footer .flex .left {
}

footer .site-menu {
  margin-bottom: 20px;
}

footer .site-menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

footer .site-menu ul li {
  margin-right: 20px;
}

footer .site-menu ul li a {
  position: relative;
  display: block;
}

footer .site-menu ul li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #c27327;
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform 0.35s;
  transform-origin: top right;
}

footer .site-menu ul li a:hover:after {
  transform: scale(1, 1);
  transform-origin: top left;
}

footer .site-menu ul li h3 {
  font-size: 16px;
}

footer .sns ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

footer .sns ul li {
  margin-right: 20px;
}

footer .sns ul li a {
  display: block;
  transition: all 0.3s ease 0s;
}

footer .sns ul li h3 {
  font-size: 16px;
}

footer .copy {
  font-size: 12px;
  opacity: 0.5;
}

#top-info-sec.equipment {
}

#top-info-sec.equipment .box table th {
  width: 200px;
}

#top-info-sec.equipment .contents:nth-child(1) .box {
  margin-bottom: 100px;
}

#top-menu-sec.bottle_menu_page {
}

#top-menu-sec.bottle_menu_page .sec-inner {
  padding: 0px;
}

#top-menu-sec.bottle_menu_page.one .contents .box {
  width: 100%;
}
#top-menu-sec.bottle_menu_page.two .contents .box {
  width: 50%;
}
#top-menu-sec.bottle_menu_page.three .contents .box {
  width: calc(100% / 3);
}

#top-menu-sec.bottle_menu_page .contents .box-wrap,
#top-menu-sec.bottle_menu_page .contents .box .thumb-wrap {
  padding-bottom: 100vh;
}

#space-rental__page {overflow: hidden;}
#space-rental__page #fv-sec .wrap{
  margin-bottom: 180px;
}
#space-rental__page #fv-sec .inner {
  height: 100%;
}
#space-rental__page #fv-sec .area__wrap {
  height: 100%;
  width: 100%;
  display: flex;
}
#space-rental__page #fv-sec .area__wrap .text__area,
#space-rental__page #fv-sec .area__wrap .img__area {
  width: 50%;
  /* overflow: hidden; */
}
#space-rental__page #fv-sec .area__wrap .text__area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#space-rental__page #fv-sec .area__wrap .text__area .text__wrap {
  width: 80%;
  margin: auto;
}
#space-rental__page #fv-sec .area__wrap .img__wrap{
  position: absolute;
  opacity: 0.05;
  width: 60vw;
  bottom: 0%;
  left: 5%;
  opacity: 0;
  transition: opacity 1s ease 1s;
}

#space-rental__page #fv-sec .area__wrap .text__area .text__wrap h3 {
  margin-bottom: 20px;
  font-size: 60px;
}
#space-rental__page #fv-sec .area__wrap .text__area .text__wrap p {
  font-size: 18px;
  font-weight: bold;
}
#space-rental__page #fv-sec .area__wrap .text__area .text__wrap p span{
  line-height: 1.5;
}
#space-rental__page #fv-sec .area__wrap .img__area .swiper-container {
  height: 100%;
  width: 100%;
}
#space-rental__page #fv-sec .area__wrap .img__area .thumb {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
  transition: transform 9s ease;
}
#space-rental__page #fv-sec .area__wrap .img__area .swiper-slide-active .thumb{transform: scale(1);}

#space-rental__page #plan-sec {
}
#space-rental__page #plan-sec .inner {
  padding: 0px 8% 200px;
}
#space-rental__page #plan-sec .group {margin-bottom: 130px;}
#space-rental__page #plan-sec .group .group__inner {
  display: flex;
  align-items: center;
}
#space-rental__page #plan-sec .group.plan-c {
    margin-bottom: 0;
}
#space-rental__page #plan-sec .group.plan-b .group__inner {
flex-direction: row-reverse;
}
#space-rental__page #plan-sec .group.plan-b .text__area{
  padding-right: 80px;
  padding-left: 0;
}
#space-rental__page #plan-sec .group .thumb__area {
  width: 65%;

}
#space-rental__page #plan-sec .group .thumb__area .thumb__wrap {
  padding-bottom: 66.666%;
  position: relative;
  overflow: hidden;
}
#space-rental__page #plan-sec .group .thumb__area .thumb{
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(1.01);
}
#space-rental__page #plan-sec .group .text__area {
  width: 35%;
  padding-left: 81px;
  padding-right: 0;
}
#space-rental__page #plan-sec .group .text__area .heading{margin-bottom: 20px;}
#space-rental__page #plan-sec .group .text__area .heading h3{
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
#space-rental__page #plan-sec .group .text__area .heading h3::before{
  content:
  "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #c27327;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease .8s;
}
#space-rental__page #plan-sec .group .text__area.scrollin .heading h3::before{
  transform: scaleX(1);
}
#space-rental__page #plan-sec .group .text__area .heading p{
    font-size: 18px;
    font-weight: bold;
}

#space-rental__page #plan-sec .group .text__area .price{margin-bottom: 40px;}
#space-rental__page #plan-sec .group .text__area .price h4{
    font-size: 30px;
}
#space-rental__page #plan-sec .group .text__area .price h4 span{
    font-size: 16px;
    font-weight: bold;
    padding-right: 10px;
}
#space-rental__page #plan-sec .group .text__area .price h4 span.small {
    margin-left: 5px;
    font-size: 12px;
  }
#space-rental__page #plan-sec .group .text__area .viewmore{}
#space-rental__page #plan-sec .group .text__area .viewmore a{
    font-size: 18px;
    display: flex;
    padding: 20px 0px;
    transition: color .3s;
    align-items: center;
}
#space-rental__page #plan-sec .group .text__area .viewmore a svg{
  width: 7px;
  fill: #fff;
  margin-left: 14px;
     transition: fill .3s;
}
#space-rental__page #plan-sec .group .text__area .viewmore a:hover{
  color: #c27327;
}
#space-rental__page #plan-sec .group .text__area .viewmore a:hover svg{
  fill:#c27327;
}
#space-rental__page #rental-sec{

}
#space-rental__page #rental-sec .inner{padding: 0 5% 220px;}

#space-rental__page #rental-sec .thumb__wrap{
    padding-bottom: 30%;
    position: relative;
    overflow: hidden;
}
#space-rental__page #rental-sec .text__area{
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}
#space-rental__page #rental-sec .detail{
  text-align: center;
  padding: 0 20px;
}
#space-rental__page #rental-sec .detail p{
    font-size: 14px;
    font-weight: 600;
}
#space-rental__page #rental-sec .detail h5{
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}
#space-rental__page #rental-sec  .btn{
  text-align: center;
  margin-bottom: 0;
}
#space-rental__page #rental-sec  .btn a{background-color: #c27328;width: auto;display: inline-block;border: unset;padding: 20px 40px;}
#space-rental__page #rental-sec  .btn a:hover{
    opacity: 0.5;
    color: #fff;
}
#space-rental__page #rental-sec .text__area .heading{
  margin-bottom: 20px;
  text-align: center;
}
#space-rental__page #rental-sec .text__area .heading h3{margin-bottom: 10px;}
#space-rental__page #rental-sec .text__area .heading  p{font-size: 16px;font-weight: bold;}
#space-rental__page #rental-sec .text__area .viewmore p{
  font-size: 18px;
}
#space-rental__page #rental-sec .thumb__area{
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
    transition: opacity .3s;
}
#space-rental__page #rental-sec .thumb__area .thumb{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-position: center;
  background-size: cover;
}

#space-rental__page #gallery-sec{

}
#space-rental__page #gallery-sec .inner{
  padding: 0 0 220px;
}
#space-rental__page #gallery-sec .swiper-slide{/* padding-bottom: 66.666%; */position: relative;}
#space-rental__page #gallery-sec .thumb__wrap{
    padding-bottom: 66.666%;
    position: relative;
}
#space-rental__page #gallery-sec .swiper-slide .thumb{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-size: cover;
  background-position: center;
}
#space-rental__page #gallery-sec .swiper-container{
  padding: 0 5%;
}

#space-rental__page #floor-spec-sec{

}
#space-rental__page #floor-spec-sec .wrap{
      /* padding-bottom: 100px; */
}
#space-rental__page #floor-spec-sec .inner{

    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-top: solid 1px #725015;
    border-bottom: solid 1px #725015;
}
#space-rental__page #floor-spec-sec .sec-tit{
  margin-bottom: 60px;
}
#space-rental__page #floor-spec-sec .floor-area{
  width: 50%;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  align-items: stretch;
}
#space-rental__page #floor-spec-sec .spec-area{
  width: 50%;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  align-items: stretch;
  border-left: solid 1px #725015;
}

#space-rental__page #floor-spec-sec .spec-area .contents__wrap{
}


#space-rental__page #floor-spec-sec  .contents__wrap{
  padding: 10% 14%;
  height: 100%;
}
#space-rental__page #floor-spec-sec  .contents__wrap ul{
  margin-bottom: 10px;
}
#space-rental__page #floor-spec-sec  .contents__wrap ul li{
    font-size: 12px;
    line-height: 1.8;
}
#space-rental__page #floor-spec-sec  .contents__wrap ul .bold{
  font-weight: bold;
}
#space-rental__page #floor-spec-sec .floor-area img{

}
#space-rental__page #floor-spec-sec .floor-area ul{
    margin: auto;
    margin-top: 60px;
}
#space-rental__page #floor-spec-sec .floor-area ul li{
    font-size: 14px;
        color: #A57323;
}

#space-rental__page #top-reservation-sec .sec-inner{
  padding: 0;
}

#space-rental__page .fix-bar{position: fixed;z-index: 4;right: 0px;bottom: 40px;color: #fff;font-size: 16px;background-color: #c27328;padding: 15px 10px;/* border-radius: 5px 5px 0px 0px; */writing-mode: vertical-rl;transform: translate(50%, 0%);transition: all 1s ease 2s;opacity: 0;}
#space-rental__page .fix-bar a{

}
#space-rental__page #fv-sec .area__wrap .img__area{
  opacity:0;
  transition: opacity 1s ease 0.4s;
  overflow: hidden;
}
.onload #space-rental__page #fv-sec .area__wrap .img__area{
  opacity:1
}
.onload #space-rental__page #fv-sec .area__wrap .img__wrap{
    opacity:0.05
}
.onload #space-rental__page .fix-bar{
      transform: translate(0px, 0%);
    opacity: 1;
}
#space-rental__page .caption{
    position: absolute;
    z-index: 1;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
}
#space-rental__page #top-reservation-sec br{
    display: none;
}

#space-rental__page #form-sec{

}
#space-rental__page #form-sec .wrap{
 max-width: 600px;
 margin: auto;
 padding-bottom: 100px;
 padding-top: 100px;
}
#space-rental__page #form-sec .inner{
  padding: 0 20px;
}
#space-rental__page #form-sec .sec-tit{
margin-bottom: 60px;
}

#space-rental__page #btn-sec{

}
#space-rental__page #btn-sec .wrap{
  padding-bottom: 180px;
}
#space-rental__page #btn-sec .inner{
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
#space-rental__page #btn-sec a{
  background-color: #c27328;
  width: auto;
  display: inline-block;
  border: unset;
  padding: 25px 40px;
  font-size: 16px;
  font-weight: 600;
  width: 30%;
  text-align: center;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease 0s;
}
#space-rental__page #btn-sec a:hover{
  opacity: 0.5;
}
#space-rental__page #btn-sec a.tell P{
  position: relative;
  top: -5px;
}
#space-rental__page #btn-sec a span{
  position: absolute;
  font-size: 12px;
  left: 0;
  right: 0;
  bottom: -16px;
  margin: auto;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-color: rgb(0 0 0 / 95%);
}
.modal .caption{
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
}
.modal__wrap {
  height: 100%;
}
.modal__overlay {
  /* height: 100%; */
  /* width: 100%; */
  /* position: absolute; */
  /* z-index: 1; */
}
.modal__contents {
  height: 100%;
  width: 100%;
}
.modal__inner {
  width: 100%;
  max-width: 80vw;
  margin: auto;
  padding: 80px 40px;
  max-width: 900px;
}
.modal__movie__wrap {
  padding-bottom: 56.25%;
  position: relative;
}

.menu__close__btn {
  position: absolute;
  height: 60px;
  top: 10px;
  right: 40px;
  width: 60px;
  cursor: pointer;
  z-index: 6;
}
.menu__close__btn span {
  height: 1px;
  width: 60px;
  background-color: #c27327;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transition: transform 0.4s ease 0.3s, opacity 0.3s ease 0s, background-color 0.4s ease;
}
.menu__close__btn.js-open span{
    opacity: 1;
}
.menu__close__btn.js-open span:nth-child(1) {
  transform: rotate(20deg);
}
.menu__close__btn.js-open span:nth-child(2) {
  transform: rotate(-20deg);
}
.over-wrap-menu {
    height: 100%;
    display: flex;
    align-items: center;
    overscroll-behavior: contain;
    overflow-y: scroll;
}
.over-wrap-menu::after, .over-wrap-menu::before {
    content: "";
    width: 1px;
    height: calc(100vh + 1px);
}
.modal .main___img{
  margin-bottom: 20px;
  position: relative;
}
.modal .heading{
  margin-bottom: 20px;
}
.modal .heading h3{
    margin-bottom: 10px;
}
.modal .heading p{
    font-weight: bold;
    font-size: 16px;
}
.modal .price{
  margin-bottom: 20px;
}
.modal .price h4{

}
.modal .price h4 span{
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
}
.modal .price h4 span.small{
  margin-left: 5px;
  font-size: 12px;
}
.modal .read{
  margin: 10px 0px 40px;
}
.modal .read p{
  font-size: 14px;
  line-height: 1.8;
}
.modal .menu{
  padding: 40px;
  /* border-top: solid 1px #fff; */
  border: solid 1px #c27326;
  margin: 40px 0 0px;
}
.modal .menu h4{
  margin-bottom: 20px;
}
.modal .menu ul{

}
.modal .note{
  margin: 20px 0px 40px;
}
.modal .note p{
  line-height: 1.5;
  font-size: 10px;
}
.modal .menu ul li{
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
  font-weight: bold;
}
.modal .menu ul li::after{
  content:
  "";
  width: 2px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 10px;
}
.modal .flex__area{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal .option,
.modal .notice{
  width: 50%;
}
.modal .option h4,
.modal .notice h4{
  margin-bottom: 20px;
}
.modal .option p,
.modal .notice p{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.modal .reserve{text-align: center;margin-top: 80px;}
.modal .reserve a{
  background-color: #c27326;
  padding: 20px;
  display: block;
  transition: .3s;
}
.modal .reserve a h4{
    margin-bottom: 8px;
}
.modal .reserve a p{
  font-size: 14px;
  font-weight: bold;
}
.modal .reserve a:hover{
 background-color: #ffffff;
 color: #000;
}
@media screen and (max-width: 900px) {
  header .inner {
    padding: 10px 40px;
  }
  .max-w {
    padding: 0px 40px;
  }
  footer .inner {
    padding: 80px 40px 30px;
  }
  #top-access-sec .box {
    display: block;
  }
  #top-access-sec .box .img-wrap {
    width: 100%;
    margin-bottom: 40px;
  }
  #top-access-sec .box .text-wrap {
    width: 100%;
    padding: 0px;
  }
  #space-rental__page #fv-sec .area__wrap{flex-direction: column-reverse;}
  #space-rental__page #fv-sec .area__wrap .text__area, #space-rental__page #fv-sec .area__wrap .img__area{
    height: 50%;
    width: 100%;
    position: relative;
  }
  #space-rental__page #fv-sec .area__wrap .text__area .text__wrap{
    width: 100%;
    padding: 40px 30px;
  }
  #space-rental__page #fv-sec .wrap{
    height:100%!important;
    margin-bottom: 100px;
  }
  #space-rental__page #fv-sec .area__wrap .img__area{
    padding-bottom: 100%;
    position: relative;
  }
  #space-rental__page #fv-sec .area__wrap .img__area .swiper-container{
    width: 100%;
    height: 100%;
    position: absolute;
    top: -20%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  #space-rental__page #fv-sec .area__wrap .img__area .swiper-wrapper{
  }
  #space-rental__page #fv-sec .area__wrap .text__area .text__wrap h3{
    font-size: 40px;
  }
  #space-rental__page #fv-sec .area__wrap .img__wrap{
    bottom: -30%;
    width: 100%;
  }
  #space-rental__page #plan-sec .group .group__inner{
    display: block;
  }
  #space-rental__page #plan-sec .group .thumb__area{
    width: 100%;
    margin-bottom: 20px;
  }
  #space-rental__page #plan-sec .group .text__area{
    width: 100%;
    padding: 0;
  }
  #space-rental__page #plan-sec .group.plan-b .text__area{
       padding: 0;
  }
  #space-rental__page #plan-sec .inner {
    padding: 0px 20px 60px;
}
  #space-rental__page #plan-sec .group{
    margin-bottom: 50px;
  }
  #space-rental__page #rental-sec .thumb__wrap{
    padding-bottom: 100%;
  }
  #space-rental__page #rental-sec .thumb__area .thumb{
    transform: scale(1.5);
  }
  #space-rental__page #rental-sec .inner{
    padding-bottom: 80px;
  }
  #space-rental__page #gallery-sec .inner{
      padding-bottom: 100px;
  }
  #space-rental__page #floor-spec-sec .inner{
    display: block;
  }
  #space-rental__page #floor-spec-sec .wrap{
    padding-bottom: 40px;
  }
  #space-rental__page #floor-spec-sec .floor-area{
    width: 100%;
  }
  #space-rental__page #floor-spec-sec .contents__wrap{
    padding: 40px 40px;
  }
  #space-rental__page #floor-spec-sec .sec-tit{
    margin-bottom: 40px;
  }
  #space-rental__page #floor-spec-sec .floor-area ul{
    margin-top: 30px;
  }
  #space-rental__page #floor-spec-sec .spec-area{
        width: 100%;
        border-left: unset;
        border-top: solid 1px #725015;
  }
  #space-rental__page #plan-sec .group .text__area .price{
    margin-bottom: 20px;
  }
  #space-rental__page #plan-sec .group .text__area .heading h3{
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  #top-read-sec .contents .text .jp p {
    text-align: left;
  }
  #top-read-sec .contents .text .jp h3,
  #top-read-sec .contents .text .en h3 {
    text-align: left;
  }
  #top-read-sec .contents .text .jp p br {
    display: none;
  }
  #top-read-sec .contents .text .en p {
    text-align: left;
  }
  #top-read-sec .contents .text .en p br {
    display: none;
  }
  #top-gallery-sec .area {
    padding-bottom: 56.25%;
  }
  #top-menu-sec .contents {
    display: block;
  }
  #top-menu-sec .contents .box {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    padding: 0 20px;
  }
  #top-menu-sec .contents .box:last-child {
    margin-bottom: 0px;
  }
  #top-menu-sec .contents .box .thumb-wrap {
    padding-bottom: 70%;
  }
  #top-menu-sec .contents .box .box-inner p.slidein.scrollin span,
  #top-reservation-sec .contents .box .box-inner p.slidein.scrollin span {
    transform: translate(0, 0%);
    transition-delay: 0.5s;
  }
  #top-menu-sec .contents .box .thumb {
    opacity: 0.6;
  }
  #top-menu-sec .contents .box:hover .thumb {
    transform: scale(1);
  }
  .sec-inner {
    padding: 80px 0px;
  }
  #top-access-sec .sec-inner {
    /* padding: 60px 0px; */
  }
  #top-access-sec .contents {
    margin-top: 0px;
  }
  #top-insta-sec .pc {
    display: none;
  }
  #top-insta-sec .sp {
    display: block;
  }
  #top-menu-sec.bottle_menu_page .contents .box {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #top-menu-sec.bottle_menu_page.one .contents .box,
  #top-menu-sec.bottle_menu_page.two .contents .box,
  #top-menu-sec.bottle_menu_page.three .contents .box {
    width: 100%;
  }

  #top-menu-sec.bottle_menu_page .sec-inner {
    /* padding-top: 60px; */
  }
  #top-menu-sec.bottle_menu_page .contents .box-wrap,
  #top-menu-sec.bottle_menu_page .contents .box .thumb-wrap {
    padding-bottom: 50%;
  }
  .modal__inner{padding: 100px 20px 180px;}
  .modal .menu{
    padding: 40px 20px;
    margin-bottom: 20px;
}
  .modal .menu ul li{
    font-size: 14px;
  }
  .modal .flex__area{
    display: block;
  }
  .modal .option, .modal .notice{
    width: 100%;
  }
  .modal .option{
    margin-bottom: 20px;
  }
  .modal .reserve{
    margin-top: 40px;
  }
  .menu__close__btn{
    right: 20px;
    top: 0px;
  }
}

@media screen and (max-width: 600px) {
  header .site-menu {
    display: none;
  }
  header .menu-wrap {
    justify-content: flex-end;
  }
  footer .flex {
    display: block;
    margin-bottom: 30px;
    position: relative;
  }
  .max-w {
    padding: 0px 20px;
  }
  header .wrap {
    height: 60px;
  }
  header .inner {
    padding: 10px 20px;
  }
  header .humb {
    width: 40px;
  }
  #top-info-sec .box table tr {
    margin-bottom: 30px;
  }
  #top-info-sec .box table td .cap br {
    display: none;
  }
  #top-info-sec .box table th {
    display: block;
    font-size: 20px;
    width: 100%;
    margin-bottom: 15px;
  }
  #top-info-sec .box table td {
    display: block;
    font-size: 16px;
    line-height: 1.5;
  }
  #top-info-sec .box table tr.tel td a {
    font-size: 16px;
  }
  #top-info-sec .box table tr.tel td p.cont01 span {
    font-size: 10px;
  }
  #top-info-sec .box table tr.tel td p.cont02 {
    font-size: 14px;
  }
  #top-info-sec .box {
    padding: 40px 20px;
  }
  h3 {
    font-size: 34px;
  }
  #top-info-sec .box table tr.mail a {
    font-size: 16px;
  }
  #top-info-sec .box table tr.tel td p.cont03 {
    font-size: 10px;
  }
  #top-info-sec .box table tr.mail span {
    font-size: 10px;
  }
  #top-access-sec table th {
    display: block;
  }
  #top-access-sec table td {
    display: block;
  }
  #top-access-sec table td p {
  }
  #top-access-sec table td .en {
  }
  #top-fv-sec .text h2 {
    font-size: 10vw;
  }
  #top-fv-sec .text h3 {
    font-size: 9vw;
  }
  #top-fv-sec .text h3:nth-child(2) {
    margin-bottom: 10px;
  }
  #top-fv-sec .text h4 {
    font-size: 7vw;
  }
  #top-gallery-sec .area {
    padding-bottom: 80%;
  }
  #top-gallery-sec .swiper-slide {
    padding-bottom: 80%;
  }
  #top-menu-sec .contents .box-wrap {
    padding-bottom: 60%;
  }
  #top-menu-sec .contents .box .thumb-wrap {
    padding-bottom: 60%;
  }
  #top-menu-sec .contents .box .box-inner h3,
  #top-reservation-sec .box h3 {
    font-size: 30px;
    margin: 0px 0px 5px;
  }
  #top-access-sec .map-wrap {
    padding-bottom: 70%;
  }
  #top-read-sec .contents .text .jp {
    margin-bottom: 20px;
  }

  .jp {
  }
  #top-read-sec .contents .text .jp p {
    font-size: 13px;
    margin-bottom: 14px;
  }
  #top-insta-sec #sb_instagram.sbi_col_1 #sbi_images .sbi_item {
    width: calc(33.333% - 5px * 2 / 3);
    margin-bottom: 5px !important;
  }
  footer .inner {
    padding: 60px 20px 30px;
  }
  footer .site-menu ul {
    /* justify-content: center; */
  }
  footer .site-menu ul li {
    /* margin: auto; */
    /* text-align: center; */
    margin: 0 0px;
    width: 33%;
    margin-bottom: 20px;
  }
  footer .site-menu ul li h3 {
    font-size: 18px;
  }
  footer .sns ul {
    /* justify-content: center; */
  }
  footer .sns ul li {
    /* margin: 0 10px; */
    width: 33%;
    margin: 0;
  }
  footer .flex .right {
    width: 40px;
    position: absolute;
    bottom: 0;
    right: 0px;
  }
  footer .flex .left {
    margin-bottom: 30px;
  }
  footer .copy {
    text-align: left;
    font-size: 10px;
  }
  #top-fv-sec .contents .logo {
    margin: 30px 0px 30px;
  }
  #top-fv-sec .text h2 span {
  }
  .sec-inner {
    padding: 100px 0px;
  }
  #top-read-sec .sec-inner {
    /* padding-top: 120px; */
  }
  .sec-tit {
    /* margin-bottom: 10px; */
  }
  #full-menu .site-menu ul li h3 {
    font-size: 24px;
  }
  #full-menu .site-menu ul li p {
    font-size: 12px;
  }
  #full-menu .site-menu ul li.sns a {
    padding: -10px 40px;
  }
  #full-menu .site-menu ul li.sns h3 {
    font-size: 24px;
  }
  #full-menu .site-menu ul li.sns {
    margin-top: 30px;
    margin-bottom: 100px;
  }
  #full-menu .site-menu ul li span.pc {
    display: none;
  }
  #full-menu .site-menu ul li span.sp {
    display: block;
  }
  #top-insta-sec .sec-wrap {
    padding: 0 5px;
  }
  #top-access-sec .sec-inner {
    /* padding-bottom: 0px; */
  }
  #top-insta-sec .sec-inner {
    padding-bottom: 60px;
  }
  #full-menu {
    /* min-height: 100vh; */
  }
  #full-menu .wrap {
    padding: 0 20px;
  }
  #top-info-sec .sec-inner {
    /* padding-top: 100px; */
  }
  #top-reservation-sec .box {
    padding: 70px 20px;
  }
  #top-access-sec .max-w {
    padding: 0;
  }
  #top-read-sec .contents .text .jp h3 {
    /* text-align: center; */
    font-size: 5vw;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: -webkit-match-parent;
  }
  #top-read-sec .contents .text .jp h3 .sp_block {
    display: block;
  }
  #top-reservation-sec .box p span {
    font-size: 12px;
  }
  header {
    /* opacity: 1; */
    transform: unset;
  }
  #top-read-sec .contents .text .en h3 {
    font-size: 10px;
    margin-bottom: 5px;
    /* text-align: center; */
    /* word-break: break-word; */
    font-weight: bold;
  }
  #top-reservation-sec.plan .sec-inner {
    padding-top: 40px;
  }
  #space-rental__page #top-reservation-sec br{
    display: block;
}
  #space-rental__page #btn-sec .inner{
    display: block;
    padding: 0px 20px;
  }
  #space-rental__page #btn-sec a{
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  #space-rental__page #rental-sec .detail br{
    display: none;
  }
}

@media screen and (max-width: 320px) {
  #top-info-sec .box table td {
    font-size: 14px;
  }
}
