@charset "UTF-8";
/* Template & Designed by Towako. */
/* https://ninawas.me */

@import url('https://fonts.googleapis.com/css?family=Sacramento&display=swap');

/* 全体に適用する */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

/* 基本設定 */
body {
    text-align: center;
    background-color: #fff;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #000;
}

/* リンク */
a {
    text-decoration: none;
    transition: color .5s;
    color: #000;
}

/* ホバー */
a:hover {
    color: #fff;
}

/* フォントを指定する */
h1,
h2,
time,
.link {
    font-family: 'Sacramento', cursive;
}

/* 見出し */
h1 {
    margin: 0.5em auto;
    letter-spacing: 0;
}

/* アーティクル */
article {
    margin: 3em auto;
    padding: 1em;
    width: 80%;
    max-width: 500px;
    background: repeating-linear-gradient(-45deg, #fff 0, #fff 2px, #efefef 2px, #efefef 4px);
}

/* 見出し */
article h2 {
    font-size: 2em;
    letter-spacing: 0;
}

/* 段落 */
article p {
    margin: 1em auto 1.5em;
    text-align: justify;
    word-break: break-all;
}

/* フッター */
footer {
    margin: 1em auto 1.5em;
}

/* ボックス */
.box {
    padding: 1em 1.5em;
    background-color: rgba(255, 255, 255, 0.7);
}

/* 右揃え */
.right {
    margin: 1em auto 1.5em;
    text-align: right;
}

/* 追記リンク */
.link {
    padding: 0.2em 0.5em;
    border: thin solid #000;
    font-size: 15px;
}

/* ライン */
.line {
    margin: 1em auto;
    width: 10%;
    height: 1px;
    background-color: #000;
}

/* 画像サイズ */
.header {
    margin-top: 3em;
    width: 335px;
    height: 130px;
}

img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    touch-callout: none;
    user-select: none;
}

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

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

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

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


/* 横幅768px以上で下記を読み込む */
@media screen and (max-width:767px) {
    #header img {
        width: 100%;
    }