@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 {
  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 {
    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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/* (2)レスポンシブで横並びを解除しない */
.bpts_flexbox_noblock {
  display: -webkit-box;
  display: -webkit-flex;
  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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  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;
}
.bpts_footer_sitemap {
  max-width: 1100px;
  display: flex;
  gap: 3em;
  margin: 3em auto 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  align-content: center;
}
.bpts_footer_sitemap h4 {
  text-align: center;
  color: #7F919B;
  height: 2.5em;
  margin-bottom: 2em;
}
.bpts_footer_sitemap ul li {
  text-decoration: none !important;
  line-height: 1.2;
  margin-bottom: 2em;
}
.bpts_footer_sitemap ul li a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .bpts_footer div:nth-child(2) {
    margin: 1em auto 0 auto;
  }
  .bpts_footer_sitemap {
    display: block;
    margin-top: 0;
  }
  .bpts_footer_sitemap h4 {
    text-align: left;
    margin-bottom: 0;
    margin-top: 2em;
  }
  .bpts_footer_sitemap ul li {
    margin-bottom: 1em;
  }
}
.bpts_footer_contents h3 {
  text-align: center;
  font-size: clamp(1.063rem, 0.926rem + 0.68vw, 1.438rem);
  font-weight: normal;
  color: #59a7de !important;
}
.bpts_footer_contents > a {
  text-decoration: none !important;
}
.address {
  font-size: .9em;
  line-height: 1.5;
}
/* ページトップ　*/
.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;
}
.bpts_footer_pagetop a img {
  max-width: 95px;
  width: 100%;
}
@media (max-width: 1218px) {
  .bpts_footer_pagetop {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 998;
    height: auto;
    width: 60px;
    text-align: right;
    padding: 0;
    margin: 0;
  }
  .bpts_footer_pagetop a img {
    width: 75px;
  }
}
.bpts_footer_address {
  margin-top: 0;
}
/* コピーライト　*/
.bpts_footer_copyright {
  /*overflow: hidden;*/
  font-size: 11px;
  text-align: center;
  clear: both;
  padding: 4px 0;
  color: #fff;
  background: #59A7DE;
}
@media (min-width: 769px) { /*PCのみ*/
  .bpts_footer {
    margin-top: 15px;
  }
  .bpts_footer_wrapper img.for_sf {
    display: none;
  }
}
@media (max-width: 768px) {
  .bpts_footer {
    width: 100%;
  }
  .bpts_footer_wrapper {
    float: none;
    /*.wrapper_fullbgの解除*/
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 10px;
    height: auto;
  }
  .bpts_footer_wrapper img {
    max-width: 100%;
  }
  .bpts_footer_wrapper img.for_pc {
    display: none;
  }
  .bpts_footer_wrapper img.for_sf {
    display: block;
  }
  /*		.bpts_footer_pagetop {
				float: none;
				width: 100%;
				margin-left: 0;
				margin-right: 0;
				padding-left: 0;
				padding-right: 0;
				text-align: center;
		}*/
  #zone_footer { /*pagetopで隠れる分の調整*/
    background-position: center 70px;
  }
}
/* --------------------------------------------------
	ボタン
-------------------------------------------------- */
/*　リンクボタン　*/
.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;
  }
}
/* --------------------------------------------------------
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 {
  border-bottom: 1px solid #BED3B1;
}
/*アコーディオンタイトル*/
.bpts_accordion_list li .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 1em 1em 1em 2.5em;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  color: #5D7C4A;
}
/*アイコンの＋と×*/
.bpts_accordion_list li .title::before, .bpts_accordion_list li .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #8FB875;
}
.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: .9em;
  display: none; /*はじめは非表示*/
  background: none;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.bpts_accordion_list li .box .unit_table_side {
  font-size: 1em;
}
/*-----ボタン*/
.bpts_btn_fuwa {
  /*ボタンの形状*/
  display: inline-block;
  color: #314051 !important;
  width: auto;
  margin: 1em 0;
  min-width: 150px;
  padding: 10px 50px 10px 30px;
  position: relative;
  border-radius: 100px;
  text-decoration: none;
  outline: none;
  /*背景の色と形状*/
  background: url("../image/sitetop/bg-graf.gif")no-repeat;
  background-size: cover;
  background-position: 1% 50%;
  background-size: 200% auto;
  /*アニメーションの指定*/
  transition: all 0.3s ease-out;
  border: 1px solid #63A6D1;
}
/*hoverした際の、背景の場所とテキスト色の変更*/
.bpts_btn_fuwa:hover {
  color: #fff;
  background-position: 99% 50%;
  text-decoration: none !important;
  border: 1px solid #314051;
}
.bpts_btn_fuwa span:after {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: url("../image/common/icon-btn-arrow.svg");
  display: block;
  width: 30px;
  height: 30px;
}
.bpts_btn_fuwa:hover span:after {
  content: url("../image/common/icon-btn-arrow-blue.svg");
}
/*------------前後ページ移動のボタン--------------*/
.bpts_prev_next_btn {
  margin-top: 4em;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
	flex-wrap: wrap;
  gap: 2em;
	background: #F7F7F7;
	border-radius: 10px;
	padding: 1em;
}
.bpts_prev_next_btn a {
  display: block;
  background: #9DCBEB;
  padding: .6em 3.5em;
  color: #fff !important;
  text-decoration: none;
  border-radius: 100px;
  transition: all .3s;
  position: relative;
  top: 0;
}
.bpts_prev_next_btn a:hover {
  background: #90BBD9;
  text-decoration: none;
  top: -5px;
  box-shadow: 0 7px 10px rgba(165, 203, 211, 0.7);
  border-color: transparent;
}
/*次へ*/
.bpts_prev_next_btn a span.icon_next:after {
  font-weight: 900;
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  position: absolute;
  right: 19px;
  transition: .4s;
}
.bpts_prev_next_btn a:hover span.icon_next:after {
  right: 15px;
}
/*前へ*/
.bpts_prev_next_btn a span.icon_prev:after {
  font-weight: 900;
  content: "\f0a8";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  position: absolute;
  left: 19px;
  transition: .4s;
}
.bpts_prev_next_btn a:hover span.icon_prev:after {
  left: 15px;
}
