/* ==========================================
   VIP PREMIUM OFFERS - プレミアムミニマルスタイル
========================================== */
.vip-premium-offers {
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding-bottom: 120px;
  letter-spacing: 0.03em;
}

/* ① ヒーローエリア */
.premium-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  text-align: center;
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #888888;
  margin-bottom: 16px;
  font-weight: 600;
}
.hero-title {
  font-size: 36px;
  font-weight: 300;
  color: #111111;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 15px;
  line-height: 2;
  color: #555555;
}

/* ② メイン特集（フルワイドイメージ） */
.premium-featured {
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.featured-banner {
  display: block;
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  text-decoration: none !important;
}
.banner-img-wrapper {
  width: 100%;
  height: 100%;
}
.banner-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.banner-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  transition: background 0.4s ease;
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  max-width: 500px;
  color: #ffffff;
}
.content-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
}
.content-title {
  font-size: 28px;
  font-weight: 400;
  margin: 20px 0 16px;
}
.content-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #dddddd;
  margin-bottom: 30px;
}
.content-link {
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 4px;
  transition: gap 0.3s ease;
}
.content-link .arrow { display: inline-block; transition: transform 0.3s ease; }
.featured-banner:hover .banner-img-wrapper img { transform: scale(1.03); }
.featured-banner:hover .content-link .arrow { transform: translateX(6px); }

/* ③ 2カラム変則グリッド */
.premium-grid-container {
  max-width: 1140px;
  margin: 0 auto 100px;
  padding: 0 24px;
}
.grid-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.split-card {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
}
.card-img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: #f0f0f0;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.card-info .info-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #ff7e00;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.info-title {
  font-size: 20px;
  font-weight: 400;
  color: #111111;
  margin-bottom: 12px;
}
.info-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 16px;
}
.info-link {
  font-size: 13px;
  font-weight: 600;
  color: #0054a6;
}
.info-link .arrow { display: inline-block; transition: transform 0.3s ease; }
.split-card:hover .card-img-wrap img { transform: scale(1.03); }
.split-card:hover .info-link .arrow { transform: translateX(4px); }

/* ④ 下部直営コレクション（ギャラリーライク） */
.premium-collection {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 0;
/*  border-top: 1px solid #eeeeee;*/
}
.collection-header {
  text-align: center;
  margin-bottom: 60px;
}
.collection-title {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.collection-subtitle {
  font-size: 13px;
  color: #888888;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.collection-item {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
}
.collection-item .item-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 16px;
}
.collection-item .item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.item-meta {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #888888;
  margin-bottom: 6px;
  font-weight: 600;
}
.item-name {
  font-size: 15px;
  font-weight: 500;
  color: #222222;
}
.collection-item:hover .item-img-wrap img { transform: scale(1.04); }

/* Coming Soon のスマートな表現（ノイズにならない美しさ） */
.cs-item {
  pointer-events: none;
}
.cs-item .item-img-wrap {
  position: relative;
}
.cs-item .item-img-wrap img {
  filter: grayscale(1) opacity(0.4);
}
.cs-tag {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #666666;
  border: 1px solid #dddddd;
  padding: 6px 14px;
  background: #ffffff;
}
.cs-item .item-name { color: #999999; }

/* レスポンシブ */
@media (max-width: 960px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .premium-hero { padding: 60px 24px 40px; }
  .hero-title { font-size: 28px; }
  .featured-banner { height: 380px; }
  .banner-content { left: 30px; right: 30px; }
  .grid-split { grid-template-columns: 1fr; gap: 40px; }
  .collection-grid { grid-template-columns: 1fr; }
}