/* =========================================
   ウェビナー２ LP CSS
   ========================================= */

/* ---- Variables ---- */
:root {
    --wb2-blue: #006ec5;
    --wb2-dark-blue: #0a3e8b;
    --wb2-red: #e02c41;
    --wb2-black: #383b42;
    --wb2-bg-gray: #f7f7fa;
    --wb2-bg-gray2: #eff0f3;
    --wb2-border: rgba(56, 59, 66, 0.13);
    --wb2-white: #ffffff;
    --wb2-cta-band: #eaf3ff;
}

/* ---- Layout ---- */
.wb2-page {
    background-color: #ffffff;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: var(--wb2-black);
}

.wb2-inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.wb2-inner-sm {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.wb2-inner-md {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.wb2-header {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    position: sticky;
    top: 0;
    z-index: 100;
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06); */
}

.wb2-header-logo img {
    height:auto;
    width: 196px;
    display: block;
}

.wb2-header-cta {
    background-color: var(--wb2-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.wb2-header-cta:hover {
    opacity: 0.85;
    color: #ffffff;
}

/* ---- Hero Section ---- */
.wb2-hero {
    padding: 0 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.wb2-hero-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wb2-hero-thumb {
    width: 100%;
    aspect-ratio: 2160 / 1134;
    overflow: hidden;
}

.wb2-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wb2-hero-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wb2-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wb2-hero-top-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wb2-status-badge {
    background-color: var(--wb2-red);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    height: 26px;
    padding: 0 20px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.wb2-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wb2-tag {
    border: 1px solid #e6e6e6;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 8px;
    height: 24px;
    border-radius: 4px;
    color: #292e32;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.wb2-hero-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.25;
}

.wb2-hero-desc {
    font-size: 16px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.6;
}

.wb2-hero-info {
    background-color: var(--wb2-bg-gray);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.wb2-hero-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wb2-hero-info-item img {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.wb2-hero-info-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 20px;
    white-space: nowrap;
}

/* ---- CTA Block ---- */
.wb2-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* kv2_guide と同構造・トップ KV のガイド文と同じ見た目 */
.wb2-cta-note {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.wb2-cta-note-text {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #0a3e8b;
    text-align: center;
    white-space: nowrap;
}

.wb2-cta-note__deco-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 17.321px;
    flex-shrink: 0;
    overflow: visible;
}

.wb2-cta-note__deco {
    display: block;
    width: 2px;
    height: 20px;
    flex-shrink: 0;
}

.wb2-cta-note__deco--left {
    transform: scaleY(-1) rotate(-150deg);
}

.wb2-cta-note__deco--right {
    transform: rotate(30deg);
}

.wb2-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 72px;
    background-color: var(--wb2-blue);
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2);
    transition: opacity 0.2s;
}

.wb2-cta-btn:hover {
    opacity: 0.9;
}

.wb2-cta-btn-free {
    background-color: #ffef73;
    color: var(--wb2-black);
    font-size: 15px;
    font-weight: 600;
    height: 28px;
    min-height: 28px;
    padding: 0 12px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 48px;
    white-space: nowrap;
    letter-spacing: 0.8px;
    line-height: 1;
}

.wb2-cta-btn-text {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.wb2-cta-btn-icon {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* ---- Section Common ---- */
.wb2-section {
    padding: 50px 10px;
}

.wb2-section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--wb2-black);
    text-align: center;
    margin-bottom: 32px;
}

.wb2-section-title--white {
    color: #ffffff;
}

.wb2-section-title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wb2-blue);
    margin: 0 auto 32px;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

/* お悩みセクション見出し（Figma: SP 16 / 25 / 16、PC 32 / 50 / 32） */
.wb2-pain-heading {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.wb2-pain-heading__muted {
    font-size: 32px;
    color: var(--wb2-black);
    font-weight: 600;
}

.wb2-pain-heading__accent {
    font-size: 50px;
    color: var(--wb2-dark-blue);
    font-weight: 600;
}

.wb2-agenda-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.wb2-agenda-section-title {
    margin: 0;
}

/* ---- Pain Section ---- */
.wb2-pain {
    background-color: var(--wb2-bg-gray);
    padding: 50px 10px 0;
}

.wb2-pain-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.wb2-pain-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 30px 0;
}

.wb2-pain-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wb2-pain-icon-wrap {
    width: 44px;
    height: 44px;
    background-color: #eaf3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wb2-pain-icon-wrap img {
    width: 22px;
    height: 22px;
    display: block;
    /* pain-icons は元SVGが黒/グレーのため、ここで青に固定 */
    filter: brightness(0) saturate(100%) invert(24%) sepia(92%) saturate(1510%) hue-rotate(187deg) brightness(92%) contrast(97%);
}

.wb2-pain-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.5;
}

.wb2-pain-image {
    width: 100%;
    max-width: 170px;
    width: 170px;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.wb2-pain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ---- Benefits Section ---- */
.wb2-benefits {
    background-color: var(--wb2-blue);
    padding: 50px 10px;
}

.wb2-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
}

.wb2-benefit-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: calc(50% - 8px);
    max-width: 532px;
    box-sizing: border-box;
}

.wb2-benefit-icon-wrap {
    width: 28px;
    height: 28px;
    background-color: var(--wb2-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wb2-benefit-icon-wrap img {
    width: 14px;
    height: 14px;
    display: block;
    filter: brightness(0) invert(1);
}

.wb2-benefit-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--wb2-dark-blue);
    line-height: 24px;
    flex: 1;
}

/* ---- Agenda Section ---- */
.wb2-agenda {
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.wb2-agenda-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
}

.wb2-agenda-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--wb2-border);
}

.wb2-agenda-num {
    width: 40px;
    height: 40px;
    background-color: var(--wb2-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.wb2-agenda-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.wb2-agenda-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--wb2-blue);
    line-height: 1.5;
}

.wb2-agenda-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--wb2-black);
    line-height: 1.5;
}

/* ---- Recommend Section ---- */
.wb2-recommend {
    background-color: var(--wb2-bg-gray);
    border-radius: 12px;
    padding: 32px 36px;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
}

.wb2-recommend-title-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.wb2-recommend-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--wb2-black);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wb2-blue);
}

.wb2-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wb2-recommend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wb2-recommend-icon {
    width: 20px;
    height: 20px;
    background-color: var(--wb2-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wb2-recommend-icon img {
    width: 12px;
    height: 12px;
    display: block;
    filter: brightness(0) invert(1);
}

.wb2-recommend-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--wb2-dark-blue);
    line-height: 20px;
}

/* ---- Speaker Section ---- */
.wb2-speakers {
    background-color: var(--wb2-bg-gray);
    padding: 50px 10px;
}

.wb2-speakers-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--wb2-black);
    text-align: center;
    margin-bottom: 32px;
}

.wb2-speaker-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.wb2-speaker-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.wb2-speaker-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #e6e6e6;
}

.wb2-speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wb2-speaker-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wb2-speaker-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--wb2-dark-blue);
    line-height: 1.5;
}

.wb2-speaker-affiliation {
    font-size: 13px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.5;
}

.wb2-speaker-profile {
    font-size: 14px;
    font-weight: 300;
    color: var(--wb2-black);
    line-height: 1.6;
}

/* ---- Results Section ---- */
.wb2-results {
    padding: 50px 10px;
}

.wb2-results-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.wb2-results-headline {
    text-align: center;
    margin-bottom: 32px;
}

.wb2-results-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--wb2-dark-blue);
    line-height: 1.6;
    display: block;
    margin-bottom: 8px;
}

.wb2-results-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
}

.wb2-results-sub {
    font-size: 16px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.5;
    display: block;
}

.wb2-results-grid {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.wb2-result-item {
    flex: 1;
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.wb2-result-item + .wb2-result-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e6e6e6;
}

.wb2-result-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.2;
}

.wb2-result-value {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.wb2-result-num {
    font-size: 42px;
    font-weight: 600;
    color: var(--wb2-blue);
    letter-spacing: -0.84px;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
}

.wb2-result-unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.2;
    letter-spacing: -0.64px;
}

/* ---- Overview Section ---- */
.wb2-overview {
    padding: 50px 10px;
}

.wb2-overview-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--wb2-black);
    text-align: center;
    margin-bottom: 32px;
}

.wb2-overview-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
}

.wb2-overview-table tr {
    border-bottom: 1px solid var(--wb2-border);
}

.wb2-overview-table th {
    background-color: var(--wb2-bg-gray2);
    width: 160px;
    min-width: 160px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--wb2-black);
    text-align: left;
    vertical-align: top;
    line-height: 1.4;
}

.wb2-overview-table td {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 300;
    color: var(--wb2-black);
    line-height: 1.6;
    vertical-align: top;
}

.wb2-overview-table td p {
    margin: 0 0 6px;
}

.wb2-overview-table td p:last-child {
    margin-bottom: 0;
}

/* ---- FAQ Section ---- */
.wb2-faq {
    padding: 50px 10px;
}

.wb2-faq-section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--wb2-black);
    text-align: center;
    margin-bottom: 32px;
}

.wb2-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.wb2-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.wb2-faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    text-align: left;
    gap: 16px;
}

.wb2-faq-question-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wb2-faq-q-mark {
    font-size: 16px;
    font-weight: 600;
    color: var(--wb2-blue);
    line-height: 1.5;
    flex-shrink: 0;
    width: 18px;
}

.wb2-faq-q-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--wb2-black);
    line-height: 1.5;
}

.wb2-faq-toggle {
    width: 28px;
    height: 28px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.wb2-faq-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.wb2-faq-item.is-open .wb2-faq-toggle svg {
    transform: rotate(45deg);
}

.wb2-faq-answer {
    display: none;
    padding: 0 0 20px 30px;
}

.wb2-faq-item.is-open .wb2-faq-answer {
    display: block;
}

.wb2-faq-answer p {
    font-size: 14px;
    font-weight: 300;
    color: var(--wb2-black);
    line-height: 1.8;
}

/* ---- Form Section ---- */
.wb2-form-section {
    background-color: var(--wb2-bg-gray);
    padding: 50px 10px;
}

.wb2-form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 517px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wb2-form-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.45;
}

.wb2-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wb2-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wb2-form-label-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wb2-form-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.wb2-form-required {
    background-color: #ddeafd;
    color: #083f91;
    font-size: 10px;
    font-weight: 500;
    padding: 1px 6px;
    border-radius: 6px;
    line-height: 14px;
    height: 16px;
    display: inline-flex;
    align-items: center;
}

.wb2-form-input {
    width: 100%;
    height: 40px;
    background-color: #f8f8f8;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.wb2-form-input:focus {
    border-color: var(--wb2-blue);
}

.wb2-form-input::placeholder {
    color: #959595;
}

.wb2-form-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wb2-form-checkbox-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--wb2-blue);
}

.wb2-form-checkbox-label {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 20px;
}

.wb2-form-checkbox-label a {
    color: #0060c6;
    text-decoration: underline;
}

.wb2-form-notes {
    padding: 0;
    margin: 0;
    list-style: decimal;
    padding-left: 16px;
}

.wb2-form-notes li {
    font-size: 12px;
    color: #616161;
    line-height: 20px;
}

.wb2-form-submit {
    width: 100%;
    height: 48px;
    background-color: #0060c6;
    color: #ffffff;
    border: none;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.wb2-form-submit:hover {
    opacity: 0.9;
}

/* single-seminar 同様のフォームを埋め込み */
.wb2-form-seminar-wrap {
    max-width: 517px;
    margin: 0 auto;
}

.wb2-form-seminar-wrap .seminar_right {
    max-width: 100%;
    position: static;
}

.wb2-form-seminar-wrap .contents_right_inner {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}

.wb2-form-notes--below {
    margin-top: 20px;
}

/* ---- Footer ---- */
.wb2-footer {
    background-color: var(--wb2-black);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.wb2-footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.wb2-footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}

.wb2-footer-link:hover {
    color: #ffffff;
}

.wb2-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.5;
}

/* ---- Fixed CTA (wb2-form 表示中は非表示) ---- */
.wb2-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    padding: 10px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.wb2-fixed-cta.is-hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.wb2-fixed-cta > .wb2-fixed-cta-btn {
    pointer-events: auto;
    width: 100%;
    max-width: 480px;
    margin: 0;
    /* .wb2-cta-btn の margin:auto を打ち消し */
}

/* 固定 CTA の見た目を少しだけ圧縮（SP同様に） */
.wb2-fixed-cta .wb2-cta-btn {
    height: 72px;
    max-width: 480px;
    padding: 12px 16px;
    box-sizing: border-box;
}

.wb2-fixed-cta .wb2-cta-btn-free {
    font-size: 16px;
}

/* ---- Responsive（Figma 202507-Ver2 モバイル 390px 準拠） ---- */
@media screen and (max-width: 768px) {
    .wb2-inner,
    .wb2-inner-sm,
    .wb2-inner-md {
        padding-left: 16px;
        padding-right: 16px;
    }

    .wb2-header {
        min-height: 54px;
        padding: 16px 16px;
        box-sizing: border-box;
    }

    .wb2-header-logo img {
        height: auto;
        width: 190px;
    }

    .wb2-header-cta {
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 8px;
    }

    /* ヒーロー：KV下をグレー背景、開催情報は白カード（Figma node 3035:6944） */
    .wb2-hero {
        gap: 0;
        padding-bottom: 0;
    }

    .wb2-hero-content {
        padding-left: 0;
        padding-right: 0;
        gap: 0;
        max-width: none;
    }

    .wb2-hero-thumb {
        aspect-ratio: 390 / 205;
        max-height: 46vh;
    }

    .wb2-hero-body {
        background-color: var(--wb2-bg-gray);
        padding: 16px;
        gap: 16px;
        box-sizing: border-box;
    }

    .wb2-hero-meta {
        gap: 16px;
    }

    .wb2-hero-info {
        background-color: var(--wb2-white);
    }

    .wb2-hero-title {
        font-size: 24px;
    }

    .wb2-hero-desc {
        font-size: 14px;
    }

    .wb2-hero-info-item span {
        font-size: 14px;
    }

    /* ヒーロー直後の CTA：水色帯（Figma MidCTA 3035:7009） */
    .wb2-hero > .wb2-cta-block {
        background-color: var(--wb2-cta-band);
        padding: 20px 12px 24px;
        max-width: none;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    /* 2つ目CTAなど：SPでは左右paddingを無しに */
    .wb2-cta-block {
        padding: 0;
    }

    .wb2-hero .wb2-cta-btn {
        height: 64px;
    }

    .wb2-hero .wb2-cta-btn-text {
        font-size: 18px;
    }

    .wb2-hero .wb2-cta-btn-free {
        font-size: 14px;
        letter-spacing: 0.14px;
    }

    .wb2-fixed-cta .wb2-cta-btn-free {
        font-size: 14px;
    }

    .wb2-pain-heading__muted {
        font-size: 16px;
    }

    .wb2-pain-heading__accent {
        font-size: 25px;
    }

    .wb2-section-title {
        font-size: 24px;
    }

    .wb2-pain {
        padding: 32px 0 0;
    }

    .wb2-pain .wb2-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .wb2-pain-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }

    .wb2-pain-list {
        padding: 0;
    }

    .wb2-pain-image {
        width: 91px;
        max-width: 91px;
        height: 141px;
        max-height: 141px;
        align-self: center;
    }

    .wb2-pain-text {
        font-size: 14px;
    }

    .wb2-benefits {
        padding: 32px 16px;
    }

    .wb2-benefits-grid {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }

    .wb2-benefit-card {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        gap: 8px;
    }

    .wb2-benefit-icon-wrap {
        width: 24px;
        height: 24px;
    }

    .wb2-benefit-text {
        font-size: 14px;
        line-height: 20px;
    }

    .wb2-agenda {
        padding: 32px 16px;
        gap: 32px;
    }

    .wb2-agenda-inner {
        gap: 20px;
    }

    .wb2-agenda-num {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .wb2-agenda-title {
        font-size: 14px;
    }

    .wb2-agenda .wb2-cta-btn {
        height: 72px;
    }

    .wb2-agenda .wb2-cta-btn-text {
        font-size: 18px;
    }

    .wb2-agenda .wb2-cta-btn-free {
        font-size: 14px;
        letter-spacing: 0.8px;
    }

    .wb2-recommend {
        padding: 24px 16px;
        margin-top: 0;
    }

    .wb2-recommend-title {
        font-size: 24px;
        padding-bottom: 6px;
    }

    .wb2-recommend-list {
        gap: 16px;
    }

    .wb2-recommend-text {
        font-size: 14px;
        line-height: 20px;
    }

    .wb2-speakers {
        padding: 32px 12px;
    }

    .wb2-speakers-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .wb2-speaker-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 20px;
    }

    .wb2-speaker-photo {
        width: 120px;
        height: 120px;
    }

    .wb2-speaker-name {
        font-size: 18px;
    }

    .wb2-speaker-affiliation {
        font-size: 12px;
    }

    .wb2-results {
        padding: 32px 12px;
    }

    .wb2-results-title {
        font-size: 28px;
    }

    .wb2-results-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-wrap: nowrap;
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        border-left: 1px solid #e6e6e6;
        border-right: 1px solid #e6e6e6;
    }

    .wb2-result-item {
        flex: none;
        padding: 12px 16px;
        gap: 12px;
        box-sizing: border-box;
    }

    .wb2-result-item + .wb2-result-item::before {
        display: none;
    }

    .wb2-result-item:nth-child(odd) {
        border-right: 1px solid #e6e6e6;
    }

    .wb2-result-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e6e6e6;
    }

    .wb2-result-label {
        font-size: 14px;
        line-height: 1.3;
    }

    .wb2-result-unit {
        font-size: 14px;
    }

    .wb2-result-num {
        font-size: 32px;
    }

    .wb2-overview {
        padding: 32px 12px;
    }

    .wb2-overview-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .wb2-overview-table th {
        width: auto;
        min-height: 52px;
        font-size: 13px;
        font-weight: 600;
        padding: 16px 20px;
        box-sizing: border-box;
    }

    .wb2-overview-table td {
        font-size: 13px;
        font-weight: 300;
        padding: 16px 20px;
    }

    .wb2-faq {
        padding: 32px 16px;
    }

    .wb2-faq-section-title {
        font-size: 24px;
    }

    .wb2-form-section {
        padding: 32px 12px;
    }

    .wb2-cta-btn-text {
        font-size: 17px;
    }

    .wb2-cta-note {
        gap: 8px;
    }

    .wb2-cta-note-text {
        font-size: 14px;
        line-height: 22px;
        white-space: nowrap;
    }

    .wb2-cta-note__deco-wrap {
        width: 8px;
        height: 13.856px;
    }

    .wb2-cta-note__deco {
        width: 1.6px;
        height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .wb2-hero-title {
        font-size: 22px;
    }

    .wb2-status-badge {
        font-size: 13px;
        height: 26px;
        padding: 0 14px;
    }

    .wb2-overview-table {
        display: block;
    }

    .wb2-overview-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--wb2-border);
    }

    .wb2-overview-table th,
    .wb2-overview-table td {
        width: 100%;
    }

    .wb2-overview-table th {
        padding-bottom: 4px;
    }

    .wb2-overview-table td {
        padding-top: 4px;
    }

    .wb2-result-item {
        flex: 1 1 100%;
    }

    .wb2-result-item + .wb2-result-item::before {
        display: none;
    }
}
