/* ===========================
   Reset & Base
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #333333;
  --color-accent: #ff02a9;
  --color-dark: #444444;
  --color-light: #f6f6f6;
  --color-bg: #ffffff;
  --color-border: #e0e0e0;
  --color-text: #333333;
  --color-text-light: #888888;
  --font-base:
    "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Hiragino Sans", sans-serif;
  --font-heading:
    "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
}

html {
  scroll-behavior: smooth;
  min-width: 320px;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===========================
   Utility
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.pc-only {
  display: none;
}

@media (min-width: 1024px) {
  .pc-only {
    display: inline;
  }
}

.placeholder-img {
  background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 100%);
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-img::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.2)' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E")
    center/24px no-repeat;
}

.placeholder-topic {
  aspect-ratio: 1 / 1;
}

.placeholder-circle {
}

.placeholder-hero {
  aspect-ratio: 3 / 4;
  min-height: 400px;
}

/* ===========================
   Header
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  max-width: none;
}

.site-branding a {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.site-branding a:hover {
  opacity: 0.7;
}

.logo-icon {
  color: var(--color-accent);
  font-size: 0.75rem;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg);
  padding: calc(var(--header-height) + 20px) 30px 30px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 105;
  font-family: "M PLUS 1", sans-serif;
}

.site-nav.is-open {
  right: 0;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-nav li a {
  display: block;
  padding: 16px 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.2s;
}

.site-nav li a:hover {
  opacity: 0.6;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    box-shadow: none;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 32px;
  }

  .site-nav li a {
    padding: 0;
    border-bottom: none;
  }
}

/* ===========================
   Entry Page
   =========================== */
.page-entry {
  margin: 0;
  padding: 0;
}

.entry-page {
  position: relative;
  min-height: 100vh;
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark) url("../images/enter/fv.jpg") center / cover
    no-repeat;
}

.entry-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1025px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}
@media (min-width: 768px) {
  .entry-content {
    padding: 60px 40px;
  }
}

.entry-content-inner {
  max-width: 659px;
  margin: 0 auto;
}

.entry-logo {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}

.entry-logo-img {
  margin: 0 auto 16px;
}

.entry-logo-search {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 8px;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .entry-logo-search {
    font-size: 35px;
    line-height: 30px;
  }
}

.entry-logo .logo-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.entry-logo h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.entry-logo h1 span {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.3em;
}

.entry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.entry-field input {
  width: 100%;
  padding: 19px 16px;
  border: 1px solid var(--color-dark);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #fff;
}

.entry-field input.has-error {
  outline: 2px solid var(--color-accent);
}

.entry-error {
  color: var(--color-accent);
  font-size: 0.8125rem;
  text-align: center;
}

.entry-privacy-error {
  color: #ff0000;
  font-size: 0.8125rem;
  text-align: center;
  margin: 0;
}

.entry-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444444;
  font-size: 0.8125rem;
  justify-content: center;
  cursor: pointer;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.1em;
}

.entry-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.entry-checkbox-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #444;
  border-radius: 3px;
  background: #fff;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.entry-checkbox input[type="checkbox"]:checked + .entry-checkbox-icon {
  background: #444;
  border-color: #444;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5L6.5 11.5L12.5 4.5'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.entry-checkbox a {
  color: #444;
  text-decoration: underline;
}

.entry-checkbox a:hover {
  opacity: 0.7;
}

.entry-submit {
  width: 230px;
  margin: 8px auto 0;
  padding: 12px 0;
  background: #9b9b9b;
  border: 1px solid #ccc;
  border-radius: 100px;
  color: #cdcdcd;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.3s;
  display: block;
}

.entry-submit.is-active {
  background: #444444;
}

.entry-submit:hover {
  opacity: 0.95;
}

.entry-notice {
  margin-top: 24px;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.entry-notice a {
  color: #444;
  text-decoration: underline;
}

.entry-notice a:hover {
  opacity: 0.7;
}

.entry-notice p {
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .entry-logo h1 {
    font-size: 2.25rem;
  }
  .entry-logo h1 span {
    font-size: 1.5rem;
  }
}

/* ===========================
   Buttons
   =========================== */
.btn-sm {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--color-primary);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.2s;
}

.btn-sm:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ===========================
   Tags
   =========================== */
.tag {
  display: inline-block;
  padding: 4px 20px 6px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  font-family: "M PLUS 1", sans-serif;
  line-height: 1.13;
}

.tag.active,
.tag:hover {
  background: var(--tag-color, var(--color-primary));
  color: #fff;
  border-color: var(--tag-color, var(--color-primary));
}

/* ===========================
   共通2カラムレイアウト
   =========================== */
.page-layout {
  display: flex;
  flex-direction: column;
}

.page-layout > .talent-sidebar {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px -2px 4px 0px #00000040;
}

.page-main {
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .page-layout {
    flex-direction: row;
  }
  .page-layout > .talent-sidebar {
    width: 280px;
    flex: 0 0 280px;
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
}

@media (min-width: 1200px) {
  .page-layout > .talent-sidebar {
    width: 350px;
    flex: 0 0 350px;
  }
}

/* ===========================
   Section: Hero / Category Filter
   =========================== */

.sidebar-reset-btn:hover {
  background: var(--color-light);
}

/* FV（ファーストビュー） */
.section-fv {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
}

.section-fv h2 {
  text-stroke: 2px black;
  paint-order: stroke;
  -webkit-text-stroke: 2px #444;
  font-weight: 700;
  color: #fff;
  font-size: 64px;
}

.section-fv .btn-fv {
  position: absolute;
  right: 30px;
  bottom: 30px;
  border: 1px solid #444;
}

.btn-fv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #333;
  font-family: "M PLUS 1", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.05em;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

@media (max-width: 767px) {
  .section-fv h2 {
    font-size: 2rem;
  }
  .section-fv .btn-fv {
    right: 16px;
    bottom: 16px;
    padding: 8px 20px;
    font-size: 1rem;
  }
}

.btn-fv:hover {
  background: #333;
  color: #fff;
}

.btn-fv-arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.btn-fv-arrow img:last-child {
  display: none;
}

.btn-fv:hover .btn-fv-arrow img:first-child {
  display: none;
}

.btn-fv:hover .btn-fv-arrow img:last-child {
  display: inline;
}

/* Hero Slider (Slide Banner) - 1段グリッド */
.section-hero-slider {
  position: relative;
  overflow: hidden;
  padding: 80px 0 110px;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  background: #f6f6f6;
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-slider-track {
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: 36%;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hero-slider-track::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

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

.placeholder-slide {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #222;
}

.hero-slider-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  z-index: 2;
}

.hero-slider-prev,
.hero-slider-next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  pointer-events: auto;
}

.hero-slider-prev img,
.hero-slider-next img {
  width: 10px;
  height: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1400px) {
  .hero-slider-track {
    grid-auto-columns: 40%;
  }
}

@media (max-width: 1024px) {
  .hero-slider-track {
    grid-auto-columns: 50%;
  }
}

@media (max-width: 767px) {
  .section-hero-slider {
    padding: 50px 0 70px;
  }
  .hero-slider-track {
    grid-auto-columns: 65%;
  }
  .hero-slider-prev,
  .hero-slider-next {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}

/* Slider Track (for PICK UP / TOPICS / RECOMMEND sections) */
.slider-track {
  display: flex;
  padding: 72px 0;
  overflow-x: auto;
  gap: 0;
  justify-content: safe center;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track.recommend {
  gap: 40px;
  padding: 72px 50px;
}

@media (max-width: 1024px) {
  .slider-track.recommend {
    gap: 16px;
    padding: 72px 16px;
  }
}

/* ===========================
   Section: WHO WE ARE
   =========================== */
.section-whoweare {
  background: #fff;
  color: var(--color-dark);
  /* padding: 0 50px; */
}

.section-whoweare .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 50px 180px;
  background-image: url("../images/logo/whoweare-logo-mark.svg");
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
}

@media (max-width: 1024px) {
  .section-whoweare .container {
    padding: 80px 16px 60px;
  }
}
@media (max-width: 767px) {
  .section-whoweare .container {
    background-position: right 0 bottom -60px;
    padding: 80px 16px 180px;
  }
}

.section-whoweare .section-title {
  font-size: 2.5rem;
}

.whoweare-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whoweare-content {
  flex: 1;
}

.section-title {
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}

.section-title--accent {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--color-accent);
  font-size: 2rem;
  letter-spacing: 0.2em;
  position: relative;
  top: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  transform: rotateZ(-11deg);
}
@media (max-width: 1024px) {
  .section-title--accent {
    padding: 0 16px;
  }
}

@media (min-width: 768px) {
  .section-title--accent {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .section-title--accent {
    font-size: 3.5rem;
    top: -16px;
  }
}

.whoweare-text {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
}

@media (min-width: 768px) {
  .whoweare-body {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .section-title {
    font-size: 4rem;
  }
  .whoweare-text {
    font-size: 1rem;
  }
  .whoweare-logo-mark {
    width: 280px;
    height: auto;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.slider-nav {
  display: flex;
  gap: 8px;
}

.slider-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid #444444;
  border-radius: 50%;
  color: #444444;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.slider-nav button:hover {
  border-color: #c3c3c3;
  background: #c3c3c3;
  color: #fff;
}

/* ===========================
   Section: TOPICS
   =========================== */
.section-topics {
  border-radius: 30px 30px 0 0;
  background-color: #f6f6f6;
  margin-top: -30px;
  padding: 60px 0 110px;
}

.section-topics .container {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024px) {
  .section-topics .container {
    padding: 0 16px;
  }
}

.section-topics .slider-nav button {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--color-text);
}

.section-topics .slider-nav button:hover {
  border-color: var(--color-text);
  background: rgba(0, 0, 0, 0.05);
}

.topics-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.topics-grid::-webkit-scrollbar {
  display: none;
}

.topics-grid > * {
  flex: 0 0 45%;
  scroll-snap-align: start;
}

.topic-card {
  display: block;
  transition: transform 0.2s;
  min-width: 180px;
}

.topic-card:hover {
  transform: translateY(-4px);
}

.topic-card--placeholder {
  cursor: default;
}

.topic-card--placeholder:hover {
  transform: none;
}

.topic-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
}

.topic-card .placeholder-img {
  border-radius: 8px;
}

.topic-card-info {
  padding: 10px 0;
}

.topic-type {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.2;
}
.topic-type.event::first-letter {
  color: #5ea2d9;
}
.topic-type.media::first-letter {
  color: #f5b920;
}
.topic-type.magazine::first-letter {
  color: #5ab8c4;
}
.topic-type.stage::first-letter {
  color: #f667b6;
}
.topic-type.tv::first-letter {
  color: #e85b81;
}

.topic-type::first-letter {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.topic-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.topic-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.topic-cat-badge {
  display: inline-block;
  padding: 2px 12px;
  background: var(--color-dark);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 50px;
  line-height: 1.6;
}

.topic-excerpt {
  font-size: 0.75rem;
  color: var(--color-dark);
  line-height: 1.6;
  margin-top: 8px;
  font-weight: 700;
}

.topic-card--placeholder .topic-name {
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .topics-grid {
    gap: 24px;
  }
  .topics-grid > * {
    flex: 0 0 23%;
  }
}

/* ===========================
   Section: RECOMMEND
   =========================== */
.section-recommend {
  padding: 0;
  background: #fff;
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
}

.section-recommend .container {
  display: flex;
  flex-direction: column;
  padding: 80px 0 120px;
  gap: 100px;
  max-width: unset;
}

.recommend-card {
  position: relative;
  flex: 0 0 215px;
  scroll-snap-align: start;
  text-align: center;
  display: block;
  transition: transform 0.2s;
  height: 420px;
}

.recommend-card:hover {
  transform: translateY(-4px);
}

.recommend-num {
  position: absolute;
  top: -36px;
  left: -40px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 6.25rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1;
}

.recommend-card.pattern-0 .recommend-num,
.recommend-card.pattern-2 .recommend-num {
  bottom: 0;
  top: unset;
}

.recommend-card.pattern-3 .recommend-num {
  left: unset;
  right: -24px;
}

.recommend-img {
  position: absolute;
  right: 0;
  width: 215px;
  height: 300px;
  margin: -8px auto 10px;
  border-radius: 500px;
  overflow: hidden;
  border: 1px solid var(--color-dark);
}

.recommend-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend-card.pattern-0 .recommend-img,
.recommend-card.pattern-2 .recommend-img {
  top: unset;
  bottom: 20px;
}

.recommend-card .talent-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  bottom: 80px;
  width: 100%;
}
.recommend-card .talent-name p {
  margin: 0 auto;
}

.recommend-card.pattern-0 .talent-name,
.recommend-card.pattern-2 .talent-name {
  top: 44px;
  bottom: unset;
}

.recommend-card .talent-cat-label {
  position: absolute;
  width: 100%;
  right: -20px;
  font-family: "M PLUS 1";
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    1px 1px 0 var(--color-dark),
    -1px -1px 0 var(--color-dark),
    -1px 1px 0 var(--color-dark),
    1px -1px 0 var(--color-dark),
    0px 1px 0 var(--color-dark),
    0 -1px 0 var(--color-dark),
    -1px 0 0 var(--color-dark),
    1px 0 0 var(--color-dark);
}

.recommend-card.pattern-1 .talent-cat-label {
  right: -30px;
}
.recommend-card.pattern-3 .talent-cat-label {
  left: -50px;
}

.recommend-card.pattern-1 .talent-cat-label,
.recommend-card.pattern-3 .talent-cat-label {
  top: -30px;
}
.recommend-card.pattern-0 .talent-cat-label,
.recommend-card.pattern-1 .talent-cat-label {
  transform: rotate(15deg);
}
.recommend-card.pattern-2 .talent-cat-label,
.recommend-card.pattern-3 .talent-cat-label {
  transform: rotate(-15deg);
}
.recommend-card.pattern-0 .talent-cat-label,
.recommend-card.pattern-2 .talent-cat-label {
  bottom: 0;
}

.recommend-card .talent-cat-label span {
  display: inline-block;
}

/* Recommend Scroll Nav */
.recommend-scroll-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin-left: auto;
  padding: 0 20px;
}

.recommend-nav-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: var(--color-dark);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 0;
}

.recommend-nav-btn:hover {
  opacity: 1;
}

.recommend-nav-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.recommend-nav-icon {
  position: absolute;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  color: var(--color-dark);
  transition: left 0.15s ease-out;
  pointer-events: none;
}

.recommend-nav-bar {
  flex: 1;
  height: 2px;
  background: var(--color-dark);
  border-radius: 1px;
  position: relative;
}

@media (min-width: 768px) {
  .section-recommend {
    padding: 60px 0 40px;
  }
}

/* ===========================
   Section: Talent Cloud
   =========================== */
.section-talent-cloud {
  background: var(--color-dark);
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
  padding: 40px 16px;
  position: relative;
  z-index: 2;
}

.section-talent-cloud .container {
  padding: 0;
}

.talent-cloud {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  text-align: center;
}

.cloud-word {
  font-family: "M PLUS 1";
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.cloud-word:hover {
  opacity: 1;
  color: #5b9bd5;
}

.cloud-word sub {
  font-size: 0.5em;
  vertical-align: baseline;
  margin-left: 2px;
}

.talent-cloud {
  gap: 16px;
}

.cloud-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 280px;
  height: 280px;
  order: -1;
  background-color: #fff;
  border-radius: 50%;
}

.cloud-left,
.cloud-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cloud-brand-logo {
  width: 130px;
  height: auto;
  margin-bottom: 20px;
}

.cloud-main {
  font-family: "M PLUS 1";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 45px;
}

.cloud-center .btn-sm {
  background-color: #444;
  color: #fff;
  border-radius: 300px;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 5px 30px;
}

.cloud-center .btn-sm:hover {
  background: #fff;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .talent-cloud {
    flex-direction: row;
  }
  .cloud-center {
    order: unset;
    width: 180px;
    height: 180px;
  }
  .cloud-main {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .cloud-brand-logo {
    width: 100px;
    margin-bottom: 10px;
  }
  .cloud-center .btn-sm {
    font-size: 0.75rem;
  }
  .cloud-word {
    font-size: 1rem;
  }
  .cloud-left {
    align-items: end;
  }
  .cloud-right {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .cloud-center {
    width: 250px;
    height: 250px;
  }
  .cloud-main {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .cloud-brand-logo {
    width: 132px;
    margin-bottom: 16px;
  }
  .cloud-center .btn-sm {
    font-size: 1rem;
  }
  .cloud-word {
    font-size: 1.5rem;
  }
}

@media (min-width: 1400px) {
  .section-talent-cloud {
    padding: 80px 16px;
  }
  .cloud-center {
    width: 369px;
    height: 369px;
  }
  .talent-cloud {
    gap: 16px;
  }
  .cloud-main {
    font-size: 4rem;
  }
  .cloud-word {
    font-size: 2.5rem;
  }
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: #fff;
  color: var(--color-text);
  padding: 48px 0 28px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-companies {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 24px;
  align-items: center;
  gap: 8px 20px;
}

@media (min-width: 375px) {
  .footer-companies {
    flex-direction: row;
  }
}

.footer-company {
  font-size: 0.625rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 3px;
}

.footer-company img {
  height: 16px;
  width: auto;
}

.footer-company .logo-icon {
  font-size: 0.375rem;
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #c3c3c3;
}

.footer-links a {
  font-size: 0.6875rem;
  color: var(--color-text-light);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.footer-links a:hover {
  color: var(--color-text);
}

.copyright {
  font-size: 0.75rem;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  padding: 12px 0 0;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 60px 0 32px;
  }
  .footer-links {
    gap: 12px 32px;
  }
}

/* ===========================
   Talent Archive (List Page)
   =========================== */
.talent-sidebar {
  overflow: hidden;
}

/* Sidebar toggle (SP only) */
.sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.sidebar-toggle .toggle-arrow {
  width: 10px;
  height: auto;
  margin-left: 6px;
  transition: transform 0.3s;
}

.talent-sidebar.is-open .sidebar-toggle .toggle-arrow {
  transform: rotate(180deg);
}

.sidebar-inner {
  display: none;
}

.talent-sidebar.is-open .sidebar-inner {
  display: block;
}

@media (min-width: 768px) {
  .sidebar-toggle {
    display: none;
  }
  .sidebar-inner {
    display: block !important;
  }
}

/* Category area - dark background */
.sidebar-category-area {
  background: var(--color-dark);
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "M PLUS 1", sans-serif;
}

@media (min-width: 768px) {
  .sidebar-title {
    font-size: 1.75rem;
  }
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}

.sidebar-tags .tag {
  background: transparent;
  border-color: #fff;
  color: #fff;
  cursor: pointer;
}

.sidebar-tags .tag.active,
.sidebar-tags .tag:hover {
  border-color: #5ea2d9;
  background: #5ea2d9;
}

/* Filter area - white background */
.sidebar-filter-area {
  background: #fff;
  color: var(--color-text);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-filter-area .search-input-wrap {
  display: flex;
}

.sidebar-filter-area .search-input {
  width: 100%;
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--color-dark);
  border-right: none;
  border-radius: 5px 0 0 5px;
  font-size: 0.8125rem;
  outline: none;
  background: #fff;
}

.sidebar-filter-area .search-input:focus {
  border-color: var(--color-primary);
}

.sidebar-filter-area .search-btn {
  padding: 8px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 0 5px 5px 0;
  font-size: 0.8125rem;
  transition: opacity 0.2s;
  width: 40px;
  height: 40px;
}

.sidebar-filter-area .filter-options-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 9px;
}

.sidebar-filter-area .filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1;
}

.sidebar-filter-area .filter-group-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "M PLUS 1", sans-serif;
  color: var(--color-text);
  display: flex;
  gap: 8px;
}

.sidebar-filter-area .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-filter-area .filter-btn {
  padding: 5px 27px;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
  font-size: 0.875rem;
  background: #fff;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  transition: all 0.2s;
}

.sidebar-filter-area .filter-btn:hover,
.sidebar-filter-area .filter-btn.active {
  background: #5ea2d9;
  color: #fff;
  border-color: #5ea2d9;
}

.sidebar-filter-area .filter-action-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 9px;
}

.sidebar-filter-area .sidebar-search-btn {
  width: 100%;
  padding: 9px 16px 11px;
  background: var(--color-dark);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s;
}

.sidebar-filter-area .sidebar-search-btn:hover {
  opacity: 0.85;
}

.sidebar-filter-area .sidebar-reset-btn {
  width: 100%;
  padding: 9px 16px 11px;
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-dark);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-filter-area .sidebar-reset-btn:hover {
  background: var(--color-light);
}

.talent-list-main {
  padding: 24px 20px 48px;
  flex: 1;
}

.talent-list-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.list-label {
  font-size: 1.125rem;
  color: var(--color-dark);
  font-weight: 700;
}

.list-title {
  font-family: "M PLUS 1", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.list-count {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.list-count strong {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 16px;
  transition: opacity 0.3s;
}

.talent-card {
  display: block;
  transition: transform 0.2s;
}

.talent-card:hover {
  opacity: 0.9;
  transition: opacity 0.3s;
}

.talent-card-img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.talent-card-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s;
}

.talent-card:hover .talent-card-img img {
  transform: scale(1.03);
}

.talent-card-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

.talent-name-ja {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.talent-tag {
  display: inline-block;
  padding: 1px 20px;
  border-radius: 20px;
  font-size: 0.625rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 2;
}

.talent-name-en {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: var(--color-dark);
  line-height: 1;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.pagination-wrap {
  margin-top: 100px;
  max-width: 1200px;
}

.pagination-wrap .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.pagination-wrap .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--color-dark);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.2s;
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
  background: #c3c3c3;
  color: #fff;
  border-color: #c3c3c3;
}
.pagination-wrap .page-numbers.next,
.pagination-wrap .page-numbers.prev {
  border: none;
}

.pagination-wrap .prev img,
.pagination-wrap .next img {
  width: 8px;
  height: auto;
}

@media (min-width: 768px) {
  .list-title {
    font-family: "M PLUS 1", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
  }

  .talent-list-main {
    padding: 50px 40px;
  }
  .talent-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .talent-list-header {
    flex-direction: column;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 48px;
  }
  .pagination-wrap .nav-links {
    justify-content: right;
  }
}

@media (min-width: 1200px) {
  .talent-list-main {
    padding: 50px 80px 180px;
  }

  .list-title {
    font-size: 4rem;
  }

  .talent-list-header {
    margin-bottom: 80px;
  }

  .talent-grid {
    gap: 100px 40px;
  }
}

/* ===========================
   Talent Detail (Single)
   =========================== */
.talent-detail {
  padding-bottom: 60px;
  background-color: #fff;
}

.talent-detail-content {
  padding: 0 20px;
}

.talent-detail-content.bg-gray {
  background: #f6f6f6;
}

.talent-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.talent-cover {
  width: 100%;
  overflow: hidden;
  max-height: 646px;
  background-color: #f6f6f6;
}

.talent-cover-img {
  width: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  height: auto;
}

.talent-back-link,
.member-back-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-dark);
  padding: 7px 16px;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
  transition: all 0.2s;
  background-color: #fff;
  line-height: 2;
}

.talent-back-link:hover,
.member-back-link:hover {
  background: #fff;
  border-color: var(--color-primary);
  opacity: 0.8;
}

.talent-back-link img,
.member-back-link img {
  width: 6.6px;
  height: 10.2px;
  flex-shrink: 0;
  transform: translateY(1px);
}

.talent-hero {
  padding: 30px 0px 40px;
  background: #fff;
}

.talent-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.talent-hero-img {
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
}

.talent-hero-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Talent Gallery */
.talent-gallery {
  display: flex;
  gap: 10px;
  max-width: 577px;
  margin: 0 auto;
}

.talent-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  width: 70px;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}

.gallery-thumb.active {
  border-color: var(--color-primary);
  opacity: 1;
}

.gallery-thumb:hover {
  opacity: 1;
}

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

.talent-gallery-main {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  min-width: 300px;
}

.talent-hero-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.talent-hero-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.talent-detail-name-en {
  font-size: 1.5rem;
  font-family: "M PLUS 1", sans-serif;
  color: var(--color-dark);
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.25;
}

.talent-detail-name {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.talent-agency {
  width: fit-content;
}

.talent-agency-logo {
  height: 20px;
  width: auto;
  display: block;
}

.talent-cat-badge {
  display: inline-block;
  padding: 2.5px 20px;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  align-self: flex-start;
  border-radius: 100px;
  font-family: "M PLUS 1", sans-serif;
}

.profile-table--hero {
  width: 100%;
}

.profile-table--hero th,
.profile-table--hero td {
  font-size: 0.8125rem;
  border: none;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.profile-table--hero th {
  width: 80px;
  font-weight: 600;
  color: var(--color-text-light);
  white-space: nowrap;
}

.talent-sns-section .talent-section-inner {
  background-color: #f6f6f6;
  padding: 50px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.talent-sns-section .section-header {
  padding: 0 16px;
}

.talent-sns-section .section-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.talent-sns-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.talent-sns-person-name {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 8px 0 4px;
  color: #666;
}

.talent-sns-person-name:first-of-type {
  margin-top: 0;
}

.talent-sns-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sns-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8125rem;
  transition: opacity 0.2s;
}

.sns-stat .svg_wrap {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-dark);
}
@media (max-width: 767px) {
  .sns-stat .svg_wrap {
    width: 34px;
    height: 34px;
  }
  .gallery-slide img {
    min-width: 200px;
  }
}
.sns-stat:hover {
  opacity: 0.7;
}

.sns-icon-svg {
  flex-shrink: 0;
  fill: currentColor;
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  .sns-icon-svg {
    width: 20px;
    height: 20px;
  }
}
.sns-count {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 0.8;
  font-family: "M PLUS 1", sans-serif;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .sns-count {
    font-size: 28px;
  }
}
.sns-count span {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

/* Back to Group Link (Member pages) */
.member-back-to-group {
  background: #fff;
}
.member-back-to-group .container {
  max-width: none;
  padding: 30px 16px;
}

.member-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity 0.2s;
}

.member-back-link:hover {
  opacity: 0.6;
}

/* Profile Category Label (Member pages) */
.profile-category-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 24px;
}

/* Profile Members */

.talent-members-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.profile-members {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.profile-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-member-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}

.profile-member-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.profile-member-link {
  max-width: 230px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  padding: 7px 16px;
  border: 1px solid var(--color-dark);
  border-radius: 50px;
  transition: all 0.2s;
  background-color: #fff;
  line-height: 1.5;
}

.profile-member-link:hover {
  opacity: 0.7;
}

.profile-member-link img {
  width: 6.6px;
  height: 10.2px;
  flex-shrink: 0;
  transform: translateY(1px);
}

.profile-member-arrow {
  font-size: 0.625rem;
}

/* Profile Table in Detail Section */
.profile-table--detail {
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .profile-members {
    gap: 16px;
    flex-wrap: wrap;
  }
  .profile-member {
    flex-shrink: 0;
    width: calc(50% - 16px);
  }

  .profile-member-img {
    width: 100%;
    height: 100%;
  }
  .profile-member-name {
    font-size: 0.8125rem;
  }
  .profile-member-link {
    font-size: 0.75rem;
    gap: 10px;
    padding: 5px 12px;
  }
}

.talent-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  background: #fff;
  transition: all 0.2s;
  width: fit-content;
  border-radius: 23px;
}

.talent-pdf-btn svg {
  width: 20px;
  height: 20px;
}

.talent-pdf-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-light);
}

.talent-gallery-section .section-header {
  padding: 0 16px;
}

.talent-gallery-section .section-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .talent-hero {
    padding: 80px 0;
  }
  .talent-hero-grid {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .talent-hero-img {
    flex: 0 0 350px;
  }

  .talent-gallery-section {
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .talent-gallery-section .talent-section-inner {
    background-color: #f6f6f6;
  }

  .talent-gallery {
    gap: 30px;
    margin: 0;
  }

  .talent-gallery-thumbs {
    width: 80px;
  }
  .gallery-thumb {
    width: 80px;
    height: 80px;
  }
  .talent-detail-name {
    font-size: 2.5rem;
  }
  .profile-table--hero th {
    width: 100px;
  }
}

@media (min-width: 1024px) {
  .talent-hero-img {
    flex: 0 0 420px;
  }
  .talent-gallery-thumbs {
    width: 90px;
  }
  .gallery-thumb {
    width: 90px;
    height: 90px;
  }
}

/* Talent Sections */
.talent-section {
  padding: 50px 0 60px;
  /* border-bottom: 1px solid var(--color-border); */
}
@media (max-width: 767px) {
  .talent-section {
    padding: 30px 0;
  }
}
.bg_fff {
  background-color: #fff;
}

.talent-section-title {
  font-family: var(--font-heading);
  font-size: 45px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-family: "M PLUS 1", sans-serif;
}
@media (max-width: 767px) {
  .talent-section-title {
    font-size: 2rem;
  }
}
.talent-section-title--accent {
  color: #2ecda7;
}

.sns-slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  justify-content: center;
}
.sns-slider-track::-webkit-scrollbar {
  display: none;
}
.sns-embed-item {
  flex: 0 0 350px;
  position: relative;
  width: 350px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-light);
}

.sns-embed-item iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: none;
}

@media (max-width: 767px) {
  .sns-embed-item {
    flex: 0 0 300px;
    width: 300px;
  }
}

/* MOVIE Section */
.talent-movie-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.movie-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}

.movie-slider-track::-webkit-scrollbar {
  display: none;
}

.movie-card {
  flex: 0 0 403px;
  text-decoration: none;
  color: inherit;
}

.movie-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}
.movie-thumb:hover {
  opacity: 0.9;
}

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

.movie-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.movie-card:hover .movie-play-icon {
  opacity: 1;
}

.movie-title {
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header .talent-section-title {
  margin-bottom: 0;
}

.slider-nav {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.slider-prev,
.slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.slider-prev img,
.slider-next img {
  width: 8px;
  height: auto;
}

.slider-prev:hover,
.slider-next:hover {
  background: #f5f5f5;
  border-color: #999;
}

@media (max-width: 767px) {
  .talent-movie-section .section-header {
    margin-bottom: 0;
  }
  .movie-card {
    flex: 0 0 240px;
  }
}

/* Playlist Discs */

.talent-playlist-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.playlist-discs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  overflow-x: scroll;
  padding: 8px;
}

.playlist-disc {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: #1a1a1a;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  flex-shrink: 0;
}

.playlist-disc::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #666;
}

.playlist-disc::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: repeating-radial-gradient(
    circle at center,
    transparent 0px,
    transparent 4px,
    rgba(255, 255, 255, 0.03) 4px,
    rgba(255, 255, 255, 0.03) 5px
  );
}

.playlist-disc .disc-label {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  white-space: nowrap;
  z-index: 1;
}

.playlist-disc.active {
  transform: scale(1.1);
  background: #444;
}

.playlist-disc.active .disc-label {
  color: #fff;
}

.playlist-disc:hover {
  transform: scale(1.05);
}

.playlist-disc.active:hover {
  transform: scale(1.1);
}

.playlist-panel {
  display: none;
}

.playlist-panel.active {
  display: block;
}

/* Anchor Navigation */
.talent-anchor-nav {
  /* position: sticky; */
  top: var(--header-height, 70px);
  z-index: 90;
  background: var(--color-light);
  padding: 50px 0;
}

.anchor-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.anchor-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 5px 50px 10px;
  border-radius: 30px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .talent-anchor-nav {
    position: static;
  }
  .anchor-nav-btn {
    min-width: 100px;
  }
}

.anchor-nav-btn:hover {
  opacity: 0.85;
}

/* .anchor-nav-btn.active {
  background: var(--color-accent);
} */

.anchor-nav-arrow {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Gallery Grid */
/* --- SCHEDULE Section --- */
.talent-schedule-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.talent-schedule-content {
}

.schedule-half-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
}

.schedule-half-tab {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 24px;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: #c3c3c3;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.schedule-half-tab.active {
  background: #fff;
  color: var(--color-dark);
}

.schedule-half-tab:not(.active):hover {
  background: #fff;
  color: var(--color-dark);
}

.schedule-half-tab-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.schedule-half-tab-label {
  /* color: #C3C3C3; */
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.schedule-half-tab-range {
  font-size: 0.8125rem;
  font-weight: 500;
  /* color: #999; */
  color: #fff;
  margin-left: 2px;
}

.schedule-half-tab.active .schedule-half-tab-label,
.schedule-half-tab:not(.active):hover .schedule-half-tab-label {
  color: #c3c3c3;
}

.schedule-half-tab.active .schedule-half-tab-range,
.schedule-half-tab:not(.active):hover .schedule-half-tab-range {
  color: #999;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 30px 40px;
  max-height: 500px;
  overflow-y: auto;
  border-radius: 0 0 10px 10px;
}

.schedule-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.schedule-item:first-child:not(.schedule-empty) {
  border-top: 1px solid #e5e5e5;
}

.schedule-date-block {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex-shrink: 0;
  width: 92px;
  text-align: center;
}

.schedule-date-ym {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #444;
}

.schedule-date-md {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-dark);
}

.schedule-date-wday {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.schedule-item-body {
  flex: 1;
  min-width: 0;
}

.schedule-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}

.schedule-item-time {
  font-size: 0.9375rem;
  color: var(--color-dark);
  font-weight: 500;
}

a.schedule-item-link {
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

a.schedule-item-link:hover {
  background: #f5f5f5;
}

a.schedule-item-link:last-of-type {
  border-bottom: none;
}

.schedule-empty {
  padding: 40px 0;
  text-align: center;
  color: #999;
  font-size: 14px;
}

@media (max-width: 767px) {
  .talent-schedule-section {
    gap: 24px;
  }
  .schedule-list {
    padding: 0;
  }
  .schedule-half-tabs {
    gap: 2px;
  }
  .schedule-half-tab {
    padding: 8px 12px;
    font-size: 0.875rem;
    gap: 4px;
  }
  .schedule-half-tab-year {
    font-size: 1rem;
  }
  .schedule-half-tab-label {
    font-size: 0.875rem;
  }
  .schedule-half-tab-range {
    font-size: 0.6875rem;
  }
  .schedule-date-block {
    width: 56px;
  }
  .schedule-date-md {
    font-size: 1.5rem;
  }
  .schedule-item {
    gap: 14px;
  }
  .schedule-empty {
    text-align: left;
    padding: 16px;
  }
}

/* --- REGULAR Section --- */
.talent-regular-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.regular-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.regular-group {
  background: #ffffff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 767px) {
  .regular-list {
    gap: 16px;
  }
  .regular-group {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
}

.regular-group-badge {
  flex-shrink: 0;
  padding-top: 4px;
}

.regular-group-items {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.regular-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}
.regular-item:first-child {
  border-top: none;
  padding-top: 0;
}
.regular-item:last-child {
  padding-bottom: 0;
}

.regular-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.regular-cat-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 23px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
  width: 133px;
}
@media (max-width: 767px) {
  .talent-regular-section {
    gap: 24px;
  }
  .regular-cat-badge {
    padding: 3px 20px;
    border-radius: 23px;
    font-size: 0.75rem;
    display: block;
    width: auto;
  }
  .regular-group-items {
    width: 100%;
  }
}
.regular-schedule {
  font-size: 16px;
}
@media (max-width: 767px) {
  .regular-schedule {
    font-size: 12px;
  }
}

.regular-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .regular-title {
    font-size: 16px;
  }
}
.regular-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #999;
  transition: color 0.2s;
}

.regular-link:hover {
  color: #333;
}

.gallery-grid {
  display: flex;
  overflow: scroll;
  gap: 40px;
  justify-content: safe center;
}

.gallery-grid-item {
  width: 400px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  background-color: #f6f6f6;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}
.gallery-grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  transition: background 0.2s;
}
.gallery-grid-item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}
.gallery-grid-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: scale-down;
  border-radius: 8px;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.gallery-modal.active {
  display: flex;
}
.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.gallery-modal-prev,
.gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-modal-prev:hover,
.gallery-modal-next:hover {
  background: rgba(255, 255, 255, 0.3);
}
.gallery-modal-prev img,
.gallery-modal-next img {
  filter: brightness(0) invert(1);
}
.gallery-modal-prev {
  left: 16px;
}
.gallery-modal-next {
  right: 16px;
}
.gallery-modal-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gallery-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
.gallery-modal-link {
  display: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.gallery-modal-link.visible {
  display: inline-block;
}
.gallery-modal-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .gallery-grid-item {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .anchor-nav-list {
    gap: 8px;
  }
  .anchor-nav-btn {
    padding: 8px 16px;
    font-size: 0.6875rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.timeline-empty {
  padding: 30px;
  background: var(--color-light);
  border-radius: 8px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Profile Section */
.talent-section.talent-profile-section {
  border-bottom: none;
  padding: 30px 0px 50px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.profile-table {
  width: 100%;
  border-spacing: 0 5px;
}

.profile-table th,
.profile-table td {
  font-size: 0.875rem;
  color: var(--color-dark);
  border: none;
  text-align: left;
  line-height: 26px;
  font-weight: 500;
  word-break: break-all;
}

.profile-table th {
  min-width: 100px;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

.hobby-content {
  font-size: 0.875rem;
  line-height: 2;
  padding: 16px;
  background: var(--color-light);
  border-radius: 8px;
}

/* Personal Profile Section */
.personal-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pp-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.25);
  padding: 50px 30px;
  position: relative;
  height: fit-content;
}
@media (max-width: 767px) {
  .pp-card {
    padding: 30px 16px;
  }
}

.pp-card-title {
  font-family: "M PLUS 1", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  position: relative;
  display: inline-block;
  transform: translateY(-50%);
}

@media (max-width: 850px) {
  .pp-card-title {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .pp-card-title {
    font-size: 28px;
  }
}

.pp-hobby {
  position: relative;
  height: fit-content;
  margin-top: auto;
}
.pp-card-title--teal {
  color: #5ab8c4;
  position: absolute;
  top: 0;
  left: 0;
}
.pp-card-title--teal::before {
  background: #5ab8c4;
}
.pp-card-title--pink {
  color: #f667b6;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .pp-card-title--pink {
    transform: translate(-40%, -50%);
  }
}
.pp-card-title--pink::before {
  background: #f06292;
}
.pp-card-title--yellow {
  color: #f5b920;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .pp-card-title--yellow {
    right: 7%;
  }
}
.pp-card-title--yellow::before {
  background: #f5a623;
}
.pp-actor {
  width: 90%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .pp-actor {
    width: 100%;
  }
}
.pp-card-body {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .pp-card-body {
    font-size: 14px;
  }
}
.pp-card-pin {
  width: 23px;
  position: absolute;
}
.pp-card-pin-yellow {
  top: -2%;
  right: 5%;
}
@media (max-width: 767px) {
  .pp-card-pin {
    width: 18px;
    top: -2%;
    right: 5%;
    transform: translateY(-50%);
  }
}
@media (max-width: 414px) {
  .pp-card-pin {
    width: 14px;
    top: -1%;
  }
}
@media (min-width: 768px) {
  .pp-card-pin-teal {
    top: 0%;
    right: 5%;
    transform: translateY(-50%);
  }
  .pp-card-pin-pink {
    top: -2%;
    right: 5%;
    transform: translateY(-50%);
  }
  .pp-card-pin-yellow {
    top: -2%;
    right: auto;
    transform: translateY(-50%);
  }
}
/* Favorite list */
.pp-favorite-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pp-fav-item {
  padding-left: 12px;
  word-break: break-all;
}
@media (max-width: 767px) {
  .pp-fav-item {
    padding-left: 0;
  }
}
.pp-fav-title {
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 767px) {
  .pp-fav-title {
    font-size: 14px;
  }
}
.pp-fav-title::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #444;
  margin: 0 0.625rem;
}

.pp-fav-desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: #555;
}
@media (max-width: 767px) {
  .pp-fav-desc {
    font-size: 14px;
  }
}
/* Hobby list */
.pp-hobby-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.pp-hobby-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.pp-hobby-item_title {
  display: flex;
  align-items: center;
  line-height: 1;
}
.pp-hobby-num {
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "M PLUS 1", sans-serif;
}

.pp-hobby-title {
  font-weight: 700;
  font-size: 24px;
  color: #5ab8c4;
}

.pp-hobby-desc {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: #444;
}

.personal-profile-grid {
  grid-template-columns: 1fr 1.6fr;
  gap: 100px 47px;
  margin-top: 64px;
}
@media (max-width: 767px) {
  .personal-profile-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
  }
}
.pp-hobby {
  grid-row: span 2;
}
.pp-favorite-list {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .pp-favorite-list {
    grid-template-columns: 1fr;
  }
}
.profile-grid {
  grid-template-columns: 1fr 1fr;
}
/* ===========================
  Performance Record
   =========================== */
.talent-profile-section .talent-section-title,
.talent-performance-section .talent-section-title {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.1;
  font-family: "M PLUS 1", sans-serif;
  color: var(--color-dark);
}

@media (max-width: 1000px) {
  .talent-profile-section .talent-section-title,
  .talent-performance-section .talent-section-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .talent-profile-section .talent-section-title,
  .talent-performance-section .talent-section-title {
    font-size: 2rem;
  }
}

.talent-performance-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.perf-layout {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}

.perf-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: 140px;
}

.perf-tab {
  padding: 6px 20px;
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
  border: 1px solid var(--color-dark);
  background: #fff;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 22px;
  margin-bottom: -1px;
}

.perf-tab.active {
  color: #fff;
  font-weight: 700;
}
.perf-tab.movie.active {
  background: #5ea2d9;
  border-color: #5ea2d9;
}
.perf-tab.tv.active {
  background: #f5b920;
  border-color: #f5b920;
}
.perf-tab.stage.active {
  background: #f667b6;
  border-color: #f667b6;
}
.perf-tab.radio.active {
  background: #5ab8c4;
  border-color: #5ab8c4;
}
.perf-tab.cm.active {
  background: #646ec9;
  border-color: #646ec9;
}
.perf-tab.other.active {
  background: #444444;
  border-color: #444444;
}
.perf-tab.drama.active {
  background: #cb5ed9;
  border-color: #cb5ed9;
}
.perf-tab.award.active {
  background: #d9c55e;
  border-color: #d9c55e;
}

.perf-tab:hover:not(.active) {
  background: #f0f7ff;
}

.perf-content-area {
  flex: 1;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  padding: 30px 40px;
  overflow-y: auto;
  background: #fff;
  max-width: 970px;
  max-height: 580px;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .talent-performance-section {
    gap: 24px;
  }
  .perf-content-area {
    padding: 16px;
  }
}

.perf-panel {
  display: none;
}

.perf-panel.active {
  display: block;
}

.perf-year-group {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .perf-year-group {
    margin-bottom: 10px;
  }
}

.perf-year-group:last-child {
  margin-bottom: 0;
}

.perf-year {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  font-family: "M PLUS 1", sans-serif;
}
@media (max-width: 767px) {
  .perf-year {
    font-size: 20px;
  }
}
.perf-title {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
  font-weight: 700;
}
@media (max-width: 767px) {
  .perf-title {
    font-size: 14px;
  }
}

/* Performance Record - mobile */
@media (max-width: 767px) {
  .perf-layout {
    flex-direction: column;
  }
  .perf-tabs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .perf-tabs::-webkit-scrollbar {
    display: none;
  }
  .perf-tab {
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 4px 12px;
    font-size: 0.75rem;
  }
  .perf-content-area {
    padding: 16px;
    max-height: 300px;
  }
}

/* ===========================
   Manager Recommendation
   =========================== */
.talent-mg-section {
  border-bottom: none;
}
.talent-mg-section .container {
  max-width: 834px;
  margin: 0 auto;
}

.mg-header {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 164px;
}

.mg-avatar {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
}
@media (max-width: 767px) {
  .mg-avatar {
    width: 110px;
    height: 110px;
  }
}
.mg-header-icon {
  width: 136px;
  height: auto;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .mg-header-icon {
    width: 110px;
  }
}
.mg-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.mg-label {
  font-size: 20px;
  font-weight: 700;
  color: #f06292;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .mg-label {
    font-size: 16px;
  }
}
.mg-title {
  font-size: 32px;
  font-weight: 700;
  color: #f06292;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .mg-title {
    font-size: 26px;
  }
}

.mg-speech-line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #444;
}

.mg-speech-line::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 5%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 20px;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  background-color: #fff;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .mg-speech-line::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 5%;
    width: 15px;
    height: 15px;
  }
}

.mg-comment {
  font-size: 16px;
  line-height: 2;
  color: #444;
  font-weight: 500;
  padding-left: 0;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .mg-comment {
    font-size: 14px;
    margin-top: 20px;
  }
}
.mg-highlight {
  color: #5ea2d9;
  font-weight: 600;
}

@media (max-width: 767px) {
  .mg-speech-line {
    margin-left: 0;
  }
}

/* ===========================
   Talent CTA
   =========================== */
.talent-cta-section {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.talent-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  background: #5ea2d9;
  color: #fff;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
}
@media (max-width: 767px) {
  .talent-cta-btn {
    gap: 4px;
    padding: 16px 16px;
  }
}
.talent-cta-btn:hover {
  background: #3a8fd4;
  transform: translateY(-1px);
}

.talent-cta-btn svg {
  flex-shrink: 0;
}

/* ===========================
   404
   =========================== */
.error-page {
  text-align: center;
  padding: 80px 0 120px;
}

.error-page__code {
  font-family: "M PLUS 1", sans-serif;
  font-size: 7.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: center;
}

.error-page__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-text);
  margin-bottom: 40px;
}

.error-page__message {
  margin-bottom: 40px;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.error-page__btn {
  display: inline-block;
  width: 100%;
  max-width: 230px;
  padding: 10px;
  background-color: #444;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 140px;
  transition: background-color 0.3s;
}

.error-page__btn:hover {
  background-color: #333;
}

@media (max-width: 767px) {
  .error-page__code {
    font-size: 6rem;
  }

  .error-page__btn {
    min-width: 220px;
  }
}

/* ===========================
   Main min-height
   =========================== */
.site-main {
  min-height: 50vh;
  background-color: #f6f6f6;
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
}

/* ===========================
   Contact Form
   =========================== */
.contact-page {
  padding: 30px 16px 80px;
  background: var(--color-light);
}

.contact-back-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-dark);
  padding: 7px 16px;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
  margin-bottom: 24px;
  transition: all 0.2s;
  background-color: #fff;
  line-height: 2;
}

.contact-back-link:hover {
  background: #fff;
  border-color: var(--color-primary);
}

.contact-back-link img {
  width: 6.6px;
  height: 10.2px;
  flex-shrink: 0;
  transform: translateY(1px);
}

.contact-form-card {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 60px 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-desc {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-errors {
  background: #fff5f5;
  border: 1px solid #e53e3e;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.contact-errors p {
  font-size: 0.8125rem;
  color: #e53e3e;
  margin-bottom: 4px;
}

.contact-errors p:last-child {
  margin-bottom: 0;
}

.form-group {
  /* margin-bottom: 24px; */
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
  letter-spacing: 0.15em;
}

.badge-required {
  display: inline-block;
  padding: 0 10px;
  background: #dd0516;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 12px;
  line-height: 1.4;
}

.badge-optional {
  display: inline-block;
  padding: 0 10px;
  background: #a3a3a3;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 12px;
  line-height: 1.4;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid #c3c3c3;
  border-radius: 5px;
  font-size: 0.875rem;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--color-primary);
}

.form-input::placeholder {
  color: #bbb;
}

.form-input.is-invalid {
  border-color: #e74c3c;
}

.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #c3c3c3;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #fff;
  outline: none;
  resize: vertical;
  line-height: 1.8;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  border-color: var(--color-primary);
}

.form-textarea::placeholder {
  color: #bbb;
}

/* File Drop Zone */
.file-drop-zone {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  padding: 20px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  background: #f6f6f6;
  align-items: center;
  line-height: 1;
}

.file-drop-zone.dragover {
  border-color: var(--color-primary);
  background: rgba(51, 51, 51, 0.02);
}

.file-drop-text {
  font-size: 0.875rem;
  color: #a3a3a3;
  font-weight: 700;
}

.file-drop-or {
  font-size: 0.75rem;
  color: #a3a3a3;
  font-weight: 700;
}

.file-select-btn {
  display: inline-block;
  max-width: 123px;
  width: 100%;
  padding: 6px 15px;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--color-text);
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
  line-height: 1;
}

.file-select-btn:hover {
  background: var(--color-light);
}

.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.file-info-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-info-check {
  flex-shrink: 0;
}

.file-info-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
}

.file-info-size {
  font-size: 1rem;
  font-weight: 500;
  color: #c3c3c3;
}

.file-info-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.file-info-remove:hover svg circle {
  fill: #bbb;
}

/* Privacy Check */
.privacy-check {
  text-align: center;
  /* margin: 32px 0 24px; */
}

.privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  cursor: pointer;
}

.privacy-label input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--color-dark);
}

.privacy-label a {
  color: #3182ce;
  text-decoration: underline;
}

.privacy-label a:hover {
  color: #2c5282;
}

/* Submit Area */
.contact-submit-area {
  text-align: center;
}

.contact-submit-note {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 700;
}

.contact-submit-btn {
  display: inline-block;
  max-width: 200px;
  width: 100%;
  padding: 15px 24px;
  background: #9b9b9b;
  color: #cdcdcd;
  border: none;
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: not-allowed;
  transition: all 0.2s;
}

.contact-submit-btn.active {
  background: #5ea2d9;
  cursor: pointer;
  color: #fff;
}

.contact-submit-btn.active:hover {
  opacity: 0.85;
}

/* Thanks Page */
.contact-thanks-card {
  text-align: center;
  padding: 80px 0 60px;
}

.contact-thanks-heading {
  font-family: "M PLUS 1", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f667b6;
  letter-spacing: 0.1em;
}

.contact-thanks-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}

.contact-thanks-icon {
  margin-bottom: 25px;
}

.contact-thanks-icon img {
  margin: 0 auto;
  width: 174px;
  height: 174px;
}

.contact-thanks-message {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 25px;
}

.contact-thanks-btn--outline img {
  width: 6.6px;
  height: 10.2px;
  flex-shrink: 0;
  transform: translateY(1px);
}

.contact-thanks-btn--outline {
  width: 100%;
  max-width: 179px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-dark);
  padding: 7px 16px;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
  margin-bottom: 24px;
  transition: all 0.2s;
  background-color: #fff;
  line-height: 2;
  margin: 0 auto;
}

.contact-thanks-btn--outline:hover {
  background: var(--color-light);
}

@media (max-width: 767px) {
  .contact-thanks-card {
    padding: 40px 0 30px;
  }

  .contact-thanks-message {
    font-size: 0.875rem;
  }

  .contact-form-card {
    padding: 32px 16px;
  }

  .contact-form-title {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-thanks-heading {
    font-size: 2.25rem;
  }

  .contact-thanks-subtitle {
    font-size: 1rem;
  }

  .contact-thanks-icon img {
    width: 140px;
    height: 140px;
  }
}

/* ===========================
   Legal Pages (利用規約・プライバシーポリシー等)
   =========================== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  min-height: calc(100vh - var(--header-height));
}

.legal-page__header {
  text-align: center;
  margin-bottom: 40px;
}

.legal-page__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
}

.legal-page__notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #856404;
  margin-bottom: 32px;
}

.legal-page__lead {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.legal-page__separator {
  height: 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  margin: 32px 0;
}

.legal-page__section {
  margin-bottom: 40px;
}

.legal-page__section p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 12px;
}

.legal-page__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}

.legal-page__list {
  padding-left: 1.5em;
  margin-bottom: 16px;
}

.legal-page__list li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 4px;
  list-style: disc;
}

.legal-page__list--ordered li {
  list-style: decimal;
}

.legal-page__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.legal-page__table th,
.legal-page__table td {
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.legal-page__table th {
  width: 180px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-light);
  white-space: nowrap;
}

.legal-page__table td {
  color: var(--color-text);
}

.legal-page__table .legal-page__list {
  margin-bottom: 0;
}

.legal-page__date {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: right;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .legal-page {
    padding: 40px 16px 80px;
  }

  .legal-page__title {
    font-size: 1.25rem;
  }

  .legal-page__table th,
  .legal-page__table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .legal-page__table th {
    border-bottom: none;
    padding-bottom: 0;
  }

  .legal-page__table td {
    padding-top: 4px;
  }
}

/* ===========================
   Talent Topics Section
   =========================== */
.topics-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.topics-content {
  display: flex;
  gap: 24px;
}

.topics-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topics-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-wrap: wrap;
}

.topics-filter-btn {
  padding: 6px 25px;
  border: 1px solid var(--color-dark);
  border-radius: 100px;
  background: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "M PLUS 1", sans-serif;
}

.topics-filter-btn:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.topics-filter-btn.active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

.topics-sort {
  padding: 6px 48px 6px 20px;
  border: 1px solid var(--color-dark);
  border-radius: 100px;
  background: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.topics-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.topic-timeline-card {
  display: flex;
  gap: 24px;
  padding: 24px 40px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.topic-timeline-card:hover {
  opacity: 0.9;
}

.topic-date-block {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.topic-date-year {
  font-size: 0.875rem;
  color: var(--color-dark);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.topic-date-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.topic-type-badge {
  display: inline-block;
  font-family: "M PLUS 1", sans-serif;
  margin-top: 20px;
  padding: 3px 20px;
  border-radius: 100px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.topic-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.topic-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.topic-card-excerpt {
  font-size: 0.93rem;
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.7;
  word-break: break-all;
}

@media (max-width: 767px) {
  .topics-content {
    flex-direction: column;
    gap: 16px;
  }
  .topics-filters {
    flex-direction: row;
    gap: 12px;
  }
  .topics-filter-btn {
    padding: 6px 20px;
    font-size: 0.875rem;
  }

  .topics-controls {
    justify-content: space-between;
  }
  .topic-timeline-card {
    gap: 16px;
    padding: 16px;
  }
  .topic-date-block {
    width: 64px;
  }
  .topic-date-day {
    font-size: 1.375rem;
  }
  .topic-card-title {
    font-size: 0.8125rem;
  }
  .topics-sort {
    padding: 6px 28px 6px 20px;
    font-size: 0.875rem;
  }
}
