@charset "UTF-8";

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
}

/* root */
:root {
    --color: #67b5b7;
    --white: #ffffff;
    --black: #888;
}

/* 基本設定 */
body {
    background-color: #fff;
    text-align: left;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-family: "Zen Maru Gothic", serif;
    color: #444;
}

header { font-size:12px; }

/* リンク */
a {
    color: #444;
    text-decoration:none;
}

h1 { font-family: "Sacramento", serif; font-size:28px;}

header {
    margin: 50px auto 35px;
    text-align: center;
}

main {
    margin: 20px auto;
    width: 80%;
    max-width: 400px;
}

header img {
    display: block;
    margin: 15px auto;
    width: 140px;
    height: auto;
}

aside { text-align:center; line-height:2.3; }

.menu {
    margin: 2em auto; font-size:9px;
    text-align: center;
}

<meta name="viewport" content="width=device-width" />
<meta name="robots" content="noindex,noarchive,nofollow,noimageindex">