* {
    margin: 0;
    padding: 0;
	scroll-behavior: smooth;
}
body {
    background-image: url("../images/bg.jpeg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

h1, h2, h3, h6, p, a {
	margin: 0;
}
h1 {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2.3rem;
	font-display: block;
}
.eng {
	font-family: serif;
	font-weight: 300;
	font-style: normal;
	font-size: 2.5rem;
	font-display: block;
}
h2 {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.3rem;
}
h3 {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.2rem;
}
p {
	font-family: kozuka-gothic-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.1rem;
	line-height: 220%;
}
p b {
	font-weight: 400;
}
a {
	font-family: kozuka-mincho-pr6n, serif;
	font-weight: 100;
	font-style: normal;
	font-size: 1.1rem;
	line-height: 220%;
}
:root {
	--orange: #F3A744;
	--green: #8DDB25;
	--blue: #4EC9E9;
	--yellow: #EFE338;
	--orangebg: #F3A7444D;
	--greenbg: #8DDB254D;
	--bluebg: #4ecae95e;
	--yellowbg: #EFE3384D;
	--autoWidth: 65vw;
}
@media screen and (max-width: 1000px) {
	h1 {font-size: 2rem;}
	h2 {font-size: 1.4rem; font-weight: 500;}
	h3 {font-size: 0.9rem;}
	p {font-size: 0.9rem;}
	h6 {font-size: 1rem;}
}
@media screen and (max-width: 600px) {
	h1 {font-size: 1.7rem;}
	h2 {font-size: 1.1rem;}
	h3 {font-size: 0.8rem;}
	p {font-size: 0.8rem;}
	h6 {font-size: 0.7rem;}
}


.center {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.center-y {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
    flex-direction: column;
}

/* 

NavBars, Mobile Nave, Footer, 

*/


/* Desktop Navbar */

.navBarContainer {
	width: 100%;
	height: 100px;
	position: absolute;
	top: 0;
	background-color: rgba(0,0,0,0.9);
	z-index: 100;
}
.navBarLogo {
	position: absolute;
	top: 10px;;
	left: 10px;
	width: 80px;
	height: 80px;
}
.navBarLogo img {
	object-fit: cover;
}
.navBar {
	position: absolute;
	right: 20px;
}
.navBar a {
	text-decoration: none;
}
.navBar p {
	color: white;
	margin: 0 30px;
	font-size: 1.4rem;
}
#contact .navBar p {
	color: black;
}
@media screen and (max-width: 600px) {
	.navBarContainer {
		display: none;
	}
}
.navBar p:hover, #contact .navBar p:hover {
	color: var(--orange);
}



/* Mobile Nav Button */

#mobileNav-Button {
	display: none;
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 25px;
	left: 25px;
}
#mobileNav-Button img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media screen and (max-width: 600px) {
	#mobileNav-Button {
		display: none;
	}
}




/* Mobile Nav */

#mobileNav {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	z-index: 2;
}
#mobileNav .mobileNav-Container {
	position: relative;
	width: 100%;
	height: 100%;
}
#mobileNav .mobileNav-Box {
	width: 100%;
	height: 12vh;
	margin: 10px 0;
}
.mobileNav-Box img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mobileNav-Box .overlay {
	position: absolute;
	width: 100%;
	height: 12vh;
	background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0))
}
.mobileNav-Box h1 {
	position: absolute;
	color: white;
}
#mobileNav .mobileNavCross-Container {
	height: 60px;
}
#mobileNavCross {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 25px;
	bottom: 25px;
}
#mobileNavCross img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}



/*

--------- Footer --------

*/


footer {
	width: 100%;
	height: 70px;
	background-color: rgba(0,0,0,0.8);
	color: white;
	margin-top: 50px;
}



/*

--------- GENERIC Content Container --------

*/


.contentContainer {
	display: flex;
	width: 100%;
	align-items: stretch;
	margin-top: 50px;
}
.imageContainer {
	flex: 0 0 55%;
	background-color: rgba(255,255,255,0.9);
}
.textContainer {
	flex: 0 0 45%;
	padding: 20px 40px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.95);
}
.titleContainer {
	padding: 20px 0;
	top: 0;
}
.text {
	padding-bottom: 30px;
}
.imageContainer img {
	width: 100%;
/*	width: calc(100% - 60px);
	padding: 30px;          */
	height: auto;
	object-fit: cover;
}


@media (max-width: 1200px) {
    .contentContainer {
        flex-direction: column-reverse;
    }
	.contentContainer.reverse {
		flex-direction: column;
	}
    .textContainer,
    .imageContainer {
        width: 100%;
    }
	.textContainer {
		padding: 0 10px;
	}
	.titleContainer {
		padding: 10px 0;
	}
	.imageContainer img {
		padding: 0;
		width: 100%;
		height: auto;
		object-fit: cover;
	}
}


/*

--------- GENERIC Buttons --------

*/

.buttonsContainer {
	width: 100%;
	margin-bottom: 30px;
}
.buttonsContainer a {
	height: 50px;
	padding: 0 20px;
	margin: 0 10px;
	border: solid rgb(80,80,50) 2px;
	background:  rgb(255,255,255);
	border-radius: 10px;
	text-decoration: none;
	color: black;
	box-shadow: rgb(50, 50, 50) 3px 3px 10px;
}
.buttonsContainer a:hover {
	border: solid rgb(80,80,50) 2px;
	background:  rgb(80,80,50);
	color: white;
}
.buttonsContainer a:active {
	background: white;
}




/*

--------- HOME PAGE --------

*/

#home-top {
	width: 100%;
	height: 85vh;
	position: relative;
	display: flex;
}
#home-top img {
	width: 100%;
	height: 100%;
	position: relative;
    display: block;
    object-fit: cover;
	object-position: top;
}

/* Home-Top Center Logo */

#home-top #logoContainer {	
	position: absolute;
	width: 100%;
}
#home-top .gradientBG {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
}
#logoContainer img {
	width: 500px;
	object-fit: contain;
}
@media screen and (max-width: 600px) {
	#home-top {
		height: 100vh;
	}
	#home-top #logoContainer {
		width: 170px;
		top: 200px;
	}
	#logoContainer img {
		width: 80vw;
	}
}

.buttonSection {
	width: 100%;
	margin-top: 50px;
}








@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 600px) {

}







/* 

----- Contact Page -----

*/

.contact {
	width: 100%;
}

.bannerContainer {
	width: 100%;
	background-color: white;
	margin: 20px 0;
}
.bannerContainer img {
	width: auto;
	height: 100px;
	padding: 20px 0 10px 0;
}

.contact .textContainer {
	margin: 20px 0;
	width: 80vw;
	border-radius: 20px;
}

@media screen and (max-width: 600px) {
	.contact .textContainer {
		width: 100%;
		border-radius: 0;
	}
}
.mapContainer {
	width: 100%;
	height: 100%;
}
.mapContainer img {
	width: 50%;
	height: 100%;
	object-fit: contain;
}





/* Contact Form */

form {
	margin-top: 40px;
}
form .formInfo {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin: 20px 0;
}
form #formInfo-SP {
	display: none !important;
}
form .formError {
	color: var(--orange);
	font-weight: 900;
}
form input, form textarea {
	width: 30vw;
	height: 60px;
	border: none;
	border-radius: 0 5px 0 0;
	background: rgba(255, 255, 255, 0.7);
	padding: 0 10px;
	font-family: kozuka-mincho-pr6n, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
}
form textarea {
	width: calc(65vw - 20px);
	height: 300px;
	padding: 10px;
}
form input:focus, form textarea:focus {
	outline: none;
	background: white;
}
form button {
	width: 200px;
	height: 60px;
	margin: 0 10px;
	border: solid var(--orange) 3px;
	background: white;
	border-radius: 100px;
	text-decoration: none;
	color: black;
	box-shadow: rgb(150, 150, 150) 2px 2px 10px;
}
form button div {
	height: 60px;
}
form button:hover {
	cursor: pointer;
	background: #ffe0b8;
}
form button:active {
	background: var(--orange);
}
@media screen and (max-width: 1000px) {
	form input, form textarea {
		width: calc(100% - 20px);
	}
}










/* 

----- Saiyou Page -----

*/




#saiyouInfo {
	margin-top: 50px;
}

#pr {
	padding: 30px;
	margin-bottom: 20px;
	border: solid 3px var(--green);
	border-radius: 30px;
}

#homeButtonsContainer.bottom.special {
	display: none;
}
@media screen and (max-width: 600px) {
	#homeButtonsContainer.bottom.special {
		width: 100%;
		display: block;
		margin: 0;
	}
	#homeButtonsContainer.bottom.special a {
		width: 100%;
		margin-top: 20px;
	}
}