@CHARSET "UTF-8";

/* Home Page
   ========================================================================== */
.home-page-layout {
	display:flex;
	flex-direction: column;
	padding-top:var(--stickyHeight);
	height:calc(100vh - var(--stickyHeight));
}
.main {
	box-sizing:border-box;
	width:100% ; 
	min-height:100% ; 
	display:flex;
	flex-direction:column;
	background-color:#fff
}
.main-layout {
	display: flex;
  	flex-direction: column;
	margin:0 auto;
	max-width:1024px;
	width:1024px;
	flex-grow:1;
	flex-shrink:0;
	margin-bottom:var(--marginBottom);
}
.home-message {
	position: relative;
	padding:0 1.5rem 0 1rem;
	margin-top:2.5rem;
	z-index: 1;
}
.home-message:after {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 99%;
	height: 99%;
	border-radius: 1rem;
	background: linear-gradient(to right bottom,#72c6ef,#004e8f);
	transform: rotate(4deg);
	transform-origin: 40% 70%;
	box-shadow: inset 0 1px 1px 0 hsla(0,0%,100%,.15),0 50px 100px -20px rgba(50,50,93,.3),0 30px 60px -30px rgba(0,0,0,.5),-10px 10px 60px -10px rgba(103,178,111,.3);
}
.home-message-inner {
	display:flex;
	background: #fff;
	border-radius: 1rem;
	padding: 2rem;
	position: relative;
	z-index: 1;
	box-shadow:inset 0 1px 1px 0 hsla(0,0%,100%,.15),0 50px 100px -20px rgba(50,50,93,.3),0 30px 60px -30px rgba(0,0,0,.5),-10px 10px 60px -10px rgba(103,178,111,.3);
}
/* page error
   ========================================================================== */
.error_page {	
	font-size:13px;
	padding-left:1.5rem;
	text-align:justify;
	line-height:1.3;
}
.checkbox__button_small {
	margin:4px;
	width:100%;
}

.checkbox__button_small label {
	border:1px solid #999;
	overflow:hidden;
	word-wrap:break-word;
	cursor:pointer;
	display:block;
	margin-bottom:0;
	margin-top:0;
	background-color:#fff;
	font-size:0.85rem;
	border-radius:15px;
	padding:5px 15px;
}

.checkbox__button_small span {
	text-align:center;
	line-height:1.5;
	font-weight:400;
	display:block;
}

.checkbox__button_small input[type="checkbox"]:checked + label {
	border:2px solid #08c;
}

.checkbox__button_small input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}
.inset {
	background-color:#fff;
	min-width: 730px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: inherit;
	padding:1rem 3rem;
}
:root{
	--body-background:#f0f1f3;
	--body-color:#183153;
}
body {
	background:var(--body-background);
	color:var(--body-color);
}