@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*
      全ての要素のbox-sizingを、htmlで決めた値に綺麗に揃える「土台」、
      下のと一緒に使用する
    */
}

*,
*::before,
*::after {
  box-sizing: inherit;
  /*
      全ての要素、疑似要素に対して、
      box-sizingを「親から伝承する（inherit）」ようにしている。
      上のとセットで記述することで、
      一部の要素だけbox-sizing: content-box;に戻したいとき、
      ・親だけ変えれば、その支配下にまとめて効かせらえる
      ・{ box-sizing: border-box; }だけよりも後からコントロールしやすい
    */
}
:root {
  --black: #222;
  --black-b: #666;
  --white: #fff;
  --pink: #cd1f64;
  --yellow: #f1b459;
  --purple: #610d50;
  --deep-purple: #341637;
  --shadow: 2px 2px 2px #333;

  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body,
html {
  font-family: "Noto Sans JP", "sans-serif";
  line-height: 1.6;
  letter-spacing: 0.12rem;
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit; /*親要素の文字色と同じにする*/
}

ul {
  list-style: none;
  padding-left: 0;
}

/*--------------------------------------------------------------
 header
 --------------------------------------------------------------*/

.site-title {
  max-width: 250px;
  width: 100%;
  height: auto;
  position: absolute;
  top: 40%;
  left: 50%;
}

/*========================================
  animation
========================================*/

.blur {
  animation: blurAnime 2s forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02) translateX(-50%);
  }

  to {
    filter: blur(0);
    transform: scale(1) translateX(-50%);
  }
}

.sp-header {
  display: none;
}

.header-bar {
  display: block;
  width: 100%;
  height: 60px;
  /*header 固定*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  /*背景を透過*/
  background: linear-gradient(rgba(97, 13, 80, 0.6), rgba(97, 13, 80, 0));
  transition: background-color 0.5s ease;

  display: flex;
  align-items: center;
  justify-content: end; /*navを右寄せ*/
}

.header-bar.is-scroll {
  background-color: rgba(100, 54, 91);
}

.header-bar nav {
  width: 75%;
  align-items: center;
}
.nav-list {
  color: var(--white);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.nav-list li {
  text-align: center;
}
.nav-list li a {
  text-shadow: 1px 1px 1px var(--black);
}
.nav-list li img {
  width: 2rem;
}

/*--------------------------------------------------------------
 mv
 --------------------------------------------------------------*/

.mv {
  width: 100%;
  height: 100vh;
  background:
    linear-gradient(rgba(92, 86, 92, 0.2), rgba(80, 68, 80, 0.2)),
    url(../img/counter.jpg) center/cover no-repeat;
}

/*--------------------------------------------------------------
 main 共通
 --------------------------------------------------------------*/

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding-inline: clamp(16px, 5vw, 48px);
}

.section-title {
  display: inline-flex;
  font-size: 2.3em;
  text-shadow: var(--shadow);
  letter-spacing: 0.18rem;
  margin-bottom: 2.5rem;
  padding: 0 2.2em 0.6rem;
  /*タイトル 横線用*/
  align-items: center;
  justify-content: center;
  /*タイトルと横線との余白*/
  gap: 2em;
}

/* タイトル 横線*/
.section-title::before,
.section-title::after {
  content: "";
  width: 0.6em;
  height: 0.12rem;
  background-color: currentColor;
}

.color-p {
  color: var(--pink);
}
.color-w {
  color: var(--white);
  border-bottom: 0.13rem solid var(--pink);
}

section {
  padding-top: 4.6em;
  padding-bottom: 7.5em;
}

.btn {
  display: inline-block;
  transition: all 0.2s ease;
}

/* price、menu の半透明部分 */
.panel {
  position: relative;
  padding: 5% clamp(18px, 2%, 32px);
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(219, 217, 217, 0.5);
  border-radius: 10px;
}

/*========================================
  animation
========================================*/

.fadeIn-item {
  opacity: 0;
}

.fadeUp {
  animation: fadeUpAnime 2s ease-out 0s 1 forwards;
}
/*
2s : 2秒かけて移動
0s：アニメーションが始まるまでの時間（0sですぐに実行）
1：アニメーションの繰り返し回数（1回）
forwards：アニメーション終了時の状態をそのまま維持
*/

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
 #recruit
 --------------------------------------------------------------*/

.recruit {
  background:
    linear-gradient(rgba(24, 28, 29, 0.5), rgba(23, 26, 26, 0.5)),
    url(../img/mv\ 3.jpg) top/cover no-repeat;
  color: var(--white);
}

.recruit-inner {
  display: flex;
  align-items: center;
}

.recruit-inner > img {
  width: 55%;
  object-fit: cover;
}

.recruit-inner .right-text {
  width: 45%;
  justify-items: center;
  line-height: 2;
  letter-spacing: 0.13rem;
}
.right-text .message {
  margin-bottom: 0.5rem;
  text-shadow: var(--shadow);
}
.right-text > .btn-appeal-message {
  color: #f1e539;
  font-weight: bold;
  text-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.recruit .btn {
  max-width: 150px;
  font-size: 1.2rem;
  color: var(--black);
  background: linear-gradient(180deg, rgba(238, 245, 251), rgba(143, 190, 233));
  letter-spacing: 3px;
  border-radius: 10px;
  border: 1px solid var(--black-b);
  box-shadow: 2px 2px 4px 0 rgba(67, 84, 235, 0.5);
  padding: 0.8rem 2rem;

  display: flex;
  align-items: center;
  margin: 0 auto;
}
.recruit .btn img {
  width: 2rem;
  margin-right: 1rem;
}

/*========================================
  animation
========================================*/

.recruit .updown {
  animation: updownAnimation 4s ease-in-out infinite;
}
@keyframes updownAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
  /*0%：スタート時(0sの時)
    100%：終了時(4sの時) */
}

.recruit .btn:hover {
  transform: scale(1.1);
}
.recruit .updown:hover {
  animation-play-state: paused;
}

/*========================================
  動画表示
========================================*/

.video-modal {
  display: none;
}
.video-modal.is-open {
  display: block;
}

.video-open-btn {
  max-width: 180px;
  font-size: 1.2rem;
  color: var(--white);
  background: linear-gradient(180deg, rgb(141, 143, 146), rgb(108, 123, 136));
  letter-spacing: 3px;
  border-radius: 10px;
  border: 1px solid var(--black-b);
  box-shadow: 2px 2px 4px 0 rgba(67, 84, 235, 0.5);
  padding: 0.8rem 2rem;
  margin-bottom: 1.8rem;
  cursor: pointer;
}
.video-open-btn:hover {
  transform: scale(1.05);
}

.video-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.video-modal__panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 1000px);
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem;
  z-index: 1000;
}

.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  font-size: 1.5rem;
  background: transparent;
  color: var(--white);
  border: 10px;
  cursor: pointer;
  z-index: 10;
}

.video-modal__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

.video-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 音ボタン */
.video-modal__sound {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.video-modal__soundIcon {
  width: 22px;
  height: 22px;
  display: block;
}

/*--------------------------------------------------------------
 #media
 --------------------------------------------------------------*/

.media {
  background:
    linear-gradient(rgba(29, 16, 31, 0.7), rgba(62, 47, 63, 0.7)),
    url(../img/mv\ 2.jpg) center/cover;
  color: var(--white);
}

.media .blog .section-title::before,
.media .blog .section-title::after {
  content: none;
}

/*=====================================
 instagram 
======================================*/

.ig_inner {
  background-color: rgba(87, 81, 86, 0.7);
  padding: 5%;
  margin-block: 30px 50px;
}

/*.ig-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.ig-item {
  background-color: rgba(224, 210, 221, 0.7);
  border-radius: 5px;
  overflow: hidden;
}

.ig-link:hover {
  opacity: 0.7;
}

/*=======================================
 Blog / page -- Blog
========================================*/

.blog-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  align-items: center;
}

.blog-item {
  background-color: rgba(224, 210, 221, 0.7);
  border-radius: 5px;
  overflow: hidden;
}

.blog-link {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 3rem;
  font-size: 0.8rem;
  color: var(--black);
  text-align: left;
}

.blog-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.blog-date {
  margin-top: 10px;
}

.blog-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: flex;
  overflow: hidden;
}

.blog-link:hover {
  opacity: 0.7;
}

.nav-links {
  display: none;
}

.pagination {
  text-align: center;
  margin: 20px 0;
}

.page-numbers {
  display: inline-block;
  margin: 0 15px;
}

/*--------------------------------------------------------------
 #news / page news
 --------------------------------------------------------------*/

.news,
.main-news {
  background:
    linear-gradient(rgba(246, 246, 246, 0.4), rgba(246, 246, 246, 0.4)),
    url(../img/news_bg.jpg) center/cover;
}

/*page-news*/
.main-news {
  padding-block: 120px 100px;
}

.news-detail {
  display: flex;
  flex-wrap: wrap;
  justify-self: stretch;
  margin-top: 40px;
  /*幅を狭めたい時
  width:100%;
  max-width:1100px; */
}

.news-detail dt {
  width: 30%;
}

.news-detail dd {
  width: 70%;
  text-align: left;
}

.news-detail dt,
.news-detail dd {
  border-bottom: 1px solid var(--black);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

.nav-btn {
  position: relative;
  width: 150px;
  font-size: 0.8rem;
  padding: 1rem 2.5rem;
  margin-top: 2.5rem;
  outline: none;
}

/*========================================
  animation
========================================*/

/*線の設定*/
.nav-btn::before,
.nav-btn::after {
  content: "";
  position: absolute;
  border: solid #333;
  width: 25px;
  height: 25px;
  transition: all 0.3s ease-in-out;
}

/*事前に出現させる線の位置*/
.nav-btn::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}
.nav-btn::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

/*hoverした際の線の形状*/
.nav-btn:hover::before,
.nav-btn:hover::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-color: var(--black-b);
}

/*--------------------------------------------------------------
 #price
 --------------------------------------------------------------*/

.price {
  background:
    linear-gradient(rgba(29, 16, 31, 0.7), rgba(62, 47, 63, 0.7)),
    url(../img/counter2.jpg) center/cover;
    color: var(--white);
    text-shadow: var(--shadow);
}

.price .panel::before {
  background-color: rgba(141, 127, 143, 0.65);
}

/*半透明部分を後ろに*/
.panel > .price-inner {
  position: relative;
}

.price-inner {
  max-width: 800px;
  min-height: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
}

.price-title {
  font-size: 1.1rem;
  color: var(--yellow);
  text-shadow: var(--shadow);
  padding-left: 15px;
  padding-bottom: 0.8rem;
  margin-bottom: 1.1rem;
  position: relative;
}
.price-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 2px;
  background-color: var(--yellow);
}

.left-price {
  width: 80%;
}
.set-price {
  text-align: left;
  margin-bottom: 2.5rem;
}
.hour-price {
  text-align: left;
}

.priceValue {
  padding-left: 15px;
}
.number {
  font-size: 1.76rem;
  font-variant-numeric: tabular-nums;
}
.yen,
.tax {
  font-size: 0.9rem;
  margin-left: 0.12rem;
}
.note {
  font-size: 0.7rem;
  text-align: right;
  margin-top: 5px;
}

.right-menu {
  text-align: right;
}

.frame {
  overflow: hidden;
  display: grid;
  place-items: center;
}
.frame img {
  height: 350px;
  object-fit: contain;
}

.right-menu a {
  max-width: 250px;
  display: inline-block;
  color: var(--white);
  text-shadow: var(--shadow);
  letter-spacing: 0.17rem;
  margin-top: 30px;
  padding: 0.8rem 2rem;
  background: linear-gradient(
    180deg,
    rgb(216, 214, 67), rgb(224, 131, 25)
  );
  border-radius: 10px;
  border: 1px solid var(--black-b);
  box-shadow: 2px 2px 4px 0 rgba(204, 191, 71, 0.7);
  cursor: pointer;
}

.right-menu a:hover {
  transform: scale(1.02);
}

/*--------------------------------------------------------------
 #access
 --------------------------------------------------------------*/

.access {
  background:
    linear-gradient(rgba(224, 206, 224, 0.6), rgba(224, 206, 224, 0.6)),
    url(../img/access_bg.jpg) center/cover;
}

.access-inner {
  display: flex;
  align-items: center;
}

.map {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* iframeのサイズ調整 */
.map iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.map-detail {
  margin-left: 80px;
}
.map-detail dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.map-detail dt {
  width: 30%;
}
.map-detail dd {
  width: 70%;
}
.map-detail dt,
.map-detail dd {
  text-align: left;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
 footer
--------------------------------------------------------------*/

footer {
  background: linear-gradient(rgba(102, 102, 102), rgba(23, 23, 23));
  color: var(--white);
  padding-block: 40px 10px;
}

.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
}

.logo {
  display: inline-block;
  max-width: 140px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.footer-list {
  font-size: 0.8rem;
}
.footer-list li {
  margin-bottom: 5px;
}

footer p {
  font-size: 0.5rem;
  margin-top: 20px;
}

/*topに戻るボタン*/
.top-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--deep-purple);
  border: 1px solid white;
  position: fixed;
  bottom: 25px;
  right: 25px;
}

.top-btn::after {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
  /*三角位置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*===============================================================
 page -- DrinkMenu
===============================================================*/

.main-menu {
  background:
    linear-gradient(rgba(102, 102, 102, 0.6), rgba(102, 102, 102, 0.6)),
    url(../img/drink\ 03.jpg) center/contain;
  font-weight: bold;
  padding-bottom: 40px;
}

.main-menu .panel {
  padding: 56px clamp(28px, 5%, 60px);
}
.main-menu .panel::before {
  backdrop-filter: blur(5px);
}
.main-menu .panel:nth-child(n + 2) {
  margin-block: 30px;
}
.main-menu section {
  padding-block: 3.75em;
}
.main-menu .section-title {
  margin-top: 100px;
  border: none;
}

/*半透明部分を後ろに*/
.panel > .menu {
  position: relative;
}

.menu {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.menu-group-title {
  font-size: 1.87rem;
  color: #610d50;
  text-align: center;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 0.62rem;
  margin-bottom: 3.75rem;
}

.menu-group {
  margin-bottom: 60px;
}
.menu-title,
.menu-list {
  font-size: 1.75rem;
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 40px;
  row-gap: 10px;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.menu-group .menu-item-name {
  padding-left: 40px;
}

.menu-item-price {
  text-align: right;
}
.main-menu .note {
  font-size: 1rem;
  margin-top: 25px;
}

.notice-text,
.notice-list {
  font-size: 1.25rem;
  margin-bottom: 35px;
}
.notice-list li {
  list-style: disc;
  margin-left: 25px;
}

/*===============================================================
 page -- Recruit
===============================================================*/

.main-recruit {
  background:
    linear-gradient(rgba(217, 217, 217, 0.4), rgba(217, 217, 217, 0.4)),
    url(../img/page-recruit_bg.jpg) center/cover;
  font-weight: bold;
  padding-block: 40px;
}

.main-recruit .container {
  max-width: 1100px;
  margin: 0 auto;
}
.main-recruit .section-title {
  margin-top: 100px;
  margin-bottom: 0;
}

.recruit-catch {
  font-size: 1.1rem;
}

.recruit-detail {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: center;
  margin-block: 80px;
}
.recruit-detail dd {
  text-align: left;
}

.dd-list li {
  padding-left: 1em;
  position: relative;
}
/* list横のダイヤ */
.dd-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  transform: rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  background-color: var(--black);
}

.ac-list dd {
  margin-bottom: 15px;
}

.blank {
  margin-top: 1.87rem;
}
.border {
  grid-column: 1 / -1;
  height: 1px;
  background-color: var(--black);
}

.recruit-msg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding-inline: 2%;
  margin-bottom: 80px;
}

.msg-title {
  font-size: 1.25rem;
  color: var(--pink);
  margin-bottom: 30px;
}

.msg-text p {
  margin-bottom: 20px;
}

.recruit-link {
  width: 150px;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
}

.recruit-link img {
  width: 2.2rem;
  margin-right: 10px;
}

/*===============================================================
 page 404
===============================================================*/

.page404 {
  min-height: calc(100vh - 150px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.no-page {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.news-post {
  text-align: left;
}

/*===============================================================
 single page -- news post
===============================================================*/

.main-news .news-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.news-post dd {
  padding-left: 1rem;
}

/*===============================================================
 single page -- blog post
===============================================================*/

.post-blog > section {
  padding-top: 0;
}

/*===============================================================
 news post / blog post 共通
===============================================================*/

.bg {
  width: 100%;
  height: 40vh;

  background:
    linear-gradient(rgba(29, 16, 31, 0.3), rgba(62, 47, 63, 0.3)),
    url("../img/counter2.jpg") 50% 45% / cover no-repeat;
}

/*===============================================================
 

 レスポンシブ


===============================================================*/

@media (max-width: 1024px) {
  /*--------------------------------------------------------------
 header
 --------------------------------------------------------------*/

  .header-bar nav {
    width: 70%;
  }

  /*--------------------------------------------------------------
 main Recruiting
 --------------------------------------------------------------*/

  .recruit-inner > img {
    width: 50%;
  }
  .recruit-inner .right-text {
    width: 50%;
  }

  /*--------------------------------------------------------------
 main price
 --------------------------------------------------------------*/

  .price-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--yellow);
  }

  .left-price {
    width: 100%;
  }
  .set-price {
    text-align: center;
  }
  .hour-price {
    text-align: center;
  }

  /*--------------------------------------------------------------
 main Access
 --------------------------------------------------------------*/

  .access {
    background:
      linear-gradient(rgba(224, 206, 224, 0.6), rgba(224, 206, 224, 0.6)),
      url(../img/access_bg.jpg) center/cover;
  }

  .access-inner {
    display: grid;
    gap: 2rem;
    align-items: start;
  }

  .map-detail {
    margin-left: 0;
  }
  .map-detail dl {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .map-detail dt {
    width: 30%;
  }
  .map-detail dd {
    width: 70%;
  }
  .map-detail dt,
  .map-detail dd {
    text-align: left;
    margin-bottom: 15px;
  }

  /*--------------------------------------------------------------
 footer
 --------------------------------------------------------------*/

  footer {
    background: linear-gradient(rgba(102, 102, 102), rgba(23, 23, 23));
    color: var(--white);
    padding-block: 30px 10px;
  }

  .footer-list {
    font-size: 0.8rem;
  }
  .footer-list li {
    margin-bottom: 10px;
  }

  .logo {
    display: inline-block;
    max-width: 130px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  footer p {
    font-size: 0.5rem;
    margin-top: 20px;
  }

  /*===============================================================
 page -- DrinkMenu
===============================================================*/

  .main-menu {
    padding-block: 60px;
  }

  .menu-group-title {
    font-size: 1.5rem;
  }

  .menu-title,
  .menu-list {
    font-size: 1.5rem;
  }

  /*===============================================================
 page -- Recruit
===============================================================*/

  .recruit-detail {
    grid-template-columns: 150px 1fr;
  }
  .recruit-detail dd {
    text-align: left;
  }

  .recruit-msg {
    display: flex;
    flex-direction: column-reverse;
  }

  .msg-text {
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  /*--------------------------------------------------------------
 header
 --------------------------------------------------------------*/

  .header-bar {
    display: none;
  }
  .sp-header {
    display: block;
  }

  .site-title {
    max-width: 180px;
  }

  .nav-menu {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--deep-purple);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    transition: all 0.6s ease;
    opacity: 0;
    visibility: hidden;
  }

  .nav-list {
    flex-direction: column;
    font-size: 1rem;
    padding-top: 8rem;
    font-weight: bold;
    letter-spacing: 4px;
  }

  .nav-list li {
    padding-bottom: 1.75rem;
  }
  .nav-list li img {
    width: 2rem;
    display: inline-block;
  }
  .nav-list li:hover {
    transform: scale(1.2);
    transition: all 0.5s;
    text-shadow: 2px 2px 4px #94afb9;
  }

  .open .nav-menu {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
  }

  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--deep-purple);
    /*丸のスタート位置と形状*/
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all 0.5s ease;
  }

  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }

  /*toggle-btn*/

  .toggle-btn {
    width: 80px;
    height: 80px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--black-b);
    cursor: pointer;
    z-index: 20;
    transition: all, 0.5s;
  }
  .toggle-btn span {
    display: block;
    width: 50%;
    height: 2px;
    background-color: var(--white);
    transition: all, 0.5s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .toggle-btn span:nth-child(1) {
    top: 30%;
  }
  .toggle-btn span:nth-child(2) {
    top: 45%;
  }
  .toggle-btn span:nth-child(3) {
    top: 60%;
  }

  .toggle-btn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
  }

  .open .toggle-btn span:nth-child(1) {
    transform: translateX(-50%) rotate(-45deg);
    top: 40%;
    width: 40%;
  }
  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle-btn span:nth-child(3) {
    transform: translateX(-50%) rotate(45deg);
    top: 40%;
    width: 40%;
  }

  .open .toggle-btn span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 10px;
    left: 15px;
  }

  /*--------------------------------------------------------------
 main 共通
 --------------------------------------------------------------*/

  .section-title {
    display: flex;
    font-size: 1.75rem;
    padding: 0 0 0.6rem 0;
  }

  section {
    padding-bottom: 5.5em;
  }

  /*--------------------------------------------------------------
 main Recruiting
 --------------------------------------------------------------*/

  .recruit-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .recruit-inner img {
    width: 90%;
  }

  .recruit-inner .right-text {
    width: 100%;
    margin-bottom: 2.5rem;
  }

  .video-modal__media {
    aspect-ratio: 1 / 1;
  }

  /*--------------------------------------------------------------
 main news // page -- news
 --------------------------------------------------------------*/

  .news-detail {
    text-align: left;
  }
  .news-detail dt,
  .news-detail dd {
    width: 100%;
  }

  .news-detail dt {
    border: none;
    margin-bottom: 0;
  }

  .news-detail dd {
    border-bottom: 1px solid var(--black);
    padding: 0 0 1rem 1rem;
    margin-bottom: 2.5rem;
  }

  /*--------------------------------------------------------------
 main price
 --------------------------------------------------------------*/

  .price .panel {
    padding: 4rem 1rem;
  }

  .price-inner {
    grid-template-columns: 1fr;
  }

  .right-menu {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .right-menu a {
    max-width: 180px;
  }

  /*--------------------------------------------------------------
 footer
--------------------------------------------------------------*/

  .logo {
    max-width: 120px;
  }

  /*===============================================================
 page -- DrinkMenu
===============================================================*/

  .menu-title,
  .menu-list {
    font-size: 1.2rem;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-group .menu-item-name {
    padding-left: 1rem;
  }

  /*===============================================================
 page -- Recruit
 ===============================================================*/

  .recruit-catch {
    font-size: 0.8rem;
  }

  .recruit-detail {
    grid-template-columns: 1fr;
  }

  .msg-title {
    font-size: 1.25rem;
    color: var(--pink);
    margin-bottom: 30px;
  }

  .msg-text p {
    margin-bottom: 20px;
  }

  .recruit-link {
    margin-bottom: 0;
  }

  /*===============================================================
 page 404
===============================================================*/

  .page404 {
    min-height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .no-page {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
  }

  /*===============================================================
 page -- BLOG
===============================================================*/

  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /*===============================================================
 news post / blog post 共通
===============================================================*/

  .bg {
    height: 30vh;
  }

  /*=====================================
 instagram 
======================================*/

  .ig_inner {
    background-color: rgba(87, 81, 86, 0.7);
    padding: 5% 3%;
    margin-block: 30px;
  }

  .ig-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
  }

  .ig-item {
    background-color: rgba(224, 210, 221, 0.7);
    border-radius: 5px;
    overflow: hidden;
  }

  .ig-link:hover {
    opacity: 0.7;
  }
}

@media (max-width: 500px) {
  .map-detail dt {
    width: 100%;
  }
  .map-detail dd {
    width: 100%;
    padding-left: 1.1rem;
  }
  .map-detail dt,
  .map-detail dd {
    margin-bottom: 5px;
  }
}
