@charset"UTF-8";
@import url("reset.css"); /* 削除禁止 */

@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDMincho&family=Noto+Sans+JP:wght@100..900&display=swap');
/* フッター */
.main-footer{
width: 100%;	
}

/* 前後ナビゲーション */
.frontback-nav{
}
.frontback-nav ul {
    display: flex;
	padding-top: 10px;
	padding-right:10%;
     justify-content: center;
     gap: 0 20px;
	border-top: 3px solid #13d0c3;
}
.frontback-nav li {
	white-space: nowrap;
	display: inline;
}
.text-background-color{
	display: inline;
	padding: 5px;
	color: #FFFFFF;
	background: rgba(19,208,195,0.8);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	font-family: 'BIZ UDPGothic', sans-serif;
}
/* メイン  ゆぱんだ氏*/

/* javaTabs */
.javaContainer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    border: none;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 7px 34px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
}
.javaContainer ul li {
    width: calc(100%/3);
    text-align: center;
    transition: all 0.2s ease;
    padding: 0;
}
.javaContainer ul li:first-child a {
    border-radius: 3px 0 0 3px;
    border-right: solid 1px #eee;
}
.javaContainer ul li:last-child a{
    border-radius: 0 3px 3px 0;
    border-left: solid 1px #eee;
}
.javaContainer ul li a {
    width: 100%;
    display: block;
    line-height: 50px;
    text-decoration: none;
    background: #FFF;
}
li.tab.is-active a {
    background: linear-gradient(45deg, #7dcce8, #7dcce8);
    color: #FFF;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}

.content-tab {
    animation: fadeIn 0.7s ease 0s 1 normal;
}
.content-tab p {
    margin:0;
}
/* ボタンデザイン01 */
.button001 a {
    background: #fff;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    padding: 50px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button001 a:hover {
    background: #7dcce8;
    color: #FFF;
}
.button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
    border-color: #FFF;
}

/* ボタンデザイン02 */
.button002 a {
    background: #fff;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    padding: 50px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	font-size: ;
}
.button002 a:hover {
    background: #7dcce8;
    color: #FFF;
}
.button002 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
	transform: translateX(25%) rotate(-135deg);
    position: absolute;
    top: 50%;
    left: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button002 a:hover:after {
    border-color: #FFF;
}

/* ボタン03 */
.button-return {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1.5px solid #2589d0;
    border-radius: 5px;
    background-color: #fff;
    color: #1ba5d3;
    font-size: 1em;
}

.button-return:hover {
    background-color: #159cd6;
    color: #fff;
}
/* ページネーション*/
.pagination-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
}

.pagination-1 a {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border: 1px solid #2589d0;
    border-radius: 1px;
    color: #2589d0;
}

.pagination-1 a:not(:hover) {
    text-decoration: none;
}

.pagination-1 .current a {
    background-color: #2589d0;
    color: #fff;
    pointer-events: none;
}

.pagination-1 .prev a,
.pagination-1 .next a {
    gap: 0 4px;
    width: auto;
    padding: .5em .8em;
    line-height: 1;
}

.pagination-1 .prev a::before,
.pagination-1 .next a::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    content: '';
}

.pagination-1 .prev a::before {
    border-bottom: 1px solid #2589d0;
    border-left: 1px solid #2589d0;
}

.pagination-1 .next a::after {
    border-top: 1px solid #2589d0;
    border-right: 1px solid #2589d0;
}
/*メイン小説の部分*/

main{
	display:block; /* IE対策 */
	padding:40px 0px;
}
	/*wrapper（全体囲み）*/

#wrapper{
	margin: 0;
    padding: 0 60px 10px;
    box-sizing: border-box;
    position: relative;
	}


/* 小説のタイトル */
h1{
	margin:80px　auto;
	font-size:48px;
	line-height: 56px;
	text-align:center;
	font-family: "Sawarabi Gothic", sans-serif;
}
/* 文字幅 */
.auto-br span {
  display: block;
  line-height: 180%;
}

/* 地の文 */
.normal-line {
  margin: 0;
}

/* セリフ・括弧始まり */
.auto-br span {
  display: block;
  line-height: 180%;
}

/* セリフ（最初の行） */
.talk-line {
  margin: 0.8em 0 1.2em;
}

/* 連続するセリフ */
.talk-line.talk-continue {
  margin-top: 0.2em;
}


p{
	margin:5px 10px; /* 上下の余白 */
	width: auto;
	line-height: 180%;
    font-size: 15px !important;
	}
/* リンク */

a{
	text-decoration:none;
}

a:link{
	color:#1ba5d3;
}

a:visited{
	color:#1ba5d3;
}

a:hover {
	color:#b9e1ed;
}

a:active {
	color:#1ba5d3;
}

/* あとがき */
.atogaki{
	margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
	padding-top:30px;
	margin-bottom:40px;
	line-height: 26px;
	border-top: 3px solid #13d0c3;
}

.h2-atogaki {
	display:block; /* IE対策 */
	margin:10px auto ;
	display: flex;
	flex-direction: row;
	font-family: "Sawarabi Gothic", sans-serif;
	font-size:22px;
	}
h2::before {
        display: none;
    }


/*スマホ
================================================= */

@media screen and (min-width:0px) and (max-width:736px){


	/* =================================================
	全体指定
	================================================= */

	* {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	html{
		font-size: 62.5%;
		height: 100%;
	}

	body {
		width:100%;
		font-size: 1.3rem;
		line-height:1.7em;
		overflow-x: hidden;
		-webkit-text-size-adjust: 100%;
		overflow-y: scroll;
		overflow-x: hidden;
	}

	img {
		height: auto;
		width: auto;
		max-width:100%;
		vertical-align: bottom;
	}


	/* =================================================
	ヘッダー・見出し・文字
	================================================= */

	/* 小説のタイトル */

	h1{
		margin: 20px auto;
		font-size:24px;
		line-height: 30px;
	}

	/* =================================================
	コンテンツ
	================================================= */

	/*メイン小説の部分*/

/*メイン小説の部分*/

main{
	display:block; /* IE対策 */
	padding:10px 0px;
}
	/*wrapper（全体囲み）*/

#wrapper{
	margin: 0;
    padding: 0 8px 10px;
    box-sizing: border-box;
    position: relative;
	}

	/* =================================================
	フッター
	================================================= */

.atogaki {
		margin-bottom: 20px;
		line-height: 24px;

	}

.atogaki p{
		margin:10px 0px !important;
	}

}

/* タブレット端末
================================================= */

@media screen and (min-width:737px) and (max-width:1024px){

	/* =================================================
	全体指定
	================================================= */

	body {
		font-size:14px;
		line-height:2em;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}

	img {
		max-width: 100%;
		height: auto;
		width: auto;
		vertical-align: bottom;
	}

	/* =================================================
	ヘッダー・その他・見出し・文字
	================================================= */

	/* 小説のタイトル */

	h1{
		margin: 40px auto;
		font-size:32px;
		line-height: 42px;
	}

	/* =================================================
	コンテンツ
	================================================= */


	/*メイン小説の部分*/

/*メイン小説の部分*/

main{
	display:block; /* IE対策 */
	padding:20px 0px;
}
	/*wrapper（全体囲み）*/

#wrapper{
	margin: 0;
    padding: 0 30px 10px;
    box-sizing: border-box;
    position: relative;
	}


	/* =================================================
	フッター
	================================================= */


.atogaki p{
		margin:10px 0px !important;
	}

	/* =================================================
	背景用カスタマイズ
	================================================= */

}

/*パソコン
================================================= */

@media screen and (min-width:1025px){

	/* =================================================
	全体指定
	================================================= */

	html {
		scrollbar-arrow-color:#555;
		scrollbar-face-color:#555;
		scrollbar-3dlight-color:#555;
		scrollbar-darkshadow-color:#555;
		scrollbar-highlight-color:#555;
		scrollbar-shadow-color:#555;
		scrollbar-track-color:#fff;
		height: 100%;
	}

	body {
		font-size:16px;
		line-height:2em;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}

	img {
		max-width: 100%;
		height: auto;
		width: auto;
		vertical-align: bottom;
	}
	}
	/* 水源前氏/フォント切り替え */
        select {
            color: #333;
        }

        #font-switch input[type="radio"] {
            display: none;
        }

        #font-switch label {
            display: inline-block;
            cursor: pointer;
            padding: 8px 12px;
            background-color: #fff;
            border: 1px solid #bbb;
            color: #333;
            cursor: pointer;
            outline: none;
            appearance: none;
            border-radius: 5px;
            margin: 10px 10px 0 0;
            transition: background-color 0.3s ease;
            color: #333;
            font-size: 16px;
        }

        #font-switch label:hover {
            background-color: #bbb;
        }

        #font-switch input[type="radio"]:checked+label {
            background-color: #5b5b5b;
            color: #fff;
        }

        .font-size-button {
            display: inline-block;
            cursor: pointer;
            padding: 8px 12px;
            background-color: #fff;
            border: 1px solid #bbb;
            color: #333;
            cursor: pointer;
            outline: none;
            appearance: none;
            border-radius: 5px;
            margin: 10px 10px 0 0;
            font-size: 16px;
            transition: background-color 0.3s ease;
            color: #333;
        }

        .font-size-button.font-size-active {
            background-color: #5b5b5b;
            color: #fff;
        }
/* デフォルトフォント無効用 */
p, h2, h3, h4, .time, .tsuiki, .main-nav, .back-top {
    font-family: inherit;
}