/* ===================================================
   noto.css  — 能登応援ページ /noto
   =================================================== */

/* ===== HERO ===== */
.noto-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.noto-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(0.4) brightness(0.6);
}

.noto-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,15,31,0.4) 0%,
    rgba(9,15,31,0.65) 60%,
    rgba(9,15,31,0.9) 100%
  );
}

.noto-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 24px 120px;
}

.noto-hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.noto-hero-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
  text-shadow: 0 2px 32px rgba(0,0,0,0.7);
}
.noto-hero-title span {
  color: var(--gold-light);
}

.noto-hero-desc {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.18em;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.noto-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  animation: pulse 2.5s ease-in-out infinite;
}
.noto-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ===== SECTIONS ===== */
.noto-section {
  padding: 100px 24px;
}

.noto-section--dark {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.noto-section--line {
  background: var(--bg-mid);
}

.noto-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.noto-section-inner--narrow {
  max-width: 720px;
  display: block;
}

/* ===== TEXT ===== */
.noto-h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 28px;
}

.noto-body {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 2.2;
}
.noto-body br { content: ''; display: block; margin-bottom: 0.6em; }

/* ===== 137度線 ビジュアル ===== */
.noto-line-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
}

/* 地図バックグラウンド */
.noto-map-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.noto-map-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.18;
  filter: grayscale(1) invert(1) brightness(0.8);
  display: block;
}

.noto-line-map {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 320px;
  margin: 40px 0;
}

.noto-line-axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(245,178,0,0.3) 10%,
    rgba(245,178,0,0.6) 50%,
    rgba(245,178,0,0.3) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.noto-line-point {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.noto-line-point--noto { top: 40px; }
.noto-line-point--inorimiyama { bottom: 40px; }

.noto-line-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.noto-line-dot--gold {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(245,178,0,0.6);
}

.noto-line-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.noto-line-place {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.noto-line-coord {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.noto-line-degree {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  background: var(--bg-mid);
  padding: 4px 8px;
  border: 1px solid var(--border-gold);
  border-radius: 3px;
}

/* ===== MESSAGE ===== */
.noto-message {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 2px solid var(--border-gold);
  padding-left: 24px;
  margin: 32px 0 16px;
}
.noto-message p {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 2.2;
}
.noto-message-sig {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  text-align: right;
}

.noto-placeholder-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  padding-left: 24px;
}

/* ===== USAGE CARDS ===== */
.noto-usage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.noto-usage-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.noto-usage-icon {
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,178,0,0.08);
  border-radius: 8px;
}

.noto-usage-card h4 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.noto-usage-card p {
  font-size: 0.86rem;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ===== CTA ===== */
.noto-cta-section {
  background: var(--bg-deep);
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.noto-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.noto-cta-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.noto-cta-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.4;
}

.noto-cta-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 40px;
}

.noto-cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 16px;
}
.noto-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.noto-cta-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .noto-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .noto-line-visual { order: -1; }
  .noto-usage-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .noto-section { padding: 72px 20px; }
  .noto-cta-section { padding: 80px 20px; }
  .noto-cta-btn { padding: 16px 28px; font-size: 0.92rem; }
}
