@charset "UTF-8" ;

body {
	background-color: #ffffff ;
}

#header {
	height: 204px;
	background-color: #ffffff;
	position: relative;
	text-align: center; 
}

#page_title {
	border: double 5px #000000 ;
	height: 40px;
	width: 600px;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

#page_title h1 {
	margin-top: 5px ;
	margin-bottom: 5px ;
	font-size: 20px;
}

.section_space {
	height: 40px;
}

.section_title_noborder {
	height: 40px;
	background-color: #ffffff;
	text-align: center; 
	font-size: 10px;
}

.section_title {
	height: 40px;
	background-color: #ffffff;
	text-align: center; 
	border-top: solid 4px #cccccc ;
	font-size: 10px;
}

#map_info_area {
	text-align: center; 
}

.map {
	width: 900px ;
	margin-top: 5px ;
	margin-bottom: 5px ;
}

.section_title h2, .section_title_noborder h2 {
	font-size: 20px;
}

.camera_list, .link_list, .weather_list, .snowfall_data_list {
	margin-left: auto;
	margin-right: auto;
}

.brank_area {
	width: 309px ;
}

table.weather_list, table.snowfall_data_list {
	border-collapse: collapse ;
}

.weather_list th {
	width: 319px;
}

#weather_datetime {
	height: 90px ;
	font-size: 20px ;
}

.weather_title {
	font-size: 20px ;
	font-weight: 700 ;
	background-color: #bdd7F0 ;
	border: solid 1px #000000 ;
}

.weather_value {
	height: 60px ;
	font-size: 28px ;
	border: solid 1px #000000 ;
}

.weather_back_white {
	background-color: white ;
	color: black ;
}

.weather_back_yellow {
	background-color: yellow ;
	color: black ;
}

#weather_caution, #snowfall_caution {
	height: 100px ;
	font-size: 22px ;
	color: red ;
}

.link_list p {
	margin: 15px 0;
}

.link_list a {
	color: #0365c3 ;
}

.seeit_camera_area {
	height: 227px;
	background-color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.center {
	text-align: center ;
}

.display_none {
	display: none ;
}

#link_collection {
	width: 971px ;
	margin-left: auto;
	margin-right: auto;
}

#link_collection li.link {
	list-style: none ;
	margin: 10px 0 ;
	border: 2px solid #0e6cb4 ;
	border-radius: 12px ;
	background-color: #0071c1 ;
	font-size: 16px ;
	font-weight: bold;
	width: 231px ;
	height: 84px ;
	float: left;
	margin: 10px 30px 10px 30px;
	text-align: center ;
}

#link_collection li.link a:link, #link_collection li.link a:visited, #link_collection li.link a:hover, #link_collection li.link a:active {
	color: #ffffff ;
}

#link_collection li a {
	text-decoration: none ;
}

#link_collection p {
	margin: 0 ;
	padding: 18px ;
}

#link_area {
	height: 440px ;
}

.link_title_area {
	height: 84px ;
	display: table ;
	width: 100% ;
}

.link_title {
	display: table-cell ;
	vertical-align: middle ;
}

#telop_area {
	width: 970px ;
	margin-left: auto;
	margin-right: auto;
}

#telop_image_area {
	float: left ;
}

.marquee {
	position: relative;
	overflow: hidden;
	line-height: 1em;
	white-space: nowrap;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	vertical-align: middle;
	border-color: grey;
	border-width: 2px;
	border-style: ridge;
	font-size: 1.5em;
	font-weight: bold;
	background-color: #000;
	color: #0f0;
	width: 870px;
	height: 34px;
}

.marquee p {
	margin: 0;
	margin-top: 6px;
	padding-left: 100%;
	display: inline-block;
	white-space: nowrap;
	-webkit-animation-name: marquee;
	-webkit-animation-timing-function: linear;
	-webkit-animation-duration: 35s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-name: marquee;
	-moz-animation-timing-function: linear;
	-moz-animation-duration: 35s;
	-moz-animation-iteration-count: infinite;
	-ms-animation-name: marquee;
	-ms-animation-timing-function: linear;
	-ms-animation-duration: 35s;
	-ms-animation-iteration-count: infinite;
	-o-animation-name: marquee;
	-o-animation-timing-function: linear;
	-o-animation-duration: 35s;
	-o-animation-iteration-count: infinite;
	animation-name: marquee;
	animation-timing-function: linear;
	animation-duration: 35s;
	animation-iteration-count: infinite;
}

.information {
	text-align: left;
	position: relative;
	overflow: hidden;
	line-height: 1em;
	overflow-wrap: break-word;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	vertical-align: middle;
	border-color: grey;
	border-width: 2px;
	border-style: ridge;
	font-size: 18px ;
	background-color: #ffffcc;
	color: #ff2222;
	width: 870px;
	height: 34px;
}

.information p {
	margin-left: 10px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
}

a.decoration_none, a.decoration_none:link, a.decoration_none:visited, a.decoration_none:hover, a.decoration_none:active {
	text-decoration: none;
	color: black;
}

@-webkit-keyframes marquee {
	from   { -webkit-transform: translate(0%);}
	99%,to { -webkit-transform: translate(-100%);}
}
@-moz-keyframes marquee {
	from   { -moz-transform: translate(0%);}
	99%,to { -moz-transform: translate(-100%);}
}
@-ms-keyframes marquee {
	from   { -ms-transform: translate(0%);}
	99%,to { -ms-transform: translate(-100%);}
}
@-o-keyframes marquee {
	from   { -o-transform: translate(0%);}
	99%,to { -o-transform: translate(-100%);}
}
@keyframes marquee {
	from   { transform: translate(0%);}
	99%,to { transform: translate(-100%);}
}

.observation_datetime {
	font-size: 20px ;
	margin-top: 35px ;
	margin-bottom: 35px ;
}

table.snowfall_data_list {
	width: 963px ;
}

.observation_point_name {
	width: 963px ;
	font-size: 20px ;
	margin-left: auto ;
	margin-right: auto ;
}

.snowfall_data_list th {
	font-size: 20px ;
	border: 1px solid ;
	background-color: #bdd7F0 ;
	vertical-align: middle ;
}

.snowfall_data_list td {
	font-size: 20px ;
	background-color: white ;
	vertical-align: middle ;
}

td.observation_date {
	border-left: 1px solid ;
	border-top: 1px solid ;
	border-bottom: 1px solid ;
}

td.observation_time {
	border-right: 1px solid ;
	border-top: 1px solid ;
	border-bottom: 1px solid ;
}

td.observation_snow {
	border: 1px solid ;
}

td.observation_date, td.observation_time, td.observation_snow {
	text-align: center ;
}

#snowfall_caution {
	border: none ;
}

#douro_link {
	height: 94px;
	width: 970px;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

#douro_link label {
	margin: 10px 0 ;
	border: 2px solid #345a99 ;
	border-radius: 12px ;
	background-color: #4473c5 ;
	font-size: 20px ;
	width: 970px ;
	float: left;
	text-align: center ;
	cursor: pointer;
}

#douro_link a {
	text-decoration: none ;
}

#douro_link a:link, #douro_link a:visited, #douro_link a:hover, #douro_link a:active {
	color: #ffffff ;
}

#temp_bridge_caution {
	width: 970px ;
	border: none ;
	color: red ;
	font-size: 22px ;
}

#temp_bridge_caution p {
	margin: 0 ;
	padding-top: 20px ;
}

.camera_2_col {
	padding: 0 40px ;
}

.adjustment_caution {
	font-size: 26px ;
	text-align: center ;
}

#comment_area {
    width: 966px;
    margin: 10px auto;
	border: 2px solid black;
}

#comment_box {
	padding: 5px 20px;
}

#comment_box p {
    text-align: left;
	font-size: 18px;
	margin: 5px 0;
}

#inquiry_area {
    width: 860px;
    margin: 10px auto;
}

#inquiry_box {
	padding: 5px 20px;
	height: 200px;
}

#inquiry_box p {
    text-align: left;
	font-size: 20px;
	margin: 5px 0;
}

.cl_black {
	color: black;
}

.cl_red {
	color: red;
}

.underline {
	text-decoration: underline;
}

#bt_reload {
	vertical-align: bottom;
	margin-left: 20px;
	cursor: pointer;
}
