@charset "utf-8";

body {
    font-family: 'Noto Serif JP', serif;
    background-color: #FFF;
}

.note {
    padding: 4%;
}
.note-ttl {
    padding-bottom: 3%;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #E50044;
    border-bottom: 1px solid #E50044;
}
.note-txt {
    padding-top: 3%;
    font-size: 13px;
    line-height: 1.8;
    color: #000;
}

@media screen and (max-width: 768px) {
    .note {
        padding: 12% 4% 4%;
    }
    .note-ttl {
        padding-bottom: 6%;
        font-size: 16px;
    }
    .note-txt {
        padding-top: 6%;
    }
}