@font-face {
  font-family: "Noto";
  src: url("../fonts/NotoSansJP-VariableFont_wght.woff2") format("woff2");
  font-display: swap;
}
body {
  color: #000;
  background-color: #F7EEDC;
  font-size: 0.875rem;
  font-family: "Noto" "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}

img {
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

:focus-visible {
  outline: revert;
  outline-offset: 2px;
}

.btn {
  margin-top: 1.875rem;
  display: block;
  width: 9.375rem;
  padding: 15px;
  background-color: #E6B422;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 1.5625rem;
  margin-left: auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  will-change: transform, box-shadow;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 0.98;
}
.btn--menu {
  color: #000;
  width: 12.5rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.bg_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.875rem, 7vw, 5rem);
  font-weight: bold;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3em;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: blur(1px);
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
@media (min-width: 640px) {
  .bg_text {
    font-size: clamp(1.25rem, 6vw, 3.75rem);
  }
}

html {
  scroll-behavior: smooth;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}

.off-screen-menu.active {
  transform: translateX(0);
}

.off-screen-menu {
  font-family: "Times New Roman", Times, "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  position: fixed;
  inset: 0;
  background-color: rgb(135, 76, 74);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 998;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 6.25rem 0 12.5rem 1.25rem;
}
.off-screen-menu ul li {
  list-style: none;
  font-size: 1.125rem;
  font-weight: bold;
  padding-bottom: 0.625rem;
  margin-bottom: 1.875rem;
}
.off-screen-menu img {
  display: block;
  width: 7.5rem;
}
.off-screen-menu__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 1.25rem 0;
}
.off-screen-menu__text {
  font-size: 1rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .off-screen-menu__text {
    display: none;
  }
}
.off-screen-menu ul li a {
  position: relative;
  text-decoration: none;
}
.off-screen-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}
.off-screen-menu ul li a:hover::after {
  width: 100%;
}
@media (min-width: 640px) {
  .off-screen-menu {
    position: static;
    width: auto;
    height: auto;
    right: 0;
    padding: 0;
    background: transparent;
    transform: translateX(0);
  }
  .off-screen-menu ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
    padding-left: 0;
    font-family: "Times New Roman", Times, "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  }
  .off-screen-menu ul li {
    padding-bottom: 0;
    margin-bottom: 0;
    display: block;
    color: #fff;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
  }
}

.off-screen-menu.active {
  right: 0;
}

.gnav {
  padding: 1rem;
  display: flex;
  background-color: rgb(135, 76, 74);
}
@media (min-width: 640px) {
  .gnav {
    display: none;
  }
}

.ham-menu {
  height: 30px;
  width: 30px;
  margin-left: auto;
  position: relative;
  z-index: 999;
}

.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sns {
  position: fixed;
  right: 4%;
  bottom: 60px;
  z-index: 999;
  text-align: center;
}
.sns__item {
  width: 1.5625rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 640px) {
  .sns__item {
    width: 2.1875rem;
  }
}

.header {
  padding: 1.25rem 0;
  background-color: #874C4A;
  color: #fff;
}
.header__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.header__logo img {
  width: 15.625rem;
  height: auto;
}
@media (min-width: 640px) {
  .header__logo img {
    width: 17.5rem;
  }
}
.header__style {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
}

.main__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}

.mainvisual {
  margin-bottom: 7.5rem;
  padding: 18.75rem 0 5rem 0;
  background-size: cover;
  background-position: center 40%;
  transition: background-image 1s ease-in-out;
  color: #F7EEDC;
}
@media (min-width: 640px) {
  .mainvisual {
    padding: 28.125rem 0 5rem 0;
  }
}
.mainvisual__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.mainvisual__text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.concept {
  margin-bottom: 7.5rem;
  padding: 3.125rem 0;
}
.concept__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.concept__title {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6875;
  text-align: center;
  position: relative;
  font-weight: bold;
  color: #000;
  z-index: 2;
}
.concept__item {
  margin: 3.75rem 0;
}
.concept__subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.concept__subtext {
  font-size: 1rem;
  margin: 10px 0;
}

.mainmenu {
  margin-bottom: 7.5rem;
  padding: 6.25rem 0;
  background: url(../images/shop.jpg) no-repeat center/cover;
  color: #fff;
  position: relative;
}
.mainmenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.mainmenu__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 99;
}
.mainmenu__title {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6875;
  text-align: center;
  position: relative;
  font-weight: bold;
  color: #000;
  z-index: 2;
}
@media (min-width: 640px) {
  .mainmenu__page {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1.875rem;
    align-items: center;
  }
}
.mainmenu__text {
  font-size: 1rem;
  margin: 10px 0;
  text-align: center;
}
.mainmenu img {
  border-radius: 1.5625rem;
}
.mainmenu__pic {
  display: none;
}
@media (min-width: 640px) {
  .mainmenu__pic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
}

.information {
  padding: 3.125rem 0;
}
.information__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.information__title {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6875;
  text-align: center;
  position: relative;
  font-weight: bold;
  color: #000;
  z-index: 2;
}
.information__list {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.information__item {
  color: #000000;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.information__date {
  font-weight: bold;
  color: #E6B422;
  margin-bottom: 10px;
}

.access {
  position: relative;
  padding: 5rem 0 17.5rem 0;
}
.access__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.access__title {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6875;
  text-align: center;
  position: relative;
  margin-bottom: 3.125rem;
  font-weight: bold;
  color: #000;
  z-index: 2;
}
.access__list {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.access__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  padding: 1.25rem;
}
.access__item dt {
  font-size: 1rem;
  font-weight: bold;
}
.access__item:nth-child(even) {
  background-color: #874C4A;
  color: #fff;
  border-radius: 0.625rem;
}
.access__map {
  width: 100%;
  height: 21.875rem;
}
@media (min-width: 640px) {
  .access__map {
    height: 34.375rem;
  }
}
.access__part {
  display: grid;
  row-gap: 1.875rem;
}
@media (min-width: 640px) {
  .access__part {
    grid-template-columns: 1fr 450px;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    align-items: center;
  }
}

.footer {
  position: relative;
  padding: 6.25rem 0;
  background-color: #874C4A;
  color: #fff;
}
.footer__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.footer__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
  border-bottom: 1px solid #fff;
  padding: 0.625rem;
}
.footer__menu {
  margin: 0 0 3.125rem 0;
}
.footer__logo {
  width: 150px;
}
.footer__address {
  margin-top: 1.875rem;
  font-size: 0.625rem;
  line-height: 1.8333333333;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__address {
    font-size: 0.875rem;
  }
}
.footer__copy {
  margin-top: 1.875rem;
  font-size: 0.625rem;
  line-height: 1.8333333333;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__copy {
    font-size: 0.875rem;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 0;
  width: 100%;
  height: 300px;
  background: url(../images/wave.svg) no-repeat center/cover;
  z-index: 10;
}
@media (min-width: 640px) {
  .footer::before {
    top: -250px;
  }
}

.nav__list {
  display: grid;
  grid-auto-flow: column;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
}
.nav__item {
  font-size: 0.5625rem;
  font-weight: bold;
  line-height: 1.8333333333;
}
@media (min-width: 640px) {
  .nav__item {
    font-size: 0.875rem;
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seasoning__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.seasoning__title {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6875;
  text-align: center;
  text-align: start;
  margin: 0 0;
}
.seasoning__text {
  text-align: start;
}
.seasoning__part {
  margin-bottom: 5rem;
}
@media (min-width: 640px) {
  .seasoning__part {
    display: grid;
    grid-template-columns: 1fr 300px;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    align-items: center;
  }
}
.seasoning__pic {
  display: none;
}
@media (min-width: 640px) {
  .seasoning__pic {
    display: block;
  }
}

.seasoning__main {
  padding: 7.5rem 0 13.75rem 0;
  background-color: #F7EEDC;
  color: #000000;
}

.seasoning__title {
  font-size: 32px;
  margin-bottom: 3.75rem;
}

.seasoningitem__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.seasoningitem__title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
@media (min-width: 640px) {
  .seasoningitem__title {
    margin-bottom: 1.875rem;
  }
}
.seasoningitem__body {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  color: #000000;
  background-color: #FFFFFF;
  padding: 1.875rem 1.25rem 1.875rem;
  border-radius: 1.5625rem;
}
.seasoningitem__post {
  margin-bottom: 2.5rem;
  display: grid;
  row-gap: 1.875rem;
}
.seasoningitem__post img {
  margin-left: auto;
  margin-right: auto;
  width: 21.875rem;
  height: 21.875rem;
  border-radius: 1.5625rem;
}
@media (min-width: 640px) {
  .seasoningitem__post {
    grid-template-columns: 250px 1fr;
    -moz-column-gap: 3.3333333333%;
         column-gap: 3.3333333333%;
  }
  .seasoningitem__post img {
    width: 12.5rem;
    height: 12.5rem;
  }
}

.menu {
  position: relative;
  padding: 7.5rem 0;
  background-color: #F7EEDC;
  color: #000000;
}
.menu__inner {
  max-width: 1200px;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
.menu__title {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6875;
  text-align: center;
  font-size: 32px;
  margin-bottom: 2.5rem;
}
.menu__title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/myanmarkanote.png"), url("../images/myanmarkanote.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left top;
  background-size: 150px auto;
  opacity: 1;
  z-index: 0;
}
@media (min-width: 640px) {
  .menu__title {
    background-size: 200px auto;
  }
}
.menu__text {
  margin-bottom: 7.5rem;
  text-align: center;
}
.menu__subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.recommend {
  display: grid;
  margin-bottom: 6.25rem;
  border-bottom: #000000 solid 1px;
}
.recommend article {
  margin-bottom: 4.375rem;
  position: relative;
}
.recommend img {
  width: 12.5rem;
  height: 12.5rem;
  margin-bottom: 1.25rem;
}
.recommend__list {
  list-style: none;
  padding: 0;
}
.recommend__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.recommend p {
  margin-bottom: 0.625rem;
}
.recommend .top {
  position: absolute;
  width: 4.375rem;
  height: 4.375rem;
  top: -25px;
  left: 50px;
}
@media (min-width: 640px) {
  .recommend .top {
    left: 30px;
  }
}
@media (min-width: 640px) {
  .recommend {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 7.5rem;
         column-gap: 7.5rem;
    align-items: center;
  }
}

.menu__post img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 12.5rem;
  height: 12.5rem;
}
.menu__post__title {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: bold;
}
.menu__post__list {
  list-style: none;
  padding: 0;
  margin-bottom: 7.5rem;
  border-bottom: #000000 solid 1px;
}
.menu__post__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.menu__post .price {
  white-space: nowrap;
}

.noodle {
  display: grid;
  row-gap: 1.875rem;
  margin-bottom: 7.5rem;
  border-bottom: #000000 solid 1px;
}
@media (min-width: 640px) {
  .noodle {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 7.5rem;
         column-gap: 7.5rem;
    align-items: center;
  }
}
.noodle img {
  width: 25rem;
  height: 12.5rem;
  margin-bottom: 1.25rem;
}
.noodle__list {
  list-style: none;
  padding: 0;
}
.noodle__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.noodle p {
  margin-bottom: 1.875rem;
}

.drink {
  position: relative;
  padding: 60px 40px;
}
.drink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/beer.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 200px auto;
  opacity: 1;
  z-index: 0;
}
@media (min-width: 640px) {
  .drink::before {
    background-position: right top;
  }
}
@media (min-width: 640px) {
  .drink__post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 7.5rem;
         column-gap: 7.5rem;
    align-items: center;
  }
}
/*# sourceMappingURL=style.css.map */