<style>
@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Pacifico&family=Sacramento&display=swap');
/* ここまで */

/* 全体に適用する */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Kaushan Script', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;

}

/* 共通設定 */
body {
    line-height: 1.7;
    letter-spacing: 0.1em;
    text-align: justify;
    word-break: break-all;
    background: #fff;
    font-size: 12px;
    color: #000;
}

/* リンク基本設定 */
a {
    transition: background 0.8s;
    text-decoration: none;
    color: #000;
}

/* ホバー */
a:hover {
    background-color: #e3b8bf;
    color: #000;
}

/* コンテナ設定 */
header,
aside,
section {
    margin: 0 auto 2em;
    max-width: 600px;
}

/* ヘッダー*/
header {
    position: relative;
}

header img {
    width: 100%;
}

#head {
    position: absolute;
    bottom: 10%;
    left: 6%;
}

#head h1 {
    font-family: 'Sacramento', cursive !important;
    letter-spacing: 0.2em;
    text-shadow: 1px 1px 15px #fff;
    font-weight: bold;
    font-size: 2.3em;
}

#head span {
    margin: 0 0.5em;
    padding: 0.2em 0.5em;
    background-color: rgba(255, 255, 255, 0.3);
}

/* ナビゲーション */
nav {
    margin-top: 1em;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    margin: 0 0.5em;
    padding: 0.3em 1em;
    background-color: rgba(23, 24, 75, 0.4);
    font-size: 1.1em;
    color: #fff;
}

/* 補足情報 */
aside {
    font-size: 0.9em;
}

aside,
main > section {
    padding: 1em 3em;
}

/* セクション */
section > section:not(.right) {
    padding-left: 1.5em;
    border-left: 1px solid #646464;
}

section .right {
    padding-right: 1.5em;
    border-right: 1px solid #646464;
}

section a:not(.link) {
    text-shadow: 1px 1px 3px #e3b8bf;
}

/* 見出し */
section h2 {
    position: relative;
    margin: 1em auto;
    padding: 0.1em 1em;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    font-size: 1.5em;
    color: #000;
}

section h2::before {
    display: block;
    content: '';
    position: absolute;
    z-index: -100;
    top: 15%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: url(https://alicex.jp/data/nakusikano/img/nakusikano_upld_5.jpg) center;
    transform: rotate(45deg);
}

section h3 {
    font-size: 1em;
}

/* セクション共通設定 */
section p {
    margin: 1em auto 1.5em;
}

section mark {
    padding: 0.2em 0.3em;
    background: linear-gradient(transparent 80%, #c0c0c0 20%);
}

section span {
    font-weight: bold;
}

/* リスト系 */
section strong {
    color: red;
    font-weight: bold;
}

section dl {
    margin: 0.5em auto 1.5em;
}

section dd {
    margin-bottom: 0.5em;
    margin-left: 1.5em;
}

section ul {
    margin: 0.5em auto 1em;
    padding-left: 1em;
    list-style-type: none;
    border-left: thin solid #000;
}

.float li {
    float: left;
    margin-right: 1.5em;
}

.float::after {
    display: block;
    content: '';
    clear: both;
}

/* フッター */
footer {
    margin: 0.5em auto;
    text-align: center;
}

/* 枠線リンク */
.link {
    display: inline-block;
    margin: 0.3em auto;
    padding: 0.1em 0.5em;
    background-color: #4b6a9c;
    color: #fff;
}

/* 線 */
.line {
    padding: 1em 1.5em;
    border: thin solid #000;
}

/* 下線 */
.bottomline {
    border-bottom: thin solid #000;
}

/* 右寄せ */
.right {
    text-align: right;
}

/* 上に戻るボタン */
#Top {
    height: 1px;
}

#PageTop {
    position: fixed;
    bottom: 5%;
    right: 5%;
}

#PageTop a {
    display: block;
    z-index: 100;
    width: 30px;
    height: 30px;
}

/* ボタン画像の大きさを変える */
#PageTop img {
    width: 30px;
    height: auto;
    transform: rotate(45deg)
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: #fff;
    border: thin solid #000;
    border-radius: 0;
}

textarea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

textarea::-webkit-scrollbar-track {
    border-radius: 50px;
}

textarea::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 50px;
}

textarea {
    width: 280px;
    height: 120px;
}

input[type=text] {
    width: 100px;
    height: 1.2em;
}

input[type=submit] {
    width: auto;
    height: auto;
}

/* 横幅768px以上で下記を読み込む */
@media screen and (min-width:768px) {
    body {
        font-size: 13px;
    }

    #PageTop img {
        width: 40px;
        height: auto;
    }

}

</style>