@charset "UTF-8";

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

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sacramento|Montserrat');
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
@import url('https://fonts.googleapis.com/css?family=Amiri');

/* 全体に適用する */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

/* 基本設定 */
body {
    background-color: #fff;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: #000;
}

/* リンク */
a {
    text-decoration: none;
    color: #000;
}

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

h1 {
	text-align: center;
	font-size: 28px;
	padding: 0 25px;
	margin-bottom: 20px;
	line-height: 25px;
	font-family: 'Sacramento', cursive;
}

h3 {
	text-align: center;
	font-size: 8px;
	padding: 0 10px;
}

/* 見出し */
article h2 {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
    text-align: justify;
    border-left: 5px solid #efefef;
    font-size: 1.1em;
}

/* 段落 */
article p {
    text-align: justify;
    word-break: break-all;
}

/* 日時 */
article time {
	position: relative;
}

article time span {
    padding: 0 0.5em;
	background-color: #fff;
	font-family: 'Amiri',"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",serif;
    font-size: 0.9em;
}

article time::before {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 50%;
    z-index: -10;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    border-top: thin dotted #000;
}

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

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

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: 11px;
    }

}
