<style>
@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP|Parisienne&display=swap');

@font-face {
    font-family: 'XANO明朝';
    font-display: swap;
    src: url('https://cdn.leafscape.be/XANO-mincho/XANO-mincho_web.woff2') format("woff2");
}

/* 全体に適用する */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

/* 基本設定 */
body {
    background-color: #fff;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #000;
}

/* リンク */
a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

/* 訪問済みリンク */
a:visited {
    color: #888;
}

/* コンテナ */
#wrap {
    margin: 10em auto 3em;
}

/* ヘッダー */
header {
    margin: 0 auto 8em;
}

/* ヘッダー画像サイズ */
header img {
    width: 200px;
}

/* 見出し */
header h1 {
    margin: 1em auto;
    font-size: 2em;
}

/* フォントの指定 */
header h1 a,
article h1 {
    font-family: 'XANO明朝', serif;
}

/* フォントの指定 */
header a,
footer,
footer a {
    font-family: 'Parisienne', cursive;
}

/* セクションとアーティクル */
section,
article {
    text-align: justify;
    word-break: break-all;
}

/* セクション */
section {
    margin: 0 auto;
    padding: 2.5em;
    background-color: #222;
    color: #fff;
}

/* リンク */
section a {
    color: #fff;
}

/* 見出し */
section h2 {
    margin-bottom: 0.5em;
    padding: 0.2em 0.5em;
    display: inline-block;
    border: thin solid #fff;
    font-size: 1em;
}

/* リスト系 */
section ul {
    list-style-type: none;
    margin-left: 1em;
}

section ul li {
    margin: 0.5em auto;
}

section ul li a {
    margin-right: 0.5em;
}

section ul li span {
    padding-left: 1em;
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    color: #c0c0c0;
}

section ol {
    list-style-position: inside;
    margin-left: 1em;
}

/* アーティクル */
article {
    margin: 3em auto;
    width: 80%;
    max-width: 500px;
}

/* 見出し */
article h1 {
    margin-bottom: 1em;
    text-align: center;
}

/* フッター */
footer {
    margin: 1em auto 1.5em;
}

/* メニューリンク */
.menu {
    margin: 2em auto 1.5em;
    text-align: center;
}

.menu ul {
    list-style-type: none;
}

.menu ul li {
    display: inline-block;
}

/* 飾り線 */
.line {
    width: 100%;
    height: 80px;
    background-color: #222;
}

/* フォーム系 */
textarea,
input[type],textarea{
height:50px;
width:80%;
font-family:"Arsenal","HGSゴシックM", sans-serif;
font-size:12px;
letter-spacing:1px;
line-height:150%;
background:#fff;
color:#000000;
border:solid 1px #000000;
margin:5px 10px;
padding:2px 5px;
-webkit-appearance: none;
box-shadow:none;
border-radius:5px;}

input[type=text]{
margin:4px;
height:auto;
width:80px;}

input[type=submit]{
margin:4px;
height:auto;
width:35px;
cursor:pointer;
text-shadow:none;
border:solid 1px #000000;
background:#fff;
color:#000000;
font-weight:normal;
}

/* 横幅768px以上で読み込む */
@media screen and (min-width:768px) {

    /* フォントサイズ */
    body {
        font-size: 14px;
    }

    /* コンテナサイズ */
    #wrap {
        max-width: 700px;
    }

    /* フロート解除 */
    #wrap::after {
        display: block;
        content: '';
        clear: both;
    }

    /* ヘッダーをフロートさせる */
    header {
        float: left;
    }

    /* 回り込みの指定 */
    main {
        overflow: hidden;
    }

    /* セクションの横幅 */
    section {
        width: 80%;
    }
}
</style>