@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ - RIDGE MOUNTAIN GEAR風デザイン
Theme URI: https://wp-cocoon.com/
Author: UT-Inc
Template:   cocoon-master
Version:    1.0.0
*/

/* ========================================
   RIDGE MOUNTAIN GEAR風カラー・タイポグラフィ
   ======================================== */
:root {
  --ut-bg: #ffffff;
  --ut-bg-sub: #f5f5f5;
  --ut-text: #1a1a1a;
  --ut-text-muted: #666666;
  --ut-border: #e0e0e0;
  --ut-font: "Helvetica Neue", "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* RIDGE風ページ全体 */
body.ut-style-page {
  margin: 0;
  background: var(--ut-bg);
  color: var(--ut-text);
  font-family: var(--ut-font);
  font-size: 16px;
  line-height: 1.6;
}

/* ヘッダー（左上ハンバーガー + ロゴ） */
.ut-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ut-border);
  display: flex;
  align-items: center;
  gap: 24px;
}

.ut-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ut-text);
  flex-shrink: 0;
}

.ut-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.ut-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ut-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.ut-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ut-logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ut-text);
  text-decoration: none;
}

/* ドロワー（左から開く） */
.ut-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--ut-bg);
  z-index: 999;
  padding: 80px 24px 40px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  border-right: 1px solid var(--ut-border);
  overflow-y: auto;
}

.ut-drawer.is-open {
  transform: translateX(0);
}

.ut-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.ut-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ut-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ut-nav-list li {
  margin: 0;
  border-bottom: 1px solid var(--ut-border);
}

.ut-nav-list a {
  display: block;
  padding: 16px 0;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--ut-text);
  text-decoration: none;
  transition: color 0.2s;
}

.ut-nav-list a:hover {
  color: var(--ut-text-muted);
}

/* メインコンテンツ */
.ut-main {
  padding-top: 60px;
}

/* ヒーロー画像エリア */
.ut-hero {
  width: 100%;
  margin-bottom: 0;
}

.ut-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* セクション */
.ut-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ut-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin: 0 0 24px;
  color: var(--ut-text-muted);
  text-transform: uppercase;
}

.ut-section-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 32px;
  line-height: 1.4;
}

/* Pickupセクション（商品グリッド） */
.ut-pickup {
  background: var(--ut-bg-sub);
}

.ut-pickup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .ut-pickup-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.ut-pickup-item {
  background: var(--ut-bg);
  padding: 24px;
}

.ut-pickup-item img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.ut-pickup-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.ut-pickup-item .price {
  font-size: 0.9rem;
  color: var(--ut-text-muted);
  margin-bottom: 12px;
}

.ut-pickup-item p {
  font-size: 0.9rem;
  color: var(--ut-text-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.ut-pickup-item a {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ut-text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.ut-pickup-item a:hover {
  color: var(--ut-text-muted);
}

/* フッター */
.ut-footer {
  background: var(--ut-text);
  color: var(--ut-bg);
  padding: 60px 24px 40px;
  margin-top: 60px;
}

.ut-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .ut-footer-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.ut-footer-block h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.ut-footer-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ut-footer-block li {
  margin: 0 0 8px;
}

.ut-footer-block a {
  font-size: 0.9rem;
  color: var(--ut-bg);
  text-decoration: none;
}

.ut-footer-block a:hover {
  text-decoration: underline;
}

.ut-footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* レスポンシブ */
@media screen and (max-width: 1023px) {
  .ut-section {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 834px) {
  .ut-header {
    padding: 12px 20px;
  }
  
  .ut-section {
    padding: 32px 16px;
  }
}

@media screen and (max-width: 480px) {
  .ut-header {
    padding: 10px 16px;
  }
  
  .ut-logo {
    font-size: 1rem;
  }
}
