body {
  margin: 0;
  font-family: 'Kiwi Maru', serif;
  background-color: #f9f6f1;
  color: #333;
}

header {
  background-color: #2e2e2e;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

nav li {
  margin: 0.5rem 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero h2 {
  font-size: 1.8rem;
  margin-top: 1rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1rem;
}

.features div {
  background: #fff;
  border-left: 5px solid #a52a2a;
  padding: 1rem;
  border-radius: 5px;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* モバイル対応 */
@media (min-width: 600px) {
  .features {
    flex-direction: row;
    justify-content: space-around;
  }

  .features div {
    width: 30%;
  }
}

main {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  width: 45%;
  max-width: 300px;
  border-radius: 8px;
}

.hero h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.courses, .teacher {
  margin-top: 2rem;
  background-color: #fff;
  padding: 1rem;
  border-left: 5px solid #2e2e2e;
  border-radius: 6px;
}

.teacher ul {
  list-style: none;
  padding-left: 0;
}

.teacher li::before {
  content: "・";
  margin-right: 0.5rem;
}

.fees ul, .schedule ul {
  list-style: none;
  padding-left: 1rem;
}

.fees ul li::before,
.schedule ul li::before {
  content: "・";
  margin-right: 0.5rem;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.content-box {
  background: #fff;
  border-left: 5px solid #2e2e2e;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 2rem;
}

.content-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #333;
}

.bullet-list {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.bullet-list > li::before {
  content: "・";
  margin-right: 0.5rem;
  color: #a52a2a;
}

.bullet-list ul {
  margin-top: 0.5rem;
  margin-left: 1rem;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.lesson-table {
  margin-top: 1rem;
  overflow-x: auto;
}

.lesson-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 1rem;
}

.lesson-table th, .lesson-table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
}

.lesson-table th {
  background-color: #cce0f7;
  color: #000;
}

.lesson-table td {
  background-color: #f9f9f9;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.photo-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}
