@charset "utf-8";
  /* --- 汎用記事スタイル (.article-base) --- */
  .article-base {
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    line-height: 1.8;
  }

  .item-glp section p {
    font-size: 13px;
  }
  .item-glp section .item-area {
    flex-direction: initial !important;
  }
  .item-glp section .item-area .item-area-cont {
        flex-shrink: 0;
  }
  /* 上部タイトル・リードエリア */
  .article-base .title-area h2 { font-size: 48px; margin: 0 0 40px; }
  .article-base .title-area .lead { font-size: 15px; color: var(--text-gray); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 60px; }
  .article-base a { color: var(--gold-main); text-decoration: none; }

  /* デザイナー情報 */
  .designer-info { text-align: center; margin-bottom: 80px; }
  .designer-info span { font-size: 11px; color: var(--gold-main); letter-spacing: 0.3em; display: block; }
  .designer-info h3 { font-family: 'Playfair Display', serif; font-size: 32px; margin: 5px 0; }

  /* インタビューエリア */
  .interview-area { background: rgba(255, 255, 255, 0.03); padding: 50px 40px; margin: 50px 0; }
  .interview-area h4 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold-main); text-align: center; margin-bottom: 40px; }
  
  /* Q&A 構造 */
  .qa-list dl { margin-bottom: 40px; }
  .qa-list dt { font-weight: bold; color: var(--gold-dim); margin-bottom: 5px; }
  .qa-list dd { margin: 0; color: var(--text-white); padding-left: 20px; border-left: 1px solid var(--gold-dim); }

  /* 注釈エリア */
  .notes-area { background: #eee; border: 1px solid rgba(201, 173, 106, 0.2); padding: 30px; font-size: 13px; color: var(--text-gray); }
  .notes-area h4 { color: var(--gold-main); margin-bottom: 10px; font-size: 14px; }
  .notes-area div { margin-bottom: 20px; }

  /* 画像の指定 */
  .item-area,
  .flex-imgs {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin: 50px auto;
  }
  .flex-imgs .flex-imgs-item {
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }
  .flex-imgs-2cum .flex-imgs-item {
    width: calc(100%/2 - 10px);
  }
  .flex-imgs-3cum .flex-imgs-item {
    width: calc(100%/3 - 10px);
  }
  .item-area-cont {
    width: calc(100%/3 - 30px);
    display: flex;
    flex-direction: column;
  }
  .item-name {
    font-size: 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
  }
  .price {
    font-size: 14px;
  }


  .flex-imgs .flex-imgs-item img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .interview-area { padding: 10px 0; }
    .article-base .title-area h2 { font-size: 32px; }
  }

    @media (max-width: 768px) {
    .item-area,
    .flex-imgs {
      flex-direction: column;
    }
    .flex-imgs .flex-imgs-item {
      width: 100%;
    }
    .item-area-cont {
      width: 100%;
    }
  }