<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 貯金目標達成シミュレーター */
/* 多言語化用 CSS */
/* みんなの知識ちょっと便利帳 */
/* https://www.benricho.org/calculate/chokin_simulator/ */
/* 2025/04/03 */

.subtitle-area {
    display: flex;
    justify-content: center;
    align-items: center;
}
.savings-simulator {
    max-width: 670px;
    margin: 20px auto;
    padding: 0 20px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}
.savings-simulator label, .savings-simulator button {
    font-size: 17px;
    font-weight: bold;
}
.input-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.input-group label {
    width: 40%;
    text-align: right;
}
.input-group input {
    width: 60%;
    padding: 5px 8px;
    font-size: 18px;
}

.savings-simulator button {
    background-color: #28A745;
    color: white;
    border: none;
    padding: 7px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 5px;
}
.savings-simulator button:hover {
    background-color: #218838;
}
#reset-button {
    background-color: #DC3545;
}
#reset-button:hover {
    background-color: #C82333;
}
.button-area {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.button-calculate-needed button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 9px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.button-calculate-needed button:hover {
    background-color: #0056b3;
}
.savings-simulator #result {
    font-size: 17px;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}
.years-months {
    font-size: 18px;
    color: crimson;
    font-weight: bold;
}
.calculate-needed {
    margin-top: 25px;
    font-size: 16px;
    font-weight: bold;
}
.subtitle {
    display: inline-block;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;			
    margin: 15px 0;
    padding: 10px 20px;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
} 
.progress-container {
    width: 100%;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
    margin: 10px 0;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #28A745;
    text-align: center;
    color: white;
    line-height: 20px;
}
#neededResult {
font-weight: bold;
    text-align: center;
    margin-top: 10px;
}
@media screen and (max-width: 600px) {
    .input-group {
        flex-direction: column;
        margin-bottom: 5px;
    }
    .input-group label {
        width: 100%;
        text-align: left;
        margin: 10px 0 0 0;
    }
    .input-group input {
        width: 100%;
        font-size: 18px;
        margin: 0;
    }
}
</pre></body></html>