@import url('https://fonts.googleapis.com/css?family=Cinzel|Noto+Serif+JP&display=swap');

@font-face {
    font-family: 'はれのそら明朝';
    font-display: swap;
    src: url('https://cdn.leafscape.be/Harenosora/harenosora_web.woff2') format("woff2");
}


<style>@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=Cinzel|Noto+Serif+JP&display=swap');

@font-face {
    font-family: 'はれのそら明朝';
    font-display: swap;
    src: url('https://cdn.leafscape.be/Harenosora/harenosora_web.woff2') format("woff2");
}

/*-------------------------------------------------
このフォントはIPAフォントライセンスv1.0の下で提供されています。
http://ipafont.ipa.go.jp/ipa_font_license_v1.html
オリジナルのフォントは以下から取得できます。
<blockquote class="wp-embedded-content" data-secret="Zcpa0mdkdz"><a href="https://fontopo.com/?p=377">はれのそら明朝</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);" src="https://fontopo.com/?p=377&embed=true#?secret=Zcpa0mdkdz" data-secret="Zcpa0mdkdz" width="500" height="282" title="“はれのそら明朝” — fontopo" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
http://ipafont.ipa.go.jp/
-------------------------------------------------*/

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

/* 基本設定 */
body {
    text-align: center;

    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #3a3a3a;
}

/* リンク */
a {
    text-decoration: none;
    color: #3a3a3a;
}

/* 背景画像 */
#bg {
    position: fixed;
    display: block;
    content: '';
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100vh;
    background: url('sakura.jpg') center/cover;
}


/* 共通 */
header,
section,
article {
    margin: 3em auto 3em;
    text-align: justify;
    word-break: break-all;
}


header,
section {
    width: 80%;
}

/* 見出し */
header h1 {
    margin-bottom: 0.5em;
}

/* フォントの指定 */
header h1,
section h2,
article h1 {
    font-family: 'はれのそら明朝', serif;
}

/* 段落 */
header p {
    margin: 1em auto 1.5em;
    color: #a3a3a3;
}

/* セクション */
section {
    position: relative;
    padding: 0.5em 1em;
    border: thin solid #fff;
}

/* 見出し */
section h2 {
    position: absolute;
    top: -1.8em;
    left: 0;
    font-size: 1.2em;
}

/* 段落 */
section p {
    color: #c0c0c0;
}

/* 重要事項 */
section strong {
    font-weight: bold;
    color: red;
}

/* リスト */
section ul {
    margin: 1em auto;
    list-style-type: none;
}

section ol {
    margin: 1em auto;
    list-style-position: inside;
}

section li {
    margin: 0.5em auto;
}

section li a {
    display: inline-block;
    padding: 0.2em 0.5em;
    background-color: rgba(255, 255, 255, 0.5);
}

/* アーティクル */
article {
    padding: 3em;
    max-width: 500px;
    background-color: #fff;
    font-size: 13px;
    color: #000;
}

/* 見出し */
article h1 {
    margin-bottom: 1em;
    border-bottom: thin solid #000;
}

article h2 {
    margin-bottom: 1em;
}


/* 余白 */
article p,
footer,
.menu {
    margin: 1em auto 1.5em;
}

/* メニュー */
.menu li {
    border: thin solid #7d7d7d;
    padding: 0.3em 1em;
    display: inline-block;
    margin: 0 0.5em;
}

.menu li a {
    font-weight: bold;
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: rgba(0, 0, 0, 0.3);
    border: thin solid #fff;
    border-radius: 0;
    color: #fff;
}

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;
    }

    /* フォントサイズ */
    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1.3em;
    }

    section h2 {
        font-size: 1.3em;
    }
}

/* 横幅1024px以上で読み込む */
@media screen and (min-width:1024px) {
    section {
        margin: 3em 0;
    }

    /* フレックスボックス */
    main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
        width: 80%;
    }

    section {
        flex-basis: 48%;
    }
}

</style>