@charset "UTF-8";

body{
	margin: 0;
	padding: 0;
	}

.top_back{
	background-image:url("image/top_back.svg");
	width: 375px;
	height: 1697px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	
}



.hedder{
	padding-top: 20px;	
	padding-left: 10px;
	
}

/*========= ハンバーガーメニュー ===============*/


#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:95%;
    height: 100vh;/*ナビの高さ*/
	background:#000000;
    /*動き*/
	transition: all 0.6s;
	border-radius:20px;
}



/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}


/*ナビゲーション*/
#g-nav-list ul {    
    position: absolute;
    z-index: 999;
    top:50%;
    left:25%;
    transform: translate(-50%,-50%);
}

#g-nav-list2 ul {
    position: absolute;
    z-index: 999;
    top: 50%;
	left: 45%;
	
    transform: translate(0%,-50%);
}
/*リストのレイアウト設定*/

#g-nav-list li{
	list-style: none;
	text-align: left;
}

#g-nav-list li a{
	color: #FFFFFF;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;	
}



#g-nav-list2 li{
		list-style: none;
	text-align: right;
}

#g-nav-list2 li a{
	color: #FFFFFF;
	text-decoration: none;
	padding: 15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: normal;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: xx-small;	
}


/*========= スクロールボタン ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	top:620px;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 2s ease-in-out infinite;
	animation-name:fadeUpAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity: 0;
	animation-delay: 5s;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(0);
  }

  to {
    opacity: 1;
  transform: translateY(30px);
  }
}



/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#eee;
}




.block{
	position: relative;
}



.top_logo{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 100px;
}




.content{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 150px;
	
}


.flex_box{
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	

}

.flex_item{
	padding: 5px;
	color: chartreuse;
	margin: 5px;
	width: 100px;
}

.item2{
	padding-left: 125px;
	padding-top: 5px;
}

.item10{
	position: absolute;
	left: 245px;
	top:322px;
}


.item11{
	position: absolute;
	top:810px;
	
}

.pick_up{
	position: absolute;
	bottom: 335px;
}

.footer{
	padding-top: 20px;

}


.footer1{
	display:flex;
	justify-content: center;
	align-items: center;
	
}

.footer2{
	display:flex;
	justify-content: center;
	align-items: center;
}



