@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap');

@font-face {
    font-family: 'XANO明朝';
    font-display: swap;
    src: url('https://cdn.leafscape.be/XANO-mincho/XANO-mincho_web.woff2') format("woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

/* 基本設定 */
body {
    text-align: center;
    background-color: #111;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #fff;
}

/* リンク */
a {
    padding: 0.2em;
    text-decoration: none;
    color: #fff;
}

/* ホバー */
a:hover {
    border: none;
}

/* 訪問済みリンク */
a:visited {
    color: #bbb;
}

/* 背景画像 */
#bg {
    position: fixed;
    top: 0;
    right: 5%;
    width: 100px;
    height: 100vh;
    z-index: -100;
    background: url('image/02.jpg') 50%/cover;
}

/* ヘッダーとセクション */
header,
section {
    margin: 3em auto;
    width: 90%;
    max-width: 600px;
}

/* 文字揃え */
header,
section,
aside,
article {
    text-align: justify;
    word-break: break-all;
}

/* ヘッダー見出し */
header h1 {
    padding-left: 0.5em;
    border-left: 5px solid #fff;
    line-height: 1.3;
    font-family: 'XANO明朝', serif;
    font-size: 1.2em;
    color: #fff;
}

/* 補足情報 */
aside {
    margin-top: 1em;
    width: 65%;
    font-size: 11px;
    color: #bbb;
}

/* リスト系 */
section ol {
    list-style-position: inside;
    list-style-type: decimal-leading-zero;
}

section ul {
    list-style-type: none;
}

section li {
    margin: 1em auto;
}

/* セクションリンク */
section a {
    padding: 0;
    border-bottom: thin solid #666;
    background-color: transparent;
}

/* 段落 */
section p {
    font-size: 11px;
    color: #606060;
}

/* 重要事項 */
section strong {
    font-weight: bold;
    color: #b01c37;
}

header strong {
    font-weight: bold;
    font-size: 1.2em;
    color: #b01c37;
}

/* アーティクル */
article {
    padding: 2em;
    background-color: #fff;
}

/* アーティクル見出し */
article h1 {
    margin-bottom: 1em;
    font-size: 1.8em;
    text-align: center;
}

/* アーティクル段落 */
article p {
    margin: 1em auto 1.5em;
    max-width: 600px;
}

/* フッター */
footer {
    margin: 1em auto 1.5em;
    font-size: 11px;
}

/* 画像 */
.imagebox {
    width: 100%;
    height: 80px;
    background: url('image/02.jpg') center 51%/cover;
}

/* メニュー */
.menu {
    margin: 1.5em auto;
    text-align: center;
}

.menu li {
    display: inline-block;
    margin: 0 1em;
}

.menu li a {
    padding: 0.2em 0.5em;
    border: thin solid #111;
    font-size: 0.9em;
    color: #111;
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: #fff;
    border: thin solid #000;
    border-radius: 0;
}

textarea {
    width: 200px;
    height: 70px;
}

input[type=text] {
    width: 80px;
}

input[type=submit] {
    width: auto;
}

/* 横幅768px以上で読み込む */
@media screen and (min-width:768px) {

    /* フォントサイズ */
    body {
        font-size: 14px;
    }

    /* 背景画像 */
    #bg {
        width: 230px;
    }

    /* 見出しフォントサイズ */
    header h1 {
        font-size: 1.5em;
    }

}

/* 横幅1024px以上で読み込む */
@media screen and (min-width:1024px) {

    /* 背景画像 */
    #bg {
        width: 330px;
    }

}

/* 横幅1440px以上で読み込む */
@media screen and (min-width:1440px) {

    /* フォントサイズ */
    body {
        font-size: 15px;
    }

    /* 背景画像 */
    #bg {
        width: 430px;
    }

}