@charset "UTF-8";
/* ========== Reset ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
/* ========== Base ========== */
body {
    font-family: "Noto Sans JP", 
                "Hiragino Kaku Gothic Pro",
                "ヒラギノ角ゴ Pro W3",
                "游ゴシック体",
                "Yu Gothic",
                "Meiryo",
                sans-serif;
    font-weight: 400;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: #fff;
}
img,
video {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* ========== Layout ========== */
#wrapper {
    padding: 10px;
}

/* ========== Utility ========== */
.mb0 {
    margin-bottom: 0;
}
.tac {
    text-align: center;
}
.anno {
    font-size: 10px;
    color: #888;
    text-align: right;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
br.sp { display: none; }

/* ========== Responsive ========== */
@media (max-width: 766px) {
    #wrapper {
        margin: 0 10px;
    }
    p {
        font-size: 16px;
        line-height: 1.6;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    br.sp { display: inline; }
}
