* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* HEADER */
header {
  background: #004466;
}

nav {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.4);
  color: #fff;
  text-align: center;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* SPOT GRID */
.spot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.spot-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform .3s;
}

.spot-card:hover {
  transform: translateY(-5px);
}

.spot-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.spot-card h3 {
  padding: 10px;
}

.spot-card p,
.spot-card dl {
  padding: 0 10px 10px;
  font-size: 14px;
}

/* CONTACT */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
}

button {
  background: #004466;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
}

/* FOOD SECTION */
.food {
  background: #f9f9f9;
}

.food-box {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.food-image {
  flex: 1;
}

.food-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.food-text {
  flex: 1;
}

.food-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.food-desc {
  margin-bottom: 15px;
  line-height: 1.8;
}

.food-info dt {
  font-weight: bold;
}

.food-info dd {
  margin-bottom: 8px;
}

/* DISHES */
.food-subtitle {
  margin: 50px 0 25px;
  text-align: center;
  font-size: 22px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.food-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .3s;
}

.food-card:hover {
  transform: translateY(-5px);
}

.food-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.food-card h4 {
  padding: 10px;
  font-size: 18px;
}

.food-card p {
  padding: 0 10px 15px;
  font-size: 14px;
  line-height: 1.6;
}
/* RECOMMEND IMAGES */
.recommend-images {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.recommend-item {
  text-align: center;
  font-size: 13px;
}

.recommend-item img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 5px;
}

/* FOOTER */
footer {
  background: #004466;
  color: #fff;
  text-align: center;
  padding: 20px;
}

