/* リセットスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全体の設定 */
body, html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('images/body-bg_image.webp') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
}

.content {
    max-width: 920px;
    text-align: center;
    color: white; /* テキストカラーは背景に合わせて調整してください */
}

a.button {
    display: inline-block;
    padding: 1.25rem 3rem;
    line-height: 1;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    background: linear-gradient(94deg, #48C1F0 -0.19%, #1855AF 99.81%);
    transition: all 0.5s 0s ease;
}
a.button:hover{
    cursor: pointer;
}

/* スマートフォン用のスタイル */
@media (max-width: 480px) {
    .content {
        max-width: 100%;
        padding: 0 20px;
    }
    .logo {
        max-width: 150px;
        margin-bottom: 10px;
    }
    .page_title {
        margin-bottom: 1rem;
        font-size: 1.75rem;
    }
    .content_text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    .sp_br{
        display: block;
    }
}

/* タブレット用のスタイル */
@media (min-width: 481px) and (max-width: 1024px) {
    .content {
        max-width: 100%;
        padding: 0 20px;
    }
    .logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }
    .page_title {
        margin-bottom: 1rem;
        font-size: 3rem;
    }
    .content_text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    .sp_br{
        display: none;
    }
}

/* デスクトップ用のスタイル */
@media (min-width: 1025px) {
    .logo {
        max-width: 300px;
        margin-bottom: 2rem;
    }
    .page_title {
        margin-bottom: 1rem;
        font-size: 4rem;
        line-height: 1.3;
    }
    .content_text {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    .sp_br{
        display: none;
    }
}