@charset "utf-8";
/*=========================
  Common
=========================*/
/* font define */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

/* color */
:root {
  --white: #c5c5c5;
  --purple: #8324e4;
}

/* variables */
:root {
  --section-padding: 5rem 0;
  --font-regular: 1.125rem;
  --font-small: 0.875rem;
}
@media (max-width: 960px) {
  :root {
    --section-padding: 3rem 0;
  }
}

html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px;  */
}
/* @media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 0px;
  }
} */
body {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-style: normal;
  background: url(../img/body-bg.jpg) no-repeat;
  background-size: cover;
  color: #dfdfdf;
  font-size: 1.125rem;
  /* overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;  */
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.5;
    }
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  line-height: 2;
  text-align: justify;
  @media (max-width: 960px) {
    font-size: 0.9rem;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
}

.pc-only {
  display: initial;
}
.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: initial;
  }
}

.container {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin-inline: auto;
}

/* button */
.button {
  /* --bg-color: pink;
  --color: #333333;
  --bg-color-lighten: color-mix(in srgb, var(--bg-color), white 25%);
  --color-lighten: color-mix(in srgb, var(--color), white 25%);
  background-color: var(--bg-color);
  color: var(--color); */
  padding: 0.5rem 1rem;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* font-size: 1.25rem; */
  /* font-weight: bold; */
  position: relative;
  .icon {
    margin-right: 0.5rem;
  }
  @media (any-hover: hover) {
    /* &:hover {
      opacity: 1;
      background-color: var(--bg-color-lighten);
      color: var(--color-lighten);
      border: var(--color-lighten) 1px solid;
    } */
    &::before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      background-color: #fff;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    &:hover {
      opacity: 1;
    }
    &:hover::before {
      opacity: 0.25;
    }
  }
}

.outline {
  position: absolute;
  z-index: 101;
  inset: 0;
  margin: 10px;
  border: 2px solid;
  border-image: linear-gradient(to bottom, var(--purple), 40%, var(--purple), 50%, rgba(0, 0, 0, 0), 60%, rgba(0, 0, 0, 0)) 1;
  pointer-events: none;
  @media (max-width: 960px) {
    border: 1px solid;
    border-image: linear-gradient(to bottom, var(--purple), 40%, var(--purple), 50%, rgba(0, 0, 0, 0), 60%, rgba(0, 0, 0, 0)) 1;
  }
}

/*=========================
  header
=========================*/
header {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: transparent;
  /* height: 100px; */
  display: flex;
  align-items: center;
  padding: 2rem 2rem;
  .logo {
    font-size: 4rem;
    text-shadow: 0px 3px 6px rgb(0 0 0 / 0.75);
    a {
      opacity: 1;
    }
  }
  .sp-hamburger {
    display: none;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 50px;
    height: fit-content;
    aspect-ratio: 1/1;
    .line {
      height: 1px;
      width: 30%;
      background-color: #ffffff;
      content: '';
      transition: 0.3s;
    }
  }
  .sp-hamburger.active {
    .line {
      background-color: #ffffff;
    }
    .line:nth-child(1) {
      position: absolute;
      top: 50%;
      bottom: 50%;
      width: 40%;
      rotate: -45deg;
    }
    .line:nth-child(2) {
      opacity: 0;
    }
    .line:nth-child(3) {
      position: absolute;
      top: 50%;
      bottom: 50%;
      width: 40%;
      rotate: 45deg;
    }
  }
  .sp-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -120%;
    width: 100vw;
    height: 100dvh;
    background-color: #0f0f0f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    .nav-items {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      .nav-items__item {
        width: 60%;
        border-bottom: #dfdfdf 1px solid;
      }
      .nav-items__item a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.5rem;
        span {
          width: 50%;
          font-size: 1rem;
        }
      }
    }
  }
  .sp-nav.active {
    right: 0;
  }
  .overlay {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background-color: #000;
    opacity: 0.75;
  }
  .overlay.active {
    display: block;
  }
}
header:has(.sp-nav.active) {
  z-index: 102;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
@media (max-width: 960px) {
  header {
    margin-top: 10px;
    position: sticky;
    background-color: #0f0f0f;
    padding: 0;
    padding-inline: 2rem;
    height: 70px;
    justify-content: space-between;
    .logo {
      font-size: 2rem;
    }
    .sp-hamburger {
      display: flex;
    }
  }
}

/*=========================
  mv
=========================*/
section.mv {
  position: relative;
  width: 100%;
  height: fit-content;
  aspect-ratio: 16/9;
  /* min-height: 700px; */
  .mv-img {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .movie-wrapper {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    .yt-player {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
  }
  .overlay-purple {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .pc-nav {
    position: absolute;
    z-index: 1;
    left: 5%;
    bottom: 10%;
    .nav-items {
    }
    .nav-items__item {
      font-size: 1.5rem;
      text-shadow: 0px 3px 6px rgb(0 0 0 / 0.75);
      margin-bottom: 1rem;
      a {
        padding-bottom: 0.25rem;
      }
    }
    .nav-items__item.current a {
      border-bottom: var(--purple) 2px solid;
    }
  }
  .copy {
    position: absolute;
    z-index: 1;
    top: 5rem;
    right: 5%;
    writing-mode: vertical-rl;
    font-size: clamp(2rem, 0rem + 3.3333vw, 4rem);
    text-shadow: 0px 3px 6px rgb(0 0 0 / 0.85);
    .row:nth-of-type(2) {
      margin-top: 5rem;
    }
  }
}
@media (max-width: 960px) {
  section.mv {
    .mv-img {
      position: relative;
      z-index: -1;
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: 50% 50%;
    }
    .overlay-purple {
      display: none;
    }
    .pc-nav {
      display: none;
    }
    .copy {
      display: none;
      right: initial;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      height: max-content;
      font-size: 1.75rem;
      .row:nth-of-type(2) {
        margin-top: 2rem;
      }
    }
  }
}

/*=========================
  images
=========================*/
section.top_images {
  padding: var(--section-padding);
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-bottom: 5rem;
  }
  .img4 {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}
@media (max-width: 960px) {
  section.top_images {
    .flex {
      flex-direction: column;
      align-items: initial;
      gap: 4rem;
      .img {
        width: 70%;
      }
      .img2 {
        margin-left: auto;
      }
    }
    .img4 {
      width: 95%;
      height: 200px;
      margin-inline: auto;
    }
  }
}

/*=========================
  food & drink
=========================*/
section.top_food-and-drink {
  padding: var(--section-padding);
  text-align: center;
  .section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
  .text {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
  }
  .flex-item {
    position: relative;
    .inner {
      position: absolute;
      inset: 0;
      padding: 5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .number {
      font-size: 3rem;
    }
    .en {
      font-size: 2rem;
    }
    .jp {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
    .link {
      font-size: 1.25rem;
      font-weight: 700;
    }
  }
}
@media (max-width: 960px) {
  section.top_food-and-drink {
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
    .text {
      font-size: 1rem;
    }
    .flex {
      flex-direction: column;
      gap: 2rem;
    }
    .flex-item {
      .inner {
        text-shadow: 0px 3px 6px rgb(0 0 0 / 0.75);
      }
      .number {
      }
      .en {
      }
      .jp {
      }
      .link {
      }
    }
  }
}

/*=========================
  gallery
=========================*/
section.top_gallery {
  padding: var(--section-padding);
  .inner {
    background-color: #262626;
    padding: 5rem;
  }
  .section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 5rem;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    .img {
      width: 100%;
    }
  }
}
@media (max-width: 960px) {
  section.top_gallery {
    padding-bottom: 5rem;
    .inner {
      padding: 4rem 1rem 3rem 1rem;
    }
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      .img {
        width: 100%;
      }
    }
  }
}

/*=========================
  shop information
=========================*/
section.top_info {
  padding: var(--section-padding);
  background-color: #262626;
  .section-title {
    font-size: 3.5rem;
    margin-bottom: 5rem;
    text-align: center;
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
  }
  .table {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    font-size: 1.125rem;
    .row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
      border-bottom: #707070 1px solid;
      padding-bottom: 2rem;
    }
  }
}
@media (max-width: 960px) {
  section.top_info {
    .section-title {
      font-size: 2rem;
      margin-bottom: 3rem;
    }
    .flex {
      flex-direction: column;
      .flex-left {
        width: 100%;
      }
      .flex-right {
        width: 100%;
      }
    }
    .table {
      column-gap: 5%;
      row-gap: 1rem;
      grid-template-columns: 30% 65%;
      font-size: 1rem;
      &:first-of-type {
        margin-bottom: 2rem;
      }
      .row {
        padding-bottom: 1rem;
      }
    }
  }
}

/*=========================
  map
=========================*/
section.top_map {
  width: 100%;
  height: 400px;
  iframe {
    width: 100%;
    height: 100%;
  }
  @media (max-width: 960px) {
    height: 300px;
  }
}

/*=========================
  footer
=========================*/
footer {
  padding: 5rem 0;
  background-color: #0f0f0f;
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
  }
  .name {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .tel-link {
    display: block;
    width: fit-content;
    margin-inline: auto;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    font-size: 1.5rem;
  }
  .table {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    font-size: 1.125rem;
    word-break: keep-all;
    .row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
    }
  }
  .footer-nav {
    .nav-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      font-size: 1.25rem;
    }
  }
}
@media (max-width: 960px) {
  footer {
    padding: 5rem 0;
    background-color: #0f0f0f;
    .flex {
      flex-direction: column;
      .flex-left {
        width: 100%;
        margin-bottom: 2rem;
      }
      .flex-right {
        width: 100%;
      }
    }
    .name {
    }
    .tel-link {
    }
    .table {
      width: 80%;
      margin-inline: auto;
      .row {
        /* word-break: keep-all; */
      }
    }
    .footer-nav {
      .nav-items {
        flex-wrap: wrap;
      }
    }
  }
}

.copyright {
  background-color: #392b1f;
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* scroll top button */
.scroll-top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  a {
    --radius: 100vmax;
    .block {
      border-radius: var(--radius);
      width: 50px;
      height: 50px;
      background: var(--purple);
      display: flex;
      justify-content: center;
      align-items: center;
      .triangle {
        display: block;
        width: 50%;
        height: 50%;
        clip-path: polygon(100% 60%, 100% 75%, 50% 45%, 0 75%, 0 60%, 50% 25%);
        background: #ffffff;
      }
    }
  }
  a::before {
    border-radius: var(--radius);
    content: '';
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  a:hover {
    opacity: 1;
  }
  a:hover::before {
    opacity: 0.25;
  }
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .scroll-top {
    bottom: 5%;
    right: 5%;
    a::before {
      display: none;
    }
  }
}
