/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "utf-8";
/* --------------------------------------------------
	基本定義
-------------------------------------------------- */
.bpts_both {
  clear: both;
  font-size: 0px;
  line-height: 0px;
}
/* スペーサー　 */
.bpts_spacer_h5 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 5px;
}
.bpts_spacer_h7 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 7px;
}
.bpts_spacer_h10 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 10px;
}
.bpts_spacer_h15 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 15px;
}
.bpts_spacer_h20 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 20px;
  line-height: 20px;
}
.bpts_spacer_h30 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 30px;
  line-height: 20px;
}
.bpts_spacer_h40 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 40px;
  line-height: 20px;
}
.bpts_spacer_h80 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 80px;
  line-height: 20px;
}
.bpts_spacer_h120 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 120px;
  line-height: 20px;
}
/* --------------------------------------------------
	ヘッダー
-------------------------------------------------- */
/* メインロゴ　 */
.bpts_header_logo {
  text-align: center;
  width: auto;
  padding-top: 18px;
}
@media (max-width: 768px) {
  .bpts_header_logo {
    padding-top: 30px;
  }
}
/* ナビゲーション　 */
.bpts_header_navi {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px auto 8px auto;
  width: 95%;
  max-width: 380px;
  padding: 15px;
  text-align: center;
}
.bpts_header_navi p {
  font-size: 12px;
  color: rgb(35, 54, 109); /*テキスト用暗紺*/
}
.bpts_header_navi a {
  padding: 10px;
}
.bpts_header_navi a:not(:first-of-type) {
  margin-left: 10px;
}
@media (min-width: 769px) {
  .bpts_header_navi a, .bpts_header_navi a:link, .bpts_header_navi a:visited {
    color: #2d287f; /*テキスト用暗紺*/
  }
  .bpts_header_navi a:hover {
    color: white;
    background: #2d287f;
    background: #2d287f;
    border-radius: 3px;
    text-decoration: none;
  }
  .bpts_header_navi a:active {
    color: #2d287f; /*テキスト用暗紺*/
  }
}
@media (max-width: 768px) {
  .bpts_header_navi {
    width: auto;
    max-width: 320px;
    margin: 0 auto;
    padding: 3px;
    background-color: rgba(35, 53, 109, 0.59);
  }
  .bpts_header_navi a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 20px;
    color: white;
    background: url("/image/common/icon-sidemenu.png") center left no-repeat;
    background-size: 15px;
  }
  .bpts_header_navi a:not(:first-of-type) {
    margin-left: 1%;
  }
}
/* レスポンシブメニュー　 */
.bpts_header_menu {
  display: none;
}
@media (max-width: 768px) {
  .bpts_header_menu {
    display: inherit;
  }
}
/* --------------------------------------------------
	Flexboxの各設定
-------------------------------------------------- */
/* ========= flexの作成 ============*/
/*　(1)flex（レスポンシブで横並びを解除する） */
.bpts_flexbox_onoff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* (2)レスポンシブで横並びを解除しない */
.bpts_flexbox_noblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* -------------(1)折り返す時のカスタマイズ ------------*/
/* ========= 折り返しの有無 ============*/
/* 折り返したいとき */
.bpts_flexbox_onoff.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* ========= 揃え位置 ============*/
/* 両端ぞろえにしたいとき */
.bpts_flexbox_onoff.justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/* センターに集めたいとき */
.bpts_flexbox_onoff.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* 左（先頭）揃えにしたいとき */
.bpts_flexbox_onoff.start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
/* 右揃え（最後）揃えにしたいとき */
.bpts_flexbox_onoff.end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
/* ========= 縦に積む ============*/
/* 縦に並べる */
.bpts_flexbox_nobloc.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* ========= 中の要素の位置 ============*/
/* 要素を上下中央に寄せる */
.bpts_flexbox_onoff.item_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* 要素を下に寄せる */
.bpts_flexbox_onoff.item_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
/* ========= その他 ============*/
/* flexで揃えた要素に5pxずつのmarginを加えるとき */
.bpts_flexbox_onoff.plus_5px div {
  margin: 5px;
}
@media (max-width: 768px) {
  /* レスポンシブでflexを解除する */
  .bpts_flexbox_onoff {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
/* -------------(2)折り返さない時のカスタマイズ ------------*/
/* ========= 揃え位置 ============*/
/* 両端ぞろえにしたいとき */
.bpts_flexbox_noblock.justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/* センターに集めたいとき */
.bpts_flexbox_noblock.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* 左（先頭）揃えにしたいとき */
.bpts_flexbox_noblock.start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
/* 右揃え（最後）揃えにしたいとき */
.bpts_flexbox_noblock.end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
/* ========= 中の要素の位置 ============*/
/* 要素を上下中央に寄せる */
.bpts_flexbox_noblock.item_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* 要素を下に寄せる */
.bpts_flexbox_noblock.item_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
/* --------------------------------------------------
	リキッドなシングル横帯バナー
-------------------------------------------------- */
.bpts_singlebanner {
  margin: 10px auto;
  width: 100%;
  text-align: center;
}
.op_w100pct {
  width: 100%;
}
.op_w90pct {
  width: 90%;
}
.op_w80pct {
  width: 80%;
}
.op_w60pct {
  width: 60%;
}
.op_w50pct {
  width: 50%;
}
.bpts_singlebanner img {
  margin: 0px auto;
  width: 100%;
}
/* --------------------------------------------------
	いろいろなパーツ
-------------------------------------------------- */
.bpts_alignedlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px;
}
.bpts_alignedlist li {
  float: left;
  width: 16em;
}
/* --------------------------------------------------
	フッター
-------------------------------------------------- */
.bpts_footer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media (max-width: 960px) {
  .bpts_footer {
    width: auto;
    display: block;
    margin: auto 0 0 0;
    padding: 0;
  }
}
.bpts_footer_title a {
  display: block;
}
.bpts_footer_title a img {
  max-width: 400px;
  width: 100%;
}
.bpts_footer .address {
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.4em;
  font-size: .9em;
  margin-top: 2em;
}
/* フッターサイトマップ */
.bpts_footer_contnts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
}
.bpts_footer_contnts > div {
  width: 100%;
  margin: 0 1em;
}
.bpts_footer_contnts > div ul {
  margin-bottom: 2em;
  line-height: 1.6;
}
.bpts_footer_contnts h5 {
  color: #fff;
  line-height: 1.5;
  margin-bottom: .5em;
  font-size: 1.1em;
  font-weight: normal;
}
.bpts_footer_contnts a {
  font-size: .8em;
  font-weight: normal;
  color: #fff !important;
  text-decoration: none !important;
}
.bpts_footer_contnts a:hover {
  color: #F7D317 !important;
}
/*フッターリンク集*/
ul.footer_links {
  max-width: 1000px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
ul.footer_links li {
  width: 100%;
}
ul.footer_links a {
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff !important;
  display: block;
  text-align: center;
  padding: .3em 0;
}
ul.footer_links a:hover {
  background: #3D59A4;
}
/* ページトップ　*/
.bpts_footer_pagetop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 0;
  height: auto;
  text-align: right;
  padding: 0;
  margin: 0 20px 0 0;
  width: 120px;
}
@media (max-width: 1200px) {
  .bpts_footer_pagetop {
    display: block;
    position: fixed;
    bottom: 65px;
    right: 10px;
    z-index: 998;
    height: auto;
    width: 120px;
    text-align: right;
    padding: 0;
    margin: 0;
  }
  .bpts_footer_pagetop a img {
    width: 120px;
  }
  .bpts_footer_title a img {
    width: 80%;
  }
  /*フッターリンク集*/
  ul.footer_links {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .bpts_footer > div {
    text-align: center;
    padding-top: 1em;
  }
  /* フッターサイトマップ */
  .bpts_footer_contnts {
    margin-top: 3em;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-gap: 10px;
  }
  /*フッターリンク集*/
  ul.footer_links {
    width: 95%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-gap: 10px;
  }
}
/* コピーライト　*/
.bpts_footer_copyright {
  /*overflow: hidden;*/
  font-size: 11px;
  text-align: center;
  clear: both;
  padding: 7px;
  background: #fff;
  margin-top: 3em;
}
@media (min-width: 769px) { /*PCのみ*/
  .bpts_footer {
    margin-top: 15px;
    width: 80%;
  }
  .bpts_footer_wrapper img.for_sf {
    display: none;
  }
}
/* --------------------------------------------------
	ボタン
-------------------------------------------------- */
/*　リンクボタン　*/
.bpts_btn_link01 {
  display: inline-block;
  overflow: hidden;
  padding: 5px 5px 5px 25px;
  border-radius: 5px;
  background: url(../image/common/icon-arrow-linkbtn.png) #F1F5F5 no-repeat 4px center;
  vertical-align: middle;
}
/*　PC表示時任意の場所で改行　*/
.bpts_br_pc::before {
  content: "\A";
  white-space: pre;
}
@media (max-width: 769px) {
  /*　PC表示時任意の場所で改行をレスポンシブ時解除　*/
  .bpts_br_pc::before {
    display: none;
  }
  /*　レスポンシブ時任意の場所で改行　*/
  .bpts_br::before {
    content: "\A";
    white-space: pre;
  }
}
/*　PC非表示　レスポンシブ非表示（インライン)　*/
.bpts_none_pc {
  display: none;
}
/*　レスポンシブ非表示　PC非表示（インライン)　*/
.bpts_none_sp {
  display: inline;
}
@media (max-width: 769px) {
  /*　PC非表示　レスポンシブ非表示（インライン)　*/
  .bpts_none_pc {
    display: inline;
  }
  /*　レスポンシブ非表示　PC非表示（インライン)　*/
  .bpts_text_none_sp {
    display: none;
  }
}
/* HOVERで外から枠が出る */
.cp_button {
  width: calc(90% / 2);
  margin: 0.4em;
  padding: 1em;
  font-size: 1em;
  line-height: 1.4;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  text-decoration: none;
  color: #2D287F;
  border: 1px solid #2D287F;
  background: transparent;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.cp_button:before {
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  content: '';
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
     transition-duration: 0.3s;
  -webkit-transition-property: top right bottom left;
  -o-transition-property: top right bottom left;
  transition-property: top right bottom left;
  opacity: 0;
  border: 4px solid rgba(45, 40, 127, 0.5);
}
.cp_button:hover:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}
.cp_button:active {
  color: #ffffff;
  background-color: #2D287F;
}
.cp_button:active:before {
  top: -17px;
  right: -17px;
  bottom: -17px;
  left: -17px;
}
.cp_button:hover, .cp_button:focus {
  color: #2D287F;
  border: 1px solid #2D287F;
}
@media (max-width: 769px) {
  .cp_button {
    width: 90%;
  }
}
/* --------------------------------------------------------
Q&A・クリックすると開く
-----------------------------------------------------------*/
/*アコーディオン全体*/
.bpts_accordion_list {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.bpts_accordion_list li {
  margin: 10px 0;
}
.bpts_accordion_list section {
  padding: .5em 0;
  border-bottom: 3px solid #FAE36E;
}
/*アコーディオンタイトル*/
.bpts_accordion_list li .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding: .5em .5em .5em 3em;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  color: #2D287F;
  font-size: 1.1em;
}
/*アイコンの＋と×*/
.bpts_accordion_list li .title::before, .bpts_accordion_list li .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #2D287F;
}
.bpts_accordion_list li .title::before {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.bpts_accordion_list li .title::after {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.bpts_accordion_list li .title.close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bpts_accordion_list li .title.close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.bpts_accordion_list li .box {
  font-size: 1em;
  display: none; /*はじめは非表示*/
  background: none;
  margin: 0 1em;
  padding: 1em;
}
.bpts_accordion_list li .box .unit_table_side {
  font-size: 1em;
}
/*-----ボタン01*/
.bpts_btn_arrow {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #2D287F;
  padding: 8px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #2D287F !important;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  border-radius: 100px;
  margin-top: 1em;
}
.bpts_btn_arrow:hover {
  background: #2D287F;
  color: #fff !important;
  text-decoration: none !important;
}
/*矢印と下線の形状*/
.bpts_btn_arrow::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #2D287F;
  /*アニメーションの指定*/
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
/*hoverした際の移動*/
.bpts_btn_arrow:hover::before {
  right: -30px;
}
/*-----ボタン01 - 白色 */
.bpts_btn_arrow_white {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #fff;
  padding: 8px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  border-radius: 100px;
  margin-top: 1em;
}
.bpts_btn_arrow_white:hover {
  background: #fff;
  color: #2D287F !important;
  text-decoration: none !important;
}
/*矢印と下線の形状*/
.bpts_btn_arrow_white::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #fff;
  /*アニメーションの指定*/
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
/*hoverした際の移動*/
.bpts_btn_arrow_white:hover::before {
  right: -30px;
}
/*-----ボタン02*/
.bpts_btn_fuwa {
  display: inline-block;
  width: auto;
  margin: 1em 0;
  padding: .4em 1.4em;
  border-radius: 100px;
  background-image: -o-linear-gradient(150deg, #16a085 0%, #f4d03f 100%);
  background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
  border: none;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  -webkit-transition: -webkit-box-shadow 0.25s ease 0s;
  transition: -webkit-box-shadow 0.25s ease 0s;
  -o-transition: box-shadow 0.25s ease 0s;
  transition: box-shadow 0.25s ease 0s;
  transition: box-shadow 0.25s ease 0s, -webkit-box-shadow 0.25s ease 0s;
  letter-spacing: 0.08em;
  text-shadow: 0px 0px 5px rgb(45 40 127 / 67%), 0px 0px 20px rgb(38 77 38 / 20%);
}
.bpts_btn_fuwa:hover, .bpts_btn_fuwa:focus {
  background-image: -o-linear-gradient(150deg, #f4d03f 0%, #16a085 100%);
  background-image: linear-gradient(-60deg, #f4d03f 0%, #16a085 100%);
  -webkit-box-shadow: 0 0.1rem 0.8rem rgba(142, 197, 138, 1.00);
          box-shadow: 0 0.1rem 0.8rem rgba(142, 197, 138, 1.00);
  text-decoration: none !important;
}
/*-----フォルダindex目次ボタン------*/
ul.bpts_mokuji_btn {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 20px;
}
ul.bpts_mokuji_btn li {
  border: 2px solid #F7D317;
}
ul.bpts_mokuji_btn li a {
  display: block;
  text-align: center;
  padding: .3em 0;
  font-weight: bold;
}
ul.bpts_mokuji_btn li a:hover {
  background: #F7D317;
  color: #fff;
}
.bpts_blur {
  background-color: rgba(42, 82, 152, 0.5);
  -webkit-box-shadow: 0 0 10px black;
          box-shadow: 0 0 10px black;
  /*	border-radius: 40px;
*/ padding: 0 30px;
}