@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
/* Font Face */
@font-face {
  font-family: "Komika Axis";
  src: url("/files/user/fonts/komika-axis.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #3e2211;
  background-color: #E6DAC3;
}

a {
  color: inherit;
}

/* ========================================
   Header Block
======================================== */
.diner-header {
  width: 100%;
  background-color: #3e2211;
}

.diner-header__container {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 17px 24px;
}
@media screen and (min-width: 840px) {
  .diner-header__container {
    height: 80px;
    padding: 8px 32px;
  }
}

.diner-header__logo {
  width: 142px;
}
@media screen and (min-width: 840px) {
  .diner-header__logo {
    width: 178px;
  }
}

.diner-header__logo-img {
  display: block;
  width: 100%;
}

/* ========================================
   Main Block
======================================== */
.diner-main {
  width: 100%;
  padding-bottom: 140px;
}
@media screen and (min-width: 840px) {
  .diner-main {
    padding-bottom: 164px;
  }
}

/* ========================================
   Hero Block
======================================== */
.diner-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 56px);
  padding: 0 24px;
}
@media screen and (min-width: 840px) {
  .diner-hero {
    justify-content: flex-end;
    height: calc(100vh - 80px);
    padding-bottom: 80px;
  }
}

.diner-hero__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
@media screen and (min-width: 840px) {
  .diner-hero__content {
    gap: 248px;
  }
}

.diner-hero__logo {
  width: 297px;
}
@media screen and (min-width: 840px) {
  .diner-hero__logo {
    width: 455px;
  }
}

.diner-hero__logo-img {
  display: block;
  width: 100%;
}

/* ========================================
   Nav Block (Tabs)
======================================== */
.diner-nav {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 840px) {
  .diner-nav {
    gap: 40px;
    width: auto;
  }
}

.diner-nav__item {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid #3e2211;
  text-align: center;
}
@media screen and (min-width: 840px) {
  .diner-nav__item {
    width: 144px;
    padding-bottom: 15px;
  }
}

.diner-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.diner-nav__link:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.diner-nav__text {
  font-family: "Komika Axis", sans-serif;
  font-size: 20px;
  white-space: pre;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .diner-nav__text {
    font-size: 24px;
  }
}

/* ========================================
   Section Block
======================================== */
.diner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 56px 24px;
}
@media screen and (min-width: 840px) {
  .diner-section {
    padding: 96px 24px;
  }
}

.diner-section__title {
  margin-bottom: 36px;
  font-family: "Komika Axis", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .diner-section__title {
    margin-bottom: 60px;
    font-size: 40px;
  }
}

/* ========================================
   Category Block
======================================== */
.diner-category {
  width: 100%;
  max-width: 345px;
}
@media screen and (min-width: 840px) {
  .diner-category {
    max-width: 800px;
  }
}
.diner-category:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (min-width: 840px) {
  .diner-category:not(:last-child) {
    margin-bottom: 64px;
  }
}

.diner-category__header {
  margin-bottom: 24px;
  padding-bottom: 19px;
  border-bottom: 2px solid black;
}
@media screen and (min-width: 840px) {
  .diner-category__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
}

.diner-category__title {
  font-family: "Komika Axis", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .diner-category__title {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

/* ========================================
   Menu Grid Block
======================================== */
.diner-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
  width: 100%;
  max-width: 800px;
}
@media screen and (min-width: 600px) {
  .diner-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 840px) {
  .diner-menu {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   Card Block
======================================== */
.diner-card {
  display: flex;
}

.diner-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 100%;
  padding-bottom: 11px;
  border: 3px solid #3e2211;
  background-color: #3e2211;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 840px) {
  .diner-card__link {
    gap: 8px;
    padding-bottom: 13px;
  }
}
.diner-card__link:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.diner-card__image-wrapper {
  position: relative;
  aspect-ratio: 163/227;
  width: 100%;
  overflow: hidden;
}

.diner-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.diner-card__image--placeholder {
  aspect-ratio: 163/227;
  width: 100%;
  background-color: #816c58;
}

.diner-card__tags {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 3px;
  padding: 3px;
}
@media screen and (min-width: 840px) {
  .diner-card__tags {
    gap: 3px;
    padding: 3px;
  }
}

.diner-card__tags--offset {
  top: 3px;
  left: 1px;
}
@media screen and (min-width: 840px) {
  .diner-card__tags--offset {
    top: 3px;
    left: 1px;
  }
}

.diner-card__name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
  min-width: -moz-min-content;
  min-width: min-content;
  font-family: "Komika Axis", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .diner-card__name {
    font-size: 18px;
  }
}

/* ========================================
   Tag Block
======================================== */
.diner-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px 6px 6px;
  border: 1px solid;
}

.diner-tag--outdoor {
  border-color: white;
  background-color: #950000;
}

.diner-tag--floor2 {
  border-color: white;
  background-color: #030b1c;
}

.diner-tag--floor1 {
  border-color: #030b1c;
  background-color: white;
}

.diner-tag__text {
  font-family: "Komika Axis", sans-serif;
  font-size: 14px;
  line-height: 1;
  white-space: pre;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .diner-tag__text {
    font-size: 16px;
  }
}

.diner-tag--outdoor .diner-tag__text,
.diner-tag--floor2 .diner-tag__text {
  color: white;
}

.diner-tag--floor1 .diner-tag__text {
  color: #030b1c;
}

/* ========================================
   Button Block
======================================== */
.diner-button-area {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.diner-button-area--padded {
  padding-inline: 24px;
}
@media screen and (min-width: 840px) {
  .diner-button-area--padded {
    padding-inline: 0;
  }
}

.diner-button {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 14px 40px;
  border: 2px solid #3e2211;
  text-decoration: none;
  background-color: #3e2211;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 840px) {
  .diner-button {
    padding: 16px 80px;
  }
}
.diner-button:hover {
  background-color: transparent;
  transition: all 0.3s ease;
}
.diner-button:hover .diner-button__text {
  color: #3e2211;
}

.diner-button__inner {
  display: block;
  text-decoration: none;
}

.diner-button__text {
  font-family: "Komika Axis", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  transition: color 0.3s ease;
}

/* ========================================
   Footer Block
======================================== */
.diner-footer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-block: 68px;
  background-color: #3e2211;
}
@media screen and (min-width: 840px) {
  .diner-footer {
    padding-block: 72px;
  }
}

.diner-footer__logo {
  width: 142px;
}
@media screen and (min-width: 840px) {
  .diner-footer__logo {
    width: 467px;
  }
}

.diner-footer__logo-img {
  display: block;
  width: 100%;
}

/* ========================================
   Detail Main Block
======================================== */
.detail-main {
  width: 100%;
  padding-bottom: 80px;
}
@media screen and (min-width: 840px) {
  .detail-main {
    padding-bottom: 164px;
  }
}

/* ========================================
   Detail Hero Block
======================================== */
.detail-hero {
  width: 100%;
  padding: 0;
}
@media screen and (min-width: 840px) {
  .detail-hero {
    padding: 0;
  }
}

.detail-hero__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
  padding: 56px 24px 36px;
}
@media screen and (min-width: 840px) {
  .detail-hero__container {
    display: grid;
    grid-template-columns: 322px 1fr;
    grid-template-rows: auto auto;
    gap: 28px 36px;
    max-width: 800px;
    padding: 96px 0 64px;
  }
}

.detail-hero__title-wrapper {
  width: 100%;
}
@media screen and (min-width: 840px) {
  .detail-hero__title-wrapper {
    width: 100%;
    grid-column: 2;
    grid-row: 1;
  }
}

.detail-hero__title {
  font-family: "Komika Axis", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .detail-hero__title {
    font-size: 38px;
    text-align: left;
  }
}

.detail-hero__subtitle {
  font-size: 16px;
  display: block;
  margin-top: 8px;
}
@media screen and (min-width: 840px) {
  .detail-hero__subtitle {
    font-size: 19px;
  }
}

.detail-hero__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 296/370;
  padding: 24px;
  overflow: hidden;
  background-image: url("/files/user/images/diner/2025-26/block-check.svg");
  background-position: 0 0;
  background-size: 24px 24px;
  background-repeat: round;
}
@media screen and (min-width: 840px) {
  .detail-hero__image-wrapper {
    grid-column: 1;
    grid-row: 1/4;
    width: 100%;
  }
}

.detail-hero__image {
  position: absolute;
  display: block;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-hero__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 840px) {
  .detail-hero__info-wrapper {
    gap: 24px;
    grid-column: 2;
    grid-row: 2;
  }
}

.detail-hero__price {
  font-family: "Komika Axis", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .detail-hero__price {
    font-size: 24px;
    text-align: left;
  }
}

.detail-hero__price-unit {
  font-size: 12px;
  margin-left: 2px;
}
@media screen and (min-width: 840px) {
  .detail-hero__price-unit {
    font-size: 12px;
  }
}

.detail-hero__description-wrapper {
  width: 100%;
  padding: 20px;
  background-color: rgba(62, 34, 17, 0.32);
}
@media screen and (min-width: 840px) {
  .detail-hero__description-wrapper {
    width: 100%;
    padding: 16px;
  }
}

.detail-hero__description {
  font-size: 12px;
}
@media screen and (min-width: 840px) {
  .detail-hero__description {
    font-size: 14px;
  }
}
.detail-hero__description:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (min-width: 840px) {
  .detail-hero__description:not(:last-child) {
    margin-bottom: 14px;
  }
}

/* ========================================
   Detail Content Block
======================================== */
.detail-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 840px) {
  .detail-content {
    padding: 0;
  }
}

/* ========================================
   Detail Section Block
======================================== */
.detail-section {
  padding: 36px 0 56px;
  border-bottom: none;
}
@media screen and (min-width: 840px) {
  .detail-section {
    padding: 80px 0 64px;
  }
}

.detail-section--exterior {
  border-bottom: none;
}

.detail-section__title {
  position: relative;
  display: block;
  margin-bottom: 24px;
  font-family: "Komika Axis", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .detail-section__title {
    margin-bottom: 28px;
    font-size: 28px;
  }
}

/* ========================================
   Variations Block
======================================== */
.detail-variations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 840px) {
  .detail-variations {
    gap: 19px;
  }
}

/* ========================================
   Menu Item Block
======================================== */
.diner-menu-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 3px solid #3e2211;
  line-height: 1;
}
@media screen and (min-width: 840px) {
  .diner-menu-item {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    gap: 0 22px;
    padding-top: 16px;
    padding-bottom: 14px;
    border-bottom-width: 4px;
  }
}

.diner-menu-item__title {
  grid-column: 1;
  grid-row: 1;
  font-family: "Komika Axis", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .diner-menu-item__title {
    font-size: 22px;
  }
}

.diner-menu-item__content {
  grid-column: 1/-1;
  grid-row: -4;
}
@media screen and (min-width: 840px) {
  .diner-menu-item__content {
    display: flex;
    align-items: flex-end;
    grid-column: 2;
    grid-row: 1;
  }
}

.diner-menu-item__price {
  grid-column: 2;
  grid-row: 1;
  font-family: "Komika Axis", sans-serif;
  font-size: 18px;
  white-space: nowrap;
  text-align: right;
  text-decoration: none;
}
@media screen and (min-width: 840px) {
  .diner-menu-item__price {
    grid-column: 3;
    font-size: 22px;
  }
}

.diner-menu-item__price-unit {
  font-size: 9px;
  margin-left: 4px;
}
@media screen and (min-width: 840px) {
  .diner-menu-item__price-unit {
    font-size: 11px;
  }
}

.diner-menu-item__description {
  font-size: 9px;
}
@media screen and (min-width: 840px) {
  .diner-menu-item__description {
    font-size: 14px;
  }
}

.diner-menu-item__detail-description {
  grid-column: 1/-1;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (min-width: 840px) {
  .diner-menu-item__detail-description {
    margin-top: 12px;
    font-size: 14px;
  }
}

/* ========================================
   Drink Set Block
======================================== */
.drink-set {
  width: 100%;
}

.drink-set__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 840px) {
  .drink-set__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========================================
   Exterior Block
======================================== */
.exterior {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exterior__image-wrapper {
  width: 100%;
  aspect-ratio: 345/230;
  border: none;
  overflow: hidden;
  background-color: #030b1c;
}
@media screen and (min-width: 840px) {
  .exterior__image-wrapper {
    width: 100%;
  }
}

.exterior__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.exterior__content {
  width: 100%;
}
@media screen and (min-width: 840px) {
  .exterior__content {
    width: 100%;
  }
}

.exterior__description {
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 840px) {
  .exterior__description {
    font-size: 16px;
    line-height: 2;
  }
}/*# sourceMappingURL=diner_2025-26.css.map */