@charset "UTF-8";
.bg-fv {
  background-size: cover;
  background-position: bottom left;
  background-repeat: no-repeat;
  height: 350px;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 60%, rgb(93, 109, 125) 60%, rgb(93, 109, 125) 100%);
  position: relative;
}
.bg-fv::after {
  content: "";
  width: 100%;
  height: 1096px;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/bg-fv.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 100% 88%;
}

@supports (background-image: url(../img/bg-fv.webp)) {
  .bg-fv::after {
    background-image: url(../img/bg-fv.webp);
  }
}
.fv-inner {
  height: 350px;
}

@media screen and (min-width: 768px) {
  .bg-fv::after {
    width: 70%;
  }
  .mb-md-30px {
    margin-bottom: 30px;
  }
}
.bg-sub {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 224px;
  z-index: 0;
  background-image: url("../img/bg-sub.png");
}

@supports (background-image: url(../img/bg-sub.webp)) {
  .bg-sub {
    background-image: url(../img/bg-sub.webp);
  }
}
.border-blue {
  border: solid 3px #144A7A;
}

.border-dark-blue {
  border: solid 1px #013C5A !important;
}

.border-line {
  border-bottom: dotted 2px #144A7A;
  margin-left: 1rem;
}

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

.border-dotted-white.border-bottom {
  border-bottom: #fff 1px dotted !important;
}

.w100per-70per {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .w100per-70per {
    width: 70%;
  }
}
.bg-gradient-gray, .bg-style-yellow, .bg-style-gray, .bg-gradient-blue {
  background: url("../img/bg-gradient-gray.svg");
  background-size: contain;
  background-position: 0% 0%;
  background-repeat: repeat;
}

.bg-style-yellow {
  background: url("../img/bg-point.svg");
}

.bg-style-gray {
  background: url("../img/bg-price.svg");
}

.bg-gradient-blue {
  background-image: url("../img/bg-title.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@supports (background-image: url(../img/bg-title.webp)) {
  .bg-gradient-blue {
    background-image: url(../img/bg-title.webp);
  }
}
.bg-gradient-red {
  background: #E32D2D;
  background: linear-gradient(120deg, rgb(227, 45, 45) 0%, rgb(168, 10, 10) 80%);
}

.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-blue-80 {
  background-color: rgba(6, 45, 104, 0.8);
}

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

.height-290 {
  height: 290px;
}

.height-340 {
  height: 340px;
}

.height-720 {
  height: 720px;
}

.height-230 {
  height: 230px;
}

.height-70 {
  height: 70px;
}

.height-45 {
  height: 45px;
}

.height-30px {
  height: 30px;
}

.height-80px {
  height: 80px;
}

.height-100 {
  height: 100px;
}

.height-120 {
  height: 120px;
}

/*シャドウ*/
.shadow-white01, .shadow-white02, .shadow-white03 {
  padding: 0px 10px;
  background-size: 125% auto;
  background-position: 50% 60%;
  background-repeat: no-repeat;
}

.shadow-white01 {
  background-image: url("../img/shadow-white01.png");
}

.shadow-white02 {
  background-image: url("../img/shadow-white02.png");
}

.shadow-white03 {
  background-image: url("../img/shadow-white03.png");
}

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

.top-n25 {
  top: -25px;
}

/* ＋／− アイコン固定位置で装飾 */
.faq-accordion-btn::after {
  content: "+";
  font-size: 1.8rem;
  font-weight: bold;
  color: #9E9E9E;
  margin-left: auto;
  background-image: none !important; /* Bootstrapの矢印削除 */
  transform: none !important;
  transition: color 0.3s ease;
  position: relative;
  top: -7px; /* 上下のズレ防止 */
}

/* 開いた時（−に変化） */
.faq-accordion-btn:not(.collapsed)::after {
  content: "−";
  color: #9E9E9E;
}

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

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

.box-child-text {
  flex-grow: 1;
} /*※この親のdisplay:flex;を指定する*/
.box-scroll {
  display: flex;
  overflow-x: scroll;
}

.box-scroll-child {
  width: 90%;
  flex-shrink: 0;
  margin: 0 5px;
}

/* TOPボタン フローティングバナー */
#headingSubsidy {
  text-align: center;
}

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

.top-btn {
  z-index: 9999;
  position: fixed;
  text-align: center;
  transition: 0.3s ease;
  right: 0.15rem;
  bottom: 13.5rem;
}

main:has(.hidden-banner) .top-btn {
  bottom: 0.2rem;
}

@media screen and (min-width: 768px) {
  .top-btn {
    bottom: 9.5rem;
  }
}
.nav-item.text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.overflow-x-auto {
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール対応 */
  scrollbar-width: none; /* Firefoxでスクロールバー非表示 */
}

.overflow-x-auto::-webkit-scrollbar {
  display: none; /* Chrome/Safariでスクロールバー非表示 */
}

/* 吹き出し用クラス */
.fukidashi-right-light,
.fukidashi-right-gray, .fukidashi-left-light,
.fukidashi-left-gray {
  position: relative;
  border-radius: 12px;
}
.fukidashi-right-light::before,
.fukidashi-right-gray::before, .fukidashi-left-light::before,
.fukidashi-left-gray::before {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 50px;
  width: 0;
  height: 0;
  border-style: solid;
}

.fukidashi-blue:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: 10px solid #062D68;
  width: 0;
  height: 0;
}

.fukidashi-left-light::before,
.fukidashi-left-gray::before {
  border-width: 0 25px 20px 0;
  border-color: transparent var(--fukidashi-color) transparent transparent;
}

.fukidashi-left-light {
  --fukidashi-color: #EEEEEE;
  background-color: var(--fukidashi-color);
}

.fukidashi-left-gray {
  --fukidashi-color: #DDDDDD;
  background-color: var(--fukidashi-color);
}

.fukidashi-right-light::before,
.fukidashi-right-gray::before {
  border-width: 20px 25px 0 0;
  border-color: var(--fukidashi-color) transparent transparent transparent;
}

.fukidashi-right-light {
  --fukidashi-color: #EEEEEE;
  background-color: var(--fukidashi-color);
}

.fukidashi-right-gray {
  --fukidashi-color: #DDDDDD;
  background-color: var(--fukidashi-color);
}

.review-iconr {
  position: relative;
  left: -16px;
}

#list .btn-hover-blue::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin: auto 0;
  box-sizing: border-box;
}/*# sourceMappingURL=style.css.map */