@charset "utf-8";

/* 一括で全ての要素の余白をゼロに指定 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a:link {
    color: #0000ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

a:visited {
    color: #16479a;
    text-decoration: underline;
}

/* ---フォントスタイル フォントサイズ */

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    margin: 0;
    font-size: 100%;
    font-weight: normal;
}

a {
    text-decoration: none;
}

/* レイアウトに関する指定 */

.container_main {
    width: 978px;
    margin: 0 auto;
}

/*header内の指定 */

.header {
    height: 50px;
    width: 100%;
    top: 0;
    margin-top: 20px;
    margin-bottom: 5px;
}

.logo {
    width: 348px;
}

.header_left {
    float: left;
}

.header_right {
    float: right;
}

.header_right a {
    line-height: 50px;
    font-size: 12px;
    padding: 0 5px;
    color: #000;
    display: block;
    float: left;
}

.header_right a:hover {
    color: #3b0ddf;
}

.title_box {
    display: table;
    width: 100%;
}

.title {
    background: #0033A1;
    color: #fff;
    font-size: 20px;
    padding: 10px 0 1px 0;
    display: table-cell;
    width: auto;
    text-align: center;
    vertical-align: middle;
}

/* -- グローバルナビケーション -- */

.nav {
    width: 100%;
    margin: 0 auto;
    display: block;
    background-color: #4975BB;
    font-size: 0;
}

.nav ul {
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0;
    padding-bottom: 3px;
    list-style: none;
}

.nav ul li {
    box-sizing: border-box;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 3px;
    display: inline-block;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    position: relative;
}

.nav ul li+li {
    border-left: 0;
    border-right: 1px solid #fff;
}

.nav ul li a {
    text-decoration: none;
    padding-left: 25px;
    padding-right: 25px;
    color: #fff;
    display: block;
}

.nav ul li a:hover {
    background: #fff;
    color: #16479a;
}

/* -- パン屑リスト -- */

.breadcrumb {
    font-size: 14px;
    margin: 10px 0;
    padding: 0;
    background-color: #fff;
}

.breadcrumb a {
    text-decoration: underline;
    color: #000;
}

/* -- キービジュアルテキスト-- */

.key_text {
    background: #f5f5f5;
    width: 978px;
}

.container_main h1 {
    padding: 20px 0 20px 20px;
    color: #16479a;
    font-size: 28px;
    font-weight: bold;
    margin: 40px 0;
}

/* -- サイドバー -- */

.sidebar {
    float: right;
    width: 222px;
    border-spacing: 0px;
}

.categoryName th {
    font-size: 18px;
    background-color: #16479a;
    text-align: left;
}

.categoryName a {
    color: #ffffff;
    display: block;
    padding: 36.5px 10px 36.5px 10px;
}

/* -- サブメニューリスト -- */

.sub_menu td {
    font-size: 15px;
    border-bottom: #dcdcdc 1px solid;
}

.sub_menu a {
    color: #000000;
    padding: 10px;
    display: block;
}

.sub_menu td:hover {
    background-color: #e9e9e9;
}

.current {
    background-color: #e9e9e9;
}

.main_contents {
    width: 100%;
	float: left;
}

.main_contents h2 {
    color: #2a95D3;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main_contents h2 span {
	font-size: 80%;
	display: block;
}

.main_contents h3 {
    font-size:18px;
    font-weight: bold;
    padding-top: 10px;
}

.text_contents {
    width: 100%;
    padding: 0 14px;
}

.text_contents h3 {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border-top: #dcdcdc 1px solid;
    padding-top: 10px;
    margin: 10px 0 20px 0;
}

.text_contents h4 {
    color: #16479a;
    font-size: 15.8px;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.text_contents p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
	margin-bottom: 14px;
}

.text_contents p > img.img-right {
	float: right;
	padding: 0 1em 1em;
}

.text_contents p.small {
    font-size: 12px;
}

.img_center {
    text-align: center;
}

.img_center img {
    margin-top: 20px;
	margin-bottom: 40px;
}

.img_right {
    float: right;
}

.img_left {
    float: left;
}

.img_right img {
    margin-left: 20px;
}

.img_left img {
    margin-right: 20px;
}

.caption_a {
    text-align: center;
    font-size: 12px;
}

.footer {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    background: #16479a;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 0; 
}

a.language {
    color: #3406da;
}

a.sitemap {
    color: #3406da;
}

a.corporate {
    color: #3406da;
}

.mintext {
    font-size: 40%;
    vertical-align: super;
}

html { 
    min-height: 100%;
    position: relative;
}
  
body { 
    margin-bottom: 1em;
}

.body_main {
    padding-bottom: 60px;
}

.contents {
    margin-bottom: 40px;
}

.main_contents:after,
.sidebar:after {
	clear: both;
	content: "";
	display: block;
}

.no-gutters {
    margin:0;
    padding:0;
}
   
.no-gutters　> .col,
.no-gutters　> [class*="col-"] {
    margin:0;
    padding:0;
}
