﻿/* Yorushika reproduction - custom overrides */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* Font Awesome 4.7.0 via CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/* Fix background image paths to use local assets */
.bg span {
  background-image: url('../img/top/bg.jpg') !important;
}

.page--home .container .section--keyvisual .keyvisual {
  background-image: url('../img/top/kv.jpg');
}

/* Fix dummy.png path */
img[src="/static/yorushika/official/common/dummy.png"] {
  src: url('../img/common/dummy.png');
}

/* FC logo paths */
header .fc-logo a img[src="/static/yorushika/official/common/ico_fc_w.svg"] {
  content: url('../img/common/ico_fc_w.svg');
}
header .fc-logo a img[src="/static/yorushika/official/common/ico_fc.svg"] {
  content: url('../img/common/ico_fc_w.svg');
}

/* Loading screen fix - skip the loading animation for simpler reproduction */
#loading {
  display: none !important;
}
body {
  opacity: 1 !important;
}

/* Ensure inview elements are visible without JS-triggered animation fallback */
.inview, .inview_b {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Section title font */
.section-tit {
  font-family: 'aktiv-grotesk', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Keyvisual block--bnr visible */
.page--home.loaded .container .section--keyvisual .block--bnr,
.page--home.load-finish .container .section--keyvisual .block--bnr,
.page--home .container .section--keyvisual .block--bnr {
  transform: scaleX(1) !important;
}

.page--home .container .section--keyvisual .block--bnr .list--bnr {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* SNS block visible */
.page--home .block--sns {
  transform: scaleX(1) !important;
}
.page--home .block--sns .list--sns {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Logo main visible */
.page--home .container .section--keyvisual .logo-main {
  transform: scaleX(1) !important;
}
.page--home .container .section--keyvisual .logo-main svg {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Make sure the page is interactive immediately */
body.loaded, body.load-finish {
  opacity: 1;
}

/* Scroll indicator */
.scroll.visible {
  opacity: 1 !important;
}

/* Movie section backgrounds - use YouTube thumbnails via JS */
.list--movie li.youtube .thumb {
  background-size: cover;
  background-position: center;
}

/* Discography detail jacket */
.page--discography .section--detail .inner .block--jacket .jacket img:not(.dummy) {
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

/* Lyrics page */
.page--lyrics .detail--wrap .lyrics--body {
  pointer-events: auto;
}

/* Hide cookie consent for reproduction */
.cc-window, .cc-banner, #cookieconsent {
  display: none !important;
}

/* Hide WOVN language widget for cleaner reproduction */
.wovn-languages {
  display: none !important;
}
/* === Banner carousel (without slick) === */
.page--home .container .section--bnr .inner .block--bnr .list--bnr {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  gap: 24px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.page--home .container .section--bnr .inner .block--bnr .list--bnr li {
  flex: 0 0 400px;
  scroll-snap-align: start;
}
.page--home .container .section--bnr .inner .block--bnr .list--bnr li img {
  width: 100%;
  height: auto;
}
.page--home .container .section--bnr .inner .block--bnr .list--bnr::-webkit-scrollbar {
  height: 6px;
}
.page--home .container .section--bnr .inner .block--bnr .list--bnr::-webkit-scrollbar-track {
  background: #F0F0F0;
}
.page--home .container .section--bnr .inner .block--bnr .list--bnr::-webkit-scrollbar-thumb {
  background: #ACD0D1;
  border-radius: 3px;
}

/* === Movie carousel (without slick) === */
.page--home .container .section--movie .inner .list--movie {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  gap: 0;
  scroll-snap-type: x mandatory;
  padding: 0 20px;
}
.page--home .container .section--movie .inner .list--movie li {
  flex: 0 0 400px;
  scroll-snap-align: center;
  margin: 0 20px !important;
}
.page--home .container .section--movie .inner .list--movie li a {
  height: 350px;
  display: block;
  position: relative;
}
.page--home .container .section--movie .inner .list--movie li .thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page--home .container .section--movie .inner .list--movie li .thumb img {
  display: none;
}
.page--home .container .section--movie .inner .list--movie li .block--text {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 20;
  text-align: center;
}
.page--home .container .section--movie .inner .list--movie li .block--text .tit {
  color: #fff;
  text-align: center;
  line-height: 1.8;
  font-size: 16px;
}
.page--home .container .section--movie .inner .list--movie li .icon-play {
  text-align: center;
}
.page--home .container .section--movie .inner .list--movie li .icon-play span {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 15px 20px;
}
.page--home .container .section--movie .inner .list--movie li .icon-play svg {
  fill: #fff;
  width: 20px;
  height: 24px;
}
.page--home .container .section--movie .inner .list--movie li .thumb:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ACD0D1;
  top: 0;
  left: 0;
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 10;
}
.page--home .container .section--movie .inner .list--movie .block--movie {
  display: none;
}

/* Section movie title area */
.page--home .container .section--movie .inner .tit-area {
  position: relative;
  padding: 0 100px;
}
.page--home .container .section--movie .inner .flex-wrap {
  max-width: 1000px;
  margin: 0 auto 77px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}
.page--home .container .section--movie .inner .flex-wrap .blank {
  width: 80%;
}

/* Section movie background effect */
.page--home .container .section--movie .inner {
  position: relative;
  padding: 60px 0 57px;
}
.page--home .container .section--movie .inner:before {
  content: "";
  display: block;
  background: #fff;
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.page--home .container .section--movie .inner .block--tit .section-tit {
  color: #fff;
}
.page--home .container .section--movie .inner .block--tit .more a {
  color: #fff;
}
.page--home .container .section--movie .inner:after {
  content: "";
  background-color: #fff;
  display: block;
  width: 100%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Slick arrows styling */
.slick-arrows {
  position: absolute;
  top: -50px;
  right: 80px;
  display: flex;
  gap: 30px;
  z-index: 20;
}
.slick-arrows p {
  cursor: pointer;
  padding: 10px 0;
}

/* Discography list grid */
.page--discography .section--list .inner .list--discography,
.page--list .section--list .inner .list--discography {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px;
  width: 70%;
}
.page--discography .section--list .inner .list--discography li,
.page--list .section--list .inner .list--discography li {
  width: calc(33.333% - 14px);
  margin: 0;
}
.page--discography .section--list .inner .list--discography li a,
.page--list .section--list .inner .list--discography li a {
  display: block;
  position: relative;
}
.page--discography .section--list .inner .list--discography li .thumb,
.page--list .section--list .inner .list--discography li .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.page--discography .section--list .inner .list--discography li .thumb img,
.page--list .section--list .inner .list--discography li .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
.page--discography .section--list .inner .list--discography li .thumb:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ACD0D1;
  top: 0;
  left: 0;
  opacity: 0;
  mix-blend-mode: color;
  z-index: 10;
  transition: all 0.3s 0s ease;
}
.page--discography .section--list .inner .list--discography li a:hover .thumb:before {
  opacity: 0.8;
}
.page--discography .section--list .inner .list--discography li .block--text {
  list-style: none;
  padding: 0;
}
.page--discography .section--list .inner .list--discography li .block--text li {
  position: relative;
  line-height: 0.5;
  z-index: 11;
}
.page--discography .section--list .inner .list--discography li .block--text li p {
  background: #fff;
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
}
.page--discography .section--list .inner .list--discography li .block--text li.title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}
.page--discography .section--list .inner .list--discography li .block--text li.date {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 11;
}
.page--discography .section--list .inner .list--discography li .block--text .category {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3em;
  background: #ACD0D1;
  padding: 3px 6px 3px 8px;
  margin-left: 0;
  line-height: 1;
  display: inline-block;
}
.page--discography .section--list .inner .list--discography li .block--text .tit {
  font-size: 14px;
  line-height: 1.8;
}
.page--discography .section--list .inner .list--discography li .block--text .date p {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
}

/* Mobile discography */
@media screen and (max-width: 960px) {
  .page--discography .section--list .inner .list--discography,
  .page--list .section--list .inner .list--discography {
    width: 100%;
  }
  .page--discography .section--list .inner .list--discography li,
  .page--list .section--list .inner .list--discography li {
    width: calc(50% - 10px);
  }
  .page--home .container .section--bnr .inner .block--bnr .list--bnr li {
    flex: 0 0 300px;
  }
  .page--home .container .section--movie .inner .list--movie li {
    flex: 0 0 80%;
  }
}

/* List pages - information (news/live/works) inner layout */
.page--list .section--list .inner,
.page--information .section--list .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.page--list .section--list .inner .block--tit,
.page--information .section--list .inner .block--tit {
  width: 20%;
  padding-top: 40px;
}
.page--list .section--list .inner .list--news,
.page--information .section--list .inner .list--news {
  width: 80%;
}
.page--list .section--list .list--news > li,
.page--information .section--list .list--news > li {
  border-bottom: 1px solid #EAEAEA;
}
.page--list .section--list .list--news > li:first-child,
.page--information .section--list .list--news > li:first-child {
  border-top: 1px solid #EAEAEA;
}
.page--list .section--list .list--news > li a,
.page--information .section--list .list--news > li a {
  display: block;
  padding: 40px 30px;
}
.page--list .section--list .list--news > li a .date,
.page--information .section--list .list--news > li a .date {
  float: left;
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #222;
}
.page--list .section--list .list--news > li a .tit,
.page--information .section--list .list--news > li a .tit {
  padding-left: 220px;
  line-height: 2;
}
.page--list .section--list .list--news > li a .category,
.page--information .section--list .list--news > li a .category {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3em;
  background: #ACD0D1;
  padding: 3px 6px 3px 8px;
  margin-left: 10px;
  line-height: 1;
  display: inline-block;
}
.page--list .section--list .list--news li a:hover,
.page--information .section--list .list--news li a:hover {
  opacity: 0.5;
}

/* Live page specific */
.page--live .section--list .list--news li a .date {
  float: none;
  font-size: 18px;
  margin: 0 0 12px;
}
.page--live .section--list .list--news li a .date .week {
  font-size: 10px;
  padding-left: 8px;
  position: relative;
  bottom: 2px;
}

/* Pager */
.block--pager {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-align: center;
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 30px;
  min-height: 30px;
}
.block--pager li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin: 0 5px;
}
.block--pager li.pager__item--newer,
.block--pager li.pager__item--older {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.block--pager li.pager__item--newer { left: 30px; }
.block--pager li.pager__item--older { right: 30px; }
.block--pager li.pager__item--newer span svg,
.block--pager li.pager__item--older a svg {
  width: 50px;
  height: 12px;
  fill: #222;
}
.block--pager li.pager__item--newer span svg { fill: #EAEAEA; }
.block--pager li.pager__item--current,
.block--pager li.pager__item--other {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block--pager li.pager__item--current {
  border: 1px solid #222;
}
.block--pager li.pager__item--current span,
.block--pager li.pager__item--other a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Detail pages */
.page--detail .section--detail,
.page--list .section--list {
  padding: 90px 30px 100px 70px;
  background-color: #fff;
}
.page--detail .section--detail .inner {
  max-width: 800px;
  margin: 0 auto;
}
.page--detail .section--detail .inner > .tit {
  font-size: 24px;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin: 0 0 1em;
}
.page--detail .section--detail .inner > .date {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin: 0 0 2em;
}
.page--detail .section--detail .inner > .date .category {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3em;
  background: #ACD0D1;
  padding: 3px 6px 3px 8px;
  margin-left: 10px;
  line-height: 1;
  display: inline-block;
}
.page--detail .section--detail .inner .text {
  font-size: 14px;
  line-height: 2;
  margin: 0 0 3em;
}
.page--detail .section--detail .inner .text a {
  color: #73c0c3;
  text-decoration: underline;
}
.page--detail .section--detail .inner .text img {
  max-width: 100%;
  margin: 1em 0;
}
.page--detail .section--detail .inner .text .ph {
  position: relative;
}
.page--detail .section--detail .inner .block--share {
  list-style: none;
  padding: 20px 0;
  border-top: 1px solid #EAEAEA;
}
.page--detail .section--detail .inner .block--share li {
  display: inline-block;
  margin-right: 1.5em;
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
}
.page--detail .section--detail .inner .block--share li a {
  font-size: 20px;
}
.detail__btn {
  text-align: center;
  margin: 40px 0;
}
.detail__btn a {
  display: inline-block;
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  letter-spacing: 1em;
}
.detail__btn a svg {
  width: 50px;
  height: 12px;
  fill: #222;
  position: relative;
  top: 2px;
  margin-right: 20px;
}

/* Discography detail */
.page--discography .section--detail .inner .block--jacket .jacket {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  line-height: 0;
}
.page--discography .section--detail .inner .block--jacket .jacket img:not(.dummy) {
  width: 100%;
}
.page--discography .section--detail .inner .block--detail .date {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin: 0 0 1em;
}
.page--discography .section--detail .inner .block--detail .category {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3em;
  background: #ACD0D1;
  padding: 3px 6px 3px 8px;
  margin-left: 10px;
  line-height: 1;
  display: inline-block;
}
.page--discography .section--detail .inner .block--detail .tit {
  font-size: 20px;
  margin: 0 0 1em;
  line-height: 1.6;
}
.page--discography .section--detail .inner .block--detail .text {
  margin: 0 0 2em;
  font-size: 14px;
  line-height: 1.8;
}
.page--discography .section--detail .inner .block--detail .block--track .title {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  font-weight: bold;
  margin: 0 0 10px;
}
.page--discography .section--detail .inner .block--detail .block--track .list--track {
  list-style: none;
  padding: 0;
}
.page--discography .section--detail .inner .block--detail .block--track .list--track .num {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
}
.page--discography .section--detail .inner .block--detail .block--track .list--track li {
  font-size: 12px;
  margin: 0 0 5px;
}

/* Biography */
.page--biography .section--detail .inner .block--artist {
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px;
}
.page--biography .section--detail .inner .block--artist img:not(.dummy) {
  width: 100%;
}
.page--biography .section--detail .inner .block--text .text {
  font-size: 14px;
  line-height: 2;
  margin: 0 0 30px;
}
.page--biography .section--detail .inner .block--text .list--history {
  margin-top: 30px;
}
.page--biography .section--detail .inner .block--text .list--history dt {
  font-family: 'aktiv-grotesk','Roboto','Helvetica Neue',Arial,sans-serif;
  font-size: 16px;
  color: #73c0c3;
  margin: 20px 0 8px;
  font-weight: bold;
}
.page--biography .section--detail .inner .block--text .list--history dd {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 5px;
  padding-left: 1em;
}

/* Lyrics detail */
.page--lyrics .section--detail .inner .detail--wrap {
  margin-bottom: 20px;
}
.page--lyrics .section--detail .inner .detail--wrap h2 {
  font-size: 25px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.page--lyrics .section--detail .inner .detail--wrap .credit {
  text-align: center;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.8;
}
.page--lyrics .section--detail .inner .detail--wrap .musicians {
  max-width: 500px;
  font-size: 12px;
  border-top: #dbd8d3 solid 1px;
  border-bottom: #dbd8d3 solid 1px;
  margin: 30px auto;
  padding: 30px 0;
  text-align: center;
}
.page--lyrics .section--detail .inner .detail--wrap .musicians::before {
  content: "Credit";
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
.page--lyrics .section--detail .inner .detail--wrap .lyrics--body {
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 2.2;
}

/* Movie list page */
.page--movie .section--list .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.page--movie .section--list .inner .block--tit {
  width: 20%;
  padding-top: 40px;
}
.page--movie .section--list .inner .list--movie {
  width: 80%;
}
.page--movie .section--list .inner .list--movie li {
  margin: 0 0 40px;
}
.page--movie .section--list .inner .list--movie li a {
  display: block;
}
.page--movie .section--list .inner .list--movie li .thumb {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}
.page--movie .section--list .inner .list--movie li .thumb img {
  display: none;
}
.page--movie .section--list .inner .list--movie li .thumb:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ACD0D1;
  top: 0;
  left: 0;
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 10;
}
.page--movie .section--list .inner .list--movie li .block--text {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 20;
  text-align: center;
}
.page--movie .section--list .inner .list--movie li .block--text .tit {
  color: #fff;
  text-align: center;
  line-height: 1.8;
  font-size: 16px;
}
.page--movie .section--list .inner .list--movie li .icon-play {
  text-align: center;
}
.page--movie .section--list .inner .list--movie li .icon-play span {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 15px 20px;
}
.page--movie .section--list .inner .list--movie li .icon-play svg {
  fill: #fff;
  width: 20px;
  height: 24px;
}
.page--movie .section--list .inner .list--movie .block--movie {
  display: none;
}

/* Footer - banner only on home page */
footer .block--footer-bnr { display: none; }
.page--home footer .block--footer-bnr { display: block; margin-bottom: 20px; }
.page--home footer .block--footer-bnr .list--bnr {
  overflow: hidden;
  list-style: none;
  padding: 0;
}
.page--home footer .block--footer-bnr .list--bnr li {
  float: left;
  width: 33.333%;
  padding: 0 5px;
  line-height: 0;
}
.page--home footer .block--footer-bnr .list--bnr li img {
  width: 100%;
}
footer .inner { padding: 30px; }
footer .copyright { text-align: right; color: #222; }
/* Keyvisual padding fix - use 60px like the inline style in original */
@media screen and (min-width: 961px) {
  .page--home .container .section--keyvisual { padding-left: 60px !important; }
  .page--home .container .section--keyvisual .keyvisual { background-position: center !important; }
}

/* Fix keyvisual bg position for home */
.page--home .container .section--keyvisual .keyvisual {
  background-position: right center;
}
@media screen and (min-width: 961px) {
  .page--home .container .section--keyvisual .keyvisual {
    background-position: center;
  }
}