@charset "UTF-8";

/****************************************
* button
****************************************/

/* circle */
.btn_circle {
    display: inline-block;
    text-decoration: none;
    background: #87befd;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 0px 0px 5px #87befd;
    border: dashed 1px #FFF;
    transition: .4s;
}

    .btn_large {
        width: 120px;
        height: 120px;
        line-height: 120px;
    }

    .btn_small {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

/* .btm_rectangle */
.btm_rectangle {/*ボタンの背景*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  display: inline-block;
  width: 50%;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 20px;/*文字のサイズ*/
  vertical-align: middle;/*垂直中央寄せ*/
  line-height: 1.2em;
  background: #87befd;
  border: dashed 1px #FFF;
  box-shadow: 0px 0px 0px 5px #87befd;
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
  padding: 10px;
  margin: 5px;
}

.btm_rectangle span {/*テキスト*/
  display:inline-block;
  transition: .5s}

.btm_rectangle:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
  color: #fff;
}
/****************************************
* 装飾リスト
****************************************/

    /* 丸数字 */
    ol.number-list {
        counter-reset: my-counter;
        list-style: none;
        padding: 0;
        margin: 1em 0;
    }
        ol.number-list > li {
        	position: relative;/*リストの項目の位置を基準に*/
        	padding-left: 2.5em; /*li:before分左に余白を。調整可*/
        	/*margin-bottom: 0.8em;*//*リストの数字がくっついてしまう場合*/
        }

        ol.number-list > li::before {
            counter-increment: my-counter;
        	content: counter(my-counter);
        	margin-right: 1em;
        	background: #89BDDE;
        	border: 1px solid #87befd;
        	color: #ffffff; /*白*/
        	border-radius: 50%; /*丸く*/
        	text-align: center; /*端に寄ってる数字を真ん中に*/
        	width: 1.4em; /*幅を決めるheightと同じ数値に*/
        	height: 1.4em; /*高さ。widthと同じ数値に。数値変更した場合はline-heightで調整を*/
        	position: absolute; /*リストの基準から移動させる*/
        	left: 0em; /*項目の基準、左にあわせる*/
        	top: 2px; /*基準の上から2pxの位置に表示。テーマによって位置がずれる場合は修正を*/
        	line-height: 1.4;/*数字の位置あわせで数値を指定*/
        }

    /* 矢印 */
    ul.arrow-list {
        list-style: none;
        padding: 0;
        margin: 1em 0;
    }
        ul.arrow-list > li {
        	position: relative;/*リストの項目の位置を基準に*/
        	padding-left: 2.5em; /*li:before分左に余白を。調整可*/
        	/*margin-bottom: 0.8em;*//*リストの数字がくっついてしまう場合*/
        }

        ul.arrow-list > li::before {
        	content: "≫";
        	margin-right: 1em;
        	background: #89BDDE;
        	border: 1px solid #87befd;
        	color: #ffffff; /*白*/
        	border-radius: 50%; /*丸く*/
        	text-align: center; /*端に寄ってる数字を真ん中に*/
        	width: 1.4em; /*幅を決めるheightと同じ数値に*/
        	height: 1.4em; /*高さ。widthと同じ数値に。数値変更した場合はline-heightで調整を*/
        	position: absolute; /*リストの基準から移動させる*/
        	left: 0em; /*項目の基準、左にあわせる*/
        	top: 2px; /*基準の上から2pxの位置に表示。テーマによって位置がずれる場合は修正を*/
        	line-height: 1.4;/*数字の位置あわせで数値を指定*/
        }

/****************************************
* スライドボックス
****************************************/
article.slide_box, article+*.slide_box {
  margin-top: 2em;
}

.slide_box input {
  display: none;
}
.slide_box label {
  cursor: pointer;
  display: block;
  padding: 10px 20px;
  border-radius: 4px;
  background: #89BDDE;
  color: #FFF;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.slide_box label:hover {
  background: #0090aa;
}
.slide_box .panel {
  -webkit-transition: .3s ease;
  transition: .3s ease;
  height: 0;
  overflow: hidden;
  background: #ffffff;
  margin-top: 10px;
  padding: 0;
  border-radius: 5px;
}
.slide_box input:checked + .panel {
  height: auto;
  padding: 15px;
}

/* 最前面に表示 */
.slide_box .box_pop {
    position: absolute;
    z-index: 998;
}

/****************************************
* テーブル
****************************************/
table.zebra {
    border-collapse: collapse;
}

    .zebra th, .zebra td {
        border: 1px solid #999;
        padding: 5px;
    }

    .zebra tr:nth-child(even) {
        background-color: #F6F6F6;
    }

    .zebra tr:hover {
        background-color: #ccc;
    }

/* 文字サイズ別 */
table.tb_small {
    line-height: 1.2em;
    font-size: 0.8em;
}

/* 先頭列折り返し禁止 */
table.chronology td:first-child {
    white-space: nowrap;
}

