@charset "UTF-8";

/* =========================
   Seminar2 Hero
========================= */
.seminar2-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  background:
    url("../smn_img/ココナッツ講習会FV3.png") center center / cover no-repeat;
}

.seminar2-hero .hero-copy .title {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.28;
  margin-bottom: 20px;
  color: var(--white);
}

.seminar2-hero .hero-copy .text {
  max-width: 520px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
   Concept
========================= */
.seminar2-concept {
  background: var(--white);
}

.seminar2-concept .lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 16px;
  color: var(--black);
}

.seminar2-concept .text {
  margin-bottom: 24px;
}

.concept-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.concept-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.concept-checks li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7.5 13.5L4 10l-1.4 1.4L7.5 16.3l9-9L15.1 5.9z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================
   Background
========================= */
.seminar2-background {
  background: var(--soft);
}

.background-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.background-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* =========================
   Problems
========================= */
.seminar2-problems {
  background: var(--white);
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.problem-list li::before {
  content: '・';
  color: var(--navy);
  font-size: 1.4em;
  flex-shrink: 0;
}

.problem-resolve {
  padding: 24px 28px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.9;
}

.problem-resolve strong {
  color: var(--navy);
  font-weight: 700;
}

/* =========================
   Results
========================= */
.seminar2-results {
  background: var(--soft);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.results-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 28px;
  border-top: 3px solid var(--navy);
}

.results-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.results-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--darkgray);
}

.results-list li::before {
  content: '▶';
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
}

.results-highlight {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.results-highlight-num {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--gold);
}

.results-highlight-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.results-highlight p {
  width: 100%;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.results-reason {
  font-size: 15px;
  line-height: 1.9;
  color: var(--darkgray);
}

/* =========================
   Effects
========================= */
.seminar2-effects {
  background: var(--white);
}

.effects-chain {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
  max-width: 480px;
}

.effects-item {
  padding: 14px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  width: 100%;
}

.effects-item--accent {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-weight: 700;
}

.effects-arrow {
  padding: 4px 24px;
  font-size: 18px;
  color: var(--gold);
}

.effects-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.effects-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.effects-list li::before {
  content: '・';
  color: var(--navy);
}

.effects-summary {
  margin-top: 8px;
}

.effects-summary strong {
  color: var(--navy);
}

.effects-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.effects-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}


/* =========================
   Schedule
========================= */
.seminar2-schedule {
  background: var(--soft);
}

.schedule-note {
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #fff8f0;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.schedule-note p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--darkgray);
}

.schedule-note p + p {
  margin-top: 6px;
}

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

.schedule-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.schedule-time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 20px 20px;
  background: var(--navy);
}

.schedule-time .time {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.schedule-time .label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

.schedule-content {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--darkgray);
}

.schedule-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.schedule-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-content ul li::before {
  content: '・';
  color: var(--gold);
  flex-shrink: 0;
}

/* =========================
   Pricing
========================= */
.seminar2-pricing {
  background: var(--white);
}

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

.pricing-base {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.pricing-base-label {
  font-size: 13px;
  color: var(--darkgray);
  font-weight: 500;
}

.pricing-base-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.pricing-base-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--darkgray);
}

.pricing-base-unit {
  font-size: 14px;
  color: var(--darkgray);
}

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

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  background: var(--soft);
}

.pricing-card--featured {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(10,29,87,0.08);
  position: relative;
}

.pricing-card--featured::before {
  content: '人気';
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.08em;
}

.pricing-card .pricing-num {
  font-size: 12px;
  color: var(--darkgray);
  margin-bottom: 6px;
}

.pricing-card .pricing-amount {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-card .pricing-amount span {
  font-size: 14px;
  font-weight: 400;
}

.pricing-card .pricing-tax {
  font-size: 11px;
  color: var(--darkgray);
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--line);
}

.pricing-detail-row:last-child {
  border-bottom: none;
}

.pricing-detail-row dt {
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--soft);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
}

.pricing-detail-row dd {
  padding: 18px 24px;
  margin: 0;
}

.pricing-detail-row dd p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--darkgray);
  margin: 0;
}

.pricing-detail-row dd p + p {
  margin-top: 6px;
}

.pricing-detail-row dd strong {
  color: var(--black);
  font-weight: 700;
}

/* =========================
   Profile
========================= */
.seminar2-profile {
  background: var(--soft);
}

.profile-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.profile-name {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.profile-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.profile-tags li {
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 500;
}

.profile-tags--sub li {
  border-color: var(--line);
  color: var(--darkgray);
  font-weight: 400;
}

.profile-text {
  margin-top: 20px;
}

/* =========================
   FAQ
========================= */
.seminar2-faq {
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-q::before {
  content: 'Q.';
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-a {
  font-size: 14px;
  line-height: 1.9;
  color: var(--darkgray);
  padding-left: 26px;
}

/* =========================
   CTA
========================= */
.seminar2-cta {
  background: var(--soft);
}

.seminar2-cta .cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  text-align: center;
}

.seminar2-cta .cta-box h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.seminar2-cta .cta-box p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--darkgray);
  margin-bottom: 28px;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {
  .seminar2-hero {
    padding: 96px 0 90px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .effects-list {
    grid-template-columns: 1fr;
  }

  .profile-inner {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}