@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 300;
}

a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

img {
  display: block;
  max-width: 100%;
}

.highlight {
  background-image: -o-linear-gradient(bottom, #9DFF00 50%, transparent 50%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #9DFF00), color-stop(50%, transparent));
  background-image: linear-gradient(to top, #9DFF00 50%, transparent 50%);
}

.highlight2 {
  color: #9DFF00;
  background-image: -o-linear-gradient(bottom, #fff 10%, transparent 10%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #fff), color-stop(10%, transparent));
  background-image: linear-gradient(to top, #fff 10%, transparent 10%);
}

.highlight3 {
  color: #9DFF00;
  font-weight: 500;
}

.dummy-img {
  opacity: 0.5;
}

h1, h2, h3, h4 {
  letter-spacing: 0.15em;
  line-height: 1.7em;
  margin-bottom: 1em;
  word-break: keep-all;
}

h1 {
  font-size: clamp(40px, 6vw, 60px);
}

h2 {
  font-size: clamp(30px, 4.2vw, 42px);
}

h3 {
  font-size: clamp(24px, 3vw, 30px);
}

h4 {
  font-size: clamp(18px, 2.2vw, 22px);
}

p {
  line-height: 2.2em;
}

p:last-child {
  margin-bottom: 0;
}

.en {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-style: normal;
}

header {
  z-index: 3;
  color: #fff;
  padding: 10px 0;
  background: rgb(0, 0, 0);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0) 90%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(0, 0, 0, 0.6)), color-stop(90%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0) 90%);
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
}
header .container {
  width: 95% !important;
  max-width: 1400px !important;
}

.pc-menu ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pc-menu li {
  padding: 1em 2em;
}
.pc-menu li a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
.pc-menu li a:hover {
  color: #9DFF00;
}

.pc-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 40px;
}

.header-btns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10002;
}
.header-btns.header-btns-sp {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
}
.header-btns.header-btns-sp.hidden {
  opacity: 0;
  visibility: hidden;
}

.header-logo img {
  width: 60px;
  display: block;
}

@media screen and (min-width: 1200px) {
  .header-logo img {
    width: 70px;
  }
  .header-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    width: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
}

.open nav {
  opacity: 1;
  visibility: visible;
}

nav .inner {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: 100vh;
  height: 100dvh;
  position: fixed;
  width: 100%;
}

nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

nav .inner ul li {
  position: relative;
  margin: 0;
  text-align: center;
}

nav .inner ul li a {
  display: block;
  color: #fff;
  font-size: 20px;
  padding: 1em;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 24px;
  right: 30px;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 10001;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  -ms-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  -ms-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

.sec-ttl {
  margin-bottom: 20px;
  z-index: 1;
}

section {
  padding: clamp(80px, 12vw, 120px) 0;
  position: relative;
}
section .container {
  position: relative;
}

.spacer {
  height: clamp(40px, 8vw, 80px);
  width: 100%;
}

.min-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.bg-noise {
  background-color: rgba(0, 0, 0, 0.9);
  background-image: url(../img/bg-noise.jpg);
  background-repeat: repeat-y;
  background-size: cover;
  background-position: bottom;
  position: relative;
  color: #fff;
}

.bg-image {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(../img/bg1.jpg);
  background-repeat: repeat-y;
  background-size: 200%;
  background-blend-mode: overlay;
}

.bg-snap {
  background-image: url(../img/bg-snap.jpg);
  background-size: cover;
  background-position: center;
}

.bg-snap2 {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(../img/snap3.jpg);
  background-size: cover;
  background-blend-mode: overlay;
  background-position: center;
}

.bg-black {
  background: #000;
  color: #fff;
}

.bg-darkblue {
  background-color: #001328;
  color: #fff;
}

.bg-white {
  background: #fff;
  color: #000;
}

.bg-gray {
  background: #eee;
  color: #000;
}

.twitter-timeline {
  width: 500px;
  margin: 0 auto;
}

.sec-ttl h2 {
  font-size: clamp(40px, 6vw, 60px);
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #9DFF00;
  line-height: 1em;
}

@media screen and (min-width: 768px) {
  .bg-image {
    background-size: contain;
  }
  .min-wrap {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .sec-ttl.en.vertical {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    -webkit-transform: rotate(-90deg) translateX(-100%);
    -ms-transform: rotate(-90deg) translateX(-100%);
    transform: rotate(-90deg) translateX(-100%);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    white-space: nowrap;
  }
  .sec-ttl.en.vertical h2 {
    font-size: 60px;
    margin: 0;
  }
}
.smoking-notice {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 80px auto 0;
}
.smoking-notice img {
  width: 200px;
  display: block;
  margin: 0 auto;
}

.master {
  background: #002119;
}

.master-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.master-img {
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 75% 0, 99% 25%, 100% 100%, 25% 100%, 0 75%);
  clip-path: polygon(0 0, 75% 0, 99% 25%, 100% 100%, 25% 100%, 0 75%);
  padding-bottom: 200px;
  width: 200px;
  background-position: center;
}

.master-name {
  text-align: right;
}

.about-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .master-message {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .about-col {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.menu h3 {
  text-align: center;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu h3::before, .menu h3::after {
  background: #000;
  content: "";
  display: block;
  width: calc(50% - 3em);
  height: 1px;
  position: relative;
}

.d-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 0;
}

.food-item {
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.food-item-thum {
  background: #999;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
}

.drink-sec:not(:last-child) {
  margin-bottom: clamp(40px, 4vw, 80px);
}

.food-item {
  position: relative;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.food-item-text {
  font-family: "Noto Serif JP", serif;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4.5em;
  text-align: center;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  width: 90%;
}
.food-item-text::after {
  background: #999;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 4.5em;
  z-index: -1;
  content: "";
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.food-item-text .menu-ttl {
  display: inline-block;
  font-size: 12px;
}
.food-item-text .menu-price {
  display: inline-block;
  font-size: 12px;
}

.drink-sec {
  font-family: "Noto Serif JP", serif;
}
.drink-sec h4 {
  font-weight: 400;
}

.drinks-wrap {
  font-family: "Noto Serif JP", serif;
}
.drinks-wrap.d-grid {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px 80px;
}
.drinks-wrap .drink-item {
  font-size: clamp(13px, 1.4vw, 14px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.menu-notice {
  font-size: 12px;
  text-align: center;
  margin: 2em auto 0;
}

@media screen and (min-width: 768px) {
  .d-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .drinks-wrap.d-grid {
    -ms-grid-columns: 1fr 80px 1fr 80px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px 80px;
  }
}
@media screen and (min-width: 1200px) {
  .d-grid {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .drinks-wrap.d-grid {
    -ms-grid-columns: 1fr 80px 1fr 80px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 80px;
  }
}
.concept {
  z-index: 0;
}
.concept::after, .concept::before {
  height: 80px;
  width: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  background: rgb(157, 255, 0);
}
.concept::before {
  top: 0;
  background: -o-linear-gradient(top, rgba(157, 255, 0, 0.5) 0%, rgba(157, 255, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(157, 255, 0, 0.5)), to(rgba(157, 255, 0, 0)));
  background: linear-gradient(180deg, rgba(157, 255, 0, 0.5) 0%, rgba(157, 255, 0, 0) 100%);
}
.concept::after {
  bottom: 0;
  background: -o-linear-gradient(top, rgba(157, 255, 0, 0) 0%, rgba(157, 255, 0, 0.5) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(157, 255, 0, 0)), to(rgba(157, 255, 0, 0.5)));
  background: linear-gradient(180deg, rgba(157, 255, 0, 0) 0%, rgba(157, 255, 0, 0.5) 100%);
}
.concept .concept-img {
  display: block;
  margin: 40px auto;
  max-width: 400px;
  width: 100%;
}
.concept p {
  line-height: 2.5em;
}

.concept-thum {
  overflow: hidden;
}

.concept-thum-img {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
}

.slick-slider {
  z-index: -1;
  width: 100%;
  overflow: hidden;
  margin: clamp(40px, 8vw, 80px) auto;
}

.slick-slider .slick-slide {
  opacity: 0.6;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slick-slider .slick-center {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.concept-thum {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.concept-thum-img {
  width: 100%;
  vertical-align: top;
}

.btn {
  font-weight: 700;
  font-family: "Quantico", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
}
.btn.parallelogram {
  line-height: 50px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.btn.parallelogram::before, .btn.parallelogram::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  -webkit-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  transform: skewX(-15deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.parallelogram.btn-y {
  padding: 0 clamp(24px, 2.2vw, 40px) 0 clamp(20px, 3.3vw, 36px);
  color: #000;
}
.btn.parallelogram.btn-y::before {
  background: #9DFF00;
  z-index: -2;
  width: 100%;
}
.btn.parallelogram.btn-y::after {
  width: 0%;
  background: #fff;
  z-index: -1;
}
.btn.parallelogram.btn-y:hover::after {
  width: 100%;
}
.btn.parallelogram.btn-bk {
  padding: 0 clamp(24px, 2.2vw, 40px) 0 clamp(20px, 3.3vw, 36px);
  color: #fff;
}
.btn.parallelogram.btn-bk::before {
  background: #000;
  z-index: -2;
  width: 100%;
}
.btn.parallelogram.btn-bk::after {
  width: 0%;
  background: #fff;
  z-index: -1;
}
.btn.parallelogram.btn-bk:hover::after {
  width: 100%;
}
.btn.parallelogram.btn-w {
  color: #000;
}
.btn.parallelogram.btn-w::before {
  background: #fff;
  z-index: -2;
  width: 100%;
}
.btn.parallelogram.btn-w::after {
  width: 0%;
  background: #ff0033;
  z-index: -1;
}
.btn.parallelogram.btn-w:hover {
  color: #fff;
}
.btn.parallelogram.btn-w:hover::after {
  width: 100%;
}
.btn.parallelogram.btn-bk {
  color: #fff;
}
.btn.parallelogram.btn-lang {
  padding: 0 clamp(16px, 1.4vw, 20px);
  font-size: 24px;
}

.fv {
  height: 100vh;
  background: #000;
  max-height: 800px;
}
.fv .top-logo {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 300px;
  width: 70%;
  height: auto;
  top: 50%;
  left: 50%;
}

.cv-tel {
  margin-top: 80px;
}
.cv-tel h4 {
  margin-bottom: 1em;
}

.tel-link {
  font-size: clamp(36px, 3vw, 50px);
  color: #000;
  text-decoration: none;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.btn-follow {
  margin-top: 40px;
}

footer {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  background: #9DFF00;
  color: #000;
  font-size: 12px;
}

.google-map {
  width: 100%;
  height: 300px;
  margin-top: 60px;
}

.btn {
  vertical-align: middle;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  background-size: contain;
  margin-right: 0.5em;
  margin-bottom: 0.1em;
}
.icon.icon-x {
  background-image: url(../img/icon-x.png);
}
.icon.icon-tel {
  background-image: url(../img/icon-tel.png);
}

/* ポップアップのスタイル */
.video-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000;
  padding: 10px;
  border-radius: 8px;
  z-index: 1000000;
  width: 90%;
  max-width: 500px;
}

/* 背景のオーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}

video {
  width: 100%;
}

/* 閉じるボタンのスタイル */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000001;
}

.video-link {
  display: inline-block;
  padding: 10px 20px;
  color: #9DFF00;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  border: 1px solid #9DFF00;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.video-link:hover {
  background: #9DFF00;
  color: #000;
}

.payment {
  max-width: 300px;
  margin: 50px auto 0;
}
.payment img {
  margin: 20px auto 0;
}

/*# sourceMappingURL=styles.css.map */
