/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

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

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  font-size: 1rem;
}

:where(video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: middle;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  font-size: 2em;
}

:where(ul, ol) {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

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

@media screen and (max-width: 767px) {
  .show_tabpc {
    display: none !important;
  }
}

.show_pc {
  display: none !important;
}
@media screen and (min-width: 1000px) {
  .show_pc {
    display: block !important;
  }
}

html {
  scroll-padding-top: 15.7004830918vw;
}
@media screen and (min-width: 1000px) {
  html {
    scroll-padding-top: 9rem;
  }
}

body {
  color: #fff;
}

main {
  background: url(../img/bg_sp.webp) no-repeat center top/cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
main:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
}
.drawer:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
}
.drawer_inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24.154589372vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .drawer_inner {
    padding-top: 15rem;
  }
}
.drawer_inner a {
  color: #fff;
  text-decoration: none;
  font-size: 6.7632850242vw;
  letter-spacing: 0.1em;
  display: block;
  padding: 4.8309178744vw 0;
}
@media screen and (min-width: 768px) {
  .drawer_inner a {
    font-size: 3rem;
    padding: 4rem 0;
  }
}
@media (hover) {
  .drawer_inner a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.1rem;
  }
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 11;
  padding: 2.4154589372vw;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  header {
    padding: 1rem;
  }
}
header.scroll {
  background-color: rgba(0, 0, 0, 0.5);
}

.logo a {
  display: block;
}
.logo img {
  width: 18vw;
}
@media screen and (min-width: 768px) {
  .logo img {
    width: 10rem;
  }
}

.lang {
  margin-left: auto;
  background-color: transparent;
  margin-right: 4.8309178744vw;
  display: flex;
}
@media screen and (min-width: 768px) {
  .lang {
    margin-right: 2rem;
  }
}
.lang a {
  font-size: 3.3816425121vw;
  color: #fff;
  padding: 2.4154589372vw;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .lang a {
    font-size: 1.4rem;
    padding: 1.5rem;
  }
}
.lang a + a:before {
  content: "";
  width: 1px;
  height: 3.3816425121vw;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1.690821256vw;
}
@media screen and (min-width: 768px) {
  .lang a + a:before {
    height: 1.4rem;
    margin-top: -0.7rem;
  }
}

.nav {
  width: 9.6618357488vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  padding: 2.4154589372vw;
  margin-right: 2.4154589372vw;
}
@media screen and (min-width: 768px) {
  .nav {
    width: 4rem;
    padding: 1rem;
    margin-right: 1rem;
  }
}
.nav::before {
  content: "";
  width: 100%;
  height: 0.4830917874vw;
  background-color: #fff;
  display: block;
  transition: 0.3s;
  transform-origin: left top;
}
@media screen and (min-width: 768px) {
  .nav::before {
    height: 0.2rem;
  }
}
.nav::after {
  content: "";
  width: 100%;
  height: 0.4830917874vw;
  background-color: #fff;
  display: block;
  transition: 0.3s;
  transform-origin: left bottom;
}
@media screen and (min-width: 768px) {
  .nav::after {
    height: 0.2rem;
  }
}
.nav span {
  width: 100%;
  height: 0.4830917874vw;
  background-color: #fff;
  display: block;
  margin: 1.4492753623vw 0;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .nav span {
    height: 0.2rem;
    margin: 0.6rem 0;
  }
}
.nav.active::before {
  width: calc(100% + 0.9661835749vw);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .nav.active::before {
    width: calc(100% + 0.4rem);
  }
}
.nav.active::after {
  width: calc(100% + 0.9661835749vw);
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .nav.active::after {
    width: calc(100% + 0.4rem);
  }
}
.nav.active span {
  opacity: 0;
}

section {
  position: relative;
}

.kv {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.7, 0, 0.84, 0);
}
.kv.active {
  opacity: 1;
}
.kv_logo {
  margin-top: -15.7004830918vw;
}
@media screen and (min-width: 768px) {
  .kv_logo {
    margin-top: -9rem;
  }
}
.kv_logo img {
  width: 40vw;
}
@media screen and (min-width: 768px) {
  .kv_logo img {
    width: 30rem;
  }
}
.kv_lead {
  font-size: 4.347826087vw;
  text-align: center;
  font-weight: 400;
  line-height: 2;
  margin-top: 7.2463768116vw;
}
@media screen and (min-width: 768px) {
  .kv_lead {
    font-size: 1.8rem;
    margin-top: 5rem;
  }
}

.inner {
  margin: 0 4.8309178744vw;
}
@media screen and (min-width: 768px) {
  .inner {
    margin: 0 auto;
    max-width: 124rem;
    padding: 0 2rem;
  }
}

.block + .block {
  margin-top: 19.3236714976vw;
}
@media screen and (min-width: 768px) {
  .block + .block {
    margin-top: 12rem;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.view .main_lead {
  animation: fadein 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.view .shop_ttl {
  animation: fadein 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.view .shop_detail {
  animation: fadein 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

.main_lead {
  font-size: 3.3816425121vw;
  line-height: 1.78;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(1rem);
}
@media screen and (min-width: 768px) {
  .main_lead {
    font-size: 1.6rem;
    text-align: center;
    line-height: 2;
  }
}

.shop_ttl {
  font-size: 6.7632850242vw;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 7.2463768116vw;
  text-align: center;
  opacity: 0;
  transform: translateY(1rem);
}
@media screen and (min-width: 768px) {
  .shop_ttl {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
}
.shop_detail {
  font-size: 3.3816425121vw;
  display: grid;
  grid-template-columns: 31.4009661836vw 1fr;
  gap: 7.2463768116vw 2.4154589372vw;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1rem);
}
@media screen and (min-width: 768px) {
  .shop_detail {
    font-size: 1.6rem;
    grid-template-columns: 15rem 1fr;
    gap: 4rem 3rem;
    width: fit-content;
    margin: 0 auto;
  }
}
.shop_detail p + p {
  margin-top: 0.8em;
}
.shop_detail a {
  color: inherit;
  text-underline-offset: 0.3em;
  letter-spacing: 0.1em;
}
@media (hover) {
  .shop_detail a:hover {
    text-decoration: none;
  }
}

.arrow:after {
  content: "";
  width: 4.8309178744vw;
  height: 1.4492753623vw;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skewX(50deg);
  display: inline-block;
  margin-left: 1.2077294686vw;
}
@media screen and (min-width: 768px) {
  .arrow:after {
    width: 2rem;
    height: 0.6rem;
    margin-left: 0.5rem;
  }
}

footer {
  position: relative;
  padding: 19.3236714976vw 0 4.8309178744vw;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 12rem 0 2rem;
  }
}

.copy {
  text-align: center;
  color: #fff;
  font-size: 2.8985507246vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .copy {
    font-size: 1.2rem;
  }
}

.under {
  padding-top: 12.077294686vw;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .under {
    padding-top: 8rem;
  }
}
.under + footer {
  background-color: #272727;
  margin-top: auto;
}

.page_ttl {
  text-align: center;
  font-size: 7.2463768116vw;
  margin-bottom: 7.2463768116vw;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page_ttl {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
}

.tab_bar {
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .tab_bar {
    scrollbar-width: thin;
    scrollbar-color: #000 #999;
  }
}
.tab_btn {
  display: inline-flex;
}
.tab_btn li {
  cursor: pointer;
  font-size: 4.8309178744vw;
  font-weight: 700;
  white-space: nowrap;
  height: 10.8695652174vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  border-top-left-radius: 2.4154589372vw;
  border-top-right-radius: 2.4154589372vw;
  min-width: 28.5024154589vw;
  padding: 0 2.8985507246vw;
  margin-right: 1.2077294686vw;
  letter-spacing: 0.05em;
  background-color: #272727;
}
@media screen and (min-width: 768px) {
  .tab_btn li {
    font-size: 2rem;
    height: 4.5rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    min-width: 11.8rem;
    padding: 0 1.2rem;
    margin-right: 0.5rem;
  }
}
.tab_btn li:first-child {
  margin-left: 2.4154589372vw;
}
@media screen and (min-width: 768px) {
  .tab_btn li:first-child {
    margin-left: 1rem;
  }
}
.tab_btn li:last-child {
  margin-right: 2.4154589372vw;
}
@media screen and (min-width: 768px) {
  .tab_btn li:last-child {
    margin-right: 1rem;
  }
}
.tab_btn li.active {
  background-color: #fff;
  color: #1D1D1D;
}

.tab_contents {
  background-color: #272727;
  border-top: 1px solid #fff;
  padding: 8.4541062802vw 4.8309178744vw;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .tab_contents {
    padding: 3rem 2rem;
  }
}

.menu {
  display: none;
}
.menu.active {
  display: block;
}
.menu_ttl {
  color: #F5BF53;
  font-size: 4.347826087vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .menu_ttl {
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto;
  }
}
.menu_ttl span {
  color: #fff;
  font-size: 2.8985507246vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .menu_ttl span {
    font-size: 1.2rem;
  }
}
.menu_ttl-note {
  font-size: 3.3816425121vw;
  margin-top: 1.9323671498vw;
}
@media screen and (min-width: 768px) {
  .menu_ttl-note {
    font-size: 1.4rem;
    max-width: 80rem;
    margin: 0.8rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .menu_list {
    max-width: 80rem;
    margin: 0 auto;
  }
}
.menu_list li {
  display: flex;
  padding: 2.8985507246vw 0;
  border-bottom: 1px dashed #ccc;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .menu_list li {
    padding: 1.2rem 0;
  }
}
.menu_list li figure {
  width: 25.845410628vw;
  margin-right: 4.347826087vw;
}
@media screen and (min-width: 768px) {
  .menu_list li figure {
    width: 10.7rem;
    margin-right: 1.8rem;
  }
}
.menu_list li figure figcaption {
  display: block;
  text-align: right;
  margin-top: 1.2077294686vw;
  font-size: 2.4154589372vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .menu_list li figure figcaption {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
.menu_list li.pickup figure {
  width: 41.0628019324vw;
}
@media screen and (min-width: 768px) {
  .menu_list li.pickup figure {
    width: 17rem;
  }
}
.menu_list + .menu_ttl {
  margin-top: 7.2463768116vw;
}
@media screen and (min-width: 768px) {
  .menu_list + .menu_ttl {
    margin-top: 3rem;
  }
}
.menu_detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 1.2077294686vw;
}
@media screen and (min-width: 768px) {
  .menu_detail {
    padding-top: 0.5rem;
  }
}
.menu_detail h3 {
  font-size: 3.8647342995vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 2.8985507246vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .menu_detail h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
.menu_detail h3 small {
  display: block;
  font-size: 2.8985507246vw;
  margin-top: 1.2077294686vw;
}
@media screen and (min-width: 768px) {
  .menu_detail h3 small {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}
.menu_detail > span {
  display: block;
  font-size: 2.8985507246vw;
  font-weight: 500;
  margin-bottom: 2.8985507246vw;
}
@media screen and (min-width: 768px) {
  .menu_detail > span {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.menu_content {
  width: 100%;
  margin-top: 2.4154589372vw;
}
@media screen and (min-width: 768px) {
  .menu_content {
    margin-top: 1rem;
  }
}
.menu_content p {
  font-size: 3.1400966184vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .menu_content p {
    font-size: 1.3rem;
  }
}

.col {
  display: grid;
  grid-template-columns: 1fr max-content;
  column-gap: 2.4154589372vw;
}
@media screen and (min-width: 768px) {
  .col {
    grid-template-columns: 1fr 15rem;
    column-gap: 1rem;
  }
}
.col:first-of-type {
  margin-top: auto;
}
.col + .col {
  margin-top: 1.9323671498vw;
}
@media screen and (min-width: 768px) {
  .col + .col {
    margin-top: 0.8rem;
  }
}
.col h4 {
  font-size: 3.3816425121vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .col h4 {
    font-size: 1.4rem;
  }
}
.col h4 small {
  font-size: 2.8985507246vw;
  display: block;
  margin-bottom: 0.7246376812vw;
}
@media screen and (min-width: 768px) {
  .col h4 small {
    font-size: 1.2rem;
  }
}
.col p {
  font-size: 3.3816425121vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .col p {
    font-size: 1.4rem;
  }
}
.col p span {
  display: block;
  font-size: 2.4154589372vw;
  margin-top: 0.7246376812vw;
}
@media screen and (min-width: 768px) {
  .col p span {
    font-size: 1rem;
    margin-top: 0.3rem;
  }
}

.note {
  margin-top: 7.2463768116vw;
  font-size: 2.8985507246vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .note {
    font-size: 1.2rem;
    margin-top: 3rem;
    max-width: 80rem;
    margin: 3rem auto 0;
  }
}/*# sourceMappingURL=style.css.map */