<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
===================================*/

body {
	background-image: url("../images/bg_rockywall_02.png");
	background-color: #efefef;
	background-repeat:repeat; 
	font-size: 16px;
}

a:hover {
	opacity: 1;
	color: #28b9cc;
	text-decoration: none;
	transition: all .5s;
}

a:active {
	color: #e1007f;
	text-decoration: none;
	}

header {
	height: 130px;
	background-color: #000000;
	opacity: 0.85;
	position: relative;
	z-index: 4;
}

#icon_switch {
	width: 80px;
	margin-left : 20px
}

#icon_steam {
	width: 150px;
	margin: 0 0 10px 30px;
}


#nienomachi_logo {
	width: 149px;
	margin : 5px 0 0 20px;
}

/* ここから / 言語切り替えボタンの設定 */
#language_space {
	width: 150px;
	text-align: right;
	color: #fff;
	position: absolute;
	top: 10px;
	right: 15px;
	border: 1px solid #fff;
	z-index: 5;
}

/** Custom Select **/
.custom-select-wrapper select {
	display: none;
  }

.custom-select {
	position: relative;
    display: inline-block;
  }

.custom-select-trigger {
	position: relative;
	display: block;
	width: 150px;
	padding: 0 50px 0 22px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	line-height: 40px;
    cursor: pointer;
    }

/*　矢印　*/
.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 10px;
	height: 10px;
    top: 50%;
	right: 20px;
    margin-top: -3px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
      }

.custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
    transform: rotate(-135deg)
	translateY(-50%);
      }

 .custom-options {
	position: absolute;
	display: block;
	top: 100%;
	left: -1px;
	right: 1px;
	min-width: 100%;
	margin: 0;
	border: 1px solid #fff;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0,0,0,.07);
	background: #000;
	transition: all .4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
  }

.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
	right: 25px;
    width: 7px;
	height: 7px;
    margin-bottom: -4px;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
    }

.custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: 1px solid #fff;
    font-size: 14px;
	font-weight: bold;
	text-align: center;
    color: #fff;
	text-shadow: #000 0 0 10px;
    line-height: 47px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    }

.custom-option:last-of-type {
      border-bottom: 0;
    }

.custom-option:hover,.custom-option.selection {
	background: #90BE59;
    }

/* ここまで / 言語切り替えボタンの設定 */

/*　ここから / グローバルナビ　*/
#grobalNavi {
	display:block;
}

#grobalNavi {
	width: 600px;
	margin: 0 auto 0 auto;
}

#grobalNavi nav ul {
	list-style-type: none;
	padding-left: 0;
}

nav ul li {
	float: left;
	width: 150px;
	height: 50px;
	position: relative;
}

/*　グローバルナビのホバー設定　*/
.menu img {
	height: auto;
	left: 0;
	position: absolute;
	width: 100%;
}

/* 2枚目の画像は初期透明 */
.menu img:last-of-type {
	opacity: 0;
	transition: opacity 1s;
}

/* 現在ページのmenu画像だけを変える */
#current img:last-of-type {
	opacity: 1;
	pointer-events: none;
}
/*　ここまで / グローバルナビ　*/

/* 基本の幅設定 */
#main,#wrap {
	width: 900px;
	margin: 0 auto 0 auto;
}
main {
margin: 0px 0 5rem 0; 	border-top: 10px double #000;	
}
/* hoverで紙吹雪付き */
.menu:hover img {
	opacity: 1;
}

/* 上に戻るぼたん */
a.gototop {
	background-color: #90BE59;
	bottom: 5%;
	color: #fff;
	display: none;
	font-size: 2rem;
	height: 3rem;
	line-height: 3.8rem;
	position: fixed;
	right: 5%;
	text-align: center;
	text-decoration: none;
	width: 3rem;
	z-index: 3;
}

/* 共通フッダー */
footer {
	clear: both;
	height: 180px;
	padding-top: 40px;
	color: #ffffff;
	text-align: center;
	font-size: 60%;
	line-height: 180%;
	background-color: #000000;
	opacity: 0.85;
	border-top: 10px double #fff;
}

/* ダミースペース設定用 */
#dummy {
	width: 900px;
	height: 768px;
}

/*紙吹雪設定*/

#particles-js{ 
  position: fixed;/*描画固定*/
  z-index: -1;/*描画を一番下に*/
  width: 100%;
  height: 100%;
}

#wrapper{
  position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
}
</pre></body></html>