/*
Theme Name: EVRH - Talent Template (Child)
Template: blaze_tcd120
Version: 2.0.2
*/

:root{
  --evrh-bg: #ffffff;
  --evrh-card: rgba(255,255,255,.96);
  --evrh-border: rgba(0,0,0,.08);
  --evrh-text: #edeff6;
  --evrh-muted: #999999;
  --evrh-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.l-container {
  position: relative;
  overflow: hidden;
}

/* 背景画像を表示 */
.l-container::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--bg-url);
  background-size: min(100vh, 1080px);
  background-position: left calc(50vw - 45vw) top 0;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1979px) {
  .l-container::before {
    background-size: min(100vh, 1080px);
    background-position: left calc(max(50vw - 550px, 20px) - 300px) top 0;
  }
}

@media (max-width: 991px) {
  .l-container::before {
    background-size: min(100vh, 720px);
    background-position: left -20vw top -3vh;
  }
}

.l-container > * {
  position: relative;
  z-index: 1;
}

section{
  background-color: transparent !important;
}

.talent{
  color: var(--evrh-text);
  padding: 0 0 80px;
  background-color: transparent !important;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container {
    width: 100%;
  }
}

.hero{
  padding: 36px 0 22px;
  background-color: transparent !important;
}

.hero-inner{
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 15px;
  align-items: start;
}

@media screen and (max-width: 991px){
  .hero-inner{
    grid-template-columns: 350px 1fr;
  }
}

@media screen and (max-width: 767px){
  .hero{
    padding: 0 0 12px;
  }
  .hero-inner{
    grid-template-columns: 1fr;
  }
}

.hero-image{
  overflow: hidden;
}

.hero-image img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: drop-shadow(15px 15px 0 rgba(0, 0, 0, 0.3));
}

.hero-profile{
  padding: 1.5em;
}

@media screen and (max-width: 991px) {
  .hero-profile {
    padding: 1.5em 0.25em;
  }
  .hero-image{
    text-align: center;
  }
  
  .hero-image img{
    max-height: 70vh;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
}
.talent-name{
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 0.3em;
  letter-spacing: .03em;
  color: var(--evrh-text);
}

.talent-name-en{
  color: var(--evrh-muted);
  font-size: 16px;
  letter-spacing: .06em;
  margin-bottom: 2em;
}

.catch-copy{
  font-size: 20px;
  margin: 0 0 1em;
  color: var(--evrh-text);
}

.short-bio{
  margin: 3.5em 0 0;
  color: var(--evrh-text);
  line-height: 1.85;
}

.talent-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 0;
}

.talent-tag{
  display: inline-flex;
  align-items: center;
  padding: 0.75em 1em;
  border-radius: 50px;
  border: 1px solid #656565;
  background: #656565;
  color: var(--evrh-text);
  font-size: 14px;
  letter-spacing: .04em;
}

.sns{
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 3em;
}

.sns a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  box-sizing: border-box;
  gap: 0.5em;
  padding: 0.8em 1.2em;
  border-radius: 5px;
  border: 1px solid #999999;
  background: #303030;
  color: var(--evrh-text);
  text-decoration: none;
  font-size: 15px;
  transition: all .2s ease;
}

.sns a:hover{
  background: #656565;
  border: 1px solid #656565;
}

.cta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 1em;
}

.cta a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  width: fit-content;
  box-sizing: border-box;
  padding: 1em 2.25em 1em 1.5em;
  border: 1px solid #999999;
  border-radius: 5px;
  background: #303030;
  text-decoration: none;
  font-size: 16px;
  transition: all .2s ease;
  position: relative;
}

.cta a:hover{
  background: #656565;
  border: 1px solid #656565;
}



.cta a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--evrh-text);
  border-right: 1.5px solid var(--evrh-text);
  transition: right 0.2s ease;
}

.cta a:hover::after {
  right: 17px;
}

@media screen and (max-width: 767px) {
  .sns {
    display: flex;
    justify-content: space-between;
  }
  .sns a {
    width: 48%;
  }
  .cta {
    margin-top: 2em;
  }
}

/* CTAメイン：無彩色（急に色を付けない） */
.cta-primary{
  background: rgba(0,0,0,.06);
  color: var(--evrh-text);
  border: 1px solid rgba(0,0,0,.12);
}

.cta-secondary{
  background: rgba(0,0,0,.04);
  color: var(--evrh-text);
  border: 1px solid rgba(0,0,0,.10);
}

.section{
  padding: 46px 0 0;
}

.section-title{
  margin: 0 0 0.9em;
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--evrh-text);
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 991px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-card{
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-card img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .3s ease;
}

.gallery-card:hover img{
  transform: scale(1.1);
}

.video-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 991px){
  .video-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .video-grid{
    grid-template-columns: 1fr;
  }
}

.video-card{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #656565;
  background: #303030;
  text-decoration: none;
  color: var(--evrh-text);
  transition: all 0.3s ease;
}

.video-card:hover{
  background-color: #656565;
}

.video-card-thumb{
  overflow: hidden;
}

.video-card img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .3s ease;
}

.video-card.is-vertical img{
  aspect-ratio: 9 / 16;
  transition: transform .3s ease;
}

.video-card:hover img,
.video-card:hover.is-vertical img{
  transform: scale(1.05);
}

.video-title{
  padding: 12px 12px 14px;
  font-size: 14px;
  color: var(--evrh-text);
  line-height: 1.5;
}

.data-wrap{
  overflow: hidden;
}

.data-table{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 0 30px;
}

.data-table tbody{
  display: contents;
}

.data-table tr{
  display: flex;
  width: 100%;
  border-bottom: 1px solid #656565;
}

.data-table th,
.data-table td{
  display: flex;
  align-items: center;
  padding: 14px 16px;
  box-sizing: border-box;
}

.data-table tr:nth-child(5),
.data-table tr:last-child{
  border-bottom: 0;
}

.data-table th{
  width: 35%;
  color: var(--evrh-text);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.75;
  text-align: left;
}

.data-table td{
  color: var(--evrh-text);
  font-weight: 600;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .data-table {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .data-table th{
    width: 30%;
  }
  .data-table tr:nth-child(5) {
    border-bottom: 1px solid #656565;
  }
}

/* breadcrumb 区切り（ › ） */
.c-breadcrumb__list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-breadcrumb__item{
  display: inline-flex;
  align-items: center;
}

/* 2つ目以降の項目の前に › を入れる */
.c-breadcrumb__item + .c-breadcrumb__item::before{
  content: "›";
  display: inline-block;
  margin: 0 4px;
  opacity: .6;
}
/* おすすめ動画のラベル */
.video-genre{
  padding: 12px 12px 0;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--evrh-text);
}
/* 動画カード内ジャンル（バッジ） */
.video-genres{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 12px 0; /* タイトルと同じ横余白に揃える */
}

button.gallery-card{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  text-align:inherit;
}

.evrh-guard{
  position: relative;
}

.evrh-guard .evrh-overlay{
  position:absolute;
  inset:0;
  background: transparent;
  z-index: 2;
}

.evrh-guard img{
  -webkit-user-select:none;
  user-select:none;
  -webkit-user-drag:none;
  -webkit-touch-callout:none;
}

.video-card.evrh-guard{
  position: relative;
}

.video-card.evrh-guard .evrh-overlay{
  pointer-events: none;
}

.video-card.evrh-guard img{
  pointer-events: none;
}

.evrh-lightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.evrh-lightbox.is-open{
  opacity: 1;
  visibility: visible;
}

.evrh-lightbox__img{
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.evrh-lightbox__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
}