/**
 * HAUTE rent-to-wear トップページ 上書き用CSS
 * aishipR CMS用: 既存CSSを上書きするスタイルシート
 */

/* ========================================
   リセット・基本設定
======================================== */

.haute-main * {
  box-sizing: border-box;
}

.haute-main {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Hero Section
======================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-logo {
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: 'Pinyon Script', 'Brush Script MT', cursive;
  font-size: clamp(24px, 4vw, 40px);
  margin-top: 10px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Concept Section
======================================== */

.concept-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.concept-title {
  font-family: 'Montserrat', 'Futura', 'Yu Gothic', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  color: #333;
}

.concept-text {
  font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* ========================================
   Editorial Grid Section
======================================== */

.editorial-grid-section {
  padding: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.editorial-item {
  position: relative;
  overflow: hidden;
}

.editorial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.editorial-item:hover img {
  transform: scale(1.05);
}

.editorial-item-large {
  grid-column: 1 / 2;
  min-height: 600px;
}

.editorial-item-small {
  grid-column: 2 / 3;
  min-height: 600px;
}

.editorial-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: letter-spacing 0.3s ease;
}

.editorial-label:hover {
  letter-spacing: 0.2em;
}

/* ========================================
   Product Section
======================================== */

.product-section {
  padding: 80px 0;
  background-color: #F9F9F9;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.product-item {
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 133.33%; /* 3:4 aspect ratio */
  overflow: hidden;
  background-color: #F9F9F9;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-item:hover .product-image {
  transform: scale(1.05);
}

.product-name {
  font-family: 'Yu Gothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin: 12px 10px 5px;
  color: #333;
}

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin: 0 10px 12px;
  color: #666;
}

.view-more {
  text-align: center;
  margin-top: 40px;
}

.btn-view-more {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 15px 50px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-more:hover {
  background-color: #333;
  color: #fff;
}

/* ========================================
   Category Section
======================================== */

.category-section {
  padding: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.category-item {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-item:hover img {
  transform: scale(1.05);
}

.category-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: letter-spacing 0.3s ease;
}

.category-label:hover {
  letter-spacing: 0.2em;
}

/* ========================================
   Editorial Secondary Section
======================================== */

.editorial-secondary-section {
  padding: 0;
}

.editorial-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.editorial-secondary-item {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

.editorial-secondary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.editorial-secondary-item:hover img {
  transform: scale(1.05);
}

/* ========================================
   Lookbook Section
======================================== */

.lookbook-section {
  padding: 80px 0;
  background-color: #fff;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
}

.lookbook-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.lookbook-item:hover img {
  transform: scale(1.05);
}

.lookbook-info {
  padding: 20px 0;
}

.lookbook-title {
  font-family: 'Yu Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.lookbook-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lookbook-link:hover {
  color: #333;
}

/* ========================================
   Info Section
======================================== */

.info-section {
  padding: 80px 0;
  background-color: #F7F7F7;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  color: #333;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  font-family: 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.info-list li {
  margin-bottom: 10px;
}

.info-list li::before {
  content: '✓ ';
  color: #333;
  font-weight: bold;
  margin-right: 10px;
}

.btn-info {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 15px 50px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-info:hover {
  background-color: #333;
  color: #fff;
}

/* ========================================
   レスポンシブデザイン
======================================== */

/* タブレット (768px - 1024px) */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* タブレット～スマホ (max-width: 768px) */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-logo {
    font-size: clamp(50px, 12vw, 80px);
  }
  
  .hero-tagline {
    font-size: clamp(20px, 5vw, 30px);
  }
  
  /* Concept Section */
  .concept-section {
    padding: 60px 0;
  }
  
  .concept-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .concept-text {
    font-size: 14px;
    line-height: 1.8;
  }
  
  /* Editorial Grid - スタック表示 */
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  
  .editorial-item-large,
  .editorial-item-small {
    grid-column: 1 / 2;
    min-height: 400px;
  }
  
  .editorial-label,
  .category-label {
    bottom: 20px;
    left: 20px;
    font-size: 12px;
  }
  
  /* Product Section */
  .product-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .product-name {
    font-size: 12px;
    margin: 10px 8px 5px;
  }
  
  .product-price {
    font-size: 11px;
    margin: 0 8px 10px;
  }
  
  /* Category Grid - スタック表示 */
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .category-item {
    min-height: 350px;
  }
  
  /* Editorial Secondary - スタック表示 */
  .editorial-secondary-grid {
    grid-template-columns: 1fr;
  }
  
  .editorial-secondary-item {
    min-height: 400px;
  }
  
  /* Lookbook Section */
  .lookbook-section {
    padding: 60px 0;
  }
  
  .lookbook-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Info Section */
  .info-section {
    padding: 60px 0;
  }
  
  .info-title {
    font-size: 22px;
  }
  
  .info-list {
    font-size: 14px;
  }
}

/* スマホ (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  /* Hero Section */
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }
  
  /* Product Grid - 2カラム */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  /* Buttons */
  .btn-view-more,
  .btn-info {
    padding: 12px 30px;
    font-size: 12px;
  }
  
  /* Editorial Items */
  .editorial-item-large,
  .editorial-item-small,
  .category-item,
  .editorial-secondary-item {
    min-height: 300px;
  }
}

/* 小型スマホ (max-width: 375px) */
@media (max-width: 375px) {
  .hero-logo {
    font-size: 50px;
  }
  
  .hero-tagline {
    font-size: 20px;
  }
  
  .product-name {
    font-size: 11px;
  }
  
  .product-price {
    font-size: 10px;
  }
}
