@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP|Overlock+SC&display=swap');

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

/* 共通設定 */
body {
    line-height: 1.7;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 13px;
    color: #000;
}

/* 背景を固定する */
#bg {
    position: fixed;
    display: block;
    z-index: -100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('https://0deeen0hgi.lsv.jp/project/hndcaptainif/image.jpg') center/cover;
}

/* リンク */
a {
    transition: color .5s;
    color: #000;
}

/* ホバー */
a:hover {
    color: #fff;
}

/* コンテナ基本設定 */
header,
section,
article {
    margin: 3em auto;
    width: 80%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

/* 見出し */
header h1 {
    padding: 2em 0;
    text-shadow: 1px 1px 0 #fff;
    font-size: 18px;
}

/* フォントの指定 */
header h1,
section h2,
li,
li a {
    font-family: 'Overlock SC', 'Noto Serif JP', serif;
}

/* 見出し一行目 */
header h1 span:nth-of-type(1) {
    letter-spacing: 0.33em;
}

/* 見出し二行目 */
header h1 span:nth-of-type(2) {
    letter-spacing: 0.25em;
}

/* 見出し三行目 */
header h1 span:nth-of-type(3) {
    letter-spacing: 0.4em;
}

/* 見出し四行目 */
header h1 span:nth-of-type(4) {
    display: inline-block;
    margin: 0.5em;
    text-indent: 1em;
    letter-spacing: 1em;
    font-size: 21px;
}

/* メニュー */
header ul,
article ul {
    list-style-type: none;
    padding: 0.5em 0;
    background-color: rgba(255, 255, 255, 0.7);
}

header ul li,
article ul li {
    display: inline-block;
    margin: 0 1em;
}

/* ここまで */

/* セクション */
section {
    text-align: justify;
    word-break: break-all;
}

/* セクション見出し */
section h2 {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* リスト系2 */
section ol {
    list-style-type: decimal-leading-zero;
    margin: 0.5em auto;
    padding: 1em 1.5em;
}

section ol li {
    list-style-position: inside;
}

section ul {
    list-style-type: none;
    margin: 0.5em auto;
    padding: 1em 1.5em;
}

/* ここまで */

/* アーティクル */
article {
    text-align: justify;
    word-break: break-all;
}

article p,
.line {
    margin: 1em auto 1.5em;
}

/* フッター */
footer {
    margin: 1.5em auto;
}

/* 中央揃え */
.center {
    text-align: center;
}

/* ライン */
.line {
    height: 1px;
    background-color: #000;
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.2em 0.5em;
    background-color: #fff;
    border: thin solid #000;
    border-radius: 0;
}

input[type=text] {
    width: 100px;
}

input[type=submit] {
    width: auto;
}

textarea {
    width: 280px;
    height: 120px;
}

textarea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

textarea::-webkit-scrollbar-track {
    border-radius: 50px;
}

textarea::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 50px;
}
/* フォームここまで */

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/

/* テキストのコピーガード */
main.story, 
main.story * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
	-webkit-touch-callout: none;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/

