﻿/*
* 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_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_h100 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100px;
  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: -ms-flexbox;
  display: flex;
}
/* (2)レスポンシブで横並びを解除しない */
.bpts_flexbox_noblock {
  display: -webkit-box;
  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_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;
}
/*写真を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;
  /* ヌルッと動くように */
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/* ボバー時のアクション */
.bpts_flexbox_onoff.circle_250 li img:hover {
  /* transformは変形プロパティ。値にscaleを指定すると拡大縮小することができる。 */
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  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;
  }
}
/* -------------(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 (max-width : 768px) {
  .flex_photo div {
    margin: 0 auto;
    width: 98%;
  }
}
/* --------------------------------------------------
	いろいろなパーツ
-------------------------------------------------- */
/* --------------------------------------------------
	フッター
-------------------------------------------------- */
.bpts_footer {}
/*フッターのボタン*/
.bpts_contact_btn_grid {
  max-width: 1000px;
  margin: 11em auto 2em auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-line-pack: center;
  align-content: center;
  justify-items: center;
}
.bpts_contact_btn_grid a {
  width: 100%;
}
/* ページトップ　*/
.bpts_footer_pagetop {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  right: 20px;
  bottom: -140px;
  z-index: 80;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: #b5c2cf;
  transition: .2s;
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 100px 100px 0 0;
}
.is-active {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
.bpts_footer_pagetop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.bpts_footer_pagetop span {
  /* position: absolute; */
  font-size: 30px;
  color: #FFF;
  font-weight: 300;
}
.bpts_footer_pagetop p {
  margin: 0;
  font-size: 15px;
  color: #FFF;
  /* bottom: 13px; */
  /* position: absolute; */
}
.bpts_footer_pagetop a img {
  width: 120px;
}
/* コピーライト　*/
.bpts_footer_copyright {
  font-size: 0.8em;
  color: #000;
  padding: 0;
  margin: 0;
}
.bpts_footer_copyright.only_pc {
  display: block;
}
@media screen and (max-width: 1240px) {
  .bpts_footer_copyright.only_pc {
    display: none!important;
  }
}
.bpts_footer_copyright.only_sp {
  display: none;
}
@media screen and (max-width: 1240px) {
  .bpts_footer_copyright.only_sp {
    display: block!important;
    max-width: 560px;
    /* margin: 0 auto; */
  }
}
@media screen and (max-width: 768px) {
  .bpts_footer_copyright.only_sp {
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 1240px) {
  .bpts_footer_copyright {
    margin-top: 2rem;
  }  
}
.bpts_footer_wrapper {
  margin: 0 auto;
  text-align: center;
  padding: 7em 1.25em;
  width: 90%;
  max-width: 1500px;
}
@media screen and (max-width: 1240px) {
  .bpts_footer_wrapper {
    padding-bottom: 4em;
  }
}
.bpts_footer_titlelogo {
  /* text-align: center;
  margin: -130px auto 0 auto;
  background: url("../image/common/bg-footer-gray.svg")no-repeat;
  background-size: contain;
  background-position: center; */
}
.bpts_footer_titlelogo img {
  /* margin: 0 auto;
  padding: 1em 0;
  max-width: 600px; */
  width: 266px;
  padding-bottom: 1rem;
}
.bpts_footer_grid {
  max-width: clamp(320px, 100%, 1500px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 10px 1fr 10px 1fr;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-gap: 10px;
  text-align: left;
  font-size: .9em;
  margin: 0 auto;
  /* justify-items: center; */
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.bpts_footer_grid a {
  text-decoration: none;
}
.bpts_footer_grid h5 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.875rem, 0.829rem + 0.2vw, 1rem);
  font-weight: 500;
  margin-bottom: 0;
}
/* .bpts_footer_grid h5::before {
  background-color: #00A690;
  content: "";
  height: 1px;
  width: 20px;
} */
.bpts_footer_grid ul {
  margin-left: 1em;
  /* font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem); */
}
.bpts_footer_grid ul li {
  margin-bottom: .3em;
}
.bpts_footer_grid .bpts_footer_link_logo {
  max-width: 240px;
}
.footer_text_link {
  padding: 2em 0 .5em 0;
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}
@media (max-width : 768px) {
  .bpts_footer_grid {
    display: block;
    max-width: 560px;
  }
  .bpts_footer_grid > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .bpts_footer_grid .address p {
    /*
    text-align: center;
*/
    margin: 0 0 4em 0;
  }
  .bpts_footer_wrapper {
    width: 90%;
  }
  /* .bpts_footer_titlelogo img {
    max-width: 400px;
    width: 100%;
  } */
}
@media (max-width : 853px) {
  /* .bpts_footer_pagetop {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 998;
    height: auto;
    width: 80px;
    text-align: right;
    padding: 0;
    margin: 0;
  } */
  .bpts_footer_pagetop a img {
    width: 60px;
  }
  .bpts_footer_grid, .bpts_footer_grid p {
    /* display: block; */
    /*    text-align: center;*/
  }
  .bpts_footer_grid, .bpts_footer_grid p {
    /* margin-bottom: 2em; */
  }
  .bpts_footer_menu {
    display: block;
  }
  .bpts_footer_wrapper {
    width: 100%;
    padding: 4em 1em;
  }
  .bpts_contact_btn_grid {
    display: block;
    margin: 3em auto;
  }
  .c_bpts_btn_fuwa, .c_bpts_btn_fuwa.blue {
    margin: 1em auto;
  }
  .bpts_contact_btn_grid a {
    width: 90%;
  }
  /* .bpts_footer_titlelogo {
    margin: -119px auto 0 auto;
    background-position: center top;
  }
  .bpts_footer_titlelogo img {
    max-width: 320px;
    width: 100%;
  } */
}
@media screen and (max-width:768px) {
  .bpts_footer_pagetop {
    width: 56px;
    height: 48px;
  }
  .bpts_footer_pagetop p {
    display: none;
  }
}
@media (max-width : 695px) {
  .bpts_footer_titlelogo {
    /* margin: -80px auto 0 auto; */
  }
  .bpts_footer_titlelogo img {
    max-width: 160px;
    width: 100%;
  }
}
@media (max-width : 428px) {
  .bpts_footer_titlelogo img {
    max-width: 200px;
    width: 100%;
  }
}
/* --------------------------------------------------
	ボタン
-------------------------------------------------- */
/*　リンクボタン　*/
.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: 99%;
  margin: 0 auto;
}
.bpts_accordion_area li {
  margin: 10px 0;
}
.bpts_accordion_area section {
  background: #F8F8F8;
}
/*アコーディオンタイトル*/
.accordion_title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1em;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  white-space: break-spaces;
}
/*アイコンの＋と×*/
.accordion_title::before, .accordion_title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #6ba5e3;
}
.accordion_title::before {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.accordion_title::after {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.accordion_title.close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.accordion_title.close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.accordion_box {
  display: none; /*はじめは非表示*/
  background: #fff;
  margin: 0 0 3% 0;
  padding: 3% 0;
}
@media (max-width : 768px) {
  /*アコーディオンタイトル*/
  .accordion_title {
    font-size: 1em;
    font-weight: 500;
  }
}
/* ホバーで色が切り替わるリンクボタン */
.btps_linkbtn_isshoku {
  display: block;
  max-width: 200px;
  padding: .1em 0.8em;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background: #a52425;
  border: 2px solid #a52425;
  border-radius: 100px;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  font-weight: 300;
  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: #a52425 !important;
  border: 2px solid #a52425;
  text-decoration: none;
}
/* PCのみスペーサー　 */
.bpts_spacer_h200_pc {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 200px;
}
@media (max-width: 769px) {
  /* 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: 769px) {
  /*　PC表示時任意の場所で改行をレスポンシブ時解除　*/
  .bpts_br_pc::before {
    display: none;
  }
  /*　レスポンシブ時任意の場所で改行　*/
  .bpts_br::before {
    content: "\A";
    white-space: pre;
  }
}
/* -------------目次ページの矢印つきボタン------------- */
ul.bpts_mokuji_btn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 1em;
  grid-column-gap: 1em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 5em auto 0 auto;
}
ul.bpts_mokuji_btn li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  background-color: #fff;
  border: 1px solid #17AE9A;
	background: #E9F8F6;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  min-height: 90px;
  border-radius: 100px;
}
ul.bpts_mokuji_btn li a {
  padding: 1em .4em;
  display: block;
  width: 100%;
  color: #000 !important;
  text-decoration: none !important;
  line-height: 1.3;
	
}
ul.bpts_mokuji_btn li a:after {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 3px solid #17AE9A;
    border-right: 3px solid #17AE9A;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 40px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.bpts_mokuji_btn li.btn_none {
  pointer-events: none;
  background: #E7E7E7;
}
/* ボタン１こ分 */
.bpts_mokuji_btn li:hover {
  background: #CAE9E5;
  border: #00A690 1px solid;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
ul.bpts_mokuji_btn li span {
  font-size: .8em;
  display: block;
}
@media (max-width: 769px) {
  ul.bpts_mokuji_btn {
    display: block;
  }
  ul.bpts_mokuji_btn li {
    width: 95%;
    margin-bottom: 1em;
  }
  /* ボタン１こ分 */
  .bpts_mokuji_btn li {
    width: 100%;
  }
  ul.bpts_mokuji_btn.footer li {
    width: 95%;
    margin: 0 auto;
    padding: .3em;
  }
}
/*--------------------------------------
  メニューパネル
--------------------------------------*/
.bpts_menu_panel { /*並べるエリア*/
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, 30%);
  grid-row-gap: 20px;
  grid-column-gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.bpts_menu_panel li { /*１つ分の枠*/
  margin: 1%;
  border-radius: 6px;
  padding: 2em;
  -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
  box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.bpts_menu_panel li a {
  text-decoration: none;
  color: #808080 !important;
}
.bpts_menu_panel li:hover a {
  text-decoration: none;
  color: #fff !important;
}
.bpts_menu_panel li:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  background: #6ba5e3;
}
.bpts_menu_panel li i { /*アイコン*/
  font-size: 2.3em;
  display: block;
  color: #808080;
}
.bpts_menu_panel li:hover i {
  color: #fff;
}
/*準備中の項目にはsoonをつける*/
.bpts_menu_panel li.soon {
  opacity: .5;
}
.bpts_menu_panel li.soon:hover, .bpts_menu_panel li.soon a, .bpts_menu_panel li.soon i {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  background: #fff;
  color: #808080 !important;
}
/*--------------*/
/* flex横並びボックス　２個のとき */
.bpts_flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; /* Safari */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.bpts_flexbox div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 769px) {
  .bpts_flexbox {
    display: block;
  }
  .bpts_flexbox div {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}
.search_container {
  -webkit-box-sizing: border-box;
  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;
}
a.bpts_btn_move {
  display: inline-block;
  padding: 0.4em 1.6em;
  font-size: 0.9em;
  color: #6ba5e3;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px #6ba5e3 solid;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
a.bpts_btn_move:hover {
  -webkit-animation: pulse 1s;
  animation: pulse 1s;
  background: #6ba5e3;
  color: #fff;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(23, 111, 219, 0.6);
    box-shadow: 0 0 0 0 rgba(23, 111, 219, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(23, 111, 219, 0.6);
    box-shadow: 0 0 0 0 rgba(23, 111, 219, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
  }
}
@media (max-width: 769px) {
  a.bpts_btn_move {
    width: 90%;
  }
}
/*お問い合わせ用ボタン*/
.c_bpts_btn_fuwa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  background: #6ba5e3;
  border-radius: 80px;
  margin: 0 auto;
  max-width: 440px;
  color: #fff !important;
  font-size: clamp(0.938rem, 0.619rem + 1.59vw, 1.813rem);
  font-weight: 500;
  padding: 0 0em 0 1.2em;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.c_bpts_btn_fuwa:after {
  content: url("../image/common/icon-btn-arrow.png");
}
.c_bpts_btn_fuwa:hover {
  background: #6BC3D1;
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: kira 1.5s infinite;
  color: #fff;
}
/*hoverで周囲に波*/
@-webkit-keyframes kira {
  0% {
    -webkit-box-shadow: 0 0 0 0 #27acd9;
    box-shadow: 0 0 0 0 #27acd9;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);
    box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);
    box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);
  }
}
@keyframes kira {
  0% {
    -webkit-box-shadow: 0 0 0 0 #27acd9;
    box-shadow: 0 0 0 0 #27acd9;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);
    box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);
    box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);
  }
}
.c_bpts_btn_fuwa.blue {
  background: #3B90BD;
}
.c_bpts_btn_fuwa.blue:hover {
  background: #65AFD7;
}
/* ボタン */
a.bpts_btn_fuwa {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 64px;
    margin: 3em auto .5em;
    padding: .7em 2em .7em 2em;
    color: #000;
    text-decoration: none;
    box-shadow: 5px 5px 0 #b3dff9;
    transition: all ease .3s;
    border: 2px solid #b3dff9;
    border-radius: 100px;
    position: relative;
    background: #fff;
    align-items: center;
    font-size: clamp(1rem, 0.817rem + 0.78vw, 1.25rem);
    font-weight: 500;
    line-height: 1.3;
}
/* a.bpts_btn_fuwa[target="_blank"]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: .8rem;
    content: "\f35d";
    margin: 0 0 0 5px;
} */
a.bpts_btn_fuwa:hover {
  transform: translate(5px, 5px);
  box-shadow: none;
  color: #000 !important;
}
/*==================================================
アニメーション設定
===================================*/
/*　（１）テキストが滑らかに出る*/
span.smoothText {
  overflow: hidden;
  display: block;
}
/* アニメーションで傾斜がついている文字列を水平に戻す*/
span.smoothTextTrigger {
  -webkit-transition: .8s ease-in-out;
  -o-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
  -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
  transform: translate3d(0, 100%, 0) skewY(12deg);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  display: block;
}
span.smoothTextTrigger.smoothTextAppear {
  -webkit-transform: translate3d(0, 0, 0) skewY(0);
  transform: translate3d(0, 0, 0) skewY(0);
}
/*（２）ふわっと出てくる*/
.btps_fade_in {
  -webkit-animation-name: btps_fade_inAnime;
  animation-name: btps_fade_inAnime;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}
@-webkit-keyframes btps_fade_inAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes btps_fade_inAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*（３）背景色が伸びて出現*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}
@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
  animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
} */
.fadeIn-left,
.fadeIn-left-load{
  opacity: 0;
  -webkit-transform: translate(-30px,0);
  transform: translate(-30px,0);
}
.fadeIn-right,
.fadeIn-right-load{
  opacity: 0;
  -webkit-transform: translate(30px,0);
  transform: translate(30px,0);
}
.fadeIn-up,
.fadeIn-up-load{
  opacity: 0;
  -webkit-transform: translate(0,-30px);
  transform: translate(0,-30px);
}
.fadeIn-bottom,
.fadeIn-bottom-load{
  opacity: 0;
  -webkit-transform: translate(0,30px);
  transform: translate(0,30px);
}
.fadeIn-left.fadeIn,
.fadeIn-left-load.fadeIn,
.fadeIn-right.fadeIn,
.fadeIn-right-load.fadeIn,
.fadeIn-up.fadeIn,
.fadeIn-up-load.fadeIn,
.fadeIn-bottom.fadeIn,
.fadeIn-bottom-load.fadeIn {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fadeIn-left.fadeIn,
.fadeIn-left-load.fadeIn {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate(-30px,0);
    transform: translate(-30px,0);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate(-30px,0);
    transform: translate(-30px,0);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.fadeIn-right.fadeIn,
.fadeIn-right-load.fadeIn {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate(30px,0);
    transform: translate(30px,0);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate(30px,0);
    transform: translate(30px,0);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.fadeIn-up.fadeIn,
.fadeIn-up-load.fadeIn {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(0,-30px);
    transform: translate(0,-30px);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(0,-30px);
    transform: translate(0,-30px);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.fadeIn-bottom.fadeIn,
.fadeIn-bottom-load.fadeIn {
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
}
@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0,30px);
    transform: translate(0,30px);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0,30px);
    transform: translate(0,30px);
  }
  99.9%, to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #DD0616; /*伸びる背景色の設定*/
}
@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger, .flipLeftTrigger, .flipLeftTopTrigger, .flipRightTrigger, .flipRightTopTrigger {
  opacity: 0;
}
/*　（４）　Y 軸（横へ）くるっと回転　*/
.flipLeft {
  -webkit-animation-name: flipLeftAnime;
  animation-name: flipLeftAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
  perspective-origin: left center;
  opacity: 0;
}
@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.bpts_anime_kata {
  -webkit-animation: katakata 5s infinite ease-in-out alternate;
  animation: katakata 5s infinite ease-in-out alternate;
}
/*たまにカタカタ動く*/
@-webkit-keyframes katakata {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  52% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
    transform: translate(0, 0) rotate(-3deg);
  }
  53% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
    transform: translate(0, -1px) rotate(0deg);
  }
  54% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
    transform: translate(0, -1px) rotate(3deg);
  }
  55% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
    transform: translate(1px, 0) rotate(-2deg);
  }
  56% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
    transform: translate(0, 1px) rotate(0deg);
  }
  57% {
    -webkit-transform: translate(0, 0) rotate(3deg);
    transform: translate(0, 0) rotate(3deg);
  }
  58% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes katakata {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  52% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
    transform: translate(0, 0) rotate(-3deg);
  }
  53% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
    transform: translate(0, -1px) rotate(0deg);
  }
  54% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
    transform: translate(0, -1px) rotate(3deg);
  }
  55% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
    transform: translate(1px, 0) rotate(-2deg);
  }
  56% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
    transform: translate(0, 1px) rotate(0deg);
  }
  57% {
    -webkit-transform: translate(0, 0) rotate(3deg);
    transform: translate(0, 0) rotate(3deg);
  }
  58% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
}
/*くるくるまわる*/
.bpts_anime_kuru {
  display: inline-block;
  -webkit-animation: rotate-z 2s linear infinite;
  animation: rotate-z 2s linear infinite;
}
@-webkit-keyframes rotate-z {
  from {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes rotate-z {
  from {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
/*ゆらゆらする*/
.bpts_anime_yura {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation: yurayura 2s linear infinite;
  animation: yurayura 2s linear infinite;
}
@-webkit-keyframes yurayura {
  0%, 100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}
@keyframes yurayura {
  0%, 100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}
/*とびだす*/
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.zoomInTrigger {
  opacity: 0;
}
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}
/* 柔らかいフェードアップ */
/* .anim-box.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
} */
/*時間指定*/
.time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.time1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.time15 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.time2 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.time25 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
/*===========================
　画像
=========================*/
/*　画像の拡大　*/
.bpts_img_zoom img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}
.bpts_img_zoom a:hover img { /*hoverした時の変化*/
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); /*拡大の値を変更したい場合はこの数値を変更*/
}
/*　画像のマスク　*/
.bpts_img_mask {
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}