/* topページのスタイル*/

.type1 {
    margin-top: 30px;
    font-family: "elevon", sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 24px;
    text-align: center;
}

@media screen and (min-width:768px) {
    .type1 {
        margin-top: 50px;
        font-family: "elevon", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 60px;
        text-align: center;
    }
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.centered-image {
    justify-content: center;
    /* 水平方向中央 */
    align-items: center;
    /* 垂直方向中央 */
    height: 100vh;
    /* ビューポートの高さ */
}

.centered-image img {
    max-width: 80%;
    height: auto;
}