@charset "UTF-8";
.bg-fv {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 342ppx;
  z-index: 0;
  background-image: url(../../asset/img/m_fv.png);
}

@supports (background-image: url(../../asset/img/m_fv.webp)) {
  .bg-fv {
    background-image: url(../../asset/img/m_fv.webp);
  }
}
@media screen and (min-width: 768px) {
  .bg-fv {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 400px;
    z-index: 0;
    background-image: url(../../asset/img/m_fv.png);
  }
  @supports (background-image: url(../../asset/img/m_fv.webp)) {
    .bg-fv {
      background-image: url(../../asset/img/m_fv.webp);
    }
  }
}
@media screen and (min-width: 992px) {
  .bg-fv {
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    height: 460px;
    z-index: 0;
    background-image: url(../../asset/img/m_fv.png);
  }
  @supports (background-image: url(../../asset/img/m_fv.webp)) {
    .bg-fv {
      background-image: url(../../asset/img/m_fv.webp);
    }
  }
}
.bg-sub {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 224px;
  z-index: 0;
  background-image: url("../../asset/img/bg-sub.png");
}

@supports (background-image: url(../../asset/img/bg-sub.webp)) {
  .bg-sub {
    background-image: url(../../asset/img/bg-sub.webp);
  }
}
.text-shadow_white {
  text-shadow: 1px 1px 1px #fff;
}

.triangle-bottom-white::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: auto;
}

.background-reccomend_bg {
  background: url("../../asset/img/m_reccomend_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@supports (background-image: url(../../asset/img/m_reccomend_bg.webp)) {
  .background-reccomend_bg {
    background-image: url(../../asset/img/m_reccomend_bg.webp);
  }
}
.background-point_bg {
  background: url("../../asset/img/m_point_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@supports (background-image: url(../../asset/img/m_point_bg.webp)) {
  .background-point_bg {
    background-image: url(../../asset/img/m_point_bg.webp);
  }
}
.background-company_bg {
  background: url("../../asset/img/m_company_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@supports (background-image: url(../../asset/img/m_company_bg.webp)) {
  .background-company_bg {
    background-image: url(../../asset/img/m_company_bg.webp);
  }
}
.background-faq_bg {
  background: url("../../asset/img/m_faq_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@supports (background-image: url(../../asset/img/m_faq_bg.webp)) {
  .background-faq_bg {
    background-image: url(../../asset/img/m_faq_bg.webp);
  }
}
.background-news_bg {
  background: url("../../asset/img/m_news_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@supports (background-image: url(../../asset/img/m_news_bg.webp)) {
  .background-news_bg {
    background-image: url(../../asset/img/m_news_bg.webp);
  }
}
/*位置*/
.top-n25 {
  top: -25px;
}

.top-n10 {
  top: -10px;
}

.top-n50 {
  top: -50px;
}

.start-30 {
  left: 30px;
}

.end-n5 {
  margin-right: -5px;
}

/*高さ*/
.height-240 {
  height: 240px;
}

.height-230 {
  height: 230px;
}

.rounded-top-20 {
  border-radius: 20px 20px 0px 0;
}

.rounded-top-10 {
  border-radius: 10px 10px 0px 0;
}

.triangle-bottom-red::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: #DC000C transparent transparent transparent;
}

.pt150 {
  padding-top: 150px;
}

.pt100 {
  padding-top: 100px;
}

.pt50 {
  padding-top: 50px;
}

.pb70 {
  padding-bottom: 70px;
}

/*位置*/
.transform-translate-n50 {
  transform: translate(-50%, -50%);
}

.top-40 {
  top: 40%;
}

.top-87 {
  top: 87%;
}

.top-65 {
  top: 65%;
}

.z-99 {
  z-index: 99 !important;
}

.z-999 {
  z-index: 999 !important;
}

#headingSubsidy {
  text-align: center;
}

.accordion-button.custom-accordion-btn {
  margin: 0 auto;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
  background-color: #B8AC90;
  color: #fff;
}

.accordion-button.custom-accordion-btn02 {
  margin: 0 auto;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
  background-color: #B8AC90;
}

/* アコーディオンの矢印を白に */
.custom-accordion-btn::after {
  filter: brightness(0) invert(1); /* 白に変換 */
}

/* 開いたときも白のままにする */
.custom-accordion-btn:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.border-bottom-black-dotted {
  border-bottom: dotted 3px #222222;
}

.border-top-black-dotted {
  border-top: dotted 3px #222222;
}

.border-bottom-red-dotted {
  border-bottom: dotted 3px #DC000C;
}

.marker_yellow {
  background: linear-gradient(transparent 50%, #FFFF7D 50%);
}

.border-bottom-white {
  border-bottom: solid 1px #ffffff;
}

/*ボックス*/
.box-parent {
  box-sizing: border-box;
}

.box-child {
  flex-direction: column;
}

.box-child-text {
  flex-grow: 1;
} /*※この親のdisplay:flex;を指定する*/
.bg_rgba-gray-06 {
  background-color: rgba(155, 154, 154, 0.6) !important;
}

.height-475 {
  height: 475px;
}

@media screen and (max-width: 768px) {
  .w-sm80 {
    width: 80% !important;
    margin: 0 auto !important;
  }
  .w-sm100 {
    width: 100% !important;
    margin: 0 auto !important;
  }
  .w-sm75 {
    width: 75% !important;
    margin: 0 auto !important;
  }
}
.height-70 {
  height: 70px;
}

.height-45 {
  height: 45px;
}

.height-150 {
  height: 150px;
}

.top-60 {
  top: 60%;
}

.top-90 {
  top: 90%;
}

.bottom-0 {
  bottom: 0%;
}

.banner-close {
  top: -14px;
  left: 333px;
  padding: 4px 10px 6px 10px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 7px #ccc;
}

@media screen and (min-width: 768px) {
  .banner-close {
    left: 363px;
  }
}
.nav-item.text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

table .thead-darkblue th {
  background-color: #23235b !important;
  color: #fff !important;
}

.tr-bg .bg_lightblue {
  background-color: #eaf4ff !important;
}

.tr-bg .bg_lightgray {
  background-color: #F5F5F5 !important;
}

.td {
  white-space: nowrap;
  min-width: 160px;
}

.table .tbody td {
  height: 80px;
  vertical-align: middle;
}

.table-bordered {
  border: 4px solid #fff !important;
}

.table-bordered th,
.table-bordered td {
  border: 4px solid #fff !important;
}

.transparent-bg {
  background-color: transparent !important;
}

.transparent-bg td,
.transparent-bg th {
  background-color: transparent !important;
}

.transparent-bg th,
.transparent-bg td {
  vertical-align: middle;
  border-bottom: none;
}

.transparent-bg th {
  border-bottom: 1px dotted #000;
}

.transparent-bg td {
  border-bottom: 1px dotted #000;
}

@media screen and (max-width: 767px) {
  .w-sm-75 {
    width: 75% !important;
    margin: 0 auto !important;
  }
}
.title-point {
  /* 手順①：表示したい画像を背景として指定 */
  background-image: url("../../asset/img/m_point_title.png");
  /* 手順②：画像の表示領域を確保 */
  max-width: 700px;
  height: 100px;
  margin: 0 auto;
  /* 手順③：テキストを画面の外へ隠すための設定 */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* WebP形式に対応させる場合（ブラウザが対応していればこちらが優先される） */
.webp .title-point {
  background-image: url("../../asset/img/m_point_title.webp");
}

.title-reccomend {
  background-image: url("../../asset/img/m_reccomend_title.png");
  max-width: 800px;
  height: 150px;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.webp .title-reccomend {
  background-image: url("../../asset/img/m_reccomend_title.webp");
}

.title-company {
  background-image: url("../../asset/img/m_company_title.png");
  max-width: 900px;
  height: 180px;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.webp .title-company {
  background-image: url("../../asset/img/m_company_title.webp");
}

.title-faq {
  background-image: url("../../asset/img/m_faq_title.png");
  max-width: 400px;
  height: 100px;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.webp .title-faq {
  background-image: url("../../asset/img/m_faq_title.webp");
}

.title-list {
  background-image: url("../../asset/img/m_list_title.png");
  max-width: 600px;
  height: 140px;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.webp .title-list {
  background-image: url("../../asset/img/m_list_title.webp");
}

.title-news {
  background-image: url("../../asset/img/m_news_title.png");
  max-width: 300px;
  height: 100px;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.webp .title-list {
  background-image: url("../../asset/img/m_news_title.webp");
}

.title-site {
  background-image: url("../../asset/img/m_site_title.png");
  max-width: 600px;
  height: 100px;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.webp .title-site {
  background-image: url("../../asset/img/m_site_title.webp");
}/*# sourceMappingURL=style.css.map */