@charset"UTF-8";
/*文字エンコードの設定（削除不可）*/

/* Template & Designed by Towako. */
/* https://ninawas.me */


<!--
@font-face
{font-family: IPA 明朝;src: url('http://cdn.leafscape.be/IPAfont/ipam_web.woff')
    format("woff");}


/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

/* 基本設定 */
body {
font-family: "IPA 明朝",'Century','ヒラギノ明朝 Pro W3', 'Hiragino Mincho ProN',  '游明朝','MS P 明朝',sans-serif;
    text-align: center;
    background-color: #fff;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #000;
}

/* リンク */
a {
    text-decoration: none;
    background: linear-gradient(transparent 60%, #efefef 40%);
    color: #000;
cursor:help;
}
   a:hover {
        transition: .5s;
        text-shadow: 0 0 3px #043c78;
        color: transparent;
    }


/* ヘッダー */
header {
    margin: 0 auto;
    padding: 5em 0;
    background-color: #333;
    color: #fff;
}

/* フォントの指定 */
header h1 span,
section h2,
article h1 {
    font-family: 'IPA 明朝', serif;
}

/* 見出し */
header h1 {
    position: relative;
    margin: 0 auto;
    padding: 1.5em;
    width: 220px;
    height: 220px;
    text-align: justify;
    word-break: break-all;
    border: thin solid #fff;
    font-size: 1.2em;
}

header h1::before {
    position: absolute;
    display: block;
    content: '';
    top: 5%;
    left: 5%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

/* フェードイン */
header span {
    animation: FadeIn 5s;
}

/* 段落 */
header p {
    margin: 3em auto;
    color: #c0c0c0;
}

/* セクション */
section {
    margin: 3em auto;
    padding: 3em;
    text-align: justify;
    word-break: break-all;
}

/* 見出し */
section h2 {
    margin-bottom: 0.5em;
    border-bottom: thin solid #000;
    font-size: 1.3em;
}

/* リスト系 */
section ul {
    list-style-type: none;
}

section ol {
    list-style-position: inside;
    list-style-type: decimal-leading-zero;
}

section li {
    margin: 0.5em auto;
}

/* 段落 */
section p {
    margin: 0 auto 1em;
    width: 95%;
    font-size: 12px;
    color: #333;
}

/* フッター */
footer {
    margin: 1em auto 1.5em;
}

/* アーティクル */
article {
    margin: 3em auto;
    width: 80%;
    max-width: 750px;
}

/* 段落 */
article p {
    margin: 1em auto 1.5em;
    text-align: justify;
    word-break: break-all;
}

/* メニュー */
.menu {
    margin: 1em auto 1.5em;
}

.menu li {
    display: inline-block;
    margin: 0 0.5em;
}

/* 線 */
#line {
    width: 100%;
    height: 80px;
    background-color: #333;
}

/* アニメーション */
@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: #c0c0c0;
    border: none;
    border-radius: 0;
}

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: 15px;
    }

    /* ヘッダー */
    header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* 見出し */
    header h1 {
        margin: 0;
        margin-left: auto;
    }

    /* 補足情報 */
    header aside {
        flex-basis: 400px;
        margin-left: 80px;
        margin-right: auto;
        text-align: justify;
        word-break: break-all;
    }

    /* メインコンテンツ */
    main {
        margin: 3em auto;
        max-width: 700px;
    }

    /* セクション内自動2カラム */
    section {
        columns: auto 2;
    }

    /* 見出しを横切って表示させる */
    section h2 {
        column-span: all;
    }

    section li {
        padding-right: 1em;
    }
}

/* 横幅1024px以上で読み込む */
@media screen and (min-width:1024px) {

    /* メイン */
    main {
        max-width: 1000px;
    }
}
