@charset "UTF-8";

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

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&family=Kaushan+Script&family=Sawarabi+Gothic&family=Noto+Sans+JP&display=swap');

/* 全体に適用する */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Noto Sans JP', sans-serif;
}

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

/* 固定背景 */
body::before {
    position: fixed;
    display: block;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: url('20160224180559.jpg') bottom/cover;
}

/* リンク */
a {
    text-decoration: none;
    border-bottom: 1px solid #d6d9fc;
    color: #606060;
}

/* 訪問済みリンク */
a:visited {
    color: #9084f4;
}

/* ヘッダー */
header {
    margin: 3em auto;
}

header h1 {
    font-family: 'Kaushan Script', 'Noto Sans JP', sans-serif;
    background: -webkit-linear-gradient(45deg, #f4dbec, #d6d9fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d6d9fc;
}

header img{
    margin-top: 10px;
    width: 120px;
}

/* 補足情報 */
aside {
    position: relative;
    margin: 3em auto;
    padding: 0.5em 3em;
    width: 250px;
    color: #606060;
}

aside::before,
aside::after,
aside div::before,
aside div::after {
    position: absolute;
    display: block;
    content: '';
    width: 1px;
    height: 52%;
    background-color: #c0c0c0;
}

aside::before,
aside div::before {
    top: 0;
}

aside::before {
    left: 0;
    transform: rotate(25deg);
}

aside div::before {
    right: 0;
    transform: rotate(-25deg);
}

aside::after,
aside div::after {
    bottom: 0;
}

aside::after {
    left: 0;
    transform: rotate(-25deg);
}

aside div::after {
    right: 0;
    transform: rotate(25deg);
}

aside p {
    font-size: 12px;
}

aside span {
    border-bottom: thin dashed #c0c0c0;
}

/* セクションとアーティクル */
section,
article {
    margin: 3em auto;
    width: 80%;
    max-width: 600px;
    text-align: justify;
    word-break: break-all;
}

dd{
   margin-left: 5px;
   font-size: 11px;
   color: #808080;
   margin-top: 0.2em;
}

/* 見出し */
section h2 {
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    font-size: 1.2em;
    color: #606060;
}

section h2 img {
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
}

.left h2 img {
    margin-right: 0.5em;
}

.right h2 img {
    margin-left: 0.5em;
}

h3{
   font-family: 'Sawarabi Gothic', sans-serif;
   color: #ACAFC7;
   font-size: 17px;
   font-weight: 300;
   margin: 12px 0;
}

/* リスト */
section ul {
    list-style-type: none;
}

.left ul {
    margin-left: 0.5em;
    padding-left: 1em;
    border-left: thin solid #c0c0c0;
}

.right {
    text-align: right;
}

.right ul {
    margin-right: 0.5em;
    padding-right: 1em;
    border-right: thin solid #c0c0c0;
}

/* 余白 */
p {
    margin: 1em auto 1.5em;
}
footer {
    margin: 1.5em auto 4em;
}

/* あとがき部分 */
.atogaki {
    margin-top: 1.5em;
    padding: 0.5em;
    border-top: thin dashed #606060;
    font-size: 12px;
    color: #606060;
}

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

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

input[type=text] {
    width: 60px;
    text-alighn: justify;
}

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