@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #1a1a1a;
  --white-color: #fff;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--white-color);
  background-color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 80px 0;
}

.l_header {
  position: fixed;  /* ヘッダー追従 */
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: 70px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l_header-logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.l_header-logo_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_header-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: var(--black-color);
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
  }
}

.l_header-nav_list {
  display: flex;
  gap: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    flex-direction: row;
  }
}

.l_header-nav_item {
  font-size: 16px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.l_header-nav_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_footer {
  width: 100%;
  height: 70px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.l_footer-icon {
  width: 30px;
  height: 30px;
}

.l_footer-copy {
  font-size: 10px;
  text-align: center;
  padding: 6px 0;
}

.l_section_body {
  margin-top: 40px;
}



/*---------- module ----------*/
.m_icon-link {
  width: 30px;
  height: 30px;
  display: flex;
}

.m_icon-link img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* アスペクト比を崩さず収める */
}

.m_hamburger {
  display: block;
  width: 32px;
  height: 28px;
  position: relative;
  z-index: var(--z-index-modal);
  border: none;
  background: transparent;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  background: var(--white-color);
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.m_btn-wrapper {
  width: 200px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
}

.m_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: bold;
  letter-spacing: 0.1em;
}

.m_btn__more {
  font-size: 16px;
  border: 2px solid var(--white-color);
  background: var(--black-color);
  position: relative;
  z-index: var(--z-index-default);
}

.m_btn__more::before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--white-color);
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(45deg);
}

.m_menu_scroll {
  margin-top: 40px;
}

.m_menu_scroll_wrap {
  display: flex;
  overflow: hidden;
}

.m_menu_scroll_list {
  display: flex;
  list-style: none;
  padding: 0 16px 0 0; /* 右に余白を入れてループの繋ぎ目対策 */
  gap: 16px;
  animation: m_menu_scroll_list 120s infinite linear 0.5s both;
}

@keyframes m_menu_scroll_list {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.m_menu_scroll_item {
  width: calc(100vw / 3);
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .top_menu_scroll_item {
    width: 100%;
    flex-shrink: initial;
    aspect-ratio: 1 / 1;
  }
}

/* 1280px以上で画像の横幅を300pxに固定 ### */
@media screen and (min-width: 1280px) {
  .m_menu_scroll_item {
    width: 300px;
    flex-shrink: 0;
  }
}


.m_menu_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  aspect-ratio: 1 / 1; 
}

/*---------- top ----------*/
.top_kv {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url("../img/kv.jpg") center/cover no-repeat;

}

.top_kv-inner {
  position: relative;
  height: 100%;
}

.top_kv_box {
  width: calc(100% - 16px * 2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_kv_box {
    width: 100%;
  }
}

.top_kv_copy {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 48px;
  }
}

.top_kv_sub-copy {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy {
    font-size: 20px;
  }
}

.top_about {
  max-width: 880px;
  margin: 0 auto;
}

.top_section_title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: var(--z-index-default);
}

.top_about_heading {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.top_about_heading:not(:first-child) {
  margin-top: 40px;
}

.top_about_txt {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.top_menu_item {
  margin-left: -16px;
  margin-right: -16px;
}

@media screen and (min-width: 768px) {
  .top_menu_item {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
    .top_menu_scroll_list {
      animation: none;
      padding: 0;
      transform: translateX(0); /* 位置を固定 */
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: calc(var(--content-width) + 32px);
      margin: 0 auto;
    }
    .top_menu_scroll_list + .top_menu_scroll_list {
      display: none;         /* 後ろのulを非表示 */
    }
}

.top_menu_btn-wrapper {
  margin-top: 40px;
}

.top_btn__reserve {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--black-color);
  position: relative;
  z-index: var(--z-index-default);
  margin-top: 8px;
}

.top_icon_external-link {
  width: 24px;
  height: auto;
}

.top_shop-info {
  /* height: 100vh; */
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url("../img/interior.jpg") center/cover;
  max-height: fit-content;   /* CSSで要素の最大高さを「コンテンツが自然に収まる高さ」に制限する設定です ### */           
}

.top_shop-info-inner {
  width: 100%;
  max-width: 800px; 
}

@media screen and (min-width: 786px) {
  .top_shop-info {
    background-position: center 40%; 
  }
}


.top_shop-info_txt {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8; 
}

.top_shop-info_txt_other {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.top_reserve_txt {
  font-size: 12px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.top_access {
  padding: 16px;
}

@media screen and (min-width: 1080px) {
  .top_access_flex-container {
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 40px; 
    margin-bottom: 40px;
  }
}

.top_access-map {
  width: 308px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .top_access-map {
    width: 600px; 
    margin: 0; 
  }
}

.top_access-map iframe {
  width: 100%;
  height: 175px;
  display: block;
}

@media screen and (min-width: 1080px) {
  .top_access-map iframe {
    height: 300%; 
  }
}

.top_access_address {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .top_access_address {
    margin-top: 0;
    text-align: left;
  }
}

.top_access-table {
  width: 100%;
  table-layout: fixed;
  white-space: nowrap;
  margin: 40px auto 0;
  font-size: 14px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .top_access-table {
    margin-left: 0;
  }
}

.top_access-th {
  width: 35%;
  padding: 0 16px 0 8px;
  text-align: left;
}

.top_access-td {
  padding: 16px;
}

/*---------- menu ----------*/
.menu_kv {
  height: 50vh;
  background: url("../img/kv.jpg") center/cover;
}

.menu_kv-inner {
  position: relative;
  height: 100%;
}

.menu_kv_box {
  width: calc(100% - 16px * 2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu_kv_box {
    width: 100%;
  }
}

.menu_kv_title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .menu_kv_title {
    font-size: 32px;
  }
}

.menu_about {
  background: var(--black-color);
  color: var(--white-color);
}

.menu_section_title {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: left;
  z-index: var(--z-index-default);
}

.menu-list {
  margin-top: 40px;
}

.menu_txt {
  font-weight: bold;
}

.menu_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.menu_item {
  height: 58px;
  font-size: 14px;
}

.menu_list_seasonal .menu_item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .menu_item {
    font-size: 16px;
  }
}


/* 季節限定のメニュー名を960px〜：3列 */
@media screen and (min-width: 960px) {
  .menu_list_seasonal .menu_item {
    width: calc((100% - 30px * 2) / 3);
  }
}

/* ドリンク、フードのメニュー名　〜959px：2列 */
.menu_list_drink .menu_item, 
.menu_list_food .menu_item {
  width: calc((100% - 30px) / 2);
}

/* ドリンク、フードのメニュー名  960px〜：3列 */
@media screen and (min-width: 960px) {
  .menu_list_drink .menu_item,
  .menu_list_food .menu_item {
    width: calc((100% - 30px * 2) / 3);
  }
}

.p-menu__scroll {
  margin-left: -16px;
  margin-right: -16px;
}

@media screen and (min-width: 768px) {
  .p-menu__scroll {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_hamburger-bar {
  transition:
    top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.js_nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

@media screen and (min-width: 1080px) {
  .js_nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_copy,
.js_sub-copy {
  opacity: 0;
  transform: translateY(30px);
}

.js_service {
  opacity: 0;
  transform: translateY(40px);
}