@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP-Black";
  src: url(/fonts/NotoSansJP/NotoSansJP-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url(/fonts/NotoSansJP/NotoSansJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url(/fonts/NotoSansJP/NotoSansJP-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url(/fonts/NotoSansJP/NotoSansJP-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP-Bold";
  src: url(/fonts/NotoSerifJP/NotoSerifJP-Bold.woff) format("woff");
  font-display: swap;
}
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/CT出し分け
------------------------------ */
@media (min-width: 1024px) {
  .t-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .t-pc {
    display: none !important;
  }
}
/* PC/SP出し分け
------------------------------ */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

main {
  margin-top: 80px;
}
@media (max-width: 1023px) {
  main {
    margin-top: 52px;
  }
}

article:not(.index).container {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  article:not(.index).container {
    margin-bottom: 40px;
  }
}

section .contents {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 90%;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #999;
  border-radius: 4px;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #FFF;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "NotoSansJP-Regular", sans-serif;
  font-size: 18px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* パンくず
-----------------------------------*/
.b-nv {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 8px 0;
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  line-height: 1;
}
.b-nv ul li a {
  margin-right: 8px;
  color: #666;
  font-size: 16px;
}
.b-nv ul li::after {
  content: "";
  display: block;
  width: 11px;
  height: 9px;
  background: url(/bc_my_theme/img/common/com_arrow01.svg) no-repeat;
  background-size: 100% auto;
}
.b-nv ul li:not(:last-child) a {
  color: #114FA1;
}
.b-nv ul li:last-child::after {
  content: none;
}

/* タイトル
-----------------------------------*/
.title-area {
  padding: 72px 0;
  background: linear-gradient(to right, #E6EEEE 0%, #FFF 50%, #E6EEEE 100%);
}
@media (max-width: 767px) {
  .title-area {
    padding: 48px 0;
  }
}
.title-area .heading-title {
  position: relative;
  margin-bottom: 0;
  padding-top: 56px;
  font-size: 40px;
  font-family: "NotoSansJP-Medium", sans-serif;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    padding-top: 40px;
    font-size: 20px;
    line-height: 1.5;
  }
}
.title-area .heading-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 41px;
  height: 31px;
  background: url(/bc_my_theme/img/common/title_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .title-area .heading-title::before {
    width: 28px;
    height: 22px;
  }
}

.heading01 {
  margin: 80px 0 32px;
  color: #FFF;
  font-size: 28px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 40px 0 24px;
    font-size: 24px;
  }
}
.heading01 span {
  display: inline-block;
  padding: 8px 16px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #114FA1;
}

.heading02 {
  margin: 64px 0 24px;
  color: #114FA1;
  font-size: 24px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}

.heading03 {
  margin: 32px 0 16px;
  font-size: 18px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 16px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #666;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .link-txt {
    gap: 8px;
  }
}
.link-txt .arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #333;
}
@media (max-width: 767px) {
  .link-txt .arrow {
    width: 18px;
    height: 18px;
  }
}
.link-txt .arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 13px;
  height: 10px;
  background: url(/bc_my_theme/img/common/com_arrow03.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .link-txt .arrow span {
    width: 12px;
    height: 10px;
  }
}
.link-txt:hover {
  color: #114FA1;
  text-decoration: none;
}
.link-txt:hover .arrow {
  background: #114FA1;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  display: inline-block;
  min-width: 288px;
  border: 1px solid #666;
  border-radius: 8px;
  border-top-right-radius: 0;
  box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.5);
  background: #FFF;
  color: #114FA1;
  font-family: "NotoSansJP-Medium", sans-serif;
  text-decoration: none;
  line-height: 1;
  vertical-align: top;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt {
    min-width: initial;
    width: 100%;
  }
}
.com-bt > span,
.com-bt input {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  background: transparent;
  font-family: "NotoSansJP-Medium", sans-serif;
  color: #114FA1;
  text-align: left;
  line-height: 1;
  z-index: 2;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt > span,
.com-bt input {
    padding: 16px;
    font-size: 14px;
  }
}
.com-bt:hover {
  border-color: #114FA1;
  background: #114FA1;
  color: #FFF;
  text-decoration: none;
}
.com-bt:hover > span,
.com-bt:hover input {
  color: #FFF;
}
.com-bt:hover img {
  opacity: 1 !important;
}
.com-bt.next::before {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 17px;
  background: url(/bc_my_theme/img/common/com_arrow01.svg) no-repeat;
  background-size: 100% auto;
  z-index: 2;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt.next::before {
    right: 16px;
    width: 16px;
    height: 13px;
  }
}
.com-bt.next > span,
.com-bt.next input {
  padding-right: 56px;
}
@media (max-width: 767px) {
  .com-bt.next > span,
.com-bt.next input {
    padding-right: 48px;
  }
}
.com-bt.next:hover::before {
  background: url(/bc_my_theme/img/common/com_arrow03.svg) no-repeat;
  background-size: 100% auto;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 50%;
  transform: rotate(180deg) translateY(-50%);
  transform-origin: 50% 0;
  width: 21px;
  height: 17px;
  background: url(/bc_my_theme/img/common/com_arrow01.svg) no-repeat;
  background-size: 100% auto;
  z-index: 2;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt.prev::before {
    right: 16px;
    width: 16px;
    height: 13px;
  }
}
.com-bt.prev > span,
.com-bt.prev input {
  padding-right: 56px;
}
@media (max-width: 767px) {
  .com-bt.prev > span,
.com-bt.prev input {
    padding-right: 48px;
  }
}
.com-bt.prev:hover::before {
  background: url(/bc_my_theme/img/common/com_arrow03.svg) no-repeat;
  background-size: 100% auto;
}
.com-bt.external::before {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 18px;
  background: url(/bc_my_theme/img/common/com_ic02.svg) no-repeat;
  background-size: 100% auto;
  z-index: 2;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt.external::before {
    right: 16px;
    width: 18px;
    height: 16px;
  }
}
.com-bt.external > span,
.com-bt.external input {
  padding-right: 56px;
}
@media (max-width: 767px) {
  .com-bt.external > span,
.com-bt.external input {
    padding-right: 48px;
  }
}
.com-bt.external:hover::before {
  background: url(/bc_my_theme/img/common/com_ic02-1.svg) no-repeat;
  background-size: 100% auto;
}
.com-bt.dl::before {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 17px;
  background: url(/bc_my_theme/img/common/com_ic03.svg) no-repeat;
  background-size: 100% auto;
  z-index: 2;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .com-bt.dl::before {
    right: 16px;
    width: 18px;
    height: 16px;
  }
}
.com-bt.dl > span,
.com-bt.dl input {
  padding-right: 56px;
}
@media (max-width: 767px) {
  .com-bt.dl > span,
.com-bt.dl input {
    padding-right: 48px;
  }
}
.com-bt.dl:hover::before {
  background: url(/bc_my_theme/img/common/com_ic03-1.svg) no-repeat;
  background-size: 100% auto;
}

/* input指定の際の調整 */
span.com-bt > span {
  padding: 0;
}

button.com-bt {
  padding: 0;
  background: #FFF;
  font-family: "NotoSansJP-Medium", sans-serif;
  line-height: 1;
  color: #114FA1;
  cursor: pointer;
}
@media (max-width: 767px) {
  button.com-bt {
    font-size: 14px;
  }
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.com-wrap .img {
  width: 48%;
}
.com-wrap .txt {
  width: 48%;
}
.com-wrap.txt-left {
  flex-direction: row-reverse;
}

.com-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 2.666%; /*32/1200*/
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .com-list {
    gap: 16px 2.816%; /*16/568*/
    max-width: 568px;
    margin: 0 auto;
  }
}
.com-list li {
  overflow: hidden;
  width: 23%; /*276/1200*/
  border-radius: 8px;
}
@media (max-width: 767px) {
  .com-list li {
    max-width: 276px;
    width: 48.591%; /*276/568*/
  }
}
.com-list li .ttl {
  padding: 16px;
  background: #114FA1;
  color: #FFF;
  font-size: clamp(14px, 1.564vw, 16px); /*16/1023*/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .com-list li .ttl {
    padding: 12px 8px;
  }
}

.com-list02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-bottom: 0 !important;
}
@media (max-width: 1023px) {
  .com-list02 {
    justify-content: initial;
    max-width: 604px;
    margin: 0 auto;
  }
}
.com-list02 li {
  width: 25%;
}
@media (max-width: 1023px) {
  .com-list02 li {
    width: 50%;
  }
}

.com-list03 {
  margin-bottom: 0;
}
.com-list03 li {
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .com-list03 li {
    padding-left: 16px;
  }
}
.com-list03 li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  border: 3px solid #002E89;
  width: 4px;
  height: 4px;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 li {
  width: 48%;
  margin-bottom: 24px;
}
.list-col2 li:nth-child(even) {
  margin-left: 4%;
}

.list-col3 li {
  width: 32%;
  margin-bottom: 16px;
  margin-right: 2%;
}
.list-col3 li:nth-child(3n) {
  margin-right: 0;
}

.list-col4 li {
  width: 24%;
  margin-bottom: 16px;
  margin-right: 1.333%;
}
.list-col4 li:nth-child(4n) {
  margin-right: 0;
}

/* box
-----------------------------------*/
.note-box {
  background: #E6EEEE;
}
.note-box .inner {
  padding: 24px;
}
@media (max-width: 767px) {
  .note-box .inner {
    padding: 16px;
  }
}
.note-box .note-heading {
  margin-bottom: 8px;
  font-size: 18px;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .note-box .note-heading {
    margin-bottom: 4px;
    font-size: 16px;
  }
}
.note-box p {
  margin-bottom: 0 !important;
  font-size: 16px;
}
@media (max-width: 767px) {
  .note-box p {
    font-size: 14px;
  }
}

/* タブ切り替え
-----------------------------------*/
.tab-wrap {
  position: relative;
}
@media (max-width: 1023px) {
  .tab-wrap {
    margin-bottom: 40px;
  }
}
.tab-wrap .sp-ac-menu {
  margin-bottom: 0;
}
.tab-wrap .sp-ac-menu dt {
  position: relative;
  padding: 16px 100px;
  border: 1px solid #666;
  border-radius: 500px;
  text-align: center;
  color: #114FA1;
  font-size: 16px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .tab-wrap .sp-ac-menu dt {
    display: none;
  }
}
.tab-wrap .sp-ac-menu dt::after {
  content: "";
  position: absolute;
  display: block;
  right: 32px;
  top: 50%;
  margin-top: -8px;
  border-color: #666;
  border-style: solid;
  border-width: 0 2px 2px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(45deg);
  transition: 0.3s all;
}
.tab-wrap .sp-ac-menu dt .choice {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 10px;
  border-radius: 500px;
  background: #114FA1;
  color: #FFF;
  font-size: 14px;
  font-family: "NotoSansJP-Medium", sans-serif;
  text-align: center;
  line-height: 1;
}
@media (min-width: 1024px) {
  .tab-wrap .sp-ac-menu dd {
    position: relative;
    display: block !important;
  }
}
@media (max-width: 1023px) {
  .tab-wrap .sp-ac-menu dd {
    display: none;
  }
}
.tab-wrap .sp-ac-menu.open dt::after {
  margin-top: 0;
  transform: rotate(225deg);
}
.tab-wrap .sp-ac-menu.open dd .tab {
  opacity: 1;
}

.tab {
  display: flex;
  justify-content: center;
  margin-bottom: 40px !important;
  border-bottom: 1px solid #000;
  transition: 0.5s all;
}
@media (max-width: 1023px) {
  .tab {
    opacity: 0;
    position: absolute;
    top: calc(100% + 18px);
    z-index: 2;
    display: block;
    width: 100%;
    margin-bottom: 0 !important;
    padding: 0 25px;
    border-bottom: none;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgba(51, 51, 51, 0.5);
    background: #FFF;
  }
}
.tab li {
  position: relative;
  padding: 16px clamp(16px, 1.25vw, 24px); /*24/1920*/
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  font-size: clamp(14px, 1.041vw, 20px); /*20/1920*/
  font-family: "NotoSansJP-Medium", sans-serif;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: 0.5s all;
}
@media (max-width: 1023px) {
  .tab li {
    padding: 20px 0;
    border-bottom: 1px solid #CCC;
    font-size: 16px;
    text-align: left;
  }
}
.tab li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #000;
  transition: 0.5s all;
}
@media (max-width: 1023px) {
  .tab li::after {
    content: none;
  }
}
.tab li:first-of-type::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #000;
  transition: 0.5s all;
}
@media (max-width: 1023px) {
  .tab li:first-of-type::before {
    content: none;
  }
}
@media (max-width: 1023px) {
  .tab li:last-child {
    border-bottom: none;
  }
}
@media (min-width: 1024px) {
  .tab li:hover, .tab li.active {
    background-color: #114FA1;
    color: #FFF;
  }
  .tab li:hover::before, .tab li:hover::after, .tab li.active::before, .tab li.active::after {
    opacity: 0;
  }
  .tab li:hover a, .tab li.active a {
    color: #FFF;
    text-decoration: none;
  }
  .tab li:has(+ li:hover)::after {
    opacity: 0;
  }
  .tab li:has(+ .active)::after {
    opacity: 0;
  }
}
@media (max-width: 1023px) {
  .tab li a {
    display: block;
  }
}
.tab li.active {
  pointer-events: none;
}
.tab li:hover {
  opacity: 0.7;
}

.tab-cts.disnon {
  display: none;
}

/* アコーディオン
-----------------------------------*/
.ac-menu {
  position: relative;
  margin-top: 24px;
  padding: 16px 64px 16px 24px;
  border: 1px solid #CECECE;
  line-height: 1;
  font-family: "NotoSansJP-Bold", sans-serif;
  cursor: pointer;
}
.ac-menu::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #CECECE transparent;
}
.ac-menu.open::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px calc(24px / 2) 0 calc(24px / 2);
  border-color: #CECECE transparent transparent transparent;
}

.ac-cts {
  display: none;
  padding: 16px 24px;
  background-color: #CECECE;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.tbl-scroll {
  overflow-x: auto;
  display: block;
  padding: 0 0 1.5em 0;
}

.type01 {
  width: 100%;
  min-width: 864px;
  margin-bottom: 0 !important;
  border-top: solid 1px #999 !important;
  border-right: solid 1px #999 !important;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 767px) {
  .type01 {
    display: table !important;
    min-width: 600px;
  }
  .type01 tbody {
    display: table-row-group !important;
  }
  .type01 tr {
    display: table-row !important;
  }
}
.type01 th,
.type01 td {
  border-left: solid 1px #999 !important;
  border-bottom: solid 1px #999 !important;
}
@media (max-width: 767px) {
  .type01 th,
.type01 td {
    display: table-cell !important;
  }
}
.type01 th {
  padding: 16px;
  background: #E6EEEE;
  font-size: 16px;
  font-weight: normal;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .type01 th {
    padding: 8px 4px;
    font-size: 14px;
  }
}
.type01 td {
  padding: 16px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .type01 td {
    padding: 8px 4px;
    font-size: 14px;
  }
}
.type01 thead th:not(:first-child) {
  background: #F4F4F4;
  text-align: center;
}

.type02 {
  width: 100%;
  min-width: 864px;
  margin-bottom: 0 !important;
  border-top: solid 1px #999 !important;
  border-right: solid 1px #999 !important;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 767px) {
  .type02 {
    display: table !important;
    min-width: 600px;
  }
  .type02 tbody {
    display: table-row-group !important;
  }
  .type02 tr {
    display: table-row !important;
  }
}
.type02 th,
.type02 td {
  border-left: solid 1px #999 !important;
  border-bottom: solid 1px #999 !important;
}
@media (max-width: 767px) {
  .type02 th,
.type02 td {
    display: table-cell !important;
  }
}
.type02 th {
  padding: 16px;
  background: transparent !important;
  font-size: 16px;
  font-weight: normal;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .type02 th {
    padding: 8px 4px;
    font-size: 14px;
  }
}
.type02 td {
  padding: 16px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .type02 td {
    padding: 8px 4px;
    font-size: 14px;
  }
}
.type02 thead th {
  background: #F4F4F4 !important;
  text-align: center !important;
}

/* コンテンツカテゴリー一覧
-----------------------------------*/
.bs-contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 1.333%;
  margin-bottom: 0 !important;
}
@media (max-width: 1023px) {
  .bs-contents-list {
    display: block;
  }
}
.bs-contents-list .bs-contents-list__item {
  width: 24%;
  border: 1px solid #666;
  border-radius: 8px;
  border-top-right-radius: 0;
  box-shadow: 0 2px 8px 0 rgba(51, 51, 51, 0.5);
  background: #FFF;
}
@media (max-width: 1023px) {
  .bs-contents-list .bs-contents-list__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .bs-contents-list .bs-contents-list__item:last-child {
    margin-bottom: 0;
  }
}
.bs-contents-list .bs-contents-list__item a {
  position: relative;
  display: block;
  padding: 16px 16px 80px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .bs-contents-list .bs-contents-list__item a {
    padding: 8px 8px 48px;
  }
}
.bs-contents-list .bs-contents-list__item a::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 21px;
  height: 17px;
  background: url(/bc_my_theme/img/common/com_arrow01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .bs-contents-list .bs-contents-list__item a::after {
    right: 12px;
    bottom: 14px;
    width: 15px;
    height: 12px;
  }
}
.bs-contents-list .bs-contents-list__item a:hover {
  opacity: 0.7;
  color: #333;
  text-decoration: none;
}

/* ニュース一覧
-----------------------------------*/
.list-news {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 1.333%; /*16/1200*/
  margin-bottom: 0 !important;
}
@media (max-width: 1023px) {
  .list-news {
    display: block;
  }
}
.list-news li {
  width: 24%; /*288/1200*/
  border: 1px solid #666;
  border-radius: 8px;
  border-top-right-radius: 0;
  box-shadow: 0 2px 8px 0 rgba(51, 51, 51, 0.5);
  background: #FFF;
}
@media (max-width: 1023px) {
  .list-news li {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .list-news li:last-child {
    margin-bottom: 0;
  }
}
.list-news li a {
  position: relative;
  display: block;
  padding: 16px 16px 80px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .list-news li a {
    padding: 8px 8px 48px;
  }
}
.list-news li a .date {
  margin-bottom: 24px;
  font-size: clamp(14px, 1.142vw, 16px); /*16/1400*/
  line-height: 1;
}
@media (max-width: 1023px) {
  .list-news li a .date {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .list-news li a .date {
    margin-bottom: 16px;
    font-size: 12px;
  }
}
.list-news li a .label {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 105px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: clamp(6px, 0.833vw, 12px) clamp(8px, 1.142vw, 16px) clamp(8px, 1.142vw, 16px); /*16/1400*/
  border-bottom-left-radius: 16px;
  background: #348E00;
  color: #FFF;
  text-align: center;
  font-size: clamp(14px, 1.142vw, 16px); /*16/1400*/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
}
@media (max-width: 1023px) {
  .list-news li a .label {
    width: 100%;
    padding: 12px 16px 16px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .list-news li a .label {
    padding: 7px 10px 10px;
    font-size: 12px;
  }
}
.list-news li a .label.event {
  background: #B21229;
}
.list-news li a .label.news {
  background: #348E00;
}
.list-news li a .label.shien {
  background: #1E8ED3;
}
.list-news li a .label.jyoseikai {
  background: #7A3E9D;
}
.list-news li a .label.seinenbu {
  background: #0F6B5F;
}
.list-news li a .label.soudan {
  background: #9A5A2A;
}
.list-news li a .label.katsudou {
  background: #666;
}
.list-news li a .label.shiken {
  background: #666;
}
.list-news li a .label.sonota {
  background: #666;
}
.list-news li a .title {
  font-size: 18px;
  word-wrap: break-word;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .list-news li a .title {
    font-size: 14px;
  }
}
.list-news li a .arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 21px;
  height: 17px;
}
@media (max-width: 767px) {
  .list-news li a .arrow {
    right: 12px;
    bottom: 14px;
    width: 15px;
    height: 12px;
  }
}
.list-news li a .arrow span {
  display: block;
  width: 21px;
  height: 17px;
  background: url(/bc_my_theme/img/common/com_arrow01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .list-news li a .arrow span {
    width: 15px;
    height: 12px;
  }
}
.list-news li a:hover {
  opacity: 0.7;
  color: #333;
  text-decoration: none;
}

.list-news02 {
  margin-bottom: 0;
}
.list-news02 li {
  border-bottom: 1px solid #CECBC1;
}
.list-news02 li a {
  display: flex;
  padding: 32px 0;
  color: #333;
  font-size: 16px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .list-news02 li a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
  }
}
.list-news02 li a .date {
  width: 150px;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .list-news02 li a .date {
    width: 100%;
    margin-bottom: 8px;
  }
}
.list-news02 li a .title {
  flex: 1;
}
.list-news02 li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* 下層 最新情報
-----------------------------------*/
.news-sec {
  margin: 80px 0 -80px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  .news-sec {
    margin: 60px 0 -40px;
  }
}
.news-sec .contents {
  margin-top: 48px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .news-sec .contents {
    margin-top: 24px;
    padding-bottom: 40px;
  }
}
.news-sec .index-heading01 {
  margin-bottom: 40px;
  font-size: 32px;
  font-family: "NotoSansJP-Medium", sans-serif;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 767px) {
  .news-sec .index-heading01 {
    /*margin-bottom: 48px;
    font-size: 28px;*/
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.news-sec .index-heading01 span {
  position: relative;
  display: block;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .news-sec .index-heading01 span {
    padding-top: 30px;
  }
}
.news-sec .index-heading01 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 41px;
  height: 31px;
  background: url(/bc_my_theme/img/index/index_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .news-sec .index-heading01 span::before {
    width: 28px;
    height: 22px;
  }
}

/* ページャー
-----------------------------------*/
.pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .pagenavi {
    padding: 64px 0;
  }
}
.pagenavi .num,
.pagenavi span.current {
  display: inline-block;
  width: 20px;
  margin: 0 8px;
  color: #114FA1;
  font-size: 16px;
  transition: 0.5s all;
}
.pagenavi .num {
  position: relative;
}
.pagenavi .num::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: #114FA1;
  transition: 0.5s all;
}
.pagenavi .num:hover,
.pagenavi span.current {
  text-decoration: none;
  color: #666;
}
.pagenavi .num:hover::after,
.pagenavi span.current::after {
  opacity: 0;
}
.pagenavi .prev-link,
.pagenavi .next-link {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #114FA1;
  background-image: url(/bc_my_theme/img/common/com_arrow03.svg);
  background-repeat: no-repeat;
  background-size: 15px 12px;
  background-position: center center;
  transition: 0.5s all;
}
.pagenavi .prev-link:hover,
.pagenavi .next-link:hover {
  background-color: #333;
}
.pagenavi .prev-link {
  transform: rotate(180deg);
  margin-right: 8px;
}
.pagenavi .next-link {
  margin-left: 8px;
}

/* お知らせ記事ページャー
-----------------------------------*/
.bs-post-navi {
  display: flex;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .bs-post-navi {
    margin-top: 60px;
  }
}
.bs-post-navi a {
  width: 33.3333333333%;
  text-align: center;
}

/* お知らせ記事
-----------------------------------*/
.bs-single-post__meta {
  display: flex;
  align-items: center;
  gap: 0 24px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .bs-single-post__meta {
    gap: 0 16px;
    margin-bottom: 40px;
  }
}
.bs-single-post__meta .bs-single-post__meta-category {
  display: inline-block;
  max-width: 105px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: clamp(6px, 0.833vw, 12px) clamp(8px, 1.142vw, 16px) clamp(8px, 1.142vw, 16px); /*16/1400*/
  border-bottom-right-radius: 16px;
  background: #348E00;
  color: #FFF;
  text-align: center;
  font-size: clamp(14px, 1.142vw, 16px); /*16/1400*/
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
}
.bs-single-post__meta .bs-single-post__meta-category:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media (max-width: 1023px) {
  .bs-single-post__meta .bs-single-post__meta-category {
    width: 100%;
    padding: 12px 16px 16px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .bs-single-post__meta .bs-single-post__meta-category {
    padding: 7px 10px 10px;
    font-size: 12px;
  }
}
.bs-single-post__meta .bs-single-post__meta-category.event {
  background: #B21229;
}
.bs-single-post__meta .bs-single-post__meta-category.news {
  background: #348E00;
}
.bs-single-post__meta .bs-single-post__meta-category.shien {
  background: #1E8ED3;
}
.bs-single-post__meta .bs-single-post__meta-category.jyoseikai {
  background: #7A3E9D;
}
.bs-single-post__meta .bs-single-post__meta-category.seinenbu {
  background: #0F6B5F;
}
.bs-single-post__meta .bs-single-post__meta-category.soudan {
  background: #9A5A2A;
}
.bs-single-post__meta .bs-single-post__meta-category.katsudou {
  background: #666;
}
.bs-single-post__meta .bs-single-post__meta-category.shiken {
  background: #666;
}
.bs-single-post__meta .bs-single-post__meta-category.sonota {
  background: #666;
}

.entry-detail .entry-header .entry-title {
  margin: 40px 0 32px;
  font-size: 28px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin: 28px 0;
    font-size: 24px;
  }
}
.entry-detail .entry-header .entry-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.entry-detail .entry-header .entry-meta .date {
  line-height: 1;
}
.entry-detail .entry-header .entry-meta .label {
  width: 80px;
  padding: 6px 8px;
  margin-left: 16px;
  background-color: #333;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .label {
    font-size: 12px;
  }
}
.entry-detail .entry-content {
  padding: 24px 0;
  margin: 24px 0;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    padding: 16px 0;
    margin: 16px 0;
  }
}
.entry-detail .btn-area {
  margin: 88px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    margin: 40px 0;
  }
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content p {
  margin: 1em 0;
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 16px 0 12px;
    font-size: 24px;
  }
}
.entry-detail .entry-content h2 {
  margin: 24px 0 16px;
  font-size: 26px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 16px 0 12px;
    font-size: 22px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 20px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-size: 18px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h6 {
    margin: 12px 0;
    font-size: 14px;
  }
}
.entry-detail .entry-content ul {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content ul li {
  list-style: disc;
}
.entry-detail .entry-content ol {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 32px;
}
.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}
.entry-detail .entry-content table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "NotoSansJP-Bold", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table th {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table td {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content .alignleft,
.entry-detail .entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .alignright,
.entry-detail .entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .aligncenter,
.entry-detail .entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-detail .entry-content img.alignleft,
.entry-detail .entry-content img.alignright,
.entry-detail .entry-content img.aligncenter {
  margin-bottom: 16px;
}
.entry-detail .entry-content .wp-caption {
  text-align: center;
}

/* フォーム
-----------------------------------*/
.bs-mail-title {
  margin: 0 0 24px;
  color: #114FA1;
  font-size: 24px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .bs-mail-title {
    margin: 0 0 16px;
    font-size: 18px;
  }
}
.bs-mail-title:first-of-type {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .bs-mail-title:first-of-type {
    margin-top: 32px;
  }
}

.bs-mail-title-sub {
  margin: 32px 0 16px;
  font-size: 18px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .bs-mail-title-sub {
    margin: 24px 0 16px;
    font-size: 16px;
  }
}

/*.bs-mail-description {
	margin-bottom: 60px;
	@include mq(max, tb) {
		margin-bottom: 32px;
	}
}*/
.bs-mail-form {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .bs-mail-form {
    margin-top: 32x;
  }
}

.bs-mail-form-body {
  width: 100%;
  margin-bottom: 1em;
  border-top: solid 1px #999;
}
.bs-mail-form-body th {
  width: 30%;
  padding: 16px;
  border-bottom: solid 1px #999;
  background: #E6EEEE;
  font-weight: normal;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .bs-mail-form-body th {
    display: block;
    width: 100%;
    padding: 8px;
  }
}
.bs-mail-form-body th label {
  margin-right: 0.5em;
}
.bs-mail-form-body td {
  padding: 16px;
  border-bottom: solid 1px #999;
}
@media (max-width: 767px) {
  .bs-mail-form-body td {
    display: block;
    width: 100%;
    padding: 8px;
  }
}
.bs-mail-form-body td span {
  display: block;
}
.bs-mail-form-body td input[type=radio],
.bs-mail-form-body td input[type=checkbox] {
  width: 24px;
  transform: scale(1.5);
  margin: 0 6px 0 8px;
  vertical-align: 0;
}
@media (max-width: 767px) {
  .bs-mail-form-body td label {
    line-height: 2.5;
  }
}
.bs-mail-form-body .required {
  display: inline-block;
  color: #F00;
}
.bs-mail-form-body .required::before {
  content: "(";
}
.bs-mail-form-body .required::after {
  content: ")";
}
.bs-mail-form-body .normal {
  display: inline-block;
  color: #1250a1;
}
.bs-mail-form-body .normal::before {
  content: "(";
}
.bs-mail-form-body .normal::after {
  content: ")";
}

.bs-mail-form-submit {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .bs-mail-form-submit {
    margin-top: 40px;
  }
}
.bs-mail-form-submit input[type=reset],
.bs-mail-form-submit input[type=submit] {
  position: relative;
  display: inline-block;
  min-width: 288px;
  margin: 0 24px;
  padding: 20px;
  border: 1px solid #666;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.5);
  font-family: "NotoSansJP-Medium", sans-serif;
  color: #114FA1;
  line-height: 1;
  cursor: pointer;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .bs-mail-form-submit input[type=reset],
.bs-mail-form-submit input[type=submit] {
    min-width: none;
    width: 100%;
    margin-inline: 0;
    padding: 16px;
    font-size: 14px;
  }
}
.bs-mail-form-submit input[type=reset]:hover,
.bs-mail-form-submit input[type=submit]:hover {
  border-color: #114FA1;
  background: #114FA1;
  color: #FFF;
}
@media (max-width: 767px) {
  .bs-mail-form-submit input[type=submit] {
    margin-top: 24px;
  }
}
.bs-mail-form-submit input[type=reset] {
  background: #EEE;
}
.bs-mail-form-submit input[type=reset]:hover {
  background: #666;
  color: #FFF;
}

.cf-turnstile {
  text-align: center;
}

.error-message {
  margin-top: 0.5em;
  color: #F00;
  font-size: 80%;
}

.message-box {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .message-box {
    margin-bottom: 32px;
  }
}
.message-box .alert-message {
  color: #F00;
}
/*# sourceMappingURL=common.css.map */