body {
    font-family: 'Marcellus', serif;
    margin: 0;
    padding: 0;
    color: #000;
  }
  
  .main-visual img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .title {
    text-align: center;
    font-family: 'Marcellus', serif;
    font-size: 24px;
    margin: 20px 0 10px;
  }
  
  .lead {
    text-align: center;
    font-size: 14px;
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }
  
  .image-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  .image-item {
    position: relative;
    width: 100%;
    padding-top: 150%; /* 高さ確保 */
    overflow: hidden;
  }
  
  .fade-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
  }
  
  .fade-img.show {
    opacity: 1;
  }
  
  .look-credits {
    margin-top: 10px;
    font-size: 11px;
    color: #000;
  }  
  
  .credit-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
  }
  
  .item-name {
    display: flex;
    flex-direction: row;
    gap: 2px;
  }
  
  .buy-button {
    font-size: 8px;
    letter-spacing: 0.08em;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    padding: 2px 2px;
    transition: all 0.3s ease;
  }
  
  .buy-button:hover {
    background-color: #000;
    color: #fff;
  }
  
  .tax{
    font-size: 9px;
    display: block;
  }

  .posi{
    font-weight: bold;
    margin-bottom: 2px;
  }

  hr.line {
    height: 1px;
    border: none;
    border-top: 1px #000000 solid;
    margin-top: 10px;
    margin-bottom: 10px;
    }

  .button-container {
    text-align: center;
    margin: 30px 0;
  }
  
  .viewmore-btn {
    display: inline-block;
    font-size: 14px;
    padding: 8px 16px;
    width: 50%;
    border: 1px solid #000;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    margin-top: 30px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
  }


.viewmore-btn:hover {
  background-color: #000;
  color: #fff;
}
  
  @media (max-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr); /* スマホも2カラム */
      gap: 12px;
      padding: 0 12px;
    }
  
    .title {
      font-size: 20px;
    }
  
    .lead {
      font-size: 13px;
    }
  }
  