/*===== FONTS =====*/
@font-face {
    font-family: 'Mano';
    src: url('fonts/mano.woff') format('woff');
}
@font-face {
    font-family: 'ManoB';
    src: url('fonts/mano_bold.woff') format('woff');
}
@font-face {
    font-family: 'Louis';
    src: url('fonts/louis.woff') format('woff');
}

/*===== VALEURS GLOABLES =====*/
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-family: 'Louis';
	color: black;
}
#back1, #back2, #back3 {
	position: fixed;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
	#back1 {
		background-color: rgba(255,203,6,0.9);
		z-index: 1;
	}
	#back2 {
		background: url('img/fond2.png') no-repeat;
		background-size: cover;
		z-index: 2;
		display: none;
	}
	#back3 {
		background: url('img/fond.png') repeat-y;
		background-size: contain;
		z-index: 3;
		opacity: 0.9;
	}
a {
	text-decoration: none;
	color: white;
}
	a:hover { color: black; }
h1 {
	position: relative;
	color: black;
	font-size: 2em;
	font-family: 'Louis';
	font-weight: normal;
	padding: 0;
	margin: 20px 0 30px 0;
	text-decoration: underline;
	clear: both;
}
h2 {
	color: rgb(128,130,132);
	font-weight: normal;
	font-size: 1.3em;
}
hr {
	width: 100%;
	height: 50px;
	border: 0;
}
p { text-align: justify; text-indent: 35px; position: relative; }
ul { list-style: none; text-align: left; padding: 0 0 0 10px; }

/*===== VALEURS SPECIFIQUES =====*/
.no_pc { display: none; }
.menu_on a { color: black; }
p.ligne_plus, ul.ligne_plus li { line-height: 30px; text-indent: 0; }
.fl_left { float: left; margin-right: 5px; }
.fl_right { float: right; margin-left: 5px; }
ul.tiret { list-style: none; }
	ul.tiret li::before { content: '- '; }
.flex_egal { display: flex; justify-content: center; margin-top: 20px; }
.txt_pt { font-size: 0.8em; }
.citation::before, .citation::after {
	position: absolute;
	font-size: 2.5em;
	color: rgb(230,230,230);
}
.citation::before { top: 5px; margin-left: -20px; content: '“'; }
.citation::after { bottom: 5px; margin-left: 5px; content: '“'; transform: rotate(180deg); }
.fade { opacity: 0.5; }
.no_indent { text-indent: 0; }
.marj_g { padding-left: 20px; }
.marj_d { padding-right: 20px; }
.souligne { text-decoration: underline; }
.gras { font-weight: bold; font-size: 1.1em; }
.petit { font-size: 0.8em; }
.centre { text-align: center; }
.chariot { clear: both; }

.rose { color: rgb(159,117,132); }
.rouge { color: rgb(255,0,0); }
.gris_clair { color: rgb(130,130,130); }

.valid_oui { font-weight: bold; color: green; text-align: center; }
.valid_non { font-weight: bold; color: red; text-align: center; }

.t1, .t2, .t3, .t4, .t5 { font-weight: bold; text-indent: 25px; }
.t1 { font-size: 1.2em; }
.t2 { font-size: 1.4em; }
.t3 { font-size: 1.6em; }
.t4 { font-size: 1.8em; }
.t5 { font-size: 2em; }

/*===== HEADER =====*/
header {
	position: fixed;
	z-index: 1500;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
}
	header a {
		color: rgb(128,130,132);
	}
	#H_menu {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100px;
	}
		#H_logo {
			position: absolute;
			top: -10px;
			left: -10px;
			z-index: 1010;
			float: left;
			width: 100px;
			height: 100px;
			padding: 15px;
			background-color: white;
			border-radius: 0 100% 100% 100%;
			box-shadow: 0 0 5px;
		}
			#H_logo img {
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				max-width: 80%;
				max-height: 80%;
			}
		
		.H_logo_KM {
			position: absolute;
			z-index: 1020;
			top: 5px;
			left: 150px;
			width: calc(100% - 300px);
			text-align: center;
			font-family: 'Mano';
			font-size: 4em;
			text-transform: uppercase;
			color: white;
			text-shadow: 0 0 10px black;
			margin: 0;
			padding: 20px 0 0 0;
			line-height: 40px;
		}
			.H_logo_KM a {
				color: white;
			}
				.H_logo_KM .H_logo_kaiten {
					color: rgb(215,25,33);
					text-shadow: 0 0 10px white;
				}
				.H_logo_KM .H_logo_devise {
					font-size: 0.4em;
					font-family: 'Louis';
					text-transform: none;
					color: white;
					margin: 0;
					padding: 0;
				}
		
		#H_nav_M {
			display: block;
			position: absolute;
			top: -10px;
			right: -10px;
			z-index: 1030;
			float: right;
			width: 100px;
			height: 100px;
			padding: 15px;
			background-color: white;
			border-radius: 100% 0 100% 100%;
			box-shadow: 0 0 5px;
		}
			#H_burger {
				position: relative;
				display: block;
				top: 0;
				right: 0;
				z-index: 1;
			}
				#H_burger input {
					position: absolute;
					display: block;
					top: 20px;
					left: 20px;
					width: 60px;
					height: 60px;
					margin: 0;
					padding: 0;
					cursor: pointer;
					opacity: 0;
					z-index: 2;
				}
				#H_burger div {
					position: absolute;
					top: 20px;
					left: 20px;
					width: 60px;
					height: 60px;
				}
				#H_burger div span {
					position: relative;
					display: block;
					float: right;
					clear: both;
					width: 60px;
					height: 11px;
					margin-bottom: 14px;
					background: black;
					z-index: 1;
					transform-origin: 4px 0px;
					transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
							  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
							  opacity 0.55s ease;
				}
					#H_burger div span:first-child { transform-origin: 0% 100%; }
					#H_burger div span:nth-last-child(1) { transform-origin: 0 0; }
					#H_burger input:checked ~ div span:first-child { transform: rotate(45deg) translate(4px,0); }
					#H_burger input:checked ~ div span:nth-last-child(1) { transform: rotate(-45deg) translate(3px,1px); }
					#H_burger input:checked ~ div span:nth-last-child(2) { opacity: 0; }
					#H_burger ul {
						position: absolute;
						top: 130px;
						right: -35px;
						margin: 0;
						padding: 0 63px 10px 0;
						box-sizing: border-box;
						background-color: white;
						list-style-type: none;
						transform-origin: 0% 0%;
						transform: translate(100%, 0);
						transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
						text-align: right;
						border-radius: 20px;
						box-shadow: 0 0 5px;
						white-space: nowrap;
					}
						#H_burger ul li {
							padding: 10px 0 0 15px;
							font-size: 1.4em;
							line-height: 22px;
						}
							#H_burger ul li.H_ul_titre {
								text-transform: uppercase;
								color: orangered;
								font-family: 'ManoB';
								font-size: 2em;
								font-weight: bold;
								padding-top: 20px;
							}
								#H_burger ul li a {
									color: black;
								}
									#H_burger ul li a::before {
										content: '► ';
									}
									#H_burger ul li a:hover {
										text-decoration: underline;
									}
								#H_burger ul li span.H_ul_desc {
									color: grey;
									font-size: 0.7em;
									font-weight: normal;
									font-style: italic;
								}
					#H_burger input:checked ~ ul { transform: translate(0, 0); }	


/*===== CORPS =====*/
#corps {
	position: relative;
	z-index: 1000;
	width: 100%;
	margin: 0 auto;
	padding: 130px 0 0 0;
	box-sizing: border-box;
	font-size: 1.1em;
}
/*===== PAGES =====*/

/*--- KAITEN ---*/
#km_date {
	width: 90%;
	margin: 10px auto 35px;
	display: flex;
	font-family: 'Louis';
	text-align: center;
}
	#km_date img {
		max-height: calc(90vh - 130px);
		border: 1px solid grey;
		box-shadow: 0 0 5px lightgrey;
		border-radius: 8px;
		margin-right: 35px;
	}
	#km_date h1, #km_date h2 {
		text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white, 4px 4px rgba(255,255,255,0.4);
		color: black;
		text-decoration: none;
		font-weight: bold;
		margin: 0;
		padding: 0;
		font-size: 4em;
	}
	#km_date h3 {
		font-size: 2.0em;
		color: red;
		text-shadow: 1px 1px darkred, -1px 1px darkred, 1px -1px darkred, -1px -1px darkred;
		margin: 10px 0 0 0;
		padding: 0;
		text-transform: uppercase;
	}
	#km_date h4 {
		font-size: 2.2em;
		color: rgb(252,176,64);
		text-shadow: 1px 1px black, -1px 1px black, 1px -1px black, -1px -1px black, 4px 4px rgba(0,0,0,0.4);
		margin: 20px 0;
	}
	#km_date p { 
		text-indent: 0;
		text-align: left;
		color: white;
		text-shadow: 0 0 10px black;
		font-size: 1.5em;
	}

#kmd_plan { width: 80%; padding: 0 50px; }
	#kmd_plan img { width: 100%; }
	

#km_infos {
	background-color: rgba(0,0,0,0.9);
	background-image: url('img/fond1.png');
	background-repeat: repeat-y;
	background-size: contain;
	width: 100%;
	display: flex;
	align-items: stretch;
}
	#infos_map {
		width: 50%;
	}
		.infos_carte {
			width: 100%;
			min-height: 75vh;
			height: 100%;
			border: 0;
			padding: 0;
			margin: 0;
		}
	#kmi_text {
		box-sizing: border-box;
		padding: 25px;
		font-size: 0.8em;
		color: white;
	}
		#kmi_text h1 {
			text-shadow: 1px 1px rgb(215,25,33), -1px 1px rgb(215,25,33), 1px -1px rgb(215,25,33), -1px -1px rgb(215,25,33), 4px 4px rgba(215,25,33,0.4);
			color: white;
			text-decoration: none;
			font-weight: bold;
			margin: 0;
			padding: 0 0 15px 0;
			font-size: 4.5em;
		}
		#kmi_text p {
			margin: 0;
			padding: 0;
			text-indent: 35px;
		}
			#kmi_text p strong {
				color: rgb(215,25,33);
				text-transform: uppercase;
				font-size: 2.5em;
				font-family: 'ManoB';
				text-shadow: 1px 1px 3px white, -1px 1px 3px white, 1px -1px 3px white, -1px -1px 3px white;
			}
			#kmi_text p a {
				color: orange;
			}
			#kmi_text p a:hover {
				text-decoration: underline;
			}
			#kmi_text p .kmi_lieu {
				max-width: 65%;
				margin: 0 0 0 60px;
			}
		#kmi_text #kmi_billeterie {
			margin: 30px 0 10px 60px;
			background-image: linear-gradient(to right, #FF4E50 0%, #F9D423  51%, #FF4E50  100%);
			padding: 15px 45px;
			text-align: center;
			text-transform: uppercase;
			transition: 0.5s;
			background-size: 200% auto;
			color: white;            
			border-radius: 10px;
			display: inline-block;
			text-shadow: none;
			font-size: 1.2em;
			border: 2px solid rgba(0,0,0,0);
		}
			#kmi_text #kmi_billeterie:hover {
				background-position: right center;
				color: white;
				text-decoration: none;
				border: 2px solid white;
				text-shadow: 0 0 7px white;
			}
#km_expo {
	min-height: 400px;
	box-sizing: border-box;
	padding: 50px;
}
	#km_expo h1 {
		text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white, 4px 4px rgba(255,255,255,0.4);
		color: black;
		text-decoration: none;
		font-weight: bold;
		margin: 0;
		padding: 0;
		font-size: 4em;
	}
	#km_expo p {
		color: black;
		text-shadow: none;
		width: 80%;
	}
	#kme_inscription {
		background-image: linear-gradient(to right, #FF512F 0%, #DD2476  51%, #FF512F  100%);
		margin: 10px auto 10px;
		padding: 15px 45px;
		text-align: center;
		text-transform: uppercase;
		transition: 0.5s;
		background-size: 200% auto;
		color: white;            
		border-radius: 10px;
		display: inline-block;
		font-size: 2.5em;
		border: 2px solid rgba(0,0,0,0);
	}
		#kme_inscription:hover {
			background-position: right center;
			color: white;
			text-decoration: none;
			border: 2px solid black;
			text-shadow: 0 0 10px white;
		}
	#expo_flex {
		width: 85%;
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
	}
		#expo_flex div {
			width: 150px;
			box-sizing: border-box;
			padding: 10px;
			text-align: center;
			margin: 10px 10px 0 10px;
		}
			#expo_flex div .expo_logo {
				max-width: 90%;
			}
#km_anim {
	background-color: rgba(0,0,0,0.9);
	background-image: url('img/fond1.png');
	background-repeat: repeat-y;
	background-size: contain;
	width: 100%;
	min-height: 400px;
	box-sizing: border-box;
	padding: 50px;
}
	#km_anim h1 {
		text-shadow: 1px 1px rgb(215,25,33), -1px 1px rgb(215,25,33), 1px -1px rgb(215,25,33), -1px -1px rgb(215,25,33), 4px 4px rgba(215,25,33,0.4);
		color: white;
		text-decoration: none;
		font-weight: bold;
		margin: 0;
		padding: 0 0 15px 0;
		font-size: 4em;
	}
	#anim_flex {
		width: 85%;
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
	}
		#anim_flex div {
			width: 150px;
			box-sizing: border-box;
			padding: 10px;
			text-align: center;
			margin: 10px 10px 0 10px;
			color: white;
		}
			#anim_flex div .anim_logo {
				max-width: 90%;
			}


/*======================================================================================================*/
	/*--- CONTACT ---*/
fieldset {
	border: 0;
	background: linear-gradient(to bottom, rgb(251,209,195), rgb(252,250,193));
	box-shadow: 0 0 5px grey;
	border-radius: 5px;
	font-size: 1.1em;
	min-height: 150px;
	box-sizing: border-box;
	margin-top: 30px;
	padding: 10px 15px;
}
	label {
		display: block;
		margin: 8px 0;
		font-style: italic;
	}
	input[type=text], input[type=tel], input[type=email], textarea {
		display: block;
		height: 35px;
		margin: 8px 0;
		background-color: white;
		border: 1px solid lightgrey;
		font-size: 1em;
		font-family: 'Louis';
		line-height: 20px;
		box-shadow: 0 0 2px lightgrey;
		border-radius: 5px;
		width: 100%;
	}
	textarea { height: 200px; resize: vertical; }
		input[type=text]:hover, input[type=tel]:hover, input[type=email]:hover, textarea:hover { border: 1px solid lightgrey; }
	input[type=submit] {
		background-color: rgb(215,26,33);
		width: 150px;
		height: 45px;
		float: right;
		clear: both;
		border: none;
		border-radius: 5px;
		margin: 10px 0 0 0;
		font-size: 1.2em;
		font-family: 'Louis';
		font-weight: bold;
		color: white;
	}
		input[type=submit]:hover {
			color: rgb(252,176,64);
			cursor: pointer;
			box-shadow: 0 0 3px grey;
		}

	/*--- MENTIONS ---*/
.mentions {
	border: 0;
	background: linear-gradient(to bottom, #e09c3f, #fad992);
	box-shadow: 0 0 5px grey;
	border-radius: 5px;
	font-size: 1.1em;
	margin: 20px 30px;
	padding: 10px 15px;
	width: 300px;
	height: 300px;
	text-align: center;
	box-sizing: border-box;
	color: white;
}
	.mentions img {
		max-width: 80%;
		max-height: 70px;
		margin: 10px 0 0;
	}
	.mentions_titre {
		display: inline-block;
		color: black;
		margin: 10px 0;
		font-size: 1.1em;
	}
	.mentions a { color: black; }
		.mentions a:hover { text-decoration: underline; }

/*===== FOOTER =====*/
footer {
	position: relative;
	z-index: 1500;
	width: 100%;
	height: 80px;
	clear: both;
	background-color: rgb(194,96,17);
}
	footer a {
		color: white;
	}
	footer #upper_line {
		width: 100%;
		height: 100%;
	}
		#footer_liens {
			float: left;
			margin: 0 0 0 10px;
		}
			#footer_liens img {
				max-height: 70px;
				margin: 5px 5px 0;
			}
		footer ul {
			position: relative;
			z-index: 501;
			float: left;
			list-style: none;
			margin: 0;
			padding: 0;
			color: lightgrey;
			font-family: 'Louis';
			font-size: 1.3em;
			letter-spacing: 1px;
		}
			footer ul li {
				display: inline-block;
				margin: 0 15px;
				line-height: 80px;
			}
				footer ul li a { color: white; }
				footer ul li#reseaux { padding: 0 50px 0 130px; }
					footer ul li#reseaux svg.icon {
						margin: 0 10px;
						width: 40px;
						height: 40px;
						fill: rgb(88,88,91);
						vertical-align: middle;
					}
						footer ul li#reseaux svg#icon_fb:hover { fill: rgb(71,89,147); }
						footer ul li#reseaux svg#icon_insta:hover { fill: rgb(197,54,164); }
						footer ul li#reseaux svg#icon_linked:hover { fill: rgb(0,132,177); }
		#footer_perso {
			position: absolute;
			bottom: 0;
			right: 0;
			max-height: 45vh;
			overflow: hidden;
			vertical-align: bottom;
			opacity: 0.8;
		}
		

/*====================================================================================*/
/*=================================== MOBILE =========================================*/
/*====================================================================================*/
@media screen and (max-width: 1200px) {
	/*=== VALEURS SPECIFIQUES ===*/
	.no_mobile { display: none; }
	.no_pc { display: initial; }
	h1 { font-size: 1.6em; margin-top: 40px; }
		h1::after { top: 0; left: -50px; }
	h2 { font-size: 1.2em; }
	img { max-width: 100%; }
	hr {
		height: 35px;
		margin: 10px 0;
	}
	/*=== HEADER ===*/
	header { height: 70px; }
	#H_menu {
		height: 60px;
	}
		#H_logo {
			top: -6px;
			left: -6px;
			width: 60px;
			height: 60px;
			padding: 10px;
		}
		
		.H_logo_KM {
			position: absolute;
			z-index: 1020;
			left: 100px;
			width: calc(100% - 200px);
			font-size: 2.5em;
			padding: 10px 0 0 0;
			line-height: 25px;
		}
			.H_logo_KM .H_logo_devise {
				font-size: 0.3em;
			}
		
		#H_nav_M {
			top: -6px;
			right: -6px;
			width: 60px;
			height: 60px;
			padding: 10px;
		}
				#H_burger input {
					top: 12px;
					left: 12px;
					width: 36px;
					height: 36px;
				}
				#H_burger div {
					top: 12px;
					left: 12px;
					width: 36px;
					height: 36px;
				}
				#H_burger div span {
					width: 36px;
					height: 7px;
					margin-bottom: 7px;
				}
					#H_burger input:checked ~ div span:first-child { transform: rotate(45deg) translate(2px,0); }
					#H_burger input:checked ~ div span:nth-last-child(1) { transform: rotate(-45deg) translate(1px,1px); }
					#H_burger ul {
						top: 80px;
					}

	/*=== CORPS ===*/
	#corps {
		width: 100%;
		padding-top: 70px;
		min-height: calc(100% - 60px);
	}
	/*===== PAGES =====*/
		/*--- KAITEN ---*/
		#km_date {
			width: 100%;
			margin: 10px auto;
			display: flex;
			flex-direction: column;
		}
			#km_date img {
				margin: 0 auto;
				max-width: 90%;
			}
			#km_date #kmd_text {
				max-width: 90%;
				margin: 10px auto 0;
			}
			#km_date h1, #km_date h2 {
				font-size: 2.5em;
			}
			#km_date h3 {
				font-size: 1.6em;
			}
			#km_date h4 {
				font-size: 1.7em;
				margin: 15px 0;
			}
			#km_date p { 
				text-align: center;
				font-size: 1.1em;
			}

			#infos_map {
				width: 40%;
			}
				#kmi_text h1 {
					font-size: 2.5em;
					text-align: center
				}
					#kmi_text p strong {
						font-size: 2em;
					}
					#kmi_text p .kmi_lieu {
						margin: 0 0 0 30px;
					}
				#kmi_text #kmi_billeterie {
					margin: 30px 0 10px 30px;
					padding: 10px 30px;
				}
		#km_expo {
			padding: 15px;
		}
			#km_expo h1 {
				font-size: 2.5em;
				text-align: center;
			}
			#km_expo p {
				width: 83%;
			}
			#kme_inscription {
				width: calc(83% - 60px);
				margin: 10px auto 10px;
				padding: 15px 30px;
				font-size: 1.4em;
			}

	/*--- Contact ---*/
	fieldset { width: 100%; }
	label { display: block; width: 100%; text-align: left; }
	input[type=text], textarea { display: block; width: 100%; height: 20px; }
	textarea { height: 150px; }
	

	/*=== FOOTER ===*/
	footer { height: 40px; }
		footer ul { float: left; width: 100%; font-size: 0.8em;}
			footer ul li {
				margin: 0 15px;
				line-height: 40px;
			}
}

@media screen and (max-width: 800px) {
	/*=== CORPS ===*/
		#km_infos {
			flex-direction: column;
		}
			#infos_map {
				width: 100%;
			}
			#kmi_text p {
				width: 83%;
			}

}
@media screen and (max-width: 470px) {
	.H_logo_KM {
		line-height: 30px;
	}
	
	#corps {
		padding-top: 100px;
	}
}
