@charset "UTF-8";
/* Settings */
/* --- Font Properties --- */
@import url("https://fonts.googleapis.com/css2?family=Secular+One&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4em;
  font-weight: bolder;
}

/* --- Basic  --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  text-align: center;
  line-height: 1.6;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  /*overflow-x: hidden; */
}

a,
a:visited {
  color: white;
  transition: all 0.2s ease-in-out;
}

a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

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

#wrapper > section p span,
h3 span {
  display: inline-block;
  white-space: nowrap;
}

/* --- Headlines  --- */
h1 {
  width: 60vw;
  height: 100%;
  margin: auto;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../imgs/logo.png) center center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  h1 {
    width: 320px;
    height: 100%;
    margin: 0;
    transition: all 0.2s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  h1 {
    width: 420px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  h1.mobile {
    height: 100%;
  }
}

h2 {
  margin-bottom: 24px;
  font-size: 3.3em;
  padding: 0 0 16px 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 32px;
  font-size: 2.8em;
  font-weight: 900;
}

#menu h3 {
  font-size: 1.8rem;
}

h4 {
  margin-bottom: 16px;
  font-size: 2em;
  font-weight: 900;
}

h2, h3, h4 {
  font-family: "Secular One", sans-serif;
}

/* --- Containers  --- */
#wrapper {
  width: 100%;
  margin: auto;
  padding: 0 5%;
  background: black;
  position: relative;
  margin-bottom: 420px;
  top: calc(42vw + 64px);
  z-index: 5 !important;
  text-align: center;
  background: black;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #wrapper {
    margin-bottom: 320px;
  }
}
@media screen and (min-width: 768px) {
  #wrapper {
    top: 41vw;
    margin-bottom: 1800px;
  }
}
#wrapper > section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  max-width: 1024px;
}

.hr-bg {
  width: 100%;
  height: 204px;
  background: url(../imgs/hr-bg.png) center/160px no-repeat;
  display: block;
  opacity: 0.4 !important;
  border: 0;
}

.hr-sm {
  width: 100%;
  height: 204px;
  background: url(../imgs/hr-sm.png) center/16px no-repeat;
  display: block;
  opacity: 0.4 !important;
  border: 0;
}

.sticky {
  position: fixed;
  top: 0;
}

/* --- Header  --- */
header {
  width: 100vw;
  height: 64px;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header {
    height: 96px;
  }
}
header #header-inner {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  header #header-inner {
    height: 100%;
    width: 95%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  header.mobile {
    height: 64px;
  }
}

@media screen and (max-width: 767px) {
  nav {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAJ0lEQVQYV2NkQAP////3ZUQWAwswMm6GC8IEQIrAgsgCYEF0AZAgANP9E1CXVxkjAAAAAElFTkSuQmCC) repeat;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
  }
  nav.active {
    z-index: 10;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  nav.active ul li a {
    transition-delay: 0;
    transition: all 0.2s ease-in-out;
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  nav {
    width: auto;
    height: 100%;
    display: inline-block;
    position: static;
    pointer-events: auto;
    transform: none;
    z-index: 1;
    background: transparent;
  }
}
nav ul {
  line-height: 1;
  font-size: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  nav ul {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
  }
}
nav ul li {
  margin: 0;
  padding: 0 8px;
  list-style: none;
  display: block;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  nav ul li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  nav ul li:nth-of-type(1) a {
    transition-delay: 0.3s;
  }
  nav ul li:nth-of-type(2) a {
    transition-delay: 0.35s;
  }
  nav ul li:nth-of-type(3) a {
    transition-delay: 0.4s;
  }
  nav ul li:nth-of-type(4) a {
    transition-delay: 0.45s;
  }
  nav ul li:nth-of-type(5) a {
    transition-delay: 0.5s;
  }
}
nav ul li a {
  width: 100%;
  margin: 0;
  padding: 8px 0;
  font-size: 2.4rem;
  display: inline-block;
  text-align: center;
  font-weight: bolder;
  font-family: "Secular One", sans-serif;
  text-decoration: none;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  nav ul li a {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  nav ul li a {
    letter-spacing: -0.5px;
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  nav ul li a {
    padding: 0;
    font-size: 1.5rem;
    position: relative;
  }
  nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    /*テキストからの距離*/
    width: 0%;
    /*初期状態では下線非表示*/
    height: 2px;
    /*下線の高さ*/
    background: #d94b4b;
    /*下線の色*/
    z-index: -1;
    pointer-events: none;
    transition: all 0.4s;
    /*アニメーション速度*/
  }
  nav ul li a:hover {
    color: #d94b4b;
    text-decoration: none;
  }
  nav ul li a:hover::before {
    width: 100%;
    pointer-events: none;
  }
}
@media screen and (min-width: 1000px) {
  nav ul li a {
    font-size: 1.8rem;
  }
}
nav ul li:last-of-type svg {
  width: 30px;
  height: 30px;
  fill: white;
  pointer-events: none;
}
nav ul li:last-of-type a:hover svg {
  fill: #d94b4b;
}

header.mobile nav ul li {
  padding: 0 4px;
}
@media screen and (min-width: 768px) {
  header.mobile nav ul li a {
    transform: scale(0.8);
  }
}

@keyframes equalizer01 {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}
@keyframes equalizer02 {
  0% {
    width: 30%;
  }
  10% {
    width: 20%;
  }
  20% {
    width: 40%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 20%;
  }
  50% {
    width: 30%;
  }
  60% {
    width: 20%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 40%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 30%;
  }
}
/*============
#menu-trigger
=============*/
#menu-trigger {
  display: block;
  position: fixed;
  top: 15px;
  left: 15px;
  width: 48px;
  height: 27px;
  transform: translate(0, 0);
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  #menu-trigger {
    display: none;
  }
}

#menu-trigger span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: white;
  transition: all 0.5s;
}

#menu-trigger span:nth-child(1) {
  top: 5px;
  width: 60px;
  animation: equalizer01 7000ms infinite;
}

#menu-trigger span:nth-child(2) {
  top: 15px;
  width: 30px;
  animation: equalizer02 5000ms infinite;
  animation-delay: 0.33s;
}

#menu-trigger span:nth-child(3) {
  top: 25px;
  width: 20px;
  animation: equalizer02 5000ms infinite;
}

#menu-trigger.active span {
  background-color: #fff;
  width: 27px;
}

#menu-trigger.active span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  animation: unset;
}

#menu-trigger.active span:nth-child(2) {
  opacity: 0;
  animation: unset;
}

#menu-trigger.active span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  animation: unset;
}

/* --- MV  --- */
#main-visual {
  width: 100vw;
  text-align: center;
  position: fixed;
  top: 96px;
  z-index: 3 !important;
}
#main-visual::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1 !important;
  background: url(../imgs/main-visual-bg.jpg) center/cover no-repeat;
  filter: blur(3px);
  opacity: 0.2;
}
#main-visual img {
  width: 70%;
  margin: 0 auto;
}

/* --- About Us  --- */
#aboutus-photos {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#aboutus-photos img {
  width: calc((100% - 16px) / 2);
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  #aboutus-photos img {
    width: calc((100% - 48px) / 3);
    margin-bottom: 24px;
  }
}

#aboutus-2 {
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  #aboutus-2 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
  }
}
#aboutus-2 > div {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #aboutus-2 > div {
    width: 45%;
    margin-bottom: 0;
  }
}
#aboutus-2 > img {
  width: 90%;
}
@media screen and (min-width: 768px) {
  #aboutus-2 > img {
    width: 45%;
  }
}

/* --- Menu  --- */
#menu article + article {
  margin-top: 64px;
}
#menu article:last-of-type a {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  display: block;
}

#drink-menu {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#drink-menu a {
  display: block;
  width: calc((100% - 24px) / 2);
}

.img-anchor {
  position: relative;
  overflow: hidden;
}
.img-anchor img {
  transition: all 0.2s ease-in-out !important;
}
.img-anchor:hover img {
  filter: blur(2px);
}
.img-anchor::before {
  width: 100%;
  height: 100%;
  content: "";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 900;
  font-size: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: blur(3px);
  opacity: 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAJ0lEQVQYV2NkQAP////3ZUQWAwswMm6GC8IEQIrAgsgCYEF0AZAgANP9E1CXVxkjAAAAAElFTkSuQmCC) repeat;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
  color: white;
  pointer-events: none;
}
.img-anchor:hover::before {
  font-size: 5rem;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 1;
  filter: blur(0);
}

/* --- Reservation  --- */
#reservation h2 {
  margin-bottom: 24px;
  padding-bottom: 0;
}
#reservation > section {
  margin-bottom: 88px;
  border: 1px solid white;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  #reservation > section {
    padding: 32px;
  }
}
#reservation > section dl {
  width: 100%;
  margin: 24px 0;
}
#reservation > section dl dt, #reservation > section dl dd {
  width: 100%;
  padding: 8px 8px 0 8px;
  text-align: left;
  font-size: 1.5rem;
  border: 0 !important;
}
@media screen and (min-width: 768px) {
  #reservation > section dl dt, #reservation > section dl dd {
    padding: 16px;
  }
}
#reservation > section dl dt {
  font-weight: bolder;
}
@media screen and (max-width: 767px) {
  #reservation > section dl dd {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  #reservation > section dl dt {
    width: 160px;
    text-align: right;
  }
  #reservation > section dl dd {
    width: calc(100% - 184px);
  }
}
#reservation > section dl dd, #reservation > section dl dt {
  display: inline-block;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
textarea,
select {
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  margin-right: 4px;
  border: 1px solid #555;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  font-size: 1.6rem;
  color: white;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
input:focus,
textarea:focus,
select:focus {
  background: white;
  border-color: #ccc;
  box-shadow: 0 0 5px white;
  color: #333;
}

button {
  background: transparent;
  border-radius: 5px;
  color: white;
  border: 1px solid white;
  padding: 16px 24px;
  cursor: pointer;
  font-family: "Secular One", sans-serif;
  transition: all 0.2s ease-in-out;
  font-size: 130%;
}
button:hover {
  color: black;
  box-shadow: 0 0 5px white;
  background: white;
  font-weight: bolder;
  transform: translateY(-8px);
}

select {
  width: auto;
  margin: 4px 0;
}

select.short {
  width: 80px !important;
}

textarea {
  width: 100%;
  height: 120px;
}

@media screen and (min-width: 768px) {
  textarea {
    height: 280px;
  }
}
/* --- Footer  --- */
footer {
  width: 100%;
  max-width: 1024px;
  padding: 24px;
  padding-bottom: 64px;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 2 !important;
}
footer * {
  position: relative;
  z-index: 3 !important;
}
@media screen and (min-width: 768px) {
  footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  footer > section {
    width: 45%;
    padding: 64px 0;
  }
  footer > section:first-of-type {
    text-align: left;
  }
  footer > section:last-of-type {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0.1) 85%, rgba(255, 255, 255, 0));
  }
}
footer::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 32px);
  background: url(../imgs/footer-bg.png) center bottom/contain no-repeat;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  z-index: 1 !important;
}
@media screen and (min-width: 768px) {
  footer::before {
    background: url(../imgs/footer-bg.png) right bottom/contain no-repeat;
  }
}
@media screen and (min-width: 768px) {
  footer::before {
    position: absolute;
  }
}
footer #footer-logo {
  width: 80%;
  margin: 0 auto 32px auto;
  background: url(../imgs/footer-logo.png) center/contain no-repeat;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  footer #footer-logo {
    margin-left: 0;
    background: url(../imgs/footer-logo.png) center left/contain no-repeat;
  }
}
footer #footer-logo::after {
  content: "";
  display: block;
  padding-top: 40%;
}
footer a i {
  font-size: 4rem;
  display: inline-block;
  margin: 32px auto;
}
footer #map a {
  margin-top: 24px;
  display: inline-block;
  padding: 8px 16px;
  box-sizing: border-box;
  text-decoration: none;
  line-height: 1;
  color: black;
  background: white;
  transition: all 0.2s ease-in-out;
}
footer #map a:hover {
  color: white;
  background: transparent;
}
footer #copyright {
  width: 100%;
  margin-top: 24px;
  text-align: center;
  font-size: 1.4rem;
  font-family: "Secular One", sans-serif;
}

#totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10 !important;
  font-size: 4rem;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  background: white;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  #totop {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    bottom: 30px;
    right: 100px;
    font-size: 5rem;
  }
}
@media screen and (min-width: 768px) {
  #totop {
    animation-name: wave-original;
    animation-duration: 0.1s;
    animation-direction: alternate;
    animation-fill-mode: both;
  }
}
#totop.active {
  opacity: 0.6;
}
#totop.active:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #totop.active:hover {
    animation-name: wave-original-r;
    animation-duration: 0.1s;
    animation-direction: alternate;
    animation-fill-mode: both;
  }
}
#totop.active::before, #totop.active::after {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  border: 1px solid white;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  #totop.active:hover::before {
    animation-name: wave;
    animation-duration: 0.5s;
  }
  #totop.active:hover::after {
    animation-name: wave2;
    animation-duration: 0.5s;
    animation-delay: 0.1s;
  }
}

@keyframes wave {
  0% {
    opacity: 0;
    transform: scale(1);
    box-shadow: 0 0 5px white;
  }
  50% {
    opacity: 0.8;
    transform: scale(1.06);
    box-shadow: 0 0 5px white;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
    box-shadow: 0 0 5px white;
  }
}
@keyframes wave2 {
  0% {
    opacity: 0;
    transform: scale(1);
    box-shadow: 0 0 8px white;
  }
  50% {
    opacity: 0.6;
    transform: scale(1.25);
    box-shadow: 0 0 8px white;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
    box-shadow: 0 0 8px white;
  }
}
@keyframes wave-original-r {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
    box-shadow: 0 0 5px white;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 5px white;
  }
}
@keyframes wave-original-r {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 5px white;
  }
  50% {
    transform: scale(0.85);
    box-shadow: 0 0 5px white;
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (min-width: 481px) {
  .sp {
    display: none !important;
  }
}
.fancybox-close-small {
  transition: all 0.2s ease-in-out;
}

.fancybox-close-small:hover {
  transform: scale(1.1);
  background: transparent;
}

.fancybox-container {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAJ0lEQVQYV2NkQAP////3ZUQWAwswMm6GC8IEQIrAgsgCYEF0AZAgANP9E1CXVxkjAAAAAElFTkSuQmCC) repeat;
}

.fancybox-content {
  box-shadow: 0 0 10px #999;
}

div.mfp_err {
  color: #d94b4b;
  background: none;
  padding-left: 0;
}

.problem {
  background: white;
  box-shadow: 0 0 5px white;
}

.fixedsticky {
  top: 64px;
  z-index: 3;
  width: 100%;
  /*background: -moz-linear-gradient(top, rgba(0, 0,  0, .8) 60%, rgba(0, 0, 0, 0));
  background: -webkit-linear-gradient(top, rgba(0, 0,  0, .8) 60%, rgba(0, 0, 0, 0));
  background: linear-gradient(to bottom, rgba(0, 0,  0, .8) 60%, rgba(0, 0, 0, 0));*/
  background: rgba(0, 0, 0, 0.8);
  left: 0;
}

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .display-block {
    display: flex !important;
  }
}

.scrolla {
  opacity: 0;
}

.animate__animated {
  opacity: 1;
}