/* ベース */
body {
  font-family:
    "Yu Gothic Rounded", /* Windows10以降に標準搭載。丸ゴシック感あり */
    "Yu Gothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  font-weight: 500; /* 太め */
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding: 0;
}
/*
body {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  background: #fff;
  color: #333;
  font-size: 16px;
}
*/
header {
  text-align: center;
  padding: 20px;
}

.logo {
/*
  max-width: 160px;
*/
}

/* 注文バナー */
.order-banner {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #005580;
  color: #fff;
  padding: 20px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  font-size: 14px;
  z-index: 100;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* 段落 */
.description {
  margin-bottom: 40px;
}

/* 見出し */
.menu h2,
.access h2,
.information h2 {
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  margin-top: 40px;
  font-size: 1.4em;
}

/* メニュー */
.menu-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu .item {
  flex: 1 1 45%;
}

.menu .item img {
  width: 100%;
  height: auto;
  display: block;
}

/* アクセス画像 */
.access-images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.access-images img {
  width: 48%;
  height: auto;
  display: block;
}

/* 情報テーブル */
.information table {
  width: 100%;
  border-collapse: collapse;
}

.information th,
.information td {
  border: 1px solid #ccc;
  padding: 10px;
}

.information th {
  background: #c0e6c0;
  text-align: left;
}

.information td {
  background: #f8d24e;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .order-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    z-index: 1000;
  }

  .menu-items {
    flex-direction: column;
  }

  .menu .item {
    flex: 1 1 100%;
  }

  .access-images {
    flex-direction: column;
  }

  .access-images img {
    width: 100%;
  }

  body {
    font-size: 15px;
  }

}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }

  header {
    padding: 15px;
  }

  .logo {
    max-width: 140px;
  }
}
