﻿@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;
}
@media (max-width : 768px) {
	.bpts_spacer_h80.sp_h80{
		display: none;
	}
}
/* --------------------------------------------------
	ヘッダー
-------------------------------------------------- */
/* --------------------------------------------------
	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 {
  padding: 100px 0;
  background: url("../image/sitetop/img-bg-footer.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
/* ページトップ　*/
.bpts_footer_pagetop {
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 0;
  height: auto;
  text-align: right;
  padding: 0;
  margin: 0 20px 0 0;
  width: 150px;
}
.bpts_footer_pagetop a img {
  width: 80px;
}
/* コピーライト　*/
.bpts_footer_copyright {
  text-align: center;
  font-size: 0.7em;
  color: #666;
  padding: 0;
  margin: 0;
  background: #fff;
}
.bpts_footer_wrapper {
  margin: 0 auto;
  text-align: center;
  padding: 3em 0;
  max-width: 1200px;
  color: #666;
}
.bpts_footer_wrapper img.logo {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 3em auto;
}
.bpts_footer_grid {
  padding-bottom: 10em;
  max-width: 1000px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  text-align: left;
  font-size: .9em;
  color: #fff;
  justify-item: center;
  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;
  color: #fff !important;
}
@media (max-width : 768px) {
  .bpts_footer_pagetop {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 998;
    height: auto;
    width: 120px;
    text-align: right;
    padding: 0;
    margin: 0;
  }
  .bpts_footer_pagetop a img {
    width: 60px;
  }
  .bpts_footer_wrapper {
    width: 90%;
  }
  .bpts_footer_grid, .bpts_footer_grid p {
    display: block;
    text-align: center;
  }
  .bpts_footer_grid, .bpts_footer_grid p {
    margin-bottom: 2em;
  }
}
/* --------------------------------------------------
	ボタン
-------------------------------------------------- */
/**/
.bpts_btn_fuwa {
  font-weight: 500;
  font-size: 1.1em;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.2;
  width: auto;
  padding: 10px 56px 10px 32px;
  background-image: linear-gradient(130deg, #93a687, #72a6a4);
  color: #fff !important;
  margin: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  overflow: hidden;
  transition: background-image 0.3s ease, box-shadow 0.3s ease;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}
/* 矢印 */
.bpts_btn_fuwa:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  right: 20px;
  transition: all 0.2s;
  font-weight: 600;
	  color: #fff;
}
/* hover時 */
.bpts_btn_fuwa:hover {
  /* 少し濃いグラデーション */
  background-image: linear-gradient(130deg, #a6b589, #9fb5a6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
}
.bpts_btn_fuwa:hover:after {
  right: 15px;
}
/*　リンクボタン　*/
.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_btn_list {
  max-width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.bpts_btn_list li {
  padding: 0;
  margin: 0;
}
.bpts_btn_list li a {
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #81A268;
  color: #fff;
  padding: 1.7em 4em 1.7em 1.5em;
  position: relative;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  height: 100%;
}
/* アイコン */
.bpts_btn_list li a .btn_list_icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
/* テキスト */
.bpts_btn_list li a span {
  font-size: clamp(16px, 1.4vw, 20px);
}
.bpts_btn_list li a span em {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
}
/* 矢印 */
.bpts_btn_list li a::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: transform 0.25s ease, right 0.25s ease;
}
/* hover */
.bpts_btn_list li a:hover {
  background-color: #77AFAC;
  color: #fff;
}
.bpts_btn_list li a:hover::before {
  right: 14px;
}
@media (max-width : 1024px) {
  .bpts_btn_list {
    display: block;
  }
  .bpts_btn_list li {
    margin-bottom: 1em;
  }
}
@media (max-width : 768px) {
  .bpts_btn_fuwa {
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    line-height: 1.2;
    width: 100%;
    padding: 10px 63px 10px 44px;
    background-image: linear-gradient(130deg, #b8c597, #afc5b4);
    color: #fff !important;
    margin: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-image 0.3s ease, box-shadow 0.3s ease;
    border-radius: 100px;
    text-decoration: none;
    white-space: pre-wrap;
  }
}
/*==================================================
アコーディオン
===================================*/
/*アコーディオン全体*/
.bpts_accordion_area {
  list-style: none;
  width: 99%;
  max-width: 1100px;
  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;
}
/*アイコンの＋と×*/
.accordion_title::before, .accordion_title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #A2BE7A;
}
.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: bold;
  }
}
/* 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;
  }
}
/*--------------*/
/* 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;
}
/*===========================
　画像
=========================*/
/*　画像の拡大　*/
.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.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
/*　画像のマスク　*/
.bpts_img_mask {
  display: block;
  line-height: 0;
  overflow: hidden;
}
/*=============================*/
.bpts_box_list > li {
  --border-color-1: #f8f8f8;
  --border-color-2: #ddd;
  margin: 2em auto;
  padding: 2em;
  background: linear-gradient(-45deg, transparent 25%, var(--border-color-1) 25%, var(--border-color-1) 50%, transparent 50%, transparent 75%, var(--border-color-1) 75%, var(--border-color-1));
  background-size: 4px 4px;
  background-clip: padding-box;
  border: 1px solid #A2BE7A;
  border-radius: 10px 0 0 0;
}
.bpts_box_list > li h4 {
  display: flex;
  align-items: center;
  align-content: center;
  line-height: 1.3;
  font-size: 1.2em;
}
.bpts_box_list > li h4::before {
  content: attr(data-number);
  display: inline-block;
  margin-right: 10px;
  color: #A2BE7A;
  font-size: 1.5em
}