@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Anton', sans-serif;
    background-color: #0d0d0d;
    color: white;
    overflow-x: hidden; /* 横スクロール禁止（余白防止） */
  }

  header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0d0d0d;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #1e1e1e;
  }

  .logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #00aaff;
    text-transform: uppercase;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #00aaff;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #00aaff;
  }
  
  nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* 商品紹介セクション */
  .recommend-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .recommend-title {
    font-size: 2.5rem;
    color: #00aaff;
    margin-bottom: 60px;
  }

  .item-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    margin-bottom: 60px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: transform 0.3s;
  }

  .item-card:hover {
    transform: translateY(-5px);
  }

  .item-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 30px;
    flex-shrink: 0;
  }

  .item-details {
    text-align: left;
    flex: 1;
  }

  .item-name {
    color: #0d0d0d;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .item-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .item-price {
    font-size: 1.4rem;
    color: #00aaff;
    font-weight: bold;
  }

  .item-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .item-link:hover {
    background: #555;
  }

  @media (max-width: 768px) {
    .item-card {
      flex-direction: column;
      text-align: center;
    }

    .item-image {
      margin-right: 0;
      margin-bottom: 20px;
    }

    .item-details {
      text-align: center;
    }
  }