body{
	background-color: white !important;
}
.titlenava{
	line-height: 22px;
}
.story_page_img{
	z-index: 6;
	height: 50px;
	width: 100%;
	position: absolute;
	top: 28px;
    left: 25px;
	display: flex;
}
.story_page_img img {
	border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.video_main{
	width:100%;
	margin: 1em auto;
  }
  .video_main{
	text-align: end;
	font-size: 11px
  }
  video{
	width: 100%;
	height: 100%;
  }
  .story_page_img a p {
	color: rgb(0, 0, 0);
	font-size: 17px;
  }
/*========= レイアウトのためのCSS ===============*/

.sitakoetei{
	bottom: 50px;
}
.menu-btn{
	right: 40px;
}
.menu{
	width: 114vw;
}
.box{
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	background-color: rgb(255, 255, 255);
    padding: 31px;
	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}


/*========= ページネーションCSS ===============*/

.pagination {
	position:fixed;
	right:20px;
	top: 50%;
  	transform: translateY(-50%);
	font-size:1em;
	z-index: 10;
	list-style: none;
}

.pagination a {
	display:block;
	height:20px;
	margin-bottom:5px;
	color:#fff;
	position:relative;
	padding:4px;
}

.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}

/*現在地表示のテキストの設定*/
.pagination a .hover-text {
	position:absolute;
	right:15px;
	top:0;
	opacity:0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
}

.pagination a:hover .hover-text {
	opacity: 1;
}

.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:50%;
	content:"";
	position: absolute;
	margin:auto;
	top:0;
	right:3px;
	bottom:0;
}

/*768px以下は現在地表示のテキストを非表示*/
@media screen and (max-width:768px) { 
	.pagination a .hover-text{
		display: none;
	}	
}

