@charset "UTF-8";
/* CSS Document */

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"
}

header{
	background-color:white;
	padding:30px 15px 15px 15px;
}

h1{
	text-align: center;
	display:block;
	text-transform: uppercase;
	padding: 10px;
	letter-spacing: 1.5px;
}

h2{
	text-align: center;
	display:block;
	padding: 10px;
	letter-spacing: 1.5px;
	font-size: 18px;
}

body{
	margin-left: auto;
	margin-right: auto;

}

a:hover{
	background-color:#E6EFD7;
  	transition: 1s ease;
}

.style-nav ul{
	list-style-type: none;
	
}

.style-nav ul li a{
	text-decoration: none;
	color: black;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
	letter-spacing: 1px;
}

main{
	background-color: white;
}

footer{
	background-color: white;
	padding: 40px;
	bottom:0;
	position:relative;
}

.footer-text{
	text-align: center;
	font-size: 10px;
	color:grey;
	letter-spacing: 0.5px;

}
/*
img{

}

video{
 	display: block;
 	width: 100%;
 	height: auto;
	padding-top: 6px;
}*/

.container {
 	position: relative;
 	width: 100%;
	max-width: 100%;
	padding-top: 20px;
		
}

.image {
 	display: block;
 	width: 100%;
 	height: auto;
}

.overlay {
 	
	position: absolute;
  	bottom: 0; 
  	background: rgb(0, 0, 0);
  	background: rgba(255,255,255, 0.3); /* Black see-through */
 	width: 100%;
  	transition: .5s ease;
 	opacity:0;
  	color: white;
  	font-size: 10px;
	letter-spacing: 0.5px;
  	padding: 3% 5% 4% 5%;
  	text-align: left;
}

.container:hover .overlay {
  opacity: 1;
}



.row {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px;
}

.col {
  flex: 100%;
  max-width: 100%;
  padding: 10px 15px;
}

.col img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}



section{
	padding: 10% 12%;
}



/*CONTACT*/

.text {
	font-size:14px;
	text-align: center;
	letter-spacing: 0.5px;
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}

.break  {
	padding-bottom: 50px;
}

.text a{
	text-decoration: underline;
	color: darkolivegreen;
	font-style: normal;
	
}

/*ABOUT*/

.about-col-space {
	width: 0%;
	height: auto;
	background-color: white;
	float: left;
	padding-top: 10px;
}

.about-col {
	width: 100%;
	height: auto;
	background-color: white;
	float:left;
	padding-top: 10px;
}

.about-col h2 {
	font-size: 13px;
	letter-spacing: 0.5px;
	line-height: 20px;
	text-align: center;
}

.about-col p {
	font-size: 11px;
	letter-spacing: 0.5px;
	line-height: 17px;
}

.about-col img {
	width: 100px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
}

.japanese p {
	font-size: 11px;
	line-height: 20px;
}

/*NEWS*/

.news p{
	font-size:14px;
	text-align: center;
	letter-spacing: 0.7px;
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 20px;

}
.news a{
	text-decoration: underline;
	color: darkolivegreen;
	font-style: normal;
}


/*TABLET VIEW*/

@media (min-width: 768px){
	
	.style-nav ul li{
		display: inline-block;
	}
	
	.style-nav ul{
		text-align: center;
	}
	
	
	.col {
    	flex: 50%;
    	max-width: 50%;
  	}
	
	section{
	padding: 10% 20%;
	}
	
	.overlay {
		font-size: 11px;
		line-height: 16px;
	}
	
	
/*ABOUTCONTACT*/
	.text {
		font-size: 13px;
	}
	
	.about-col-space {
		width: 15%;
	}
	
	.about-col {
		width: 70%;
	}
	
	.about-col h2 {
		font-size: 14px;
		line-height: 20px;
		text-align: center;
	}	
	
	.about-col p {
		font-size: 12px;
		line-height: 20px;
	}
	
	.japanese p {
		line-height: 25px;
	}
	
/*NEWS*/
	.news p{
		font-size: 16px;
		line-height: 25px;

	}
	
	h2 {
		font-size: 20px;
	}

}

/*DESKTOP VIEW*/

@media (min-width: 1024px){
	
	body{
		max-width: 1300px;
	}
	
	h1{
		font-size: 50px;
	}
	
	/*
	.style-nav{
		float: right;
	}*/
	
/*ABOUTCONTACT*/
	.text {
		font-size: 16px;
	}
	
	.about-col-space {
		width: 20%;
	}
	
	.about-col {
		width: 60%;
	}

	.about-col h2 {
		font-size: 16px;
		line-height: 22px;
		text-align: center;
	}	
	
	.about-col p {
		font-size: 14px;
		letter-spacing: 0.3px;
		line-height: 22px;
	}
	
	.japanese p {
		line-height: 28px;
	}
	
	.overlay {
		font-size: 12px;
		line-height: 16px;
	}
	
}



