ul {
    	display:table;
    	margin: 0 auto;
    	list-style-type: none;
    	text-align: center;
    }
    li {
    	width: 200px;
    	height: 280px;
    }
    
    li a {
    	color: darkorange;
		border-style:none;
		text-decoration: none;
    }
    
    li a:hover {
		color: orangered;		
		border-style:none;
		text-decoration: none;
	}
    
    .float {
    	display:table;
    	margin: 0 auto;
    	overflow: hidden;
    }
    .float li {
    	float: left;
    }
    
 

/*---------------------------------------------------*/
/*　DIV										 */
/*---------------------------------------------------*/
* {
	margin:0;
	padding: 0;
}

html,body { 
	height:100%; 
	margin:0 auto;
	width: 800;
}

.wrap {
	display:table;
	background: white;
	margin: 0 auto;
	text-align: center;
        width: 800;
}

@media screen and (max-width:640px){
	html,body { 
		height:100%; 
		margin:0 auto;
		width: 411;
	}

	.wrap {
		display:table;
		background: white;
		margin: 0 auto;
		text-align: center;
       		width: 411;
	}
}

@media screen and (max-width:360px){
	html,body { 
		height:100%; 
		margin:0 auto;
		width: 360;
	}

	.wrap {
		display:table;
		background: white;
		margin: 0 auto;
		text-align: center;
       		width: 360;
	}
}


.main {
	margin: 0 auto;
	text-align:center;
}

.box {
	float: left;
	margin: 0 auto; 
}


/*---------------------------------------------------*/
/*　文字の類										 */
/*---------------------------------------------------*/

 
body,div {
     font-family: 'Fredoka One', cursive;
     font-size: 20px;
}


h1 {
    font-family: 'Fredoka One', cursive;
	font-size: 30;
	margin: auto 40;
	font-weight:bold;
	color: darkred;
}

h2 {
	font-size: 25;
	margin:0 auto 0 auto;
	max-width: 640;
}

p {
     font-family: 'Fredoka One', cursive;
     font-size: 100%;
     color: lightcoral;
}

p a{
	color: orangered;
     font-family: 'Fredoka One', cursive;
     font-size: 100%;
	
	border-style:none;
	
	border-width:0px;
	border-bottom-width:1px;
	border-style:dashed;
	text-decoration:none;
	border-color:#000000;
}

p a:hover {
	color: darkorange;
     font-family: 'Fredoka One', cursive;
     font-size: 100%;
	
	border-style:none;
	
	border-width:0px;
	border-bottom-width:1px;
	border-style:dashed;
	text-decoration:none;
	border-color:#000000;
}



h3 {
	max-width: 640;
	margin:0 auto 0 auto;
	font-weight:bold;
}

h3 a{
	color: chocolate;
	
	border-style:none;
	text-decoration: none;
}

h3 a:hover {
	color: sienna;
	font-family: 'Rock Salt', cursive;
	
	border-style:none;
	text-decoration: none;
}


/*---------------------------------------------------*/
/*　画像の類										 */
/*---------------------------------------------------*/
img {
    max-width: 100%;
    height: auto;
    border: 0;
}

/*---------------------------------------------------*/
/*　YouTubeを軽く NO TITLE							 */
/*---------------------------------------------------*/

.youtube {
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 320px;
	height: 180px;
}
.youtube::before {
	position: absolute;
	content: "Click to Play";
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	line-height: 180px;
	background: rgba(0, 0, 0, 0.6);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	transition: all 0.3s;
}
.youtube:hover::before {
	background: rgba(0, 0, 0, 0.7);
	cursor: pointer;
	transition: all 0.3s;
}