/*
created by Takahiro Fukase
2024/12/3
*/
body {
    font-family: 'Arial', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'sans-serif';
    background-color: #ffe4b5;
    margin: 0px;
    padding: 0px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 10px 20px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: bold;
}

.language-switch span {
    padding: 3px 5px;
    border-radius: 3px;
}

/* 選択されている言語 */
.language-switch .active {
    background-color: white;
    color: black;
    cursor: default;
}

/* 選択可能な言語 */
.language-switch a {
    color: white;
    text-decoration: none;
}

h1 {
    text-align: center;
    font-size: 3em;
    color: #333333;
    margin: 30px 0px;
}

.works-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.work-card {
    text-align: center;
    background: #fff8dc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
}

.work-card img {
    border-radius: 20px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

.work-card h2 {
    font-size: 1.4em;
    margin: 15px 0px;
}

.work-platform, .app-description, .illustrator-link {
    font-size: 0.9em;
    color: #555555;
    margin-bottom: 10px;
}

.app-download-link {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.app-download-link a {
    display: block;
    width: 120px;
    height: auto;
}

.app-download-link img {
    border-radius: 0px;
    width: 120px;
    height: auto;
}

footer {
    text-align: center;
    background-color: black;
    color: white;
    margin-top: 40px;
    padding: 30px;
}

footer p {
    margin: 8px 0px;
}

footer a {
    text-decoration: underline;
    font-size: 0.85em;
    color: white;
}

.copyright {
    font-size: 0.85em;
    font-weight: bold;
    margin-top: 40px;
}