/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
mobile first
pc     : @media (min-width: 1200px) {}

----------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300&display=swap');

:root {
  --color-pink    :#fdd3df;
  --color-pink-rgb:253,211,223;
  --color-gray    :#f8f8f8;
  --color-black   :#2e363e;

  --transition-nav: all 0.4s ease-in-out;
}

/* Common
----------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Sawarabi Mincho', serif; }
a { 
  text-decoration: none; 
  color: var(--font-black);
  -webkit-tap-highlight-color: transparent;
}
body {
  overflow-x: hidden;
  background: var(--color-gray);
  font-size: 87%;
}
@media (min-width: 1200px) { body { font-size: 100%; } }

#main { 
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 90%;
  margin: auto;
}

.wrapper { margin: 52px 0; }

/* header
----------------------------------- */
header { 
  z-index: 9997; 
  height: 64px;
}

header a:hover { color:#b4b4b4; }

nav {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: var(--color-gray);
}

#logo { height: 70%; display: flex;}
#logo img { height: 100%; }

#nav-links {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80vw;
  list-style: none;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  background: var(--color-gray);
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}

#nav-links li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  width: 100%;
  text-align: left;
  padding: 0 16px;
}

#nav-links.nav-active {
  transform: translateX(0%) !important;
}

#burger {
  z-index: 1001;
  position: fixed;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
}

#burger.highlight { background: rgba(var(--color-pink-rgb), 0.4); }

#burger div {
  width: 30px;
  height: 2px;
  background-color: var(--color-black);
  margin: 3px;
  transition: var(--transition-nav);
}

.toggle .line1 { transform: rotate(-45deg) translate(-4px, 7px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform:rotate(405deg) translate(-4px, -7px); }

.nav-sns {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-sns-icon {
  height: 22px;
  width: auto;
}

@media (min-width: 1200px) {
  header {
    position: sticky;
    top: 0;
    box-shadow: 0 32px 30px -30px rgba(0,0,0, 0.25); 
    height: 12vh;
  }
  nav {
    padding: 0 40px;
  }

  #nav-links {
    position: static;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: auto;
    width: 40%;
    padding-top: 0;
    background: none;
    transform: none;
  }

  #nav-links li {
    margin: 10px;
    width: auto;
    opacity: 1;
    font-size: inherit;
  }

  .nav-sns { display: none; }
  #burger { display: none; }
}


.overlay {
  inset: 0;
  position: fixed;
  transition: var(--transition-nav);
  pointer-events: none; /* クリック透過 */
}

.overlay-intro { 
  z-index: 9999; 
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-gray);
  opacity: 1;
  animation-name: toPink;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.overlay-intro img { height: 100px; }
.overlay-intro.initialized { opacity: 0; }
@keyframes toPink { 
  from { background: var(--color-gray); }
  to   { background: var(--color-pink); }
}

.overlay-menu { 
  z-index: 999;
  opacity: 0;
  background: var(--color-pink);
}

.overlay-menu.overlay-active { opacity: 1; pointer-events: auto; }
@media (min-width: 1200px) { .overlay-menu { display: none; } }

/* navの順次アニメーション. Vueでburgerクリック時に動的に付与 */
@keyframes navLinksFade {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* index.php
----------------------------------- */
/* Vueでinitilizedでbodyから削除 */
.fixed { scrollbar-gutter: stable; overflow: hidden; }

#hero {
  max-width: 1200px;
  width: 92vw;
  margin: 26px auto;
  aspect-ratio: 16 / 9;
  position: relative;
}

@media (min-width: 1200px) { #hero { width: 80vw; } }

.hero-img {
  width: 100%;
  border-radius: 10px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-img.active { opacity: 1; }

.title {
  font-size: 1.7rem;
  font-weight: lighter;
  text-align: left;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 30px;
  position: relative;
}
.title::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: -6px;
  left: -6px; 
  width: 14px;
  height: 14px;
  background-color: var(--color-pink);
  border-radius: 50%;
}

@media (min-width: 1200px) { .title { font-size: 2.3rem; } }

.contents {
  width:fit-content;
  margin: 0;
}
.contents li {
  list-style: none;
  margin-top: 20px;
}
.contents li span {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.contents li span.new {
    display: inline;
    font-size: smaller;
    margin-left: 10px;
    color: #f00;
    animation-name: newBlinker;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes newBlinker {
  0% { color: #f00; }
  50% { color: var(--color-pink); }
  100% { color: #f00; }
}

.view-all {
  display: inline-block;
  text-decoration: none;
  font-weight: 300;
  margin-top: 80px;
  transition: 0.3s;
  text-transform: uppercase;
  /* border-bottomの起点になるように設定 */
  position: relative;
}
.view-all::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.3s;
}
.view-all:hover::before { width: 100%; }
.view-all:hover { border-bottom: none; }

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding-top: 12px;
  text-align: center;
}
.youtube iframe {
  height: 100%;
  width: 100%;
}

/* discography.php
----------------------------------- */
.disco {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 90%;
  margin: auto;
}

.disco li {
  list-style: none;
}

.disco img {
  width: 90%;
  height: auto;
  margin: auto;
  box-shadow: 5px 5px 11px 2px #777777;
  border-radius: 0;
  bottom: 50px;
}

.cap {
  width: 90%;
  margin: 10px auto 0;
}

.cap p {
  margin-top: 15px;
  text-align: left;
  line-height: 19px;
}

.border {
  width: 75%;
  border-bottom: 1px solid #999;
  margin: 60px auto;
}

@media (min-width: 1200px) {
  .disco { flex-direction: row; justify-content: space-between; max-width: 900px; }
  .disco img { width: 45%; margin: 0; }
  .cap { width: 45%; margin-left: 40px; margin-top: 0; }
  .border { max-width: 700px; width: 65%; margin: 80px auto; }
}
/* news.php
----------------------------------- */
#news-wrapper {
  margin: auto;
  width: 100%;
}

.news-link {
  text-decoration: none;
  color: inherit;
}

.news-container {
  padding: 20px 0;
  border-bottom: var(--color-black) 0.5px solid;
}

.news-link:hover .news-container {
  background-color: #dedede;
  transition: 0.3s;
}
.news-date { font-size: 1.2rem; }
.news-container img { width: 100%; height: auto; }
.news-container p { margin: 5px 0; }
.sub-info { display: flex; align-items: center; }

.label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 25px;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  padding: 2px;
  border-radius: 2px;
  margin-right: 10px;
}

.label.release { background-color: #FF6347; }
.label.live    { background-color: #FFA500; }
.label.news    { background-color: #1E90FF; }
.label.other   { background-color: #32CD32; }

/* pagination */
.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-button {
  border: none;
  padding: 0;
  font-family: sans-serif;
  font-size: 30px;
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px #313131;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    133deg,
    var(--color-pink) 0%,
    var(--color-pink) 50%,
    #fff 50%,
    #fff 100%
  );
  background-size: 300%;
  background-position: 100% 0;
  transition: background-position .1s ease-in, font-size .1s ease-in;
}

.pagination-button:hover {
  background-position: 0 0;
  transition: 0.3s;
}

.pagination-button:focus,
.pagination-button:active {
  outline: none;
  background-color: transparent;
}

button.disabled {
  -webkit-text-stroke: .7px #bebebe;
  background: none;
  cursor: default;
}

.pagination-state {
  width: 60px;
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}

@media (min-width: 1200px) {
  #news-wrapper { max-width: 900px; }
  .news-container { border-bottom: var(--color-black) 1px solid; }
  .pagination-button { font-size: 50px; }
}
/* profile.php
----------------------------------- */
.top-image {
  margin: auto;
  max-width:900px;
  width: 90%;
  margin: auto;
}
.top-image img {
  text-align: center;
  width: 100%;   
}
.top-image p {
  text-align: center;
  margin: 2%;
  font-size: 1.2rem;
}

.self-introduction {
  margin: auto;
  max-width:900px;
  width: 90%;
  text-align: center;
}
.band-name {
  font-size: 1.3rem;
  text-align: center;
  margin-block: 25px;
}
.self-introduction .box {
  margin: 20px 0;
  text-align: left;
  height: 200px;
}

/* footer
----------------------------------- */
footer {
  position: sticky;
  top: 100dvh;
  margin-top: 40px;
  text-align: center;
  padding: 23px 0;
  background-color: var(--color-black);
}
footer p small{ 
  color: var(--color-gray);
  font-size: 11px;
}