/*===== 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: 100vw;
	height: 100vh;
}
	#back1 {
		background-color: rgb(251,189,86);
		z-index: 1;
	}
	#back2 {
		background: url('img/back2.png') no-repeat;
		background-size: cover;
		background-position: bottom center;
		z-index: 2;
	}
	#back3 {
		display: none;
		background: url('img/fond.png') no-repeat;
		background-size: cover;
		z-index: 3;
	}
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;
}
	h1::after {
		position: absolute;
		content: '';
		top: 0;
		right: 100%;
		width: 100px;
		height: 32px;
		background: url('img/h1.png') no-repeat;
		background-size: contain;
	}
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: 75%;
	margin: 0 auto 20px;
	padding: 120px 50px 0;
	box-sizing: border-box;
	font-size: 1.1em;
}
/*===== PAGES =====*/

	/*--- ACCUEIL ---*/
#accueil {
	position: relative;
	z-index: 400;
	max-width: 100%;
	margin: 0 auto 20px;
	padding: 150px 0 0;
}
	#agenda_next {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		width: calc(100%-75px);
		background-color: rgba(255,255,255,0.5);
		padding: 5px 0 5px 75px;
	}
		#agenda_next h4 {
			width: 100%;
			margin: 0 0 5px;
			text-decoration: underline;
			text-indent: 25px;
		}
		#agenda_next a {
			display: flex;
			color: black;
		}
		.AN_date {
			width: 60px;
			height: 60px;
			padding: 5px;
			background: url('img/agenda.png') no-repeat;
			background-size: contain;
			text-align: center;
			font-weight: bold;
			font-size: 1.1em;
		}
			.AND_jour { width: 100%; margin: 10px 0 2px; }
			.AND_mois { width: 100%; color: white; }
		.AN_titre {
			padding: 12px 0 0 15px;
			font-size: 1.3em;
			font-weight: bold;
		}
			#agenda_next a:hover .AN_titre strong {
				text-decoration: underline;
			}
			.ANT_lieu {
				font-style: italic;
				font-weight: normal;
				font-size: 0.9em;
			}
		.AN_billeterie {
			position: relative;
			background-image: linear-gradient(to right, #FF512F 0%, #DD2476  51%, #FF512F  100%);
			margin: 10px;
			padding: 10px 40px 10px 10px;
			text-align: center;
			text-transform: uppercase;
			transition: 0.5s;
			background-size: 200% auto;
			color: white;            
			border-radius: 10px;
			display: inline-block;
			border: 2px solid rgba(0,0,0,0);
			font-size: 1.5em;
		}
			.AN_billeterie:hover {
				background-position: right center;
				color: white;
				text-decoration: none;
				border: 2px solid black;
				text-shadow: 0 0 10px white;
			}
			.AN_billeterie img {
				position: absolute;
				right: -33px;
				top: -8px;
				height: 66px;
			}
	#kaiten_societe, #kaiten_histoire {
		padding: 50px 220px 50px;
		font-size: 1.5em;
		line-height: 30px;
		margin: 50px 0;
		text-align: justify;
		background-image: linear-gradient( 109.6deg,  rgba(112,246,255,0.33) 11.2%, rgba(221,108,241,0.26) 42%, rgba(229,106,253,0.71) 71.5%, rgba(123,183,253,1) 100.2% );
		box-shadow: 0 0 15px white;
	}
		#KS_first {
			font-size: 1.5em;
			font-weight: bold;
		}

/*======================================================================================================*/

.carousel {
	margin: 0 auto;
	position: relative;
	width: 100%;
	height: calc((100vw/4)*3);
	box-shadow: 0 0 15px white;
}
	.slide_img {
		position: absolute;
		display: table;
		width: 100%;
	}
		.slide_img img {
			width: 100%;
			height: calc((100vw/4)*3);
		}
	#i0, #i1, #i2, #i3, #i4, #i5, #i6, #i7, #i8, #i9, #i10, #i11, #i12, #i13, #i14, #i15, #i16, #i17, #i18, #i19, #i20, #i21, #i22, #i23, #i24, #i25, #i26, #i27, #i28, #i29, #i30, #ilast {
		display: none;
	}
	.prev, .next {
		display: table;
		width: 50px;
		height: 30%;
		position: absolute;
		top: 35%;
		background: white;
		border-radius: 25px;
		z-index: 10;
		cursor: pointer;
		text-align: center;
		font-size: 1.4em;
	}
	.prev { left: 15px; }
	.next { right: 15px; }
		.car_PN { display: table-cell; vertical-align: middle; }
	.slide_img {
		z-index: -1;
	}
	#i0:checked ~ #si0,
	#i1:checked ~ #si1,
	#i2:checked ~ #si2,
	#i3:checked ~ #si3,
	#i4:checked ~ #si4,
	#i5:checked ~ #si5,
	#i6:checked ~ #si6,
	#i7:checked ~ #si7,
	#i8:checked ~ #si8,
	#i9:checked ~ #si9,
	#i10:checked ~ #si10,
	#i11:checked ~ #si11,
	#i12:checked ~ #si12,
	#i13:checked ~ #si13,
	#i14:checked ~ #si14,
	#i15:checked ~ #si15,
	#i16:checked ~ #si16,
	#i17:checked ~ #si17,
	#i18:checked ~ #si18,
	#i19:checked ~ #si19,
	#i20:checked ~ #si20,
	#i21:checked ~ #si21,
	#i22:checked ~ #si22,
	#i23:checked ~ #si23,
	#i24:checked ~ #si24,
	#i25:checked ~ #si25,
	#i26:checked ~ #si26,
	#i27:checked ~ #si27,
	#i28:checked ~ #si28,
	#i29:checked ~ #si29,
	#i30:checked ~ #si30,
	#ilast:checked ~ #silast {
		z-index: 9;
	}
/*======================================================================================================*/
	/*--- 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;
	}
	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: 499;
	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;
			z-index: 500;
			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: 5px 0 0 0;
			line-height: 35px;
		}
			.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: 60px 20px 0;
		min-height: calc(100% - 60px);
	}
	/*===== PAGES =====*/
	/*--- Accueil ---*/
	#accueil { padding-top: 100px; box-sizing: border-box; }
		#accueil img { opacity: 1.0; }
	#kaiten_societe, #kaiten_histoire {
		padding: 30px 40px 30px;
		margin: 25px 0;
		font-size: 1.2em;
		line-height: 25px;
	}
	.prev, .next {
		width: 40px;
		border-radius: 20px;
		font-size: 1.3em;
	}

	/*--- 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: 600px) {
	/*===== PAGES =====*/
	/*--- Accueil ---*/
	#accueil { padding-top: 130px; }
	#kaiten_societe, #kaiten_histoire {
		font-size: 1.0em;
		line-height: 20px;
	}
	.prev, .next {
		width: 30px;
		border-radius: 15px;
		font-size: 1.2em;
	}

}