@charset "utf-8";

/*------------------------------------------------------------
	全体共通
------------------------------------------------------------*/
body {
	background-image: url(../img/repeat-bg.jpg);
	margin: 0px;
	padding: 0px;
	font-family:	"ヒラギノ角ゴ Pro W3",
			"Hiragino Kaku Gothic Pro",
			"メイリオ", Meiryo, Osaka,
			"ＭＳ Ｐゴシック",
			"MS PGothic",
			sans-serif;
	color: #130f30;
}

img{
     vertical-align: bottom;
}


/*------------------------------------------------------------
	新着情報 & 各章の区切り
------------------------------------------------------------*/
.chapter0 h1 {
　 padding:100px 150px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	min-width: 640px;
	font-size: 36px;
	line-height: 1.2;}

.chapter0 h1 {
	padding: 20px 0 20px 32px;
	border-bottom: solid 1px #888;
	border-left: solid 10px #FF2600;}


.chapter h1 {
　 padding:100px 150px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	min-width: 640px;
	font-size: 36px;
	line-height: 1.2;}

.chapter h1 {
	padding: 20px 0 20px 32px;
	border-bottom: solid 1px #888;
	border-left: solid 10px #0033CC;}


/*------------------------------------------------------------
	新着情報 & 3章の節の区切り（マーク）
------------------------------------------------------------*/
.news h4	{
	margin: 0 0 20px 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	min-width: 640px;
	font-size: 28px;
	line-height: 1.2;
}

h4{
	padding: 0 0 0 12px;
	border-left: solid 15px #FF6232;
}


.timetable h2	{
	margin: 0 0 20px 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	min-width: 640px;
	font-size: 28px;
	line-height: 1.2;
}

h2	{
	padding: 0 0 0 12px;
	border-left: solid 15px #3399FF;
}


/*------------------------------------------------------------
	1章 & 3章の文章
------------------------------------------------------------*/
p.article1 {
	padding-left: 12.5%;
	padding-right: 12.5%;
	font-size: 18px;
}

p.article3 {
	padding-left: 16%;
	padding-right: 16%;
	text-indent: -2em;
	font-size: 18px;
}


/*------------------------------------------------------------
	1章 & 4章のボックス
------------------------------------------------------------*/
.boxchapter	{
	padding: 20px;
	background-color: #dfe3e8;
}

.boxchapter img	{
	max-width: 100%;
	height: auto;
	margin: 0 0 30px 0;
	vertical-align: bottom;
}

.boxchapter h5	{
	margin: 0 0 20px 0;
	font-size: 28px;
	color: #FFFFFF;
	line-height: 1.2;
}

.boxchapter p	{
	margin: 0 0 20px 0;
	font-size: 20px;
	line-height: 1.6;
}


/* 枠＋見出しの設定 */
.boxchapter	{
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	min-width: 640px;
	border: solid 1px #aaa;
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
}

.boxchapter > h5	{
	margin: 0;
	padding: 10px;
	background-color: #3399FF;
	font-size: 26px;
}

.boxchapter > p	{
	margin: 14px;
}


/*------------------------------------------------------------
	2章 & 6章のテーブル
------------------------------------------------------------*/
table.tbchapter {
    width: 950px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 10px;
    font-size: 16px;
}
 
table.tbchapter th,
table.tbchapter td {
    padding: 10px;
}
 
table.tbchapter th {
    background: #3399FF;
    vertical-align: middle;
    text-align: center;
    width: 190px;
    overflow: visible;
    position: relative;
    color: #fff;
    font-weight: normal;
    font-size: 18px;
}
 
table.tbchapter th:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #3399FF;
    border-width: 10px;
    margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() { 
    table.tbchapter th::after {
        float: right;
        padding: 0;
        left: 30px;
        top: 10px;
        content: " ";
        height: 0;
        width: 0;
        position: relative;
        pointer-events: none;
        border: 10px solid transparent;
        border-left: #3399FF 10px solid;
        margin-top: -10px;
    }
}
 
table.tbchapter td {
    background: #f8f8f8;
    width: 760px;
    padding-left: 20px;
}


/*------------------------------------------------------------
	2章のボタン
------------------------------------------------------------*/
.button_1 {
    color: #fff;
    text-decoration: none;
    background: #009BD2;
    width: 500px;
    height:64px;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 64px;
    border-radius:5px;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button_1:hover {
    background-size: 100px 100px;
    background-position: right 50%;
    background-color: #799CEE;
}

.button_1:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 70px;
    background: url("../img/icon.png") no-repeat 0 50%;
    background-size: 20px 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button_1:hover:before {
    left: 410px;
    background-size: 50px 50px;
}

.button_1 span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button_1:hover span {
    margin-left: -200px;
}


/*------------------------------------------------------------
	3章の節の区切り（線）
------------------------------------------------------------*/
hr.timetable {
    border: 0;
    border-bottom: 6px solid #3399FF;
	margin-left: auto;
	margin-right: auto;
	max-width: 1030px;
	min-width: 640px;
}


/*------------------------------------------------------------
	3章のテーブル
------------------------------------------------------------*/
table.brwsr1 {
    font-size: 22px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 1px;
}
 
table.brwsr1 th {
    padding: 12px;
    vertical-align: middle;
    text-align: left;
    border-bottom: #999 1px solid;
    color: #fff;
}
 
table.brwsr1 td {
    padding: 6px;
    vertical-align: middle;
    text-align: left;
    border-bottom: #999 1px solid;
    font-size: 17px;
}
 
table.brwsr1 th.r1 {
    width: 125px;
    border-right: #999 1px solid;
    background: #003366;
}
 
table.brwsr1 th.r2,
table.brwsr1 td.r2 {
    width: 125px;
    border-left: #fff 1px solid;
    border-right: #999 1px solid;
    background: #0033FF;
    color: #fff;
}
 
table.brwsr1 th.r1,
table.brwsr1 th.r2,
table.brwsr1 th.r3,
table.brwsr1 th.r4 {
    text-align: center;
}
 
table.brwsr1 th.r3,
table.brwsr1 td.r3 {
    width: 490px;
    border-left: #fff 1px solid;
    border-right: #999 1px solid;
    background: #3366CC;
    color: #fff;
}
 
table.brwsr1 th.r4,
table.brwsr1 td.r4 {
    width: 210px;
    border-left: #fff 1px solid;
    background: #3399FF;
    color: #fff;
    line-height: 20px;
}


/*------------------------------------------------------------
	5章のボタン
------------------------------------------------------------*/
.button_2 {
    color: #fff;
    text-decoration: none;
    background: #009BD2;
    width: 900px;
    height:64px;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 64px;
    border-radius:5px;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button_2:hover {
    background-size: 100px 100px;
    background-position: right 50%;
    background-color: #799CEE;
}
.button_2:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 150px;
    background: url("../img/icon.png") no-repeat 0 50%;
    background-size: 20px 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button_2:hover:before {
    left: 745px;
    background-size: 50px 50px;

}
.button_2 span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;

}
.button_2:hover span {
    margin-left: -590px;
}