/* インタビュー記事ページのスタイル */

.interview-article {
    max-width: 1024px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.page-title {
    font-size: 2.5rem;
    color: #fff;
    margin-top: 20px;
    margin-left: 80px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
}

.page-title span {
    display: block;
}

.page-subtitle {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
}

.interview-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.interview-content p {
    margin-bottom: 28px;
}

.interview-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 80px 0 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF6B35;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.challenge-effect {
    margin: 60px 0;
}

.challenge-effect > div {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.challenge-effect > div:last-child {
    margin-bottom: 0;
}

.challenge-effect > div::before {
    content: "▼";
    position: absolute;
    left: 48px;
    bottom: -35px;
    font-size: 25px;
    color: #FF6B35;
    font-weight: bold;
}

.challenge-effect > div:last-child::before {
    display: none;
}

.challenge-effect h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 120px;
    background: #fff;
    border: 3px solid #FF6B35;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #FF6B35;
    font-family: 'Noto Sans JP', sans-serif;
    flex-shrink: 0;
}

.challenge-effect ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    padding-top: 20px;
}

.challenge-effect li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 18px;
    line-height: 1.7;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
}

.challenge-effect li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-size: 12px;
    top: 5px;
}

.interview-image {
    margin: 60px 0;
    text-align: center;
}

.interview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.question {
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px;
    font-size: 17px;
    font-family: 'Noto Sans JP', sans-serif;
    background: linear-gradient(90deg, #dcdcdc 20%, transparent 100%);
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
}

.answer-name {
    font-weight: 500;
    color: #666;
    margin-bottom: 0px !important;
    font-family: 'Noto Sans JP', sans-serif;
}

.company-profile {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    margin-top: 80px;
    border: 1px solid #e0e0e0;
}

.company-profile h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.company-profile-item {
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.company-profile-label {
    font-weight: 600;
    color: #666;
    display: block;
    min-width: 100px;
    margin-bottom: 8px;
}

.company-profile a {
    color: #FF6B35;
    text-decoration: none;
    transition: opacity 0.3s;
}

.company-profile a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .interview-article {
        padding: 40px 15px 60px;
    }

    .page-title {
        font-size: 1.5rem;
        color: #fff;
        margin-top: 20px;
        margin-left: 0px;
        font-family: 'Noto Sans JP', sans-serif;
        text-align: left;
    }

    .page-title span {
        display: inline;
    }

    .page-subtitle {
        font-size: 16px;
        margin-top: 15px;
    }

    .interview-content h2 {
        font-size: 22px;
        margin: 60px 0 30px;
    }

    .challenge-effect {
        margin: 40px 0;
    }

    .challenge-effect > div {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .challenge-effect > div::before {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    .challenge-effect h3 {
        min-width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .challenge-effect ul {
        padding-top: 0;
    }

    .challenge-effect li {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .interview-image {
        margin: 40px -15px;
    }

    .interview-image img {
        border-radius: 0;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .question {
        font-size: 16px;
        margin: 30px 0 15px;
        padding: 10px 15px;
    }

    .company-profile {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .company-profile h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
}