@charset "utf-8";
/* 全体設定 */
body {
    font-family: 'Arial', sans-serif;
    color: #383E45;
    font-size: 14.4px;
}

p {
    line-height: 1.60;
}

img {
    max-width: 100%;
    height: auto;
}
a {
    color: #383E45;
    text-decoration: none;
}

/* ヘッダー */
header h1 img {
    max-width: 120px;
    display: block;
}

header nav ul {
    display: flex;
    gap: 30px;
    list-style-type: none;
}

header div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 15px;
}
/*フッター */
footer {
    text-align: center;
    margin-bottom: 10px;
}

@media ( width >= 600px ){
        header div {
        max-width: 960px;
        margin: 0 auto;
        padding: 10px 60px;
    }

}