/* 全体背景 */
body {
  background-color: #fff0f5;
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
}

/* ヘッダー */
header {
  background-color: #ffe0ec;
  padding: 20px;
  text-align: center;
  color: #d63384;
  font-size: 24px;
  font-weight: bold;
}

/* パンくずリスト */
.breadcrumb {
  margin: 16px;
  font-size: 14px;
}
.breadcrumb a {
  text-decoration: none;
  color: #d63384;
}

/* フィルタータブ */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.filter-tabs button {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background-color: #ffd6e8;
  color: #d63384;
  cursor: pointer;
  font-weight: bold;
}
.filter-tabs button.active {
  background-color: #d63384;
  color: white;
}

/* コーディネートカード */
#visualContent,
#coordContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px 60px;
}

.coord-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
}

.coord-card h3 {
  font-size: 18px;
  color: #d63384;
  margin: 0 0 12px;
}

.coord-card p {
  font-size: 14px;
  margin: 8px 0 0;
}

/* アイテムリンク部分 */
.coord-items {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 埋め込み直後のアイテムリンクに余白なし */
.coord-card iframe + .coord-items,
.coord-card blockquote + .coord-items {
  margin-top: 0 !important;
}

/* Instagram埋め込み調整 */
.instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.coord-card blockquote.instagram-media {
  width: 100% !important;
  height: 600px !important;
  max-height: none !important;
  overflow: hidden;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Twitter埋め込み調整 */
.coord-card blockquote.twitter-tweet {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* YouTube iframe 調整 */
.coord-card iframe[src*="youtube.com"] {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 8px;
  margin: 0 !important;
}

/* レスポンシブ */
@media (max-width: 480px) {
  .coord-card {
    padding: 12px;
  }
  .coord-card h3 {
    font-size: 16px;
  }
  .coord-card p {
    font-size: 13px;
  }
  .coord-card iframe[src*="youtube.com"] {
    height: 280px;
  }
  .coord-card blockquote.instagram-media {
    height: 520px !important;
  }
}