@charset "utf-8";


/************************************/
/*            CSS覚書き              

・floatは使えない（paddingもmarginも効かなくなるしあらゆるものがゴミ）
	↓
display: inline-block;を使おう！　使いやすくて便利！


・line-height: 1.5
行間の調整。単位を書かずに1.5だと自動で通常の1.5倍の行間にしてくれるため便利

・margin: auto;
こう書くと自動で中央寄せしてくれるからstyle等で指定
ちなみに上下は多少の余白で、左右だけ中央寄せの記述は↓
margin: 20px auto;
こんな感じ


*/
/************************************/
















/************************************/
/*               Body               */
/************************************/

body{
background: -moz-linear-gradient(top, #1e130c 65%,    #433330);
background: -webkit-linear-gradient(top, #1e130c 65%, #433330);
background: linear-gradient(to bottom, #1e130c 65%,   #433330);
background-repeat: no-repeat;
background-attachment: fixed;

font-size: 100%;
font-weight: normal;
font-style: normal;
text-decoration: none;
line-height: 1.5;
padding: 2px;
margin: 2px;

color: #ffffff;
font-size: normal;
font-family: sans-serif;
text-align: center;

}


/************************************/
/*   上のメニューとロゴ、あとお手々        */
/************************************/


#header-fixed
{
    position: fixed;            /* ヘッダーの固定 */
    top: 0px;                   /* 位置(上0px) */
    left: 0px;                  /* 位置(右0px) */
    width: 100%;                /* 横幅100%　*/
    height: 75px;              /* 縦幅50px */
    background-color: rgba( 0, 0, 0, 1 );
}


#navi li{
	display: inline;
	list-style-type: none;
	margin: 15px;
	padding:   0px;
	font-size: 23px;
}

#navi {
	padding:   0px;
	margin:    0px;
	font-style: italic;
}
#header-rogo {
			 	width: 100%;
	}
#header-menu {

			 	padding-bottom:   30px;
					}








#main {
	padding-top:   10px;
}

#hand {
	text-align: right;		/*お手々を右端で走らせたい*/
	width: 95%;				/*でもちょっと端っこ過ぎないようにする*/
}




/************************************/
/*   メインボックス （主に記事を書くところ）     */
/************************************/

#mainbox {
padding-top:   70px;
padding-bottom:   20px;
margin:10px;
}



/************************************/
/*   パッチページの横並びボックス     */
/************************************/

#patch_box {
	display: inline-block;
	padding: 5px  25px;
	line-height: 1.8

}



/* -------------------------------------------------------------
				ギャラリー
---------------------------------------------------------------- */
/*ギャラリー全体のコンテナー*/
#stage {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
/*	overflow:hidden;*/
}

/*サムネイルのマウスオーバーでポインターを手のひら*/
#thumbs:hover {
	animation-play-state:paused;
}
#thumbs img {
	width:4.6%;
}
/*表示写真の初期配置（全部透明に）とtransition(fade)設定*/
.photo {
	position: absolute;
	left: 0;
	top: 0;
}
.photo img {
	width:100%;
	opacity: 0;
	-webkit-transition: opacity 1s ease;
	-moz-transition: opacity 1s ease;
	-o-transition: opacity 1s ease;
	transition: opacity 1s ease;
}
/* クリックされたサムネイルの対応写真を表示 */
.photo:target > img {
	opacity:1; 
}





/* -------------------------------------------------------------
				ギャラリー(拡大表示)
---------------------------------------------------------------- */


.lb {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: .3s opacity ease;
    z-index: -1;
}

.lb img {
    width: auto !important;
    max-height: 100%!important;
    transform: scale(.7);
    transition: .4s transform ease;
    pointer-events: none;
}

.lb:target {
    opacity: 1;
    z-index: 103;
}

.lb:target img {
    transform: scale(1);
}


/* なんちゃって閉じるボタン（いらない場合は消す） */
.lb::before,.lb::after {
    display: block;
    position: fixed;
    content: "";
    width: 24px;
    height:3px;
    top: 24px;
    right: 12px;
    background: #fff;
    border-radius: 4px;
}
.lb::before {
    transform: rotate(-315deg);
}
.lb::after {
    transform: rotate(315deg);
}





/************************************/
/*               Link               */
/************************************/
a:link {
 color: #ffffff;
}
a:visited {
 color: #ffffff;
}
a:hover {
 color: #99ff99;
 text-decoration: underline;
}
a:active {
 color: #ffffff;
}


a.menu {
text-decoration:none;			*/メニューだけ下線表示させずオンマウスで色変え/*
}



}
/************************************/
/*              Block2              */
/************************************/
h1 {
 color: #ffffff;
 font-size: 20px;
 text-align: centar;
 background-color: #000000;
 padding: 5px 0px 5px 3px;
}
h2 {
 color: #ffffff;
 font-size: 18px;
 text-align: left;
 background-color: #000000;
 padding: 5px 0px 5px 3px;
}
h3 {
 color: #ffffff;
 font-size: 18px;
 text-align: left;
 background-color: #000000;
 padding: 5px 0px 5px 3px;
}
h4 {
 color: #ffffff;
 font-size: 18px;
 text-align: left;
 background-color: #000000;
 padding: 5px 0px 5px 3px;
}







