@charset "UTF-8";

/*================================================
 *  一般・共通設定
 ================================================*/
:root {
  --color-black: #00020C;
  --color-dark: #0b0c1e;
  --color-navy: #01081f;
  --color-white: #f9f9f9;
  --color-light: #bfc7cf;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 50px;
}

body {
  font-size: 1.4rem;
  font-family: "Shippori Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 2;
  letter-spacing: .1em;
  font-weight: normal;
  overflow-x: hidden;
  color: var(--color-white);
  background: var(--color-navy);
  background-image: linear-gradient(rgb(0, 2, 13, 0.9), rgba(0, 6, 28, 0.7)),
    url(../images/bg.webp);
  background-repeat: repeat;
  background-size: 800px;
}

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

.widewrap {
  max-width: 1150px;
  margin: 0 auto;
}

a {
  color: var(--color-white);
  text-decoration: none;
}

a:hover {
  opacity: .7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.underline {
  text-decoration: underline;
}

p {
  margin: 0 0 0.5em 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin: 0;
}

ol li {
  list-style: decimal;
}

/* タイトル */
h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

h2 span {
  font-size: 2.3rem;
}

@media screen and (max-width:768px) {

  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }

  body {
    background-image: linear-gradient(rgb(0, 2, 13, 0.8), rgba(0, 6, 28, 0.6)), url(../images/bg.webp);
  }

  .wrap,
  .widewrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}


/* =======================================================
* loading
* ======================================================= */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 100px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

@media screen and (max-width:950px) {
  .loading__logo {
    width: 90px;
  }
}

/*================================================
 *  コンテンツ
 ================================================*/
header {
  padding: 20px 2%;
  position: fixed;
  right: 0;
  z-index: 1;
  width: 50%;
  text-align: right;
}

.nav-button {
  display: none;
}

.nav li {
  display: inline-block;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1.3rem;
}

.nav li a {
  color: var(--color-white);
}

.nav li a:hover {
  opacity: 1;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 40px #fff,
    0 0 80px #fff;
}

.nav-wrap.open {
  display: block;
}

.nav-wrap.close {
  display: none;
}

/* changeNav */
header.changeNav {
  background: linear-gradient(180deg, rgba(0, 2, 12, 1) 0%, rgba(0, 2, 12, 0.8) 50%, rgba(0, 2, 12, 0) 100%);
}

header h1.site-logo {
  display: none;
}

@media screen and (min-width: 900px) {
  .nav-wrap {
    display: block !important;
  }
}

@media screen and (max-width: 900px) {
  header {
    padding: 20px 15px;
    width: 100%;
  }

  header h1.site-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 60px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s ease;
    display: block;
    z-index: 99;
  }

  header h1.site-logo.show {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-button {
    display: block;
    cursor: pointer;
  }

  .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 2, 12, 1) 0%, rgba(0, 2, 12, 0.8) 50%, rgba(0, 2, 12, 0) 100%);
    width: 100%;
    height: 100%;
  }

  .nav {
    position: relative;
    overflow-y: auto;
    padding: 90px 30px 50px;
  }

  .nav li {
    display: block;
    text-align: right;
    padding-bottom: 20px;
  }


  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .nav-button {
    z-index: 20;
    position: relative;
    width: 50px;
    height: 26px;
  }

  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }

  .nav-button span:nth-of-type(1) {
    top: 10px;
  }

  .nav-button span:nth-of-type(2) {
    top: 20px;
  }

  .nav-button:hover {
    opacity: 1;
  }

  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-25deg);
    transform: translateY(10px) rotate(-25deg);
  }

  .nav-button.active span:nth-of-type(2) {
    top: 30px;
    -webkit-transform: translateY(-10px) rotate(25deg);
    transform: translateY(-10px) rotate(25deg);
  }
}


/* =======================================================
* section・共通
* ======================================================= */

section {
  position: relative;
}

.section {
  padding-top: 10rem;
  position: relative;
}


@media screen and (max-width:768px) {
  section {
    padding-bottom: 7rem;
  }

  .section {
    padding-top: 7rem;
  }

}


/* =======================================================
* left_side
* ======================================================= */
.swiper_logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 90px;
  z-index: 2;
}

.swiper-wrap {
  width: 50%;
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  position: fixed;
  overflow: hidden;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 7s linear 0s 1 normal both;
  height: 100vh;
}

.slide-img.slide01 {
  background: url(../images/cocktail02.jpg) no-repeat center/cover;
}

.slide-img.slide02 {
  background: url(../images/cocktail04.jpg) no-repeat center/cover;
}

.slide-img.slide03 {
  background: url(../images/cocktail03.jpg) no-repeat center/cover;
}

.slide-img.slide04 {
  background: url(../images/cocktail01.jpg) no-repeat center/cover;
}

.main_address {
  position: fixed;
  bottom: 20px;
  left: 30px;
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1.6;
}


/* =======================================================
* main_side
* ======================================================= */
#main_side {
  width: 50%;
  margin: 0 0 0 auto;
  padding: 0 30px;
}

@media screen and (max-width:900px) {
  #main_side {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* =======================================================
* kv
* ======================================================= */
#kv {
  position: relative;
  height: 100vh;
}

.main_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;

}

.main_logo img {
  width: 300px;
}

.main_catch {
  letter-spacing: .15em;
  margin-top: -30px;
  font-family: sans-serif;
  text-shadow: 0 0 0px #218af4, 0 0 10px #218af4, 0 0 10px #218af4, 0 0 20px #218af4, 0 0 0px #218af4;
  color: #e9fbfd;
  text-transform: uppercase;
}

.main_sns {
  position: absolute;
  bottom: 150px;
  right: 0px;
  font-size: 1.6rem;
}

.scroll_down {
  position: absolute;
  right: 0px;
  bottom: 70px;
  writing-mode: vertical-rl;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-light);
}

.arrow {
  width: 1px;
  height: 80px;
  margin: 50px auto 0;
  background-color: transparent;
  overflow: hidden;
  position: absolute;
  right: 10px;
  bottom: -30px;
}

.arrow::before {
  content: '';
  width: 1px;
  height: 80px;
  margin: 50px auto 0;
  background: var(--color-light);
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s 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);
  }
}

.swiper.swiper_sp {
  display: none;
}

@media screen and (max-width:900px) {
  #kv {
    height: 100vh;
    height: 100dvh;
    margin-top: -7rem;
  }

  .main_logo img {
    width: 220px;
  }

  .main_catch {
    font-size: 1.3rem;
  }

  .main_address {
    position: absolute;
    top: 20px;
    left: 0px;
    font-size: 1rem;
    letter-spacing: 0.07em;
  }

  .main_sns {
    bottom: 20px;
    right: auto;
    font-size: 1.8rem;
    z-index: 1;
  }

  .main_sns li {
    display: inline-block;
    margin: 0 5px;
  }

  .swiper.swiper_sp {
    margin-left: -20px;
    margin-right: -20px;
    display: block;
    padding: 30px 0 60px;
    z-index: -1;
  }

  .swiper.swiper_sp .swiper-wrapper {
    transition-timing-function: linear !important
  }

}


/* =======================================================
* concept
* ======================================================= */
.concept_txt {
  line-height: 2.3;
}

#concept ul {
  margin: 40px 0 80px;
  display: grid;
  gap: 0px;
  grid-template-columns: 2fr 1fr;
}

#concept ul li img {
  object-fit: contain;
  height: 280px;
}

@media screen and (max-width:768px) {
  .concept_txt {
    line-height: 2;
  }

  #concept ul {
    margin: 20px 0 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  #concept ul li img {
    height: auto;
    width: 80%;
  }
}

/* =======================================================
* menu
* ======================================================= */
/* 共通 */
#menu ul {
  display: flex;
  overflow-x: scroll;
  padding-bottom: 20px;
}

#menu ul li {
  min-width: 190px;
  text-align: center;
  margin: 10px 5px;
  border-radius: 50px;
  padding: 10px;
  border: 1px solid;
}

#menu dl dt {
  width: 70%;
  margin-bottom: 7px;
}

#menu dl dd {
  width: 30%;
  margin-bottom: 7px;
  text-align: right;
  position: relative;
}

#menu dl dd::before {
  position: absolute;
  content: "…";
  top: 0;
  right: 55px;
}

#menu dl dd.wide::before {
  right: 65px;
}

/* drink */
.tabBtn_drink li.is-active {
  border: none;
  box-shadow:
    -1px -1px #66edfb,
    1px -1px #66edfb,
    1px 1px #66edfb,
    -1px 1px #66edfb,
    0 0 .1em #0043b0,
    0 0 .1em #0043b0 inset,
    0 0 .5em #0043b0,
    0 0 .5em #0043b0 inset,
    0 0 1em #0043b0,
    0 0 1em #0043b0 inset;
}

.panel {
  display: none;
  box-shadow: -1px -1px #66edfb, 1px -1px #66edfb, 1px 1px #66edfb, -1px 1px #66edfb, 0 0 .1em #0043b0, 0 0 .1em #0043b0 inset, 0 0 .5em #0043b0, 0 0 .5em #0043b0 inset, 0 0 1em #0043b0, 0 0 1em #0043b0 inset;
  border-radius: 10px;
  padding: 30px 50px;
}

.panel.is-show {
  display: block;
}

.panel dl div {
  margin-top: 20px;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
}

.neon_drink {
  width: 150px;
  position: absolute;
  top: 60px;
  left: 0;
}

/* bottle */
.tabBtn_bottle li.is-active_bottle {
  border: none;
  box-shadow:
    -1px -1px #fbe9cf,
    -1px -1px #fbe9cf,
    -1px -1px #fbe9cf,
    -1px -1px #fbe9cf,
    0 0 .1em #ff9800,
    0 0 .1em #ff9800 inset,
    0 0 .5em #ff9800,
    0 0 0.5em #ff9800 inset,
    0 0 0.5em #ff9800,
    0 0 0em #ff9800 inset;
}

.panel_bottle {
  display: none;
  box-shadow: -1px -1px #fbe9cf, 1px -1px #fbe9cf, 1px 1px #fbe9cf, -1px 1px #fbe9cf, 0 0 .1em #ff9800, 0 0 .1em #ff9800 inset, 0 0 .5em #ff9800, 0 0 .5em #ff9800 inset, 0 0 1em #ff9800, 0 0 1em #ff9800 inset;
  border-radius: 10px;
  padding: 30px 50px;
}

.panel_bottle.is-show_bottle {
  display: block;
}

.neon_bottle {
  width: 170px;
  position: absolute;
  top: 90px;
  right: -20px;
}

/* food */
.panel_food {
  box-shadow: -1px -1px #f8d8ee, 1px -1px #f8d8ee, 1px 1px #f8d8ee, -1px 1px #f8d8ee, 0 0 .1em #ff00ab, 0 0 .1em #ff00ab inset, 0 0 .5em #ff00ab, 0 0 .5em #ff00ab inset, 0 0 1em #ff00ab, 0 0 1em #ff00ab inset;
  border-radius: 10px;
  padding: 30px 50px;
}

.neon_food {
  width: 120px;
  position: absolute;
  top: 35px;
  left: 0;
}


/* caution */
#caution p {
  font-size: 1.3rem;
}

@media screen and (max-width:900px) {
  #menu ul li {
    min-width: 140px;
    font-size: 1.2rem;
    padding: 10px 0px;
  }

  .panel,
  .panel_bottle,
  .panel_food {
    padding: 30px 20px;
    font-size: 1.3rem;
  }

  .panel dl div {
    grid-template-columns: repeat(2, 1fr);
  }

  .neon_drink {
    width: 120px;
    left: -10px;
  }

  .neon_bottle {
    width: 130px;
    top: 20px;
  }

  .neon_food {
    width: 110px;
    top: 23px;
  }
}

/* =======================================================
* access
* ======================================================= */
#access dl dt,
#access dl dd {
  font-size: 1.3rem;
  padding-bottom: 10px;
  margin-bottom: 10px;

}

#access dl dt {
  width: 100px;
  text-align: center;
}

#access dl dd {
  width: 80%;
}

#access dl dd img {
  max-width: 270px;
}

#access dl dd a {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  padding: 8px 25px;
  font-size: 1.5rem;
  border-radius: 5px;
  color: var(--color-black);
}

#access iframe {
  margin: 30px 0 50px;
  width: 100%;
  height: 300px;
  filter: grayscale(100);
  border-radius: 5px;
}

#access ul {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}

.neon_access {
  width: 200px;
  position: absolute;
  top: 40px;
  right: -10px;
}

@media screen and (max-width:900px) {
  #access dl dt {
    width: 100%;
    text-align: left;
    border-bottom: 1px dotted #807f7f;
    padding-bottom: 5px;
  }

  #access dl dd {
    width: 100%;
    padding-left: 10px;
  }

  .neon_access {
    width: 180px;
    top: 60px;
    right: -20px;
  }
}


/* =======================================================
* contact
* ======================================================= */
/* contact_line */
.contact_line {
  border-radius: 10px;
  text-align: center;
  background: #1dcd00;
  padding: 20px;
}

.contact_line .icn {
  width: 40px;
}

.contact_line .name {
  width: 80%;
}

.contact_line .name span {
  display: block;
  font-size: 2rem;
}

/* contact_tel */
.contact_tel {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  border: 1px solid var(--color-white);
  color: var(--color-black);
}

.contact_tel span {
  font-size: 1.4rem;
  display: block;
}


/* form */
form {
  max-width: 550px;
  margin: 0px auto;
}

label {
  display: block;
  margin: 35px auto 10px;
}

label small {
  font-size: 11px;
}

input,
select {
  vertical-align: text-top;
  font-size: 30px;
  margin: 3px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="zipcode"],
input[type="date"],
input[type="city"],
input[type="address"],
select,
textarea {
  width: 100%;
  display: block;
  color: var(--color-white);
  outline: none;
  letter-spacing: .1em;
  height: 5.5rem;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: "Shippori Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}


textarea {
  height: 300px;
  padding: 10px;
}

form sup {
  background-color: #6f0e1f;
  color: var(--color-white);
  font-size: 1rem;
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 4px;
}

form sup.any {
  background-color: #666;
}

button {
  border: 1px solid;
  padding: 15px 60px;
  font-size: 1.4rem;
  border-radius: 5px;
  letter-spacing: .1em;
  font-family: "Shippori Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  background: rgba(255, 255, 255, 0.7);
}

button:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width:900px) {
  #contact .flex a {
    width: 90%;
    margin: 0 auto 20px;
  }

  .contact_line,
  .contact_tel {
    padding: 10px 40px;
  }
}

/* =======================================================
* footer
* ======================================================= */
footer {
  text-align: center;
  padding: 10rem 0 5rem;
}

footer ul li {
  display: inline-block;
  margin: 20px 10px 30px;
}

footer ul li img {
  width: 25px;
  object-fit: contain;
  height: 25px;
}

.copyright {
  font-size: 1rem;
}

/* pagetop */
#pagetop {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 30px;
  bottom: 20px;
  cursor: pointer;
}

#pagetop p {
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
  height: 65px;
  margin: 0;
  text-align: right;
  font-size: 1rem;
}

#pagetop p:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -5px;
  width: 1px;
  height: 17px;
  background: var(--color-light);
  transform: skewX(-150deg);
}

#pagetop p:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 1px;
  height: 65px;
  background: var(--color-light);
}