@charset "utf-8";

:root {
  --color-back: #0c2438;
  --color-font1: #ffffff;
  --color-font2: #c9d6df;
  --color-back3: #e4cc9e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  min-width: 320px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  background-color: var(--color-back);
  color: var(--color-font1);
  margin: 0 auto;
  font-size: 1.8rem;
}

.h1 {
  font-size: 6rem;
}

.h2 {
  font-size: 4rem;
}

.h3 {
  font-size: 2.8rem;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/*  mainとfooterの幅指定 */
.main-area,
.footer-area {
  max-width: 1440px;
  margin: 0 auto;
}

/* 共通アニメーション（ふわっと表示） */
.float {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transform: translateY(150px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

/* ------------共通header st ------------ */

header {
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  border-radius: 50px;
}

.header-inner h1 {
  padding-left: 30px;
}

/* ハンバーガーメニュー pcでは非表示 */
.hambuger-menu {
  display: none;
}

/* スマホ用スクロールダウン（pcでは非表示） */
.container_scroll {
  display: none;
}

.header-nav ul {
  display: flex;
}

.header-nav ul li {
  margin: 20px;
  padding-top: 10px;
  font-size: 2rem;
}

.header-nav ul li a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 2rem;
  padding: 0.3em 0.6em;
  display: inline-block;
  transition: all 0.3s ease;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}

.header-nav ul li a:hover {
  color: #aeeff8;
  text-shadow: 0 0 8px rgba(174, 239, 248, 1);
  font-size: 2.4rem;
}

/* ------------共通header ed ------------ */

/* ------------ index fs-view  ------------ */

.fs-view-content {
  background-size: cover;
  height: 100vh;
  background-image: url(./img/common-img/img-kurage.jpg);
  display: flex;
  align-items: center;
  padding-left: 22%;
}

.slogan {
  font-size: 5rem;
}

/* sloganアニメ―ション */
.breathing-text {
  display: inline-block;
  text-shadow: 0 0 8px rgba(255, 255, 255, 1);
  animation: breathingText 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes breathingText {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}

/* スクロールダウン st */
.scroll_down {
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 30px;
  position: absolute;
}

.scroll_down p {
  letter-spacing: 0.1vw;
}

.scroll_down a {
  display: inline-block;
  line-height: 1.8rem;
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--color-font1);
  letter-spacing: 2px;
  text-decoration: none;
}

.scroll_down .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #ffffff;
  border-radius: 23px;
}

.scroll_down .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #ffffff;
  border-radius: 50%;
  animation: ani-mouse 2.5s linear infinite;
}

@keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 70%;
  }
  40% {
    opacity: 0;
    top: 30%;
  }
  70% {
    opacity: 1;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 70%;
  }
}
/* スクロールダウン ed */

/* ------------ index fs-view  ------------ */

/* ----------------- index main st----------------- */

.about h2 {
  width: 100%;
  padding: 15rem 0 2rem 0;
  position: relative;
  text-align: center;
}

.about h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  display: inline-block;
  background-color: #ffffff;
}

.cafe-concept {
  padding-top: 10rem;
}

.cafe-concept h2 {
  text-align: center;
  margin: 0 20px;
}

.concept-wrapper {
  line-height: 6rem;
  padding: 100px 0 150px 0;
  display: flex;
  justify-content: center;
}

.concept-img {
  width: 530px;
  height: 350px;
  margin-right: 5rem;
  object-fit: cover;
  background-image: url(./img/common-img/index-concept.jpg);
  border-radius: 5px;
}

.concept-wrapper p {
  font-size: 1.7rem;
  padding-top: 50px;
  color: var(--color-font2);
}

/* ------------ news st ------------ */

.news {
  padding-bottom: 15rem;
}

.news h2 {
  text-align: center;
  margin: 0 20px;
  padding: 20px 0;
}

.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0 100px;
}
.news-list .item {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding: 20px 20px;
}

.item {
  gap: 4rem;
}
.news-list .item:first-child a {
  border-top: 1px solid #ccc;
}
.news-list .item .date {
  margin: 0;
  min-width: 120px;
  padding: 0 20px 0 0;
}
.news-list .item .title {
  margin: 0;
  width: 100%;
}

/* ------------ news ed ------------ */

/* ------------ menu-intro st ------------ */

.menu-intro {
  padding-bottom: 15rem;
}

.intro-wrapper {
  margin: 0 auto;
  padding: 2rem;
  line-height: 2.4rem;
}

.intro-wrapper h2 {
  text-align: center;
  font-size: 2.8rem;
}

.intro-wrapper h2 small {
  font-size: 1.6rem;
  display: block;
  margin-top: 0.5rem;
  color: #c9d6df;
}

.br {
  display: none;
}

.intro-wrapper p {
  text-align: center;
  padding: 50px 0 30px 0;
  line-height: 6rem;
}

.menu-img {
  padding-top: 2rem;
  width: 60%;
  display: flex;
  margin: 0 auto;
  gap: 20px;
  justify-content: center;
}

.food-img1,
.desert-img2,
.alcohol-img3 {
  width: 20.8%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.food-img1 {
  background-image: url(./img/MENU/food/steak@2x.jpg);
}

.desert-img2 {
  background-image: url(./img/MENU/desert/berry-cake@2x.jpg);
}

.alcohol-img3 {
  background-image: url(./img/MENU/alcohol/buru-lady@2x.jpg);
}

.menu-button {
  display: inline-block;
  padding: 1.5rem 4rem;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #e0f7fa;
  background: linear-gradient(
    135deg,
    rgba(0, 60, 85, 0.6),
    rgba(0, 120, 150, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.menu-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.menu-button:hover::before {
  transform: scale(1.5);
  opacity: 1;
}

.menu-button:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}

.button-wrapper {
  text-align: center;
  padding-bottom: 30px;
}

/* ------------ menu-intro ed ------------ */

/* ----------------- index main ed----------------- */

/* ----------------- menu-page header----------------- */

.menu-header {
  width: 100%;
  height: 30rem;
  background-image: url(./img/common-img/menu-header4.jpg);
  background-size: cover;
  background-position: center 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 10px #00000055;
}

/* ----------------- menu-page header----------------- */

/* ----------------- menu main st----------------- */

.menu-concept {
  background: no-repeat;
  background-image: url(./img/MENU/menu-concept/c.img-1.png),
    url(./img/MENU/menu-concept/c.img-2.png);
  background-position: 20% 25%, 75% 80%;
  background-size: 20% auto, 20% auto;
}

.menu-concept h2 {
  text-align: center;
  padding: 9rem 0 0 0;
}

.m-concept-wrapper {
  width: 100%;
  height: 60em;
  padding: 9rem 12rem;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.concept-text {
  color: var(--color-font2);
  display: inline-block;
  margin: 0 auto;
  line-height: 5.5rem;
  text-align: left;
}

.time-guide {
  text-align: center;
}

.menu {
  margin: 0 auto;
  padding: 9rem 0;
}

.menu h2 {
  text-align: center;
}

.item-box {
  text-align: center;
  padding: 9rem 0 5rem 0;
}

.bar-guide {
  text-align: center;
  padding: 9rem 0 5rem 0;
}

.food h2 {
  padding: 9rem 0 1rem 0;
}

.menu-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.menu-nav a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  background: rgba(71, 140, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 80, 255, 0.3);
}

.menu-nav a:hover {
  background: rgba(71, 140, 255, 0.4);
  box-shadow: 0 6px 16px rgba(0, 100, 255, 0.4);
  transform: translateY(-2px);
}

.menu-images {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.menu-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 300px);
  gap: 40px 20px; /* row-gap 80px, column-gap 20px */
}

.menu-grid section {
  /* グリッドセルが360px以上確保される */
  width: 100%;
  box-sizing: border-box;
}

/* ----------------- menu main ed----------------- */

/* ----------------- access-page header----------------- */

.access-header {
  width: 100%;
  height: 30rem;
  background: no-repeat;
  background-image: url(./img/common-img/access-header.jpg);
  background-size: cover;
  background-position: center 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 10px #00000055;
}

/* ----------------- access-page header----------------- */

/* ----------------- access main st----------------- */

.map h2 {
  padding-top: 3rem;
  text-align: center;
}

.map iframe {
  display: block;
  width: 100%;
  height: 30em;
  padding: 2.5em;
}

.access-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.access-info h2 {
  font-size: 2em;
  margin-bottom: 3rem;
  color: #ffffff;
  letter-spacing: 2px;
}

.info-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(71, 140, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2.4rem 1.6rem;
  backdrop-filter: blur(8px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 80, 255, 0.2);
  line-height: 1.6;
  text-align: left;
}

.info-card dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 1.2rem;
  column-gap: 1rem;
  margin: 0 auto;
}

.info-card dt {
  font-weight: bold;
  color: #b0d2ff;
  white-space: nowrap;
  padding-top: 0.2rem;
}

.info-card dd {
  margin: 0;
}

.time-table {
  margin-top: 2rem;
  display: grid;
  row-gap: 0.8rem;
}

.time-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
}

.time-row .label {
  font-weight: bold;
  color: #b0d2ff;
  white-space: nowrap;
}

.time-row .value {
  color: #ffffff;
}

.res-intro {
  text-align: center;
  padding: 2rem 0 8rem 0;
  color: #ffffff;
}

.res-intro p {
  padding-bottom: 2rem;
  color: #d0e3ff;
}

.res-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(71, 140, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  font-size: 1.4rem;
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 80, 255, 0.2);
  transition: background 0.3s ease;
}

.res-intro-btn:hover {
  background: rgba(71, 140, 255, 0.6);
  font-size: 1.6rem;
}

.arrow {
  display: inline-block;
  animation: sway 1.8s infinite ease-in-out;
}

@keyframes sway {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

/* ----------------- access main ed----------------- */

/* ----------------- contact-page header----------------- */

.contact-header {
  width: 100%;
  height: 30rem;
  background: no-repeat;
  background-image: url(./img/common-img/contact-header.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 10px #00000055;
}

/* ----------------- contact-page header----------------- */

/* ----------------- contact main st----------------- */

.contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #ffffff;
}

.contact h2 {
  text-align: center;
  padding: 3rem;
  color: #b0d2ff;
  letter-spacing: 2px;
}

.form-area {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
  display: grid;
  row-gap: 1.6rem;
}

.form-area dt {
  font-weight: bold;
  color: #b0d2ff;
  margin-bottom: 0.5rem;
}

.form-area dd {
  margin: 0 0 1.2rem 0;
}

/* 疑似要素(必須項目横に「必須」と表示させる) */
.form-area dt .required::after {
  content: "必須";
  font-size: 1.2rem;
  color: #eb4f32;
  margin-left: 1rem;
}

.input-text,
.select-box,
.message {
  width: 100%;
  background: rgba(243, 242, 242, 0.986);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #333333;
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
}

.input-text:focus,
.select-box:focus,
.message:focus {
  outline: none;
  border-color: #8db9ff;
  box-shadow: 0 0 0 3px rgba(141, 185, 255, 0.3);
}

.radio-button {
  display: inline-block;
  margin-right: 1.5rem;
  font-size: 1.4rem;
}

.radio-button input {
  margin-right: 0.4rem;
}

.confirm-text {
  font-size: 1.6rem;
  padding: 3rem 0 2.5rem 0;
  color: #ccc;
  text-align: center;
}

.submit-button {
  background: linear-gradient(90deg, #76aaff, #b0d2ff);
  color: #0c2438;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  min-width: 200px;
  line-height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  margin: 1.6rem auto 0;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, font-size 0.3s ease;
}

.submit-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 8px rgba(118, 170, 255, 0.6);
  font-size: 1.6rem;
}

/* ----------------- contact main ed----------------- */

/* ------------共通footer st ------------ */

.footer-img {
  width: 100%;
  height: auto;
  background-image: url(./img/common-img/footer-img.jpg);
  background-size: cover;
}

.footer-area {
  margin: 0 auto;
  text-align: center;
}

.footer-area {
  padding: 6.5rem 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 3em;
  padding-bottom: 2em;
}

.footer-nav li a {
  font-size: 2rem;
  color: var(--color-font1);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav li a:hover {
  text-shadow: 0 0 12px rgba(255, 255, 255, 1),
    0 0 24px rgba(255, 255, 255, 0.8), 0 0 32px rgba(173, 243, 255, 0.5);
  font-size: 2.4rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-right: 8rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 2em 0;
}

.footer-info dl {
  text-align: left;
  max-width: 60rem;
  margin: 0 auto;
}

.footer-info dl > div {
  display: flex;
  gap: 1.5em;
  padding-bottom: 1rem;
}

.footer-info dt {
  min-width: 80px;
  font-weight: bold;
}

.footer-info dd {
  margin: 0;
}

.copyright {
  font-size: 1.4rem;
  padding-top: 1em;
}
/* ------------共通footer ed ------------ */

@media screen and (max-width: 1024px) {
  .main-area {
    max-width: 1024px;
    font-size: 1.6rem;
  }

  .header-inner {
    width: 100%;
    height: 10rem;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    position: relative;
  }

  /*------------ 共通ハンバーガーメニュー ------------*/
  .header-nav {
    /* 非表示 */
    transition: all 0.5s;
    /* メニューエリアが出てくる位置を指定
    上　右　下　左 */
    clip-path: inset(100% 0 0 0);
  }

  /* is-showがついた後どうなるか */
  .header-nav.is-show {
    /* 表示 */
    /* メニューエリアが出てくる位置を指定
    上　右　下　左 */
    clip-path: inset(0 0 0 0);
  }

  .header-inner.is-show {
    height: auto;
    background-color: rgba(0, 44, 84, 0.5);
  }

  /* 三本線デザインにしたい場合 st */
  .hambuger-menu {
    display: block;
    width: 40px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 3rem;
    right: 6rem;
  }

  /* 三本線の中央線 */
  .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-font1);
    /* 上下の線を中央線に集合するために親要素に指定 */
    position: relative;
    /* 表示を×に変わるとき回転するアニメーションにする */
    transition: all 0.5s;
  }

  /* 上下の線 */
  .line::before,
  .line::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-font1);
    /* 中央線に集合するために.lineを親要素基準に配置 */
    position: absolute;
    left: 0;
    /* 表示を×に変わるとき回転するアニメーションにする */
    transition: all 0.5s;
  }

  /* 上の線 */
  .line::before {
    top: -10px;
  }

  /* 下の線 */
  .line::after {
    top: 10px;
  }

  /* ボタン押下後、is-showがついたときの中央線 */
  .hambuger-menu.is-show .line {
    background-color: #00000000;
  }

  /* ボタン押下後、is-showがついたときの上の線 */
  .hambuger-menu.is-show .line::before {
    top: 0;
    rotate: 45deg;
  }

  /* ボタン押下後、is-showがついたときの下の線 */
  .hambuger-menu.is-show .line::after {
    top: 0;
    rotate: -45deg;
  }
  /*------------ 共通ハンバーガーメニュー ------------*/

  .header-inner h1 {
    padding-left: 0;
    padding-bottom: 1rem;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .fs-view-content {
    padding-left: 10%;
    text-align: center;
    position: relative;
  }

  /* スクロールダウン　pc非表示 */
  .scroll_down {
    display: none;
  }

  /* スマホ用スクロールダウン */
  .container_scroll {
    display: block;
  }

  .container_scroll {
    height: 30rem;
  }

  .scroll-down_sm {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: serif;
    color: var(--color-font1);
    font-size: 14px;
    text-decoration: none;
  }

  .gradient-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #9db5ee);
    animation: extend 2s infinite;
    margin-inline: auto;
  }

  @keyframes extend {
    0%,
    100% {
      height: 0;
    }
    50% {
      height: 80px;
    }
  }

  .about h2 {
    padding-top: 10rem;
  }

  .concept-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
  }

  .concept-img {
    margin-right: 0;
    padding-bottom: 3rem;
  }

  .news {
    padding: 5rem 0 10rem 0;
  }

  .menu-img {
    padding: 0 1rem;
    gap: 10px;
  }

  .menu-intro {
    padding-bottom: 10rem;
  }

  .food-img1,
  .desert-img2,
  .alcohol-img3 {
    width: 30%;
    aspect-ratio: 1 / 1;
    background-size: cover;
  }

  .footer-img {
    height: auto;
  }

  .footer-area {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1.5rem;
  }

  .footer-info dl {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .footer-info dl > div {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding-bottom: 1.2rem;
  }

  .footer-info dt {
    text-align: center;
    padding-bottom: 0.2rem;
  }

  .footer-info dd {
    text-align: center;
  }

  .footer-nav ul {
    gap: 1rem;
    text-align: center;
    padding-bottom: 0;
  }

  /* menu st */

  .menu-header {
    width: 100%;
    background-size: cover;
    background-position-x: -200px;
  }

  .menu-concept-img {
    width: 70%;
    margin-bottom: 2rem;
  }
  .menu-concept-img2 {
    width: 60%;
  }

  .concept-text {
    font-size: 1.6rem;
    line-height: 3rem;
    padding: 0 2rem 3rem 0;
    text-align: center;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  /* menu ed */

  /* access st */
  .access-header {
    width: 100%;
    background-position: center;
    background-size: cover;
  }

  /* access st */

  /* contact st */
  .contact-header {
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  /* contact st */
}

@media screen and (max-width: 767px) {
  .main-area {
    max-width: 767px;
  }

  .header {
    width: 100%;
  }

  .header-logo img {
    width: 60px;
    height: 60px;
  }

  .header-inner {
    height: 7rem;
  }

  .hambuger-menu {
    display: block;
    width: 2rem;
    aspect-ratio: 1/1;
  }

  .header-nav ul li {
    font-size: 1.6rem;
    padding: 1rem 0;
  }

  .slogan {
    font-size: 2.8rem;
  }

  .concept-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .concept-img {
    width: 80%;
    height: 200px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
  }

  .concept-wrapper p {
    font-size: 1.4rem;
    line-height: 2.5rem;
    padding: 0 1.5rem 2rem;
  }

  .intro-wrapper {
    padding: 0 1.5rem;
    text-align: center;
  }

  .intro-wrapper h2 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }

  .intro-wrapper small {
    font-size: 1.2rem;
  }

  .menu-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .food-img1,
  .desert-img2,
  .alcohol-img3 {
    width: 80%;
    height: 200px;
    background-size: cover;
    background-position: center;
  }

  .button-wrapper {
    text-align: center;
  }

  .menu-button {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }

  /* menu st */
  .m-concept-wrapper {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .m-concept-wrapper {
    padding: 9rem 9rem;
  }

  .menu-concept-img {
    background-position: center;
    width: 80%;
    margin-bottom: 2.5rem;
  }
  .menu-concept-img2 {
    width: 70%;
    background-position: center;
  }

  .concept-text {
    font-size: 1.4rem;
    line-height: 2.4rem;
    padding: 0 0.8rem 1.5rem 0.8rem;
    text-align: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* menu ed */
}

@media screen and (max-width: 479px) {
  .main-area {
    min-width: 320px;
  }

  .main-area h2 {
    font-size: 2.8rem;
  }

  .intro-wrapper {
    padding: 1.2rem;
    font-size: 1.4rem;
    line-height: 1rem;
  }

  .br {
    display: block;
  }

  .intro-wrapper h2 small {
    font-size: 1.3rem;
  }

  .intro-wrapper p {
    font-size: 1.4rem;
    line-height: 2.25rem;
  }

  /* contact st */
  .contact h2 {
    font-size: 1.5em;
  }
  /* contact ed */

  .news-list {
    padding: 0 10px;
  }

  .news-list .item {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 10px 0;
  }

  .news-list .item .date {
    min-width: 80px;
    padding: 0 10px 0 0;
    font-size: 1.2rem;
  }

  .news-list .item .title {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  /* menu st*/
  .menu-concept {
    background-position: 15% 25%, 90% 85%;
    background-size: 40% auto, 40% auto;
  }
  /* 
  .menu-concept h2 {
    font-size: 2.4rem;
    padding: 4rem 0 0 0;
  }

  .m-concept-wrapper {
    height: auto;
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .concept-text {
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-align: left;
  } */
  /* menu ed*/
}
