@charset "UTF-8";
/* =====================================================
   Google NotebookLM 実践マスター研修 ページ CSS
   ===================================================== */

.nlm-page {
  --nlm-primary: #1a1a6e;
  --nlm-blue: #1565c0;
  --nlm-indigo: #4f46e5;
  --nlm-purple: #7c3aed;
  --nlm-accent: #e8401c;
  --nlm-google: #4285f4;
  --nlm-text: #222222;
  --nlm-text-light: #555555;
  --nlm-bg: #f7f8fc;
  --nlm-white: #ffffff;
  --nlm-border: #dee2e8;
  --nlm-shadow: 0 4px 20px rgba(0,0,0,0.10);
  --nlm-radius: 10px;
  --nlm-max: 1100px;
  --nlm-t: 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--nlm-text);
  overflow-x: hidden;
}

.nlm-inner {
  max-width: var(--nlm-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nlm-sec-header {
  text-align: center;
  margin-bottom: 48px;
}

.nlm-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--nlm-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nlm-sec-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--nlm-primary);
  line-height: 1.45;
  margin-bottom: 12px;
}

.nlm-sec-title--light { color: var(--nlm-white); }

.nlm-sec-desc {
  color: var(--nlm-text-light);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ── ボタン ── */
.nlm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--nlm-t);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.nlm-btn--primary {
  background: var(--nlm-accent);
  color: var(--nlm-white);
  border-color: var(--nlm-accent);
}

.nlm-btn--primary:hover {
  background: #ff5a30;
  border-color: #ff5a30;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,64,28,0.35);
}

.nlm-btn--doc {
  background: rgba(255,255,255,0.14);
  color: var(--nlm-white);
  border-color: rgba(255,255,255,0.5);
}

.nlm-btn--doc:hover { background: rgba(255,255,255,0.25); }

.nlm-btn--secondary {
  background: var(--nlm-white);
  color: var(--nlm-primary);
  border-color: var(--nlm-white);
}

.nlm-btn--secondary:hover { background: #eef2ff; }


/* ========== ヒーロー ========== */
.nlm-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a6e 35%, #4f46e5 70%, #7c3aed 100%);
  padding: 140px 24px 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nlm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.nlm-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.nlm-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.nlm-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.nlm-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--nlm-white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.nlm-hero__title span {
  color: #a5b4fc;
  background: linear-gradient(90deg, #a5b4fc, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nlm-hero__sub {
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin-bottom: 28px;
}

.nlm-hero__meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.nlm-hero__meta span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nlm-hero__meta i { color: #a5b4fc; }

.nlm-hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ========== お悩みセクション ========== */
.nlm-pains {
  padding: 80px 0;
  background: var(--nlm-bg);
}

.nlm-pains__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.nlm-pain-card {
  background: var(--nlm-white);
  border-radius: var(--nlm-radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--nlm-shadow);
  border-top: 3px solid var(--nlm-indigo);
  transition: transform var(--nlm-t);
}

.nlm-pain-card:hover { transform: translateY(-3px); }

.nlm-pain-card__icon {
  font-size: 1.6rem;
  color: var(--nlm-indigo);
  margin-bottom: 12px;
}

.nlm-pain-card p {
  font-size: 0.83rem;
  color: var(--nlm-text);
  line-height: 1.7;
  font-weight: 500;
}

.nlm-pains__cta {
  background: linear-gradient(135deg, var(--nlm-indigo) 0%, var(--nlm-purple) 100%);
  border-radius: var(--nlm-radius);
  padding: 22px 32px;
  text-align: center;
}

.nlm-pains__cta p {
  color: var(--nlm-white);
  font-size: 1.05rem;
  font-weight: 700;
}

.nlm-pains__cta i { color: #a5b4fc; }


/* ========== 選ばれる理由 ========== */
.nlm-reasons {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a6e 40%, #4f46e5 80%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
}

.nlm-reasons::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.nlm-reasons .nlm-inner { position: relative; z-index: 1; }
.nlm-reasons .nlm-label { color: rgba(255,255,255,0.65); }

.nlm-reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nlm-reason-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--nlm-radius);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background var(--nlm-t), transform var(--nlm-t);
  position: relative;
}

.nlm-reason-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.nlm-reason-card__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.nlm-reason-card__icon {
  font-size: 2rem;
  color: #a5b4fc;
  margin-bottom: 14px;
}

.nlm-reason-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--nlm-white);
  line-height: 1.55;
  margin-bottom: 12px;
}

.nlm-reason-card p {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
}


/* ========== 対象者 ========== */
.nlm-targets {
  padding: 80px 0;
  background: var(--nlm-white);
}

.nlm-targets__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.nlm-targets__col {
  background: var(--nlm-bg);
  border-radius: var(--nlm-radius);
  padding: 32px 28px;
  border: 1px solid var(--nlm-border);
}

.nlm-targets__col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nlm-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--nlm-indigo);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nlm-targets__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nlm-targets__col li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--nlm-border);
  font-size: 0.9rem;
  color: var(--nlm-text);
  font-weight: 500;
}

.nlm-targets__col li:last-child { border-bottom: none; }

.nlm-targets__col li i { color: var(--nlm-indigo); font-size: 0.85rem; }


/* ========== カリキュラム ========== */
.nlm-curriculum {
  padding: 80px 0;
  background: var(--nlm-bg);
}

.nlm-courses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.nlm-course {
  border-radius: var(--nlm-radius);
  overflow: hidden;
  box-shadow: var(--nlm-shadow);
  background: var(--nlm-white);
}

.nlm-course__head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}

.nlm-course--basic .nlm-course__head {
  background: linear-gradient(135deg, #1a1a6e 0%, #4f46e5 100%);
}

.nlm-course--advanced .nlm-course__head {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.nlm-course__badge {
  flex-shrink: 0;
  text-align: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 16px;
}

.nlm-course__badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.nlm-course__badge-time {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--nlm-white);
}

.nlm-course__badge-time i { font-size: 0.85rem; margin-right: 4px; }

.nlm-course__format {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nlm-course__head-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nlm-white);
  line-height: 1.45;
}

.nlm-course__content {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nlm-course__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--nlm-border);
}

.nlm-course__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.nlm-course__item-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--nlm-indigo);
  flex-shrink: 0;
}

.nlm-course--advanced .nlm-course__item-icon {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  color: var(--nlm-purple);
}

.nlm-course__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--nlm-primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.nlm-course__item p {
  font-size: 0.83rem;
  color: var(--nlm-text-light);
  line-height: 1.75;
  margin: 0;
}


/* ========== 受講者の声 ========== */
.nlm-voices {
  padding: 80px 0;
  background: var(--nlm-white);
}

.nlm-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nlm-voice-card {
  background: var(--nlm-bg);
  border-radius: var(--nlm-radius);
  padding: 28px 24px;
  border: 1px solid var(--nlm-border);
  border-top: 3px solid var(--nlm-indigo);
  position: relative;
  transition: box-shadow var(--nlm-t), transform var(--nlm-t);
}

.nlm-voice-card:hover {
  box-shadow: var(--nlm-shadow);
  transform: translateY(-3px);
}

.nlm-voice-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3.5rem;
  color: var(--nlm-border);
  font-family: Georgia, serif;
  line-height: 1;
}

.nlm-voice-card__meta {
  margin-bottom: 14px;
}

.nlm-voice-card__role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nlm-indigo);
  background: #eef2ff;
  padding: 3px 12px;
  border-radius: 20px;
}

.nlm-voice-card blockquote {
  font-size: 0.87rem;
  color: var(--nlm-text);
  line-height: 1.85;
  margin: 0;
  padding: 0;
  border: none;
}


/* ========== クロージングCTA ========== */
.nlm-closing {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a6e 40%, #4f46e5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nlm-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.nlm-closing__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.nlm-closing__eyebrow {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nlm-closing__eyebrow i { color: #a5b4fc; }

.nlm-closing__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--nlm-white);
  line-height: 1.45;
  margin-bottom: 16px;
}

.nlm-closing__title strong { color: #a5b4fc; }

.nlm-closing__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
}

.nlm-closing__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.nlm-closing__tels {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.nlm-closing__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nlm-white);
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 24px;
  transition: background var(--nlm-t);
}

.nlm-closing__tel:hover { background: rgba(255,255,255,0.2); }

.nlm-closing__tel i { font-size: 1.3rem; color: #a5b4fc; }

.nlm-closing__tel small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
}

.nlm-closing__tel strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}


/* ========== レスポンシブ ========== */
@media screen and (max-width: 1024px) {
  .nlm-pains__grid { grid-template-columns: repeat(3, 1fr); }
  .nlm-reasons__grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
  .nlm-hero { padding: 80px 20px 60px; }

  .nlm-hero__btns,
  .nlm-closing__btns { flex-direction: column; align-items: center; }

  .nlm-hero__meta { flex-direction: column; gap: 8px; align-items: center; }

  .nlm-pains__grid { grid-template-columns: repeat(2, 1fr); }

  .nlm-reasons__grid { grid-template-columns: 1fr 1fr; }

  .nlm-targets__cols { grid-template-columns: 1fr; }

  .nlm-courses { grid-template-columns: 1fr; }

  .nlm-voices__grid { grid-template-columns: 1fr 1fr; }

  .nlm-closing__tels { flex-direction: column; align-items: center; }
}

@media screen and (max-width: 480px) {
  .nlm-pains__grid { grid-template-columns: 1fr 1fr; }
  .nlm-reasons__grid { grid-template-columns: 1fr; }
  .nlm-voices__grid { grid-template-columns: 1fr; }
}

/* ── グローバルヘッダー（ヒーロー背景と統一） ── */
@media (min-width: 751px) {
  .PageTop__back {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a6e 35%, #4f46e5 70%, #7c3aed 100%) !important;
  }
  .PageTop__back .header .header-band {
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom-color: rgba(255,255,255,0.2) !important;
  }
  .PageTop__back .global-nav__list > li > a {
    color: #ffffff !important;
  }
  .PageTop__back .nav li.current,
  .PageTop__back ul.global-nav__list li.now_here {
    border-bottom-color: rgba(255,255,255,0.5) !important;
  }
  .PageTop__back .nav li.current > a,
  .PageTop__back ul.global-nav__list li.now_here > a {
    color: #ffffff !important;
  }
  .PageTop__back .header .logo img {
    filter: brightness(0) invert(1);
  }
  /* スクロール後：白背景・ダークテキストに戻す */
  .PageTop__back .header.fixed .header-band {
    background-color: #ffffff !important;
    box-shadow: 0 2px 14px rgba(11, 31, 56, 0.10) !important;
    border-bottom-color: #0b1f38 !important;
  }
  .PageTop__back .header.fixed .global-nav__list > li > a {
    color: #1c2b3a !important;
  }
  .PageTop__back .header.fixed .nav li.current,
  .PageTop__back .header.fixed ul.global-nav__list li.now_here {
    border-bottom-color: #1a5fa8 !important;
  }
  .PageTop__back .header.fixed .nav li.current > a,
  .PageTop__back .header.fixed ul.global-nav__list li.now_here > a {
    color: #1a5fa8 !important;
  }
  .PageTop__back .header.fixed .logo img {
    filter: none;
  }
}
@media (max-width: 750px) {
  .header .header-band {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a6e 35%, #4f46e5 70%, #7c3aed 100%) !important;
  }
}
