body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #5a5a5a;
  background: #fafafa;
}

.hero {
  position: relative;
  height: 50vh;
  background: url("images/choux-00.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px;
}

.logo {
  width: 120px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.hero-text {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 30px;
  border-radius: 12px;
}

.hero-text h1 {
  margin: 0;
  font-size: 2.2rem;
}

.gallery {
  padding: 60px 20px;
  text-align: center;
}

.fade-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  height: 450px;
  /* 写真の高さに合わせて調整OK */
  overflow: hidden;
  border-radius: 16px;
}

.fade-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  /* フェード時間 */
}

.fade-slider .slide.active {
  opacity: 1;
}

.news,
.calendar {
  padding: 40px 20px;
  text-align: center;
}

.news ul {
  list-style: none;
  padding: 0;
}

.news li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.calendar img {
  max-width: 700px;
  width: 95%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

footer {
  background: #f2f2f2;
  padding: 40px 20px;
  text-align: center;
}

footer img {
  max-width: 400px;
  border-radius: 12px;
}

.info {
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer-map {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
}

.footer-map h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #6b5a4a;
}

.footer-map iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map {
  padding: 40px 20px;
  text-align: center;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.info a {
  color: #6b5a4a;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s ease;
}

.info a:hover {
  color: #a67c52;
  border-bottom-color: #a67c52;
}

.parking-note {
  padding: 40px 20px 0;
  text-align: center;
}

.parking-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 24px;
  background: #f5efe6;
  /* ナチュラルな薄ベージュ */
  border-radius: 16px;
  color: #6b5a4a;
  font-size: 0.95rem;
  line-height: 1.8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.parking-box::before {
  content: "";
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}