@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueLTPro-Th.woff2") format("woff2"), url("fonts/HelveticaNeueLTPro-Th.woff") format("woff"), url("fonts/HelveticaNeueLTPro-Th.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueLTPro-MdCn.woff2") format("woff2"), url("fonts/HelveticaNeueLTPro-MdCn.woff") format("woff"), url("fonts/HelveticaNeueLTPro-MdCn.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueLTPro-Ex.woff2") format("woff2"), url("fonts/HelveticaNeueLTPro-Ex.woff") format("woff"), url("fonts/HelveticaNeueLTPro-Ex.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grifito L";
  src: url("fonts/GrifitoLMedium.woff2") format("woff2"), url("fonts/GrifitoLMedium.woff") format("woff"), url("fonts/GrifitoLMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("fonts/SpaceMono-Regular.woff2") format("woff2"), url("fonts/SpaceMono-Regular.woff") format("woff"), url("fonts/SpaceMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --fs-header: 2.75rem;
  --fs-title: 2.813rem;
  --fs-content: 1rem;
  --fs-details: 1rem;
  --fs-support: .875rem;
}

.pc {
  display: none;
}

@media screen and (min-width: 60em) {
  :root {
    --fs-header: 4.5rem;
    --fs-title: 2.813rem;
    --fs-content: 1rem;
    --fs-details: 1rem;
    --fs-support: .875rem;
  }

  .mobile {
    display: none;
  }

  .pc {
    display: block;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  color: #ffffff;
}

a {
  text-decoration: none;
}

h1, .h1 {
  font-family: "Helvetica Neue";
  font-size: var(--fs-header);
  line-height: 1.1;
  font-weight: 100;
}

h2, .h2 {
  font-family: "Grifito L";
  font-weight: 500;
  font-size: var(--fs-title);
  line-height: 1;
}

h3, .h3 {
  font-family: "Space Mono";
  font-size: var(--fs-content);
  line-height: 1.25;
}

h4, .h4 {
  font-family: "Helvetica Neue";
  font-weight: 500;
  font-size: var(--fs-details);
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h5, .h5 {
  font-family: "Helvetica Neue";
  font-size: var(--fs-support);
  line-height: 1;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.social-icon:hover path {
  fill: #e0a966;
}
.social-icon:active path {
  fill: #B2844E;
}

.rotate-right {
  transform: rotate(90deg);
}

.main {
  position: relative;
  background-image: url("../img/main-bg.webp");
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: color;
  background-size: cover;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.main .logo {
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.bg-video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}

.logo {
  text-align: center;
  padding: 1.5em 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  position: relative;
}
.logo .menu-open {
  font-size: 4em;
}
@media screen and (min-width: 60em) {
  .logo {
    justify-content: center;
  }
}

nav {
  display: none;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 0px;
  border-right: 0px;
  padding: 1em 0;
  position: relative;
}
nav .main-menu {
  margin-right: 4em;
}
nav .main-menu:last-child {
  margin: 0;
}
@media screen and (min-width: 60em) {
  nav {
    display: flex;
  }
}

nav > *:hover, .active {
  color: #e0a966;
  border-bottom: 1px solid;
}

.mobile-nav {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  background-color: black;
  overflow-x: hidden;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
.mobile-nav-main {
  padding: 10%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.mobile-nav-item {
  display: block;
  margin-top: 0.25em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.mobile-nav-item:hover, .mobile-nav-item:active {
  color: #e0a966;
}
.mobile-nav-copy {
  margin-top: auto;
  padding: 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
.mobile-nav-copy a {
  border-bottom: 1px solid;
}

.socials-menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 1em;
}
.socials-menu .social-icon {
  margin-right: 1em;
}

.jp-detail {
  background-color: #ffffff;
  color: black;
  padding: 1.5em 1em;
  border-radius: 40px;
}

.vertical {
  writing-mode: vertical-lr;
}

.hero-banner {
  max-width: 1300px;
  margin: 0 auto;
  height: 65%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-banner .hero-text {
  margin: 0 10%;
}
.hero-banner .socials {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: end;
  margin: 0 10%;
}
.hero-banner .socials a {
  margin-top: 1em;
}
@media screen and (min-width: 65em) {
  .hero-banner .hero-text {
    margin: 0;
  }
  .hero-banner .socials {
    margin: 12em 0 0;
  }
}

.subtitle {
  font-size: 24px;
  line-height: 1;
  margin-top: 1em;
}

.bottom-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.copy-container {
  width: 90%;
  background-color: #e0a966;
  margin-left: auto;
}
.copy-container .hero-copy {
  background-color: #B2844E;
  max-width: 650px;
  padding: 1.5em 3em;
  margin-right: 20%;
  min-height: 4em;
}
@media screen and (min-width: 60em) {
  .copy-container {
    width: 50%;
  }
}

.black-bg {
  background-color: black;
  width: 100%;
}

.menu-container {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
}
.menu-container .controls {
  display: none;
  align-items: center;
}
.menu-container .controls .prev-arrow, .menu-container .controls .next-arrow {
  padding: 0 2em;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
.menu-container .controls .prev-arrow:hover, .menu-container .controls .next-arrow:hover {
  background-color: #131313;
}
.menu-container .controls .prev-arrow:active, .menu-container .controls .next-arrow:active {
  background-color: #B2844E;
}
.menu-container .controls .prev-arrow:active path, .menu-container .controls .next-arrow:active path {
  stroke: #e0a966;
}
@media screen and (min-width: 60em) {
  .menu-container .controls {
    display: flex;
  }
}

.carousel {
  width: 100%;
}
.carousel-item {
  width: 80%;
}
@media screen and (min-width: 60em) {
  .carousel-item {
    width: 33%;
  }
}

.carousel-menu-item {
  display: flex;
  padding: 2em 0;
}
.carousel-menu-item .menu-item-no {
  margin: 0 1.5em;
}
.carousel-menu-item .menu-item-sub {
  margin-top: 1em;
}
.carousel-menu-item .h5 {
  color: #e0a966;
}

.about {
  min-height: 75vh;
  min-height: calc(var(--vh, 1vh) * 75);
  background-image: url("../img/Akari Nosotros Background 1.webp");
  background-size: cover;
  background-position: 20%;
  padding: 20% 10%;
  position: relative;
}
@media screen and (min-width: 60em) {
  .about {
    padding: 8%;
    height: 65vh;
    height: calc(var(--vh, 1vh) * 65);
  }
}
.about-container {
  max-width: 1300px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 60em) {
  .about-container {
    flex-direction: row;
  }
}
.about-title {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
}
.about-title-txt {
  text-orientation: upright;
  writing-mode: vertical-lr;
  position: relative;
  margin-right: 2em;
}
.about-title .title-highlight {
  opacity: 0.1;
  position: absolute;
  font-size: 5.5rem;
  writing-mode: horizontal-tb;
  transform: translate(-42%, -25%);
  font-weight: bold;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}
@media screen and (min-width: 60em) {
  .about-title {
    flex-direction: column;
    align-items: center;
    width: auto;
    height: 100%;
  }
  .about-title-txt {
    margin-right: 0;
  }
}
.about-desc {
  max-width: 29em;
  text-align: justify;
  text-justify: inter-word;
}
.about-desc .akari-hl {
  font-family: "Helvetica Neue";
  font-weight: 500;
}

.about-detail {
  padding: 1em 1.5em;
  border-radius: 40px;
  mix-blend-mode: darken;
}
@media screen and (min-width: 60em) {
  .about-detail {
    padding: 1.5em 1em;
    writing-mode: vertical-lr;
  }
}

.detail-dark {
  background-color: #ffffff;
  color: black;
}

.detail-light {
  color: white;
  background-color: black;
}

.charolas {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url("../img/charolas-bg-home.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
}
.charolas-link {
  margin: 0.25em 1em;
  display: block;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  position: relative;
}
.charolas-link:hover, .charolas-link:active {
  color: #e0a966;
  border-bottom: 1px solid;
}
@media screen and (min-width: 60em) {
  .charolas-link {
    display: inline;
    text-align: center;
    border-bottom: none;
    line-height: 2;
  }
}
@media screen and (max-width: 60em) {
  .charolas-dash {
    display: none;
  }
}
.charolas-contacto a {
  margin: 0 1em;
}
.charolas-contacto a:hover, .charolas-contacto a:active {
  color: #e0a966;
}
.charolas .auto-top {
  margin-top: auto;
}

.charolas-banner {
  width: 100%;
  max-width: 1300px;
  margin: auto auto 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2em 0;
}
.charolas-banner-txt {
  color: #1b1b1b;
}
.charolas-banner-btn {
  background-color: #e0a966;
  display: flex;
  align-items: center;
  min-width: 280px;
}
.charolas-banner-btn-txt {
  text-align: center;
  width: 100%;
}
.charolas-banner-btn svg {
  width: 1.5em;
  height: 1.5em;
}
.charolas-banner-btn:hover {
  background-color: #B2844E;
}
.charolas-banner-btn:hover .charolas-banner-arrow {
  border-color: #e0a966;
}
.charolas-banner-btn:active {
  background-color: #B2844E;
}
.charolas-banner-btn:active .charolas-banner-arrow {
  border-color: #e0a966;
}
.charolas-banner-btn:active .charolas-banner-btn-txt {
  color: #e0a966;
}
.charolas-banner-btn:active path {
  stroke: #e0a966;
}
.charolas-banner-arrow {
  border-right: 1px solid #B2844E;
  padding: 1em;
}
@media screen and (max-width: 60em) {
  .charolas-banner {
    flex-direction: column;
    padding: 2em 10%;
  }
  .charolas-banner .charolas-banner-btn {
    width: 100%;
    margin-top: 2em;
  }
  .charolas-banner-txt {
    text-align: left;
    line-height: 1.5;
    flex-grow: 1;
  }
}

.action-btn {
  display: flex;
  align-items: center;
  max-width: 280px;
  margin: auto;
  border: 1px solid;
}
.action-btn-txt {
  text-align: center;
  width: 100%;
}
.action-btn-arrow {
  border-right: 1px solid;
  padding: 1em;
}
.action-btn svg {
  width: 1.5em;
  height: 1.5em;
}
.action-btn:hover {
  background-color: #B2844E;
  border-color: #B2844E;
}
.action-btn:hover .action-btn-arrow {
  border-color: #e0a966;
}
.action-btn:active {
  background-color: #B2844E;
  border-color: #B2844E;
}
.action-btn:active .action-btn-arrow {
  border-color: #e0a966;
}
.action-btn:active .action-btn-txt {
  color: #e0a966;
}
.action-btn:active path {
  stroke: #e0a966;
}

.home-contacto {
  min-height: 90vh;
  min-height: calc(var(--vh, 1vh) * 90);
  background-color: black;
  padding: 5% 0;
  position: relative;
}
.home-contacto-txt {
  max-width: 800px;
  margin: 13em auto 5em;
  text-align: center;
}
@media screen and (max-width: 60em) {
  .home-contacto-txt {
    margin-top: 5em;
    padding: 0 15%;
  }
}
@media screen and (max-width: 60em) {
  .home-contacto {
    height: 80vh;
    height: calc(var(--vh, 1vh) * 80);
  }
}

.text-line {
  width: 100%;
  display: flex;
  margin: 2em 0;
  overflow-x: hidden;
}
.text-line h5 {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #fff;
  line-height: 0.1em;
  margin: 1em 0;
  font-size: var(--fs-content);
  font-weight: normal;
}
.text-line h5 span {
  background-color: black;
  padding: 0 1.5em;
}
@media screen and (max-width: 40em) {
  .text-line h5 {
    min-width: 25em;
  }
}
@media screen and (max-width: 40em) {
  .text-line {
    overflow-x: hidden;
  }
  .text-line:nth-child(odd) h5 {
    transform: translateX(-135%);
  }
  .text-line:nth-child(even) h5 {
    transform: translateX(-75%);
  }
}

.footer {
  position: relative;
  background-color: black;
  padding: 5% 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
.footer-img img {
  width: 200px;
  padding-left: 10%;
}
.footer-links {
  display: flex;
  max-width: 1300px;
  margin: auto;
}
.footer-links div {
  flex-basis: 25%;
}
.footer-links h4 {
  margin-bottom: 1em;
}
.footer-links ul {
  list-style-type: none;
  padding: 0;
}
.footer-links svg {
  margin-right: 1em;
  width: 1em;
}
.footer-links a:hover, .footer-links a:active {
  color: #e0a966;
}
.footer-links a:hover path, .footer-links a:active path {
  fill: #e0a966;
}
@media screen and (max-width: 60em) {
  .footer-links {
    flex-direction: column;
    padding: 10%;
  }
  .footer-links .footer-img {
    margin-bottom: 5em;
  }
  .footer-links .footer-second-column {
    margin-bottom: 3em;
  }
  .footer-links li {
    padding: 15px 0;
  }
}
.footer-copy {
  max-width: 1300px;
  margin: 5% auto 0;
  display: flex;
  align-items: center;
}
.footer-copy-txt {
  padding: 1em 2em;
  border: 1px solid;
  border-right: none;
  flex-grow: 1;
}
.footer-copy-txt a {
  border-bottom: 1px solid;
}
@media screen and (max-width: 60em) {
  .footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.45);
  }
  .footer-copy-txt {
    border: none;
  }
}
.footer-arrow {
  background-color: white;
  padding: 1em;
  margin-left: auto;
  border: 1px solid;
  cursor: pointer;
}
.footer-arrow:hover {
  background-color: #e0a966;
  border-color: #e0a966;
}
.footer-arrow:hover path {
  stroke: white;
}
.footer-arrow:active {
  background-color: #B2844E;
  border-color: #B2844E;
}
.footer-arrow:active path {
  stroke: #e0a966;
}

.charolas-main {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  color: black;
  background-color: #f7f6f5;
  background-image: url("../img/charolas-bg.webp");
  background-position: right 25%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.charolas-main .logo {
  background-color: black;
}
.charolas-main nav {
  background-color: white;
}
.charolas-main nav a {
  color: black;
}
.charolas-main nav .active, .charolas-main nav > :hover {
  color: #e0a966;
}
.charolas-main-content {
  display: flex;
  width: 100%;
  flex-grow: 1;
  align-items: center;
}
.charolas-main-content .title-highlight {
  opacity: 1;
}
.charolas-main-content .h5 {
  color: black;
  mix-blend-mode: darken;
}
.charolas-main-content .charolas-share {
  color: black;
  margin-top: auto;
  transform: rotate(-90deg) translateX(50%);
}
.charolas-main-content .charolas-share svg {
  margin-right: 1em;
}
@media screen and (max-width: 60em) {
  .charolas-main-content {
    align-items: normal;
  }
}

.charolas-side-container {
  display: flex;
  flex-direction: column;
  padding: 5% 2.5em 5% 5em;
  height: 100%;
}
.charolas-side-container .about-title {
  height: auto;
}
.charolas-side-container .about-title-txt {
  margin-bottom: 3em;
}
@media screen and (max-width: 60em) {
  .charolas-side-container {
    display: none;
  }
}

.charolas-carousel {
  flex-grow: 1;
}
.charolas-carousel .is-selected {
  background-color: white;
}
.charolas-carousel .is-selected .transparent {
  color: #979797;
}
@media screen and (max-width: 60em) {
  .charolas-carousel {
    margin: 5%;
  }
}

.charolas-carousel-item {
  text-align: center;
  border-radius: 15px;
  padding: 2em;
  width: 450px;
}
.charolas-carousel-item h2, .charolas-carousel-item .h3 {
  color: black;
}
.charolas-carousel-item .transparent {
  color: transparent;
  font-size: var(--fs-support);
  font-family: "Helvetica Neue";
  line-height: 1.1;
  font-weight: 100;
}
.charolas-carousel-item img {
  width: 100%;
}
.charolas-carousel-item .h3 {
  margin: 1em auto;
}
@media screen and (max-width: 60em) {
  .charolas-carousel-item {
    width: 100%;
  }
}

.flickity-page-dots {
  position: relative;
}
.flickity-page-dots .dot {
  margin: 0;
  border-radius: 0;
  width: 100px;
  height: 2px;
  background: white;
  opacity: 1;
}
.flickity-page-dots .dot.is-selected {
  background: black;
}
@media screen and (max-width: 60em) {
  .flickity-page-dots .dot {
    width: 40px;
  }
}

.sucursales {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

.sucursales, .menu-main {
  background-color: #f7f6f5;
}
.sucursales *, .menu-main * {
  color: black;
  position: relative;
}
.sucursales .logo, .menu-main .logo {
  background-color: black;
}
.sucursales .logo a, .menu-main .logo a {
  color: white;
}
.sucursales nav, .menu-main nav {
  background-color: white;
}
.sucursales nav .active, .sucursales nav > :hover, .menu-main nav .active, .menu-main nav > :hover {
  color: #e0a966;
}

.sucursal {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 3em 0;
  margin-left: 10%;
}
.sucursal-info {
  margin-right: auto;
  padding: 5% 5% 5% 0;
}
.sucursal-info p {
  margin: 1em 0 2em;
  max-width: 30em;
}
.sucursal-detail {
  color: white;
  position: absolute;
  writing-mode: vertical-lr;
  font-size: 5.5rem;
  transform: translate(-50%, -25%);
  font-weight: bold;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}
.sucursal-share {
  color: white;
  background-color: black;
  padding: 1em 2em;
  border-radius: 40px;
  width: fit-content;
  margin-top: 3em;
}
.sucursal-share svg {
  margin-left: 0.5em;
}
.sucursal-badge {
  position: absolute;
  right: 52%;
  bottom: 17%;
  z-index: 10;
}
.sucursal-map {
  flex-basis: 50vw;
}
.sucursal-map iframe {
  min-height: 350px;
}
@media screen and (max-width: 60em) {
  .sucursal {
    flex-direction: column;
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
  .sucursal-info {
    padding: 5em 3em;
  }
}
@media screen and (max-width: 70em) {
  .sucursal-badge {
    display: none;
  }
}

.horarios {
  border: 1px solid rgba(0, 0, 0, 0.3);
  max-width: 30em;
}
.horarios-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 1em;
  background-color: white;
}
.horarios-table {
  padding: 1.5em 1em;
}
.horarios-line {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
}
.horarios-line h3 {
  flex-grow: 1;
  border-bottom: 3px dotted;
  line-height: 0.1em;
  font-weight: normal;
  margin-right: 1em;
}
.horarios-line h3 span {
  background-color: #f7f6f5;
  padding-right: 0.5em;
}
.horarios-line-time {
  line-height: 0.1;
}
.horarios-line:nth-child(3) {
  margin-bottom: 0;
}

.menu-main {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.menu-main-container {
  display: flex;
  height: calc(var(--vh, 1vh) * 100 - 144px);
}
@media screen and (max-width: 60em) {
  .menu-main-container {
    flex-direction: column;
    flex-grow: 1;
  }
}

.navigation-container {
  display: flex;
  width: 100%;
}
.navigation-container img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 60em) {
  .navigation-container {
    flex-direction: column-reverse;
  }
  .navigation-container img {
    max-height: calc(var(--vh, 1vh) * 25);
    display: none;
  }
}

.menu-navigation {
  display: flex;
  flex-direction: column;
  background-color: black;
  padding: 2em;
}
.menu-navigation-copy {
  color: white;
}
.menu-navigation ul {
  margin: auto;
  list-style: none;
  padding: 0;
  line-height: 2;
  font-size: var(--fs-details);
}
.menu-navigation a {
  color: rgba(255, 255, 255, 0.3);
}
.menu-navigation a:hover {
  color: white;
}
.menu-navigation .active a {
  color: white;
  border-bottom: none;
}
.menu-navigation .gourmet a {
  color: rgba(178, 132, 78, 0.6);
}
.menu-navigation .gourmet.active a, .menu-navigation .gourmet a:hover {
  color: #e0a966;
}
@media screen and (max-width: 90em) {
  .menu-navigation ul {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 60em) {
  .menu-navigation {
    flex-direction: row;
  }
  .menu-navigation-copy {
    display: none;
  }
  .menu-navigation ul {
    display: flex;
    overflow-x: scroll;
    font-size: 1rem;
  }
  .menu-navigation li {
    margin: 0 1em;
  }
}

.description-container {
  background-image: url("../img/fish1.webp");
  background-position: left;
  background-repeat: no-repeat;
  flex-grow: 1;
  padding: 5%;
  width: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
@media screen and (max-width: 60em) {
  .description-container {
    padding: 0 10% 5%;
  }
}

.menu-category {
  position: relative;
  padding-top: 4em;
  padding-right: 10em;
}
.menu-category .category-img {
  width: 125%;
  height: auto;
  margin-left: -13%;
  margin-bottom: 3em;
}
@media screen and (min-width: 60em) {
  .menu-category .category-img {
    display: none;
  }
}
.menu-category .category-detail {
  color: white;
  position: absolute;
  writing-mode: vertical-lr;
  font-size: 5.5rem;
  transform: translate(-50%, -25%);
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
  white-space: pre;
  font-weight: bold;
}
.menu-category .category-title-jp {
  font-size: var(--fs-content);
  white-space: pre;
}
.menu-category h2 {
  margin-bottom: 1em;
}
@media screen and (min-width: 60em) {
  .menu-category .category-item-last {
    margin-bottom: 5em;
  }
}
.menu-category .item-title, .menu-category .item-desc {
  padding: 1.5em 2em;
}
.menu-category .item-title {
  border: 1px #CEC8C2;
  border-style: solid none;
}
.menu-category .item-title span {
  margin-left: 2em;
}
.menu-category .item-title.h4::before {
  content: "::";
  position: absolute;
  left: 0;
}
.menu-category:last-child {
  padding-bottom: 10em;
}
@media screen and (max-width: 60em) {
  .menu-category {
    padding: 0;
  }
}

.gourmet-detail {
  background-color: #e0a966;
  padding: 0.5em 1.5em;
  border-radius: 30px;
  color: white;
  display: inline-block;
  margin-top: 1em;
}

@media screen and (max-width: 60em) {
  .gourmet-last {
    margin-bottom: 2em;
  }
}