@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700;900&display=swap');

body,
hr,
p,
ul,
ol,
h1,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

img {
    border: none;
    width: 100%;
    vertical-align: bottom;
}

hr {
    border-bottom: none;
}

a {
    color: #585858;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    opacity: 0.7;
}

/* ----------------- 共通 */

body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .1em;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    color: #000;
    position: relative;
}

@media screen and (max-width: 768px) {
    body {
        min-width: auto;
    }
}

.is-pc {
    display: block;
}
.is-sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .is-sp {
        display: block;
    }
    .is-pc {
        display: none;
    }
}