@charset "UTF-8";
/*
#overview
共通コンテンツ系
*/
/* 基本の配置 */
html {
  margin: 0;
}

body {
  margin: 0;
  height: 100%;
  min-width: 1180px;
  padding-top: 69px;
}

.header {
  width: 100%;
  margin-top: -69px;
  height: 69px;
  z-index: 10;
}

.main {
  width: 1180px;
  margin: 0 auto;
  height: 100%;
  display: table;
  table-layout: fixed;
}

.topic-path {
  padding-left: 0.8rem;
  font-size: 1.3rem;
}

.topic-path .page-title {
  font-weight: bold;
  font-size: 1.4rem;
}

.obs-time {
  padding-right: 0.8rem;
}

.side-nav {
  z-index: 2;
  display: table-cell;
  width: 17.0rem;
  vertical-align: top;
}

.contents-wrapper {
  display: table-cell;
  width: 101rem;
  vertical-align: top;
}

/* ヘッダ */
.global {
  height: 45px;
  background-color: white;
}

.global .title {
  background: url("../images/logo.png") no-repeat;
  background-size: 40px;
  background-position: 0 3px;
  padding-top: 3px;
  padding-left: 42px;
  display: inline-block;
  height: 45px;
  line-height: 22.5px;
  /* 改行数 */
  font-weight: bold;
  font-size: 1.8rem;
  color: #103d4c;
}

.global .title .jurisdiction {
  width: 100%;
  display: block;
  color: #454545;
  font-weight: normal;
}

.outlink {
  height: 45px;
  line-height: 45px;
  padding-right: 0.8rem;
}

.outlink > a:hover {
  border-bottom: 1px solid #858585;
  padding-bottom: 1px;
}

.outlink > a:after {
  position: relative;
  top: 4px;
  right: 0;
  margin-left: 5px;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/weather-icon.png") no-repeat 0 3px;
}

/* パンくず・観測時刻 */
.info {
  position: relative;
  width: 100%;
  background-color: #103d4c;
  height: 24px;
  line-height: 24px;
  z-index: 2;
  color: white;
}

/* TOPのお知らせ（新着情報）表示 */
.information {
  position: relative;
  top: 30.5rem;
  width: 100%;
  height: 25rem;
  overflow: hidden;
}

.information .scroll {
  padding-bottom: 1.0rem;
  height: 21rem;
  overflow: auto;
}

.information .topic {
  margin: 1.0rem;
  padding: 0.5rem 1.5rem;
  position: relative;
  min-height: 3.4rem;
  line-height: 1.6;
  border: 1px solid #c5c5c5;
  background-color: white;
}

.information .topic:after {
  display: block;
  content: "";
  clear: both;
}

.information .topic.type-card {
  box-shadow: 4px 4px 10px #c5c5c5;
}

.information .topic.type-card:hover {
  box-shadow: 2px 2px 2px #c5c5c5;
  top: 0.2rem;
  left: 0.1rem;
}

.information .topic .date {
  float: left;
  width: 40%;
}

.information .topic .date:before {
  display: inline-block;
  margin-right: 0.4rem;
  position: relative;
  top: 0.1rem;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  background-color: #43a6c7;
}

.information .topic a {
  display: block;
  float: left;
  width: 100%;
  line-height: 1.4;
  word-break: break-all;
}

.information .topic a:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0.2rem;
  margin-right: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
}

.information .topic:hover {
  cursor: pointer;
  position: relative;
}

.information .topic:hover a {
  color: #43a6c7;
  border-bottom-color: #43a6c7;
}

a.pdf:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0.2rem;
  margin-right: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("../images/icon-file.png");
}

/* コンテンツエリアの基本設定 */
.contents-wrapper {
  position: relative;
  padding: 0 0.8rem;
  background-color: white;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1), 0 4px 4px -3px rgba(0, 0, 0, 0.2);
}

.contents-title {
  padding: 0.5rem 0;
  color: #43a6c7;
  font-size: 1.8rem;
  font-weight: bold;
}

.division-contents {
  position: relative;
  min-width: 92rem;
  min-height: 50rem;
  font-size: 1.2rem;
}

.container {
  position: relative;
  padding-top: 0.4rem;
  min-height: 50rem;
  color: #454545;
}

.optional-btn {
  position: absolute;
  height: 24px;
  width: 300px;
  top: 1.0rem;
  right: 0.8rem;
  text-align: right;
}

/* ボタンの基本スタイル */
.btn {
  font-size: 1.3rem;
  padding: 0.2rem 0.4rem;
  min-width: 5.0rem;
  text-align: center;
  display: inline-block;
  border: 1px solid #c5c5c5;
  border-radius: 0.6rem;
  background: -webkit-linear-gradient(white, #ebebeb);
  background: linear-gradient(white, #ebebeb);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  cursor: pointer;
  border-color: #a5d5e4;
  box-shadow: 0 0 2px 1px #a5d5e4;
}

.btn.narrow {
  padding: 2px 4px;
  min-width: 40px;
}

.btn.wide {
  min-width: 150px;
}

.btn:hover:not(.disabled) {
  cursor: pointer;
  background: -webkit-linear-gradient(white, #ebebeb);
  background: linear-gradient(white, #ebebeb);
}

.btn.disabled {
  background: #dedede;
  color: #c5c5c5;
  border: 1px solid #c5c5c5;
  box-shadow: none;
  cursor: default;
}

.ctrl-btns {
  width: 100%;
  height: 30px;
  display: table;
  border-collapse: collapse;
  background-color: white;
}

.ctrl-btn {
  display: table-cell;
  width: 8.33333%;
  background: -webkit-linear-gradient(#f8f8f8, #dedede);
  background: linear-gradient(#f8f8f8, #dedede);
  border: 1px solid #c5c5c5;
  text-align: center;
  vertical-align: middle;
  font-size: 1.3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ctrl-btn:hover:not(.is_disable) {
  cursor: pointer;
  background: -webkit-linear-gradient(white, #ebebeb);
  background: linear-gradient(white, #ebebeb);
}

.ctrl-btn.is_disable {
  background: #d2d2d2;
  color: #ebebeb;
}

.switch-btn {
  float: left;
  min-width: 85px;
  padding: 4px 6px;
  background: -webkit-linear-gradient(white, #ebebeb);
  background: linear-gradient(white, #ebebeb);
  border: 1px solid #c5c5c5;
  border-left: 1px solid white;
  text-align: center;
  font-size: 1.3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}

.switch-btn.small {
  min-width: 40px;
  padding: 2px 8px;
}

.switch-btn:not(.is_active):hover {
  cursor: pointer;
  border-color: #a5d5e4;
}

.switch-btn.left {
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  border-left-color: #c5c5c5;
}

.switch-btn.left:not(.is_active):hover {
  box-shadow: -1px 1px 2px #A5D4E4, -1px -1px 2px #A5D4E4;
}

.switch-btn.right {
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}

.switch-btn.right:not(.is_active):hover {
  box-shadow: 1px 1px 2px #A5D4E4,1px -1px 2px  #A5D4E4;
}

.switch-btn.is_active {
  background: -webkit-linear-gradient(#3189a6, #4baac9);
  background: linear-gradient(#3189a6, #4baac9);
  color: white;
}

.switch-btn.is_active:hover {
  cursor: default;
}

/* 時刻指定・ページ指定系ボタン */
.page-control {
  margin-top: 0.4rem;
  width: 100%;
  height: 30px;
}

.page-control .caption {
  margin-right: 5px;
  color: #43a6c7;
  font-weight: bold;
  line-height: 26px;
}

.page-control .timeSet {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 32px;
}

.page-control ul {
  position: relative;
  display: inline-block;
  height: 30px;
  margin: 0 5px 0 5px;
  padding: 3px 0 0 10px;
}

.page-control .timeSpan li {
  float: left;
}

.page-control .pageSet li {
  float: left;
}

.page-control .pageSet .pageCnt {
  margin: 0 5px;
  padding: 3px 8px;
}

/* 更新ボタン */
.btn.refresh {
  padding: 0;
  margin-left: 1.0rem;
  font-family: "メイリオ", Meiryo, "MS Pゴシック", sans-serif;
}

/* カレンダーボタン */
button.calendar {
  background-image: -webkit-linear-gradient(white, #ebebeb);
  background-image: linear-gradient(white, #ebebeb);
  background-repeat: no-repeat;
  background-color: white;
  background-position: 50% 50%;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #c5c5c5;
  border-radius: 0.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 12/21:小原追加 */
  margin-left: 5px;
}

button.calendar:hover {
  cursor: pointer;
  border-color: #a5d5e4;
  box-shadow: 0 0 2px 1px #a5d5e4;
}

/* トグルボタン */
.switch-contents .switch-item {
  padding: 0.1rem;
  float: left;
  text-align: center;
  border-right: 1px solid #c5c5c5;
  width: 12.0rem;
}

.switch-contents .switch-item:first-child {
  border-left: 1px solid #c5c5c5;
}

.switch-contents .switch-item a {
  padding: 0.2rem;
  display: inline-block;
  width: 100%;
}

.switch-contents .switch-item.is_active a {
  background-color: #d6ecf3;
  color: #20586b;
  font-weight: bold;
  cursor: default;
}

.switch-contents .switch-item:not(.is_active):hover a {
  color: #20586b;
  font-weight: bold;
}

.centering {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.panel {
  border: 1px solid #c5c5c5;
  box-shadow: 0 0 1px rgba(133, 133, 133, 0.3);
  background-color: white;
}

.panel-header {
  margin: 5px;
  background-color: #43a6c7;
}

.panel-header .panel-title {
  font-size: 2rem;
  line-height: 2rem;
  padding: 0.8rem;
  color: white;
}

.panel-body {
  margin: 5px;
  margin-top: 0;
}

.panel-footer {
  background-color: #dedede;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.panel-button {
  margin: 1.0rem;
}

/*
#styleguide
コンテンツタイトル

画面別コンテンツのタイトルのスタイル。

```
<div class="contents-title">[局名] [画面名]</div>
```
*/
/*
#styleguide
コンテンツ操作用コントロール

1).ctrl-btns が display:table; になっていて
　.ctrl-btn が display: table-cell;
　ので、 vertical-align で 文字の垂直位置指定可能。
　このクラスつける要素はdiv/span でも ul/li でも大丈夫。指定なし。
　↓はdiv/spanだけどデモ画面はul/li

2).is_disable でグレーになる。

※table/table-cellなので、 ctrl-btnsの幅が広くて、ctrl-btn が 1つだと100%になっちゃう。

```
<div class="ctrl-btns">
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn is_disable">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn is_disable">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
	<span class="ctrl-btn">ボタン</span>
</div>
<div class="ctrl-btns">
	<span class="ctrl-btn">ボタン</span>
</div>
```
 */
/*
#styleguide
スイッチボタン

TOPのところでしか使わないかもしれない。
.is_active で青色。
※floatしているので、使うときは switchと一緒にcleafixもつけてください。
　こちらも要素の限定なし。

```
1つバージョン(チェックボックスとか・・・？ラジオボタンとか・・・？)
<div class="switch clearfix">
	<span class="switch-btn">ボタン</span>
</div>

複数バージョン
<ul class="switch clearfix">
	<li class="switch-btn">ボタン</li>
	<li class="switch-btn is_active">ボタン</li>
	<li class="switch-btn">ボタン</li>
	<li class="switch-btn">ボタン</li>
	<li class="switch-btn">ボタン</li>
</ul>
```
 */
