html {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: calc(0.5em + 0.5vw);
	margin: 0;
	/* saloperie de bug iphone */
	/* -webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-perspective: 1000;
	perspective: 1000;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden; */
}

body{
	margin: 0;
}

h1{
	border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    font-size: 3vw;
    line-height: 1.2em;
}

/* Classic blue button */
.bluebutton {
	cursor: default;
	text-shadow: 0 1px #0D47A1;
	background-color: #42A5F5;
	border-color: #1E88E5 #1976D2 #1976D2;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 36px;
	line-height: 24px;
	padding: 0 12px;
	font-size: 14px;
	color: white;
	text-align: center;
	text-decoration: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
}

.bluebutton:hover {
	background-color: #1565C0;
}

.bluebutton:active {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 -1px #154c86;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	text-shadow: 0 -1px #1976D2;
	background: #42A5F5;
	border-color: #0D47A1 #1976D2 #2196F3;
	background-image: -webkit-linear-gradient(top, #1E88E5, #448AFF);
	background-image: -moz-linear-gradient(top, #1E88E5, #448AFF);
	background-image: -o-linear-gradient(top, #1E88E5, #448AFF);
	background-image: linear-gradient(to bottom, #1E88E5, #448AFF);
}

.bluebutton:focus {
    outline: none;
}

/* Classic green button */
.greenbutton {
	cursor: default;
	text-shadow: 0 1px #0d4d09;
	background-color: #1ca913;
	border-color: #147b0e #11640b #11640b;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 76px;
	line-height: 36px;
	padding: 0 14px;
	font-size: 14px;
	color: white;
	text-align: center;
	text-decoration: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
}

.greenbutton:hover {
	background-color: #159b0d;
}

.greenbutton:active {
	color: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	text-shadow: 0 -1px #0d4d09;
	background: #189210;
	border-color: #093606 #0d4d09 #147b0e;
	background-image: -webkit-linear-gradient(top, #126d0c, #20c016);
	background-image: -moz-linear-gradient(top, #126d0c, #20c016);
	background-image: -o-linear-gradient(top, #126d0c, #20c016);
	background-image: linear-gradient(to bottom, #126d0c, #20c016);
}

.greenbutton:focus {
    outline: none;
}

.greenbuttonactive {
	cursor: default;
	background-color: #1ca913;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 76px;
	line-height: 36px;
	padding: 0 14px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 -1px #154c86;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	text-shadow: 0 -1px #0d4d09;
	background: #189210;
	border-color: #093606 #0d4d09 #147b0e;
	background-image: -webkit-linear-gradient(top, #126d0c, #20c016);
	background-image: -moz-linear-gradient(top, #126d0c, #20c016);
	background-image: -o-linear-gradient(top, #126d0c, #20c016);
	background-image: linear-gradient(to bottom, #126d0c, #20c016);
	outline: none;
}

.greenbuttonactive:hover {
	background-color: #159b0d;
}

.greenbuttonactive:active {
	color: white;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	text-shadow: 0 1px #0d4d09;
	background-color: #1ca913;
	border-color: #147b0e #11640b #11640b;
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
}

.greenbuttonactive:focus {
	outline: none;
}

/* Classic red button */
.redbutton {
	cursor: default;
	text-shadow: 0 1px #B71C1C;
	background-color: #D50000;
	border-color: #E53935 #D32F2F #D32F2F;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 76px;
	line-height: 36px;
	padding: 0 14px;
	font-size: 14px;
	color: white;
	text-align: center;
	text-decoration: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
}

.redbutton:hover {
	background-color: #C62828;
}

.redbutton:active {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 -1px #154c86;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	text-shadow: 0 -1px #D32F2F;
	background: #EF5350;
	border-color: #B71C1C #D32F2F #F44336;
	background-image: -webkit-linear-gradient(top, #E53935, #FF5252);
	background-image: -moz-linear-gradient(top, #E53935, #FF5252);
	background-image: -o-linear-gradient(top, #E53935, #FF5252);
	background-image: linear-gradient(to bottom, #E53935, #FF5252);
}

.redbutton:focus {
    outline: none;
}

/* Classic green button */
.greenbutton {
	cursor: default;
	text-shadow: 0 1px #0d4d09;
	background-color: #1ca913;
	border-color: #147b0e #11640b #11640b;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 76px;
	line-height: 36px;
	padding: 0 14px;
	font-size: 14px;
	color: white;
	text-align: center;
	text-decoration: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
}

.greenbutton:hover {
	background-color: #159b0d;
}

.greenbutton:active {
	color: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	text-shadow: 0 -1px #0d4d09;
	background: #189210;
	border-color: #093606 #0d4d09 #147b0e;
	background-image: -webkit-linear-gradient(top, #126d0c, #20c016);
	background-image: -moz-linear-gradient(top, #126d0c, #20c016);
	background-image: -o-linear-gradient(top, #126d0c, #20c016);
	background-image: linear-gradient(to bottom, #126d0c, #20c016);
}

.greenbutton:focus {
    outline: none;
}

.greenbuttonactive {
	cursor: default;
	background-color: #1ca913;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 76px;
	line-height: 36px;
	padding: 0 14px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 -1px #154c86;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	text-shadow: 0 -1px #0d4d09;
	background: #189210;
	border-color: #093606 #0d4d09 #147b0e;
	background-image: -webkit-linear-gradient(top, #126d0c, #20c016);
	background-image: -moz-linear-gradient(top, #126d0c, #20c016);
	background-image: -o-linear-gradient(top, #126d0c, #20c016);
	background-image: linear-gradient(to bottom, #126d0c, #20c016);
	outline: none;
}

.greenbuttonactive:hover {
	background-color: #159b0d;
}

.greenbuttonactive:active {
	color: white;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	text-shadow: 0 1px #0d4d09;
	background-color: #1ca913;
	border-color: #147b0e #11640b #11640b;
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
}

.greenbuttonactive:focus {
	outline: none;
}

/* Classic red button */
.redbutton {
	cursor: default;
	text-shadow: 0 1px #B71C1C;
	background-color: #D50000;
	border-color: #E53935 #D32F2F #D32F2F;
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 76px;
	line-height: 36px;
	padding: 0 14px;
	font-size: 14px;
	color: white;
	text-align: center;
	text-decoration: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
}

.redbutton:hover {
	background-color: #C62828;
}

.redbutton:active {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 -1px #154c86;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	text-shadow: 0 -1px #D32F2F;
	background: #EF5350;
	border-color: #B71C1C #D32F2F #F44336;
	background-image: -webkit-linear-gradient(top, #E53935, #FF5252);
	background-image: -moz-linear-gradient(top, #E53935, #FF5252);
	background-image: -o-linear-gradient(top, #E53935, #FF5252);
	background-image: linear-gradient(to bottom, #E53935, #FF5252);
}

.redbutton:focus {
    outline: none;
}

.tile {
	box-sizing: border-box;
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
	padding: 20px;
	border-radius: 10px 10px 10px 10px;
	vertical-align: middle;
	background-color: #ffffff;
	margin-left: auto;
	margin-right: auto;
	height: fit-content;
	width: fit-content;
	margin-top: 10%;
	margin-bottom: 10%;
	position: relative;
}

.overlaywrap_lvl1{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(0, 0, 0, 0.5);
	overflow: overlay;
}
.overlaywrap_lvl2{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 200;
	background: rgba(0, 0, 0, 0.5);
	overflow: overlay;
}
.overlaywrap_lvl3{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 300;
	background: rgba(0, 0, 0, 0.5);
	overflow: overlay;
}
.overlaywrap_lvl4{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 400;
	background: rgba(0, 0, 0, 0.5);
	overflow: overlay;
}
.overlay_header{
	height: 5%;
	text-align: center;
	margin: 10px 0px;
}
.overlay_body{
	height: 90%;
	margin: 20px 0px;
}
.overlay_footer{
	height: 5%;
	text-align: center;
	margin: 10px 0px;
}

.button_delete{
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	max-width: 1.6vw;
}

.PageTitle{
	display: block;
    margin: 1em auto;
    width: 100%;
	text-align: center;
	white-space: nowrap;
	font-size: 14px;
}

.Table-Nav-Menu{
	margin: auto;
    width: fit-content;
    display: flex;
    text-align: center;
    box-sizing: border-box;
    padding: 6px 12px;
    border-radius: 5px 5px 5px 5px;
    vertical-align: middle;
    background-color: #ffeff2;
    width: fit-content;
	cursor: default;
	white-space: nowrap;
	line-height: 1;
}

.Table-Nav-Menu p {
	line-height: 18px;
	margin: 0;
}

.Table-Nav-Menu img {
	min-width: 16px;
}

.Table-Nav-Menu img:hover {
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.8);
}

.Table-Nav-Menu img:active {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
}

.arrow-down {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #ffffff;
}

.arrow-up {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #ffffff;
}

/** custom scroll bar [START] **/

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #FFE0E8;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #FFC6D6;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #FF7699;
}

/** custom scroll bar [END] **/

.logtable {
	border-spacing: 0;
	border-collapse: collapse;
	margin: 15px auto;
	width:fit-content;
}
.logtable, .logtable th, .logtable tr, .logtable td{
	border: 1px #888888 solid;
	padding:4px;
	font-size: calc(.3em + .55vw );
}

.whitekpink_button{
	cursor: default;
	width: 20vw;
	min-width: fit-content;
    height: 3vw;
    margin: 16px;
	padding: 3px 6px;
	background-color: #FFFFFF;
    border: 2px solid #FF7699;
	font-size: 1.5vw;
	color: #FF7699;
	user-select: none;
}

.whitekpink_button:hover{
	color: #FFFFFF;
	background-color: #FF7699;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	line-height: 1px;
	border: none;
}

.whitekpink_button:active{
	-webkit-box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
}

.whitekpink_button:focus{
    outline: none;
}

.whiteblue_button{
	cursor: default;
	width: 20vw;
	min-width: fit-content;
    height: 3vw;
    margin: 16px;
	padding: 3px 6px;
	background-color: #FFFFFF;
    border: 2px solid #ADC4F0;
	font-size: 1.5vw;
	color: #ADC4F0;
	user-select: none;
}

.whiteblue_button:hover{
	color: #FFFFFF;
	background-color: #ADC4F0;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	line-height: 1px;
	border: none;
}

.whiteblue_button:active{
	-webkit-box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
}

.whiteblue_button:focus{
    outline: none;
}

.darkpink_button{
	cursor: default;
	width: 20vw;
	min-width: fit-content;
    height: 3vw;
    margin: 16px;
	padding: 3px 6px;
	background-color: #FF7699;
	font-size: 1.5vw;
	color: #FFFFFF;
	border: none;
	user-select: none;
}

.darkpink_button:hover{
    border: 2px solid #FF7699;
	color: #FF7699;
	background-color: #FFFFFF;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	line-height: 1px;
}

.darkpink_button:active{
	-webkit-box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
}

.darkpink_button:focus{
    outline: none;
}

.bluegrey_button{
	cursor: default;
	width: 20vw;
	min-width: fit-content;
    height: 3vw;
    margin: 16px;
	padding: 3px 6px;
	background-color: #ADC4F0;
	font-size: 1.5vw;
	color: #FFFFFF;
	border: none;
	user-select: none;
}

.bluegrey_button:hover{
    border: 2px solid #ADC4F0;
	color: #ADC4F0;
	background-color: #FFFFFF;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	line-height: 1px;
}

.bluegrey_button:active{
	-webkit-box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
}

.bluegrey_button:focus{
    outline: none;
}

.pink_button{
	cursor: default;
	width: 25vw;
	min-width: fit-content;
    height: 4vw;
    margin: 16px;
	padding: 3px 6px;
	background-color: #FF99CC;
	font-size: 2vw;
	color: #FFFFFF;
	border: none;
	user-select: none;
}

.pink_button:hover{
    border: 2px solid #FF99CC;
	color: #FF99CC;
	background-color: #FFFFFF;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	line-height: 1px;
}

.pink_button:active{
	-webkit-box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
}

.pink_button:focus{
    outline: none;
}


.blue_button{
	cursor: default;
	width: 25vw;
	min-width: fit-content;
    height: 4vw;
    margin: 16px;
	padding: 3px 6px;
	background-color: #66CCFF;
	font-size: 2vw;
	color: #FFFFFF;
	border: none;
	user-select: none;
}

.blue_button:hover{
    border: 2px solid #66CCFF;
	color: #66CCFF;
	background-color: #FFFFFF;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	line-height: 1px;
}

.blue_button:active{
	-webkit-box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 31px rgba(255, 153, 204, 0.2), 0px 2px rgba(255, 255, 255, 0.4);
}

.blue_button:focus{
    outline: none;
}

.text_pink_whiteshadow{
	color: #FF7699;
	font-size: 2vw;
	font-weight: 900;
	text-shadow: 2px 2px 8px #FFFFFF,2px 2px 8px #FFFFFF,2px 2px 8px #FFFFFF,2px 2px 8px #FFFFFF,2px 2px 8px #FFFFFF,2px 2px 8px #FFFFFF,2px 2px 8px #FFFFFF;

}

.text_darkpink_on_white{
	color: #FF7699;
	font-size: 2vw;
	font-weight: 900;
	background-color: #FFFFFF;
	border-radius: 8px;
}

.text_blue_on_white{
	color: #66CCFF;
	font-size: 2vw;
	font-weight: 900;
	background-color: #FFFFFF;
	border-radius: 8px;
}

.Container_Section_Title_darkpink{
	background-color: #FF7699;
	height: 10vw;
	display: flex;
}

.Section_Title{
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	width: 40vw;
	margin: auto auto;
    padding: 0.5vw;
	color: #FFFFFF;
	font-size: 3vw;
}


.Container_Section_Title_white{
	background-color: #FFFFFF;
	min-height: 10vw;
	display: flex;
    margin: auto;
	width: 100%;
	height: fit-content;
}


.Section_Title_Pink{
	border-top:none;
	border-bottom: 1px solid #FF99CC;
	width: 60vw;
	margin: auto auto;
    padding: 0.5vw;
	color: #FF99CC;
	font-size: 3vw;
}

.Section_Title_Blue{
	border-top:none;
	border-bottom: 1px solid #66CCFF;
	width: 60vw;
	margin: auto auto;
    padding: 0.5vw;
	color: #66CCFF;
	font-size: 3vw;
}


ol li.chapter{
	list-style-type:none;
	list-style-position:inside;
	counter-increment: chapter_count;
}
	ol li.chapter:before{
	display: marker;
	content: "第" counter(chapter_count) "章　" ;
}


ol li.sub{
	list-style-type:none;
	list-style-position:inside;
	counter-increment: sub_count;
}
	ol li.sub:before{
	display: marker;
	content: "第" counter(sub_count) "条　" ;
}

@supports (-webkit-overflow-scrolling: touch) {
	.background_01{
		background-size: 100% auto;
		background-image: url('/rsc/img/page_visual/shared/background_PC_01.jpg');
	}
	.background_CUT_01{
		background-size: 100% auto;
		background-image: url('/rsc/img/page_visual/shared/background_CUT_01.jpg');
	}
}
@supports not (-webkit-overflow-scrolling: touch) {
	.background_01{
		background-size: 100% auto;
		background-image: -webkit-image-set(url('/rsc/img/page_visual/shared/background_PC_01.webp') 1x);
	}
	.background_CUT_01{
		background-size: 100% auto;
		background-image: -webkit-image-set(url('/rsc/img/page_visual/shared/background_CUT_01.webp') 1x);
	}
}
@supports (-webkit-overflow-scrolling: touch) {
	.background_02{
		background-size: 100% auto;
		background-image: url('/rsc/img/page_visual/shared/background_PC_02.png');
	}
	.background_CUT_02{
		background-size: 100% auto;
		background-image: url('/rsc/img/page_visual/shared/background_CUT_02.png');
	}
}
@supports not (-webkit-overflow-scrolling: touch) {
	.background_02{
		background-size: 100% auto;
		background-image: -webkit-image-set(url('/rsc/img/page_visual/shared/background_PC_02.webp') 1x);
	}
	.background_CUT_02{
		background-size: 100% auto;
		background-image: -webkit-image-set(url('/rsc/img/page_visual/shared/background_CUT_02.webp') 1x);
	}
}

.blue_background_white_frame{
	background-size: cover;
    background-repeat: no-repeat;
	background-color: #C2EBFF;
}

@media (max-width: 750px) {
	@supports (-webkit-overflow-scrolling: touch) {
		.background_01{
			background-size: 100% auto;
			background-image: url('/rsc/img/page_visual/shared/background_SP_01.jpg');
		}
	}
	@supports not (-webkit-overflow-scrolling: touch) {
		.background_01{
			background-size: 100% auto;
			background-image: -webkit-image-set(url('/rsc/img/page_visual/shared/background_SP_01.webp') 1x);
		}
	}
	@supports (-webkit-overflow-scrolling: touch) {
		.background_02{
			background-size: 100% auto;
			background-image: url('/rsc/img/page_visual/shared/background_SP_02.jpg');
		}
	}
	@supports not (-webkit-overflow-scrolling: touch) {
		.background_02{
			background-size: 100% auto;
			background-image: -webkit-image-set(url('/rsc/img/page_visual/shared/background_SP_02.webp') 1x);
		}
	}
	.blue_background_white_frame{
		background-size: cover;
		background-repeat: no-repeat;
		background-color: #C2EBFF;
	}
	.body{
		overflow-y: auto;
	}
	/* Track */
	::-webkit-scrollbar-track {
		background: none;
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
		background: none;
	}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: none;
	}
	/* width */
	::-webkit-scrollbar {
		width: 0px;
		height: 0px;
	}

	.darkpink_button, .pink_button, .blue_button, .whitekpink_button, .whiteblue_button, .bluegrey_button {
		-webkit-appearance: none;
		border-radius: 0;
		min-width: 140px;
		width: -moz-fit-content;
		width: fit-content;
		height: 30px;
		font-size: 16px;
	}
	.Container_Section_Title_darkpink{
		height: 11vw;
	}
	.Section_Title{
		font-size: 4vw;
	}
}