@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
/* フォントのライセンス表記 */
/*
'Abel' is licensed under the Open Font License.
https://fonts.google.com/specimen/Abel
*/


/* 基本設定 */
html {
    background: transparent;
    font-size: 62.5%;
}
body {
    background-image: url(https://gssgkjaku.com/img/back.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    min-height: 100px;
    font-size: 10px;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal; 
    letter-spacing: 0.3em;
    line-height: 1.8;
}
a {
    color: #ffffff;
    text-decoration: none;
}
ul,
ol {
    list-style: none;
}

/* フォント指定まとめて */
h2,
h3,
h4,
.textNav {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

/* 見出し */
h2 {
    margin: 40px 0 20px;
    font-size: 1.2em;
    letter-spacing: .2em;
    text-transform: capitalize;

}
h3 {
    margin: 20px 10px 10px;

}


/* 強調、段落、余白など */
em {
    background: #6967AB;
}
p {
    margin: 0 1em;
}
.space {
    margin: 20px 1em;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}

/* 背景付きボックス */
.box {
    padding: 30px;
    margin: 30px auto;
    background: rgba(105,103,171,0.3);
    box-sizing: border-box;
}

.box_a{
    background: rgba(76, 74, 129, 0.2);
    box-sizing: border-box;
    width: auto;
    margin: 30px;
    padding: 5px;
}


/* ページ全体 */
.allWrap {
    padding: 1px 0;
    min-height: 100vh;
    
}
.allWrap a {
    color: rgba(53, 52, 71, 100);
}
.allWrap a:hover {
    filter: blur(1px);
}


/* メインコンテンツ */
.mainWrap {
    position: relative;
    width: 60%;
     min-height: 100vh;
    padding: 15vh 80px 10vh;
    margin-left: 40%;
    backdrop-filter: blur(3px);
    background: rgba(28, 27, 64, 0.25);
    box-sizing: border-box;
    
}

/* アニメーション設定 */
.mainWrap {
    animation: fadeIn 1s;
}
@keyframes fadeIn {
    from {
        opacity: .0;

    }
    to {
        opacity: 1;
    }
}

/* フォーム関連 */
input[type],
textarea {
    padding: 5px;
    margin-bottom: 5px;
    background: #fff8;
    border: #0000 solid 1px;
    font-family: inherit;
    font-size: 100%;
    color: #000;
}
.nameChangeForm .enter {
    width: 10em;
}
.nameChangeForm .button {
    padding: 5px 10px;
}


/* サブタイトル */
.subTitle {
    display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 13px;
      width: 50%;
      height: 50%;
      padding: 100px;
       box-sizing: border-box;
       text-shadow: #6967AB 1px 0 3px,#6967AB 0 1px 3px ,#6967AB 0 -1px 3px ;
       color: #ffffff;
       font-family: "Shippori Mincho", serif;
       font-size: 15px;
}

/* タイトル */
.mainTitle {
    margin-bottom: 50px;
    font-family: "Shippori Mincho", serif;
    font-size: 5em;
    line-height: 0.1;
    text-shadow: 0 0 10px rgba(105, 103, 171, 1);
}


/* 話一覧 */
.storyList {
    position: relative;
    padding: 10px 10px 1.5em;
    margin-left: 2em;
    border-left: #6967AB solid 1px;
}
.storyList li {
    margin-bottom: 10px;
}
.storyList li a {
    padding: 0 5px;
    color: #ffffff;
}
.storyList li a:visited {

    color: #ffffff;
}


/* 章間の文章用 */
.storyIntro {
    width: 80%;
    margin: 10% auto;
    font-size: 1.3rem;
    line-height: 250%;
}


/* 本文ページ */
.textPage .mainWrap {
    width: 55%;
     min-width: 700px;
    margin: auto;
    animation: none;
    background-color: rgb(36, 10, 54,1);
    font-size: 1rem;
    line-height: 220%;
}
.textPage h2 {
    padding-left: .8em;
    font-family: "Shippori Mincho", serif;
    font-size: 1.7em;
}
.textPage .mainWrap p {
    margin: 0;
    text-indent: 1em;
}


/* 本文ページのナビゲーション */
.textNav ul {
    display: flex;
     justify-content: center;
}
.textNav li {
    margin: 0 1em;
}



/* フッター（削除OK※デフォルト非表示） */
.mainFooter {
    display:contents;
    margin:auto;
    font-size: 8px;
    text-align: center;
    opacity: 0.1;
}


/* レスポンシブ調整用 */
@media (max-width:1000px) {
    body {
        font-size: 1.1rem;
    }
    .mobileWrap {
        max-width: 600px;
        margin: auto;
    }
    .allWrap,
    .textPage {
        background-position: 18% center;
        background-size: cover;
    }
    .subTitle {
        position: static;
        width: 80%;
        height: auto;
         min-height: 300px;
        padding: 20px;
        margin: auto;
        font-size: 1rem;
    }
    .subTitle {
        animation: fadeIn 1s forwards;
    }
    .mainWrap {
        width: 100%;
        padding: 50px 40px;
        margin: auto;
    }
    .mainTitle {
        margin-bottom: 20px;
        font-size: 2em;
        line-height: inherit;
    }
    .nameChangeForm .enter {
        width: 8em;
    }
    .box {
        padding: 1em;
        margin: 20px auto;
    }
    .textPage .mainWrap {
        width: 100%;
         max-width: 500px;
         min-width: 200px;
        background: rgba(28, 27, 64, 0.5);
        font-size: 1.1em;
    }
}

