/* ゾンビ業務診断 - 共通スタイル */
* {
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    min-width: 320px;
    background: #f2f2f2;
    margin: 0;
    padding: 0;
}

/* ヘッダー */
#header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
}

#header > div {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
}

@media screen and (max-width: 1024px) {
    #header > div {
        width: 100%;
        padding: 0 20px;
        justify-content: flex-start;
    }
}

#header .logo {
    margin-right: auto;
}

#header .logo:hover {
    opacity: 0.7;
    transition: 200ms;
}

#header .logo > img {
    height: 30px;
}

@media screen and (max-width: 1024px) {
    #header .logo > img {
        height: 20px;
    }
}

/* インフォバー */
#zombie-info-bar {
    background: #E9F2F5;
    padding: 10px 20px;
}

#zombie-info-bar p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 1024px) {
    #zombie-info-bar p {
        justify-content: flex-start;
        font-size: 12px;
        padding: 0 10px;
        letter-spacing: 0.48px;
    }
}

#zombie-info-bar .zombie-label {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

@media screen and (max-width: 1024px) {
    #zombie-info-bar .zombie-label {
        font-size: 14px;
    }
}

#zombie-info-bar .zombie-label-inline {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    #zombie-info-bar .zombie-label-inline {
        font-size: 12px;
    }
}

#zombie-info-bar .zombie-highlight {
    font-size: 20px;
}

@media screen and (max-width: 1024px) {
    #zombie-info-bar .zombie-highlight {
        font-size: 14px;
    }
}

#zombie-info-bar .zombie-desc {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.64px;
}

@media screen and (max-width: 1024px) {
    #zombie-info-bar .zombie-desc {
        font-size: 12px;
        letter-spacing: 0.48px;
    }
}

/* ヒーローセクション */
#hero-zombie {
    background: #18AAD8;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    body.page-top {
        padding-bottom: 100px;
    }

    #hero-zombie {
        background: #18AAD8;
    }
}

.hero-canvas {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

/* 背景画像（PC版） */
.hero-bg-pc {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media screen and (max-width: 1024px) {
    .hero-bg-pc {
        display: none;
    }
}

/* 背景画像（SP版） */
.hero-bg-sp {
    display: none;
}

@media screen and (max-width: 1024px) {
    .hero-bg-sp {
        display: block;
        width: 100%;
        height: auto;
    }
}

/* 診断STARTボタン */
.start-button-hero {
    position: absolute;
    left: 50%;
    bottom: 85px;
    transform: translateX(-50%);
    width: 560px;
    height: 80px;
    background: #ED6C30;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    transition: background 200ms;
    letter-spacing: 2.08px;
    z-index: 11;
}

@media screen and (max-width: 1440px) {
    .start-button-hero {
        bottom: 5.9vw;
        width: 38.89vw;
        height: 5.56vw;
        font-size: 1.81vw;
        border-radius: 2.78vw;
    }

    .start-button-hero svg {
        width: 1.39vw;
        height: 1.39vw;
    }
}

@media screen and (max-width: 1024px) {
    .start-button-hero {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 20px 20px 0 0 !important;
        z-index: 10001 !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
        height: 80px !important;
        font-size: 24px !important;
        letter-spacing: 1.92px !important;
    }
}

.start-button-hero:hover {
    background: #f07b3f;
}

.start-button-hero svg {
    width: 20px;
    height: 20px;
}

/* 同意テキスト（ヒーロー内） */
.consent-text-hero {
    max-width: 800px;
    margin: 20px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 11;
}

@media screen and (max-width: 1024px) {
    .consent-text-hero {
        margin: 0 auto;
        padding: 0 20px 20px;
    }
}

.consent-text-hero p {
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    letter-spacing: 0.24px;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .consent-text-hero p {
        font-size: 11px;
    }
}

/* フッター - review-campaignと同じ構造 */
#footer {
    background-color: #fff;
    padding: 40px 20px;
}

@media screen and (max-width: 1024px) {
    #footer {
        padding: 30px 15px;
    }
}

#footer > div {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


@media screen and (max-width: 1024px) {
    #footer > div {
        width: 100%;
    }
}

#footer > div > .kigyolog {
    width: 30%;
}


@media screen and (max-width: 1024px) {
    #footer > div > .kigyolog {
        width: 100%;
        margin-bottom: 30px;
    }
}

#footer > div > .kigyolog > a {
    transition: 200ms;
}

#footer > div > .kigyolog > a:hover {
    opacity: 0.7;
}

#footer > div > .kigyolog > a > img {
    height: 16px;
}

#footer > div > .kigyolog > ul {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#footer > div > .kigyolog > ul > li {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 18px;
    color: #333;
}

#footer > div > .kigyolog > ul > li:after {
    content: '|';
    display: inline;
    margin-left: 10px;
    color: #ddd;
}

#footer > div > .kigyolog > ul > li:last-child:after {
    display: none;
}

#footer > div > .kigyolog_saas {
    padding: 0 20px;
    width: 20%;
}

@media screen and (max-width: 1024px) {
    #footer > div > .kigyolog_saas {
        width: 100%;
        margin-bottom: 30px;
        padding: 0;
    }
}

#footer > div > .kigyolog_saas > a {
    display: block;
    transition: 200ms;
}

#footer > div > .kigyolog_saas > a:hover {
    opacity: 0.7;
}

#footer > div > .kigyolog_saas > a > img {
    height: 16px;
}

#footer > div > .kigyolog_saas > .button {
    margin-top: 10px;
}

#footer > div > .kigyolog_saas > .button > a {
    display: inline-block;
    background: #2B9CBF;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 21px;
    font-weight: 700;
    color: #fff;
    transition: 200ms;
}

#footer > div > .kigyolog_saas > .button > a:hover {
    background: #03baf8;
}

#footer > div > .kigyolog_saas > .button > a:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 10px;
}

#footer > div > .kigyolog_kessan {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    #footer > div > .kigyolog_kessan {
        width: 100%;
        margin-bottom: 30px;
        justify-content: flex-start;
        align-items: start;
    }
}

#footer > div > .kigyolog_kessan > a {
    display: block;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    transition: 200ms;
}

#footer > div > .kigyolog_kessan > a:hover {
    opacity: 0.7;
}

#footer > div > .about {
    padding-left: 30px;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    #footer > div > .about {
        width: 100%;
        margin-bottom: 30px;
        padding-left: 0;
    }
}

#footer > div > .about > p {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #333;
}

#footer > div > .about > p > span {
    display: inline-block;
    margin-right: 15px;
}

@media screen and (max-width: 1024px) {
    #footer > div > .about > p > span {
        margin-right: 0;
        display: block;
    }
}

#footer > div > .about > small {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #333;
}

#footer > div > .about > small > span {
    display: inline-block;
    margin-right: 15px;
}

#footer > div > .divider {
    width: 1px;
    border-right: 1px solid #ddd;
}

/* 診断ページ用スタイル */
#diagnosis-hero {
    background: #18AAD8;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    min-height: 720px;
}

@media screen and (max-width: 1024px) {
    #diagnosis-hero {
        padding: 20px;
        min-height: auto;
    }
}

.diagnosis-content {
    max-width: 840px;
    margin: 0 auto;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 35px,
            #EEE 35px,
            #EEE 36px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 35px,
            #EEE 35px,
            #EEE 36px
        ),
        white;
    border-radius: 20px;
    box-shadow: 10px 14px 0px rgba(0, 0, 0, 0.25);
    padding: 60px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .diagnosis-content {
        padding: 30px 20px;
    }
}

.question-number {
    font-size: 64px;
    font-weight: 700;
    color: #B2B2B2;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2.56px;
}

@media screen and (max-width: 1024px) {
    .question-number {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

.question-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: 0.4px;
    min-height: 90px;
}

@media screen and (max-width: 1024px) {
    .question-text {
        font-size: 18px;
        margin-bottom: 40px;
        min-height: 81px;
    }
}

.question-text strong {
    font-weight: 700;
}

.answer-buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
    .answer-buttons {
        flex-direction: column;
        gap: 20px;
    }
}

.answer-btn {
    width: 320px;
    height: 70px;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    transition: opacity 200ms;
    letter-spacing: 0.48px;
}

@media screen and (max-width: 1024px) {
    .answer-btn {
        width: 100%;
        font-size: 20px;
        height: 60px;
    }
}

.answer-btn:hover {
    opacity: 0.8;
}

.answer-btn.yes {
    background: #ED6C30;
}

.answer-btn.no {
    background: #2B9CBF;
}

.progress-container {
    text-align: center;
}

.progress-bar {
    width: 400px;
    height: 20px;
    background: #DDDDDD;
    border-radius: 10px;
    margin: 0 auto 10px;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .progress-bar {
        width: 100%;
    }
}

.progress-fill {
    height: 100%;
    background: #F5AF7C;
    border-radius: 10px;
    transition: width 300ms ease;
}

.progress-text {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.4px;
}

@media screen and (max-width: 1024px) {
    .progress-text {
        font-size: 16px;
    }
}