@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #343434;
    letter-spacing: 2px;
}

body a {
    text-decoration: none;
    color: #343434;
    transition: opacity .4s;
}

body a:hover {
    opacity: .7;
}

body img {
    width: 100%;
    height: auto;
}

.sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}