body {
    background: #f9f9fb;
}
.ind-main {
    max-width: 1200px;
    margin: 70px auto;
    padding: 40px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ind-logo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}
.ind-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 18px;
}
.ind-title {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-bottom: 10px;
}
.ind-desc {
    color: #888;
    font-size: 18px;
    margin-bottom: 32px;
}
.ind-pc-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
}
.ind-pc-img {
    width: 350px;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 12px;
    object-fit: cover;
}
.ind-pc-link-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ind-pc-logo {
    width: 24px;
    height: 24px;
}
.ind-pc-link {
    font-size: 18px;
    color: #1086d7;
    font-weight: 600;
    text-decoration: none;
}
.ind-pc-link:hover {
    text-decoration: underline;
}
.ind-videos {
    display: flex;
    justify-content: center;
    gap: 300px;
    margin-bottom: 48px;
    width: 100%;
}
.ind-video-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ind-video {
    border-radius: 16px;
    background: #000;
    margin-bottom: 10px;
    object-fit: cover;
}
.ind-video-link-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ind-video-logo {
    display: flex;
    align-items: center;
}
.ind-video-link {
    font-size: 16px;
    color: #1086d7;
    font-weight: 600;
    text-decoration: none;
}
.ind-video-link:hover {
    text-decoration: underline;
}
.ind-why {
    width: 100%;
    margin: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ind-why-title {
    font-size: 26px;
    color: #222;
    font-weight: 700;
    margin-bottom: 8px;
}
.ind-why-underline {
    width: 100px;
    height: 8px;
    background: #88caec;
    border-radius: 4px;
    margin-bottom: 32px;
}
.wh-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 48px auto;
}
.wh-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px 10px 18px 10px;
    text-decoration: none;
    transition: box-shadow 0.2s;
    min-height: 160px;
}
.wh-item:hover {
    box-shadow: 0 0 10px rgba(38, 162, 224, 0.15);
}
.wh-item figure {
    width: 120px;
    height: 120px;
    margin: 0 18px 0 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wh-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.wh-item strong {
    font-size: 30px;
    color: #222;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}
.wh-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.7;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}
.ind-latest {
    width: 100%;
    margin: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ind-latest-title {
    font-size: 26px;
    color: #222;
    font-weight: 700;
    margin-bottom: 8px;
}
.ind-latest-underline {
    width: 60px;
    height: 6px;
    background: #88caec;
    border-radius: 3px;
    margin-bottom: 32px;
}
.ind-latest-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}
.ind-latest-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.ind-latest-card:hover {
    box-shadow: 0 8px 32px rgba(38, 162, 224, 0.18), 0 1.5px 8px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.ind-latest-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}
.ind-latest-card figure {
    width: 100%;
    height: 180px;
    background: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ind-latest-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ind-latest-info {
    padding: 16px 14px 32px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
.ind-latest-title2 {
    font-size: 17px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.ind-latest-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}
.ind-latest-date {
    position: absolute;
    left: 14px;
    bottom: 10px;
    color: #888;
    font-size: 13px;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .wh-main {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    .ind-latest-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}
@media (max-width: 600px) {
    .ind-main {
        padding: 20px 0 30px 0;
    }
    .ind-logo {
        width: 90px;
        height: 90px;
    }
    .ind-title {
        font-size: 20px;
    }
    .ind-desc {
        font-size: 14px;
    }
    .ind-why-title {
        font-size: 20px;
    }
    .ind-pc-img {
        width: 65%;
        height: auto;
        max-width: 100vw;
        object-fit: contain;
    }
    .ind-pc-download {
        width: 100%;
    }
    .ind-videos {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .ind-video {
        width: 40% !important;
        height: auto !important;
        max-width: 100vw;
        object-fit: contain;
    }
    .ind-video-col {
        width: 100%;
    }
    .wh-main {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        gap: 12px;
    }
    .wh-item {
        min-height: 120px;
        padding: 16px 6px 12px 6px;
    }
    .wh-item figure {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }
    .ind-latest-list {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .ind-latest-card figure {
        height: 180px;
    }
}
