@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 (max-width:960px) {
		.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:960px) {
		.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_tel {
		margin: 25px auto 8px auto;
		width: 95%;
		max-width: 380px;
		padding: 1px 0px;
		text-align: center;
		border-radius: 3px;
		background-color: rgba(66, 55, 47, 0.70);
}
/* レスポンシブメニュー　 */
.bpts_header_menu {
		display: none;
}
@media (max-width:960px){
		.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:960px){
		/* レスポンシブで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_footer {
		font-family: 'Shippori Mincho', serif;
		max-width: 1300px;
		margin: 0 auto;
		padding: 5em 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-ms-flex-pack: distribute;
		justify-content: space-around;
}
@media (max-width:960px){
		.bpts_footer {
				display: block;
				margin: 0 auto;
				width: 90%;
		}
		.bpts_footer div:nth-child(2) {
				max-width: 330px;
				margin: 1em auto 0 auto;
		}
}
.bpts_footer_contents a {
		display: block;
		max-width: 1100px;
		font-size: 1.35em;
		text-decoration: none;
		font-weight: normal;
		color: #333 !important;
}
.bpts_footer_contents a h2 {
		font-size: 1.6em;
}
.bpts_footer_contents a span {
		font-size: .6em;
		display: block;
		margin-top: -1em;
		font-weight: normal;
}
.bpts_footer_contents a h2 span {
		font-size: .7em;
		font-weight: normal;
}
.address {
		font-size: .9em;
		line-height: 1.5;
		color: #fff;
}
/* ページトップ　*/
/*リンクの形状*/
#page-top a {
		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;
		background: url("../image/common/icon-pagetop.png")no-repeat;
		width: 100px;
		height: 100px;
		color: #fff;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		font-size: 0.6rem;
		transition: all 0.3s;
}
#page-top a:hover {
		color: #fff !important;
}
/*リンクを右下に固定*/
#page-top {
		position: fixed;
		right: 10px;
		z-index: 2;
		/*はじめは非表示*/
		opacity: 0;
		transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
		animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
		from {
				opacity: 0;
				transform: translateY(100px);
		}
		to {
				opacity: 1;
				transform: translateY(0);
		}
}
/*　下に下がる動き　*/
#page-top.DownMove {
		animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
		from {
				opacity: 1;
				transform: translateY(0);
		}
		to {
				opacity: 1;
				transform: translateY(100px);
		}
}
/* コピーライト　*/
.bpts_footer_copyright {
		/*overflow: hidden;*/
		font-size: 10px;
		color: #fff;
		text-align: center;
		clear: both;
		padding: 10px;
		background: #D5927C;
}
@media (max-width:960px){ /*PCのみ*/
		.bpts_footer {
				margin-top: 15px;font-size: 0.8em;
		}
		.bpts_footer_wrapper img.for_sf {
				display: none;
		}
		.bpts_footer_wrapper {
				float: none;
				/*.wrapper_fullbgの解除*/
				margin-left: 0;
				margin-right: 0;
				padding-left: 0;
				padding-right: 0;
				padding: 20px;
				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%;
				/*.wrapper_fullbgの解除*/
				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:960px){
		/*　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:960px){
		/*　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: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.bpts_accordion_list li .title {
		position: relative; /*+マークの位置基準とするためrelative指定*/
		cursor: pointer;
		font-size: 1rem;
		font-weight: normal;
		padding: .5em .5em .5em 5em;
		transition: all .5s ease;
}
/*アイコンの＋と×*/
.bpts_accordion_list li .title::before, .bpts_accordion_list li .title::after {
		position: absolute;
		content: '';
		width: 15px;
		height: 2px;
		background-color: #333;
}
.bpts_accordion_list li .title::before {
		top: 48%;
		left: 15px;
		transform: rotate(0deg);
}
.bpts_accordion_list li .title::after {
		top: 48%;
		left: 15px;
		transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.bpts_accordion_list li .title.close::before {
		transform: rotate(45deg);
}
.bpts_accordion_list li .title.close::after {
		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 {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 2em auto;
		max-width: 225px;
		padding: 5px 0px 5px 0;
		color: #D5927C!important;
	text-decoration: none!important;
		transition: 0.3s ease-in-out;
		font-size: .9em;
}
.bpts_btn_fuwa:before, .bpts_btn_fuwa:after {
		content: "";
		position: absolute;
		display: block;
		top: 50%;
}
.bpts_btn_fuwa:before {
		width: 0.3rem;
		height: 0.3rem;
		left: 1rem;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		z-index: 2;
		transform: translateY(-50%) rotate(45deg);
		transition: all 0.3s;
}
.bpts_btn_fuwa:after {
		left: 0;
		background: rgba(213,146,124,.5);
		z-index: 1;
		width: 2.6rem;
		height: 2.6rem;
		border-radius: 4rem;
		transform: translateY(-50%);
		transition: all 0.5s;
}
.bpts_btn_fuwa span {
		position: relative;
		transition: all 0.3s;
		z-index: 3;
}

.bpts_btn_fuwa:hover span {
		color: #fff;
}
.bpts_btn_fuwa:hover:before {
		left: 2rem;
}
.bpts_btn_fuwa:hover:after {
		right: 0;
		width: 100%;
}
.bpts_btn_fuwa.long{
	max-width: 470px;
}
/*画像中央寄せ*/
.img_center{
	text-align: center;
}
.img_center img{
	max-width: 800px;
	width: 100%;
	margin: 1em 0;
}
/*横並び目次*/
.bpts_backnumber_btn_list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, 180px);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    margin: 0 auto 2em auto;
    justify-content: center;
    align-content: center;
}
.bpts_backnumber_btn_list a{
	line-height: 1.3;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	width: 100%;
	margin: 0;
	border: #EAC8BD 1px solid;
	border-radius: 100px;
	padding: 0;
	text-align: center;
	text-decoration: none;
	padding: .2em 0;
	transition: .4s;
}
.bpts_backnumber_btn_list a:hover{
	background: #EAC8BD;
	color: #fff!important;
}