/* 高尾山 天気・服装ガイド */

.twg-weather-card {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
    border: 1px solid #b8d4e8;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
    max-width: 640px;
}

.twg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.twg-icon {
    font-size: 40px;
    line-height: 1;
}

.twg-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
}

.twg-subtitle {
    font-size: 13px;
    color: #5a7a9a;
    margin-top: 2px;
}

.twg-temps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.twg-temp-block {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.twg-temp-summit {
    border: 2px solid #2e86c1;
}

.twg-temp-base {
    border: 2px solid #85c1e9;
}

.twg-temp-label {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.twg-temp-value {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a5c;
    line-height: 1.2;
}

.twg-unit {
    font-size: 18px;
    font-weight: 400;
    color: #5a7a9a;
}

.twg-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.twg-detail-item {
    background: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.twg-detail-label {
    color: #555;
}

.twg-detail-value {
    font-weight: 600;
    color: #1a3a5c;
}

.twg-rain {
    color: #2874a6;
    font-weight: 700;
}

.twg-no-rain {
    color: #27ae60;
}

.twg-wind-strong {
    color: #c0392b;
    font-size: 12px;
    font-weight: 700;
}

.twg-wind-moderate {
    color: #d68910;
    font-size: 12px;
}

.twg-clothing {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border-left: 4px solid #27ae60;
    margin-bottom: 16px;
}

.twg-clothing-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.twg-clothing-icon {
    font-size: 24px;
}

.twg-clothing-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a5c3a;
}

.twg-clothing-list {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: disc;
}

.twg-clothing-list li {
    font-size: 14px;
    color: #333;
    padding: 2px 0;
    line-height: 1.6;
}

.twg-footer {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #d5e8f0;
}

.twg-footer small {
    font-size: 11px;
    color: #888;
}

.twg-error {
    background: #fef3f3;
    border: 1px solid #e8b4b4;
    border-radius: 8px;
    padding: 16px;
    color: #8b3a3a;
    font-size: 14px;
}

@media (max-width: 480px) {
    .twg-weather-card {
        padding: 16px;
    }

    .twg-temps {
        grid-template-columns: 1fr;
    }

    .twg-details {
        grid-template-columns: 1fr;
    }

    .twg-temp-value {
        font-size: 28px;
    }
}
