@charset "UTF-8";
/**
* ベーススタイル
*/
/* 追加リセット
----------------------------------------------- */
html, body, div, main, header, footer, section, article, aside, nav, hgroup,
p, pre, span, img, form, iframe, figure, figcaption, caption,
table, tr, th, td, caption, dl, dt, dd, ol, ul, li, summary, details,
h1, h2, h3, h4, h5, h6, h7, a, b, u, i {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html, body, main, footer, #body_wrapper {
  width: 100%; }

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  font-size: 17px;
  line-height: 2.0rem;
  font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', sans-serif;
  background-color: white; }

@media screen and (max-width: 500px) {
  body {
    font-size: 15px;
    line-height: 1.5rem; } }

/* ie11 動作確認用
@media screen\0 {
  body {
	font-family:
		'メイリオ', Meiryo,
		'ヒラギノ角ゴ Pro W3',
		'HIragino Kaku Gothic Pro W3', 'HIragino Kaku Gothic Pro',
		Osaka,
		'ＭＳ Ｐゴシック', 'MS P Gothic',
		sans-serif
	;
  }
}
*/
#body_wrapper {
  /* 今後のデザイン変更のために付与しておく */
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

body, #body_wrapper {
  /* footer 最下部に固定 */
  min-height: 100vh; }

footer {
  margin-top: auto; }

/* リセット対策
----------------------------------------------- */
ol {
  list-style-type: decimal;
  list-style-position: outsde;
  margin-left: 1.5rem; }

ol > li {
  margin-bottom: 0.5rem; }

sup {
  vertical-align: super;
  font-size: 0.8em;
  position: relative;
  bottom: 0ex; }

sub {
  vertical-align: sub;
  font-size: 0.8em;
}

/* 共用スタイルクラス
----------------------------------------------- */
/* spacer */
.spct {
  margin-top: 1rem; }

.spcb {
  margin-bottom: 1rem; }

.spcl {
  margin-left: 1rem; }

.spcr {
  margin-right: 1rem; }

/* align */
.tal {
  text-align: left; }

.tar {
  text-align: right; }

.tac {
  text-align: center; }

/* add box-border */
.boxborder {
  border: solid 1px black; }

/* float */
.fll {
  float: left; }

.flr {
  float: right; }

.flls {
  float: left;
  margin-right: 1rem; }

.flrs {
  float: right;
  margin-left: 1rem; }

.fln {
  float: none; }

.flc, .clearfix {
  clear: both; }

/* 自タグ終了時に float 解除 */
.flc_after:after {
  display: block;
  content: '';
  clear: both; }

/* 自タグ内の最後の要素で float 解除(タグ内フロート解消)　*/
.flc_last *:last-child:after {
  display: block;
  clear: both;
  content: ''; }

/* 要素幅調整 */
.w100 {
  width: 100%; }

.w75 {
  width: 75%; }

.w66 {
  width: calc(100% * 2 / 3); }

.w50 {
  width: 50%; }

.w33 {
  width: calc(100% / 3); }

.w25 {
  width: 25%; }

/* 段組み制御 (余白の単位は適宜調整) */
.wd2, wd4m2 {
  width: calc(50% - (1.4rem / 2)); }

.wd3 {
  width: calc(100% / 3 - (1.4rem * 2 / 3)); }

.wd3m2 {
  width: calc(100% * 2 / 3  - (1.4rem / 3)); }

.wd4 {
  width: calc(25% - (1.4rem * 3 / 4)); }

.wd4m3 {
  width: calc(75% - (1.4rem / 4)); }

/* 段組み制御：親要素:均等割り付け */
.equal_space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%; }

/* 段組み制御：親要素:均等割り付け(割り付け寄せ) */
.equal_space_just {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%; }

/* 段組み制御：親要素:右寄せ折り返し */
.row_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }

/* .equal_space, .row_wrap 直下のテキストは影響を受けないようにする */
.equal_space > h2,
.equal_space > h3,
.equal_space > p,
.row_wrap > h2,
.row_wrap > h3,
.row_wrap > p {
  width: 100%; }

/* text-align 指定 */
.al_left {
  text-align: left; }

.al_center {
  text-align: center; }

.al_right {
  text-align: right; }

/**
* サイト用スタイル
*/
/* 構造タグ調整
----------------------------------------------- */
main {
  margin-top: 90px;
  margin-bottom: 25px; }

header,
.doc_wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto; }

.doc_wrapper {
  max-width: 1200px; }

/* アンカーリンク全般
----------------------------------------------- */
body a {
  text-decoration: none;
  color: inherit; }

body a:hover {
  text-decoration: underline; }

main a {
  color: #004873; }

main a:hover {
  text-decoration: underline; }

/* 共通見出し
----------------------------------------------- */
h1 {
  /* 見出しは span.txt に記述すること */
  width: 100%;
  padding: 20px 0 0;
  background-color: #004873;
  color: white; }

h1 .pretext, h1 .text {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

h1 .pretext {
  /* 見出し上の文章 */
  font-size: 19px;
  letter-spacing: normal; }

h1 .text {
  /* 見出し */
  padding: 10px 0;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px; }

h2 {
  font-size: 2.2rem;
  /* mod 20202-04-05 */
  line-height: 1.1;
  font-weight: bold;
  padding: 20px 0;
  color: #e0004d; }

@media screen and (max-width: 500px) {
  h2 {
    font-size: 1.8rem;
    line-height: 1.15; } }

@media screen and (max-width: 300px) {
  h2 {
    font-size: 1.5rem; } }

h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0 20px;
  text-indent: 20px;
  padding: 5px 0;
  border-bottom: solid 3px #ccc;
  position: relative; }

h3:after {
  position: absolute;
  content: ' ';
  display: block;
  border-bottom: solid 3px #004873;
  bottom: -3px;
  width: 290px; }

section > h4 {
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  line-height: 1.2;
  border-left: solid 8px #004873;
  border-bottom: solid 3px #ccc;
  padding: 0.4rem 0 0.4rem 0.5rem; }

section > h5 {
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  line-height: 1.2;
  border-left: solid 4px #888;
  padding: 0.25rem 0 0.25rem 0.5rem; }

/* ヘッダ
----------------------------------------------- */
header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 90px;
  background-color: white;
  z-index: 10; }

.header_left {
  padding-top: 0.3rem;
  display: block;
  width: 38.5%;
  }

.header_right {
  padding-top: 0.3rem;
  display: block;
  width: 90%;
  }

#header_guide {
  padding-top: 0.5rem;
  font-size: 13px;
  line-height: 1;
  height: 23px; }

#header_logo img {
  width: 100%;
  max-width: 290px; }

#header_helper {
  text-align: right;
  font-size: 0.8rem;
  /* add 2020-02-20 */
  color: #004873;
  height: 3rem; }
  #header_helper li {
    display: inline-block;
    margin-left: 0.5rem; }

/* ヘッダ(sp)
----------------------------------------------- */
#humberger_sw,
#searchbox_sw {
  position: absolute;
  top: 10px;
  margin-top: 2px;
  display: none;
  width: 50px;
  height: 50px;
  padding: 15px 0 0;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  background-color: #004873;
  color: #fff;
  cursor: pointer;
  z-index: 2; }

#humberger_sw:hover,
#searchbox_sw:hover {
  background-color: #e0004d; }

#humberger_sw i,
#searchbox_sw i {
  position: relative;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  top: 0; }

#humberger_sw:active i,
#searchbox_sw:active i {
  top: 4px; }

#nav4sp {
  display: none;
  z-index: 10; }

/* ヘッダ：検索フォーム(sp)
----------------------------------------------- */
body #search4sp {
  position: fixed;
  display: none;
  top: 90px;
  left: 0;
  width: 100%;
  max-width: 1200px;
  z-index: 1000; }
  body #search4sp form {
    display: block;
    width: 100%;
    padding: 1rem 0.5rem;
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    background-color: rgba(0, 72, 115, 0.9);
    /* $sc_nabyblue; */
    border-bottom: solid 1px #fff;
    color: #fff; }
  body #search4sp input[type='text'] {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-size: 1.2rem;
    line-height: 1;
    width: calc(100% - 4rem);
    height: 1.6rem; }
  body #search4sp button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.2rem;
    line-height: 1;
    width: 2.1rem;
    height: 2.1rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    background-color: #000;
    border: solid 1px #000;
    color: #fff;
    text-align: center;
    vertical-align: top;
    cursor: pointer; }

/* ヘッダ：レスポンシブ (890pxで切り替え)
----------------------------------------------- */
@media screen and (min-width: 890px) {
  #humberger_sw,
  #searchbox_sw,
  #search4sp
#nav4sp {
    display: none; } }

@media screen and (max-width: 889px) {
  .header_left {
    width: 100%; }
  .header_right {
    display: none; }
  #header_guide {
    text-align: center;
    padding-left: 0; }
  #header_logo {
    position: absolute;
    width: calc(100% - 100px);
    padding: 0 0 0 25px;
    top: 28px;
    left: 35px;
    text-align: center; }
  #humberger_sw {
    display: block;
    width: 50px;
    top: 30px;
    left: 0; }
  #searchbox_sw {
    display: block;
    width: 50px;
    top: 30px;
    right: 0; }
  #nav4sp {
    position: fixed;
    display: block;
    width: 100%;
    top: 90px;
    left: 0;
    background-color: #eee;
    opacity: 0.9; }
  h3:after {
    width: 50%; } }

@media screen and (max-width: 399px) {
  /* ロゴサイズが変わる領域 */
  #header_logo img {
    padding-top: calc((100% - 400px) * -0.04); } }

@media screen and (max-width: 350px) {
  #header_guide {
    height: 35px; }
  #humberger_sw, #searchbox_sw {
    top: 40px;
    width: 15%;
    max-width: 40px;
    min-width: 30px;
    height: 40px;
    padding: 10px 0 0; }
  #header_logo {
    position: absolute;
    width: 78%;
    left: 18px; }
  #header_logo img {
    padding-top: calc((100% - 400px) * -0.075); } }

/* ヘッダ：ナビメニュー(pc)
----------------------------------------------- */
#nav4pc {
  display: block; }
  #nav4pc > ul {
    display: block;
    text-align: right; }
  #nav4pc > ul > li {
    display: inline-block;
    padding: 0 0.5rem;
    text-align: center;
    font-size: 1.2rem; }
  #nav4pc > ul > li > a {
    display: block; }
  #nav4pc > ul > li:hover .menu,
  #nav4pc > ul > li:hover .menux4 {
    max-height: 9999px;
    opacity: 1;
    display: block; }
  #nav4pc > ul > li .menu {
    position: absolute;
    width: 800px;
    top: 90px;
    right: 0;
    z-index: 100;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    text-align: center;
    max-width: 1200px;
    background-color: #fffff0; }
  #nav4pc .menu_directory {
    width: 100%;
    margin: 0 auto;
    background-color: #004873;
    padding: 8px 0 4px;
    font-size: 30px;
    color: #fff;
    letter-spacing: 10px; }
  #nav4pc .menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin: 1rem 1rem 0;
    color: #004873; }
    #nav4pc .menu > ul > li {
      display: block;
      margin-left: 14px;
      margin-bottom: 0.8rem;
      line-height: 120%;
      font-size: 0.9rem;
      word-break: break-word;}
      #nav4pc .menu > ul > li img {
        display: block;
        width: 100%;
        height: 95px;
        -o-object-fit: cover;
        object-fit: cover;
        margin-bottom: 2px; }
      #nav4pc .menu > ul > li li {
        font-size: 0.9rem;
        text-align: left;
        padding-left: 0.25rem; }
  #nav4pc .menu > ul > li {
    width: calc((100% - 1px - 14px * 5) / 6); }
  #nav4pc .menu > ul > li:nth-of-type(6n + 1) {
    margin-left: 0; }

/*
@media screen and (max-width: 1100px) {
	#nav4pc .menu > ul > li img {
		height: 90px;//100px;
	}
}
@media screen and (max-width: 1000px) {
	#nav4pc .menu > ul > li img {
		height: 85px;//90px;
	}
}
*/
/* フッタ：ページボトムナビ
----------------------------------------------- */
#pagebottom_sitemap {
  clear: both;
  width: 100%;
  overflow: auto;
  background: #e6e6e6;
  padding: 20px 0 10px;
  color: #004873; }

#pagebottom_sitemap > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

#pagebottom_sitemap > ul > li {
  display: block;
  /* modify 2020-03-19 4段組 → 6段組 */
  width: calc((100% - 5px * 5) / 6);
  margin-bottom: 1rem;
  margin-left: 5px;
  font-size: 1.2rem; }

#pagebottom_sitemap > ul > li:nth-of-type(1) {
  margin-left: 0; }

#pagebottom_sitemap > ul > li > a {
  display: block;
  width: 100%;
  border-bottom: solid 2px #004873;
  padding-left: 0.2rem;
  margin-bottom: 0.5rem; }

#pagebottom_sitemap > ul ul li {
  font-size: 0.75rem;
  /* add 2020-03-19 */
  line-height: 1.1;
  margin-bottom: 0.4rem; }

/* delete 2020-03-19
#pagebottom_sitemap > ul ul li:before {
	content: '・';
}
*/
/*
#pagebottom_sitemap_directory_name {
	border-bottom: solid 2px $sc_nabyblue;
	margin: 10px 0;
	width: 99%;
	text-indent: 0.5rem;
}
*/
@media screen and (max-width: 777px) {
  #pagebottom_sitemap {
    display: none; } }

/* フッタ
----------------------------------------------- */
footer {
  clear: both;
  width: 100%;
  padding: 0;
  margin-top: auto; }
  footer .footer-yokonavi {
    background-color: white;
    text-align: center; }
  footer .footer-yokonavi li {
    display: inline-block;
    font-size: 0.8rem;
    padding-left: 11px; }
  footer .footer-yokonavi li:after {
    content: '|';
    padding-left: 13px; }
  footer .footer-yokonavi li:last-child:after {
    content: none; }
  footer .footer_tail {
    width: 100%;
    height: 55px;
    padding: 0.5rem 0 1rem;
    background-color: #e6e6e6; }
  footer .footer_tail .copyright {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
    font-size: 0.8rem; }

/* スクロールバック
----------------------------------------------- */
#scroll2top {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #004873;
  opacity: 0.8;
  z-index: 11; }
  #scroll2top a {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    text-decoration: none; }
  #scroll2top a:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 50px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center; }

@media screen and (max-width: 579px) {
  #scroll2top {
    bottom: 35px; } }

/* パンくずリスト
----------------------------------------------- */
#breadcrumb {
  text-align: right; }

#breadcrumb ol li {
  display: inline;
  font-size: 0.8rem;
  /* mod 2020-02-02 */ }

#breadcrumb li:after {
  content: '＞';
  padding-left: 7px; }

#breadcrumb li:last-child::after {
  content: ''; }

/* main section
----------------------------------------------- */
main section {
  position: relative; }

main section:not(:first-of-type) {
  margin-top: 1rem; }

main section p {
  margin-bottom: 0.5rem; }

/* main section 直下のリストスタイル
----------------------------------------------- */
main section > ul:not([class]) {
  padding: 0 0 0 1rem; }

main section > ul:not([class]) li {
  display: block;
  padding: 0.35rem 0;
  line-height: 1.4;
  margin-left: 1rem; }

main section > ul:not([class]) li:before {
  display: inline-block;
  content: '・';
  font-weight: bold;
  padding: 0;
  margin-left: -1rem;
  width: 1rem;
  color: #aaa; }

/* add 2020-02-20 */
main section > ul:not([class]) li:after {
  content: ''; }

/* 図
----------------------------------------------- */
figure {
  line-height: 1;
  padding-bottom: 0.5rem;
  margin: 1rem 0 1rem;
  /* mod 2020-02-20 */ }
  figure img {
    width: 100%;
    height: auto; }
  figure figcaption {
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: left;
    padding: 0.1rem 0.5rem 0; }

/* table
----------------------------------------------- */
main section table {
  width: 100%;
  margin-bottom: 1rem; }
  main section table.table-small {
    width: 80%; }
  main section table tr, main section table th, main section table td {
    border: solid 1px #9cf;
    line-height: 1.2; }
  main section table th, main section table td {
    padding: 0.5rem;
    text-align: left; }
  main section table th {
    background-color: #888;
    color: #fff; }
  main section table td {
    color: #000; }
  main section table .tdh {
    /* td ヘッダ */
    background-color: #f3f5f7; }
  main section table .tds {
    /* td 強調 */
    background-color: #fdd; }

table.noborder tr, table.noborder th, table.noborder td {
  border: 0; }

main section table caption {
  font-size: 110%; }

/* table (水平線のみ)
----------------------------------------------- */
main section table.table_h tr, main section table.table_h th, main section table.table_h td {
  border-left: none;
  border-right: none; }

main section table.table_h th {
  background-color: #eee;
  color: #000; }

/* 回り込み画像用
----------------------------------------------- */
.l50, .r50 {
  width: 50%;
  max-width: 600px; }

.l33, .r33 {
  width: 50%;
  max-width: 400px; }

.l25, .r25 {
  width: 100%;
  max-width: 300px; }

.l50, .l33, .l25 {
  height: auto;
  float: left;
  padding-right: 1rem; }

.r50, .r33, .r25 {
  height: auto;
  float: right;
  padding-left: 1rem; }

/* フル幅(無断組)前提 add 2020-02-23 */
.cw80 {
  display: block;
  width: 960px;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto; }

.cw50 {
  display: block;
  width: 600px;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto; }

@media screen and (max-width: 600px) {
  .l50, .r50 {
    width: 100%;
    padding-left: 0;
    padding-right: 0; } }

@media screen and (max-width: 400px) {
  .l33, .r33 {
    width: 100%;
    padding-left: 0;
    padding-right: 0; } }

@media screen and (max-width: 300px) {
  .l25, .r25 {
    width: 100%;
    padding-left: 0;
    padding-right: 0; } }

/* SNSアイコン
----------------------------------------------- */
.sns-icon {
  font-size: 1.5rem; }

a.facebook {
  color: #3b5998; }

a.youtube {
  color: red; }

/* レスポンシブ微調整
----------------------------------------------- */
@media screen and (min-width: 1241px) {
  header {
    padding-left: calc(50% - 600px);
    padding-right: calc(50% - 600px); }
  #nav4pc > ul > li .menu,
  #nav4pc > ul > li .menux4 {
    right: calc(50% - 600px); } }

@media screen and (min-width: 870px) and (max-width: 1240px) {
  .header_left {
    margin-left: 20px; }
  #header_helper,
  #nav4pc {
    padding-right: 20px; } }

@media screen and (min-width: 400px) and (max-width: 1240px) {
  .doc_wrapper,
  #pagebottom_sitemap > ul {
    width: calc(100% - 40px); }
  h1 .pretext,
  h1 .text,
  footer .footer_tail .copyright {
    width: calc(100% - 40px); } }

@media screen and (max-width: 399px) {
  .doc_wrapper,
  #pagebottom_sitemap > ul {
    width: calc(100% - 10px); }
  h1 .pretext,
  h1 .text,
  footer .footer_tail .copyright {
    width: calc(100% - 10px); } }

/**
* スマートフォン用ナビゲータスタイル
*/
ul.nav_acordion,
ul.nav_acordion li,
ul.nav_acordion li a {
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 120%;
  font-weight: normal; }

ul.nav_acordion {
  /* アコーディオン対象 */
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: left; }

ul.nav_acordion li {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: white; }

ul.nav_acordion li a {
  margin: 0 0 1px;
  padding: 0.7rem 64px 0.7rem 0.5rem;
  width: 100%; }

ul.nav_acordion li .acsw {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 55px;
  height: 100%;
  padding: 0.7rem;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  color: white;
  text-align: center;
  cursor: pointer; }

/* 階層1 */
ul.nav_acordion > li > a {
  background-color: #004873;
  color: white;
  text-indent: 0; }

/* 階層2 */
ul.nav_acordion > li > ul > li > a {
  background-color: #68c;
  color: white;
  text-indent: 0rem; }

/* 階層3 */
ul.nav_acordion > li > ul > li > ul > li > a {
  background-color: #9ad;
  text-indent: 0.5rem; }

/* 階層4 */
ul.nav_acordion > li > ul > li > ul > li > ul > li > a {
  background-color: #ddd;
  text-indent: 1rem; }

ul.nav_acordion > li:first-of-type a {
  display: inline-block;
  width: 50%;
  padding: 0.7rem 0;
  text-align: center; }

ul.nav_acordion li a:hover {
  background-color: #e0004d;
  color: white;
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }

ul.nav_acordion ul {
  display: none; }

/* contact_flowting_bannner
----------------------------------------------- */
#contact_flowting_bannner {
  position: fixed;
  left: 20px;
  bottom: 0;
  padding: 3px 5px;
  border: solid 1px #004873;
  background: #004873;
  color: #fff;
  font-size: 1.3rem; }

/*ラベル*/
.switchbox {
  /*チェックボックスを非表示にする*/
  /*中身を非表示にしておく*/
  /*クリックで中身を表示*/
  /*アイコン*/
  /*クリックでアイコン入れ替え*/ }
  .switchbox label {
    display: block;
    font-weight: bold;
    cursor: pointer; }
  .switchbox input {
    display: none; }
  .switchbox div.contact_flowting_bannner_open {
    height: 0;
    overflow-y: hidden;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    opacity: 0; }
  .switchbox input:checked + label + div.contact_flowting_bannner_open {
    height: auto;
    opacity: 1; }
  .switchbox label::before {
    content: '\f0fe';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 8px; }
  .switchbox input:checked + label::before {
    content: '\f146'; }

.contact_flowting_bannner_open {
  background-color: #fff;
  color: #000;
  margin: 0; }
  .contact_flowting_bannner_open > p {
    padding: 10px 50px; }
  .contact_flowting_bannner_open img.cfb_logo {
    margin-right: 2px;
    vertical-align: middle;
    width: 200px;
    height: auto; }
  .contact_flowting_bannner_open span.middle {
    vertical-align: middle; }
  .contact_flowting_bannner_open span.honsha {
    font-size: 1.2rem;
    font-weight: bold; }
  .contact_flowting_bannner_open span.time {
    font-size: 0.8rem;
    font-weight: 300; }
  .contact_flowting_bannner_open span.tel {
    font-size: 2.0rem;
    font-weight: bold;
    color: #004873; }
  .contact_flowting_bannner_open span.tel:before {
    content: '? '; }
  .contact_flowting_bannner_open span.mail {
    display: block;
    width: 300px;
    margin: 10px 0 5px;
    text-align: center;
    font-weight: bold;
    background-color: #004873;
    color: #fff;
    border: solid 1px #004873; }
  .contact_flowting_bannner_open span.mail:before {
    content: '? '; }
  .contact_flowting_bannner_open a:hover {
    text-decoration: none;
    opacity: 0.2; }

@media screen and (max-width: 519px) {
  #contact_flowting_bannner {
    width: 96%;
    left: 2%;
    right: 2%;
    font-size: 1.1rem; }
  .contact_flowting_bannner_open > p {
    padding: 10px 5%; }
  .contact_flowting_bannner_open img.cfb_logo {
    width: 60%;
    max-width: 200px; }
  .contact_flowting_bannner_open span.tel {
    font-size: 1.4rem; }
  .contact_flowting_bannner_open span.honsha {
    font-size: 1.1rem; }
  .contact_flowting_bannner_open span.mail {
    width: 100%; } }

@media screen and (max-width: 349px) {
  #contact_flowting_bannner {
    width: 98%;
    left: 1%;
    right: 1%;
    font-size: 1rem; }
  .contact_flowting_bannner_open > p {
    padding: 10px 4%; }
  .contact_flowting_bannner_open span.honsha {
    font-size: 1rem; } }

/**
* 各ページ用スタイル
*/
/* section: 特長
----------------------------------------------- */
section h3.tokuchou:after {
  display: block;
  content: '';
  clear: both; }

section h3.tokuchou span:first-child {
  float: left;
  text-indent: 0;
  display: block;
  margin-left: 20px;
  line-height: 1.4;
  padding: 2px 5px;
  color: #004873; }

section h3.tokuchou span:first-child:before {
  content: '['; }

section h3.tokuchou span:first-child:after {
  content: ']'; }

section h3.tokuchou span:nth-child(2) {
  text-indent: 0;
  display: block;
  margin-left: 102px;
  line-height: 1.4; }

@media screen and (min-width: 400px) and (max-width: 800px) {
  section h3.tokuchou span:first-child {
    margin-left: 10px; }
  section h3.tokuchou span:nth-child(2) {
    margin-left: 90px; } }

@media screen and (max-width: 399px) {
  section h3.tokuchou span:first-child {
    margin-left: 0;
    font-size: 85%; }
  section h3.tokuchou span:nth-child(2) {
    font-size: 85%;
    margin-left: 70px; } }

/* 画像段組み(3段)
----------------------------------------------- */
section.fig_x3,
section.img_x3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }

section.fig_x3 figure,
section.img_x3 img {
  display: block;
  width: 100%;
  max-width: calc(( 1200px - 20px * 2)/3);
  margin-right: 20px; }

@media screen and (min-width: 1200px) {
  section.fig_x3 figure:nth-child(3n),
  section.img_x3 img:nth-child(3n) {
    margin-right: 0; } }

@media screen and (max-width: 1199px) {
  section.fig_x3 figure:nth-child(3n),
  section.img_x3 img:nth-child(3n) {
    margin-right: 20px; }
  section.fig_x3 figure:nth-child(2n1),
  section.img_x3 img:nth-child(2n) {
    margin-right: 0; } }

@media screen and (max-width: 400px) {
  section.fig_x3 figure,
  section.img_x3 img {
    margin-right: 0; } }

/* 汎用ピックアップボックス (廃止予定)
----------------------------------------------- */
.pickup_box_x5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%; }
  .pickup_box_x5 li {
    display: block;
    width: 100%;
    max-width: calc(( 1200px - 20px * 4) / 5);
    background-color: #004873;
    border: solid 2px #004873;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; }
  .pickup_box_x5 li div {
    width: 100%;
    height: auto;
    overflow: hidden; }
  .pickup_box_x5 li img {
    width: 100%;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
  .pickup_box_x5 li h4 {
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    height: 3rem;
    margin: 0.5rem; }
  .pickup_box_x5 li p {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0.5rem;
    height: 4rem; }
  .pickup_box_x5 li:hover {
    background-color: #e0004d;
    border: solid 2px #e0004d; }
  .pickup_box_x5 li:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.pickup_box_x4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%; }
  .pickup_box_x4 li {
    display: block;
    width: 100%;
    max-width: calc(( 1200px - 20px * 3) / 4);
    background-color: #004873;
    border: solid 2px #004873;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; }
  .pickup_box_x4 li div {
    width: 100%;
    height: auto;
    overflow: hidden; }
  .pickup_box_x4 li img {
    width: 100%;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
  .pickup_box_x4 li h4 {
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    height: 3rem;
    margin: 0.5rem; }
  .pickup_box_x4 li p {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0.5rem;
    height: 4rem; }
  .pickup_box_x4 li:hover {
    background-color: #e0004d;
    border: solid 2px #e0004d; }
  .pickup_box_x4 li:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.pickup_box_x3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%; }
  .pickup_box_x3 li {
    display: block;
    width: 100%;
    max-width: calc(( 1200px - 20px * 2) / 3);
    background-color: #004873;
    border: solid 2px #004873;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; }
  .pickup_box_x3 li div {
    width: 100%;
    height: auto;
    overflow: hidden; }
  .pickup_box_x3 li img {
    width: 100%;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
  .pickup_box_x3 li h4 {
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    height: 3rem;
    margin: 0.5rem; }
  .pickup_box_x3 li p {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0.5rem;
    height: 2rem; }
  .pickup_box_x3 li:hover {
    background-color: #e0004d;
    border: solid 2px #e0004d; }
  .pickup_box_x3 li:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.pickup_box_x2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%; }
  .pickup_box_x2 li {
    display: block;
    width: 100%;
    max-width: calc(( 1200px - 20px) / 2);
    background-color: #004873;
    border: solid 2px #004873;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; }
  .pickup_box_x2 li div {
    width: 100%;
    height: auto;
    overflow: hidden; }
  .pickup_box_x2 li img {
    width: 100%;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
  .pickup_box_x2 li h4 {
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    height: 3rem;
    margin: 0.5rem; }
  .pickup_box_x2 li p {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0.5rem;
    height: 2rem; }
  .pickup_box_x2 li:hover {
    background-color: #e0004d;
    border: solid 2px #e0004d; }
  .pickup_box_x2 li:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.pickup_box {
  width: 100%; }
  .pickup_box li {
    display: block;
    width: 100%;
    background-color: #004873;
    border: solid 2px #004873;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; }
  .pickup_box li div {
    width: 100%;
    height: auto;
    overflow: hidden; }
  .pickup_box li img {
    width: 100%;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
  .pickup_box li h4 {
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    height: 3rem;
    margin: 0.5rem; }
  .pickup_box li p {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0.5rem;
    height: 2rem; }
  .pickup_box li:hover {
    background-color: #e0004d;
    border: solid 2px #e0004d; }
  .pickup_box li:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

/* 汎用ピックアップボックス (改良型)
----------------------------------------------- */
.index_box_x1,
.index_box_x3,
.index_box_xn {
  /* index_box_xn は継承用クラス */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }
  .index_box_x1 li,
  .index_box_x3 li,
  .index_box_xn li {
    background: #fff;
    overflow: auto;
    border-style: solid;
    border-color: #004873;
    border-width: 3px 1px 1px;
    min-width: 0;
    padding: 0;
    margin-bottom: 0.7rem; }
  .index_box_x1 li div,
  .index_box_x3 li div,
  .index_box_xn li div {
    float: right;
    width: 37%;
    margin-left: 8px;
    overflow: hidden; }
  .index_box_x1 li div.w100,
  .index_box_x3 li div.w100,
  .index_box_xn li div.w100 {
    float: none;
    width: 100%;
    margin-left: 0;
    overflow: hidden; }
  .index_box_x1 li img,
  .index_box_x3 li img,
  .index_box_xn li img {
    width: 100%;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
  .index_box_x1 li h4,
  .index_box_x3 li h4,
  .index_box_xn li h4 {
    text-align: left;
    color: #004873;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    min-height: 4.2rem;
    margin: 0.4rem; }
  .index_box_x1 li h4 small,
  .index_box_x3 li h4 small,
  .index_box_xn li h4 small {
    font-size: 85%; }
  .index_box_x1 li p,
  .index_box_x3 li p,
  .index_box_xn li p {
    text-align: left;
    font-size: 1.0rem;
    line-height: 1.2;
    margin: 0.4rem; }
  .index_box_x1 li:hover,
  .index_box_x3 li:hover,
  .index_box_xn li:hover {
    background-color: #e0004d;
    border-color: #e0004d;
    color: #fff;
    text-decoration: none; }
  .index_box_x1 li:hover h4,
  .index_box_x1 li:hover p,
  .index_box_x3 li:hover h4,
  .index_box_x3 li:hover p,
  .index_box_xn li:hover h4,
  .index_box_xn li:hover p {
    color: #fff;
    text-decoration: none; }
  .index_box_x1 li:hover img,
  .index_box_x3 li:hover img,
  .index_box_xn li:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  .index_box_x1 li a,
  .index_box_x3 li a,
  .index_box_xn li a {
    display: block;
    padding: 0.3em;
    height: 100%; }
  .index_box_x1 a, .index_box_x1 a:hover,
  .index_box_x3 a,
  .index_box_x3 a:hover,
  .index_box_xn a,
  .index_box_xn a:hover {
    text-decoration: none; }

.index_box_x1 li {
  width: 100%; }

.index_box_x1 li h4 {
  height: auto;
  margin-bottom: 1rem; }

.index_box_x3 li {
  height: 10rem; }

@media screen and (min-width: 980px) {
  .index_box_x3 li {
    width: calc(33.3% - 0.7rem * 2 / 3); }
  .index_box_x3 li:nth-child(3n + 2),
  .index_box_x3 li:nth-child(3n) {
    margin-left: 0.7rem; } }

@media screen and (min-width: 640px) and (max-width: 979px) {
  .index_box_x3 li {
    width: calc(50% - 0.7rem / 2); }
  .index_box_x3 li:nth-child(2n) {
    margin-left: 0.7rem; } }

@media screen and (max-width: 639px) {
  .index_box_x3 li {
    width: 100%;
    height: auto;
    min-height: 12rem; } }

/* box 型見出し(h2)
----------------------------------------------- */
main section.h2_box {
  background-color: #f3f5f7;
  border-top: solid 3px #ccc; }
  main section.h2_box h2 {
    clear: none;
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0 20px;
    text-indent: 0;
    padding: 5px 0;
    position: relative;
    color: #000; }
  main section.h2_box img {
    float: right;
    width: 50%;
    max-width: 320px;
    height: auto;
    margin-left: 1rem; }
  main section.h2_box p {
    font-size: 90%;
    line-height: 1.4;
    margin-bottom: 0.5rem; }
  main section.h2_box p.member_name {
    font-size: 120%; }
  main section.h2_box h2, main section.h2_box p {
    padding: 0 20px; }

main section.h2_box:before {
  position: absolute;
  content: ' ';
  display: block;
  border-top: solid 3px #004873;
  top: -3px;
  width: 290px; }

main section.h2_box:after {
  display: block;
  content: '';
  clear: both; }

@media screen and (max-width: 500px) {
  main section.h2_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    main section.h2_box img {
      width: 100%;
      max-width: 100%;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      margin: 1rem 0 0; }
    main section.h2_box h2, main section.h2_box p {
      padding: 0 10px; } }

@media screen and (max-width: 869px) {
  main section.h2_box:before {
    width: 50%; } }

/* こぼれ話
----------------------------------------------- */
main section.episode {
  position: relative;
  border: solid 3px #004873;
  padding: 10px;
  background-color: #f3f5f7; }
  main section.episode img {
    float: right;
    width: 50%;
    max-width: 320px;
    margin-left: 1rem; }
  main section.episode h4 {
    position: relative;
    margin: 0 0 10px;
    font-size: 130%;
    font-weight: bold;
    margin-left: 6.5rem;
    border: solid 0;
    padding: 0; }
  main section.episode h4:before {
    position: absolute;
    content: 'こぼれ話';
    background-color: #004873;
    color: #fff;
    margin-left: -6.5rem;
    padding: 0 0.4rem; }
  main section.episode p {
    margin-left: 6.5rem; }

main section.episode:after {
  display: block;
  content: '';
  clear: both; }

@media screen and (max-width: 500px) {
  main section.episode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    main section.episode img {
      float: none;
      width: 100%;
      margin: 1rem 0 0;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
    main section.episode p {
      margin: 0; } }

/* 汎用クラス
----------------------------------------------- */
/* add 2020-02-02 依頼により作成、画像用 */
.c80 {
  display: block;
  width: 80%;
  max-width: 900px;
  margin: 30px auto 0; }

@media screen and (max-width: 860px) {
  .c80 {
    width: 100% !important; } }

/* add 2020-02-25 依頼により追加 */
.read_more__small {
  display: inline;
  width: 25%;
  padding: 3px;
  margin: 5px;
  font-size: 0.95rem;
  line-height: 1.9;
  background-color: #004873;
  color: #fff;
  /* add 2020-03-17 本文リンク色変更に伴う対策 */ }
  .read_more__small a {
    color: #fff; }

/* add 2020-03-03 依頼により追加 */
.read {
  width: 80%; }

@media screen and (max-width: 700px) {
  .read {
    width: 100%; } }

/* add 2020-03-05 依頼により追加 */
.th_lightgray th {
  background-color: #ccc;
  color: #000; }

.th_lightblue th {
  background-color: #dce9f7;
  color: #000; }

/* add 2020-03-05 依頼により追加 */
.tb80 {
  width: 80%;
  margin-left: auto;
  margin-right: auto; }

@media screen and (max-width: 800px) {
  .tb80 {
    width: 100%; } }

/* add 2020-03-19 依頼により追加 */
.tb60 {
  width: 60%;
  margin-left: auto;
  margin-right: auto; }

@media screen and (max-width: 720px) {
  .tb60 {
    width: 100%; } }

/* add 2020-03-06 依頼により追加 */
.item {
  background-color: #dce9f7;
  color: #000; }

/* end */
