* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
  }
  
  /* ヘッダー */
  header {
    background-color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #e67e22; /* オレンジ */
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 1.5rem;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
  }
  
  /* --- スライドショー（ヒーローセクション）のスタイル --- */
  .hero {
    position: relative;
    overflow: hidden;
    height: 60vh; /* 画面の高さに対する比率 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 画像を背面に配置 */
    background-color: #333; /* 画像が読み込まれるまでの背景色 */
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* 1.5秒かけてふわっと切り替わる */
  }
  
  /* activeクラスがついた画像だけを表示 */
  .slide.active {
    opacity: 1;
  }
  
  /* 文字コンテンツを画像の上に重ねる */
  .hero-content {
    position: relative;
    z-index: 2; /* 画像より前面に出す */
    text-align: center;
    color: #ffffff; /* 文字を白にして見やすく */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* 背景が明るくても文字が見えるように影をつける */
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* メインコンテンツ */
  .container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #e67e22;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* リスト系スタイル */
  .news-list, .history-list {
    list-style: none;
  }
  
  .news-list li, .history-list li {
    padding: 1rem 0;
    border-bottom: 1px dashed #ddd;
  }
  
  .date {
    color: #e67e22;
    font-weight: bold;
    margin-right: 1rem;
  }
  
  /* 出店スケジュールカード */
  .highlight {
    background-color: #fff8f0;
    padding: 2rem;
    border-radius: 10px;
  }
  
  .schedule-card {
    text-align: center;
    border: 2px solid #e67e22;
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .next-date {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  /* SNS */
  .sns-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .sns-link {
    font-size: 2rem;
    color: #e67e22;
    transition: transform 0.3s;
  }
  
  .sns-link:hover {
    transform: scale(1.2);
  }
  
  footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: #fff;
    font-size: 0.8rem;
  }
  
  /* スマホ対応 */
  @media (max-width: 600px) {
    header {
      flex-direction: column;
    }
    nav ul {
      margin-top: 1rem;
    }
    .hero-content h1 {
      font-size: 1.8rem;
    }
  }