@charset "UTF-8";

/* ==========================================
   Voice Single Page - お客様の声 個別ページ
========================================== */

.voice-single-wrap {
    max-width: 860px;
    margin: 40px auto 0;
}

/* メインコンテンツエリア */
.voice-single-main {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.voice-single-content {
    padding: 40px;
}

.voice-single-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 25px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.voice-single-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 0 25px;
    border-radius: 8px;
}

.voice-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* カテゴリー */
.voice-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.voice-category-link {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #888 0%, #666 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.voice-category-link:hover {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* お客様情報 */
.voice-customer-info {
    margin: 0 0 30px 0;
}

.voice-customer-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.voice-customer-detail {
    font-size: 15px;
    font-weight: 400;
    color: #888;
}

/* 詳細データ */
.voice-details {
    background: #f9f9f9;
    padding: 15px;
    margin: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.voice-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.voice-detail-item:last-child {
    border-bottom: none;
}

.voice-detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.voice-detail-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: right;
}

.voice-detail-value .number {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.voice-detail-value .unit {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.voice-detail-value .arrow {
    margin: 0 6px;
    color: #ccc;
    font-weight: 300;
    font-size: 16px;
}

.voice-detail-value .diff {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.voice-detail-value .diff.positive {
    background: rgba(229, 57, 53, 0.08);
    color: #e53935;
}

.voice-detail-value .diff.negative {
    background: rgba(67, 160, 71, 0.08);
    color: #43a047;
}

/* 本文 */
.voice-single-text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    letter-spacing: 0.05em;
}

.voice-single-text p {
    margin: 0 0 20px;
}

.voice-single-text p:last-child {
    margin-bottom: 0;
}

.voice-single-text strong {
    color: #333;
    font-weight: bold;
}

/* SNSシェア */
.voice-share {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.voice-share .share-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.voice-share .share-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.voice-share .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.voice-share .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.voice-share .share-btn.twitter {
    background: #000;
}

.voice-share .share-btn.twitter:hover {
    background: #333;
}

.voice-share .share-btn.facebook {
    background: #1877F2;
}

.voice-share .share-btn.facebook:hover {
    background: #1565C0;
}

.voice-share .share-btn.line {
    background: #00B900;
}

.voice-share .share-btn.line:hover {
    background: #009600;
}

.voice-share .icon {
    font-size: 18px;
}

/* ナビゲーション */
.voice-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 50px 0;
}

.voice-nav-btn {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.voice-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s;
}

.voice-nav-btn:hover::before {
    left: 100%;
}

.voice-nav-btn:hover {
    border-color: #888;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.voice-nav-btn .nav-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    font-weight: 500;
}

.voice-nav-btn .nav-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.voice-nav-btn.prev .nav-title {
    text-align: left;
}

.voice-nav-btn.next .nav-title {
    text-align: right;
}

/* 他のお客様の声 */
.other-voices {
    margin: 60px 0 40px;
}

.other-voices .midashi02 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.other-voices .midashi02::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #888;
    margin: 20px auto 0;
}

/* 一覧に戻る */
.voice-back {
    text-align: center;
    margin: 50px 0 40px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .voice-single-wrap {
        margin: 30px auto 0;
        padding: 0 15px;
    }

    .voice-single-content {
        padding: 25px 20px;
    }

    .voice-single-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .voice-categories {
        margin-bottom: 20px;
    }

    .voice-category-link {
        font-size: 11px;
        padding: 5px 12px;
    }

    .voice-single-text {
        font-size: 14px;
        line-height: 1.9;
    }

    .voice-share {
        margin: 40px 0;
        padding: 25px 20px;
    }

    .voice-share .share-btn {
        width: 40px;
        height: 40px;
    }

    .voice-share .icon {
        font-size: 16px;
    }

    .voice-nav {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 40px 0;
    }

    .voice-nav-btn {
        padding: 18px 20px;
    }

    .voice-nav-btn .nav-title {
        text-align: center !important;
    }

    .other-voices {
        margin: 50px 0 30px;
    }

    .voice-back {
        margin: 40px 0 30px;
    }

    /* お客様情報 */
    .voice-customer-info {
        margin: 0 0 25px 0;
    }

    .voice-customer-name {
        font-size: 16px;
        gap: 8px;
    }

    .voice-customer-detail {
        font-size: 14px;
    }

    /* 詳細データ */
    .voice-details {
        margin: 25px 0;
    }

    .voice-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 0;
    }

    .voice-detail-label {
        font-size: 13px;
    }

    .voice-detail-value {
        font-size: 15px;
        width: 100%;
        text-align: left;
        gap: 8px;
    }

    .voice-detail-value .number {
        font-size: 17px;
    }

    .voice-detail-value .unit {
        font-size: 12px;
    }

    .voice-detail-value .arrow {
        font-size: 15px;
    }

    .voice-detail-value .diff {
        font-size: 11px;
        padding: 2px 6px;
        margin-left: 6px;
    }
}