﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root {
  --ink: #16181c;
  --muted: #687079;
  --line: #e3e6ea;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --green: #1f7f78;
  --green-dark: #20262d;
  --mint: #edf1f2;
  --orange: #d81773;
  --navy: #252b33;
  --shadow: 0 24px 76px rgba(18, 22, 28, 0.13);
  --accent: #d81773;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  font-weight: 400;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 86px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid rgba(223, 232, 229, 0.9);
  box-shadow: 0 10px 34px rgba(24, 48, 52, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: clamp(46px, 5vw, 58px);
  height: clamp(46px, 5vw, 58px);
  max-height: 58px;
  object-fit: contain;
  mix-blend-mode: normal;
  border-radius: 50%;
}

.brand-name {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1.2;
}

.brand-name strong {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  background: var(--ink);
  border-radius: 14px 14px 14px 4px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.35;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #43585c;
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  padding-block: 8px;
}

.is-hidden {
  display: none !important;
}

.login-menu {
  position: relative;
  justify-self: end;
}

.login-menu summary {
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

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

.login-menu div {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  gap: 8px;
  min-width: 180px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 20;
}

.login-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 700;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  background: var(--ink);
  border-radius: 999px;
}

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

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: grid;
  gap: 4px;
  width: min(84vw, 320px);
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 24px 0;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
}

.mobile-menu nav a:hover {
  background: var(--soft);
}

.header-cta,
.button.primary,
.contact-form button {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 22, 28, 0.18);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding: clamp(132px, 16vw, 190px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 86px);
  overflow: hidden;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 18, 22, 0.86) 0%, rgba(16, 18, 22, 0.55) 42%, rgba(16, 18, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 18, 22, 0.68), rgba(16, 18, 22, 0.02) 52%);
  z-index: 1;
}

.hero::after {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: clamp(22px, 4vw, 46px);
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  content: "SCROLL";
  writing-mode: vertical-rl;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 880px);
  max-width: 880px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.12;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 38px 0 0;
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: #fff;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.section,
.feature-section,
.area-section {
  padding: clamp(86px, 10vw, 144px) clamp(20px, 5vw, 72px);
}

.movie-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.movie-copy p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.movie-copy h2 {
  max-width: 980px;
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.24;
  text-wrap: normal;
}

.movie-section .section-kicker {
  color: #fff;
}

.movie-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: min(100%, 420px);
  overflow: hidden;
  display: grid;
  place-items: center;
  justify-self: center;
  background: #050608;
  border-radius: 0 0 34px 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.brand-movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050608;
}

.movie-link {
  justify-self: center;
  grid-column: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.movie-credit {
  justify-self: center;
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.movie-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.play-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.play-mark::before {
  width: 0;
  height: 0;
  margin-left: 6px;
  content: "";
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid var(--accent);
}

.movie-placeholder p {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}

.movie-placeholder small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.news-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  margin: 0;
  padding: clamp(54px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.news-head h2 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
}

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

.news-more {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.news-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 0 22px 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.news-item time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.news-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  background: #fff0f6;
  border-radius: 999px;
  width: fit-content;
  padding: 0 12px;
}

.news-item h3 {
  margin-top: 6px;
  font-size: 17px;
}

.faq-section {
  padding-block: clamp(58px, 7vw, 92px);
  background: #fff;
}

.faq-tools {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.faq-tools label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq-tools select,
.faq-tools input {
  min-height: 48px;
  padding: 10px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.faq-tools select:focus,
.faq-tools input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(216, 23, 115, 0.1);
}

.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.faq-category-tabs button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.faq-category-tabs button.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 0;
  box-shadow: 0 12px 28px rgba(24, 48, 52, 0.05);
}

.faq-item summary {
  display: grid;
  gap: 6px;
  padding: 15px 18px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.faq-item summary strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-empty {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  position: relative;
}

.split::after {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 18px;
  color: rgba(216, 23, 115, 0.08);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 700;
  line-height: 1;
  content: "MESSAGE";
  pointer-events: none;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
  word-break: auto-phrase;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: balance;
}

.desktop-break {
  display: none;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.text-block {
  color: #43585c;
  font-size: 17px;
}

.text-block p:first-child {
  margin-top: 0;
}

.muted {
  background: var(--soft);
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-lead {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  min-height: 270px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 22px 0;
  box-shadow: 0 16px 40px rgba(24, 48, 52, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  background: #fff0f6;
  border-radius: 50%;
}

.service-card p,
.feature-copy p,
.feature-list p,
.flow p,
.area-section p,
.sector-copy p,
.contact-card p {
  color: var(--muted);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background:
    linear-gradient(rgba(24, 48, 52, 0.84), rgba(24, 48, 52, 0.84)),
    url("./assets/hero-training.png") center / cover;
  color: #fff;
  min-height: 680px;
}

.feature-copy p,
.feature-list p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 0 22px 0;
  backdrop-filter: blur(8px);
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.scope-section {
  background: #fff;
}

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

.scope-card {
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: 0 16px 40px rgba(24, 48, 52, 0.06);
}

.scope-card-wide {
  grid-column: 1 / -1;
}

.scope-card h3 {
  margin: 0 0 18px;
  font-size: clamp(19px, 2vw, 24px);
}

.scope-card p {
  margin: 0;
  color: var(--muted);
}

.occupation-intro {
  max-width: 820px;
  margin: 0 0 18px !important;
  font-size: 15px;
}

.scope-note {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  color: var(--ink);
  font-weight: 700;
  background: #fff0f6;
  border: 1px solid rgba(216, 23, 115, 0.18);
  border-radius: 999px;
}

.occupation-showcase,
.occupation-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.occupation-item,
.occupation-list li {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 96px;
  padding: 18px 18px 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 249, 251, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(216, 23, 115, 0.11), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.occupation-item::before,
.occupation-list li::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--accent);
  opacity: 0.75;
}

.occupation-item span,
.occupation-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.occupation-item strong,
.occupation-list strong {
  align-self: end;
  color: var(--ink);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.35;
  word-break: keep-all;
}

.occupation-item:hover,
.occupation-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 23, 115, 0.36);
  box-shadow: 0 12px 28px rgba(24, 48, 52, 0.08);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flow;
}

.fee-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 0 0 28px 0;
}

.fee-mini h3,
.fee-mini p {
  margin: 0;
}

.fee-mini p:not(.section-kicker) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.flow li {
  position: relative;
  min-height: 230px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 22px 0;
  box-shadow: 0 16px 40px rgba(24, 48, 52, 0.05);
}

.flow span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.model-section {
  background: var(--soft);
}

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

.model-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: 0 16px 44px rgba(18, 22, 28, 0.06);
}

.model-card.featured {
  color: #fff;
  background: linear-gradient(135deg, #171a20, #2b3038);
  border-color: #2f3540;
  box-shadow: var(--shadow);
}

.model-card-head span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.model-card.featured .model-card-head span {
  color: #fff;
}

.model-card p {
  margin: 0;
  color: var(--muted);
}

.model-card.featured p,
.model-card.featured li,
.model-card.featured .model-meta span {
  color: rgba(255, 255, 255, 0.78);
}

.model-benefit {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.model-card.featured .model-benefit {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.model-benefit strong {
  display: block;
  margin-bottom: 10px;
}

.model-benefit ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.model-benefit li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.model-benefit li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.model-meta {
  display: grid;
  gap: 8px;
}

.model-meta span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  background: var(--soft);
  border-radius: 999px;
}

.model-card.featured .model-meta span {
  background: rgba(255, 255, 255, 0.12);
}

.model-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.model-steps li {
  padding: 8px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  background: #fff0f6;
  border-radius: 999px;
}

.model-card.featured .model-steps li {
  color: #fff;
  background: rgba(216, 23, 115, 0.32);
}

.specified-section {
  background: #fff;
}

.sector-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background: linear-gradient(135deg, #171a20, #2b3038);
  border: 1px solid #2f3540;
  border-radius: 0 0 34px 0;
  box-shadow: var(--shadow);
}

.sector-panel .section-kicker,
.sector-panel p,
.sector-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.sector-copy h3 {
  margin-bottom: 12px;
}

.sector-copy p {
  margin: 0;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sector-list li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 24, 28, 0.92), rgba(37, 43, 51, 0.82)),
    url("./assets/hero-training.png") center / cover;
}

.area-section p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.about-message {
  background: #fff;
}

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

.about-panel {
  padding: clamp(26px, 4vw, 38px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-panel.accent {
  color: #fff;
  background: linear-gradient(135deg, #171a20, #2b3038);
  border-color: #2f3540;
}

.about-panel h3 {
  margin-bottom: 16px;
}

.about-panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.about-panel.accent p {
  color: rgba(255, 255, 255, 0.78);
}

.about-panel .signature {
  margin-top: 24px;
  color: #fff;
  font-weight: 700;
  text-align: right;
}

.fee-section {
  background: var(--soft);
}

.fee-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 34px 0;
  box-shadow: var(--shadow);
}

.fee-document {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  background: var(--soft);
  border: 1px solid var(--line);
}

.fee-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 82px;
  height: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: var(--ink);
  border-radius: 0 0 18px 0;
  box-shadow: 0 14px 30px rgba(18, 22, 28, 0.2);
}

.fee-document h3 {
  margin-bottom: 8px;
}

.fee-document p {
  margin: 0;
  color: var(--muted);
}

.fee-note {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.fee-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.company-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 24px;
  background: var(--soft);
}

.company-card,
.contact-card {
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(24, 48, 52, 0.06);
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-method {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.contact-method span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-method strong {
  font-size: 14px;
  text-align: right;
  overflow-wrap: anywhere;
}

.line-ready {
  color: #06c755;
  background: #f0fff5;
  border-color: rgba(6, 199, 85, 0.24);
  pointer-events: none;
}

.line-method {
  color: #0b7f3a;
  background: #f2fbf5;
  border-color: rgba(6, 199, 85, 0.24);
}

.line-method strong {
  color: #0b7f3a;
}

.line-consult {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 16px;
  background: #f7fbf8;
  border: 1px solid rgba(6, 199, 85, 0.22);
  border-radius: 8px;
}

.line-consult p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.line-consult span,
.line-consult small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.line-consult a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #06c755;
  border-radius: 999px;
}

.company-table {
  margin: 30px 0 0;
}

.company-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  min-height: 58px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.company-table dt {
  color: var(--muted);
  font-weight: 700;
}

.company-table dd {
  min-height: 1.8em;
  margin: 0;
  border-bottom: 1px solid rgba(216, 23, 115, 0.16);
}

.map-card {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.map-card h3 {
  margin-bottom: 8px;
}

.map-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.map-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 0 22px 0;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #40565a;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(216, 23, 115, 0.1);
}

.privacy-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.privacy-check input {
  width: auto;
  margin-top: 4px;
}

.privacy-check a {
  color: var(--accent);
}

.response-note {
  margin: 0;
  padding: 14px;
  color: var(--ink);
  background: #f6f7f7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.required-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 20px;
  padding: 0 8px;
  margin-left: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  background: var(--accent);
  border-radius: 999px;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.contact-result-page {
  min-height: 100vh;
  padding: 28px;
  background: linear-gradient(135deg, #f7f8f8 0%, #fff 52%, #fff1f7 100%);
}

.contact-result {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 48px);
  margin: min(12vh, 96px) auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-result h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0;
}

.contact-result p:not(.section-kicker) {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.9;
}

.subpage-main {
  padding-top: 86px;
}

.sub-hero {
  display: grid;
  gap: 26px;
  align-items: end;
  min-height: 520px;
  padding: clamp(92px, 12vw, 150px) clamp(20px, 6vw, 80px) clamp(48px, 7vw, 84px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 18, 23, 0.88), rgba(15, 18, 23, 0.62)),
    url("./assets/hero-training.png") center / cover;
}

.sub-hero .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.sub-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.16;
  letter-spacing: 0;
}

.sub-hero .lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
}

.sub-hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(22px, 4vw, 44px);
}

.content-panel {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: 0 18px 48px rgba(18, 22, 28, 0.08);
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.content-panel p {
  color: var(--muted);
}

.compact-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.compact-list li,
.check-list li {
  padding: 13px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: 1px;
}

.flow-steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.flow-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 20px 0;
}

.flow-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-weight: 700;
  background: var(--ink);
  border-radius: 50%;
}

.flow-steps strong {
  display: block;
  margin-bottom: 4px;
}

.flow-steps span {
  color: var(--muted);
}

.sub-faq {
  display: grid;
  gap: 12px;
}

.sub-faq details {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sub-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.sub-faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.link-card {
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  background: linear-gradient(135deg, #171a20, #2b3038);
  border-radius: 0 0 28px 0;
  box-shadow: var(--shadow);
}

.link-card .section-kicker {
  color: #fff;
}

.link-card h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.link-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.link-list strong {
  font-size: 14px;
}

.link-placeholder {
  opacity: 0.58;
  pointer-events: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer p {
  margin-bottom: 6px;
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

.footer-login {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 40;
}

.chat-widget summary {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  color: #fff;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(18, 22, 28, 0.26);
}

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

.chat-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(216, 23, 115, 0.18);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: grid;
  gap: 14px;
  width: min(88vw, 380px);
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.chat-header p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.chat-header small {
  color: var(--accent);
  font-weight: 700;
}

.chat-body {
  display: grid;
  gap: 10px;
}

.bot-message {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.7;
  border-radius: 16px;
}

.bot-message {
  color: #fff;
  background: var(--ink);
  border-bottom-left-radius: 4px;
}

.chat-open-button {
  min-height: 48px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
}

.chat-window {
  position: fixed;
  right: clamp(18px, 4vw, 72px);
  bottom: 96px;
  z-index: 60;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  width: min(92vw, 480px);
  height: min(72vh, 640px);
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: 0 28px 80px rgba(18, 22, 28, 0.24);
}

.chat-window[hidden] {
  display: none;
}

.chat-window-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.chat-window-head p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.chat-window-head small {
  color: var(--muted);
  font-size: 12px;
}

.chat-window-head button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.chat-history {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 0;
  padding: 12px;
  overflow-y: auto;
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 16px;
  scroll-behavior: smooth;
}

.chat-message {
  display: flex;
}

.chat-message span {
  max-width: 86%;
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.7;
  border-radius: 17px;
  box-shadow: 0 8px 18px rgba(18, 22, 28, 0.06);
}

.chat-message.bot {
  justify-content: flex-start;
}

.chat-message.bot span {
  color: var(--ink);
  background: #fff;
  border-bottom-left-radius: 5px;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message.user span {
  color: #fff;
  background: var(--accent);
  border-bottom-right-radius: 5px;
}

.chat-search {
  display: grid;
  gap: 8px;
}

.chat-search label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.chat-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.chat-search input {
  min-height: 46px;
  min-width: 0;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.chat-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(216, 23, 115, 0.1);
}

.chat-search button {
  min-height: 46px;
  padding: 0 14px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
}

.chat-search small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.chat-questions {
  display: grid;
  gap: 8px;
}

.chat-questions button {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.chat-questions button:hover {
  border-color: var(--accent);
}

.chat-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 2px;
}

.chat-actions a,
.chat-actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.chat-actions .line-action {
  color: #0b7f3a;
  background: #f2fbf5;
  border-color: rgba(6, 199, 85, 0.26);
}

.chat-actions span {
  opacity: 0.62;
}

.consult-menu-item {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  color: var(--ink);
  text-decoration: none;
  background: #f7fbf8;
  border: 1px solid rgba(6, 199, 85, 0.24);
  border-radius: 14px;
}

.consult-menu-item strong {
  color: #0b7f3a;
  font-size: 14px;
}

.consult-menu-item span,
.chat-privacy-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.chat-privacy-note {
  margin: 0;
  padding: 10px 12px;
  background: #fff8f1;
  border: 1px solid #f0dfca;
  border-radius: 12px;
}

.member-page {
  min-height: 100vh;
  background: var(--soft);
}

.holding-main,
.policy-main {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.holding-card,
.policy-hero,
.policy-content {
  max-width: 960px;
  margin: 0 auto;
}

.holding-card {
  padding: clamp(32px, 6vw, 72px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 34px 0;
  box-shadow: var(--shadow);
}

.holding-card h1,
.policy-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: 0;
}

.holding-card p:not(.section-kicker),
.policy-hero p,
.policy-content p {
  color: var(--muted);
}

.holding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.policy-content {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.policy-content article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 20px 0;
}

.policy-content h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.member-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.member-back,
.logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.login-view {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(28px, 6vw, 72px);
}

.login-card {
  width: min(100%, 520px);
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 34px 0;
  box-shadow: var(--shadow);
}

.login-card h1,
.learning-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12;
}

.login-card p,
.learning-hero p {
  color: var(--muted);
}

.login-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.login-feature-list span,
.course-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  background: #fff0f6;
  border-radius: 999px;
}

.login-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.login-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.login-form input {
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.login-form button,
.quiz-form button {
  min-height: 48px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.login-error {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.learning-view {
  padding: clamp(28px, 5vw, 72px);
}

.learning-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.member-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.member-summary div {
  padding: clamp(20px, 3vw, 28px);
  color: #fff;
  background: linear-gradient(135deg, #171a20, #2b3038);
  border-radius: 0 0 28px 0;
  box-shadow: var(--shadow);
}

.member-summary span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.member-summary strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.member-summary p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.learning-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.learning-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(18, 22, 28, 0.05);
}

.progress-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.progress-overview div,
.course-card,
.test-section {
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: 0 16px 44px rgba(18, 22, 28, 0.06);
}

.progress-overview span,
.course-card > span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.progress-overview strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
}

.progress-overview progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  accent-color: var(--accent);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.course-card {
  display: grid;
  gap: 18px;
}

.course-card h2 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.course-card p {
  margin: 0;
  color: var(--muted);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lesson-video {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 0 0 22px 0;
}

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

.placeholder-video p {
  margin: 0;
  font-weight: 700;
}

.lesson-list {
  display: grid;
  gap: 10px;
}

.lesson-list label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--soft);
  border-radius: 999px;
}

.course-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-weight: 700;
  background: var(--ink);
  border-radius: 999px;
}

.quiz-form {
  display: grid;
  gap: 16px;
}

.quiz-form fieldset {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0 0 20px 0;
}

.quiz-form legend {
  padding: 0 8px;
  font-weight: 700;
}

.quiz-form label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quiz-result {
  margin: 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 20px;
}

.portal-main,
.portal-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.portal-card {
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: 0 16px 44px rgba(18, 22, 28, 0.06);
}

.portal-card-head {
  margin-bottom: 20px;
}

.portal-card h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.portal-card p {
  color: var(--muted);
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-item {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 0 22px 0;
}

.status-item span,
.newsletter-list span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.status-item strong {
  display: block;
  margin-top: 4px;
}

.status-item ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.status-item li {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.status-item li.done {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.status-item li.current {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.notice-list,
.newsletter-list,
.document-list,
.portal-actions {
  display: grid;
  gap: 12px;
}

.notice-list article {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 0 22px 0;
}

.notice-list time {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.notice-list h3 {
  margin-top: 6px;
}

.notice-check,
.portal-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  font-weight: 700;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.notice-check:disabled {
  opacity: 0.54;
  cursor: default;
}

.newsletter-list a {
  display: block;
  padding: 16px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 0 18px 0;
}

.document-list label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: var(--soft);
  border-radius: 999px;
}

.portal-note {
  margin-top: 0;
}

.status-main {
  padding: clamp(28px, 5vw, 72px);
}

.status-login-view {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 160px);
}

.status-content {
  display: grid;
  gap: 24px;
}

.status-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.status-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.1;
}

.status-hero p:not(.section-kicker) {
  color: var(--muted);
}

.password-setting {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 0;
  box-shadow: 0 16px 44px rgba(18, 22, 28, 0.06);
}

.password-setting h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.password-setting p {
  color: var(--muted);
}

.credential-form {
  display: grid;
  gap: 12px;
}

.credential-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.credential-form input {
  min-height: 46px;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.credential-form button {
  min-height: 46px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.credential-message {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.simple-status-list {
  display: grid;
  gap: 18px;
}

.simple-status-card {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 34px 0;
  box-shadow: 0 16px 44px rgba(18, 22, 28, 0.06);
}

.simple-status-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.simple-status-top span,
.simple-status-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
}

.simple-status-top span {
  color: var(--accent);
  background: #fff0f6;
}

.simple-status-top strong {
  color: #fff;
  background: var(--ink);
}

.simple-status-card h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
}

.simple-status-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.simple-status-card dl div {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 0 18px 0;
}

.simple-status-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.simple-status-card dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.status-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.status-timeline li {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.status-timeline li.done {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.status-timeline li.current {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .global-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .split,
  .movie-section,
  .news-section,
  .feature-section,
  .area-section,
  .sector-panel,
  .about-grid,
  .company-contact,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .progress-overview,
  .member-summary,
  .course-grid,
  .portal-layout,
  .password-setting,
  .status-item ol,
  .simple-status-card dl,
  .status-timeline {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 860px;
  }

  .hero-visual {
    min-height: 0;
    border-radius: 0;
  }

  .hero-visual img {
    object-position: center top;
  }

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

  .movie-link {
    grid-column: auto;
  }

  .movie-credit {
    grid-column: auto;
  }

  .service-grid,
  .flow,
  .model-grid,
  .scope-grid,
  .occupation-showcase,
  .occupation-list,
  .sector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-frame {
    width: min(78vw, 360px);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 70px;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    max-height: 42px;
  }

  .brand-name strong {
    font-size: 13px;
  }

  .brand-name small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding: 118px 16px 42px;
  }

  .subpage-main {
    padding-top: 70px;
  }

  .sub-hero {
    min-height: 520px;
    padding: 92px 16px 42px;
  }

  .sub-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.18;
  }

  .sub-hero-actions .button,
  .section-cta .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.12;
  }

  .lead {
    font-size: 15px;
  }

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

  .hero-facts div {
    padding: 14px;
  }

  .hero-facts dd {
    font-size: 20px;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.28;
  }

  .desktop-break {
    display: none;
  }

  .hero-facts,
  .service-grid,
  .flow,
  .model-grid,
  .scope-grid,
  .occupation-showcase,
  .occupation-list,
  .sector-list,
  .progress-overview,
  .member-summary,
  .course-grid,
  .portal-layout,
  .password-setting,
  .simple-status-card dl,
  .status-timeline,
  .fee-mini,
  .faq-tools {
    grid-template-columns: 1fr;
  }

  .movie-section,
  .news-section,
  .section,
  .feature-section,
  .area-section,
  .fee-section {
    padding-block: 58px;
  }

  .movie-frame {
    width: min(74vw, 300px);
  }

  .movie-copy p:not(.section-kicker) {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-visual {
    min-height: 0;
    border-radius: 0;
  }

  .news-section {
    margin-inline: 0;
    padding-inline: 16px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .section,
  .feature-section,
  .area-section,
  .fee-section,
  .learning-view,
  .status-main {
    padding-inline: 16px;
  }

  .service-card,
  .model-card,
  .company-card,
  .contact-card,
  .link-card,
  .portal-card,
  .simple-status-card,
  .login-card,
  .test-section,
  .course-card,
  .progress-overview div,
  .member-summary div {
    padding: 22px;
  }

  .fee-actions {
    justify-content: stretch;
  }

  .fee-actions .button {
    width: 100%;
  }

  .fee-document {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .member-header,
  .learning-hero,
  .status-hero {
    display: grid;
    gap: 14px;
  }

  .member-back,
  .logout-button {
    width: fit-content;
  }

  .learning-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .learning-tabs a {
    justify-content: center;
    min-height: 42px;
    padding-inline: 10px;
    text-align: center;
  }

  .status-timeline li,
  .status-item li {
    justify-content: start;
    place-items: center start;
    padding-inline: 14px;
    text-align: left;
  }

  .map-frame {
    aspect-ratio: 4 / 3;
  }

  .contact-method,
  .link-list a {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .contact-method strong,
  .link-list strong {
    text-align: left;
  }

  .line-consult a {
    width: 100%;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-widget summary {
    min-height: 54px;
    padding-inline: 18px;
  }

  .chat-panel {
    right: -4px;
    left: auto;
    bottom: 64px;
    width: auto;
    max-height: min(56vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .chat-window {
    right: 12px;
    left: 12px;
    bottom: 82px;
    width: auto;
    height: calc(100dvh - 112px);
    padding: 14px;
    border-radius: 0 0 22px 0;
  }

  .chat-actions {
    grid-template-columns: 1fr;
  }

  .chat-search div {
    grid-template-columns: 1fr;
  }

  .chat-search button {
    width: 100%;
  }

  .chat-window .chat-history {
    max-height: none;
  }
}

