/* ---------------------------------------
   Base
--------------------------------------- */
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  color: #222;

  line-height: 1.8;
  font-size: 16px;
}

a {
  color: #0068b7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.lp-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------------------------------------
   Hero area
--------------------------------------- */
.lp-hero {
  padding: 40px 0 32px;
  background: #ffffff;
  border-bottom: 1px solid #e3e4ea;
}

.lp-hero__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 14px;
  border-radius: 999px;
  background-color: #edf3ff;
  color: #0053b3;
  font-weight: 600;
}

.lp-hero__title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  margin: 0 0 10px;
}

.lp-hero__lead {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #444;
}

/* 開催概要 */
.lp-hero__info-card {
  max-width: 760px;
  margin: 0 auto 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background-color: #f7f8ff;
  border: 1px solid #d7def5;
}

.lp-hero__info-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-hero__info-list {
  display: grid;
  gap: 8px;
}

.lp-hero__info-list dt {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}
.lp-hero__info-list dd {
  font-size: 14px;
  margin: 0;
}

/* CTA button */
.lp-hero__cta {
  text-align: center;
  margin-top: 18px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease, opacity .15s ease;
}

.lp-btn--primary {
  background: linear-gradient(135deg, #ff8a00, #ff4b2b);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 109, 33, .45);
}
.lp-btn--primary:hover {
  opacity: .95;
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(255, 109, 33, .35);
}

.lp-hero__note {
  margin-top: 8px;
  font-size: 12px;
  color: #777;
}

/* ---------------------------------------
   Section common
--------------------------------------- */
.lp-section {
  padding: 40px 0;
}

.lp-section__title {
  margin-bottom: 16px;
  padding-top: 4px;
  border-top: 3px solid #0068b7;
  font-size: 20px;
}

/* ---------------------------------------
   Columns
--------------------------------------- */
.lp-columns {
  display: grid;
  gap: 20px;
}

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

/* ---------------------------------------
   このセミナーでわかること
--------------------------------------- */
.lp-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 18px 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
  text-align: left;
}

.lp-card__illust {
  display: flex;
  justify-content: center;
  margin: 0 auto 12px;
  max-width: 140px;
}
.lp-card__illust img {
  width: 100%;
  height: auto;
}

.lp-card__title {
  font-size: 16px;
  margin-bottom: 6px;
}
.lp-card__text {
  font-size: 14px;
}

/* ---------------------------------------
   このような方におすすめ
--------------------------------------- */
.lp-list {
  margin: 0 0 16px 1.2em;
}
.lp-list--check li::marker {
  color: #0068b7;
}

.lp-target-illust {
  margin-top: 18px;
  height: 120px;
  border-radius: 12px;
  background: #eef1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #9498b3;
}

/* ---------------------------------------
   プログラム
--------------------------------------- */
.lp-program {
  margin: 0 0 1.5em 1.2em;
}
.lp-program > li {
  margin-bottom: 12px;
}

/* ---------------------------------------
   投資事例
--------------------------------------- */
.lp-case {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 12px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.lp-case__thumb {
  flex: 0 0 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f3f8;
}
.lp-case__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-case__title { font-size: 15px; margin-bottom: 2px; }
.lp-case__meta { font-size: 12px; color: #666; margin-bottom: 6px; }
.lp-case__list { font-size: 13px; margin: 0; padding-left: 1em; }

/* ---------------------------------------
   講師プロフィール（最適化）
--------------------------------------- */
.lp-lecturer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lp-lecturer__image {
  flex: 0 0 180px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  overflow: hidden;
  background: #f1f3f8;
}
.lp-lecturer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-lecturer__name { font-size: 18px; margin-bottom: 4px; }
.lp-lecturer__position { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.lp-lecturer__text { font-size: 14px; margin-bottom: 10px; }
.lp-lecturer__motto { font-size: 14px; margin: 0; }

/* ---------------------------------------
   アイキャッチ画像
--------------------------------------- */
img.eyecatch,
.eyecatch img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 12px;
}

/* ---------------------------------------
   SP Navigation (PC非表示)
--------------------------------------- */
/* PCではnavを消す */
@media (min-width: 769px) {
  .nav, .hamburger { display: none !important; }
}

/* SP */
@media (max-width: 768px) {
  .hamburger {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 32px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 999;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: .25s;
  }

  /* ナビ本体 */
  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 70%;
    background: #fff;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    z-index: 998;
  }
  .nav.open { display: flex; }

  /* ハンバーガー変形 */
  .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

/* ---------------------------------------
   Application Form
--------------------------------------- */
.lp-section--entry {
  background: #f7f7f9;
}
.lp-section--entry .lp-section__lead {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 14px;
}

.lp-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 18px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.lp-form__row { margin-bottom: 14px; }
.lp-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.lp-form__required {
  padding: 1px 6px;
  background: #ffeff0;
  color: #d64747;
  font-size: 11px;
  border-radius: 999px;
  margin-left: 6px;
}

.lp-form__control {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
}
.lp-form__control:focus {
  border-color: #0073e6;
  box-shadow: 0 0 0 1px rgba(0,115,230,.18);
  outline: none;
}

.lp-form__control--textarea { min-height: 120px; resize: vertical; }

.lp-form__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.lp-form__option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.lp-form__row--agree {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed #e0e3ea;
}

.lp-form__actions {
  text-align: center;
  margin-top: 18px;
}
.lp-form__submit {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff8a00, #ff4b2b);
  color: #fff;
  cursor: pointer;
  transition: .08s ease;
}
.lp-form__submit:hover {
  opacity: .95;
  transform: translateY(1px);
}


/* スマホ時はカラムを1列に */
@media (max-width: 768px) {
  .lp-columns--3,
  .lp-columns--2 {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   スマホ時は全カラムを1列に
============================== */
@media (max-width: 768px) {
  .lp-columns--3,
  .lp-columns--2 {
    grid-template-columns: 1fr !important;
  }
}

/* ==============================
   講師プロフィール：スマホでは縦並び
============================== */
@media (max-width: 768px) {
  .lp-lecturer {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .lp-lecturer__image {
    margin: 0 auto 16px !important;
  }

  .lp-lecturer__profile {
    width: 100%;
    text-align: left; /* 左揃えにしたければ left / 中央なら center に */
  }
}
