:root {
  --blue: #1A8FFF;
  --blue-dark: #0070E0;
  --blue-light: #E6F3FF;
  --blue-pale: #F0F8FF;
  --teal: #00C6AE;
  --teal-light: #E0FAF7;
  --orange: #FF7B2F;
  --orange-light: #FFF0E6;
  --yellow: #FFD600;
  --yellow-light: #FFFBE6;
  --pink: #FF5FA0;
  --pink-light: #FFF0F6;
  --purple: #9B5CF6;
  --purple-light: #F3EEFF;
  --text: #1C2340;
  --text-mid: #4A5270;
  --text-light: #8A90A8;
  --bg: #FFFFFF;
  --bg-light: #F7FAFF;
  --border: #E0E8F4;
  --shadow-sm: 0 2px 14px rgba(26, 143, 255, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 143, 255, 0.13);
  --shadow-lg: 0 16px 56px rgba(26, 143, 255, 0.17);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
}

/*
a {
  color: inherit;
  text-decoration: none;
}
*/

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% {
    transform: scale(.85);
    opacity: 0;
  }

  70% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes wave {

  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

/* ===== NAV ===== */
.nav {
  background: #fff;
  border-bottom: 2px solid var(--blue-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 900;
  color: var(--blue);
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 100px;
  box-shadow: 0 3px 14px rgba(26, 143, 255, .35);
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
/* 2026.4.7 削除 byタゴウ
.hero {
  background: linear-gradient(160deg, #EAF5FF 0%, #F0FBFA 50%, #FFF5EE 100%);
  padding: 72px 28px 80px;
  position: relative;
  overflow: hidden;
}*/

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .5;
}

.deco-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #C5E8FF, transparent 70%);
  top: -120px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}

.deco-b {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #C0FAF4, transparent 70%);
  bottom: -60px;
  left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

.deco-c {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #FFE0CC, transparent 70%);
  top: 40%;
  right: 8%;
  animation: float 7s ease-in-out infinite 2s;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--blue-light);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  animation: pop .6s ease both;
}

.badge-star {
  font-size: 14px;
  animation: wave 2s ease-in-out infinite;
  display: inline-block;
}

.hero-title {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  animation: fadeUp .7s ease .1s both;
}

.hl-blue {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hl-blue::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 4px;
}

.hl-orange {
  color: var(--orange);
}

.hero-sub {
  font-size: 15px;
  color: var(--text-mid);
  /* max-width: 520px; 削除 2026.4.7 byタゴウ*/
  line-height: 1.9;
  margin-bottom: 32px;
  animation: fadeUp .7s ease .2s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp .7s ease .3s both;
}

.hero-stat {
  background: #fff;
  border: 2px solid var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  font-size: 20px;
}

.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .7s ease .4s both;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), #FF4F8B);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(255, 123, 47, .4);
  transition: transform .15s, box-shadow .2s;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 123, 47, .5);
}

.btn-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .15s;
}

.btn-sub:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* hero illustration */
.hero-illus {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.illus-screen {
  width: 200px;
  height: 140px;
  background: linear-gradient(145deg, #1A8FFF, #00C6AE);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 12px 40px rgba(26, 143, 255, .3);
  overflow: hidden;
}

.illus-screen::before {
  content: 'AI';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 52px;
  font-weight: 900;
  color: rgba(255, 255, 255, .25);
  letter-spacing: -.02em;
}

.illus-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.illus-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.illus-dot:nth-child(1) {
  background: var(--blue);
  animation: pop 1.2s ease .2s both;
}

.illus-dot:nth-child(2) {
  background: var(--teal);
  animation: pop 1.2s ease .4s both;
}

.illus-dot:nth-child(3) {
  background: var(--orange);
  animation: pop 1.2s ease .6s both;
}

.illus-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.illus-chip {
  background: #fff;
  border-radius: 20px;
  padding: 5px 12px;
  /*  font-size: 11px; 2026.4.7 修正 byタゴウ*/
  font-size: 1em;
  font-weight: 700;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.illus-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== TRUST BAR ===== */
.trust {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.trust-check {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 80px 28px;
}

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

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 44px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-title .accent {
  color: var(--blue);
}

.underline-deco {
  display: inline-block;
  position: relative;
}

.underline-deco::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 4px;
}

.section-lead {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.9;
}

.wave-divider {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  margin: 14px 0 18px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.about-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.about-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.about-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--teal), var(--purple));
}

.about-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.about-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.about-card:nth-child(1) .about-num {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.about-card:nth-child(2) .about-num {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.about-card:nth-child(3) .about-num {
  background: linear-gradient(135deg, var(--teal), var(--purple));
}

.about-card:nth-child(4) .about-num {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.about-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-content p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== CURRICULUM ===== */
.curr-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.curr-meta-chip {
  background: #fff;
  border: 2px solid var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.chip-icon {
  font-size: 22px;
}

.chip-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.chip-lbl {
  font-size: 11px;
  color: var(--text-light);
}

.chapter-block {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chapter-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
}

.ch1 .chapter-header {
  background: linear-gradient(90deg, #FFF3EE, #FFF8F6);
}

.ch2 .chapter-header {
  background: linear-gradient(90deg, #EEF5FF, #F4F9FF);
}

.ch3 .chapter-header {
  background: linear-gradient(90deg, #E8FAF7, #F0FDFB);
}

.ch4 .chapter-header {
  background: linear-gradient(90deg, #FFFBE6, #FFFDF5);
}

.ch5 .chapter-header {
  background: linear-gradient(90deg, #F5EEFF, #FAF5FF);
}

.ch-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.ch1 .ch-badge {
  background: linear-gradient(135deg, var(--orange), #FF4F8B);
}

.ch2 .ch-badge {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.ch3 .ch-badge {
  background: linear-gradient(135deg, var(--teal), #00A896);
}

.ch4 .ch-badge {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.ch5 .ch-badge {
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.ch-header-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chapter-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ch-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 560px;
}

.ch-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  color: #fff;
}

.ch1 .ch-count {
  background: var(--orange);
}

.ch2 .ch-count {
  background: var(--blue);
}

.ch3 .ch-count {
  background: var(--teal);
}

.ch4 .ch-count {
  background: #D4920A;
}

.ch5 .ch-count {
  background: var(--purple);
}

.lecture-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.lecture-table tr {
  border-bottom: 1px solid #F0F4FA;
  transition: background .15s;
}

.lecture-table tr:last-child {
  border-bottom: none;
}

.lecture-table tr:hover {
  background: var(--bg-light);
}

.lecture-table td {
  padding: 13px 16px;
  font-size: 13px;
}

.td-no {
  width: 52px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}

.ch1 .td-no {
  color: var(--orange);
}

.ch2 .td-no {
  color: var(--blue);
}

.ch3 .td-no {
  color: var(--teal);
}

.ch4 .td-no {
  color: #D4920A;
}

.ch5 .td-no {
  color: var(--purple);
}

.td-title {
  color: var(--text);
}

.td-time {
  width: 72px;
  text-align: right;
  padding-right: 20px;
  font-size: 12px;
  color: var(--text-light);
  white-space: nowrap;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.f-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.f1 .f-icon {
  background: var(--blue-light);
}

.f2 .f-icon {
  background: var(--teal-light);
}

.f3 .f-icon {
  background: var(--orange-light);
}

.f4 .f-icon {
  background: var(--yellow-light);
}

.f5 .f-icon {
  background: var(--pink-light);
}

.f6 .f-icon {
  background: var(--purple-light);
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}

.f-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.f1 .f-tag {
  background: var(--blue-light);
  color: var(--blue);
}

.f2 .f-tag {
  background: var(--teal-light);
  color: var(--teal);
}

.f3 .f-tag {
  background: var(--orange-light);
  color: var(--orange);
}

.f4 .f-tag {
  background: var(--yellow-light);
  color: #A07800;
}

.f5 .f-tag {
  background: var(--pink-light);
  color: var(--pink);
}

.f6 .f-tag {
  background: var(--purple-light);
  color: var(--purple);
}

/* ===== TARGET ===== */
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.target-panel {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}

.target-head {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-recommend .target-head {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  color: #fff;
}

.tp-skills .target-head {
  background: linear-gradient(90deg, var(--orange), #FF4F8B);
  color: #fff;
}

.target-head-icon {
  font-size: 20px;
}

.target-list {
  list-style: none;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.target-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}

.target-list li:hover {
  background: var(--bg-light);
}

.t-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tp-recommend .t-dot {
  background: var(--blue-light);
  color: var(--blue);
}

.tp-skills .t-dot {
  background: var(--orange-light);
  color: var(--orange);
}

/* ===== CTA ===== */
.cta-wrap {
  background: linear-gradient(135deg, #EAF5FF 0%, #E8FBF8 50%, #FFF5EE 100%);
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: .5;
}

.cb1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(#C5E8FF, transparent 70%);
  top: -80px;
  left: -80px;
}

.cb2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(#FFD9C5, transparent 70%);
  bottom: -60px;
  right: -60px;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-emoji {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
  animation: wave 2s ease-in-out infinite;
}

.cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-title .hl {
  color: var(--blue);
}

.cta-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.9;
}

.cta-price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 24px 52px;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
}

.p-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .1em;
}

.p-value {
  font-size: 44px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  /*  color: rgba(255, 255, 255, .5); 2026.4.7 削除 byタゴウ*/
  padding: 28px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer p {
  font-size: 12px;
}

footer .hl {
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 834px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  /* 2026.4.7 削除 byタゴウ
  .hero-illus {
    display: none;
  }*/

  .section {
    padding: 56px 20px;
  }

  .about-grid,
  .features-grid,
  .target-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}



/* タゴウ改修 ****************************/

/*** Display ***/
.dsp-none {
  display: none !important;
}


/* フレックスイメージ */
img {
  width: 100%;
  height: auto;
}


/* PC SP切り替え */
.pc {
  display: flex;
}

@media print,
screen and (max-width: 834px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}

@media print,
screen and (max-width: 1080px) {
  .tb {
    display: block;
  }
}

.tb_only {
  display: none;
}

@media print,
screen and (max-width: 1080px) {
  .tb_only {
    display: block;
  }
}

@media print,
screen and (max-width: 640px) {
  .tb_only {
    display: none;
  }
}

.sp {
  display: none;
}

@media print,
screen and (max-width: 834px) {
  .sp {
    display: block;
  }
}


/* テキストリンク */
a {
  cursor: pointer;
  text-decoration: none;
}


/* ヘッダー */
@media screen and (max-width: 834px) {
  .hamburger-menu {
    display: block;
  }

  .header__nav {
    display: none;
  }

  .header__nav.is-active {
    display: block;
  }
}

.header {
  width: 100%;
  z-index: 10;
  position: fixed;
  background: hsla(0, 0%, 100%, .9);
}

.header .cta-btn {
  padding: 10px 24px;
  font-size: 16px;
  margin: 0;
}

.header .header__logo {
  width: 171px;
  height: 62px;
}

@media print,
screen and (max-width: 834px) {
  .header .header__logo {
    width: 120px;
    height: 42px;
  }
}

@media print,
screen and (max-width: 834px) {
  .header__nav {
    padding: 24px;
    position: fixed;
    top: 58px;
    right: 0;
    background: hsla(0, 0%, 100%, .9803921569);
    border-radius: 24px;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  gap: 24px;
}

.header__container ul {
  list-style: none;
}

@media print,
screen and (max-width: 834px) {
  .header__container {
    padding: 8px 8px;
  }
}

.header__menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header__menu a:not(.cta-btn) {
  color: #000;
}

.header__menu a.active {
  color: #3192ba;
  font-weight: 600;
}

@media print,
screen and (max-width: 834px) {
  .header__menu {
    flex-direction: column;
  }

  .header__menu li:last-child {
    display: none;
  }
}


/* ヒーロー */
.hero {
  background: linear-gradient(160deg, #EAF5FF 0%, #F0FBFA 50%, #FFF5EE 100%);
  padding: 160px 80px 64px;
  height: auto;
  position: relative;
  overflow: hidden;
}

@media print,
screen and (max-width: 1080px) {
  .hero {
    padding: 160px 0 110px 80px;
    background-position: 20% center;
  }
}

@media print,
screen and (max-width: 640px) {
  .hero {
    padding: 0;
    height: auto;
  }
}

.hero__text {
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.logo {
  width: 170px;
  top: 32px;
  left: 50px;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}

@media print,
screen and (max-width: 640px) {
  .logo {
    top: 16px;
    left: 16px;
    width: 45.33vw;
  }
}

@media print,
screen and (max-width: 640px) {
  .hero__content {
    padding: 56vw 4.27vw 4.27vw;
    width: 100%;
  }
}

.hero__accent {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 0 4px;
  font-size: 74px !important;
  background: linear-gradient(83deg, #3296be 46.7%, #98cbdf 95.43%);
}

@media print,
screen and (max-width: 640px) {
  .hero__accent {
    font-size: 13.87vw !important;
  }
}

.hero__title {
  margin-top: 16px;
  margin-bottom: 20px;
  animation: fadeUp .7s ease .1s both;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.02em;
}

@media print,
screen and (max-width: 640px) {
  .hero__title {
    margin-top: 4.27vw;
  }
}

.hero__title-sub {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}

@media print,
screen and (max-width: 640px) {
  .hero__title-sub {
    font-size: 4.27vw;
  }
}

.hero__stats {
  display: flex;
  gap: 24px;
}

.hero__description {
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  margin-top: 24px;
}

@media print,
screen and (max-width: 640px) {
  .hero__description {
    font-size: clamp(14px, 3.73vw, 24px);
    margin-top: 4.27vw;
  }
}

@media print,
screen and (max-width: 1080px) {

  .expert-foundation-lp .hero {
    padding: 0;
  }
}

@media print,
screen and (max-width: 640px) {

  .expert-foundation-lp .hero__title {
    /*font-size: 11.2vw;*/
    font-size: 7vw;
  }
}

@media print,
screen and (max-width: 1080px) {

  .expert-foundation-lp .hero__content {
    margin-top: -40vw;
    z-index: 1;
    background: #fff;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media print,
screen and (max-width: 640px) {

  .expert-foundation-lp .hero__content {
    padding: 6.4vw 4.27vw;
  }
}

.expert-foundation-lp .hero__container {
  display: flex;
  gap: 80px;
  justify-content: start;
  position: relative;
  z-index: 1;
}

@media print,
screen and (max-width: 1080px) {

  .expert-foundation-lp .hero__container {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.expert-foundation-lp .hero__image-wrap {
  display: block;
  width: 40vw;
  max-width: 600px;
  flex: 1;
  min-width: 400px;
  position: relative;
}

.expert-foundation-lp .hero__image-wrap img {
  border-radius: 40px;
  opacity: .7;
}

@media print,
screen and (max-width: 1379px) {

  .expert-foundation-lp .hero__image-wrap {
    position: absolute;
    right: 0;
    z-index: -1;
  }
}

@media print,
screen and (max-width: 1080px) {

  .expert-foundation-lp .hero__image-wrap {
    position: relative;
    right: unset;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    flex: auto;
    overflow: hidden;
  }

  .expert-foundation-lp .hero__image-wrap img {
    border-radius: unset;
    height: 53.33vw;
    object-fit: cover;
  }
}


/* フッター */
.cta {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(84deg, rgba(50, 150, 190, 0) 44.41%, #98cbdf 93.54%), linear-gradient(83deg, #3296be 46.7%, #98cbdf 95.43%);
  border-radius: 40px;
}

.cta--footer {
  border-radius: unset;
  padding: 80px 0;
}

.cta--fv {
  margin-top: -40px;
}

@media print,
screen and (max-width: 640px) {
  .cta--fv {
    display: none;
  }
}

.cta::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../../assets/reskillingcourse/images/risking-lp/cta_bg.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.cta .container {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta__card-cont {
  width: 100%;
  height: 100%;
  display: flex;
  flex: 1;
  background: #fff;
  border-radius: 24px;
  box-shadow: 4px 4px 30.2px rgba(0, 0, 0, .14);
  padding: 24px;
  gap: 24px;
  align-items: center;
}

@media print,
screen and (max-width: 1080px) {
  .cta__card-cont {
    flex-direction: column;
  }
}

@media print,
screen and (max-width: 640px) {
  .cta__card-cont {
    padding: 4.27vw;
  }
}

.cta__card-cont--sp {
  display: none;
}

@media print,
screen and (max-width: 640px) {
  .cta__card-cont--sp {
    display: block;
  }
}

.cta__card-cont--pc {
  display: flex;
}

@media print,
screen and (max-width: 640px) {
  .cta__card-cont--pc {
    display: none;
  }
}

.cta__card-text-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta__card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
}

@media print,
screen and (max-width: 640px) {
  .cta__card-text-wrap {
    gap: 4.27vw;
  }

  .cta__card-text {
    display: block;
    flex-direction: unset;
    justify-content: unset;
    height: unset;
  }
}

.cta__copyright {
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin-top: 80px;
}

.cta__title {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

@media print,
screen and (max-width: 834px) {
  .cta__title {
    font-size: clamp(16px, 6.4vw, 32px);
  }
}

.cta__grid {
  display: flex;
  max-width: 1124px;
  margin: 24px auto;
  justify-content: center;
  gap: 24px;
}

@media print,
screen and (max-width: 640px) {
  .cta__grid {
    flex-direction: column;
    gap: 4.27vw;
  }
}

.cta__card {
  flex: 1;
}

.cta__card-images {
  min-width: 180px;
  width: 180px;
}

@media print,
screen and (max-width: 640px) {
  .cta__card-images {
    width: 26.67vw;
    min-width: 100px;
  }
}

.cta__card-image {
  width: 100%;
  height: auto;
}

.cta__card-description {
  font-weight: 400;
  font-size: 14px;
}

.cta__card-button,
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.5;
  text-decoration: none;
  width: 100%;
  margin-top: 16px;
}

.cta__card-button:hover,
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  opacity: .9;
}

.cta__card-button--blue,
.cta-btn--blue {
  background: #fff;
  border: 1px solid;
  color: #3191b7;
}

.cta__card-button--red,
.cta-btn--red {
  background: #cb4b45;
  color: #fff;
}

.cta__card-button--org_pnk,
.cta-btn--org2pnk {
  background: linear-gradient(135deg, var(--orange), #FF4F8B);
  color: #fff;
}

.cta__card-button--yel_org,
.cta-btn--yel2org {
  background: linear-gradient(135deg, #FFDD33, var(--orange));
  color: #fff;
}

.cta__card-button-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  padding: 40px;
  font-size: 95%;
}


/* SP 固定CTA */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 16px 8px;
  gap: 8px;
  width: 100%;
  height: auto;
  z-index: 100;
  background: linear-gradient(84deg, #3296be 44.41%, #98cbdf 93.54%);
  display: none;
}

@media print,
screen and (max-width: 834px) {
  .fixed-cta {
    display: flex;
  }
}

.fixed-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  border-radius: 80px;
}

.fixed-cta__button-icon {
  width: 16px;
  height: 16px;
}

.fixed-cta__button-icon--white {
  font-weight: 700;
}

.fixed-cta__button--white {
  background: #fff;
  color: #3296be;
}

.fixed-cta__button--red {
  background: #cb4b45;
  color: #fff;
}

.fixed-cta__button--org_pnk {
  background: linear-gradient(135deg, var(--orange), #FF4F8B);
  color: #fff;
}


/* ボタン */
.cta__card-button,
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.5;
  text-decoration: none;
  width: 100%;
  margin-top: 16px;
}

.cta__card-button:hover,
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  opacity: .9;
}

.cta__card-button--org_pnk,
.cta-btn--org_pnk {
  background: linear-gradient(135deg, var(--orange), #FF4F8B);
  color: #fff;
}

.cta__card-button-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #909090;
  position: absolute;
  transition: all .3s;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}

.hamburger-menu span:nth-child(2) {
  top: 9px;
}

.hamburger-menu span:nth-child(3) {
  bottom: 0;
}

.hamburger-menu.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media screen and (max-width: 834px) {
  .hamburger-menu {
    display: block;
  }

  .header__nav {
    display: none;
  }

  .header__nav.is-active {
    display: block;
  }
}


/* TRUST欄SPレイアウト */
@media print,
screen and (max-width: 834px) {
  .trust-inner {
    flex-direction: column;
  }
}


/* カリキュラム一覧用 */
.badgecontainer {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.badgecontainer .ch-count {
  white-space: nowrap;
}

@media print,
screen and (max-width: 834px) {
  .badgecontainer .ch-count {
    font-weight: unset;
  }
}


/* フォントサイズ */
.fnt-size-normal {
  font-size: 1em !important;
}


/* 回転 */
.rotate90 {
  transform: rotate(90deg);
}


/* 修正値 */
.f-icon {
  font-size: 1em;
}

footer,
header,
nav,
section,
main {
  display: block;
}

.hero-illus {
  position: absolute;
  top: 7%;
  right: 10%;
  display: none;
}

@media screen and (max-width: 1080px) {
  .hero-illus {
    display: none;
  }
}

.hero-btns {
  gap: 20px;
}

.illus-chips {
  filter: drop-shadow(0 12px 40px rgba(26, 143, 255, .3));
}
