﻿@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_h30_onoff {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 30px;
  line-height: 20px;
}
/* --------------------------------------------------
	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;
}
/* (2)レスポンシブで横並びを解除しない */
.bpts_flexbox_noblock.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* -------------(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.end.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: 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_center02 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* 要素を下に寄せる */
.bpts_flexbox_onoff.item_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
/*写真を250pxの円形に切り抜く*/
.bpts_flexbox_onoff.circle_250 li {
  border-radius: 100%;
  /* 縦横250pxにがっちり固定 */
  width: 250px;
  height: 250px;
  /* 固定した幅からはみ出たものは隠してしまう */
  overflow: hidden;
}
/* 画像スケール */
.bpts_flexbox_onoff.circle_250 li img {
  width: 250px;
  height: 250px;
  /* ヌルッと動くように */
  transition: 0.3s;
}
/* ボバー時のアクション */
.bpts_flexbox_onoff.circle_250 li img:hover {
  /* transformは変形プロパティ。値にscaleを指定すると拡大縮小することができる。 */
  transform: scale(1.3);
}
/* ========= その他 ============*/
/* flexで揃えた要素に5pxずつのmarginを加えるとき */
.bpts_flexbox_onoff.plus_5px div {
  margin: 5px;
}
.bpts_flexbox_onoff.plus_5px li {
  margin: 5px;
}
@media (max-width: 768px) {
  /* レスポンシブでflexを解除する */
  .bpts_flexbox_onoff {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
		text-align: 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;
}
/*横並びの写真*/
.flex_photo {
  text-align: center;
  font-size: .9em;
}
.flex_photo div {
  width: 40%;
}
.flex_photo img {
  width: 100%;
}
@media screen and (max-width : 768px) {
  .flex_photo div {
    margin: 0 auto;
    width: 98%;
  }
}
/* --------------------------------------------------
	いろいろなパーツ
-------------------------------------------------- */
.bpts_alignedlist {
  display: -webkit-box;
  display: -webkit-flex;
  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;
}
/* --------------------------------------------------
	フッター
-------------------------------------------------- */
.footer_top_padding {
  padding-top: 160px;
  background: #fff;
}
.bpts_footer {
  background-repeat: repeat;
	font-weight:bold;
}
.bpts_footer_menu {
  max-width: 900px;
  margin: 0 auto;
}
.bpts_footer_misc {
  max-width: 300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  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-bottom: 2em;
}
.bpts_footer_misc li {
  border-right: 1px solid #111;
  padding-right: 10px;
}
.bpts_footer_misc li a {
  color: #111;
  font-size: .9em;
}
.bpts_footer_misc li:last-child {
  border-right: none;
}
.bpts_footer_number a{
	color:#fff!important;
}
.bpts_footer_number a:visited{
	color:#fff!important;
}
@media (max-width: 1024px) {
.bpts_footer{
  margin:0;
}
  .bpts_footer_misc {
    padding-bottom: 3em;
  }
}
/* ページトップ　*/
.bpts_footer_pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 998;
  height: auto;
  text-align: right;
  padding: 0;
  margin: 0 20px 0 0;
}
.bpts_footer_pagetop a img {
  max-width: 180px;
  width: 100%;
}
/* コピーライト　*/
.bpts_footer_copyright {
  text-align: center;
  font-size: 0.7em;
  color: #fff;
  padding: 5px 0;
  margin: 0;
  background: rgba(0,0,0,0.6);
}
@media (max-width: 1024px) {
.footer_top_padding {
  padding-top:0;
  background: #fff;
}	
  .bpts_footer_pagetop {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 998;
    height: auto;
    width: 100%;
    text-align: right;
    padding: 0;
    margin: 0;
  }
  .bpts_footer_pagetop a img {
    width: 150px;
  }
  #zone_footer { /*pagetopで隠れる分の調整*/
    background-position: center 70px;
  }
}
/* フッターコンテンツ */
ul.bpts_footer_contents {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
/*  color: #1955a6;
*/  font-size: .9em;
  padding-top: 4em;
  padding-bottom: 2em;
}
ul.bpts_footer_contents > li {
  width: calc(16.66% - 22px); /* margin padding分を引く */
  margin: 1px;
  padding: 10px;
  margin-bottom: 1em;
	text-align: center;
}
ul.bpts_footer_contents > li h6 {
  font-size: 1em;
	padding-bottom: 10px;
}
ul.bpts_footer_contents > li h6 span{
	background-color:#005bab;
	display: block;
	margin: 10px auto 30px;
	width:30%;
	height:3px;
	border-radius: 2px;
}
ul.bpts_footer_contents > li a.link_pdf:after {
  width: 18px;
}
ul.bpts_footer_contents > li > ul > li {
  padding-bottom: .5em;
  font-size: .9em;
  padding-left: .5em;
	text-align: left;
	list-style-type:disc;
	margin-left: 30px;
}
.bpts_footer div.sitetitle {
  width: 100%;
  padding-top: 2em;
}
.bpts_footer .sitetitle img {
  display: block;
  max-width: 300px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.bpts_footer_contents a {
  color: #111;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	}
.bpts_footer_contents a:hover {
  color: #111;
  background: #EEFAFF;
  border-radius: 0;
}

@media (max-width: 1024px) {
.footer_top_padding {
  padding-top:0;
  background: #fff;
}	
  .bpts_footer_pagetop {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 998;
    height: auto;
    width: 70px;
    text-align: right;
    padding: 0;
    margin: 0;
  }
  .bpts_footer_pagetop a img {
    width: 70px;
  }
  #zone_footer { /*pagetopで隠れる分の調整*/
    background-position: center 70px;
  }
}
/* フッターコンテンツ */
ul.bpts_footer_contents {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
/*  color: #1955a6;
*/  font-size: .9em;
  padding-top: 4em;
  padding-bottom: 2em;
}
ul.bpts_footer_contents > li {
  width: calc(16.66% - 22px); /* margin padding分を引く */
  margin: 1px;
  padding: 10px;
  margin-bottom: 1em;
	text-align: center;
}
ul.bpts_footer_contents > li h6 {
  font-size: 1em;
	padding-bottom: 10px;
}
ul.bpts_footer_contents > li h6 span{
	background-color:#005bab;
	display: block;
	margin: 10px auto 30px;
	width:30%;
	height:3px;
	border-radius: 2px;
}
ul.bpts_footer_contents > li a.link_pdf:after {
  width: 18px;
}
ul.bpts_footer_contents > li > ul > li {
  padding-bottom: .5em;
  font-size: .9em;
  padding-left: .5em;
	text-align: left;
	list-style-type:disc;
	margin-left: 30px;
}
.bpts_footer div.sitetitle {
  width: 100%;
  padding-top: 2em;
}
.bpts_footer .sitetitle img {
  display: block;
  max-width: 300px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.bpts_footer_contents a {
  color: #111;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	}
.bpts_footer_contents a:hover {
  color: #111;
  background: #EEFAFF;
  border-radius: 0;
}

.bpts_footer_logo{
	margin: 0;
	background: url("../image/sitetop/bg-footer.jpg");
	background-position: bottom;
	background-size: cover;
	padding-top: 50px;
}
.bpts_footer_logo_area{
	width:100%;
	max-width: 1300px;
	text-align: left;
	margin: 0 auto;
	}
.bpts_footer_office_area{
	color:#fff;
	display: flex;
	width:100%;
	max-width: 1300px;
	margin: 0 auto;
	}
.bpts_footer_logo img{
	margin: 0 30px 0 0;
	width:360px;
}

.bpts_footer_office_area p{
	width:90%;
	font-weight: normal;
	text-shadow: 1px 1px 10px #005bab, 0 0 10px #005bab, -1px -1px 10px #005bab;
}

@media (max-width: 1024px) {
.bpts_footer_office_area{
	display: block;
	}
.bpts_footer_office_area p{
	margin: 0 auto;	
	margin-bottom: 20px;
	}
.bpts_footer_logo img{
	margin: 0 auto 20px;
	margin-left:5%;
}	
}
/* --------------------------------------------------
	ボタン
-------------------------------------------------- */
/*　リンクボタン　*/
.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;
}
/*==================================================
アコーディオン
===================================*/
/*アコーディオン全体*/
.bpts_accordion_area {
  list-style: none;
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}
.bpts_accordion_area li {
  margin: 10px 0;
}
.bpts_accordion_area section {
  border-bottom: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.accordion_title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.3em;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
/*  transition: all .5s ease;*/
}
/*アイコンの＋と×*/
.accordion_title::before, .accordion_title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
}
.accordion_title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.accordion_title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.accordion_title.close::before {
  transform: rotate(45deg);
}
.accordion_title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.accordion_box {
  display: none; /*はじめは非表示*/
  background: #f5f5f5;
  margin: 0 0 3% 0;
  padding: 3% 0;
}
/*---------------------------------*/
/* ホバーで色が切り替わるリンクボタン */
.btps_linkbtn_isshoku {
  display: block;
  max-width: 200px;
  padding: .1em 0.8em;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background: #EB9B42;
  border: 2px solid #EB9B42;
  border-radius: 100px;
  transition: .4s;
  font-weight: 600;
  font-size: 1em;
  margin: 1em 0 1em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
a.btps_linkbtn_isshoku:hover {
  background: #fff;
  color: #EB9B42 !important;
  border: 2px solid #EB9B42;
}
/* PCのみスペーサー　 */
.bpts_spacer_h200_pc {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 200px;
}
@media (max-width: 599px) {
  /* PCのみスペーサー　 */
  .bpts_spacer_h200_pc {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 0px;
  }
}
/*　PC表示時任意の場所で改行　*/
.bpts_br_pc::before {
  content: "\A";
  white-space: pre;
}
/* メインメニュー対策 */
@media (max-width: 1175px) {
  /*　PC表示時任意の場所で改行をレスポンシブ時解除　*/
  .bpts_br_pc_mainmenu::before {
    content: "\A";
    white-space: pre;
  }
}
@media (max-width: 599px) {
  /*　PC表示時任意の場所で改行をレスポンシブ時解除　*/
  .bpts_br_pc::before {
    display: none;
  }
  /*　レスポンシブ時任意の場所で改行　*/
  .bpts_br::before {
    content: "\A";
    white-space: pre;
  }
}
/* -------------目次ページの矢印つきボタン------------- */
ul.bpts_mokuji_button_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}
ul.bpts_mokuji_button_flex li {
  font-size: .85em;
  width: 23%;
  border-radius: 3px;
  margin: 7px;
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #fff;
  text-align: center;
  outline: none;
  border: 1px solid #005bab;
  color: #004EA2 !important;
  /*アニメーションの指定*/
  transition: ease .2s;
}
ul.bpts_mokuji_button_flex li a {
  padding: 10px 40px 10px 10px;
  height: 100%;
  text-align: left;
  display: block;
}
ul.bpts_mokuji_button_flex li:hover {
  background: #005bab;
  border-radius: 3px;
  border: 1px solid #005bab;
}
ul.bpts_mokuji_button_flex li:hover a {
  color: #fff;
}
/* 矢印が右に移動 */
ul.bpts_mokuji_button_flex li::after {
  content: url("../image/common/arrow.svg");
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 12%;
  right: 10px;
  transition: all .3s;
  display: inline-block;
  width: 16px;
  height: 10px;
}
/*hoverした際の移動*/
ul.bpts_mokuji_button_flex li:hover::after {
  right: -5px;
}
/*hoverした際の移動*/
ul.bpts_mokuji_button_flex li:hover::after {
  right: -5px;
  content: url("../image/common/arrow-white.svg");
}
@media (max-width: 599px) {
  ul.bpts_mokuji_button_flex {
    display: block;
  }
  ul.bpts_mokuji_button_flex li {
    width: 90%;
  }
  /* ボタン１こ分 */
  .bpts_mokuji_button_flex li {
    width: 90%;
  }
}
/* flex横並びボックス　２個のとき */
.bpts_flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between; /* Safari */
  justify-content: space-between;
}
.bpts_flexbox div {
  flex: 1;
}
@media (max-width: 599px) {
  .bpts_flexbox {
    display: block;
  }
  .bpts_flexbox div {
    flex: initial;
  }
}
/* 画像の下に文字が回り込まないとき用 */
.bpts_fleximg {
  margin: 30px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
}
.bpts_fleximg div {
  width: 100%;
}
.bpts_fleximg img {
  width: 100%;
}
@media (max-width: 599px) {
  .bpts_fleximg {
    display: block;
    float: left; /* レスポンシブ時はまわりこむ */
  }
  .bpts_fleximg img {
    float: left;
  }
  .bpts_fleximg:after { /* まわりこんだ後フロートを解除する */
    display: block;
    clear: both;
    content: "";
    margin-bottom: 30px;
  }
}
.search_container {
  box-sizing: border-box;
}
.search_container input[type="text"] {
  background: white;
  border: #736357 1px solid;
  height: 1.6em;
  padding: 5px 10px;
  color: #736357;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"] {
  cursor: pointer;
  border: none;
  background: #736357;
  color: #fff;
  outline: none;
  height: 2.3em;
  padding: 5px 10px;
}
.search_container ::-webkit-input-placeholder {
  color: #6792D9;
}
/* --------------------------------------------------
	矢印ボックス
-------------------------------------------------- */
.bpts_yajirushi_bottom_box {
  position: relative;
  background: #ffffff;
  border: 4px solid #A9CCF0;
  padding: 10px 90px 10px 90px;
  margin-bottom: 40px;
}
.bpts_yajirushi_bottom_box_end {
  position: relative;
  background: #ffffff;
  border: 4px solid #A9CCF0;
  padding: 10px 90px 10px 90px;
}
.bpts_yajirushi_bottom_box:after, .bpts_yajirushi_bottom_box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.bpts_yajirushi_bottom_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 20px;
  margin-left: -20px;
}
.bpts_yajirushi_bottom_box:before {
  border-color: rgba(230, 230, 230, 0);
  border-top-color: #A9CCF0;
  border-width: 26px;
  margin-left: -26px;
}
/* 中見出し */
.col_internal_chuumidashi_work02 {
  font-size: 1.5em;
  padding-top: 15px;
  padding-left: 32px;
  line-height: 1.5;
  color: #7CAEE0;
}
/* ボックス内のフロート */
.f_l_img {
  float: right;
  width: 45%;
  height: 100%;
  text-align: center;
}
.f_r_text {
  float: right;
  width: 53%;
}
.f_l_img img {
  width: auto;
  max-height: 130px;
}
.f_r_text p {
  margin-left: 32px;
}
/* スマホ用 */
@media (max-width: 890px) {
  .bpts_yajirushi_bottom_box {
    display: inline-block;
    text-align: left;
    padding: 10px 0 0 10px;
    width: calc(100% - 20px);
    margin-bottom: 25px;
  }
  .bpts_yajirushi_bottom_box_end {
    display: inline-block;
    text-align: left;
    padding: 10px 0 0 10px;
    width: calc(100% - 20px);
    margin-bottom: 25px;
  }
  /* 中見出し */
  .col_internal_chuumidashi_work02 {
    font-size: 1em;
    padding: 10px 0 10px 10%;
    line-height: 1.2em;
  }
  .time_img02 {
    width: 120px;
    margin-left: 4%;
  }
  .f_l_img {
    width: 100%;
    max-width: 50%;
  }
  .responsive_wrappar_c {
    text-align: left;
  }
  .responsive_wrappar_c img {
    max-width: 95%;
  }
  .f_r_text {
    /*        float: left;
*/ width: 70%;
  }
  .f_r_text p {
    font-size: 0.8em;
    margin-left: 10%;
  }
}
@media (max-width: 540px) {
  .f_r_text {
    float: none;
    width: 100%;
  }
}
a.bpts_btn_move {
  position: relative;
  display: block;
  width: 40%;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  background: #5B5AAF;
  border: 1px solid #fff;
  overflow: hidden;
  color: #fff !important;
  margin-bottom: 20px;
  margin-left: 10px;
}
a.bpts_btn_move:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -80%;
  height: 100%;
  width: 100%;
  background: #fff;
  opacity: 0.3;
  transition: .6s;
}
a.bpts_btn_move:hover:before {
  left: 0;
}
@media (max-width: 599px) {
  a.bpts_btn_move {
    width: 90%;
  }
}
/* ボタン */
a.bpts_btn_fuwa {
  background: #42C1C7;
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*はみ出す波紋を隠す*/
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  outline: none;
}
a.bpts_btn_fuwa::after {
  content: "";
  /*絶対配置で波紋位置を決める*/
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*波紋の形状*/
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(10, 10);
  /*はじめは透過0に*/
  opacity: 0;
  /*アニメーションの設定*/
  transition: transform 0.3s, opacity 1s;
}
/*クリックされたあとの形状の設定*/
a.bpts_btn_fuwa:active::after {
  transform: scale(0, 0);
  transition: 0s;
  opacity: 0.3;
}
a.bpts_btn_fuwa.long {
  max-width: 100%;
}
@media (max-width: 599px) {
  a.bpts_btn_fuwa, a.bpts_btn_fuwa.icon_ronbun, ul.bpts_mokuji_button_flex li {
    width: calc(100% - 20px);
    margin: 10px auto 0 auto;
  }
}
/*矢印つきボタン */
.bpts_btn_arrow {
  font-size: .85em;
/*  width: 14%;
*/  border-radius: 3px;
  margin: 7px;
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #fff;
  padding: 10px 60px 10px 30px;
  text-align: center;
  outline: none;
  background: #005bab;
  border: 1px solid #005bab;
  color: #fff !important;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.bpts_btn_arrow:hover {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #005bab;
  color: #004EA2 !important;
}
/* 矢印が右に移動 */
.img_arrow::after {
  content: url("../image/common/arrow-white.svg");
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 12%;
  right: 0;
  transition: all .3s;
  display: inline-block;
  width: 16px;
  height: 10px;
}
/*hoverした際の移動*/
.img_arrow:hover::after {
  right: -5px;
  content: url("../image/common/arrow.svg");
}
.bpts_btn_arrow.long {
  width: 40%;
}
@media (max-width: 599px) {
  .bpts_btn_arrow.long {
    width: auto;
  }
}


/*アイコンきボタン */
.bpts_btn_icon {
  font-size: .85em;
/*  width: 14%;
*/  border-radius: 3px;
  margin: 7px;
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  padding: 10px 50px 10px 70px;
  text-align: center;
  outline: none;
  background: #005bab;
  border: 1px solid #005bab;
  color: #fff !important;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.bpts_btn_icon:hover {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #005bab;
  color: #004EA2 !important;
}
/* アイコン左 */
.img_icon span {
	display: inline-block;
	width:25px;
	height:25px;
	border-radius:50%;
	margin-left: -50px;
	background-color: #fff;
	border:1px solid #fff;
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
	text-align: center;
}


/* アイコン「・・・」 */
.img_icon::after {
  content: url("https://icongr.am/fontawesome/ellipsis-h.svg?size=23&color=ffffff");
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 13px;
  right: 15px;
  transition: all .3s;
  display: inline-block;
  width: 16px;
  height: 10px;
}
/* アイコン「・・・」 */
.img_icon:hover::after {
  content: url("https://icongr.am/fontawesome/ellipsis-h.svg?size=23&color=0061ab");
}
.bpts_btn_icon.long {
  width: 40%;
}
@media (max-width: 599px) {
.bpts_btn_icon {
	width:calc(100% - 220px);
	text-align: left;
	}
}

/*下に動く矢印*/
.bpts_cp_arrows *, .bpts_cp_arrows *:before, .bpts_cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.bpts_cp_arrows {
	position: relative;
	display: flex;
	height: 100px;
	margin: 0 auto 40px auto;
	justify-content: center;
	align-items: center;
}
.bpts_cp_arrows .bpts_cp_arrow {
	position: absolute;
	/* left: 50%; */
	width: 60px;
	height: 10px;
	-webkit-transform: scale(0.3);
	        transform: scale(0.3);
	-webkit-animation: arrow-move07 3s ease-out infinite;
	        animation: arrow-move07 3s ease-out infinite;
	opacity: 0;
}
.bpts_cp_arrows .bpts_cp_arrow:first-child {
	-webkit-animation: arrow-move07 3s ease-out 1s infinite;
	        animation: arrow-move07 3s ease-out 1s infinite;
}
.bpts_cp_arrows .bpts_cp_arrow:nth-child(2) {
	-webkit-animation: arrow-move07 3s ease-out 2s infinite;
	        animation: arrow-move07 3s ease-out 2s infinite;
}
.bpts_cp_arrows .bpts_cp_arrow:before,
.bpts_cp_arrows .bpts_cp_arrow:after {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	content: '';
	border-radius: 2px;
	background: #4c4b4c;
}
.bpts_cp_arrows .bpts_cp_arrow:before {
	left: 1px;
	-webkit-transform: skewY(30deg);
	        transform: skewY(30deg);
}
.bpts_cp_arrows .bpts_cp_arrow:after {
	right: 1px;
	width: 50%;
	-webkit-transform: skewY(-30deg);
	        transform: skewY(-30deg);
}
@-webkit-keyframes arrow-move07 {
	25% {
		opacity: 0.6;
	}
	43.75% {
		-webkit-transform: translateY(1em);
		        transform: translateY(1em);
		opacity: 0.8;
	}
	62.5% {
		-webkit-transform: translateY(2em);
		        transform: translateY(2em);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(3em) scale(0.5);
		        transform: translateY(3em) scale(0.5);
		opacity: 0;
	}
}
@keyframes arrow-move07 {
	25% {
		opacity: 0.6;
	}
	43.75% {
		-webkit-transform: translateY(1em);
		        transform: translateY(1em);
		opacity: 0.8;
	}
	62.5% {
		-webkit-transform: translateY(2em);
		        transform: translateY(2em);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(3em) scale(0.5);
		        transform: translateY(3em) scale(0.5);
		opacity: 0;
	}
}
/*grid*/
.bpts_grid{
	display: -ms-grid;
		display: grid;
		
		grid-gap: 10px;
}
.bpts_grid.g250{
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.bpts_grid.g400{
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
