<style>
@charset "UTF-8";

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

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans|M+PLUS+Rounded+1c|Monoton&display=swap');
/* ここまで */

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* 共通設定 */
body {
    background-color: #f6f6f6;
    text-align: justify;
    word-break: break-all;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #606060;
}

/* リンク基本設定 */
a {
    text-decoration: none;
    color: #a47cbe;
}

/* ホバー */
a:hover {
    background-color: #ddbcc9;
}

/* ヘッダー */
header {
    padding-top: 35vh;
    min-height: 100vh;
    text-align: center;
}

#Head,
h1 span {
    background: url('http://endofwinter.sakura.ne.jp/img/tim-foster-jwaax2YtS3U-unsplash.jpg') left;
}

#Head {
    display: inline-block;
    padding: 0.3em;
    animation-name: SlideDown;
    animation-duration: 1s;
}

h1 {
    background-color: #f6f6f6;
}

h1 span {
    padding: 0 0.5em;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Monoton', 'M PLUS Rounded 1c', sans-serif;
    font-style: normal;
}

/* ヘッダーここまで */

/* ナビゲーション */
nav {
    margin: 1.5em auto;
    animation-name: FadeIn;
    animation-duration: 3s;
}

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

nav ul li {
    display: inline-block;
    margin: 0 0.8em;
}

nav ul li a {
    padding: 0.2em 0.5em;
}

/* フォントの指定 */
nav ul li a,
aside,
h2,
h3,
footer,
footer a {
    font-family: 'Josefin Sans', 'M PLUS Rounded 1c', sans-serif;
}

/* 補足情報 */
aside {
    display: inline-block;
    margin-top: 1.5em;
    padding: 0 1em;
    background: linear-gradient(to right, #ddbcc9, #b4afc8);
    font-size: 11px;
}

/* セクション */
section {
    margin: 4em 0;
    padding: 2em;
    background-color: #fff;
}

section a {
    font-weight: bold;
}

/* 見出し */
section h2 {
    margin-bottom: 1em;
    text-align: center;
    font-size: 1.5em;
}

section h3 {
    display: inline-block;
    margin-bottom: 0.5em;
    background: linear-gradient(transparent 80%, #ddbcc9 20%);
}

/* セクション内共通設定 */
section p {
    margin: 0.5em auto 1.5em;
}

section span {
    font-weight: bold;
}

section mark {
    background-color: #ddbcc9;
}

section em {
    border-bottom: thin dashed red;
}

section strong {
    font-weight: bold;
    color: red;
}

section mark,
.link {
    margin: 0.3em auto;
    padding: 0.1em 0.5em;
}

/* リスト系 */
section dl,
section ul {
    margin: 1em auto 1.5em;
}

section dd {
    margin-left: 1.5em;
    margin-bottom: 0.5em;
}

section ul:not(.list) {
    list-style-type: none;
}

section ul.list {
    list-style-position: inside;
}

section ul.yoko li {
    display: inline-block;
    margin-right: 0.5em;
}

/* フッター */
footer {
    margin: 1.5em auto;
    text-align: center;
}

/* 枠線リンク */
.link {
    display: inline-block;
    border: thin solid #a47cbe;
    font-weight: normal;
}

/* 段落横線 */
.line {
    margin-left: 1em;
    padding-left: 1em;
    border-left: 3px solid #ddbcc9;
}

/* 右揃え */
.right {
    text-align: right;
}

/* 上に戻るボタン着地点 */
#Top {
    height: 1px;
}

/* 上に戻るボタン */
#PageTop {
    position: fixed;
    bottom: 4%;
    right: 5%;
}

/* 上に戻るボタンリンク部分 */
#PageTop a {
    display: block;
    z-index: 100;
    font-size: 25px;
}

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

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

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

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

/* フォーム系ここまで */

/* アニメーション */
@keyframes SlideDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 横幅768px以上で下記を読み込む */
@media screen and (min-width:768px) {
    body {
        font-size: 14px;
    }

    /* フレックスボックス */
    main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 700px;
        margin: 0 auto;
    }

    /* フォントサイズ */
    h1 span {
        font-size: 65px;
    }

    nav ul li a {
        font-size: 1.5em;
    }

    aside {
        font-size: 1em;
    }

    /* セクション内自動2カラム */
    .columns {
        flex-basis: 100%;
        columns: auto 2;
    }

    /* カラムを横切って見出しを表示させる */
    .columns h2 {
        column-span: all;
    }

    section {
        flex-basis: 50%;
    }

    /* 上に戻るボタンリンク部分 */
    #PageTop a {
        font-size: 35px;
    }
}

/* 横幅1024px以上で下記を読み込む */
@media screen and (min-width:1024px) {
    body {
        font-size: 15px;
    }

    main {
        max-width: 1000px;
    }

}
/* https://ninawas.me/2019/popular/index.html */
</style>