@charset "UTF-8";
/*
Theme Name: Manga Pulse
Author: You
Description: Minimal Manga Pulse Theme
Version: 1.0
*/
@font-face {
  font-family: "yakuhan";
  src: url("font/YakuHanJP-Light.woff") format("woff");
}
@font-face {
  font-family: "lanove";
  src: url("font/LightNovelPOPv2.woff") format("woff");
}
@font-face {
  font-family: "pui";
  src: url("font/puikko-Regular.woff") format("woff");
}
@font-face {
  font-family: "eng";
  src: url("font/Phenomena-ExtraBold.woff") format("woff");
}
:root {
  --gold: #c5a059;
  --gold-light: #e2c28a;
  --ink: #1a1a1a;
  --paper: #f9f7f2;
  --white: #fff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container .card a {
  color: currentColor;
  text-decoration: none;
}

a.nolink {
  color: currentColor;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a.nolink:hover {
    opacity: 0.7;
  }
}

header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(249, 247, 242, 0.85);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  position: relative;
  z-index: 1100;
  letter-spacing: -0.05em;
  font-family: "Bodoni Moda", serif;
}

.logo span {
  color: var(--gold);
}

.menu-toggle {
  background: 0 0;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.line {
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  transition: all 0.4s var(--transition);
}

.line-2 {
  width: 16px;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--transition);
  z-index: 1050;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  list-style: none;
  text-align: center;
}

.nav-links li {
  overflow: hidden;
  margin: 1.5rem 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s var(--transition);
}

.nav-overlay.is-open .nav-links a {
  transform: translateY(0);
}

.nav-links a:hover {
  color: var(--gold);
  font-style: italic;
}

.menu-open .line-1 {
  transform: translateY(4px) rotate(45deg);
  width: 24px;
}

.menu-open .line-2 {
  opacity: 0;
}

.menu-open .line-3 {
  transform: translateY(-4px) rotate(-45deg);
  width: 24px;
}

.font-display {
  font-family: "Bodoni Moda", serif;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.2em;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.speed-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, transparent 20%, var(--paper) 20%), repeating-conic-gradient(from 0deg, transparent 0deg 1deg, rgba(197, 160, 89, 0.05) 1deg 2deg);
  z-index: -1;
  pointer-events: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }
}
.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
}

.ec-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ec-button {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0.85rem;
  border: 1.5px solid var(--ink);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
}

.ec-button.primary {
  background: var(--ink);
  color: var(--white);
}

.ec-button:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--gold);
}

.hero-image {
  flex: 1;
  position: relative;
}

.manga-border {
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
  padding: 0.5rem;
  background: var(--white);
  transition: all 0.3s;
}

.hero-image .aspect-box {
  aspect-ratio: 3/4;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.accuracy-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  transform: rotate(-12deg);
  border: 4px solid var(--white);
  z-index: 20;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(-12deg);
  }
  50% {
    transform: translate(0, -10px) rotate(-12deg);
  }
}
.prediction-section {
  margin-bottom: 4rem;
}

.forecast-card {
  border: 2px solid var(--ink);
  background: var(--white);
  overflow: hidden;
}

.forecast-header {
  padding: 2rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .forecast-header {
    flex-direction: row;
    align-items: flex-end;
  }
}
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.metric {
  padding: 2rem;
  border-top: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .metric {
    border-top: none;
  }
  .metric:not(:last-child) {
    border-right: 1px solid var(--gray-200);
  }
}
.metric-label {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.forecast-footer {
  padding: 1.5rem 2rem;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .forecast-footer {
    flex-direction: row;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 1rem;
}

.timeline-container {
  position: relative;
  padding: 1rem 0;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 15px;
    transform: none;
  }
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-bottom: 5rem;
  position: relative;
}

@media (max-width: 768px) {
  .summary-row {
    margin-bottom: 3rem;
    padding-left: 40px;
  }
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 14px;
  height: 14px;
  background: var(--ink);
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: 15px;
  }
}
.summary-content {
  width: 44%;
  background: var(--white);
  padding: 2rem;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .summary-content {
    width: 100%;
  }
}
.summary-row:nth-child(even) {
  flex-direction: row-reverse;
}

.summary-meta {
  width: 44%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .summary-meta {
    display: none;
  }
}
.chapter-bg-num {
  font-family: "Bodoni Moda", serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.summary-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 900;
}

.summary-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.table-container {
  overflow-x: auto;
  border: 2px solid var(--ink);
  background: var(--white);
  position: relative;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  background: var(--ink);
  color: var(--white);
  padding: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
}

tr.hidden-row {
  display: none;
}

tr.hidden-row.is-visible {
  display: table-row;
}

.load-more-btn {
  display: block;
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  border-top: 1px solid var(--gray-200);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.75rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
}

.load-more-btn:hover {
  background: var(--gray-50);
}

.footer-cta {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  background: var(--ink);
  color: var(--white);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-cta .ec-button {
  background: var(--white);
  color: var(--ink);
  border: none;
  min-width: 180px;
  padding: 1.2rem;
}

.footer-cta .ec-button.primary {
  background: var(--gold);
  color: var(--white);
}

footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.manga-footer {
  background: var(--ink);
  color: var(--white);
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.screentone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 5px 5px;
  pointer-events: none;
}

.ono-bg {
  position: absolute;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.ono-end {
  top: -2rem;
  right: 5%;
  font-size: 18rem;
  transform: rotate(10deg);
}

.ono-sub {
  bottom: 5%;
  left: 2%;
  font-size: 12rem;
  transform: rotate(-5deg);
}

.footer-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  margin-bottom: 4rem;
}

.footer-brand .logo {
  font-size: 3.5rem;
  color: var(--white);
}

.footer-brand p {
  color: var(--gold);
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.footer-nav-minimal {
  display: flex;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-minimal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-nav-minimal a:hover {
  color: var(--gold);
}

.manga-colophon {
  max-width: 600px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-bottom: 4rem;
}

.manga-colophon::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-bottom-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-vertical {
  writing-mode: vertical-rl;
  position: absolute;
  right: 1.5rem;
  bottom: 4rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5em;
  display: none;
}

@media (min-width: 1024px) {
  .copyright-vertical {
    display: block;
  }
}
.footer-symbol {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-symbol::after {
  content: "P";
  transform: rotate(-45deg);
  color: var(--gold);
  font-weight: 900;
  font-family: "Bodoni Moda", serif;
}

/* Pace Indicators */
.pace-fast {
  color: #e63946; /* 早い: 赤系 */
  font-weight: 700;
}

.pace-normal {
  color: var(--ink); /* 通常: デフォルト */
}

.pace-slow {
  color: #457b9d; /* 遅い: 青系 */
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */