/* ==========================================================
   セクシュアルハラスメント行為者向け再発予防研修 LP
   デザイン踏襲元: recruitharassment/ LP（同社トンマナ）
   ========================================================== */

:root {
    --teal: #2FA9AD;
    --teal-light: #4DCDD1;
    --teal-deep: #23888B;
    --teal-grad-1: #43B3A8;
    --teal-grad-2: #8AD3C7;
    --orange: #FFA033;
    --yellow: #F6EE6E;
    --text: #333;
    --dark-card: #33383C;
    --bg: #F4FAF7;
    --white: #fff;
    --radius-card: 16px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

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

img,
svg {
    max-width: 100%;
    height: auto;
}

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-only { display: none; }
.pc-only { display: inline; }
.nowrap { white-space: nowrap; }

@media (max-width: 768px) {
    .sp-only { display: inline; }
    .pc-only { display: none; }
}

/* ---------- 強調 ---------- */
.hl-orange {
    color: var(--orange);
}

.hl-yellow {
    color: #F9F35A;
    font-weight: 900;
}

/* ---------- スクロールインジケーター ---------- */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2FA9AD, #4DCDD1);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1000;
}

/* ---------- ボタン ---------- */
.button {
    display: inline-flex;
    padding: 10px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform .3s ease, opacity .3s ease;
}

.button:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.button-orange {
    border-radius: 50px;
    background: var(--orange);
    box-shadow: 0 0 20px 0 var(--orange);
}

.button-blue {
    border-radius: 50px;
    background: var(--teal-light);
    box-shadow: 0 0 20px 0 var(--teal-light);
}

.button-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.arrow-circle {
    width: 28px;
    height: 28px;
    flex: none;
}

.button-blue .arrow-circle { color: var(--teal-light); }
.button-orange .arrow-circle { color: var(--orange); }

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .button { padding: 10px 20px; font-size: 14px; }
    .button-lg { padding: 14px 24px; font-size: 15px; width: 100%; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
}

/* ---------- ナビゲーション ---------- */
.site-nav {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 900;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    box-shadow: 0 4px 24px rgba(47, 169, 173, .12);
}

@media (min-width: 1321px) {
    .nav-inner { margin: 0 20px; max-width: none; }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity .3s;
}

.nav-logo:hover { opacity: .8; }

.nav-logo-mark {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, var(--teal-light), var(--teal) 70%);
    position: relative;
}

.nav-logo-mark::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-left-color: transparent;
    transform: rotate(-45deg);
}

.nav-logo-text {
    font-weight: 900;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.3;
    white-space: nowrap;
}

.nav-logo-sub {
    font-size: 11px;
    font-weight: 700;
    margin-left: 2px;
    color: #666;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.nav-menu-item {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    line-height: 200%;
    position: relative;
    white-space: nowrap;
}

.nav-menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--teal);
    transition: all .3s ease;
    transform: translateX(-50%);
}

.nav-menu-item:hover::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta .button { font-size: 14px; padding: 10px 22px; white-space: nowrap; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--teal);
    cursor: pointer;
    padding: 0 10px;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu {
    margin: 8px 20px 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 12px 4px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 8px;
}

.mobile-menu-cta a { border-bottom: none; text-align: center; }

@media (max-width: 1100px) {
    .nav-menu { display: none; }
}

@media (max-width: 768px) {
    .site-nav { top: 10px; }
    .nav-inner { padding: 8px 12px; }
    .nav-right { gap: 8px; }
    .nav-cta { gap: 8px; }
    .nav-cta-orange { display: none; }
    .nav-cta .button { font-size: 12px; padding: 8px 14px; }
    .nav-hamburger { display: flex; flex: none; }
    .nav-logo-text { font-size: 12px; }
    .nav-logo-mark { width: 28px; height: 28px; }
    .nav-logo-mark::after { inset: 7px; border-width: 2.5px; }
}

@media (max-width: 380px) {
    .nav-logo-sub { display: none; }
    .nav-cta .button { font-size: 11px; padding: 7px 10px; }
}

/* ---------- ヒーロー ---------- */
.hero {
    position: relative;
    padding: 170px 0 90px;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--teal-grad-1), var(--teal-grad-2));
    opacity: .9;
}

.hero-blob-1 {
    width: 640px;
    height: 200px;
    top: -60px;
    right: -180px;
    transform: rotate(-18deg);
}

.hero-blob-2 {
    width: 420px;
    height: 140px;
    bottom: 40px;
    left: -200px;
    transform: rotate(-14deg);
    opacity: .55;
}

.hero-dots {
    position: absolute;
    background-image: radial-gradient(rgba(47, 169, 173, .45) 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    border-radius: 999px;
}

.hero-dots-1 {
    width: 380px;
    height: 380px;
    right: 4%;
    bottom: -120px;
    transform: rotate(12deg);
}

.hero-dots-2 {
    width: 240px;
    height: 240px;
    left: -60px;
    top: 120px;
}

.hero-inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
}

.hero-badge-date {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 0 14px rgba(255, 160, 51, .55);
}

.hero-badge-duty {
    background: #fff;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.hero-title {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .02em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-trust {
    font-size: 13px;
    color: #5b6a66;
    margin-bottom: 8px;
}

.hero .cta-buttons {
    justify-content: flex-start;
    margin-top: 24px;
}

/* ヒーロー右側ビジュアル */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-photo {
    width: 100%;
    max-width: 460px;
    border-radius: 48% 52% 46% 54% / 44% 46% 54% 56%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(47, 169, 173, .3);
    border: 6px solid #fff;
}

.hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 62% 20%;
}

.hero-channels {
    display: flex;
    gap: 16px;
}

.hero-channel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--teal-deep);
}

.hero-channel svg {
    width: 26px;
    height: 26px;
    color: var(--teal);
}

@media (max-width: 900px) {
    .hero { padding: 130px 0 60px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo { max-width: 340px; }
    .hero-channels { flex-direction: row; justify-content: center; }
}

/* ---------- サービス定義（〜とは） ---------- */
.intro {
    background: #fff;
    padding: 72px 0;
}

.intro-title {
    position: relative;
    display: inline-block;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 20px;
    padding-left: 14px;
}

.intro-title-blob {
    position: absolute;
    left: -18px;
    top: -12px;
    width: 120px;
    height: 44px;
    background: linear-gradient(120deg, rgba(67, 179, 168, .35), rgba(138, 211, 199, .35));
    border-radius: 999px;
    z-index: -1;
}

.intro-text {
    max-width: 820px;
}

/* ---------- ティールグラデーションバナー見出し ---------- */
.banner-teal {
    background: linear-gradient(105deg, var(--teal-grad-1) 0%, var(--teal-grad-2) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 44px 20px 48px;
    color: #fff;
}

.banner-teal::before,
.banner-teal::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
}

.banner-teal::before {
    width: 480px;
    height: 90px;
    top: -30px;
    right: -80px;
    transform: rotate(-16deg);
}

.banner-teal::after {
    width: 360px;
    height: 70px;
    bottom: -24px;
    left: -60px;
    transform: rotate(-16deg);
}

.banner-pill {
    display: inline-block;
    background: #fff;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 22px;
    border-radius: 40px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 900;
    letter-spacing: .04em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    position: relative;
    z-index: 1;
}

.banner-dots { padding-top: 52px; }

.banner-dots .banner-title::before {
    content: "";
    display: block;
    width: 120px;
    height: 10px;
    margin: 0 auto 10px;
    background-image: radial-gradient(var(--yellow) 5px, transparent 5px);
    background-size: 30px 10px;
    background-repeat: repeat-x;
    background-position: center;
}

/* ---------- ② 法改正 ---------- */
.law-body {
    padding: 64px 20px 80px;
}

.countdown-card {
    background: var(--dark-card);
    color: #fff;
    border-radius: var(--radius-card);
    max-width: 640px;
    margin: 0 auto 48px;
    padding: 28px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.countdown-label {
    font-size: 18px;
    font-weight: 700;
}

.countdown-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--yellow);
}

.countdown-num em {
    font-style: normal;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -.02em;
    margin: 0 6px;
}

.countdown-date {
    width: 100%;
    font-size: 14px;
    opacity: .85;
}

/* Before / After */
.beforeafter {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 48px;
}

.ba-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
    padding: 32px 28px 28px;
    text-align: center;
    position: relative;
}

.ba-after {
    border: 3px solid var(--orange);
    box-shadow: 0 8px 28px rgba(255, 160, 51, .25);
}

.ba-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

.ba-tag-orange { background: var(--orange); }

.ba-head {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.5;
    margin: 8px 0 12px;
}

.ba-text { font-size: 14px; text-align: left; }

.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.ba-arrow svg { width: 44px; height: 44px; }

@media (max-width: 768px) {
    .beforeafter { grid-template-columns: 1fr; }
    .ba-arrow svg { transform: rotate(90deg); }
}

/* 法改正ポイント */
.law-points {
    list-style: none;
    max-width: 760px;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.law-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.law-check {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.law-note {
    max-width: 760px;
    margin: 0 auto;
    font-size: 12.5px;
    color: #6b7a76;
}

/* ---------- ③ リスク ---------- */
.risks-ribbon-wrap {
    position: relative;
    padding: 0 0 24px;
}

.risks-ribbon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 86%);
    background: linear-gradient(180deg, #3FB3B7, #2FA9AD);
    clip-path: polygon(0 0, 50% 48px, 100% 0, 100% calc(100% - 72px), 50% 100%, 0 calc(100% - 72px));
}

.risk-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 96px 0 40px;
}

.risk-card {
    background: var(--dark-card);
    color: #fff;
    border-radius: 6px;
    padding: 28px 20px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .25);
}

.risk-icon {
    display: block;
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
}

.risk-card h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}

.risk-card p {
    font-size: 13.5px;
    line-height: 1.9;
}

.risks-lead {
    position: relative;
    text-align: center;
    color: #fff;
    font-size: clamp(19px, 2.4vw, 26px);
    font-weight: 700;
    padding-bottom: 100px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

@media (max-width: 1000px) {
    .risk-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .risk-cards { grid-template-columns: 1fr; padding-top: 80px; }
    .risks-ribbon { width: 92%; }
}

/* サービスロゴ */
.service-logo {
    text-align: center;
    padding: 48px 20px 72px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-logo-company {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--text);
}

.service-logo-name {
    font-size: clamp(34px, 5.4vw, 60px);
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.3;
}

.service-logo-serif {
    font-family: 'Noto Serif JP', serif;
    font-weight: 900;
    font-size: 1.25em;
    color: var(--teal);
    text-shadow: 2px 2px 0 rgba(77, 205, 209, .35);
    padding: 0 2px;
}

.service-logo-tail {
    font-size: .6em;
    font-weight: 700;
}

/* ---------- 見出し（■） ---------- */
.section-heading {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--teal);
    text-align: center;
    margin-bottom: 32px;
}

.heading-square { margin-right: 4px; }

/* ---------- ④ ソリューション ---------- */
.solution {
    background: #fff;
    padding: 80px 0 0;
}

.solution-def {
    text-align: center;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    line-height: 2;
    margin-bottom: 48px;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 64px;
}

.solution-card {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 32px 26px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(47, 169, 173, .16);
}

.solution-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-grad-1), var(--teal-grad-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card-icon svg { width: 34px; height: 34px; }

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--teal-deep);
}

.solution-card p { font-size: 14px; text-align: left; }

@media (max-width: 860px) {
    .solution-cards { grid-template-columns: 1fr; }
}

/* つまり */
.tsumari {
    text-align: center;
    padding-bottom: 8px;
}

.tsumari-badge {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    padding: 10px 44px 14px;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
    margin-bottom: 28px;
}

.tsumari-line {
    font-size: clamp(22px, 3.4vw, 36px);
    font-weight: 900;
    line-height: 1.6;
    display: table;
    margin: 0 auto 14px;
    border-bottom: 3px solid var(--teal);
    padding: 0 8px 4px;
}

.tsumari-arrow {
    color: var(--teal);
    font-size: 28px;
    line-height: 1.2;
    margin-top: 18px;
}

.tsumari-result {
    background: linear-gradient(180deg, #fff, #EAF6F3);
    border-top: 1px solid #E3EEEA;
    text-align: center;
    padding: 48px 20px;
}

.tsumari-result p {
    font-size: clamp(30px, 4.6vw, 54px);
    font-weight: 900;
    color: var(--teal);
    letter-spacing: .03em;
}

/* ---------- ⑤ メリット（POINTカード） ---------- */
.banner-yellow {
    background: var(--yellow);
    text-align: center;
    padding: 36px 20px;
}

.banner-yellow h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: .03em;
}

.banner-tri {
    text-align: center;
    color: var(--teal);
    line-height: 1.1;
    font-size: 22px;
    padding: 10px 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.merits {
    padding-bottom: 80px;
}

.point-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.point-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
    padding: 36px 30px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.point-label {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: .18em;
    font-size: 15px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
}

.point-label span {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0;
}

.point-card h3 {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 14px;
}

.point-card p { font-size: 14.5px; }

@media (max-width: 900px) {
    .point-cards { grid-template-columns: 1fr; }
}

/* ---------- CTAバンド ---------- */
.cta-band {
    background: #fff;
    padding: 72px 0;
    border-top: 1px solid #EDF4F1;
    border-bottom: 1px solid #EDF4F1;
}

.cta-band-copy {
    text-align: center;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
}

/* ---------- ⑥ 選ばれる理由 ---------- */
.reasons {
    padding-bottom: 80px;
}

.reason-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-top: 64px;
    margin-bottom: 40px;
}

.reason-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 6px 6px 0 rgba(51, 56, 60, .12);
    padding: 44px 30px 30px;
}

.reason-badge {
    position: absolute;
    top: -18px;
    left: -8px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 6px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 160, 51, .4);
}

.reason-card h3 {
    text-align: center;
    color: var(--teal);
    font-size: 22px;
    font-weight: 900;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--teal);
}

.reason-card p { font-size: 14.5px; }

@media (max-width: 800px) {
    .reason-cards { grid-template-columns: 1fr; }
}

/* ---------- ⑦ 導入の流れ ---------- */
.flow {
    background: #fff;
    padding-bottom: 80px;
}

.flow-steps {
    list-style: none;
    max-width: 760px;
    margin: 56px auto 0;
    position: relative;
}

.flow-steps::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 20px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, var(--teal-light), var(--teal));
}

.flow-step {
    position: relative;
    display: flex;
    gap: 24px;
    padding-bottom: 36px;
}

.flow-num {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-grad-1), var(--teal));
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(47, 169, 173, .35);
    position: relative;
    z-index: 1;
}

.flow-body {
    background: var(--bg);
    border-radius: 12px;
    padding: 18px 24px;
    flex: 1;
}

.flow-body h3 {
    color: var(--teal-deep);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.flow-body p { font-size: 14.5px; }

/* ---------- ⑧ 安心設計 ---------- */
.trust {
    background: linear-gradient(105deg, rgba(67, 179, 168, .12), rgba(138, 211, 199, .18));
    padding: 80px 0;
}

.trust-inner {
    display: flex;
    gap: 36px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 12px 32px rgba(47, 169, 173, .14);
    padding: 44px 48px;
}

.trust-shield {
    flex: none;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-grad-1), var(--teal-grad-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-shield svg { width: 58px; height: 58px; }

.trust-lead {
    font-size: clamp(20px, 2.4vw, 27px);
    font-weight: 900;
    margin-bottom: 12px;
}

.trust-text p:last-child { font-size: 15px; }

@media (max-width: 768px) {
    .trust-inner { flex-direction: column; text-align: center; padding: 36px 24px; }
    .trust-text p:last-child { text-align: left; }
}

/* ---------- ⑨ FAQ ---------- */
.faq {
    padding-bottom: 80px;
}

.faq-list {
    max-width: 820px;
    margin: 56px auto 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 56px 20px 22px;
    font-weight: 700;
    font-size: 16px;
    position: relative;
}

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

.faq-q {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background: var(--teal);
    border-radius: 2px;
    transition: transform .3s ease;
}

.faq-toggle::before {
    width: 16px;
    height: 3px;
    top: 6.5px;
}

.faq-toggle::after {
    width: 3px;
    height: 16px;
    left: 6.5px;
}

.faq-item[open] .faq-toggle::after { transform: scaleY(0); }

.faq-a {
    display: flex;
    gap: 14px;
    padding: 4px 22px 22px;
    border-top: 1px dashed #D8E6E1;
    margin: 0 22px;
    padding: 16px 0 22px;
}

.faq-a-mark {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-a p { font-size: 14.5px; padding-top: 4px; }

/* ---------- ⑩ 会社概要 ---------- */
.company {
    background: #fff;
    padding: 80px 0;
}

.company-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 12px 32px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    text-align: left;
    padding: 18px 8px;
    border-bottom: 1px solid #E0EDE8;
    font-size: 15px;
    vertical-align: top;
}

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

.company-table th {
    width: 180px;
    color: var(--teal-deep);
    font-weight: 700;
    white-space: nowrap;
}

.company-table a { color: var(--teal); text-decoration: underline; }

@media (max-width: 600px) {
    .company-table th { width: 110px; }
    .company-card { padding: 8px 18px; }
}

/* ---------- ⑪ 最終CTA（フォーム） ---------- */
.contact {
    padding: 80px 0 96px;
}

.contact-title {
    font-size: 32px;
    text-align: center;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 10px;
}

.contact-lead {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 36px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    max-width: 860px;
    margin: 0 auto;
    padding: 48px clamp(24px, 6vw, 80px);
    box-shadow: 0 12px 40px rgba(47, 169, 173, .12);
}

.contact-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.contact-steps li {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    align-items: baseline;
}

.contact-step-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-step-num {
    color: var(--teal);
    font-weight: 700;
}

.contact-steps h3 {
    font-size: 15.5px;
    font-weight: 600;
}

.contact-steps p {
    font-size: 14.5px;
    font-weight: 500;
}

/* フォーム */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: none;
}

.form-row label,
.form-row legend {
    font-weight: 700;
    font-size: 15px;
}

.req,
.opt {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: 2px;
}

.req { background: var(--orange); }
.opt { background: #9DB4AE; }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 13px 16px;
    border: 2px solid #DCE9E4;
    border-radius: 10px;
    background: #FBFDFC;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--teal-light);
    box-shadow: 0 5px 15px rgba(77, 205, 209, .25);
    transform: translateY(-2px);
}

.form-row input.invalid,
.form-row textarea.invalid {
    border-color: #E86A6A;
    background: #FEF6F6;
}

.form-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.form-radios label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.form-radios input {
    accent-color: var(--teal);
    width: 18px;
    height: 18px;
}

.form-privacy {
    font-size: 13px;
    text-align: center;
}

.form-privacy a {
    color: var(--teal);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.form-submit .button {
    min-width: 320px;
}

@media (max-width: 600px) {
    .form-submit .button { min-width: 0; width: 100%; }
}

.form-message {
    padding: 1rem;
    border-radius: .5rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ---------- フッター ---------- */
.footer {
    background: var(--teal);
    color: #fff;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer ul a:hover { opacity: .8; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 32px;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a:hover { opacity: .8; }

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

/* ---------- スクロールリビール ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease-out, transform .8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- カスタムスクロールバー ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ==========================================================
   本LP固有のセクション（行為者研修）
   ========================================================== */

/* ---------- ヒーロー：循環図ビジュアル ---------- */
.hero-cycle {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.hero-cycle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(47, 169, 173, .35);
}

.hero-cycle-ring.r2 {
    inset: 12%;
    border-style: dashed;
    border-color: rgba(47, 169, 173, .28);
}

.hero-cycle-ring.r3 {
    inset: 24%;
    border: none;
    background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0) 72%);
}

.hero-cycle-core {
    position: relative;
    width: 46%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-grad-1), var(--teal-light));
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 16px 34px rgba(47, 169, 173, .38);
}

.hero-cycle-core b {
    display: block;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .04em;
}

.hero-cycle-core small {
    display: block;
    font-size: 10px;
    letter-spacing: .18em;
    opacity: .92;
    margin-top: 2px;
}

.hero-cycle-node {
    position: absolute;
    background: #fff;
    border: 2px solid var(--teal-light);
    border-radius: 40px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal-deep);
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(47, 169, 173, .18);
}

.hero-cycle-node.n1 { top: -2%; left: 50%; transform: translateX(-50%); }
.hero-cycle-node.n2 { top: 27%; right: -8%; }
.hero-cycle-node.n3 { bottom: 27%; right: -8%; }
.hero-cycle-node.n4 { bottom: -2%; left: 50%; transform: translateX(-50%); }
.hero-cycle-node.n5 { top: 50%; left: -8%; transform: translateY(-50%); }

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hero-tags span {
    background: #fff;
    border: 1px solid var(--teal-light);
    color: var(--teal-deep);
    border-radius: 40px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

@media (max-width: 900px) {
    .hero-cycle { max-width: 300px; }
    .hero-cycle-node { font-size: 12px; padding: 6px 12px; }
}

/* ---------- 課題提起：連鎖ステップ ---------- */
.chain {
    max-width: 760px;
    margin: 0 auto;
}

.chain-step {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.chain-step + .chain-arrow { margin: 10px auto; }

.chain-arrow {
    text-align: center;
    color: var(--teal);
    font-size: 20px;
    line-height: 1;
}

.chain-num {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 15px;
}

.chain-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--teal-deep);
}

.chain-step p { font-size: 14.5px; }

.chain-step.chain-accent {
    background: linear-gradient(120deg, var(--teal-grad-1), var(--teal-grad-2));
    color: #fff;
}

.chain-step.chain-accent h3 { color: #fff; }

.chain-step.chain-accent .chain-num {
    background: #fff;
    color: var(--teal-deep);
}

.chain-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.chain-factors span {
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 40px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
}

/* ---------- 比較表（パワハラ / セクハラ） ---------- */
.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 8px;
}

.compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.compare-table th,
.compare-table td {
    padding: 18px 20px;
    text-align: left;
    font-size: 14.5px;
    border-bottom: 1px solid #E7F1EE;
    vertical-align: top;
}

.compare-table thead th {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #8FA6A2;
}

.compare-table thead th.col-new {
    background: linear-gradient(120deg, var(--teal-grad-1), var(--teal-light));
}

.compare-table thead th small {
    display: block;
    font-size: 11px;
    letter-spacing: .16em;
    font-weight: 600;
    opacity: .9;
    margin-bottom: 2px;
}

.compare-table tbody th {
    width: 150px;
    background: #F4FAF7;
    font-weight: 700;
    color: var(--teal-deep);
    font-size: 14px;
}

.compare-table td.col-new {
    background: rgba(47, 169, 173, .06);
    font-weight: 600;
}

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

.compare-note {
    font-size: 13px;
    color: #5b6a66;
    margin-top: 14px;
}

/* ---------- 心理的要因カード ---------- */
.factor-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.factor-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 24px 22px;
    border-top: 4px solid var(--teal-light);
}

.factor-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--teal);
    margin-bottom: 6px;
}

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

.factor-card h3:last-child { margin-bottom: 0; }

.factor-card p { font-size: 14px; }

@media (max-width: 900px) {
    .factor-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .factor-cards { grid-template-columns: 1fr; }
}

/* ---------- CBTサイクル（5ステップ） ---------- */
.cbt-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin-top: 32px;
}

.cbt-step {
    flex: 1 1 150px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 20px 14px;
    text-align: center;
}

.cbt-step .step-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--teal);
    margin-bottom: 8px;
}

.cbt-step strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--teal-deep);
}

.cbt-step small {
    display: block;
    font-size: 11px;
    letter-spacing: .1em;
    color: #8a9a96;
    margin-top: 2px;
}

.cbt-step.is-goal {
    background: linear-gradient(120deg, var(--teal-grad-1), var(--teal-grad-2));
}

.cbt-step.is-goal .step-label,
.cbt-step.is-goal strong,
.cbt-step.is-goal small { color: #fff; }

.cbt-sep {
    align-self: center;
    color: var(--teal);
    font-weight: 900;
}

@media (max-width: 768px) {
    .cbt-sep { display: none; }
    .cbt-step { flex: 1 1 140px; }
}

/* ---------- プログラム全体像（Before / Day1 / Day2 / After） ---------- */
.program {
    background: #fff;
    padding: 72px 0 84px;
}

.program-cards {
    display: grid;
    gap: 20px;
    margin-top: 36px;
}

.program-card {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 26px 28px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 26px;
    border-left: 6px solid var(--teal-light);
}

.program-card.is-main { border-left-color: var(--orange); }

.program-phase {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .1em;
    color: var(--teal-deep);
    line-height: 1.3;
}

.program-card.is-main .program-phase { color: var(--orange); }

.program-when {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #5b6a66;
    letter-spacing: 0;
    margin-top: 6px;
}

.program-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.program-card p { font-size: 14.5px; }

.program-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.program-list li {
    background: #fff;
    border: 1px solid #D8E9E3;
    border-radius: 40px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-deep);
}

@media (max-width: 768px) {
    .program-card { grid-template-columns: 1fr; gap: 12px; padding: 22px 20px; }
}

/* ---------- 心理アセスメント ---------- */
.assess-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.assess-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 24px 20px;
    text-align: center;
}

.assess-code {
    display: inline-block;
    background: linear-gradient(120deg, var(--teal-grad-1), var(--teal-light));
    color: #fff;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.assess-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.assess-meta {
    display: block;
    font-size: 12px;
    color: #8a9a96;
    margin-bottom: 10px;
}

.assess-card p { font-size: 13.5px; text-align: left; }

@media (max-width: 900px) {
    .assess-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .assess-cards { grid-template-columns: 1fr; }
}

/* ---------- 実施形式（プラン） ---------- */
.plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.plan-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 0 0 26px;
    overflow: hidden;
    border: 2px solid transparent;
}

.plan-card.is-recommended { border-color: var(--orange); }

.plan-head {
    background: #8FA6A2;
    color: #fff;
    padding: 22px 26px;
}

.plan-card.is-recommended .plan-head {
    background: linear-gradient(120deg, var(--teal-grad-1), var(--teal-light));
}

.plan-type {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .24em;
    opacity: .92;
}

.plan-head h3 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .04em;
    margin-top: 4px;
}

.plan-head span.plan-sub {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: .95;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
}

.plan-table th,
.plan-table td {
    padding: 14px 26px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #EEF5F2;
    vertical-align: top;
}

.plan-table th {
    width: 108px;
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
}

.plan-note {
    font-size: 13px;
    color: #5b6a66;
    margin-top: 18px;
}

@media (max-width: 768px) {
    .plan-cards { grid-template-columns: 1fr; }
}

/* ---------- 帯（濃色・注意書き） ---------- */
.notice-band {
    background: var(--dark-card);
    color: #fff;
    padding: 34px 0;
    margin-top: 56px;
}

.notice-band p {
    font-size: 15px;
    text-align: center;
    font-weight: 600;
}

.notice-band strong { color: #FFD08A; }

/* 下端の余白を持たないセクション用 */
.solution-plain { padding-bottom: 80px; }
