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

/*------------------------------------*\
    #general
\*------------------------------------*/
	@font-face {
	    font-family: 'Open Sans';
	    src: url('fonts/open_sans/OpenSans-Bold-webfont.woff') format('woff');
	    font-weight: 700;
	    font-style: normal;
	}
	@font-face {
	    font-family: 'Open Sans';
	    src: url('fonts/open_sans/OpenSans-Italic-webfont.woff') format('woff');
	    font-weight: normal;
	    font-style: italic;

	}
	@font-face {
	    font-family: 'Open Sans';
	    src: url('fonts/open_sans/OpenSans-Light-webfont.woff') format('woff');
	    font-weight: 300;
	    font-style: normal;

	}
	@font-face {
	    font-family: 'Open Sans';
	    src: url('fonts/open_sans/OpenSans-Regular-webfont.woff') format('woff');
	    font-weight: normal;
	    font-style: normal;
	}
	@font-face {
	    font-family: 'Open Sans';
	    src: url('fonts/open_sans/OpenSans-Semibold-webfont.woff') format('woff');
	    font-weight: 600;
	    font-style: normal;
	}
	body {
		font-family: 'Open Sans', sans-serif;
		margin: 0;
		padding: 2vh 2vw;
		text-align: center;
	}
	
	.wrapper {
		border: solid 15px #368355;
		height: 96vh;
		width: 96vw;
		background: #fff;
		box-sizing: border-box;
		overflow-y: scroll;
	}
	
	@media only screen and (max-width : 767px) {
		.wrapper { border: solid 8px #368355; }
	}

	a:link, a:visited {
		color: #00467a;
	}


/*------------------------------------*\
    #logo
\*------------------------------------*/

	.logo img {
		max-width: 30%;
		margin: 40px auto 0 auto;
		
	}

	@media only screen and (max-width : 999px)  {
		.logo img { max-width: 50%; }
	}

	@media only screen and (max-width : 767px)  {
		.logo img { max-width: 80%; }
	}



/*------------------------------------*\
    #main
\*------------------------------------*/

	.main-text {
		font-family: "Times New Roman", serif;
		color: #368355;
		font-size: 35px;
		text-transform: uppercase;
		letter-spacing: 5px;
		width: 90%;
		margin: 40px auto;
	}
		.main-text span {
			color: #368355;
			font-size: 35px;
			display: block;
			letter-spacing: 5px;
		}
		.main-text h1 {
			margin: 0;
			padding: 0;
		}

	.sub-text {
		color: #368355;
		font-size: 16px;
		width: 80%;
		margin: 0 auto;
		}

	@media only screen and (max-width : 999px)  {
		.main-text {
			font-size: 25px;
			line-height: 45px;
		}
			.main-text span {
				font-size: 19px;
			}
	}

	@media only screen and (max-width : 767px)  {
		.main-text {
			font-size: 15px;
			line-height: 36px;
		}
			.main-text span {
				font-size: 14px;
			}
			.sub-text{
				font-size: 14px;
			}
	}



/*------------------------------------*\
    #contact
\*------------------------------------*/

	.contact {
		width: 90%;
		margin: 0 auto;
		border-top: solid 1px #368355;
		padding: 40px 0;
		margin-top: 40px;
	}
		.address {
			width: 100%;
			text-align: center;
			color: #368355;
		}
			.address b {
				margin-bottom: 15px;
				font-size: 20px;
				display: block;
			}

@media only screen and (max-width : 767px) {
	.address { font-size: 15px; }
}