* {
    box-sizing: border-box;
    font-weight: 700;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    padding-top: 96px; /* ヘッダーの高さに応じて調整 */
}

.bl_header_inner {
    display: flex;
    justify-content: space-between;
}

.ly_container {
    max-width: 1536px;
    margin: 0 auto;
}

.bl_header_left {
    display: flex;
    align-items: center;
    gap: 217px;

}

.bl_header_logo {
    padding: 22px 20px 17px 20px;
}

.bl_header_menu ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.bl_header_menu a {
    text-decoration: none;
    color: #007FC6;
    font-size: 16px;
}

.bl_header_btn_inner {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    padding: 32px 43px 32px 43px;
    text-decoration: none;
    background-color: #007FC6;
    transition: background-color 0.5s ease; 
}
.bl_header_btn_inner:hover {
    background-color: #005f9e; /* Optional: hover effect */
}

.bl_header_btn_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.bl_top {
    background-image: linear-gradient(to right, #007FC6, #02D1FF);
    position: relative; 
    overflow: visible;
}

.bl_top_inner {
    display: flex;
    gap: 161px;
    padding: 84px 168px 84px 192px;
}

.hp_top_text {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 400;
}

.hp_top_ttl {
    font-size: 56px;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.5;
}

.bl_top_circle_list {
    display: flex;
    gap: 22px;
    margin-top: 38px;
    margin-bottom: 27px;
    margin-left: 5px;
}

.bl_top_circle {
    background-color: #fff;
    border-radius: 50%;
    width: 164px;
    height: 164px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #007FC6;
}

.hp_top_ttl_small {
    font-size: 24px;
    color: #007FC6;
}

.hp_top_text_small_sub {
    font-size: 12px;
    color: #333333;
    position: relative;
    top: -18px;
}
.hp_top_circle_ttl {
    font-size: 24px;
    color: #007FC6;
    padding-bottom: 14px;
}

.hp_top_circle_val {
    font-size: 32px;
    color: #007FC6;
}

.hp_top_circle_val_2 {
    position: relative;
    left: 6px;
}
.hp_top_text_small {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 400;
}

.bl_top_img {
    position: absolute;
    bottom: 0px; /* はみ出す距離は調整可能 */
    left: 50%;
    transform: translateX(-50%);
    width: 360px; /* 必要に応じてサイズ調整 */
    height: auto;
    z-index: 1;
}

.bl_top_form_box {
    background-color: #fff;
    padding: 8px;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.bl_top_form_heading {
    background-color: #007FC6;
    color: #fff;
    font-size: 20px;
    padding: 11.5px 14px 11.5px 14px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 24px;
    position: relative;
}
.bl_top_form_heading::after {
    content: "";
    position: absolute;
    bottom: -10px; /* 吹き出しの位置調整 */
    left: 50%;
    transform: translateX(-50%);
    border-width: 16px 10px 0 10px;
    border-style: solid;
    border-color: #007FC6 transparent transparent transparent;
}

.form_row {
    display: flex;
    gap: 18px;
    margin: 0 8px;
    align-items: center;
}

.form_group {
    margin: 0 8px 0px 8px;
}

.form_group,
.form_group_half {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form_group_half {
    flex: 1;
}

.form_group label,
.form_group_half label {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1;
    color: #333333;
}

.required {
    color: red;
    font-size: 14px;
    line-height: 1;
}

.form_group input,
.form_group_half input {
    padding: 11.5px 0px 11.5px 8px;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    font-size: 16px;
    background-color: #F5F8FA;
    font-weight: 400;
    line-height: 1;

}

.form_group_half input {
  width: 175px;
}


/* プレースホルダーの文字色を変更 */
.form_group input::placeholder,
.form_group_half input::placeholder {
  color: #AAAAAA; /* 任意の色に変更可能 */
}

.form_note {
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    margin: 26px 8px 0 8px;
    line-height: 1.5;
}

.submit_btn {
    background-color: #007FC6;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: none;
    padding: 11px 0;
    border-radius: 25px;
    width: 320px;
    cursor: pointer;
    margin: 30px 32px 20px 32px;
}

.submit_btn:hover {
    background-color: #005f9e;
}

.hp_ttl {
    font-size: 32px;
    color: #333333;
    text-align: center;
}

.ly_jiseki_ttl {
    margin: 73px 0 33px 0;
}


.bl_main_top_img {
    display: flex;
    justify-content: center;
    gap: 84px;
    margin-bottom: 64px;
}

.bl_scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.bl_scroll_inner {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    margin-bottom: 46px;
}

.bl_scroll_inner img {
    margin-right: 80px;
    vertical-align: middle;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.bl_about_us_inner {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
}

.ly_about_us_ttl  {
    margin: 51px 0 52px 0;
}

.bl_about_us_text {
    font-size: 24px;
    color: #333333;
    line-height: 1.8;
}

.bl_about_us_text2 {
    font-size:24px;
    color: #333333;
    margin-top: 10px;
}

.hp_about_us_text_2 {
    color: #007FC6;
    font-size: 32px;
}

.bl_about_us_text3 {
    font-size:24px;
    color: #333333;
    margin-top: 6px;
    margin-bottom: 30px;
}

.bl_about_us_img {
    position: relative;
}
.bl_about_us_img::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #F9F9F9;
    width: 808px;
    height: 276px;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.bl_about_us_feature_inner {
    max-width: 1024px;
    margin: 0 auto;
}

.ly_about_us_feature_ttl  {
    margin: 92px 0 52px 0;
}

.bl_about_us_feature_list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 31px;
}

.bl_about_us_feature_list_item {
    width: 480px;
    height: 325px;
    border: 1px solid #007FC6;
    text-align: center;
}

.bl_about_us_feature_list_item_img {
    margin: 14px 0 14px 0;
}

.bl_about_us_feature_list_item_ttl {
    font-size: 20px;
    color: #F47500;
    margin-bottom: 18px;
}

.bl_about_us_feature_list_item_text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    text-align: left;
    padding: 0 31px;
    font-weight: 400;
}

.bl_download {
    background-image: url(image/background-4876988_1280\ 1.png);
    background-size: cover;
    text-align: center;
}

.bl_download_text {
    font-size: 24px;
    color: #fff;
    padding: 64px 0 28px 0;
}

.bl_download_btn {
    background-color: #fff;
    color: #007FC6;
    font-size: 20px;
    border: none;
    padding: 12px 50px  11px 50px;
    border-radius: 25px;
    width: 320px;
    cursor: pointer;
    margin-bottom: 60px;
    display: inline-block;
    text-decoration: none;
}

.ly_success_story_ttl {
    margin: 97px 0 67px 0;
}

.swiper-container {
    margin-top: 0;
    margin-bottom: 39px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    display: block; 
    max-width: 990px;
    padding: 0 56px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 8px 3px rgba(51, 51, 51, 0.25);
    border-radius: 30px 0 30px 0;
    width: auto;
}


.swiper-wrapper {
    padding-top: 8px;
    padding-bottom: 16px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 34px !important;               /* ← ここ追加！ボタン全体の幅 */
  height: 34px !important;              /* ← ここ追加！ボタン全体の高さ */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;  ;
  display: block;
  width: 100% !important;
  height: 100% !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

.swiper-button-next::after {
    background-image: url('image/arrow-02.png'); /* → の画像 */
  }
  
  .swiper-button-prev::after {
    background-image: url('image/arrow-01.png'); /* ← の画像 */
  }

  .bl_swiper-slide_inner {
    padding: 31px 20px 20px 20px;
    height: 488px; 
  }

  .bl_swiper_slide_ttl {
    font-size: 24px;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.8;
    text-align: left;
  }

  .bl_swiper_slide_ttl_2 {
    color: #007FC6;
  }

  .bl_swiper_slide_text {
    font-size: 14px;
    color: #333333;
    margin-bottom: 37px;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
  }

  .bl_swiper_slide_img {
    position: relative;
    right: 50%;
    transform: translateX(50%);
    top: -0.7%;
  }

  .swiper-button-prev {
    left: 0px !important;              /* 位置はお好みで調整OK */
    top: 273px !important;
  }
  
  .swiper-button-next {
    right: 0px !important;
    top: 273px !important;
  }

  .bl_cost {
    background-color: #F9F9F9;
  }

  .bl_cost_inner {  
    margin: 0 auto;
    width: 1024px;
    padding-bottom: 57px;
  }

  .ly_cost_ttl {
    padding: 88px 0 62px 0;
  }


  .bl_cost_list {
    padding-bottom: 48px;
  }

  .bl_cost_list_inner {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .bl_cost_list_item {
    text-align: center;  
    width: 296px;
    height: 277px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.25);
    border-radius: 5px;
    border-top: 12px solid #007FC6;
  }

  .bl_cost_list_item_ttl {
    padding: 26px 0 0px 0;
    font-size: 24px;
    color: #333333;
  }

  .bl_cost_list_item_text {
    font-size: 32px;
    color: #333333;
    position: relative;
    top: -4px;
  } 

  .bl_cost_list_item_text_2 {
    font-size: 96px;
    color: #007FC6;
  }

  .bl_cost_text {    
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
    padding-left: 56px;
    font-weight: 400;
  } 

.bl_question {
    background-color: #F9F9F9;
}


.bl_question_inner {
    margin: 0 auto;
    width: 1024px;
    padding-bottom: 49px;
}

.ly_question_ttl {
    padding: 88px 0 62px 0;
}


.bl_question_list_item {
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 24px;
    cursor: pointer;
}

.bl_question_ttl  {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   padding: 16px 0 20px 0;
   transition: color 0.5s ease, background-color 0.5s ease, border-radius 0.5s ease; 
}

.bl_question_list_item_ttl {
    font-size: 16px;
    color: #333333;
    position: relative;
    display: inline-block;
    transition: color 0.5s ease, background-color 0.5s ease, border-radius 0.5s ease; 
}

.ly_question_list_item_ttl {
    padding-top: 8px;
}

.bl_question_list_item_ttl_2 {
    color: #FFFFFF;
    font-size: 32px;
    font-family: 'Goldman', sans-serif;
    font-weight: 400;
    background-color: #007FC6;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin-left: 36px;
    margin-right: 24px;
    position: relative;
    top: 3px;
    transition: background-color 0.5s ease, color 0.5s ease; 
}

.bl_question_list_item_answer {
    display: none;
}

.bl_question_list_item_answer p {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;        
    padding: 24px 36px;
    font-weight: 400;
}



  .bl_question_list_item_ttl_2::before,
  .bl_question_list_item_ttl_2::after {
    content: "";
    position: absolute;
    background-color: #333333; /* 色はお好みで */
  }
  
  .bl_question_list_item_ttl_2::before {
    width: 2px;                /* 縦線の太さ */
    height: 32px;              /* 縦線の長さ */
    top: 6px;
    left: 948.5px;
    opacity: 1;                            /* ← 最初は表示 */
    transform: scaleY(1);                  /* ← 縦にそのまま */
    transition: opacity 0.3s ease, transform 0.3s ease; 
  }
  
  .bl_question_list_item_ttl_2::after {
    width: 32px;              /* 横線の長さ */
    height: 2px;              /* 横線の太さ */
    top: 21px;
    left: 932px;
  }

  .bl_question_list_item_ttl_2.active::before {
    opacity: 0;                            /* ← フェードアウト */
    transform: scaleY(0);  
  }

  .bl_question_list_item_ttl_2.after-white::after {
    background-color: #FFFFFF;
  }

  .hp_download_form_ttl {
    font-size: 32px;
    color: #FFFFFF;
    padding: 89px 0 72px 0;
    text-align: center;
  }

  .bl_download_form_inner {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding-bottom: 57px;
  }

  .bl_download_form_left {
    width: 413px; 
  }

  .bl_download_form_left_text {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    padding-bottom: 48px;
    padding-top: 32px;
  }

  .bl_download_form_left_img {
    position: relative;
    left: -10px;
  }

  .bl_footer {
    text-align: center;
  } 

  .bl_footer_logo {
    padding:26px 0 32px 0;
  }

  .bl_footer_text {
    font-size: 12px;
    color: #333333;
    font-weight: 400;
    padding-bottom: 18px;
    font-family: 'Goldman', sans-serif;
  }
.bl_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #FFFFFF; /* 任意で背景色を指定 */
}
.submit_btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.thank_you_message {
  text-align: center;
  color: #007FC6;
  font-size: 20px;
  margin: 42px  0 30px 0;
  display:none;
}

/* ハンバーガーメニューボタン */
.bl_hamburger_menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 64px;
    height: 100%;
    background-color: #333333;
    color: #fff;
    position: relative;
    z-index: 1001;
  }
  
  .bl_hamburger_menu span {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #fff;
    margin: 4.5px 0;
    transition: all 0.3s ease;
  }
  
  .bl_hamburger_menu_text {
    font-size: 10px;
    font-weight: 400;
  }

  .bl_hamburger_menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .bl_hamburger_menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .bl_hamburger_menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .sp_only {
    display: none;
  }

  .bl_header_sp_menu {
    display: none;
  }

  .fade-in {
    opacity: 0;
    transform: translateY(30px); /* 少し下から */
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.show {
    opacity: 1;
    transform: translateY(0);
  }


@media screen and (min-width: 705px) and (max-width: 1535px) {
  .bl_about_us_feature_list_item {
      width: 341px;
      min-height: 414px;
      padding: 0 30px 22px 30px;
  }
}

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

  .bl_success_story {
    /*display: none;*/
  }
    body {
        padding-top: 64px; /* ヘッダーの高さに応じて調整 */
    }
    
    .bl_header_logo_img {
        width: 139px;
        height: 32px;
    }

    .bl_header_logo {
        padding: 16px;
        height: 64px;
    }

    .bl_header_menu {
        display: none;
    }

    .bl_header_btn_inner {
        flex-direction: column; 
        gap:4px;
        color: #fff;
        padding: 13px 12px;
        text-decoration: none;
        background-color: #007FC6;
    }

    .bl_header_btn_inner img {
        width: 24px;
        height: 24px;
    }

    .bl_header_btn_link {
        font-size: 10px;
        font-weight: 400;
        line-height: 1;
    }

    .bl_header_right {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bl_hamburger_menu {
        display: flex;
      }
      .bl_header_menu {
        display: none;
      }

      .bl_header_sp_menu {
        position: fixed;
        text-align: left;
        width: 100%;
        background-color: #007FC6;
        z-index: 1000;
        height: 100%;
        display: none;
      }
      .bl_header_sp_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .bl_header_sp_menu li {
        border-bottom: 1px solid #ffffff; /* 白い下線を追加 */
        padding: 24px 16px;              /* 下線との間隔を確保 */
      }
      .bl_header_sp_menu a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
      }

      .bl_header_sp_mail {
        width: 24px;
        height: 24px;

      }

      .bl_header_sp_mail_inner {
        display: flex;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        line-height: 1;
        gap: 12px;
      }

      .hp_top_text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 16px;
      }

      .hp_top_text_sub {
        line-height: 1.5;
        margin-bottom: 18px;
      }

      .bl_top_inner {
        display: block;
        padding: 40px 16px 26px 16px;
    }

    .bl_top_left {
        text-align: center;
    }

    .hp_top_ttl {
        font-size: 24px;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .bl_top_circle_list {
        gap: 4px;
        margin-top: 0px;
        margin-bottom: 24px;
        margin-left: 0px;
        justify-content: center;
        align-items: center;
    }

    .bl_top_circle {
        width: 112px;
        height: 112px;
    }

    .hp_top_circle_ttl {
        font-size: 16px;
        padding-bottom: 18px;
        padding-top: 4px;
    }

    .hp_top_ttl_small {
        font-size: 18px;
    }

    .hp_top_circle_val {
        font-size: 18px;
        position: relative;
        top: -8px;
    }

    .hp_top_text_small_sub {
        font-size: 12px;
        top: -5px;
    }

    .hp_top_text_small_box {
        width: 340px;
        margin: 0 auto;
        margin-bottom: 226px;
    } 

    .hp_top_text_small {
        text-align: left;
        width: 340px;
    }

    .bl_top_img {
        bottom: 640px; /* はみ出す距離は調整可能 */
    }



    .bl_top_form_heading {
        font-size: 16px;
        padding: 18px 0px;
        line-height: 1;
        margin-bottom: 25px;
    }

    .bl_top_form_box {
        padding: 8px;
        width: 343px;
        margin: 0 auto;
    }

    .form_row {
        gap: 9px;
        margin: 0;
    }

    .form_group_half input {
        width: 159px;
    }

    .form_group,
    .form_group_half {
        margin: 0 0 15px 0;
    }

    .form_note {
        font-size: 12px;
        margin: 24px 0px 0 0px;
    }

    .submit_btn {
        font-size: 16px;
        padding: 11px 0;
        width: 246px;
        margin: 40px 40px 10px 40px;
    }

    .hp_ttl {
        font-size: 24px;
    }

    .ly_jiseki_ttl {
        font-size: 20px;
        margin: 40px 0 30px 0;
        line-height: 1;
    }

    .bl_main_top_img {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 39px;
    }

    .bl_main_top_img img {
        width: 280px;
    }

    .bl_scroll_inner img {
        width: 160px;
    }

    .bl_scroll_inner {
        margin: 0 auto;
    }

    .ly_about_us_ttl  {
        margin: 72px 0 68px 0;
        line-height: 1;
    }

    .bl_about_us_text {
        font-size: 20px;
        line-height: 1.8;
       
    }
    
    .bl_about_us_text2 {
        font-size:20px;
        color: #333333;
        margin-top: 4px;
        margin-bottom: 6px;
    }
    
    .hp_about_us_text_2 {
        color: #007FC6;
        font-size: 24px;
    }
    
    .bl_about_us_text3 {
        font-size:20px;
        color: #333333;
        margin-top: 0px;
        margin-bottom: 58px;
    }

    .ly_about_us_img { 
        margin: 0 auto;
    }

    .bl_about_us_img::after {
        width: 341px;
        height: 648px;
        top: 50%;
        border-radius: 5px;
    }

    .bl_about_us_feature_list_item_img {
        margin: 13px 0 14px 0;
    }
    

    .ly_about_us_feature_ttl  {
        margin: 72px 0 52px 0;
    }

    .bl_about_us_feature_list_item {
        width: 341px;
        height: 100%;
        padding: 0 30px 22px 30px;
    }

    .bl_about_us_feature_list_item_ttl {
        margin-bottom: 19px;
        line-height: 1.5;
    }

    .bl_about_us_feature_list_item_text {
        padding: 0px 0px 0px 0px;
        font-weight: 400;
    }

    .bl_download {
        background-image: url(image/background-4876988_1280\ 2.png);
        background-size: cover;
        text-align: center;
    }
    .bl_download_text {
        line-height: 1.8;
        padding: 40px 0 38px 0;
    }

    .bl_download_btn {
        padding: 16px 50px 16px 50px;
        margin-bottom: 40px;
        line-height: 1;
    }

    .ly_success_story_ttl {
        margin: 72px 0 50px 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 20px !important;               /* ← ここ追加！ボタン全体の幅 */
        height: 20px !important;              /* ← ここ追加！ボタン全体の高さ */
    }

    .bl_swiper_slide_ttl {
        font-size: 18px;
    }

    .bl_swiper_slide_text {
        font-size: 12px;
        margin-bottom: 48px;
        line-height: 1.8;
        font-weight: 400;
      }

      .bl_ssuccess_story_inner {
        margin: 0 auto;
        width: 100%;
      }

      .swiper-container {
        padding:0 64px 0 0 ;
        margin-bottom: 28px;
      }

    
      .swiper-slide {
        margin: 0px 0px 0px 0;
        width: calc(100% - 64px); /* ← 32px * 2（左右padding）を引いた幅に */
        }

      .swiper-wrapper {
        margin: 0 32px !important; /* 左右マイナスマージン */
      }

     .bl_swiper-slide_inner {
        padding: 31px 10px 20px 10px;
        height: 471px; 
      }

      .bl_swiper_slide_img {
        right: 50%;
        transform: translateX(50%);
        top: 1%;
      }

      .swiper-button-prev {
        left: 6px !important;              /* 位置はお好みで調整OK */
        top: 264px !important;
      }
      
      .swiper-button-next {
        right: 6px !important;
        top: 264px !important;
      }

      .bl_cost_inner {  
        margin: 0 auto;
        width: 100%;
        padding-bottom: 0px;
      }


      .ly_cost_ttl {
        padding: 73px 0 32px 0;
        line-height: 1;
      }

      .bl_cost_list_item {
        width: 96px;
        height: 91px;
        border-top: 6px solid #007FC6;
      }

      .bl_cost_list_item_ttl {
        padding: 8px 0 15px 0;
        font-size: 12px;
        color: #333333;
        line-height: 1;
      }

      .bl_cost_list_item_text_2 {
        font-size: 36px;
        line-height: 1;
      }

      .bl_cost_list_item_text {
        font-size: 12px;
        line-height: 1;
      } 

      .bl_cost_text {    
        font-size: 12px;
        color: #333333;
        line-height: 1.8;
        padding: 0px 32px 0px 32px;
        font-weight: 400;
      } 

      .bl_question_inner {
        margin: 0 auto;
        width: 100%;
        padding-bottom: 54px;
    }

    .ly_question_ttl {
        padding: 92px 0 48px 0;
        line-height: 1;
    }

    .bl_question_list_item {
        margin-bottom: 16px;
        width: 343px;
        margin-left: auto;
        margin-right: auto;
    }

    .bl_question_list_item_ttl {
        font-size: 14px;
        padding: 0;
        line-height: 1.5;
        width: 252px;
    }

    .bl_question_list_item_ttl_2 {
        font-size: 16px;
        width: 32px;
        height: 32px;
        margin-left: 10px;
        margin-right: 10px;
        position: relative;
        top: 3px;
        transition: background-color 0.5s ease, color 0.5s ease; 
    }

    .bl_question_list_item_answer p {
        font-size: 14px;   
        padding: 10px;
    }

    .bl_question_ttl  {
        gap: 14px;
        padding: 0px;
     }

     .bl_question_list_item_ttl_2 {
        font-size: 16px;
        width: 32px ;
        height: 32px;
        margin: 16px 0px 16px 10px;
        position: relative;
        top: 0px;
        transition: background-color 0.5s ease, color 0.5s ease;
    }

      .bl_question_list_item_ttl_2::before {
        width: 2px;                /* 縦線の太さ */
        height: 16px;              /* 縦線の長さ */
        top: 8px;
        left: 314px;
        opacity: 1;                            /* ← 最初は表示 */
        transform: scaleY(1);                  /* ← 縦にそのまま */
        transition: opacity 0.3s ease, transform 0.3s ease; 
      }
      
      .bl_question_list_item_ttl_2::after {
        width: 16px;              /* 横線の長さ */
        height: 2px;              /* 横線の太さ */
        top: 15px;
        left: 307px;
      }
    
      .bl_question_list_item_ttl.active::before {
        opacity: 0;                            /* ← フェードアウト */
        transform: scaleY(0);  
      }

      .hp_download_form_ttl {
        font-size: 24px;
        color: #FFFFFF;
        padding: 72px 0 26px 0;
        text-align: center;
      }

      .bl_download_form_inner {
        flex-direction: column;
        gap: 36px;
        padding-bottom: 45px;
      }

      .bl_download_form_left_text {
        font-size: 12px;
        text-align: center;
        padding-bottom: 18px;
        padding-top: 0px;
      }

      .bl_download_form_left {
        width: 343px; 
        margin: 0 auto;
      }

      .bl_download_form_left_img {
        left: 52px;
        width: 240px;
        height: 149px;
        margin: 0 auto;
      }

      .bl_footer_logo {
        padding:24px 0 33px 0;
      }

      .bl_footer_text {
        line-height: 1;
        padding-bottom: 24px;
      }
}



