	

*{	
	
	margin:0;
	padding:0;
}

html {
	width: auto;
	height: 100%;
}

body {
	width: auto;
	height: 100%;
	font-family: sans-serif; 
	
	
    display: -webkit-box;	
	display: -webkit-flex;	
  	display: -ms-flexbox;	
  	display: flex;			
  	
  	
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
}	



::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 4px #aaa inset;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #B6B6B6;
}






@keyframes animation_dialog_fadein {
	from {
	    opacity: 0;
	    top: 50%;	
		left: 50%;
		transform: translateY(-40%) translateX(-50%);	
	    -webkit-transform: translateY(-40%) translateX(-50%);
	    -ms-transform: translateY(-40%) translateX(-50%);
	}
	to {
	    opacity: 1;
	    top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	    -webkit-transform: translateY(-50%) translateX(-50%);
	    -ms-transform: translateY(-50%) translateX(-50%);
	}
}


.dialog_root_background {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}


.dialog_contents_area {
	background: #FFFFFF;
	box-sizing: border-box;	
	width: 35%; 
	min-height: 25%;	
	max-height: 80%;
	border-radius: 9px 9px 9px 9px;
	padding: 0 2% 0 2%;
	
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    
   	
    display: -webkit-box;	
	display: -webkit-flex;	
  	display: -ms-flexbox;	
  	display: flex;			
  	
  	
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	
  	
  	animation-name: animation_dialog_fadein;	
    animation-duration: 0.4s;
}


@media all and (-ms-high-contrast: none){
	
  
	.dialog_contents_area {
		background: #FFFFFF;
		box-sizing: border-box;
		width: 35%;
		height: 35%;
			
			
		border-radius: 9px 9px 9px 9px;
		padding: 0 1.5% 0 1.5%;
		
		
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	    -webkit-transform: translateY(-50%) translateX(-50%);
	    -ms-transform: translateY(-50%) translateX(-50%);
	    
	   	
	    display: -webkit-box;	
		display: -webkit-flex;	
	  	display: -ms-flexbox;	
	  	display: flex;			
	  	
	  	
	  	-webkit-box-orient: vertical;
	  	-webkit-box-direction: normal;
	  	-ms-flex-direction: column;
	  	flex-direction: column;
	  	
	  	
	  	animation-name: animation_dialog_fadein;	
	    animation-duration: 0.4s;
	}
}


.dialog_title {
	text-align: center;
	padding: 5% 0 5% 0;	
	text-decoration: underline;	
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	
	
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}


.dialog_message {
		
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;	
	
	
	-webkit-flex-shrink: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
	
	overflow: auto;	
	
	position: relative; 
}


.dialog_buttons_area {
	text-align: center;
	font-size: 0.93em;
	padding: 3% 0 4% 0;
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	
	
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}


.dialog_input_plain_text {
	font-size: 1rem;
	width: 700px;
	max-width: 90%;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
}






.page_header {
	padding: 6px;
	border-bottom: solid 1px #abc3cd;
	text-align: center;
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	
	
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.header_logo_parent_a {
	text-decoration: none;	
}

.header_logo_img {
	height: 39px;
	vertical-align: middle;
}

.header_menu {
	visibility: hidden; 
	box-sizing: border-box;	
	padding: 5px 0;
	
	height: 39px;
	margin-left: 50%;	
	cursor: pointer;
	vertical-align: middle;	
}





.main_area {
		
	
	background-image: url("../common/image/bg_gray_world_map.png");	
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
	background-color: #FFFFFF;
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;	
	
	
	-webkit-flex-shrink: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
	
	position: relative; 
}



.main_float_area {
	
	border-radius: 10px;
	overflow: hidden;	
	
	background-color: #FFFFFF;	
	box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.3);
	
	color: #49616b; 
	
	
	height: 94%;
	width: 46%;
	
	
	
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto auto;
	
	
    display: -webkit-box;	
	display: -webkit-flex;	
  	display: -ms-flexbox;	
  	display: flex;			
  	
  	
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
	
    animation-name: fadein;	
    animation-duration: 0.4s;
}


@keyframes fadein {
	from {
	    opacity: 0;
	    transform: translateY(20px);
	}
	to {
	    opacity: 1;
	    transform: translateY(0);
	}
}



.main_float_area_header {
	background: #e7e8ea;
	padding: 1%;
	text-align: left;
	font-size: 0.75rem;
	font-weight: bolder;
	color: #445b66;
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	
	
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	
	
	box-sizing: border-box;	
	width: 100%;			
	white-space: nowrap;	
	overflow: hidden; 		
    text-overflow: ellipsis; 
}


.main_float_area_header_breadcrumb_list{
	
	box-sizing: border-box;	
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	
	
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.main_float_area_header_breadcrumb_list_link_text {
	cursor: pointer;
}

.main_float_area_header_breadcrumb_list_double_arrows{
	font-size: 0.3rem;
	font-weight: thin;
	font-family: monospace;
	padding: 0 0.2rem;
}



.main_float_area_scroll_area {	
	padding: 4% 3%;
	text-align: center;
	overflow: auto;
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;	
	
	
	-webkit-flex-shrink: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
}




.main_message_text {
	font-size: 1.0em;
	color: #F00000;
	margin: 50px 0 50px 0;
}





.soft_gray_button {
	box-sizing: border-box;
	cursor: pointer;
	color: #808080;
	background-color: #F2F2F2;
	padding: 0.5em 1rem;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	text-align: center;
	font-size: 1rem;
}


.soft_gray_button_tight {
	box-sizing: border-box;
	cursor: pointer;
	color: #808080;
	background-color: #F2F2F2;
	padding: 3px 5px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	text-align: center;
	font-size: 1rem;
}



.soft_gray_button_input_submit {
	box-sizing: border-box;
	cursor: pointer;
	color: #808080;
	background-color: #F2F2F2;
	padding: 0.5em 1rem;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	text-align: center;
	font-size: 1rem;
	border-style: none;	
}


.soft_gray_button_a {	
	box-sizing: border-box;	
	text-decoration: none;	
	color: #808080;
	background-color: #F2F2F2;
	padding: 0.5rem 1rem;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	text-align: center;
	font-size: 1rem;
}







.main_float_area_footer {
	box-sizing: border-box;	
	background: #FFFFFF;
	padding: 1.3%;
	
	border-top: solid 1px #b5b7b4;
	
	box-shadow: 0 -8px 6px -6px rgba(0, 0, 0, 0.15); 
	z-index: 1;	
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	
	
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}






.page_footer {
	background: #404952;
	padding: 1% 12% 1% 12%;
	
	color: rgba(255,255,255, 0.7);
	font-size: 0.9rem;
	text-align: right;
	
	
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	
	
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;	
	
	
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;	
}





.javascript_disabled_alert {
	color: #F00000;
	text-align: center;
	
	background: #F2F2F2;
	padding: 0.7% 3%;
	
	border-radius: 20px;
	
	position: absolute;	
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1000;
	
	pointer-events: none;
	
	border: solid 2px red;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}




.loading_parent {
	display: none;	
	text-align: center;
}




span.loading42 {
  display: inline-block;
  white-space: nowrap;
  font-size: 120%;
  color: #999;
  vertical-align: middle;
}
span.loading42 span {
  display: inline-block;
  vertical-align: middle;
}
span.loading42 span:nth-of-type(1) {
  -webkit-animation: animation42 2s ease 0s infinite;
  animation: animation42 2s ease 0s infinite;
}
span.loading42 span:nth-of-type(2) {
  -webkit-animation: animation42 2s ease 0.1s infinite;
  animation: animation42 2s ease 0.1s infinite;
}
span.loading42 span:nth-of-type(3) {
  -webkit-animation: animation42 2s ease 0.2s infinite;
  animation: animation42 2s ease 0.2s infinite;
}
span.loading42 span:nth-of-type(4) {
  -webkit-animation: animation42 2s ease 0.3s infinite;
  animation: animation42 2s ease 0.3s infinite;
}
span.loading42 span:nth-of-type(5) {
  -webkit-animation: animation42 2s ease 0.4s infinite;
  animation: animation42 2s ease 0.4s infinite;
}
span.loading42 span:nth-of-type(6) {
  -webkit-animation: animation42 2s ease 0.5s infinite;
  animation: animation42 2s ease 0.5s infinite;
}
span.loading42 span:nth-of-type(7) {
  -webkit-animation: animation42 2s ease 0.6s infinite;
  animation: animation42 2s ease 0.6s infinite;
}
span.loading42 span:nth-of-type(8) {
  -webkit-animation: animation42 2s ease 0.7s infinite;
  animation: animation42 2s ease 0.7s infinite;
}
span.loading42 span:nth-of-type(9) {
  -webkit-animation: animation42 2s ease 0.8s infinite;
  animation: animation42 2s ease 0.8s infinite;
}
span.loading42 span:nth-of-type(10) {
  -webkit-animation: animation42 2s ease 0.9s infinite;
  animation: animation42 2s ease 0.9s infinite;
}


@-webkit-keyframes animation42 {
  0% {
    margin-top: 0;
  }
  5% {
    margin-top: -1em;
  }
  10% {
    margin-top: 0;
  }
  13% {
    margin-top: -0.5em;
  }
  16% {
    margin-top: 0;
  }
  18% {
    margin-top: -0.2em;
  }
  20% {
    margin-top: 0;
  }
}
@keyframes animation42 {
  0% {
    margin-top: 0;
  }
  5% {
    margin-top: -1em;
  }
  10% {
    margin-top: 0;
  }
  13% {
    margin-top: -0.5em;
  }
  16% {
    margin-top: 0;
  }
  18% {
    margin-top: -0.2em;
  }
  20% {
    margin-top: 0;
  }
}







@media all and (max-width: 1024px) {
	
	
	.dialog_contents_area {
		width: 85%; 
	}
		
	
	.main_float_area {
		width: 100%;
		height: 100%;
		box-shadow: initial;	
		border-radius: initial;	
	}
	
}
















