@charset "utf-8";

/* common.cssの設定を連携しているため変更点や追加点のみ記載 */
body {
    background: none;
    background-color: var(--primary-whiteLow);
}

.link {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
    text-align: center;
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: normal;
    gap:80px;
}

.link_img {
    display: flex;
    width: 80px;
}

.mc_txt {
    margin-top: 110px;
}

.topic {
    line-height: 0.8;
    margin-bottom: 60px;
}

.img5 {
    display: block;
    width: 300px;
    height: auto;
    margin:100px auto;
}


/* gallery pc */
@media screen and (min-width: 769px) {
    
    .link {
        flex-direction: row;
        justify-content: center;
        margin-top: 170px;
        font-size: 1.8rem;
        font-weight: 400;
        gap: 200px;
    }
    
    .link_img {
        width: 120px;
    }
    
    .mc_txt {
        margin-top: 190px;
    }
    
    .topic {
        margin-top: 150px;
        line-height: 0.6;
    }

    .img5 {
        width: 954px;
        margin-top: 170px;
    }

}/* pc 769px */