body {
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    margin: 0;
    background-color: #fffaf3;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  header {
    background-color: #ff8c42;
    padding: 1em 0;
    color: white;
  }
  
  header h1 {
    margin: 0;
    font-size: 1.8em;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0.5em 0 0;
    gap: 1em;
  }
  
  nav a {
    color: white;
    text-decoration: none;
  }
  
  .hero {
    padding: 2em 0;
    text-align: center;
  }
  
  .recipes {
    margin-top: 2em;
  }
  
  .recipe-card {
    display: flex;
    gap: 1em;
    background: white;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
  }
  
  .recipe-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  footer {
    text-align: center;
    padding: 1em;
    background: #eee;
    margin-top: 3em;
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  input, textarea {
    padding: 0.5em;
    font-size: 1em;
    width: 100%;
    max-width: 500px;
  }
  body {
    background: linear-gradient(#fff8f0, #fefefe);
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  .recipe-card {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .recipe-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  /* アニメーション */
  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-in {
    animation: fadeSlideIn 1s ease forwards;
  }

  section img {
    max-width: 100%;
  }

  main img {
    max-width: 100%;
  }