<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*===================================
世界観ページ　CSS
===================================*/


/* 世界観一覧 */
.worldList{
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto 30px auto;
    list-style: none;
	justify-content: center;
}

.worldList li a{
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
	font-weight: bold;
	font-size: 115%;
}

.worldList li{
    margin-bottom:20px;
}

/* 上下に線が伸びて背景になる */

.worldList li a{
	position: relative;
	overflow: hidden;
	transition: all .2s;
}

/* 現在地とhoverの設定 */
.worldList li.current a,
.worldList li a:hover{
    background: #28b9cc;
	color:#fff;
}

/* 背景がつくのアニメーションの開始を0.5秒遅らせる */
.worldList li a:hover{
	transition-delay: .5s;
}

/* 線の設定 */
.worldList li a:before,
.worldList li a:after {
	content: "";
	position: absolute;
    left: 0;
    height: 2px;
    width:100%;
    background: #28b9cc;
    transition: all .5s;
}

/* 線の位置と変化 */
.worldList li a::before {
    top: 0;
	transform: translateX(-100%);
}
.worldList li a::after {
    bottom: 0;
	transform: translateX(100%);
}

/* hoverした際の線の変化 */
.worldList li a:hover::before ,
.worldList li a:hover::after {
	transform: translateX(0);
}

#story,#world,#nioi,#yado,#machi,#igyou {
	margin-bottom: 20px;
	padding: 10px;
	background-color: #ffffff;
	opacity: 0.8;
}

.koumoku {
	color: #ffffff;
	font-weight: bold;
	font-size: 150%;
	text-align: center;
	text-shadow: 0 0 5px #000000;
	background-image: url("../images/bg_rockywall.png");
	height: 3em;
	padding: 1em;
	margin-bottom: 30px;
}

.koumoku2 {
	width: 200px;
	box-shadow: 5px 5px 0px 0px #000000;
	text-align: center;
	margin: 0 auto;
	padding: 5px 5px;
	background-color: #28b9cc;
}

.koumoku2 h3 {
	font-size: 120%;
	font-weight: bold;
	color: #fff;	
}

.naiyou {
	margin: 0 auto;
	width: 80%;	
	text-align: center;
	margin-bottom: 30px;
	padding: 0 2em 0 2em;
	line-height: 2em;
	background-image: linear-gradient(transparent 0, transparent 97%, #ddd 100%);
	background-size: 100% 2em;
}

.line {
	text-align: center;
	margin: 20px 0;
}</pre></body></html>