@charset "UTF-8";

/* ============================================
   インタビュー記事レイアウト CSS
   ============================================ */

/* Hero Section */
.interview_hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.interview_hero .hero_image {
    width: 100%;
    height: 100%;
    position: relative;
}

.interview_hero .hero_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.interview_hero .hero_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
}

.interview_hero .interview_badge {
    display: inline-block;
    padding: 6px 16px;
    background: #52c41a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.interview_hero .interview_title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.interview_hero .interview_meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.interview_hero .interview_meta .meta_item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.interview_hero .interview_meta .meta_item i {
    font-size: 13px;
}

/* Interview Body */
.interview_body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.interview_content {
    margin-bottom: 60px;
    line-height: 2;
    font-size: 16px;
    color: #333;
}

.interview_content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #52c41a;
    color: #222;
}

.interview_content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 16px 0;
    color: #333;
    padding-left: 12px;
    border-left: 4px solid #52c41a;
}

.interview_content p {
    margin: 20px 0;
    font-size: 1.7rem;
}

.interview_content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.interview_content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f8f9fa;
    border-left: 4px solid #52c41a;
    font-style: italic;
    color: #555;
}

.interview_content ul,
.interview_content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.interview_content li {
    margin: 10px 0;
}

/* SNS Share */
.interview_share {
    margin: 60px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.interview_share .share_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.interview_share .share_buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.interview_share .share_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.interview_share .share_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.interview_share .share_button.twitter {
    background: #1DA1F2;
    color: #fff;
}

.interview_share .share_button.facebook {
    background: #1877F2;
    color: #fff;
}

.interview_share .share_button.line {
    background: #00B900;
    color: #fff;
}

/* Interview Navigation */
.interview_navigation {
    margin: 60px 0;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.interview_nav_inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.interview_nav_item {
    flex: 1;
    max-width: 48%;
}

.interview_nav_item a {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.interview_nav_item a:hover {
    border-color: #52c41a;
    box-shadow: 0 2px 8px rgba(82, 196, 26, 0.1);
}

.interview_nav_item .nav_label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.interview_nav_item .nav_title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.interview_nav_item.prev .nav_label {
    justify-content: flex-start;
}

.interview_nav_item.next .nav_label {
    justify-content: flex-end;
}

.interview_nav_item.next {
    text-align: right;
}

/* Related Interviews */
.related_interviews {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 20px;
}

.related_interviews .section_title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}

.related_interviews .section_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #52c41a;
    margin: 16px auto 0;
}

/* Interview Cards - PC: 3列, SP: 1列 */
.interview_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.interview_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.interview_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.interview_card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.interview_card .card_image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.interview_card .card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.interview_card:hover .card_image img {
    transform: scale(1.05);
}

.interview_card .card_content {
    padding: 20px;
}

.interview_card .card_meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.interview_card .card_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 後方互換性のため related_cards も残す */
.related_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.related_card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related_card .card_image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.related_card .card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related_card:hover .card_image img {
    transform: scale(1.05);
}

.related_card .card_content {
    padding: 20px;
}

.related_card .card_meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.related_card .card_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related_card .card_excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .interview_hero {
        height: 400px;
        margin-bottom: 40px;
    }

    .interview_hero .hero_overlay {
        padding: 30px 20px;
    }

    .interview_hero .interview_title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .interview_hero .interview_meta {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }

    /* Interview Body */
    .interview_body {
        padding: 0 15px;
    }

    .interview_content {
        font-size: 15px;
        line-height: 1.8;
    }

    .interview_content h2 {
        font-size: 22px;
        margin: 40px 0 16px 0;
    }

    .interview_content h3 {
        font-size: 18px;
        margin: 30px 0 12px 0;
    }

    /* SNS Share */
    .interview_share {
        padding: 20px 15px;
        margin: 40px 0;
    }

    .interview_share .share_title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .interview_share .share_buttons {
        gap: 8px;
    }

    .interview_share .share_button {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Interview Navigation */
    .interview_navigation {
        margin: 40px 0;
        padding: 20px 0;
    }

    .interview_nav_inner {
        flex-direction: column;
        gap: 12px;
    }

    .interview_nav_item {
        max-width: 100%;
    }

    .interview_nav_item a {
        padding: 15px;
    }

    .interview_nav_item .nav_title {
        font-size: 14px;
    }

    /* Related Interviews */
    .related_interviews {
        margin: 50px auto 40px;
    }

    .related_interviews .section_title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    /* Interview Cards - SP: 1列 */
    .interview_cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .interview_card .card_image {
        height: 180px;
    }

    .interview_card .card_content {
        padding: 16px;
    }

    .interview_card .card_title {
        font-size: 15px;
    }

    /* Related Cards - SP: 1列 */
    .related_cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related_card .card_image {
        height: 180px;
    }

    .related_card .card_content {
        padding: 16px;
    }

    .related_card .card_title {
        font-size: 15px;
    }

    .related_card .card_excerpt {
        font-size: 13px;
    }
}
