@charset "UTF-8";
/* =============================
   リセット
============================= */
/**, *::before, *::after {
  box-sizing: border-box;
}*/
/*html {
  font-size: 16px;
  scroll-behavior: smooth;
}*/
.bsl {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt";
}
.bsl h1, .bsl h2, .bsl h3, .bsl h4, .bsl h5, .bsl h6 {
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.bsl p {
  margin: 0;
  line-height: 1.7;
  margin-bottom: 0.5em
}
.bsl ul, .bsl ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bsl img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.bsl a {
  color: inherit;
  text-decoration: none;
}
.bsl a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
/* =============================
   共通レイアウト
============================= */
.bsl .section {
  max-width: 100%;
  /*  padding: 0px 20px;*/
  margin-bottom: 70px
}
.bsl .container {
  max-width: 1400px;
  margin: 0 auto;
}
/* 小さめコンテナ */
.bsl .container-small {
  max-width: 1000px;
}
/* フル幅コンテナ（完全にフル） */
.bsl .container-full {
  max-width: none;
  width: 100%;
}
/* =============================
カラム
============================= */
.bsl .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.bsl .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 1000px) {
  .bsl .section {
    padding: 0px 20px;
    margin-bottom: 50px
  }
  .bsl .grid-2, .bsl .grid-3 {
    gap: 5px;
  }
  .bsl .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
/* =============================
カラム
============================= */
.bsl .flex_start {
  display: flex;
  justify-content: flex-start;
  gap: 70px;
}
/* =============================
   ヘッダー
============================= */
/*.bsl .site-header {
  background: #eee;

    width: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 10;
	 height: 70px;

  }

.bsl .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center; 
  justify-content: flex-end;
}

.bsl .logo {
  margin-right: auto
}
.bsl .logo img {
  width: 315px;
  height: auto;
  display: block;
  margin: 10px 0px 0px 20px
}*/
/* PC時はナビを右へ */
/*.bsl .nav {
  margin-left: auto;
}*/
/* ヘッダー コンタクト */
/*.bsl .mini-contact {
  height: 28px;
  margin-right: 20px;
*/
}
/* 左のボタン3つ */
/*.bsl .mini-contact__btns {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bsl .mc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 28px;
  padding: 0 18px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

}*/
/* 色 */
/*.bsl .mc-btn--red {
  background: #8f0000;
}
.bsl .mc-btn--green {
  background: #0b6b3b;
}
.bsl .mc-btn--orange {
  background: #f7931e;
}
.bsl .mini-contact__tel img {
  display: block;
  height: 28px;
  width: auto;
  margin: 0px 20px 0 0
}*/
/*.bsl .mini-contact__tel {
  pointer-events: none; 
  cursor: default; 
  text-decoration: none;
}*/
/* 画面が狭い時の調整（必要なら） */
/*@media (max-width: 1000px) {
  .bsl .site-header {
    background: #eee;
    padding: 0px 0;
    width: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 1;
	 height: 55px;
	z-index: 10
  }
  .bsl .logo img {
    width: 208px;
    height: auto;
    display: block;
    margin-left: 10px;
	 margin-top: 13px
  }
 .bsl .mini-contact {
    flex-wrap: wrap;
    justify-content: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 40px;
    margin: 0px;
    background-color: #FFFFFF;
	  z-index: 1000
  }
.bsl  .mini-contact__btns {
    display: flex;
    align-items: center;
    gap: 0px;
    width: 100%;
    height: 40px;
  }
.bsl  .mc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: 0 18px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }
 .bsl  .mini-contact__tel img {
    width: auto;
    height: 13px;
    margin: 0px 10px 0 0
  }

}*/
/*@media (max-width: 450px) {  .mini-contact__tel {
    pointer-events: auto; 
    cursor: pointer; 
  }}*/
/* =============================
   フッター
============================= */