/*# sourceMappingURL=add.css.map */

@charset "UTF-8";

.bg-fv {
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
    height: 430px;
    z-index: 0;
    background-image: url(../../assets/img/t-fv.png);
}
@media screen and (min-width: 992px) {
    .bg-fv {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        height: 700px;
        z-index: 0;
        background-image: url(../../assets/img/t-fv.png);
    }
}
@media screen and (min-width: 992px) {
    .bg-fv {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        height: 700px;
        z-index: 0;
        background-image: url(../../assets/img/t-fv.png);
    }
}

.yellow {
  color: #FAF495 !important;
}

/* ===== グラデーションボタン ===== */
.btn-gradient-orange {
  background: linear-gradient(
    135deg,
    #FDB184 0%,
    #FDB184 25%,   /* ← ここまで薄色 */
    #F57427 60%,
    #F57427 100%
  );
  border: none;
  color: #fff;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

/* hover */
.btn-gradient-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
  color: #fff;
}

/* 押したとき */
.btn-gradient-orange:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(255, 255, 255, 0.6);
}


.top-10{
  top: -10px;
}

.point-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.point-title img {
  width: 60px;   /* サイズ調整 */
  height: auto;
}

#section02 .section02-banner {
    background-image: url(../../assets/img/section-02_bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
#section02 .section02-banner {
  border: none;
}


.remado-badge-img {
  height: 60px;  /* 好きなサイズに調整 */
  width: auto;
}
@media (max-width: 576px) {
  .remado-badge-img {
    height: 40px;
  }
}

.remado-portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: none;   /* ← これで無効 */
}

#section03 {
    background-color: #E6F1F9;
}
#section04 {
    background-color: #E6F1F9;
}
#section06 .section06-bg::before {
    background: none;
}
#section06 .section06-bg {
    display: flex;
    align-items: center;      /* 縦中央 */
    justify-content: center;  /* 横中央 */
    padding: 2rem 1rem;       /* スマホ用に余白調整 */
}

.section06-title-bg {
    background: linear-gradient(to bottom, #4876C0, #00296B);
    display: inline-block;
    padding: 0.3em 0.8em;
    border-radius: 4px;
}
.hight-115{
  height: 115px;
}




/* ===== section10 ===== */
#section10 .section10-bg {
  /* fallback（通常画像） */
  background-image: url("../../assets/img/section-06_bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 12px;
}

/* image-setが使えるブラウザのみ上書き */
@supports (background-image: image-set(url("a.webp") type("image/webp"))) {
  #section10 .section10-bg {
    background-image: image-set(
      url("../../assets/img/section-06_bg.webp") type("image/webp"),
      url("../../assets/img/section-06_bg.png") type("image/png")
    );
  }
}


#section10 .section10-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

#section10 .section10-bg .container {
  position: relative;
  z-index: 2;
}

#section10 .section10-cta-box {
  display: block;
  background-color: #ff9966;
  border-radius: 16px;
  padding: 40px 20px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#section10 .section10-cta-box:hover {
  background-color: #ff8844;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

#section10 .section10-cta-content {
  width: 100%;
}

#section10 .section10-cta-company {
  font-size: 14px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

#section10 .section10-cta-text {
  font-size: 22px;
  font-weight: bold;
  color: white;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 767px) {
  #section10 .section10-bg {
    min-height: 300px;
    padding: 20px !important;
  }
  
  #section10 .section10-cta-box {
    padding: 30px 15px;
    min-height: 150px;
  }
  
  #section10 .section10-cta-text {
    font-size: 18px;
  }
}

#section10 .section10-bg::before {
    background: none;
}


.btn-hover-blue {
    transition: all 0.3s ease;
    background-color: #00296B;
}

.btn-hover-blue:hover {
    background-color: #006b42;
    color: #fff;
}

.btn-gradient-orange {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient-orange:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

#section10 .btn-gradient-orange {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#section10 .btn-gradient-orange:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}
#section10 .section10-bg::before {
  pointer-events: none;
}
@media (max-width: 767px) {
  #section10 .section10-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
  }
}

/* オーバーレイがあればマウス無効化 */
#section06 .section06-bg::before {
  pointer-events: none;
}

/* ボタンを前面に出す */
#section06 .btn-gradient-orange {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#section06 .btn-gradient-orange:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

#section05 .reason-card:hover {
    transform: none;
    box-shadow: none;
}

.border_bottom_dotted_black {
    border-bottom: 1px dotted #000;
}

#side-contents-header {
    justify-content: center;
    text-align: center;
    border-radius: 10px 10px 0 0;
}
#side-contents-category {
    justify-content: center;      /* 横中央 */
    text-align: center;           /* 文字中央 */
    border-radius: 10px 10px 0 0; /* 上だけ角丸 */
}


.line-both {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 767px){
  #section02 .section02-banner {
      background-image: url(../../assets/img/section-02_bg.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
  }
}

.vertical-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 80px;
  background-color: #000;
}

#section01.bg-section-01 {
  background-color: transparent;
}



/* 通常（pngフォールバック） */
.bg-section-01 {
  background-image: url("../../assets/img/section-01_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* webp対応ブラウザだけ上書き */
@supports (background-image: url("image.webp")) {
  .bg-section-01 {
    background-image: url("../../assets/img/section-01_bg.webp");
  }
}

/* 画像を使うときは強く上書き */
#section05.bg-section-01 {
  background: none; /* ← 一旦全部リセット */
  background-image: url("../../assets/img/section-01_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* webp対応 */
@supports (background-image: url("image.webp")) {
  #section05.bg-section-01 {
    background-image: url("../../assets/img/section-01_bg.webp");
  }
}


#section06 .section06-bg {
    border-radius:0px;
}

#section10 .section10-bg {
    border-radius: 0px;
}


.fv-nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
    text-align: center;
}

.fv-nav-inner a {
    line-height: 1.2;
}