@charset "utf-8";

/* --- 変数定義 --- */
:root {
  --primary-dark: #02152b; 
  --accent-gold: #D4AF37;   
  --text-white: #f5f5f5;
  --text-main: #222222;
  --bg-light: #fdfdfd;
}

/* --- 基本設定 --- */
body {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  color: var(--text-main);
  background-color: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 共通コンテナ設定 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}





/* --- ヘッダー（高さを以前のスマートな状態に維持） --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 6%; /* 上下余白を削り、高さを以前の幅に戻しました */
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0; 
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo a { 
  display: flex;
  align-items: center;
}

.logo img { 
  height: 35px; /* ロゴサイズは大きく維持 */
  filter: none; 
}

/* --- ナビゲーションのリセット：ポッチを完全に消す --- */
.nav ul { 
  list-style: none !important;
  margin: 0; 
  padding: 0;
  display: flex;
}

.nav li { 
  list-style: none !important;
  padding: 0;
  margin: 0;
}


/* --- ヘッダー：コンタクトボタン（塗りつぶし版） --- */
.contact-btn { 
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  /* 最初からゴールドで塗りつぶし */
  background-color: var(--accent-gold) !important; 
  /* 文字色を白に */
  color: #fff !important; 
  /* 枠線もゴールドに合わせる */
  border: 1px solid var(--accent-gold); 
  padding: 8px 25px; 
  transition: all 0.3s ease;
  line-height: 1.2;
  border-radius: 2px; /* ページ内ボタンに合わせて微かに角を丸く */
}



/* --- ヘッダー：コンタクトボタンのホバー（マウスオーバー）時 --- */
.contact-btn:hover { 
  /* 背景色：案A（深みのあるリッチゴールド）を採用 */
  background-color: #B8860B !important; 
  border-color: #B8860B !important;
  
  /* 動きを控えめな -1px に戻しました */
  transform: translateY(-1px) !important; 
  
  /* 影も少し控えめにして品良く整えています */
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3) !important; 
}




/* --- ヒーローセクション --- */
.hero {
  padding: 70px 5% 80px;
  text-align: center;
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.hero-with-bg::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(2, 21, 43, 0.45), rgba(2, 21, 43, 0.45)), 
                    url('../img/main01.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-content { position: relative; z-index: 10; text-shadow: 0 2px 15px rgba(0,0,0,0.6); }
.hero-label { font-size: 11px; letter-spacing: 0.5em; color: #fff; margin-bottom: 25px; }
h1 { font-size: 22px; font-weight: 300; letter-spacing: 0.4em; color: rgba(255,255,255,0.85); margin: 0; }
.number { font-size: clamp(80px, 14vw, 160px); font-weight: 700; color: var(--accent-gold); line-height: 1; }
.unit { font-size: 16px; color: var(--accent-gold); letter-spacing: 0.5em; display: block; margin-top: 5px; }
.sub-achievement { font-size: clamp(18px, 4.5vw, 30px); color: #fff; margin-top: 30px; letter-spacing: 0.15em; font-weight: 400; }

.achievement-details { display: flex; justify-content: center; gap: 30px; margin: 45px 0 25px; }
.detail-item {
  width: 180px; padding: 22px 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
}
.detail-total { border-color: var(--accent-gold); background: rgba(212, 175, 55, 0.12); }
.detail-label { display: block; font-size: 18px; color: #fff; margin-bottom: 12px; }
.detail-value { display: block; font-size: 42px; font-weight: 700; color: var(--accent-gold); line-height: 1; }
.detail-unit { font-size: 14px; margin-left: 4px; }
.achievement-date { font-size: 18px; color: rgba(255, 255, 255, 0.6); margin-top: 25px; font-weight: 300; }

.lead { 
  font-size: 16px; color: rgba(255,255,255,0.75); max-width: 850px; 
  margin: 60px auto 0; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15); 
  line-height: 2.3; letter-spacing: 0.05em; font-weight: 300;
}

/* --- 各セクション背景 --- */
.instagram-section { background: #fff; padding: 80px 0; }
.partners { padding: 60px 0 100px; background: #fff; }

/* --- インスタフィード --- */
.instagram-feed-container {
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- お問合せボタンセクション（CTA） --- */
.cta-section {
  padding: 40px 0 80px;
  text-align: center;
  background: #fff;
}
.main-cta-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: var(--accent-gold);
  color: #fff !important;
  padding: 22px 80px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}


/* --- お問合せボタン（CTA）のマウスオーバー時 --- */
.main-cta-btn:hover {
  /* 背景色をヘッダーとお揃いのリッチゴールドに変更 */
  background-color: #B8860B !important; 
  
  /* ページ中央のメインボタンは、存在感を出すため -3px の動きを維持 */
  transform: translateY(-3px); 
  
  /* 影の色も新しいゴールドに合わせて微調整 */
  box-shadow: 0 15px 35px rgba(184, 134, 11, 0.35); 
}




/* --- 導入実績 --- */
.partners-label { font-size: 11px; color: #ccc; margin-bottom: 15px; letter-spacing: 0.4em; text-align: center; }
.partners-title { font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 70px; letter-spacing: 0.2em; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 40px;
  margin: 0 auto;
}
.partners-grid span {
  font-size: 14px; color: #444; line-height: 1.5; padding: 10px 0;
  border-bottom: 1px solid #f2f2f2; font-weight: 400;
  display: flex; align-items: center;
}
.partners-note {
  margin-top: 50px; text-align: right; font-size: 12px; color: #999; font-weight: 300;
}

/* --- フッター --- */
.footer { padding: 60px; text-align: center; font-size: 10px; color: #ccc; border-top: 1px solid #f9f9f9; }

/* --- スマホ対応 (レスポンシブ) --- */
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 50px 5% 60px; }
  .pc-only { display: none; }
  .achievement-details { flex-direction: column; align-items: center; gap: 15px; }
  .detail-item { width: 85%; display: flex; justify-content: space-between; align-items: center; padding: 15px 25px; }
  .detail-label { font-size: 16px; margin-bottom: 0; }
  .detail-value { font-size: 28px; }
  .achievement-date { font-size: 14px; }
  .lead { font-size: 14px; line-height: 1.8; padding: 25px 0 0; }
  
  .instagram-section { padding: 50px 0; }
  .main-cta-btn { width: 90%; padding: 18px 0; font-size: 18px; box-sizing: border-box; }
  
  .partners-grid { grid-template-columns: 1fr; }
  .partners-grid span { font-size: 13px; }
  .partners-note { text-align: center; }
}