﻿/* menu.css */

/* メニュー全体の構成 */
.horizontal-menu {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
}

/* メニュー画像（祭のイメージ） */
.menu-image {
  height: 32%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-image img {
  max-height: 100%;
  max-width: 90%;
  object-fit: contain;
}

/* メニュー項目のラッパー */
.menu-items {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}

/* 各メニュー項目ボックス */
.menu-item {
  position: relative;
  width: 12%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 2%;
  margin: 2%
}

/* 筆文字（日本語ラベル）右上配置・縦書き・太字 */
.menu-japanese {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2.2vw;
  font-weight: 400;
  font-style: normal;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  position: absolute;
  top: 0.5vh;
  right: 0.5vh;
}

/* 英語ラベル（左下配置・縦書き・右90度） */
.menu-english {
  position: absolute;
  bottom: 1vh;
  left: 0.5vh;
  font-size: 1.2vw;
  font-family: 'Helvetica Neue', sans-serif;
  writing-mode: vertical-rl;
  color: #e0e0e0;
  opacity: 0.8;
}

/* 画面幅が800px以下の場合（スマホ向け） */
@media screen and (max-width: 800px) {
  .menu-item {
    width: 15vw;
    height: 30vh; /* スマホでは30vhに調整 */
  }
}


