/* ==========================================
   Design Tokens
   ========================================== */

:root {
  --color-primary: #2b6cff;
  --color-primary-dark: #1a4fd6;
  --color-primary-light: #eaf0ff;

  --color-accent: #ff7a45;
  --color-accent-dark: #f0592a;
  --color-accent-light: #fff1e8;
  --color-accent-gradient: linear-gradient(135deg, #ff8a5b 0%, #ff5c8a 100%);

  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fc;
  --color-bg-dark: #12162a;

  --color-text: #1f2430;
  --color-text-light: #5b6572;
  --color-text-inverse: #f4f6fb;

  --color-border: #e6e9ef;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(18, 22, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 22, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(18, 22, 42, 0.12);

  --container-width: 1120px;
}

/* ==========================================
   Reset
   ========================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease, color 0.15s ease;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only {
  display: none;
}

/* ==========================================
   Header / Navigation
   ========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-header .logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
  white-space: nowrap;
}

.site-header .logo span {
  color: var(--color-primary);
}

.site-header .logo .logo-sub {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.global-nav a {
  display: inline-block;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.global-nav a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.global-nav a[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-primary-light);
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--color-accent-gradient);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 92, 138, 0.35);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--color-border);
  color: var(--color-text);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-invert {
  border-color: rgba(244, 246, 251, 0.4);
  color: #fff;
  background: transparent;
}

.btn-outline-invert:hover {
  border-color: #fff;
  background: rgba(244, 246, 251, 0.1);
}

/* ==========================================
   Main / Sections
   ========================================== */

main {
  min-height: 60vh;
}

.section {
  padding: 96px 0;
}

.section + .section {
  border-top: 1px solid var(--color-border);
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.section-desc {
  color: var(--color-text-light);
}

.lead {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* ==========================================
   Hero
   ========================================== */

.hero {
  padding: 140px 0 100px;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.15) 68%, rgba(255, 255, 255, 0) 78%),
    url('../images/hero-top.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--color-border);
}

.hero-inner {
  max-width: 620px;
}

.hero .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero h1 .accent {
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  max-width: 560px;
  margin-bottom: 12px;
}

.hero-subcopy {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.hero .hero-actions {
  justify-content: flex-start;
}

.hero .hero-stats {
  justify-content: flex-start;
}

.hero-sub {
  padding: 64px 0;
  text-align: center;
}

.hero-sub h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.hero-stats .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.hero-stats .stat-num.is-text {
  font-size: 1.2rem;
}

.hero-stats .stat-num span {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 2px;
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.site-intro {
  padding: 56px 0;
  text-align: center;
}

.site-intro .intro-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-text-light);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

/* ==========================================
   Cards
   ========================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.card p {
  color: var(--color-text-light);
}

.card-pillar {
  display: flex;
  flex-direction: column;
}

.pillar-audience {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.card-pillar h3 {
  margin-bottom: 10px;
}

.card-pillar p:not(.pillar-audience) {
  flex: 1;
  margin-bottom: 20px;
}

.card-pillar .btn {
  align-self: flex-start;
}

/* ==========================================
   Training Program Feature
   ========================================== */

.program-feature {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 56px;
}

.section-title.is-sub {
  font-size: 1.4rem;
}

.program-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin: 48px 0 20px;
}

.program-block-title:first-of-type {
  margin-top: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
}

.price-card.is-featured {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.price-card .plan-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.price-card .plan-cap {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.price-card .plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.price-card .plan-resit {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.price-card .plan-price span {
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 2px;
}

.price-card .plan-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0;
}

.price-card .plan-features {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.price-card .plan-features li {
  padding: 4px 0;
  border-top: 1px solid var(--color-border);
}

.price-card .plan-features li:first-child {
  border-top: none;
}

.price-card .plan-highlight {
  margin: 16px 0 0;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.program-note {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ==========================================
   Instructor
   ========================================== */

.instructor-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.training-head {
  max-width: none;
  padding: 64px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(20, 20, 30, 0.65), rgba(20, 20, 30, 0.65)),
    url('../images/training-photo-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.training-head .section-title,
.training-head .section-desc,
.training-head .eyebrow {
  color: #fff;
}

.instructor-photo {
  flex: none;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.instructor-card.is-large .instructor-photo {
  width: 220px;
  height: 220px;
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.instructor-title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.instructor-body p {
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.instructor-body p:last-child {
  margin-bottom: 0;
}

.more-link {
  margin-top: 16px;
  text-align: center;
}

.more-link a {
  font-weight: 700;
  color: var(--color-primary);
}

.more-link a:hover {
  opacity: 0.7;
}

/* ==========================================
   News list
   ========================================== */

.news-list li {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.news-list time {
  flex: none;
  width: 110px;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ==========================================
   Seminar schedule
   ========================================== */

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

.schedule-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schedule-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.schedule-date {
  flex: none;
  width: 100px;
  height: 84px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.schedule-date.is-oneday {
  background: #eef9d8;
  color: #6b9b0f;
}

.schedule-date .month {
  font-size: 0.8rem;
  font-weight: 700;
}

.schedule-date .day {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.schedule-date .weekday {
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 1px;
}

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

.schedule-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}

.tag-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.tag-open {
  background: #eef9d8;
  color: #6b9b0f;
}

.schedule-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.schedule-body p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.schedule-action {
  flex: none;
}

@media (max-width: 640px) {
  .schedule-card {
    flex-wrap: wrap;
  }

  .schedule-action {
    width: 100%;
  }

  .schedule-action .btn {
    width: 100%;
  }
}

/* ==========================================
   Seminar history (開催実績)
   ========================================== */

.history-details {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.history-details summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--color-primary);
  list-style: none;
}

.history-details summary::-webkit-details-marker {
  display: none;
}

.history-details .chevron {
  display: inline-block;
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

.history-details[open] .chevron {
  transform: rotate(180deg);
}

.history-body {
  margin-top: 24px;
}

.history-year {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 28px 0 8px;
}

.history-year:first-child {
  margin-top: 0;
}

.history-list {
  display: flex;
  flex-direction: column;
}

.history-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex-wrap: wrap;
}

.history-list .round {
  flex: none;
  width: 60px;
  font-weight: 700;
  color: var(--color-text);
}

.history-list .date {
  flex: none;
  width: 52px;
  font-weight: 700;
  color: var(--color-primary);
}

.history-list .place {
  flex: 1;
  min-width: 200px;
}

/* ==========================================
   Case studies (AI活用事例)
   ========================================== */

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.case-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.case-card h3 {
  font-size: 1.1rem;
  margin: 12px 0 16px;
}

.case-row {
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
}

.case-row:first-of-type {
  border-top: none;
}

.case-row .case-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.case-row.result .case-label {
  color: var(--color-accent-dark);
}

/* ==========================================
   Testimonials (参加者の声)
   ========================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote-mark {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card p.quote {
  color: var(--color-text);
  margin-bottom: 20px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  flex: none;
}

.testimonial-person .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-person .role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ==========================================
   Reasons（選ばれる理由）
   ========================================== */

.reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.reason-card {
  text-align: center;
  padding: 8px;
}

.reason-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-accent-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

.reason-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.reason-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ==========================================
   Numbered steps (導入の流れ)
   ========================================== */

.step-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step-list li {
  counter-increment: step;
  position: relative;
  padding: 32px 24px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-list li strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-list li p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ==========================================
   Table（会社概要）
   ========================================== */

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.company-table th,
.company-table td {
  text-align: left;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  width: 200px;
  white-space: nowrap;
  background: var(--color-bg-alt);
  font-weight: 700;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  margin-top: 24px;
}

/* ==========================================
   CTA band
   ========================================== */

.cta-band {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  text-align: center;
}

.cta-band .section-title {
  color: #fff;
}

.cta-band .section-desc {
  color: rgba(244, 246, 251, 0.7);
}

/* ==========================================
   Footer
   ========================================== */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 56px 0 28px;
  background: var(--color-bg-alt);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand p.logo {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ==========================================
   LINE Stamp page
   ========================================== */

.stamp-intro {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.stamp-intro-photo {
  flex: none;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stamp-intro-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.stamp-intro-body h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.stamp-intro-body p {
  color: var(--color-text-light);
}

.stamp-sample-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.stamp-sample-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.stamp-sample-caption {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: 20px;
}

.stamp-flyer-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.stamp-flyer-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  background: var(--color-accent-gradient);
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.promo-banner .promo-tag {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
}

.promo-banner .promo-price {
  font-size: 1.3rem;
}

.promo-banner .promo-price span {
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 2px;
}

@media (max-width: 640px) {
  .stamp-intro {
    flex-direction: column;
    padding: 28px;
  }

  .stamp-intro-photo {
    width: 160px;
  }
}

/* ==========================================
   Mobile sticky CTA bar
   ========================================== */

.mobile-cta-bar {
  display: none;
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(18, 22, 42, 0.08);
  }

  .mobile-cta-bar .btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  body {
    padding-bottom: 68px;
  }

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

  .price-card .plan-features,
  .price-card .plan-desc {
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

  .global-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
  }

  .global-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .global-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
  }

  .global-nav a {
    padding: 14px 16px;
  }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
    background:
      radial-gradient(circle at 15% 20%, rgba(43, 108, 255, 0.14), transparent 45%),
      radial-gradient(circle at 85% 0%, rgba(255, 122, 69, 0.16), transparent 45%),
      var(--color-bg);
  }

  .hero-inner {
    max-width: none;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-actions,
  .hero .hero-stats {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .section {
    padding: 64px 0;
  }

  .footer-top {
    flex-direction: column;
  }

  .company-table th {
    width: 120px;
    padding: 16px;
  }

  .instructor-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .instructor-card .instructor-photo,
  .instructor-card.is-large .instructor-photo {
    width: 160px;
    height: 160px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .schedule-card {
    padding: 20px;
    gap: 16px;
  }

  .schedule-date {
    width: 76px;
    height: 64px;
  }

  .schedule-date .day {
    font-size: 1.3rem;
  }

  .schedule-date .weekday {
    font-size: 0.7rem;
  }

  .sp-only {
    display: inline;
  }
}

/* ==========================================
   Video showcase（サムネイル → クリックで再生）
   ========================================== */

[hidden] {
  display: none !important;
}

.video-showcase {
  background: var(--color-primary-light);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe,
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  display: block;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  border-radius: 50%;
  background: var(--color-accent-gradient);
  box-shadow: 0 8px 24px rgba(255, 92, 138, 0.45);
  transition: transform 0.15s ease;
}

.video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}

.video-thumb:hover .video-play,
.video-thumb:focus-visible .video-play {
  transform: scale(1.1);
}

.video-thumb:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: -3px;
}

.video-body {
  padding: 24px 28px 28px;
}

.video-body h3 {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.video-body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

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

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-body {
    padding: 20px 20px 24px;
  }

  .video-play {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
  }

  .video-cta {
    margin-top: 32px;
  }

  .video-cta .btn {
    width: 100%;
    padding: 16px 20px;
    line-height: 1.5;
    text-align: center;
  }
}

/* ==========================================
   Top page restructure（お悩み / AI×PR / 段階セミナー / 実績 / FAQ）
   ========================================== */

/* 「要確認」の仮枠。公開前に内容を差し替える */
.tbd {
  border: 2px dashed #e0a800;
  background: #fff8e1;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #6b5200;
  font-size: 0.9rem;
  line-height: 1.8;
}

.tbd-label {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 10px;
  border-radius: 999px;
  background: #e0a800;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: 1px;
}

.block-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 12px;
}

.block-desc {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--color-text-light);
}

/* お悩み */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1072px;
  margin: 0 auto 40px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}

.problem-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}

.problem-q::before {
  content: "?";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.problem-card p:not(.problem-q) {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.problem-answer {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
}

.problem-answer .accent {
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* AI×PRの強み */
.strength-block + .strength-block {
  margin-top: 72px;
}

.video-panel {
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
}

.video-panel .block-desc {
  margin-bottom: 40px;
}

.stamp-panel {
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}

.stamp-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.stamp-gallery.is-3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stamp-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: var(--shadow-sm);
}

.stamp-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.stamp-note {
  margin-top: -16px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* 1DAYセミナー：段階表示 */
.seminar-steps {
  gap: 48px;
}

.step-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 14px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.seminar-steps .price-card {
  position: relative;
  background: #fff;
}

.seminar-lead {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--color-text-light);
}

.schedule-heading {
  margin: 64px 0 24px;
}

/* 講演実績・代表作 */
.record-list {
  max-width: 760px;
  margin: 0 auto 32px;
}

.record-list li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.record-date {
  flex: 0 0 120px;
  font-weight: 700;
  color: var(--color-primary);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-grid .tbd {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  text-align: center;
}

.instructor-block {
  margin-top: 64px;
}

/* 企業研修：料金・助成金の仮枠 */
.training-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.training-info h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.training-bridge {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 20px 28px;
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* よくある質問 */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  padding: 18px 56px 18px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  margin-right: 12px;
  color: var(--color-primary);
  font-weight: 800;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-a {
  padding: 0 24px 20px 52px;
  color: var(--color-text-light);
}

/* LINEスタンプ制作ページ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-grid .card {
  padding: 28px 24px;
}

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

.stamp-features img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.stamp-plan-list {
  text-align: left;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
}

.stamp-plan-list li::before {
  content: "\2713";
  margin-right: 6px;
  color: var(--color-primary);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.info-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

@media (min-width: 769px) {
  .seminar-steps .price-card:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
  }
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .problem-grid,
  .training-info,
  .info-grid,
  .stamp-features {
    grid-template-columns: 1fr;
  }

  .stamp-features {
    gap: 24px;
  }

  .stamp-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .video-panel,
  .stamp-panel {
    padding: 36px 16px;
  }

  .strength-block + .strength-block {
    margin-top: 48px;
  }

  .block-title {
    font-size: 1.25rem;
  }

  .work-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .seminar-steps {
    gap: 24px;
  }

  .seminar-steps .price-card:not(:last-child)::after {
    content: "\2193";
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
  }

  .record-list li {
    flex-direction: column;
    gap: 2px;
  }

  .record-date {
    flex: none;
  }

  .faq-a {
    padding-left: 24px;
  }

  .schedule-heading {
    margin-top: 48px;
  }
}

.hero-catch {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .hero-catch {
    font-size: 1.3rem;
  }
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-stack .card {
  padding: 22px 24px;
}

.feature-stack .card-icon {
  margin-bottom: 12px;
}

.instructor-block .block-title {
  margin-bottom: 24px;
}

.instructor-block .block-desc {
  margin-top: -12px;
}

.portrait-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.portrait-card img {
  height: auto;
}

@media (max-width: 768px) {
  .program-feature {
    padding: 32px 16px;
  }

  .problem-card {
    padding: 22px 18px;
  }

  .problem-q {
    font-size: 0.95rem;
    gap: 10px;
  }

  .problem-q::before {
    width: 26px;
    height: 26px;
  }

  .problem-answer {
    font-size: 1.1rem;
  }

  .training-bridge {
    padding: 16px 20px;
  }
}

.training-price {
  margin-bottom: 8px;
  font-weight: 700;
}

.training-price strong {
  margin-left: 4px;
  font-size: 1.6rem;
  color: var(--color-primary);
}

.training-info .card p:last-child {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.stamp-status {
  margin-top: 16px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent-dark);
}

.record-list li strong {
  color: var(--color-text);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 8px auto 12px;
}

.photo-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.photo-caption {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .photo-grid {
    gap: 8px;
  }
}

.work-grid .video-card {
  box-shadow: var(--shadow-md);
}

.work-grid .video-body {
  padding: 20px 22px 24px;
}

.work-grid .video-body h3 {
  font-size: 1.05rem;
}

.work-grid .tbd.work-empty {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 0;
  border-width: 0 0 2px;
}

.work-more {
  margin: 32px 0 16px;
  text-align: center;
  color: var(--color-text-light);
}

.photo-figure {
  max-width: 820px;
  margin: 0 auto 48px;
}

.photo-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.photo-figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .photo-figure {
    margin-bottom: 32px;
  }
}

.company-table td a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-table td a:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

/* 開催地マップ */
.venue-block {
  margin: 56px 0 40px;
}

.venue-body {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.venue-map {
  margin: 0;
}

.venue-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.venue-map path {
  fill: #dfe6f3;
  stroke: #fff;
  stroke-width: 1;
  stroke-linejoin: round;
}

.venue-map path.on {
  fill: var(--color-primary);
}

.venue-map text {
  fill: #fff;
  font-size: 13px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.venue-map figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.venue-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 3px;
  background: var(--color-primary);
  vertical-align: -1px;
}

.venue-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venue-chips li {
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.venue-chips li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* 企業研修の5ステップ：PCは5つ横並び、タブレット・スマホは縦並び */
.step-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step-cards .card {
  padding: 22px 16px;
}

.step-cards .card-icon {
  margin-bottom: 14px;
}

.step-cards .card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

.step-cards .card p {
  font-size: 0.85rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .step-cards {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-cards .card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    padding: 20px;
  }

  .step-cards .card-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step-cards .card h3 {
    margin-bottom: 4px;
  }
}

@media (max-width: 768px) {
  .venue-block {
    margin: 40px 0 32px;
  }

  .venue-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .venue-map {
    max-width: 380px;
    margin: 0 auto;
  }

  .venue-chips {
    justify-content: center;
  }
}

/* 開催地：番号付きのピン */
.venue-map .pin circle {
  fill: var(--color-accent);
  stroke: #fff;
  stroke-width: 2.5;
}

.venue-map .pin text {
  fill: #fff;
  font-size: 12px;
  font-weight: 800;
}

.venue-chips li::before {
  display: none;
}

.venue-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  vertical-align: 1px;
}

.venue-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px 0 6px;
  border-radius: 50%;
  background: var(--color-accent);
  vertical-align: -1px;
}

@media (max-width: 768px) {
  .venue-map {
    max-width: 440px;
  }

  .venue-map svg text {
    font-size: 15px;
  }

  .venue-map .pin circle {
    r: 13px;
  }

  .venue-map .pin text {
    font-size: 14px;
  }
}
