@charset "UTF-8";
.bg-fv {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #81c769;
  height: 400px;
  z-index: 0;
  background-image: url(../../assets/img/fv_sp.png);
}

@supports (background-image: url(../../assets/img/fv_sp.webp)) {
  .bg-fv {
    background-image: url(../../assets/img/fv_sp.webp);
  }
}
@media screen and (min-width: 768px) {
  .bg-fv {
    height: 480px;
  }
}
.bg-sub {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  height: 150px;
  z-index: 0;
  background-image: url(../../assets/img/bg-sub.png);
}

@supports (background-image: url(../../assets/img/bg-sub.webp)) {
  .bg-sub {
    background-image: url(../../assets/img/bg-sub.webp);
  }
}
/*位置*/
.top-n20 {
  top: -20px;
}

.top-n30 {
  top: -30px;
}

.top-20 {
  top: 20%;
}

.end-n7 {
  right: -7px;
}

@media screen and (min-width: 768px) {
  .bottom-md-10 {
    bottom: 10% !important;
  }
  .bottom-md-170 {
    bottom: 170px !important;
  }
  .top-md-10 {
    top: 10px !important;
  }
  .top-md-20 {
    top: 20px !important;
  }
}
/*高さ*/
.h-90 {
  height: 90px;
}

.height-120 {
  height: 120px;
}

.h-150 {
  height: 150px;
}

.h-220 {
  height: 220px;
}

@media screen and (min-width: 768px) {
  .h-md-80 {
    height: 80px;
  }
  .h-md-100 {
    height: 100px;
  }
  .h-md-310 {
    height: 310px;
  }
}
/*幅*/
.w35-25 {
  width: 35%;
}

.w22per {
  width: 22%;
}

@media screen and (min-width: 768px) {
  .w35-25 {
    width: 25%;
  }
}
/*ボーダー*/
.border-color-red {
  border-color: #E02727 !important;
}

.border-color-blue {
  border-color: #023D97 !important;
}

.border-dashed-green {
  border-bottom: 2px dashed #82C76B !important;
}

.border-dashed-gray {
  border-bottom: 1px dashed #222 !important;
}

.border-dashed-orange {
  border: 1px dashed #F39700 !important;
}

.border-dashed-brown {
  border: 1px dashed #C6A471 !important;
}

.box-dashed-green {
  border: 1px dashed #82C76B !important;
}

/*シャドウ*/
.text-shadow {
  text-shadow: #000 2px 2px 10px;
}

.text-white-shadow {
  text-shadow: #fff 0px 0px 5px;
}

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

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

.box-child-text {
  flex-grow: 1;
} /*※この親のdisplay:flex;を指定する*/
/*テキスト*/
.text-number {
  font-size: 170%;
}

.ls-n1 {
  letter-spacing: -1px !important;
}

@media screen and (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
}
/*画像*/
/* 背景 */
/*装飾*/
/*フローティングバナー*/
.h-0 {
  height: 0;
}

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

.banner-close {
  top: 0px;
  right: 0px;
  padding: 2px 6px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 7px #ccc;
}

.overflow-hidden {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {
  .end-md-20 {
    right: 20px !important;
  }
}
/* アコーディオン用 */
#faq .accordion_title {
  display: flex;
  position: relative;
}

#faq .accordion_title::before {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background-color: #111;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: rotate(0deg);
  z-index: 10;
}

#faq .accordion-button::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background-color: #111;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: rotate(90deg);
  transition: 0.5s;
}

#faq .accordion_title:hover {
  cursor: pointer;
}

#faq .accordion-button:not(.collapsed)::after {
  display: none;
}

.index-link {
  font-size: 12px;
  position: relative;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .index-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .tit-sm {
    font-size: 18px !important;
  }
}/*# sourceMappingURL=style.css.map */