@charset "UTF-8";

body{
	margin: 0;
		}

#wrap{
 	width: 100%;
 	
} 

header{
	width: 100%;
	height: 135px;
	margin: 0 auto;
    background: #303030;
} 

.container{
    display: flex;
        align-items: baseline;
        justify-content: space-between;
        height: 60px; 
        padding-top: 16px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
}

#header img{
	width: 250px;
	margin-top: 15px;
}



#navi{
	margin-top: 0px;
	margin-bottom: 0px;
 
}

#navi ul{
    list-style: none;
    display: flex;
}

#navi a{
	height: 10px;
	padding:20px 10px;
	border-left: 1px solid #fff;
	color:#fff;
	text-decoration:none;
	font-size: 13px;
	font-weight:bold;
	text-align:center;  
}
#navi  li{
	width:150px;
    text-align: center;
}

#navi a:hover{
    /*border-bottom: solid 3px #fff;
    padding-bottom: 27px;*/
    background: #f48131;
    color: #fff;
}

	

#imgbox img{
	margin: 0 auto;
}

#main{
    width: 1000px;
    height: auto;
	margin: 0 auto; 
	padding-top: 20px;
	background: #c4c1bf;
    background: #fff;
	text-align: center;
}

#main h1{
    font-size: 30px;
    text-align: left;
    margin-left: 8%;
}

.contents{
	display: flex;
    width: 850px;
	height:auto;
	margin: 30px auto;
	background: #fff;
}



.contents img{
	width: 350px;
    margin-top: 20px;
}	

.text{
    width: 500px;
    height: auto;
    padding: 20px;
}

.text p{
	text-align: left;
	font-size: 15px;
    margin-bottom: 30px;
	color: #575655;
	line-height: 180%;
	
}


footer{
	width: 100%;
	height: 270px;
	margin: 20px auto;
	padding-top: 20px;
	background: #303030;
    
}

footer p{
	margin-top: 40px;
	font-size: 16px;
	color: #fff;
	font-family: "Times New Roman";
	text-align: center;
}	


#info{
	display: block;
	height: 70px;
	margin-top: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	/*background: #696766;*/
	}

#info h2{
	float: left;
	width: 130px;
	margin-left: 10%;
	padding: 7px;
	font-size: 18px;
	color: #fff;
	border: 1px solid #ccc
}	

#info img{
	float: left;
	width: 28px;
	margin-left: 30px;
	margin-top: 25px;
}

#info p{
	float: left;
	margin-left: 10px;
	margin-top: 25px;
	font-size: 24px;
	color: #fff;
}	

#footernavi {
	width: 100%;
	height: 50px;
	
	
}
	
#navi02{
	margin-top: 10px;
	margin-left:  10%;
	margin-bottom: 0px;
	list-style-type:none;
	background: #fff;
 
}

#navi02 a{
	display:block;
	height: 10px;
	padding:18px 10px;
/*	border-left: 1px solid #fff;*/
	color:#fff;
	text-decoration:none;
	font-size: 12px;
	font-weight:bold;
	text-align:center;  
}
#navi02  li{
	float: left;
	width:165px;
}

#navi02 a:hover{
    /*border-bottom: solid 3px #fff;
    padding-bottom: 27px;*/
    background: #f48131;
    color: #fff;
}


/*========= ページトップへリンクボタンCSS ===============*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background-color: rgba(122, 122, 122, 0.8);
	border-radius: 5px;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.5rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(200px);
}


/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
} 





/*========モバイル画面の設定==================*/

@media(max-width:767px){
    
    

#wrap{
 	width: 100%;
 	
} 

header{
	width: 100%;
	height: 155px;
	margin: 0 auto;
    margin-bottom: 5px;
	background: #303030;
}

.container{
        display: block;
      /*  align-items: baseline;
        justify-content: space-between;*/
        height: 120px; 
        padding-top: 10px;
        margin-left: auto;
        margin-right: auto;
}

#header img{
	width: 170px;
	margin-left: 20px;
}

#navi{
	margin-top: 20px;
	margin-right:  0px;
	margin-bottom: 0px;
	list-style-type:none;
 
}

#navi a{
	display:block;
	height: 10px;
	padding:18px 5px;
	border-left: 1px solid #fff;
	color:#fff;
	text-decoration:none;
	font-size: 11px;
	font-weight:bold;
	text-align:center;  
}

#navi ul{
    list-style: none;
}

#navi  li{
	width:80px;
}

#navi a:hover{
    /*border-bottom: solid 3px #fff;
    padding-bottom: 27px;*/
    background: #f48131;
    color: #fff;
}



#main{
	width: auto;
    height: auto;
	margin: 10px 20px;
	padding: 10px;
	background: #c4c1bf;
	text-align: center;
}

#main h1{
	font-size: 20px;
    text-align: left;
   margin-top: 30px;
    margin-left: 30px;
}
    

.contents{
    flex-direction: column;
    /*display: block;*/
    width: 275px;
	height: auto;
	margin-top: 30px;
    padding: 10px;
	background: #fff;
}


.order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .order3 {
    order: 3;
  }
  .order4 {
    order: 4;
  }
    
.contents img{
	width: 230px;
}	

 .text{
        width: auto;
        height: auto;
        padding: 5px;
    }    
    
.text p{
	text-align: left;
	font-size: 15px;
	margin: 20px;
	margin-top: 30px;
	color: #575655;
	line-height: 150%;
	
}

footer{
	width: 100%;
	height: 350px;
	margin: 10px auto;
	padding-top: 10px;
	background: #303030;
}	
footer p{
	margin: 30px;
	font-size: 20px;
	color: #fff;
	font-family: "Times New Roman";
}	

footer img{
	width: 200px;
	margin-left: 80px;
}

#info{
	height: 220px;
	margin-top: 10px;
	padding-top: 5px;
	padding-bottom: 10px;
	padding-left: 0px;
	border-bottom: 10px solid #fff;
	
	}

#info h2{
	width: 110px;
	margin-left: 30px;
	margin-top: 10px;
	font-size: 18px;
	color: #fff;
	border:  1px solid #fff;
}	

#info img{
	width: 25px;
	margin-left: 20px;
	margin-top: 25px;
}

#info p{
	float: left;
	margin-left: 24px;
	font-size: 20px;
	color: #fff;
}	

#footernavi{
	display: none;
	width: 0px;
	height: 0px;
}

    
}
    

