@charset "utf-8";

/*
** Theme Name:  性闘士☆準矢 Ver 1.0
** Description: 性闘士☆準矢 オフィシャルサイト
** Author: Satoshi Saito
** Version: 1.0.0
** Created: 2026
** ================================================== */

:root {
  --color-bg: #0f0f14;
  --color-text: #f2f2f2;
  --color-main: #c4001a;
  --color-accent: #ffd500;
  --color-sub: #666;
  --color-bg-glass: rgb(15 15 20 / 0.95);

  --fs-xs: clamp(0.875rem, 2.5vw, 1rem);
  --fs-base: clamp(1rem, 3vw, 1.25rem);
  --fs-md: clamp(1.25rem, 4vw, 2rem);
  --fs-lg: clamp(1.5rem, 4vw, 2rem);
  --fs-xl: clamp(2.5rem, 8vw, 4rem);
  --fs-xxl: clamp(3.6rem, 10vw, 6rem);

  --space-xs: 0.5em;
  --space-base: 1em;
  --space-md: 2em;
  --space-lg: 4em;
  --space-xl: 6em;
}

/* Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-base);
}

body {
  font-family:
    "LINE Seed JP",
    "YakuHanJP",
    sans-serif;
  font-size: var(--fs-base);
  background-color: var(--color-bg);
  color: var(--color-text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-image: url(images/bg.webp);
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: bgFade 3.5s ease forwards;
  transition: none;
}

@keyframes bgFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

h1, h2 {
  font-family: 'Anton', sans-serif;
}

.subTitle, .blockTitle {
  font-weight: 700;
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
  color: var(--color-accent);
  border-bottom: 3px solid var(--color-main);
}

.subTitle span, .blockTitle span {
  color: var(--color-main);
  font-size: 0.6em;
  padding-left: 0.8em;
}

.blockTitle {
  font-size: var(--fs-lg);
}

a {
  transition: 0.4s;
  outline: none;
}

a:hover {
  opacity: 0.6;
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}

.innerWrap {
  padding: 0 var(--space-base);
  max-width: 1000px;
  margin-inline: auto;
}

/* visually-hidden */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.link-icon {
  padding-left: var(--space-xs);
}



/* Header */
#header {
  background-color: var(--color-bg-glass);
  box-shadow: 0 2px 8px 4px var(--color-bg-glass);
  position: sticky;
  top: 0;
  z-index: 10000;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-base) 0;
}

#header .container h1 img {
  min-width: 100px;
}

/* Hero */
#heroSec {
  display: grid;
  align-items: end;
  text-align: center;
  height: clamp(70vh, 60vw, 90vh);
  padding-bottom: clamp(20px, calc(120px - 8vw), 20px);
}

#heroSec .heroTitle {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: var(--fs-xxl);
  text-shadow: 0 0 8px var(--color-bg-glass);
}

/* ==============================
   Main Common
============================== */

main {
  background-color: var(--color-bg-glass);
  padding-block: var(--space-md);
}

main .contentsSec {
  padding-block: var(--space-lg);
}

main .contentsSec .innerWrap {
  display: grid;
  gap: 3.0em;
}

main .contentsSec .innerWrap .secHeader {
  line-height: 1;
}

main .contentsSec .innerWrap .secHeader h2 {
  text-transform: uppercase;
  font-size: var(--fs-xl);
}

main .contentsSec .innerWrap .secHeader h2 span {
  color: var(--color-main);
  font-weight: 700;
  font-size: 0.5em;
  padding-left: 0.7em;
}


main .contentsSec .innerWrap .sectionGrid {
  display: grid;
  gap: var(--space-md);
}

main .contentsSec .innerWrap .viewAll {
  text-align: right;
}

main .contentsSec .innerWrap .viewAll a {
  color: var(--color-accent);
  font-weight: 700;
  border-bottom: 0.5px dashed var(--color-accent);
}


/* ==============================
   News
============================== */

#newsSec .news {
  gap: var(--space-base);
}

#newsSec .news .newsList:not(:last-child) {
  border-bottom: 1px solid var(--color-sub);
  padding-bottom: var(--space-base);
}

#newsSec .news .newsList a {
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  gap: var(--space-xs);
}

#newsSec .news .newsList a .newsMeta {
  color: var(--color-sub);
}

#newsSec .news .newsList a .newsMeta .newsCategory {
  margin-left: var(--space-base);
  padding-inline: var(--space-xs);
  font-size: 0.8em;
}

#newsSec .news .newsList a .newsMeta .live {
  color: var(--color-main);
  border: 2px solid var(--color-main);
  background-color: rgb(196 0 26 / 0.3);
}

#newsSec .news .newsList a .newsMeta .media {
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  background-color: rgb(255 213 0 / 0.3);
}

#newsSec .news .newsList a .newsMeta .info {
  color: rgb(0 170 255);
  border: 2px solid rgb(0 170 255);
  background-color: rgb(0 170 255 / 0.3);
}


/* ==============================
   Show
============================== */

#showSec .show {
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
}

#showSec .show .showCard {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: var(--space-base);
  background-color: rgb(242 242 242 / 0.1);
  padding: var(--space-base);
  border-radius: 2px;
}

#showSec .show .showCard .showDate {
  background-color: rgb(255 213 0 / 0.8);
  text-shadow: 1px 1px 3px #000;
  box-shadow: 2px 2px 6px rgb(15 15 20 / 0.6);
  position: absolute;
  top: 0;
  left: 10px;
  padding: var(--space-base) var(--space-xs);
  border-radius: 0 0 2px 2px;
}

#showSec .show .showCard .showDate time {
  text-align: center;
  display: grid;
}

#showSec .show .showCard .showDate time .date,
#showSec .show .showCard .showDate time .week {
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-md);
}

#showSec .show .showCard .showDate time .showYear {
  padding-top: var(--space-xs);
}
#showSec .show .showCard .flyer {
  text-align: center;
}
#showSec .show .showCard .showTitle {
  font-weight: bold;
}

#showSec .show .showCard .readMore a {
  display: block;
  background-color: var(--color-main);
  text-align: center;
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-lg);
  padding-block: var(--space-xs);
}


/* ==============================
   Profile
============================== */
#profileSec .blockTitle {
  border-bottom: none;
  padding-bottom: 0;
}
#profileSec .profile {
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}

#profileSec .profile .text {
  display: grid;
  gap: var(--space-md);
}

#profileSec .profile .text p {
  line-height: 1.7;
}

#profileSec .biography {
  border-left: 3px solid var(--color-main);
  padding-left: var(--space-base);
}
#profileSec .biography dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-base) var(--space-md);
  line-height: 1.2;
}
#profileSec .biography dl div {
  padding-bottom: var(--space-base);
  border-bottom: 1px solid rgb(102 102 102 / 0.2);
}
#profileSec .biography dl div dt {
  color: var(--color-main);
}
#profileSec .biography dl div dd a {
  color: var(--color-accent);
  border-bottom: 0.25px dashed var(--color-accent);
}


/* ==============================
   MV
============================== */

#mvSec .mv {
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
}

#mvSec .mv .youtubeWrap {
  margin: 0;
}

#mvSec .mv .youtubeWrap .movie {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

#mvSec .mv .youtubeWrap .movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

#mvSec .mv .youtubeWrap figcaption {
  text-align: right;
}


/* ==============================
   Contact
============================== */

#contactSec .contact, #thanksSec .contact {
  width: min(100%, 600px);
  margin-inline: auto;
  background-color: rgb(196 0 26 / 0.08);
  border-radius: var(--space-xs);
  padding: var(--space-lg) 5%;
}

#contactSec .contact h3 {
  font-weight: 700;
  font-size: var(--fs-md);
  text-align: center;
}


/* ==============================
   PageTop
============================== */

#pageTop {
  position: sticky;
  bottom: 0;
  width: 100%;
  transform: translateY(100px);
  transition: transform 1s, opacity 1s;
  opacity: 0;
  z-index: 1000;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--color-bg-glass);
  padding-block: var(--space-base);
}

#pageTop .sectionGrid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#pageTop .sectionGrid p a {
  display: flex;
  align-items: center;
}

#pageTop.show {
  transform: translateY(0);
  opacity: 1;
}


/* ==============================
   Footer
============================== */

#footer {
  background-color: var(--color-bg);
  text-align: center;
  padding-block: var(--space-base);
  line-height: 1;
  box-shadow: 0 1px 1px var(--color-bg);
}