/*
 Theme Name: Arkhe Child
 Template: arkhe
*/

body,
.p-postList.-type-video,
.video-card,
.video-title,
.video-info {
  font-family: 'Roboto', 'Arial', sans-serif;
}

/* ===================================
video 
 ===================================== */

/* 一覧カード
 ===================================== */

.p-postList.-type-video {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-card {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  align-items: flex-start;
}

.video-card .video-thumb{
  width: 50%;
}

.video-thumb {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-title {
  font-size: 18px;
  margin: 0 0 6px 0;
  line-height: 1.3;
  color: #222;
}

.video-title a {
  text-decoration: none;
  color: inherit;
}

.video-info {
  font-size: 14px;
  color: #666;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.video-category,
.video-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-links a,
.video-favorite a {
  font-size: 18px;
  color: #333;
  margin-right: 12px;
  text-decoration: none;
}

.video-links a:hover,
.video-favorite a:hover {
  color: #d00;
}

/* お気に入りは右端に寄せたいなら追加 */
.video-favorite {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* 詳細ページ
 ===================================== */

/* 全体の余白調整 */
.single-video article {
}

/* サムネイル */
.single-video .video-thumb {
  text-align: center;
  margin-bottom: 25px;
}

.single-video .video-thumb img {
}

/* タイトル */
.single-video .video-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

/* 投稿日・カテゴリー */
.single-video .video-meta {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

.single-video .video-meta span+span {
  margin-left: 12px;
  position: relative;
}

.single-video .video-meta span+span::before {
  content: "•";
  position: absolute;
  left: -8px;
  color: #999;
  font-weight: 700;
}

/* リンクボタン */
.single-video .video-links a {
  display: inline-block;
  background-color: #cc0000;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}

.single-video .video-links a.fantia-link {
  background-color: #fa4664;
}

.single-video .video-links a:hover {
  background-color: #990000;
}

.single-video .video-links a.fantia-link:hover {
  background-color: #c73550;
}

/* あらすじ */
.single-video .video-summary {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}

/* 関連投稿 */
.single-video .related-posts h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.single-video .related-posts ul {
  list-style: none;
  padding-left: 0;
}

.single-video .related-posts li {
  margin-bottom: 8px;
}

.single-video .related-posts a {
  color: #cc0000;
  text-decoration: none;
  font-weight: 600;
}

.single-video .related-posts a:hover {
  text-decoration: underline;
}