<style>
@charset "UTF-8";

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

/* ウェブフォントの読み込み */
@font-face {
    font-family: 'IPA 明朝';
    font-display: swap;
    /* テキストが読み込まれてからフォントを適用する */
    src: url('https://cdn.leafscape.be/IPAfont/ipam_web.woff2') format("woff2");
}

/*-------------------------------------------------
このフォントはIPAフォントライセンスv1.0の下で提供されています。
 
http://ipafont.ipa.go.jp/ipa_font_license_v1.html
 
-------------------------------------------------*/
/* ここまで */

/* 全体に適用する */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 游明朝, 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'IPA 明朝', serif;
}

/* 共通設定 */
body {
    text-align: center;
    line-height: 2.5;
    letter-spacing: 0.2em;
    background-color: #fff;
    font-size: 13px;
    color: #000;
}

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

/* ホバー */
a:hover {
    background-color: #fff;
    color: #473f77;
}

/* メインコンテンツ */
main {
    position: relative;
}

/* 見出し */
h1 {
    position: absolute;
    top: 1.5em;
    left: 5%;
    margin: 0 auto;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    letter-spacing: 0.5em;
    background: url('Kinich.PNG');
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* アーティクル */
article {
    padding: 3em;
}

/* アーティクル左 */
.left {
    text-align: right;
}

/* アーティクル右 */
.right {
    text-align: left;
}

/* 水平線 */
hr {
    margin: 1.5em auto;
    width: 200px;
    height: 4px;
    background: url('yakon.PNG');
}

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

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

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

textarea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

textarea::-webkit-scrollbar-track {
    border-radius: 50px;
}

textarea::-webkit-scrollbar-thumb {
    background-color: #473f77;
    border-radius: 50px;
}

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

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

/* 横幅768px以上で下記を読み込む */
@media screen and (min-width:768px) {
/* フォントサイズ */
    body {
        font-size: 14px;
    }
/* フレックスボックス */
    main {
        margin: 0 auto;
        display: flex;
    }
/* 見出し */
    h1 {
        top: 1.8em;
        left: 50%;
        transform: translateX(-50%);
        letter-spacing: 1em;
    }
/* アーティクル */
    article {
        flex-basis: 50%;
    }
}
</style>