<style>
@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=Caveat|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 {
    background-color: #090909;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #fff;
}

/* リンク */
a {
    text-decoration: none;
    font-weight: bold;
    color: #cccccc;
}

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

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    min-height: 100vh;
    background-color: #000;
}

/* ヘッダー画像 */
header img {
    margin: 3em auto 1.5em;
    width: 60%;

}

/* 縦書き */
header h1,
header aside {
    margin: 0 auto;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

/* 大見出し */
header h1 {
    margin-bottom: 0.5em;
    font-family: 'XANO明朝', serif;
    color: #fff;
}

/* ヘッダー内リンク */
header aside a {
    margin: 0.5em auto;
    color: #fff;
}

/* メインコンテンツ */
main {
    padding-left: 25%;
    padding-right: 8%;
}


/* セクションとアーティクル */
section,
article {
    text-align: justify;
    word-break: break-all;
}

section {
    margin: 3em 0;
}

/* 見出し */
section h2 {
    letter-spacing: 0;
    font-family: 'Caveat', 'Noto Serif JP', serif;
}

/* 段落 */
section p,
footer p {
    font-size: 0.9em;
    color: #c7b370;
}

/* マーカー */
section mark {
    padding: 0 0.3em;
    background: url('banner.png') center/contain;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff;
}

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

/* 新着 */
section .new {
    border-bottom: thin solid #393e4f;
}

/* リスト */
section ul,
section ol {
    margin: 0.5em auto 1em 1em;
    padding-left: 1em;
    border-left: thin solid #393e4f;
}

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

section ol {
    list-style-position: inside;
}

section .float li {
    display: inline;
}

/* 背景色リンク */
section .background a {
    padding: 0 0.5em;
    border-radius: 20px;
    background-color: #393e4f;
    color: #fff;
}

/* アーティクル */
article {
    margin: 3em auto;
    width: 80%;
    max-width: 500px;
}

/* 段落 */
article p {
    margin: 1em auto 1.5em;
}

/* フッター */
footer {
    margin: 1em auto 1.5em;
    padding-right: 8%;
    text-align: right;
}

/* メニュー */
.menu li {
    display: inline-block;
    margin: 0 0.5em;
}

/* 月 */
.FQM,
.FM,
.LM,
.LQM {
    display: inline-block;
    margin-right: 0.3em;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.FQM {
    box-shadow: 3px 2px 0 #fff inset;
}

.FM {
    background-color: #fff;
}

.LQM {
    box-shadow: -3px -2px 0 #fff inset;
}

.LM {
    box-shadow: 0.2px 0.2px 0.1px 0.5px #fff inset;
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: #fff;
    border: 1px 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;
    }

    main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    section {
        flex-basis: 50%;
    }
}

hr {
	position: relative;
	overflow: visible;
	text-align: center;
	color: #fff;
	border-width: 1px 0 0 0;
	border-style: dotted;
	border-color: #fff;
}
hr::after {
	position: absolute;
	top: -0.7em;
	left: 50%;
	display: inline-block;
	content: '\02749';
	background: #000;
}
</style>