/* ===== Hero Section ===== */
.p-hero {
  background: linear-gradient(135deg, #0C273B 0%, #09112B 40%, #090C21 100%);
  padding: 72px 40px 64px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.p-hero::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.p-hero__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.p-hero__label {
  display: inline-block; background-color: #E60012; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  padding: 5px 16px; border-radius: 2px; margin-bottom: 24px; text-transform: uppercase;
}
.p-hero__title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 20px; letter-spacing: 0.02em;
}
.p-hero__title span {
  display: block; font-size: clamp(13px, 1.8vw, 17px); font-weight: 400;
  color: rgba(255,255,255,0.7); margin-bottom: 8px; letter-spacing: 0.05em;
}
.p-hero__subtitle {
  font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.9; max-width: 640px; margin-top: 4px;
}
.p-hero__note {
  font-size: 0.85em;
  color: rgba(255,255,255,0.7);
}

@media screen and (min-width:769px) {
  .p-hero__note {
    margin-left: 20px;
  }
}

@media screen and (max-width:768px) {
  .p-hero__note {
    display: block;
    margin-bottom: 20px;
  }
}

/* ===== Section Common ===== */
.l-section { padding: 72px 40px; }
.l-section--gray { background-color: #F0F2F3; }
.l-section--navy { background: linear-gradient(135deg, #0C273B 0%, #09112B 40%, #090C21 100%); }
.l-section__inner { max-width: 1200px; margin: 0 auto; }

/* ===== Intro Section ===== */
.p-intro {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.p-intro__text p {
  font-size: 16px; line-height: 1.9; color: #444; margin-bottom: 12px;
}
.p-intro__image { text-align: center; }

/* ===== Analysis Banner ===== */
.p-analysis-banner {
  background: #1a1a1a;
  color: #fff;
  padding: 24px 32px;
  border-radius: 6px;
  margin-bottom: 40px;
}
.p-analysis-banner__title {
  display: inline-block;
  background: #555;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.p-analysis-banner__body p {
  font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.9); margin-bottom: 8px;
}
.p-analysis-banner__body p:last-child { margin-bottom: 0; }

/* ===== Intro Note ===== */
.p-intro-note {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #F0F2F3;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.p-intro-note__text {
  flex: 1;
}
.p-intro-note__text p {
  font-size: 15px; line-height: 1.85; color: #333; margin-bottom: 6px;
}
.p-intro-note__text p strong { color: #0C273B; font-weight: 700; }
.p-intro-note__legend {
  font-size: 13px; color: #555; background: #fff; border: 1px solid #ddd;
  border-radius: 4px; padding: 10px 14px; white-space: nowrap; align-self: center;
}
.p-intro-note__legend .legend-item {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.p-intro-note__legend .legend-item:last-child { margin-bottom: 0; }
.legend-dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
}
.legend-dot--blue { background: #4472C4; }
.legend-dot--orange { background: #ED7D31; }

/* ===== Overview Comparison ===== */
.p-overview-graph {
  background: #f8f9fa;
  border: 1px solid #e0e3e5;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 48px;
}
.p-overview-graph img {
  width: 100%; border-radius: 4px; display: block;
}
.p-overview-graph__caption {
  font-size: 12px; color: #888; margin-top: 10px; text-align: center; line-height: 1.6;
}

/* ===== Analysis Block ===== */
.p-analysis-block {
  margin-bottom: 64px;
}
.p-analysis-block:last-child { margin-bottom: 0; }

.p-analysis-block__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0e3e5;
}
.p-analysis-block__num {
  width: 52px; height: 52px; min-width: 52px;
  background: #0C273B;
  color: #fff;
  font-size: 22px; font-weight: 700;
  font-family: 'Roboto', sans-serif;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.p-analysis-block__title-wrap {}
.p-analysis-block__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: #E60012; text-transform: uppercase; margin-bottom: 4px;
}
.p-analysis-block__title {
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: #0C273B; line-height: 1.3;
}

.p-analysis-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.p-analysis-block__text p {
  font-size: 15px; line-height: 1.9; color: #444; margin-bottom: 10px;
}
.p-analysis-block__text p strong { color: #E60012; font-weight: 700; }
.p-analysis-block__text ul {
  margin: 10px 0 10px 0; padding-left: 0; list-style: none;
}
.p-analysis-block__text ul li {
  font-size: 14px; line-height: 1.8; color: #444;
  padding-left: 16px; position: relative; margin-bottom: 4px;
}
.p-analysis-block__text ul li::before {
  content: "・"; position: absolute; left: 0; color: #0C273B;
}

/* ===== Highlight Box ===== */
.c-highlight {
  background-color: #F0F2F3;
  border-left: 4px solid #E60012;
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  margin: 16px 0;
}
.c-highlight p { font-size: 14px; color: #333; line-height: 1.8; margin: 0; }
.c-highlight p strong { color: #E60012; font-weight: 700; }

/* ===== Comparison Result Badge ===== */
.p-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.p-comparison__item {
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
}
.p-comparison__item--expert {
  background: #EBF0F7;
  border: 2px solid #4472C4;
}
.p-comparison__item--beginner {
  background: #FEF4EC;
  border: 2px solid #ED7D31;
}
.p-comparison__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 10px;
}
.p-comparison__item--expert .p-comparison__label { color: #4472C4; }
.p-comparison__item--beginner .p-comparison__label { color: #ED7D31; }
.p-comparison__value {
  font-size: 28px; font-weight: 700; font-family: 'Roboto', sans-serif; line-height: 1.1;
}
.p-comparison__item--expert .p-comparison__value { color: #4472C4; }
.p-comparison__item--beginner .p-comparison__value { color: #ED7D31; }
.p-comparison__unit { font-size: 14px; font-weight: 400; }
.p-comparison__desc { font-size: 12px; color: #666; margin-top: 6px; line-height: 1.5; }

/* ===== Graph Image Container ===== */
.p-graph-container {
  background: #f8f9fa;
  border: 1px solid #e0e3e5;
  border-radius: 8px;
  padding: 16px;
}
.p-graph-container img {
  width: 100%; border-radius: 4px; display: block;
}
.p-graph-container__caption {
  font-size: 12px; color: #888; margin-top: 8px; text-align: center; line-height: 1.5;
}

/* ===== Info Note (動画同期) ===== */
.c-info-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #EBF0F7;
  border: 1px solid #4472C4;
  border-radius: 4px;
  padding: 12px 16px;
  margin: 12px 0;
}
.c-info-note__icon {
  color: #4472C4; font-size: 18px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.c-info-note__text {
  font-size: 13px; color: #333; line-height: 1.7;
}

/* ===== Divider ===== */
.c-divider { height: 1px; background: linear-gradient(90deg, transparent, #e0e3e5, transparent); margin: 0; }

/* ===== Closing Section ===== */
.p-closing {
  background: #fff;
  border: 1px solid #e0e3e5;
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 48px;
}
.p-closing p { font-size: 15px; color: #444; line-height: 1.9; margin-bottom: 10px; }
.p-closing p:last-child { margin-bottom: 0; }

/* ===== Collaboration Card ===== */
.p-collab {
  background: #F0F2F3;
  border-radius: 8px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.p-collab__title {
  font-size: 13px; font-weight: 700; color: #888; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.p-collab__text p {
  font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 8px;
}
.p-collab__text a {
  color: #E60012; font-weight: 700; text-decoration: none; font-size: 14px;
}
.p-collab__text a:hover { text-decoration: underline; }
.p-collab__badge {
  background: #0C273B;
  color: #fff;
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
  min-width: 220px;
}
.p-collab__badge__univ {
  font-size: 11px; opacity: 0.7; margin-bottom: 6px; line-height: 1.5;
}
.p-collab__badge__name {
  font-size: 17px; font-weight: 700; margin-bottom: 4px;
}
.p-collab__badge__link {
  font-size: 11px; opacity: 0.7;
}

/* ===== CTA Section ===== */
.p-cta {
  text-align: center; padding: 80px 40px; background-color: #F0F2F3;
}
.p-cta__inner { max-width: 800px; margin: 0 auto; }
.p-cta__title { font-size: 26px; font-weight: 700; color: #0C273B; margin-bottom: 16px; line-height: 1.4; }
.p-cta__desc { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 36px; }
.p-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.c-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background-color 0.2s, transform 0.1s; text-decoration: none;
}
.c-btn:hover { transform: translateY(-1px); }
.c-btn--primary { background-color: #0C273B; color: #fff; }
.c-btn--primary:hover { background-color: #0a1f30; color: #fff; }
.c-btn--red { background-color: #E60012; color: #fff; }
.c-btn--red:hover { background-color: #c0000f; color: #fff; }
.c-btn__arrow { font-size: 18px; line-height: 1; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .l-section { padding: 48px 20px; }
  .p-hero { padding: 60px 20px 48px; }
  .p-intro { grid-template-columns: 1fr; gap: 20px; }
  .p-intro__image { display: none; }
  .p-analysis-block__body { grid-template-columns: 1fr; gap: 24px; }
  .p-comparison { grid-template-columns: 1fr 1fr; }
  .p-collab { grid-template-columns: 1fr; }
  .p-collab__badge { min-width: auto; }
  .p-cta { padding: 48px 20px; }
  .p-intro-note { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .p-cta__buttons { flex-direction: column; align-items: center; }
  .c-btn { width: 100%; max-width: 320px; justify-content: center; }
  .p-comparison { grid-template-columns: 1fr; }
}