/* Main CSS */

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

*{
    box-sizing: border-box;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 95px; /* header height */
    width: 100%;
    max-width: 1441px;
    margin: 0 auto;
}

p {
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    body {
        padding-top: 71px; /* header height */
    }
}