@charset "UTF-8";
/* ============================================
   W.O.W ユーザーの声 ページ専用スタイル
   （video-library.css と同一のトーン＆マナー／白ベース・アコーディオン形式）
   ============================================ */

@font-face {
  font-family: "GenShinGothic P";
  src: url("../fonts/GenShinGothic-P-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenShinGothic P";
  src: url("../fonts/GenShinGothic-P-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenShinGothic P";
  src: url("../fonts/GenShinGothic-P-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Seravek Basic";
  src: url("../fonts/fonnts.com-Seravek_Basic.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.uv-body {
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-family: "GenShinGothic P", "GenShinGothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.uv-body a {
  text-decoration: none;
  color: inherit;
}

/* ---------- ヒーロー ---------- */
.uv-hero {
  position: relative;
  padding: 90px 20px 70px;
  text-align: center;
  overflow: hidden;
  background-color: #FFFFFF;
}

.uv-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../image/home/fv-wave.gif");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(1) invert(1) contrast(0.9);
}

.uv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 45%, #FFFFFF 100%);
}

.uv-hero-inner {
  position: relative;
  z-index: 1;
}

.uv-hero-title {
  font-size: 40px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.uv-hero-sub {
  margin-top: 14px;
  font-family: "Seravek Basic", "GenShinGothic P", sans-serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: #00acc1;
  text-transform: uppercase;
}

.uv-hero-lead {
  margin-top: 22px;
  font-size: 14px;
  line-height: 2;
  color: rgba(26, 26, 26, 0.75);
}

@media screen and (max-width: 767px) {
  .uv-hero {
    padding: 60px 16px 46px;
  }
  .uv-hero-title {
    font-size: 26px;
  }
  .uv-hero-lead {
    font-size: 12px;
  }
}

/* ---------- カテゴリーピル（絞り込み） ---------- */
.uv-tabs-wrapper {
  position: sticky;
  top: 0;
  z-index: 9000;
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.uv-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 20px;
  max-width: 1000px;
  margin-inline: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 172, 193, 0.4) transparent;
  -webkit-overflow-scrolling: touch;
}
.uv-tabs::-webkit-scrollbar {
  height: 4px;
}
.uv-tabs::-webkit-scrollbar-thumb {
  background: rgba(0, 172, 193, 0.4);
  border-radius: 2px;
}

.uv-tab {
  flex: 0 0 auto;
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  color: #1A1A1A;
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.uv-tab:hover {
  border-color: #00acc1;
  color: #00acc1;
}
.uv-tab._active {
  background-color: #1A1A1A;
  border-color: #1A1A1A;
  color: #fff;
  font-weight: 700;
}

.uv-tab-icon {
  display: inline-flex;
  align-items: center;
}
.uv-tab-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.uv-tab-count {
  margin-left: 2px;
  font-size: 10px;
  opacity: 0.7;
}

.uv-reset {
  flex: 0 0 auto;
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: rgba(26, 26, 26, 0.6);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  padding: 10px 6px;
  margin-left: auto;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s;
}
.uv-reset:hover {
  color: #00acc1;
}
.uv-reset svg {
  width: 13px;
  height: 13px;
  display: block;
}

/* ---------- メイン ---------- */
.uv-main {
  max-width: 1000px;
  margin-inline: auto;
  padding: 30px 20px 80px;
}

.uv-section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.uv-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 14px;
}
.uv-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #7af5f9, #00bcd4);
}

.uv-section-count {
  font-family: "Seravek Basic", sans-serif;
  font-size: 12px;
  color: #00acc1;
  letter-spacing: 0.1em;
}

/* ---------- アコーディオンリスト ---------- */
.uv-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.uv-item {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.uv-item:hover {
  border-color: rgba(0, 172, 193, 0.6);
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.12);
}
.uv-item._hidden {
  display: none;
}

.uv-item-head {
  appearance: none;
  border: none;
  background: transparent;
  font-family: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
}
.uv-item-head._static {
  cursor: default;
}

.uv-avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.uv-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.uv-item-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uv-item-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: #1A1A1A;
}

.uv-item-meta {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  letter-spacing: 0.04em;
}

.uv-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.uv-tag {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #F2F3F5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(26, 26, 26, 0.7);
}

/* 開閉トグルラベル（続きを読む ▼ ／ 閉じる ▲） */
.uv-toggle {
  flex: 0 0 auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00acc1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.25s;
}
.uv-item-head:hover .uv-toggle {
  color: #0097a7;
}
.uv-item-head:hover .uv-toggle-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.uv-chevron {
  display: inline-flex;
  transition: transform 0.3s;
}
.uv-chevron svg {
  width: 14px;
  height: 14px;
  display: block;
}
.uv-item._open .uv-chevron {
  transform: rotate(180deg);
}

/* 開閉パネル */
.uv-item-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.uv-item._open .uv-item-panel {
  grid-template-rows: 1fr;
}

.uv-item-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.uv-item-body {
  margin: 0 20px 0 88px;
  padding: 16px 0 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 2;
  color: rgba(26, 26, 26, 0.8);
  white-space: pre-line;
}

/* 該当なし表示 */
.uv-empty {
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.5);
}

@media screen and (max-width: 767px) {
  .uv-item-head {
    gap: 12px;
    padding: 14px 14px;
  }
  .uv-avatar {
    width: 42px;
    height: 42px;
  }
  .uv-item-title {
    font-size: 13px;
  }
  .uv-toggle {
    font-size: 11px;
  }
  .uv-chevron svg {
    width: 12px;
    height: 12px;
  }
  .uv-item-meta {
    font-size: 11px;
  }
  .uv-item-body {
    margin: 0 14px 0 14px;
    font-size: 13px;
  }
  .uv-section-title {
    font-size: 17px;
  }
}
