/* Base Reset */
body, h1, h2, p, ul, li, a, select {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif JP', serif;
  }

  h2 {
    padding-top: 40px;
  }
  
  body {
    background-color: #fdfaf4;
    color: #333;
    line-height: 1.6;
    padding-top: 80px;
  }
  
  /* Navbar */
  .navbar {
    background-color: #1e2d2f;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    
  }

  /* ロゴ内リンクの装飾を解除 */
.logo a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
  }


  .nav-links {
    display: flex;
    list-style: none;
    padding-right: 20px;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .nav-links li {
    white-space: nowrap;
  }
  
  .nav-links a, .nav-links select {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    background: none;
    border: none;
    padding: 0.2rem;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('img/eyecatch.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 70px;
  }

  
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
    max-width: 90%;
  }
  
  .hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    padding: 0.7rem 1.5rem;
    background-color: #41644A;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #2d4833;
  }
  
  /* Intro Section */
  .intro {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .intro h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  
  .intro p {
    font-size: 1.1rem;
  }
  
  .spot {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  .spot-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .spot h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  
  .spot p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  @media (min-width: 768px) {
    .spot {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 2rem;
      text-align: left;
    }
  
    .spot-img {
      width: 40%;
      flex-shrink: 0;
    }
  
    .spot h3,
    .spot p {
      margin: 0;
    }
  }


  /* Footer */
  footer {
    background-color: #1e2d2f;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
  