:root {
    --main-color: #4175e7;
    --secondary-color: #faebd7;
    --background-color: white;
}

.bg-main {
    background-color: var(--main-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.font-din {
    font-family: "din-1451-lt-pro-engschrift", sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
    max-width: 840px;
}

@media (min-width: 840px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

main {
    background: linear-gradient(to bottom, transparent 0%, var(--secondary-color) 100%);
    /* min-height: calc(100vh - 60px); ヘッダーの高さを考慮して調整 */
    padding-top: 0.0rem; /* コンテンツが上部に寄りすぎないようにパディングを追加 */
    padding-bottom: 0.0rem; /* コンテンツが下部に寄りすぎないようにパディングを追加 */
}



.card {
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icon {
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2);
}
