/*# sourceMappingURL=add.css.map */

@charset "UTF-8";


.section01-form {
    position: relative;
    padding: 40px 10px 40px;
    background-color: rgba(36, 46, 67, 0.7);
    border-radius: 8px;
    z-index: 1;
}

.form-label-box {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #54B0C8;
    color: #fff;
    padding: 6px 25px;
    font-weight: bold;
    border-radius: 10px;
    z-index: 3;
}




.section03-table th {
    color: #ffffff;
    text-align: center;
}

/* ===============================
   Table 横スクロール（768px以下）
================================= */

@media screen and (max-width: 768px) {

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* スマホで滑らかに */
  }

  .section03-table {
    min-width: 900px;  /* ← テーブル幅を固定して横スクロールさせる */
  }

}

.text-shadow_white {
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #fff;
}

/* 共通ボタンベース */
.fv-btn {
  display: inline-block;
  transition: all 0.3s ease;
}

/* ホバー時 */
.fv-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.section03-more {
    text-align: left;   /* ← 追加 */
}

.section03-more:hover {
    background-color: #757575;
    color: #ffffff;
}

.grey{
  color: #686868;
}

.section04 .card {
    box-shadow: none; /* ← 変更 */
}

.section04 .card {
    position: relative; /* 追加 */
}

.section04 .avatar {
    position: absolute;
    left: 50%;
    bottom: -40px; 
    transform: translateX(-50%);
}
.section04 .cards {
    gap: 30px;
}

.section05 {
  background: linear-gradient(
    to bottom,
    #EDECE7 0%,
    #EDECE7 50%,
    #ffffff 50%,
    #ffffff 100%
  );
}

/* まずはPNGをデフォルトにする */
.section06 {
  background-image: url("../../assets/img/section-06-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* webp対応ブラウザの場合 */
@supports (background-image: url("image.webp")) {
  .section06 {
    background-image: url("../../assets/img/section-06-bg.webp");
  }
}

.section07 .banner-text {
  font-size: clamp(26px, 6vw, 64px);
}

.section07 .banner-icon {
  position: absolute;
  top: 0;
  right: 8%;
  transform: translateY(-50%);
}
.section07 .banner-icon img {
  width: clamp(110px, 16vw, 240px);
  height: auto;
}


#section01,
#section08 {
  position: relative;
}

#section01::before,
#section08::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

#section01 > *,
#section08 > * {
  position: relative;
  z-index: 1;
}

#section01 .container,
#section08 .container {
  background-color: transparent;
}

.bg-fv {
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
    height: 389px;
    z-index: 0;
    background-image: url(../../assets/img/t-fv.png);
}

@media screen and (min-width: 768px) {
    .bg-fv {
        background-size: cover;
        background-position: top left;
        background-repeat: no-repeat;
        height: 600px;
        z-index: 0;
        background-image: url(../../assets/img/t-fv.png);
    }
}

@media (max-width: 991.98px) {
  .section01-img {
    max-width: 110px;
  }
  .section08-img {
    max-width: 110px;
  }
}

@media (max-width: 991.98px) {
  .form-bg-img {
    max-width: 120px;
    height: auto;
  }
}
.section06 .feature .text .num {
    font-size: 2.5rem;
}
.num {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.num::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80%;
  height: 3px;
  background: #242E43;
  transform: translateX(-50%);
}

.section07 .banner {
    position: relative;
    background-color: #d6f0fb;
    border-top: 6px solid #223e5d;
    border-bottom: 8px solid #223e5d;
    padding: 40px 20px;
    text-align: center;
}

.section04 .cards {
    gap: 35px;
}

.section06 .feature {
    gap: 20px;
}
    .section05 .banner-text {
      font-size: 2.75rem;
    }
@media screen and (max-width: 991.98px) {
    .section06 .feature {
        flex-direction: column;
    }
    .section06 .feature:nth-child(even) {
        flex-direction: column;
    }
    .section05 .banner-text {
      font-size: 1.75rem;
    }
}

.section03-more.accordion-button::after {
  filter: brightness(0) invert(1);
}


#section02 .section01-title {
  font-size: clamp(26px, 6vw, 64px);
}