@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;
    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_grid_double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-items: center;
    justify-content: center;
    justify-items: center;
}
.bpts_grid_double li {
	max-width: 100%;
	width: 100%;
}
.bpts_grid_double li a.bpts_fuwa{
	display: block;
	width: 100%;
	max-width: 100%;
}
@media (max-width: 768px) {
	.bpts_grid_double {
		 grid-template-columns: 1fr;
	}
	
}
/* --------------------------------------------------
	いろいろなパーツ
-------------------------------------------------- */
.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_fuwa_anime {
  animation: fuwa_anime 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}
@keyframes fuwa_anime {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
/*揺れる 時間ずらし*/
.bpts_fuwa_anime02 {
  animation: fuwa_anime2 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}
@keyframes fuwa_anime2 {
  0% {
    transform: translate(0, 0) rotate(-15deg);
  }
  50% {
    transform: translate(0, -15px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(15deg);
  }
}
/* --------------------------------------------------
	フッター
-------------------------------------------------- */

/*-----------グレーアウト---------------*/
.sitemap_flex a{
	color: #B0B0B0;
	pointer-events: none;
}
.sitemap_flex > div:nth-child(2) > div:nth-child(2) > p > a,
.sitemap_flex > div:nth-child(2) > div:nth-child(2) > ul > li:nth-child(1) > a,
.sitemap_flex > div:nth-child(2) > div:nth-child(2) > ul > li:nth-child(2) > a{
	color: #494949;
	pointer-events: painted;
}
.sitemap_p{
	padding-left: 0.5em;/*上下 左右の余白*/
  	color: #494949;/*文字色*/
  	background: transparent;/*背景透明に*/
}
#zone_footer > div.bpts_footer > div > div.bpts_footer_contents > div.sitemap_flex > div:nth-child(2) > div:nth-child(2) > p{
  	border-left: solid 3px #ff7b89;/*左線*/
}

/*-----------グレーアウト---------------*/

.bpts_footer {
  background: #fff;
  width: 100%;
  clear: both;
}
@media (max-width: 768px) {
  .bpts_footer_animal {
    width: 90%;
    margin: 0 auto;
  }
  .bpts_footer_animal div img {
    width: 63px;
    height: auto;
  }
}
.bpts_footer_contents {
  padding: 2em 2em 1em 3em;
  background: rgba(254, 244, 229, .4);
}
.bpts_footer_contents > div{
	max-width: 1300px;
	margin: 0 auto;
}
.bpts_footer_contents a {
  text-decoration: none;
  font-weight: normal;
}
.bpts_footer_title{
  font-size: 1.2em;
  text-decoration: none;
  font-weight: normal;
  line-height: 1.5;
  font-family: 'Zen Maru Gothic', sans-serif !important;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  transition: .5s;
}
.bpts_footer_title:hover{
	opacity: .5;
}
#zone_footer > div.bpts_footer > div > div.bpts_footer_contents > div:nth-child(1){
	display: flex;
}
.sitemap_flex{
	display: flex;
	font-size: .8em;
	padding: 1em 2em 1em 1em;
	line-height: 1.5;
	justify-content: flex-start;
}
.sitemap_flex a {
  position: relative;
  display: inline-block;
  text-decoration: none;
	margin-bottom: 7px;
	transition: .5s;
}
.sitemap_flex a:hover {
	opacity: .5;
}
.sitemap_column{
	margin: 0 2em;
	max-width: 40%;
}
.sitemap_column:nth-child(2){
	max-width: 50%;
}
/*
.sitemap_p{
	padding-left: 0.5em;
  	color: #494949;
  	background: transparent;
  	border-left: solid 3px #ff7b89;
}
*/

.sitemap_ul_wrapper{
	margin-bottom: 2em;
}
.sitemap_ul{
	padding-left: 1em;
}
.sitemap_ul > li{
	position: relative;
    padding-left: 10px;
}
/*
.sitemap_ul > li:before{
	content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: .2em;
  height: .2em;
  background-color: #494949;
  border-radius: 50%;
}
*/
.footer_link{
	margin: 0 2em;
}
.sitemap_flex img{
	width: .7em;
	margin-left: .5em;
}
@media screen and (min-width: 768px){
	.br_sp{
		display: none;
	}
}

/* ページトップ　*/
.bpts_footer_pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 0;
  height: auto;
  text-align: right;
  padding: 0;
}
.pagetop{
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: .5s;
	font-size: 18px;
}
.pagetop:hover{
	opacity: .5;
}
.dli-chevron-up {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: .7em;
  height: .7em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

@media (max-width: 768px) {
  .bpts_footer_contents a h5 {
    text-align: left;
  }
  .bpts_footer_contents a h5 em {
    display: block;
  }
  .bpts_footer_pagetop {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    height: auto;
    width: 85px;
    text-align: right;
    padding: 0;
    margin: 0;
  }
  .bpts_footer_pagetop a img {
    width: 85px;
  }
  .pagetop{
	  font-size: 16px;
  }
}
@media (max-width: 450px) {
	.pagetop{
		font-size: 13px;
     }
}
/* コピーライト　*/
.bpts_footer_copyright {
  /*overflow: hidden;*/
  font-size: 10px;
  text-align: center;
  clear: both;
  padding: 4px 2em;
  background: rgba(254, 244, 229, 1)
}
@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;
  }
}
@media (max-width: 570px) {
	.sitemap_flex {
		font-size: 13px;
		padding: 1em;
		flex-direction: column;
		width: 100%;
	}
	.sitemap_column {
		margin: 0 0 0 2em;
	}
	.sitemap_column:nth-child(1),
	.sitemap_column:nth-child(2) {
		max-width: 100%;
	}
	.bpts_footer_contents {
    padding: 1em 2em;
}
	
}

/*　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: #69655E;
}
.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_button {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 120px;
	margin: auto;
	padding: .5rem 4rem;
	font-weight: bold;
	border: 2px solid #ff7b89;
	background: #ff7b89;
	color: #fff!important;
	border-radius: 100vh;
	transition: 0.5s;
	font-family: 'Zen Maru Gothic', sans-serif !important;
	font-size: 18px;
}
.bpts_button:hover {
	color: #ff7b89!important;
	background: #fff;
}
.bpts_button_contact{
	display: flex;
	flex-direction: column;
	text-align: center;
	text-decoration: none;
	width: 18em;
	margin: auto;
	padding: 2rem 4rem;
	font-weight: bold;
	background: #fff;
	color: #494949;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
	font-family: 'Zen Maru Gothic', sans-serif !important;
	font-size: 18px;
}
.bpts_button_contact:hover{
	opacity: .7;
}
.bpts_button_contact img{
	width: 70px;
	margin: 0 auto 5px;
}

@media screen and (max-width: 964px) {
	.bpts_button_contact img{
		width: 50px;
	}
	.bpts_button_contact{
		width: 15em;
		padding: 1rem 3rem;

	}

}

.bpts_btn_fuwa, .bpts_btn_fuwa_blue {
  text-decoration: none;
  background: #DBE9B7;
  border-radius: 100px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 300px;
  padding: 10px 25px;
  color: #B8B2A6;
  transition: 0.3s ease-in-out;
  font-weight: normal;
  border: 1px solid #B8B2A6;
}
.bpts_btn_fuwa:after,
.bpts_btn_fuwa_blue:after {
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}
.bpts_btn_fuwa:hover,.bpts_btn_fuwa_blue:hover {
  text-decoration: none !important;
  background: #ECF7B1;
  color: #FFF;
}
.bpts_btn_fuwa:hover:after,.bpts_btn_fuwa_blue:hover:after {
  right: 1.4rem;
}
/*-----ボタン*/
.bpts_btn_long {
	max-width: 800px;
	width: 100%;
  text-decoration: none;
  background: #8C877D;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 25px;
  color: #fff!important;
  transition: 0.3s ease-in-out;
  font-weight: normal;
	margin: 1em auto;
  border: 1px solid #B8B2A6;
}
.bpts_btn_long:after {
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}
.bpts_btn_long:hover {
  text-decoration: none !important;
  background: #A7A094;
  color: #FFF;
}
.bpts_btn_long:hover:after {
  right: 1.4rem;
}
@media (max-width: 768px) {
	.bpts_btn_long {
		width: 80%;
		}
}