<style>
@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c&display=swap');

@font-face {
    font-family: 'じゆうちょう';
    font-display: swap;
    src: url('https://cdn.leafscape.be/jiyucho/Jiyucho_web.woff2') format("woff2");
}

/* 全体に適用する */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* 基本設定 */
body {
    text-align: center;
    background-color: #000;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #fff;
}

/* リンク */
a {
    text-decoration: none;
    font-weight: bold;
    color: #007de3;
}

/* ホバー */
a:hover {
    color: #fff;
}

/* ヘッダー */
header {
    position: relative;
    margin: 25vh auto 5em;
    max-width: 300px;
    text-align: left;
}

/* 画像 */
header img {
    margin-left: 60px;
    width: 100px;
    height: auto;
}

/* 見出し */
header h1 {
    position: absolute;
    top: 55%;
    left: 0;
    transform: rotate(-10deg);
    background-color: #000;
    font-size: 1em;
    font-family: 'じゆうちょう', sans-serif;
    color: #fd5c7d;
}

/* ナビゲーション */
nav {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}

nav ul {
    list-style-type: none;
}

nav ul li a {
    font-family: 'じゆうちょう', sans-serif;
    color: #e4007f;
}

/* 補足情報 */
aside {
    margin: 3em auto 5em;
    font-weight: bold;
    color: #fd5c7d;
}

/* セクション */
section {
    margin: 3em auto;
    padding: 1.5em 0;
    background-color: #efefef;
    text-align: justify;
    word-break: break-all;
    color: #000;
}

/* 見出し */
section h2 {
    margin: 0 auto;
    width: 200px;
    text-align: center;
    border-bottom: 3px solid #fd5c7d;
    font-family: 'じゆうちょう', sans-serif;
    color: #fd5c7d;
}

/* セクション内共通 */
section span {
    font-weight: bold;
}

section mark {
    background: linear-gradient(transparent 50%, #fff 50%);
}

section strong {
    font-weight: bold;
    color: red;
}

section em {
    border-bottom: thin dashed red;
}

section p,
footer {
    margin: 1em auto 1.5em;
    width: 90%;
    max-width: 500px;
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: #fff;
    border: thin solid #000;
    border-radius: 0;
}

textarea {
    width: 200px;
    height: 70px;
}

input[type=text] {
    width: 80px;
}

input[type=submit] {
    width: auto;
}

</style>