@charset "UTF-8";

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 62.5%; }
body {
  margin: 0;
  color: #2a2233;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.85;
  background: #fbf9f4;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.4; }
p { margin: 0; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ============ DESIGN TOKENS ============
 * 戦略：
 *  ・ブランド色（UiPath橙 / OLDE紅）はアクセント＝CTA・小ラベル・細線にのみ使用
 *  ・大面積は warm ink（深い墨）と warm cream で構成し、目への刺激を抑える
 *  ・2つの暖色が隣接すると振動するため、必ずクリーム or 墨でバッファ
 *  ・グラデーション・グロウは控えめにし、ベタ塗りを基本にする
 */
:root {
  /* ── OLDE 紅 ─────────── */
  --olde:        #A81311;
  --olde-deep:   #7d0c0a;
  --olde-soft:   #f6e8e7;   /* 背景帯・ハイライト用の極淡 */
  --olde-muted:  #c66662;   /* 線・小バッジ用の落ち着いた紅 */

  /* ── UiPath 橙 ─────────── */
  --uipath:      #FA4616;
  --uipath-deep: #d23a08;
  --uipath-soft: #fff0e8;
  --uipath-muted:#ff8a64;

  /* ── ニュートラル（暖色寄り） ─── */
  --ink:         #1f2530;   /* 暖色寄り墨。冷たいネイビーより目に優しい */
  --ink-deep:    #14181f;
  --ink-mid:     #2d3543;
  --ink-soft:    #3a4254;

  --cream:       #fbf9f4;   /* 暖色オフホワイト */
  --cream2:      #f3ede2;   /* 1段濃いクリーム */
  --border:      #e6dfd2;   /* 暖色ボーダー */

  --text:        #2a2233;
  --text-mute:   #6e6779;

  /* ── 暗背景上で使う反対色（淡シャンパン） ── */
  --accent-on-dark:  #f3d9b8;   /* 茶寄りクリーム＝赤系と並んでも痛くない */
  --accent-on-dark2: #f9e6cb;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; position: relative; }
.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* ============ HEADER ============ */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,244,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
/* OLDE 細ストライプ：ブランド色を主張しすぎず示す */
.lp-header::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olde) 0%, var(--olde) 50%, var(--uipath) 50%, var(--uipath) 100%);
}
.lp-header__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-header__logo img { height: 32px; }
.lp-header__right { display: flex; align-items: center; gap: 20px; }
.lp-header__date { font-size: 1.3rem; color: var(--ink); font-weight: 700; letter-spacing: .04em; }
.lp-header__cta {
  display: inline-block; background: var(--uipath); color: #fff;
  padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(168,19,17,.18);
}
.lp-header__cta:hover { opacity: 1; background: var(--uipath-deep); }
@media (max-width: 768px) {
  .lp-header__date { display: none; }
  .lp-header__logo img { height: 26px; }
  .lp-header__cta { padding: 8px 16px; font-size: 1.3rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: 760px;
  background: var(--ink-deep);
  color: #fff; padding: 100px 24px 90px;
  display: flex; align-items: center;
}
.hero__bg-image {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .28;
}
.hero__bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(20,24,31,.92) 0%, rgba(31,37,48,.78) 50%, rgba(45,53,67,.65) 100%),
    radial-gradient(ellipse 800px 500px at 88% 105%, rgba(168,19,17,.22), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 0%, rgba(250,70,22,.13), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; width: 100%; text-align: center; }
.hero__badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero__badge {
  display: inline-block; padding: 6px 18px; border-radius: 999px;
  font-size: 1.3rem; font-weight: 700; letter-spacing: .04em;
}
.hero__badge--free { background: var(--uipath); color: #fff; }
.hero__badge--online {
  background: rgba(243,217,184,.18); color: var(--accent-on-dark);
  border: 1px solid rgba(243,217,184,.35);
}
.hero__badge--co { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }

.hero__lead {
  font-size: 1.7rem; font-weight: 500; letter-spacing: .15em;
  color: var(--accent-on-dark); margin-bottom: 16px;
}
.hero__title {
  font-size: 5.2rem; font-weight: 900; line-height: 1.25;
  letter-spacing: .02em; margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero__title--accent {
  background: linear-gradient(90deg, #FFC447 0%, #FFD96E 50%, #FFE9A6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub { font-size: 1.8rem; color: rgba(255,255,255,.88); margin-bottom: 48px; }

.hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 880px; margin: 0 auto 40px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px; padding: 28px 20px; backdrop-filter: blur(10px);
}
.hero__meta-item + .hero__meta-item { border-left: 1px solid rgba(255,255,255,.12); }
@media (max-width: 880px) and (min-width: 769px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__meta-item:nth-child(odd) { border-left: none; }
}
.hero__meta-item { margin: 0; text-align: center; }
.hero__meta-item dt {
  font-size: 1.2rem; color: var(--accent-on-dark); font-weight: 700;
  letter-spacing: .1em; margin-bottom: 8px;
}
.hero__meta-item dd { margin: 0; font-size: 1.4rem; line-height: 1.7; color: rgba(255,255,255,.82); }
.hero__meta-item strong { display: block; font-size: 2rem; color: #fff; margin-bottom: 2px; }

.hero__cta-wrap { margin-bottom: 36px; }
.hero__cta-note { font-size: 1.2rem; color: rgba(255,255,255,.55); margin-top: 14px; }

.hero__hosts {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 28px; background: rgba(255,255,255,.06);
  border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
}
.hero__hosts-label {
  font-size: 1.1rem; color: var(--accent-on-dark); font-weight: 700;
  letter-spacing: .12em; padding-right: 14px; border-right: 1px solid rgba(255,255,255,.2);
}
.hero__host-name { font-size: 1.5rem; font-weight: 700; }
.hero__hosts-divider { color: var(--accent-on-dark); font-weight: 700; font-size: 1.4rem; }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  font-family: "Inter", sans-serif; font-size: 1rem; letter-spacing: .25em;
  color: rgba(255,255,255,.55);
}
.hero__scroll-line {
  width: 1px; height: 40px; margin-top: 10px;
  background: linear-gradient(180deg, var(--accent-on-dark), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 768px) {
  .hero { padding: 60px 18px 80px; min-height: auto; }
  .hero__title { font-size: 3.2rem; }
  .hero__sub { font-size: 1.4rem; margin-bottom: 32px; }
  .hero__lead { font-size: 1.3rem; }
  .hero__meta { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .hero__meta-item { padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.15); }
  .hero__meta-item + .hero__meta-item { border-left: none; }
  .hero__meta-item:last-child { border-bottom: none; }
  .hero__hosts { flex-wrap: wrap; gap: 10px; padding: 14px 18px; }
  .hero__hosts-label { border-right: none; padding-right: 0; }
  .hero__scroll { display: none; }
}

/* ============ PRIMARY BUTTON ============ */
.btn-primary {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 360px; padding: 22px 40px;
  background: var(--uipath);
  color: #fff; border-radius: 12px; font-weight: 900;
  box-shadow: 0 6px 18px rgba(168,19,17,.22), 0 2px 4px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}
.btn-primary:hover {
  opacity: 1; transform: translateY(-2px);
  background: var(--uipath-deep);
  box-shadow: 0 10px 24px rgba(168,19,17,.32), 0 4px 6px rgba(0,0,0,.1);
}
.btn-primary__main { font-size: 2rem; letter-spacing: .05em; }
.btn-primary__sub { font-size: 1.2rem; font-weight: 700; opacity: .9; margin-top: 4px; letter-spacing: .15em; }
.btn-primary--large { min-width: 100%; padding: 26px 40px; margin-top: 10px; }
@media (max-width: 768px) { .btn-primary { min-width: 100%; padding: 18px 24px; } .btn-primary__main { font-size: 1.7rem; } }

/* ============ KEY VISUAL STRIP ============ */
.kv-strip {
  background: var(--ink);
  padding: 36px 24px; color: #fff;
  border-top: 3px solid var(--olde);   /* OLDEブランド色の細い線 */
}
.kv-strip__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.kv-strip__item {
  text-align: center; padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.kv-strip__item:last-child { border-right: none; }
.kv-strip__num {
  display: block; font-family: "Inter", sans-serif;
  font-size: 4rem; font-weight: 900; color: var(--accent-on-dark);
  line-height: 1; letter-spacing: -.02em; margin-bottom: 8px;
}
.kv-strip__num small { font-size: 1.4rem; color: rgba(255,255,255,.65); margin-left: 4px; font-weight: 700; }
.kv-strip__label { font-size: 1.2rem; color: rgba(255,255,255,.75); letter-spacing: .1em; }
@media (max-width: 768px) {
  .kv-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .kv-strip__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .kv-strip__item:nth-child(even) { border-right: none; }
  .kv-strip__num { font-size: 3rem; }
}

/* ============ COMMON SECTION ============ */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section__eyebrow {
  font-size: 1.2rem; letter-spacing: .25em; color: var(--olde);
  font-weight: 700; text-align: center; margin-bottom: 14px;
  font-family: "Inter", sans-serif; text-transform: uppercase;
}
.section__eyebrow--white { color: var(--accent-on-dark); }
.section__title {
  font-size: 3.6rem; font-weight: 900; text-align: center;
  line-height: 1.4; margin-bottom: 14px; letter-spacing: .02em;
  color: var(--ink);
}
.section__title--white { color: #fff; }
.section__sub { text-align: center; font-size: 1.5rem; color: var(--text-mute); margin-bottom: 56px; }
.text-accent { color: var(--uipath); }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section__title { font-size: 2.4rem; }
}

/* ============ PROBLEM ============ */
.section--problem { background: var(--cream); }
.problem-wrapper {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px;
  align-items: center; margin-top: 56px;
}
.problem-image {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(31,37,48,.12);
  position: relative;
}
.problem-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,37,48,.12), transparent 50%);
}
.problem-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.problem-list { display: flex; flex-direction: column; gap: 16px; }
.problem-card {
  display: flex; gap: 22px; padding: 24px 28px;
  background: #fff; border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 3px 12px rgba(31,37,48,.04);
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.problem-card:hover {
  transform: translateX(6px);
  border-color: var(--olde-muted);
  box-shadow: 0 8px 20px rgba(31,37,48,.08);
}
.problem-card__icon {
  flex-shrink: 0; width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--accent-on-dark);
  border-radius: 12px;
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 1.4rem;
}
.problem-card__text { font-size: 1.5rem; line-height: 1.85; color: var(--text); }
.problem-card__text strong { color: var(--olde); font-weight: 700; }
@media (max-width: 980px) {
  .problem-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .problem-image { aspect-ratio: 16/9; max-height: 320px; }
  .problem-image img { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .problem-card { padding: 20px 18px; gap: 14px; }
  .problem-card__icon { width: 40px; height: 40px; font-size: 1.2rem; }
  .problem-card__text { font-size: 1.4rem; }
}

/* ============ MESSAGE ============ */
.section--message {
  position: relative;
  background: var(--ink-deep);
  color: #fff;
}
.message-bg { position: absolute; inset: 0; z-index: 0; }
.message-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.message-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,31,.94) 0%, rgba(31,37,48,.9) 100%),
    radial-gradient(circle at 25% 25%, rgba(168,19,17,.18), transparent 50%);
}
.section--message .container { position: relative; z-index: 1; }
.message-sub {
  text-align: center; font-size: 1.7rem; font-weight: 700;
  color: var(--accent-on-dark); line-height: 1.7; letter-spacing: .02em;
}
.message-body { max-width: 840px; margin: 56px auto 0; }
.message-body p {
  font-size: 1.6rem; line-height: 2.2; margin-bottom: 28px;
  color: rgba(255,255,255,.86); text-align: center;
}
.message-body p strong { color: var(--accent-on-dark); font-weight: 700; }
.message-body__close {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15);
  font-size: 1.55rem !important;
}
@media (max-width: 768px) {
  .message-sub { font-size: 1.35rem; }
  .message-body p { text-align: left; font-size: 1.45rem; line-height: 2; }
  .message-body p br { display: none; }
}

/* ============ BENEFITS ============ */
.section--benefits { background: var(--cream); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px;
}
.benefit-card {
  background: #fff; border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.benefit-card:hover {
  transform: translateY(-6px); border-color: var(--olde-muted);
  box-shadow: 0 16px 32px rgba(31,37,48,.1);
}
.benefit-card__thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--cream2);
}
.benefit-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.benefit-card:hover .benefit-card__thumb img { transform: scale(1.06); }
.benefit-card__num {
  position: absolute; top: 12px; left: 12px;
  width: 44px; height: 44px;
  background: var(--uipath); color: #fff;
  font-family: "Inter", sans-serif; font-size: 1.8rem; font-weight: 900;
  border-radius: 10px; display: grid; place-items: center;
  box-shadow: 0 3px 8px rgba(168,19,17,.2);
}
.benefit-card__title {
  font-size: 1.7rem; font-weight: 700; color: var(--ink);
  padding: 24px 22px 12px;
}
.benefit-card__text {
  font-size: 1.35rem; color: var(--text-mute);
  line-height: 1.85; padding: 0 22px 24px;
}
.benefit-card__text b {
  display: inline-block; margin-bottom: 2px;
  color: var(--olde); font-weight: 900; font-size: 1.2rem;
  letter-spacing: .02em;
}
@media (max-width: 980px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============ TARGET ============ */
.section--target { background: var(--cream2); }
.target-wrapper {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  align-items: center; margin-top: 56px;
}
.target-list { display: flex; flex-direction: column; gap: 14px; }
.target-list li {
  position: relative; padding: 22px 28px 22px 70px;
  background: #fff; border-radius: 12px;
  font-size: 1.5rem; line-height: 1.85;
  border-left: 4px solid var(--olde);
  box-shadow: 0 2px 8px rgba(31,37,48,.05);
}
.target-list li strong { color: var(--olde); font-weight: 700; }
.check {
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--olde); color: #fff;
  border-radius: 50%; font-weight: 900; font-size: 1.4rem;
}
.target-image {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(31,37,48,.12);
}
.target-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
@media (max-width: 980px) {
  .target-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .target-image { aspect-ratio: 16/9; max-height: 320px; order: -1; }
  .target-image img { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .target-list li { padding: 18px 18px 18px 56px; font-size: 1.4rem; }
  .check { left: 14px; width: 26px; height: 26px; font-size: 1.2rem; }
}

/* ============ PROGRAM ============ */
/* レイアウト規約:
 *   [時刻 150px] [gap 40px] [本文 1fr]
 *   タイムライン縦線・ドットは gap の中央(170px付近)に配置し、
 *   時刻テキストは padding-right で線から 30px 以上離す。
 */
.section--program { background: var(--cream); }
.program-list { max-width: 900px; margin: 56px auto 0; position: relative; }
.program-list::before {
  content: ''; position: absolute; left: 170px; top: 20px; bottom: 20px;
  width: 2px;
  /* OLDE紅 → UiPath橙 のグラデーション（細線なので刺激少ない） */
  background: linear-gradient(180deg, var(--olde) 0%, var(--uipath) 100%);
}
.program-item {
  display: grid; grid-template-columns: 150px 1fr; gap: 40px;
  position: relative; margin-bottom: 32px;
}
.program-item::before {
  content: ''; position: absolute; left: 163px; top: 24px;
  width: 16px; height: 16px; background: var(--ink);
  border: 3px solid var(--olde-muted); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--cream);
}
.program-item__time {
  text-align: right; padding-top: 18px; padding-right: 28px;
  min-width: 0;
}
.program-item__time-range {
  display: block; font-family: "Inter", sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--ink);
  letter-spacing: 0;
  white-space: nowrap;
}
.program-item__duration {
  display: inline-block; margin-top: 8px;
  font-size: 1.1rem; color: var(--text-mute);
  background: var(--cream2); padding: 2px 10px; border-radius: 999px;
  white-space: nowrap;
}
.program-item__body {
  background: #fff; border-radius: 14px; padding: 24px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 3px 12px rgba(31,37,48,.05);
  margin-left: 16px;
}
.program-item__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.program-item__host {
  display: inline-block; font-size: 1.1rem; font-weight: 900;
  padding: 4px 12px; border-radius: 4px;
  /* OLDE は淡背景＋濃文字、UiPath はベタ橙＋白文字 で差別化 */
  background: var(--olde-soft); color: var(--olde-deep);
  letter-spacing: .1em;
}
.program-item__host--uipath { background: var(--uipath); color: #fff; }
.program-item__host--both {
  background: linear-gradient(90deg, var(--uipath) 0%, var(--olde) 100%);
  color: #fff;
}
.program-item__pickup {
  display: inline-block; font-size: 1rem; font-weight: 900;
  padding: 4px 11px; border-radius: 999px;
  background: var(--olde); color: #fff;
  letter-spacing: .08em;
}
.program-item__session {
  display: inline-block; font-size: 1.05rem; font-weight: 900;
  padding: 4px 12px; border-radius: 999px;
  background: var(--ink); color: #fff;
  letter-spacing: .06em;
}
.program-item__title {
  font-size: 1.9rem; font-weight: 700; color: var(--ink);
}
/* 注目セッションの行を強調 */
.program-item--pickup .program-item__body {
  border: 1.5px solid var(--olde-muted);
  box-shadow: 0 8px 24px rgba(168,19,17,.1);
}
.program-item--pickup::before { border-color: var(--olde); }
.program-item__more {
  display: inline-block; margin-top: 8px;
  font-size: 1.25rem; font-weight: 700; color: var(--olde);
  text-decoration: none;
}
.program-item__more:hover { opacity: 1; text-decoration: underline; }
.program-item__desc { font-size: 1.4rem; color: var(--text-mute); line-height: 1.85; margin-bottom: 18px; }
.program-item__speaker {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px; border-top: 1px dashed var(--border);
}
.program-item__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; object-position: center top; flex-shrink: 0;
  border: 2px solid var(--cream);
  box-shadow: 0 2px 8px rgba(31,37,48,.1);
}
.program-item__company {
  display: block; font-size: 1.15rem; color: var(--text-mute); line-height: 1.5;
}
.program-item__name {
  display: block; font-size: 1.45rem; font-weight: 700; color: var(--ink); margin-top: 2px;
}
@media (max-width: 768px) {
  .program-list::before { left: 8px; }
  .program-item { grid-template-columns: 1fr; gap: 8px; padding-left: 30px; }
  .program-item::before { left: 0; top: 8px; }
  .program-item__time { text-align: left; padding-top: 0; }
  .program-item__body { margin-left: 0; padding: 18px 18px; }
  .program-item__title { font-size: 1.6rem; }
  .program-item__avatar { width: 48px; height: 48px; }
}

/* ============ FEATURED SESSION ============ */
.section--featured {
  position: relative;
  background: var(--ink-deep);
  color: #fff;
}
.section--featured::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 400px at 12% 0%, rgba(168,19,17,.16), transparent 55%),
    radial-gradient(ellipse 700px 400px at 90% 100%, rgba(250,70,22,.12), transparent 55%);
}
.section--featured .container { position: relative; z-index: 1; }

.featured__meta {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px; margin-bottom: 40px;
}
.featured__meta-time {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 1.4rem;
  color: var(--accent-on-dark);
  background: rgba(243,217,184,.12); border: 1px solid rgba(243,217,184,.3);
  padding: 5px 14px; border-radius: 999px;
}
.featured__meta-host {
  font-size: 1.1rem; font-weight: 900; letter-spacing: .08em;
  background: var(--olde); color: #fff; padding: 5px 12px; border-radius: 4px;
}
.featured__meta-title { font-size: 1.5rem; font-weight: 700; color: #fff; }

.featured__lead {
  text-align: center; font-size: 1.6rem; line-height: 2.1;
  color: rgba(255,255,255,.88); max-width: 800px; margin: 0 auto 56px;
}
.featured__lead strong { color: var(--accent-on-dark); font-weight: 700; }

/* steps */
.featured-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 60px;
}
.featured-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 28px 26px;
  position: relative;
}
.featured-step__num {
  display: inline-block; font-family: "Inter", sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: .15em;
  color: var(--accent-on-dark); margin-bottom: 14px;
}
.featured-step__num b { font-size: 2.4rem; margin-left: 8px; color: #fff; letter-spacing: 0; }
.featured-step__title {
  font-size: 1.9rem; font-weight: 700; color: #fff; margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 2px solid var(--olde);
  display: inline-block;
}
.featured-step__text { font-size: 1.4rem; line-height: 1.95; color: rgba(255,255,255,.82); }
.featured-step__text strong { color: var(--accent-on-dark); font-weight: 700; }
@media (max-width: 880px) {
  .featured-steps { grid-template-columns: 1fr; gap: 16px; }
}

/* why semi-pro / compare table */
.featured-why { margin-bottom: 56px; }
.featured-why__title {
  text-align: center; font-size: 2.4rem; font-weight: 900; color: #fff;
  margin-bottom: 32px;
}
.featured-why__title::after {
  content: ''; display: block; width: 56px; height: 3px;
  background: var(--olde); margin: 14px auto 0;
}
.compare-table-wrap {
  max-width: 880px; margin: 0 auto; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%; min-width: 600px;
  border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.compare-table thead th {
  padding: 18px 20px; font-size: 1.45rem; font-weight: 700; color: #fff;
  text-align: left;
}
.compare-table__axis { background: var(--ink); width: 24%; }
.compare-table__pro  { background: #8a8593; width: 38%; }      /* プロ列：抑えめのグレー */
.compare-table__semi { background: var(--olde); width: 38%; }  /* セミプロ列：強調 */
.compare-table tbody th {
  background: var(--cream); color: var(--ink);
  font-weight: 700; font-size: 1.35rem; text-align: left;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.compare-table tbody td {
  padding: 16px 20px; font-size: 1.35rem; color: var(--text);
  border-bottom: 1px solid var(--border); line-height: 1.7;
}
.compare-table tbody td:last-child {
  background: var(--olde-soft); color: var(--olde-deep); font-weight: 700;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

/* chemical reaction formula */
.featured-formula {
  max-width: 880px; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 36px 32px; text-align: center;
}
.featured-formula__label {
  font-size: 1.3rem; font-weight: 700; letter-spacing: .12em;
  color: var(--accent-on-dark); margin-bottom: 24px;
}
.featured-formula__eq {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 12px; margin-bottom: 26px;
}
.formula-item {
  display: flex; flex-direction: column; justify-content: center;
  padding: 16px 22px; border-radius: 12px; min-width: 140px;
  font-weight: 700;
}
.formula-item b { font-size: 1.7rem; color: #fff; }
.formula-item small { font-size: 1.1rem; font-weight: 500; opacity: .8; margin-top: 4px; color: #fff; }
.formula-item--base { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); }
.formula-item--ai   { background: rgba(250,70,22,.18); border: 1px solid rgba(250,70,22,.5); }
.formula-item--lead { background: rgba(168,19,17,.22); border: 1px solid rgba(168,19,17,.6); }
.formula-op { display: flex; align-items: center; font-size: 2.2rem; font-weight: 900; color: var(--accent-on-dark); }
.featured-formula__result {
  font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.7;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15);
}
.featured-formula__result strong { color: var(--accent-on-dark); }
@media (max-width: 880px) {
  .featured-formula__eq { flex-direction: column; align-items: stretch; }
  .formula-op { justify-content: center; }
  .formula-item { min-width: 0; }
  .featured__meta-title { font-size: 1.3rem; }
  .featured__lead { font-size: 1.45rem; }
  .featured__lead br { display: none; }
}

.featured__cta { text-align: center; margin-top: 48px; }

/* ============ OVERVIEW ============ */
.section--overview { background: var(--cream2); }
.overview-table {
  max-width: 880px; margin: 56px auto 0;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(31,37,48,.06);
}
.overview-table th, .overview-table td {
  padding: 22px 28px; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 1.5rem; line-height: 1.85;
  vertical-align: top;
}
.overview-table th {
  background: var(--ink); color: #fff;
  width: 180px; font-weight: 700; font-size: 1.4rem;
}
.overview-table tr:last-child th,
.overview-table tr:last-child td { border-bottom: none; }
.overview-table__sub { display: inline-block; color: var(--text-mute); font-size: 1.3rem; margin-top: 4px; }
.overview-note {
  max-width: 880px; margin: 18px auto 0;
  font-size: 1.25rem; color: var(--text-mute); text-align: left;
}
@media (max-width: 768px) {
  .overview-table th, .overview-table td {
    display: block; width: 100%; padding: 14px 18px;
    border-bottom: none;
  }
  .overview-table th { font-size: 1.2rem; padding-bottom: 6px; }
  .overview-table td { border-bottom: 1px solid var(--border); padding-top: 6px; font-size: 1.4rem; }
}

/* ============ HOSTS ============ */
.section--hosts { background: var(--cream); }
.hosts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 56px;
}
.host-card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(31,37,48,.06);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.host-card:hover {
  opacity: 1; transform: translateY(-4px);
  border-color: var(--olde-muted);
  box-shadow: 0 16px 32px rgba(31,37,48,.12);
}
.host-card__link {
  display: inline-block; margin-top: 18px;
  font-size: 1.35rem; font-weight: 700; color: var(--olde);
  transition: gap .2s;
}
.host-card:hover .host-card__link { text-decoration: underline; }
.host-card__body { padding: 36px 32px 34px; }
.host-card__logo { display: flex; align-items: center; height: 56px; margin-bottom: 18px; }
.host-card__logo-img { height: 38px; width: auto; }
.host-card__logo-img--square { height: 52px; }
.host-card__logo-img--uipath { height: 34px; }   /* 横長ワードマーク：人型アイコンと視覚的に揃う高さ */
.host-card__name { font-size: 1.9rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.host-card__name rt { font-size: .5em; font-weight: 500; color: var(--text-mute); letter-spacing: .08em; }
.host-card__text { font-size: 1.4rem; line-height: 1.95; color: var(--text-mute); }
.host-card__text + .host-card__text { margin-top: 12px; }
.host-card__text strong { color: var(--ink); font-weight: 700; }
@media (max-width: 768px) {
  .hosts-grid { grid-template-columns: 1fr; }
  .host-card__body { padding: 22px 22px 26px; }
}

/* ============ ENTRY ============ */
.section--entry {
  position: relative;
  background: var(--ink-deep);
  color: #fff;
}
.entry-bg { position: absolute; inset: 0; z-index: 0; }
.entry-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.entry-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,37,48,.95), rgba(20,24,31,1)),
    radial-gradient(circle at 50% 0%, rgba(250,70,22,.18), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(168,19,17,.18), transparent 60%);
}
.section--entry .container { position: relative; z-index: 1; }
.entry__lead {
  text-align: center; font-size: 1.5rem;
  color: rgba(255,255,255,.85); margin-bottom: 48px; line-height: 2;
}
.entry-form {
  max-width: 720px; margin: 0 auto;
  background: #fff; padding: 48px; border-radius: 20px;
  color: var(--text); box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.entry-form__row { margin-bottom: 20px; }
.entry-form__row label {
  display: block; font-size: 1.4rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.entry-form__row input,
.entry-form__row select,
.entry-form__row textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 1.5rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.entry-form__row input:focus,
.entry-form__row select:focus,
.entry-form__row textarea:focus {
  outline: none; border-color: var(--olde-muted);
  box-shadow: 0 0 0 3px rgba(168,19,17,.08);
}
.entry-form__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.req {
  display: inline-block; padding: 2px 8px;
  background: var(--olde); color: #fff;
  font-size: 1rem; border-radius: 3px;
  margin-left: 6px; vertical-align: middle;
  letter-spacing: .05em;
}
.entry-form__status {
  margin: 14px 0 0; text-align: center;
  font-size: 1.35rem; font-weight: 700; line-height: 1.7;
}
.entry-form__status.is-loading { color: var(--text-mute); }
.entry-form__status.is-success { color: var(--teal-deep); }
.entry-form__status.is-error   { color: var(--olde); }
.entry-form__agree {
  text-align: center; font-size: 1.4rem;
  padding: 20px 0; margin-bottom: 8px;
}
.entry-form__agree input { margin-right: 6px; transform: translateY(2px); }
.entry-form__agree a { color: var(--olde); text-decoration: underline; }
.entry-form__privacy {
  margin-bottom: 24px; padding: 18px 20px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 10px; text-align: left;
}
.entry-form__privacy p { font-size: 1.2rem; line-height: 1.85; color: var(--text-mute); }
.entry-form__privacy-head { font-weight: 700; color: var(--ink); margin-top: 12px; }
.entry-form__privacy ul { margin: 6px 0 0; padding-left: 1.3em; list-style: disc; }
.entry-form__privacy li {
  font-size: 1.2rem; line-height: 1.8; color: var(--text-mute); margin-bottom: 4px;
}
.entry-form__privacy a { color: var(--olde); text-decoration: underline; }
@media (max-width: 768px) {
  .entry-form { padding: 28px 22px; }
  .entry-form__cols { grid-template-columns: 1fr; gap: 0; }
}

/* ============ FOOTER ============ */
.lp-footer {
  background: var(--ink-deep); color: #fff;
  padding: 60px 24px 40px; text-align: center;
  border-top: 3px solid var(--olde);
}
.lp-footer__inner { max-width: 980px; margin: 0 auto; }
.lp-footer__logo img { height: 36px; margin-bottom: 18px; }
.lp-footer__text { font-size: 1.3rem; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.lp-footer__links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 28px; margin-bottom: 32px;
}
.lp-footer__links a { font-size: 1.3rem; color: rgba(255,255,255,.8); }
.lp-footer__copy { font-size: 1.2rem; color: rgba(255,255,255,.4); }

/* ============ THANKS PAGE ============ */
.thanks {
  position: relative; overflow: hidden;
  background: var(--ink-deep); color: #fff;
  padding: 110px 24px 120px; text-align: center;
  min-height: 60vh;
}
.thanks__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 420px at 15% 0%, rgba(168,19,17,.18), transparent 55%),
    radial-gradient(ellipse 700px 420px at 90% 100%, rgba(250,70,22,.16), transparent 55%);
}
.thanks .container { position: relative; z-index: 1; max-width: 720px; }
.thanks__check {
  width: 92px; height: 92px; margin: 0 auto 26px;
  border-radius: 50%; background: var(--uipath);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(250,70,22,.4);
}
.thanks__eyebrow {
  font-family: "Inter", sans-serif; font-size: 1.2rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent-on-dark); margin-bottom: 14px;
}
.thanks__title {
  font-size: 3.4rem; font-weight: 900; line-height: 1.4;
  letter-spacing: .02em; margin-bottom: 26px;
}
.thanks__lead {
  font-size: 1.6rem; line-height: 2; color: rgba(255,255,255,.88);
  margin-bottom: 44px;
}
.thanks__lead strong { color: var(--accent-on-dark); font-weight: 700; }
.thanks__info {
  max-width: 560px; margin: 0 auto 44px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; padding: 10px 26px; text-align: left;
}
.thanks__info-row {
  display: flex; gap: 18px; padding: 16px 0;
  border-bottom: 1px dashed rgba(255,255,255,.14);
}
.thanks__info-row:last-child { border-bottom: none; }
.thanks__info dt {
  flex-shrink: 0; width: 92px; font-size: 1.25rem; font-weight: 700;
  color: var(--accent-on-dark); padding-top: 2px;
}
.thanks__info dd { margin: 0; font-size: 1.45rem; line-height: 1.6; color: #fff; }
.thanks__cta { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.thanks__link { font-size: 1.4rem; font-weight: 700; color: var(--accent-on-dark); }
.thanks__note {
  margin-top: 40px; font-size: 1.25rem; color: rgba(255,255,255,.6);
}
.thanks__note a { color: var(--accent-on-dark); text-decoration: underline; }
@media (max-width: 768px) {
  .thanks { padding: 70px 18px 80px; }
  .thanks__title { font-size: 2.4rem; }
  .thanks__lead { font-size: 1.4rem; }
  .thanks__lead br { display: none; }
  .thanks__info-row { flex-direction: column; gap: 4px; }
  .thanks__info dt { width: auto; }
}

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 16px 28px;
  background: var(--uipath);
  color: #fff; border-radius: 999px; font-weight: 900;
  box-shadow: 0 8px 20px rgba(168,19,17,.28);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.floating-cta:hover {
  opacity: 1; transform: translateY(-2px);
  background: var(--uipath-deep);
  box-shadow: 0 12px 28px rgba(168,19,17,.35);
}
.floating-cta__sub { font-size: 1.1rem; opacity: .9; letter-spacing: .1em; }
.floating-cta__main { font-size: 1.6rem; letter-spacing: .05em; }
@media (max-width: 768px) {
  .floating-cta {
    left: 16px; right: 16px; bottom: 16px;
    border-radius: 12px; padding: 12px 16px;
  }
  .floating-cta__sub { font-size: 1rem; }
  .floating-cta__main { font-size: 1.4rem; }
}
