@charset "UTF-8";

/* --- Reset (抜粋) --- */
html, body, div, span, h1, h2, h3, p, a, img, ul, li, section, header, footer {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ul { list-style: none; }
article, section, header, footer { display: block; }
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a {
  color: inherit;
  text-decoration: none;
}

/* --- Tokens（添付イメージ準拠） --- */
:root {
  --color-fv: #0355c4;
  --color-primary: #0355c4;
  --color-cta: #0466e0;
  --color-cta-hover: #0355c4;
  --color-primary-dark: #0248a8;
  --color-check: #9B8FD4;
  --color-bg-hero: #E0ECFA;
  --color-bg-hero-end: #EBF3FC;
  --color-gray-block: #F2F2F2;
  --color-footer-bg: #e8e8e8;
  --color-text: #1a1a1a;
  --color-muted: #555;
  --font-sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  background: #e2e8ef;
}

body {
  max-width: 700px;
  margin: 0 auto;
  background: #eef2f7;
  color: var(--color-text);
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
}

/* --- FV（lululemon LP と同様: 画像 + 直下CTA） --- */
.fv {
  width: 100%;
  padding: 0 0 30px;
  margin: 0;
}

.fv h1 {
  width: 100%;
  margin: 0 0 4%;
  padding: 0;
  line-height: 0;
}

.fv h1 img {
  display: block;
  width: 100%;
  height: auto;
}

.fv a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65em;
  background-color: var(--color-cta);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: 75%;
  max-width: 500px;
  line-height: 1.4em;
  padding: 5.5% 12%;
  margin: 70px auto 0;
  letter-spacing: 0.05rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15), 0 6px 18px rgba(3, 85, 196, 0.2);
  transition: background-color 0.2s ease;
}

.fv a:hover {
  background-color: var(--color-cta-hover);
}

/* --- Floating CTA --- */
.cta-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.cta-arrow__icon {
  width: 1.05em;
  height: 1.05em;
  display: block;
}

.cta-label__free {
  font-size: 0.72em;
  font-weight: 600;
}

a.flowBtn {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 50;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65em;
  margin: 0 auto;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  background: var(--color-cta);
  box-shadow: 0 3px 10px rgba(3, 85, 196, 0.22);
  transition: opacity 0.25s, visibility 0.25s, background 0.2s;
}

a.flowBtn:hover {
  background: var(--color-cta-hover);
}

a.flowBtn.active {
  opacity: 1;
  visibility: visible;
}

/* --- Sections --- */
.section {
  width: 86%;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 0 40px;
}

.section__title {
  text-align: center;
  margin-bottom: 28px;
}

.section__title-en {
  display: block;
  font-family: League Gothic;
  font-size: clamp(1.85rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.section__title-en--mixed {
  text-transform: none;
}

.section__title-ja {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.08em;
}

.section__body {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.95;
  color: var(--color-text);
}

.section__body--center {
  text-align: left;
}

/* OUTLINE 内 開催要項リスト（online0820 #outline ul 相当） */
.section--outline .section__body {
  margin-bottom: 10%;
}

.section--outline .outline-spec {
  margin: 0;
  padding: 0;
}

.section--outline .outline-spec li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-top: 1px solid #000;
  padding: 7% 0;
  position: relative;
  font-size: 17px;
}

.section--outline .outline-spec li::before {
  content: "";
  position: absolute;
  width: 24%;
  height: 2px;
  top: 0;
  left: 0;
  background: #000;
}

.section--outline .outline-spec .left {
  width: 24%;
  flex-shrink: 0;
  font-weight: 700;
}

.section--outline .outline-spec .right {
  width: 76%;
  font-weight: 500;
  line-height: 1.5;
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .section--outline .outline-spec li {
    padding: 6% 0;
    font-size: 17px;
  }

  .section--outline .outline-spec .right {
    font-size: 16px;
  }
}

.section--agenda {
  border-top: 1px solid rgba(3, 85, 196, 0.25);
  padding-top: 56px;
}

.section--agenda .section__title {
  margin-bottom: 20px;
}

/* --- Agenda: 吹き出し + チェックリスト --- */
.agenda-point-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
}

.agenda-point__bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: -6px 0 24px;
  padding: 3px 16px 6px;
  background: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: 4px;
}

.agenda-point__bubble::before,
.agenda-point__bubble::after {
  content: "";
  position: absolute;
  left: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-left-color: transparent;
  border-right-color: transparent;
}

.agenda-point__bubble::before {
  bottom: -9px;
  border-width: 8px 5px 0;
  border-top-color: var(--color-primary);
  z-index: 0;
}

.agenda-point__bubble::after {
  bottom: -7px;
  border-width: 6px 4px 0;
  border-top-color: var(--color-primary);
  z-index: 1;
}

.agenda-point__label {
  margin: 0;
  padding-top: 2px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

.agenda-point__list {
  margin: 0;
  padding: 0 4px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.agenda-point__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text);
}

.agenda-point__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-check);
  border-radius: 50%;
}

.agenda-point__check svg {
  display: block;
  width: 13px;
  height: 13px;
}

.agenda-point__text {
  flex: 1;
  min-width: 0;
}

@media screen and (min-width: 768px) {
  .agenda-point__bubble {
    margin: -8px 0 28px;
    padding: 4px 20px 7px;
  }

  .agenda-point__label {
    padding-top: 3px;
    font-size: 0.95rem;
    font-family: League Gothic;
    letter-spacing: 0.14em;
  }

  .agenda-point__list {
    gap: 22px;
    padding: 0 8px;
  }

  .agenda-point__item {
    font-size: 1.05rem;
    gap: 16px;
  }

  .agenda-point__check {
    width: 26px;
    height: 26px;
    margin-top: 2px;
  }

  .agenda-point__check svg {
    width: 14px;
    height: 14px;
  }
}

/*
--- Agenda: Point! 過去デザイン（戻すときはコメントを入れ替え） ---

■ 案3：ナンバリング型
.agenda-point {
  margin-top: 12px;
  padding: 20px 20px 6px 22px;
  background: #fff;
  border: 1px solid rgba(47, 104, 184, 0.18);
  border-left: 4px solid var(--color-primary);
}
.agenda-point__tab {
  margin: 0 0 14px;
  padding: 0;
  color: var(--color-accent);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}
.agenda-point__num {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-accent);
}
※ HTMLは 01〜04 の番号版に差し替え

■ 案1：メモ風ボックス（最初のデザイン）
.agenda-point-wrap {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 8px 18px 0;
}
.agenda-point {
  position: relative;
  margin-top: 8px;
  padding: 32px 18px 18px 16px;
  background-size: 11px 11px;
  background-position: 0 0;
  border-radius: 0 26px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 5px 5px 0 var(--color-primary);
}
.agenda-point__tab {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 7px 16px 9px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: 3px 3px 0 0;
}
.agenda-point__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0 15px;
  border-bottom: 1.3px solid var(--color-primary);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: #111;
}
.agenda-point__item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}
.agenda-point__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 30px;
}
※ HTMLもチェックマーク版に戻す（index.html 内コメント参照）

■ 案2：ジュエリーカード風
.agenda-point {
  position: relative;
  margin-top: 18px;
  padding: 38px 20px 22px;
  background: linear-gradient(165deg, #EFF5FC 0%, #F8FBFF 50%, #fff 100%);
  border: 1px solid rgba(47, 104, 184, 0.14);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(47, 104, 184, 0.08);
}
.agenda-point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 0 0 3px 3px;
  opacity: 0.85;
}
.agenda-point__tab {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 26px 9px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(47, 104, 184, 0.28);
}
*/

/* --- Schedule --- */
.section--schedule {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 0 70px;
  background: #fff;
}

.section--schedule .section__title,
.section--schedule .schedule-list,
.section--schedule .schedule-note {
  width: 86%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(3, 85, 196, 0.22);
}

.schedule-block:first-child {
  border-top: 1px solid rgba(3, 85, 196, 0.22);
}

.schedule-block__time {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
  min-width: 5.25em;
  line-height: 1.3;
  text-align: left;
}

.schedule-block__time-end {
  display: inline-block;
  margin-left: 0.2em;
}

.schedule-block__body {
  flex: 1;
  min-width: 0;
}

.schedule-block__line {
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
  color: var(--color-text);
}

.schedule-block__line strong {
  font-weight: 800;
}

.schedule-note {
  margin-top: 20px;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--color-muted);
  font-weight: 400;
}

/* --- Footer（lululemon_202605 と同一） --- */
footer {
  width: 100%;
  margin: 0 auto;
  padding: 10% 10% 30% 10%;
  background: #e5e7e9;
}

.mb-logo {
  display: block;
  width: 40%;
  max-width: 100%;
  height: auto;
  margin-bottom: 10%;
}

.footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.footer-link a {
  display: inline-block;
  font-size: 1em;
  color: #333;
  font-weight: 700;
  padding-bottom: 1px;
  border-bottom: 1px solid #333;
}

.footer-link span {
  font-family: futura-pt, sans-serif;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  a.flowBtn {
    bottom: 4%;
    width: min(88%, 480px);
    max-width: 480px;
  }

  .fv {
    padding-bottom: 25px;
  }

  .fv a {
    padding: 20px 28px;
    width: 55%;
  }

  .section {
    padding-top: 56px;
  }

  .mb-logo {
    width: 33%;
  }

  .footer-link a {
    font-size: 18px;
  }

  .footer-link span {
    font-size: 16px;
  }
}
