@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* webフォント */
@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700|Meddon|Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&family=Lato:wght@300&family=Zen+Kaku+Gothic+New:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=BIZ+UDMincho&family=Dela+Gothic+One&family=IBM+Plex+Sans+JP:wght@300;400&family=Murecho:wght@100..900&family=Noto+Serif+JP:wght@200&family=Noto+Serif+TC:wght@200&family=Shippori+Mincho&family=Shippori+Mincho+B1&family=Zen+Maru+Gothic:wght@300&family=Zen+Old+Mincho&family=Zeyada&display=swap');


/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Zen Old Mincho', Noto Serif JP;
}

/* 基本設定 */
body {
    text-align: center;
    background-color: #fff;
    line-height: 2;
    letter-spacing: 0em;
    font-size: 16px;
    color: #000;
}

/* リンク */
a {
    text-decoration: none;
    font-weight: bold;
    color: #000000;
}


/* アーティクル */
article {
    margin: 3em auto;
    width: 90%;
    max-width: 800px;
    text-align: justify;
    word-break: break-all;
}

article h1 {
    position: relative;
    margin-bottom: 1em;
}

article h1::before {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 1px;
    background-color: #000;
}

article h1 span {
    padding: 0 1em;
    background-color: #fff;
}

/* メニュー */
.center {
    text-align: center;
}

.center li {
    display: inline-block;
    margin: 0 1.5em;
}

.center li a {
    display: inline-block;
    padding: 0.3em 0.5em;
    text-decoration: none;
    background-color: #009b9f;
    color: #fff;
}

/* 水平線 */
hr {
    border: none;
    border-bottom: 1px dashed #745399;
}



/* アーティクル画像 */
article img {
    display: block;
    margin: 0 auto 1em;
    width: 200px;
    height: auto;
}



/* 横幅768px以上で読み込む */
@media screen and (min-width:768px) {
    main {
        display: flex;
    }

    section {
        flex-basis: 50%;
    }
}