@charset "UTF-8";
:root {
  --color-bg-main: #02306c;
  --color-bg-dGray: #dedede;
  --color-bg-pGray: #efefef;
  --color-bg-white: #ffffff;
  --color-accent: #cf4b46;
  --color-font-white: #ffffff;
  --color-font-black: #444444;
  --color-font-footer:#a3adbf;
  --color-underline: #16406b;
  --color-border-gray: #707070;
}

.el_btn {
  background-color: var(--color-accent);
  border-radius: 5px;
  border: 1px solid var(--color-accent);
}
.el_btn a {
  color: var(--color-font-white);
  display: inline-block;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.el_btn_inner {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .el_btn_inner {
    height: 30px;
  }
}
.block-width {
  max-width: 1394px;
  margin: 0 auto;
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}

.content-width {
  width: 85.6527%;
  max-width: 1194px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .block-width {
    padding-top: 35px;
  }

  .content-width {
    width: 92.26%;
  }
}
.el_heading-block {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.el_heading-block_text {
  font-family: "Noto Sans JP";
  font-size: 3.2rem;
  font-weight: bold;
}
.el_heading-block::after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 2px solid var(--color-underline);
}

@media (max-width: 480px) {
  .el_heading-block_text {
    font-size: 1.8rem;
  }
  .el_heading-block::after {
    width: 30px;
  }
}
.big_heading {
  font-family: "Oswald";
  position: absolute;
  top: -25px;
  left: 0;
  font-size: 14rem;
  color: rgba(144, 144, 144, 0.05);
}
.big_heading__features {
  top: 5px;
}

@media (max-width: 768px) {
  .big_heading {
    top: -12px;
    font-size: 7rem;
  }
  .big_heading__features {
    top: -4px;
  }
}
.el_scroll-nav {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100%;
  top: -45px;
  left: 1.3988%;
  font-size: 1.3rem;
  color: var(--color-underline);
  cursor: pointer;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.el_scroll-nav_link {
  position: relative;
  z-index: 10;
  color: var(--color-underline);
}
.el_scroll-nav::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: solid 1px #333;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.el_scroll-nav::before {
  content: "";
  position: absolute;
  display: block;
  border-right: solid 1px #333;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0%;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

@media (max-width: 768px) {
  .el_scroll-nav {
    top: -40px;
    left: 4%;
  }
}
.active_sp {
  display: none;
}

@media (max-width: 1024px) {
  .active_sp {
    display: none;
  }
}
@media (max-width: 960px) {
  .active_sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .active_sp {
    display: inline;
  }
}
@media (max-width: 480px) {
  .active_sp {
    display: inline;
  }
}
.active_tb-pc {
  display: inline;
}

@media (max-width: 1024px) {
  .active_tb-pc {
    display: inline;
  }
}
@media (max-width: 960px) {
  .active_tb-pc {
    display: inline;
  }
}
@media (max-width: 750px) {
  .active_tb-pc {
    display: none;
  }
}
@media (max-width: 480px) {
  .active_tb-pc {
    display: none;
  }
}
.f-size36 {
  font-size: 3.6rem !important;
}

.f-size28 {
  font-size: 2.8rem !important;
}

.f-size22 {
  font-size: 2.2rem !important;
}

.f-size20 {
  font-size: 2rem !important;
}

.f-size14 {
  font-size: 1.4rem !important;
}

.hp_ff-oswald {
  font-family: "Oswald" !important;
}

.hp_fw-bold {
  font-weight: 700 !important;
}

.hp_fw-med {
  font-weight: 500 !important;
}

.hp_fw-nor {
  font-weight: 400 !important;
}

.hp_text-red {
  color: var(--color-accent) !important;
}

.hp_underline {
  position: relative;
  font-size: 0;
}
.hp_underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(80%);
          transform: translateY(80%);
  background-color: var(--color-accent);
  opacity: 0.5;
}

html {
  text-align: justify;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

ul,
li {
  list-style: none;
  padding: 0;
}

img {
  width: 100%;
}

.ly_cont {
  padding-bottom: 100px;
  overflow-x: hidden;
  position: relative;
}

.ly_bg {
  position: relative;
  background-size: cover;
}
.ly_bg__features {
  background-image: url(../assets/images/features/bg_features.png);
}
.ly_bg__services, .ly_bg__price, .ly_bg__flow {
  background-color: var(--color-bg-pGray);
}
.ly_bg__voices {
  background-image: url(../assets/images/voices/bg_voices.png);
}

.bl_services {
  padding-top: 100px;
}

.overlay_services {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  z-index: -1;
}

.overlay_services.open {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.ly_header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  z-index: 99999;
  background-color: #fff;
}

.bl_header {
  margin: 0 auto;
  width: 85.6527%;
}
.bl_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
}
.bl_header_logo {
  width: 25%;
  min-width: 220px;
  max-width: 320px;
  margin-right: 10px;
}
.bl_header_logo_inner {
  width: 100%;
}
.bl_header_logo_inner img {
  width: 100%;
}
.bl_header_nav {
  width: 75%;
  height: 100%;
}
.bl_header_nav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.bl_header_nav_inner * + * {
  margin-left: 4.02%;
}
.bl_header_nav_item_link {
  font-size: 1.6rem;
}
.bl_header_nav_item_link:hover {
  opacity: 0.4;
}
.bl_header_nav_item:last-of-type {
  width: 19.43%;
  width: 174px;
}

.bl_header_nav_contact__tb {
  display: none;
}

.bl_hamburger_wrapper {
  display: none;
}
.bl_hamburger_nav_item > a {
  color: var(--color-font-white);
}

.ly_mv {
  margin-top: 100px;
}

.bl_mv {
  height: 28.7vw;
  max-height: 550px;
  position: relative;
}
.bl_mv_textUnit {
  width: 60.9%;
  height: 100%;
  background-color: var(--color-bg-main);
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: skew(-25deg);
          transform: skew(-25deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.bl_mv_desc {
  padding-left: 10%;
  padding-left: 7vw;
  -webkit-transform: skew(25deg);
          transform: skew(25deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.bl_mv_desc_svg {
  width: 80%;
}
.bl_mv_desc_svg__sp {
  display: none;
}
.bl_mv_heading {
  margin-top: 30px;
  background-color: #fff;
  width: 70%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14vw;
}
.bl_mv_heading_svg {
  width: 80%;
  -webkit-transform: skew(25deg);
          transform: skew(25deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.bl_mv_heading_svg__sp {
  display: none;
}
.bl_mv_image_wrapper {
  width: 57.4%;
  height: 400px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 150;
}
.bl_mv_image__sp {
  display: none;
}

.bl_conv {
  position: fixed;
  width: 100vw;
  height: 100px;
  bottom: 0;
  left: 0;
  color: var(--color-font-white);
  background-color: var(--color-bg-main);
  z-index: 999;
}
.bl_conv_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100%;
}
.bl_conv_text > p {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.35;
}
.bl_conv_btn:hover .bl_conv_btn_link {
  opacity: 0.4;
}
.bl_conv .el_btn_inner {
  height: 60px;
  width: 276px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 5.43% 15px 9.7%;
}
.bl_conv .el_btn_inner::after {
  content: "";
  background-image: url(../assets/images/arrow-right-circle.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 26px;
  height: 26px;
}
.bl_conv_btn_link {
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 10px;
}

.bl_features_itemUnit {
  margin-top: 40.5px;
}
.bl_features_itemUnit_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 0;
}
.bl_features_itemUnit_inner li + li {
  margin-left: 1%;
}
.bl_features_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 26.8vw;
  height: 26.8vw;
  max-width: 374px;
  max-height: 374px;
  min-width: 218px;
  min-height: 218px;
}
.bl_features_imgWrapper {
  height: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}
.bl_features_image {
  height: 70%;
  width: auto;
}
.bl_features_textUnit {
  height: 50%;
  width: 100%;
}
.bl_features_heading {
  width: 100%;
  padding: 0 2%;
}
.bl_features_heading_text {
  font-size: 1.48vw;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.bl_features_desc {
  margin: 15px auto 0;
  width: 68.98%;
}
.bl_features_desc_text {
  font-size: 1.15vw;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .bl_features_heading_text {
    font-size: 1.8rem;
  }
  .bl_features_desc_text {
    font-size: 1.4rem;
  }
}
.bl_services_itemUnit {
  margin-top: 40px;
}
.bl_services_itemUnit_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.bl_services_item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 22.9%;
  position: relative;
  margin-right: 2.5%;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--color-bg-main) 0, var(--color-bg-main) 21px, #fff 21px);
}
.bl_services_item:nth-of-type(4n) {
  margin-right: 0;
}
.bl_services_item_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 5px 10px;
  height: 100%;
  min-height: 190px;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bl_services_item_card:hover {
  border: 1px solid var(--color-bg-main);
  opacity: 0.4;
}
.bl_services_item_arrow {
  padding-top: 20px;
  width: 6.5%;
}
.bl_services_item_number .el_heading-block {
  padding-bottom: 18px;
}
.bl_services_item_number .el_heading-block_text {
  font-family: "Oswald";
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 0;
}
.bl_services_item_heading {
  text-align: center;
  margin-top: 20px;
}
.bl_services_item_heading_text {
  font-size: 2rem;
  font-weight: bold;
}
.bl_services_item_s-text {
  font-size: 1.6rem;
}
.bl_services_desc {
  display: none;
  color: var(--color-font-white);
  background-color: var(--color-bg-main);
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 5px 18px 30px;
  z-index: 210;
}
.bl_services_desc_close {
  text-align: center;
  font-size: 1.2rem;
  color: white;
}
.bl_services_desc_text {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.rotate_180 {
  -webkit-transform: translateY(80%) rotate(180deg);
          transform: translateY(80%) rotate(180deg);
}

.bl_merit_cards_outer {
  margin-top: 49.5px;
}

.bl_merit_cardUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_merit_card {
  position: relative;
  width: 31.6%;
  margin-right: 2%;
  background-color: var(--color-bg-pGray);
}
.bl_merit_card:last-of-type {
  margin-right: 0;
}
.bl_merit_badge_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../assets/images/merits/bg_merit.png);
  background-size: cover;
  width: 94px;
  height: 94px;
  text-align: center;
  line-height: 94px;
  font-family: "Oswald";
}
.bl_merit_badge {
  font-size: 1.8rem;
  color: var(--color-font-white);
}
.bl_merit_num {
  font-size: 2.8rem;
  font-weight: 500;
}
.bl_merit_textUnit {
  padding: 20px;
}
.bl_merit_heading {
  text-align: center;
  min-height: 41px;
}
.bl_merit_heading_text {
  font-size: 1.8rem;
  font-weight: bold;
}
.bl_merit_desc {
  margin-top: 20px;
}
.bl_merit_desc_text {
  font-size: 1.8rem;
  line-height: 1.44;
}

.bl_price_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 37px;
}

.bl_price_qa {
  width: 51.2%;
  margin-right: 6.11%;
}
.bl_price_voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 80px;
  border-radius: 8px;
}
.bl_price_voice::after {
  content: "";
  position: absolute;
  background-image: url(../assets/images/price/arrow_d.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 99px;
  height: 21px;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bl_price_qa_q {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 35px;
  padding: 24.5px 30px;
  padding: 24.5px 6.62%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bl_price_qa_q:before {
  content: "";
  position: absolute;
  display: block;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  border-top: 17.5px solid transparent;
  border-right: 30px solid #fff;
  border-bottom: 17.5px solid transparent;
}
.bl_price_qa_q_text {
  font-size: 1.1466vw;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.625;
}
.bl_price_clientImg {
  width: 123px;
}
.bl_price_qa_a_text {
  font-size: 2rem;
  font-size: 1.4333vw;
  font-weight: bold;
  line-height: 1.5;
}
.bl_price_qa_a_text:last-of-type {
  margin-top: 36px;
}

.bl_pRecommend {
  width: 42.71%;
  background-color: var(--color-bg-white);
  border-radius: 8px;
  padding: 30px 3.76% 30px 5.63%;
}
.bl_pRecommend_price {
  padding-left: 32px;
}
.bl_pRecommend_text_getsugaku {
  font-size: 2.2rem;
  font-size: 1.5766vw;
}
.bl_pRecommend_text_5500 {
  font-family: "Oswald";
  font-size: 3.6rem;
  font-size: 2.5799vw;
}
.bl_pRecommend_text_en {
  font-size: 2rem;
  font-size: 1.4333vw;
}
.bl_pRecommend_text_creca {
  font-size: 1.4rem;
  font-size: 1.0033vw;
  line-height: 1.5;
}
.bl_pRecommend_service_heading {
  margin-top: 20px;
  margin-left: 52px;
  font-size: 2rem;
  font-size: 1.4333vw;
  font-weight: bold;
}
.bl_pRecommend_service_list {
  margin-top: 5px;
  font-size: 1.6rem;
  font-size: 1.1466vw;
  padding-left: 23px;
}
.bl_pRecommend_service_item {
  padding-left: 25.73px;
  position: relative;
  line-height: 1.5;
}
.bl_pRecommend_service_item::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "​";
  background-image: url(../assets/images/price/check.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 16.97px;
  height: 12.73px;
  display: inline-block;
}
.bl_pRecommend_service_item:first-of-type::before {
  top: 7px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.bl_pRecommend_menu {
  margin-top: 20px;
}
.bl_pRecommend_menu_item {
  font-size: 1.8rem;
  font-size: 1.29vw;
  position: relative;
  padding-left: 45px;
  line-height: 1.5;
}
.bl_pRecommend_menu_item + li {
  margin-top: 10px;
}
.bl_pRecommend_menu_item::before {
  content: "​";
  background-size: 100%;
  background-repeat: no-repeat;
  height: 33.75px;
  width: 31.5px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bl_pRecommend_menu_item:first-of-type::before {
  background-image: url(../assets/images/price/ribbon_bronze.png);
}
.bl_pRecommend_menu_item:nth-of-type(2)::before {
  background-image: url(../assets/images/price/ribbon_silver.png);
}
.bl_pRecommend_menu_item:last-of-type::before {
  background-image: url(../assets/images/price/ribbon_gold.png);
}
.bl_pRecommend_annotation {
  margin-top: 10px;
  margin-left: 40px;
  font-size: 1.4rem;
  font-size: 1.0033vw;
  line-height: 1.42;
}

.bl_result_itemUnit_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_result_itemUnit {
  margin-top: 32px;
}
.bl_result_item {
  width: 31.6%;
  margin-right: 2%;
  margin-bottom: 30px;
  padding-bottom: 5px;
}
.bl_result_item:nth-of-type(3n) {
  margin-right: 0;
}
.bl_result_item_imageWrapper {
  overflow: hidden;
}
.bl_result_item_image {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bl_result_item:hover {
  border: 1px solid var(--color-bg-pGray);
}
.bl_result_item:hover .bl_result_item_image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.bl_result_item_name {
  margin-top: 23px;
  font-size: 1.8rem;
  text-align: center;
}
.bl_result_item_linkWrapper {
  margin-top: 5px;
  font-size: 1.4rem;
  text-align: center;
}

.bl_voices_articles {
  margin-top: 40px;
}

.bl_voices_article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_voices_article + li {
  margin-top: 30px;
}
.bl_voices_article div + div {
  margin-left: 30px;
}
.bl_voices_article:nth-of-type(2n) div:first-of-type {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.bl_voices_article:nth-of-type(2n) div + div {
  margin-left: 0;
  margin-right: 30px;
}

.bl_voices_imageUnit {
  width: 13.23%;
  min-width: 130px;
}
.bl_voices_image_text {
  font-family: "Noto Sans JP";
  margin-top: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.bl_voices_article_desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid var(--color-border-gray);
  border-radius: 8px;
  padding: 30px;
}
.bl_voices_article_text {
  font-size: 1.8rem;
  line-height: 1.44;
}

.bl_flow_cards_wrapper {
  margin-top: 40px;
}

.bl_flow_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bl_flow_cards_item {
  width: 22%;
  position: relative;
  margin-top: 56px;
  padding: 32px 12px 25px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bl_flow_cards_item:nth-of-type(4n) {
  margin-right: 0;
}
.bl_flow_cards_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-image: url(../assets/images/flow/flow_arrow-right.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 27px;
  height: 20px;
}
.bl_flow_cards_item:first-of-type::before {
  display: none;
}
.bl_flow_cards_item:last-of-type .bl_flow_cards_item_inner__addArrow {
  margin-right: 0;
}

.bl_flow_cards_step .el_heading-block {
  padding-bottom: 15px;
}
.bl_flow_cards_step .el_heading-block::after {
  width: 50px;
}
.bl_flow_cards_step .el_heading-block_text {
  font-family: "Oswald";
  font-size: 2rem;
  font-weight: 500;
}
.bl_flow_cards_step .el_heading-block_text_num {
  font-size: 3.2rem;
  margin-left: 4px;
  font-weight: 500;
}

.bl_flow_cards_image {
  margin: 10px auto 0;
  height: 200px;
  position: relative;
}
.bl_flow_cards_image > img {
  width: 80%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bl_flow_cards_heading {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  height: 40px;
}
.bl_flow_cards_subHeading {
  font-size: 1.4rem;
  font-weight: bold;
}
.bl_flow_cards_heading_text {
  font-size: 1.8rem;
}
.bl_flow_cards_desc {
  margin-top: 12px;
  line-height: 1.42;
}
.bl_flow_cards_desc_text {
  font-size: 1.4rem;
  line-height: 1.42;
}
.bl_flow_cards_desc_text__s {
  font-size: 1.3rem;
}

.bl_flow_cards_item:nth-of-type(5) .bl_flow_cards_image > img, .bl_flow_cards_item:nth-of-type(6) .bl_flow_cards_image > img, .bl_flow_cards_item:nth-of-type(7) .bl_flow_cards_image > img {
  width: 100%;
  height: auto;
}
.bl_flow_cards_item:last-of-type .bl_flow_cards_image > img {
  width: 80%;
}

.bl_qa_articles_wrapper {
  margin: 40px auto 0;
  width: 70.85%;
}

.bl_qa_articles_item {
  border: solid 1px var(--color-border-gray);
  border-radius: 8px;
  padding: 20px 30px;
}
.bl_qa_articles_item + li {
  margin-top: 20px;
}

.bl_qa_articles_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid var(--color-border-gray);
}
.bl_qa_articles_question::before {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  color: car(--color-bg-main);
  content: "Q";
  margin-right: 18px;
}
.bl_qa_articles_question_text {
  padding-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

.bl_qa_articles_answer {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bl_qa_articles_answer::before {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  color: var(--color-accent);
  content: "A";
  margin-right: 18px;
}
.bl_qa_articles_answer_text {
  font-size: 1.6rem;
  line-height: 1.5;
}

.ly_footer {
  position: relative;
  background-color: var(--color-bg-main);
  color: var(--color-font-white);
}
.ly_footer_inner {
  position: relative;
  width: 70%;
  height: 150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 40px;
}

.bl_footer_address_text {
  font-size: 1.3rem;
  line-height: 1.5;
}
.bl_footer_address_wrapper {
  margin-top: 10px;
}

.c-address,
.c-address2 {
  font-size: 1.2rem;
}

.bl_footer_contact {
  margin-right: 4.9%;
  margin-left: 4.9%;
}
.bl_footer_contact_link {
  display: block;
  width: 170px;
  height: 56px;
  border: solid 1px #fff;
  line-height: 56px;
  text-align: center;
}
.bl_footer_contact_link_text {
  font-size: 1.6rem;
}

.bl_footer_nav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bl_footer_nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bl_footer_nav_item + li {
  margin-left: 20px;
}
.bl_footer_nav_item::before {
  content: "▶";
  margin-right: 3px;
}
.bl_footer_nav_item_text {
  font-size: 1.4rem;
}
.bl_footer_nav_item:hover {
  opacity: 0.4;
}

.bl_footer_copyright {
  margin-top: 30px;
}
.bl_footer_copyright_text {
  font-size: 1.2rem;
}

.bl_footer_toTop {
  margin-left: 15px;
}

.toTop {
  cursor: pointer;
}

.image_top_arrow {
  width: 48px;
  height: 43px;
}

@media (max-width: 1024px) {
  .bl_flow_cards_item::before {
    left: -16%;
  }

  .ly_footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 0 20px;
    height: auto;
  }

  .bl_footer_nav_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .bl_footer_address_wrapper {
    margin-top: 0;
  }

  .bl_footer_address {
    text-align: center;
  }
  .bl_footer_address_text {
    font-size: 1.2rem;
  }

  .bl_footer_contact {
    margin-top: 25px;
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .bl_footer_contact_link {
    width: 145px;
    height: 45px;
    line-height: 45px;
  }
  .bl_footer_contact_link_text {
    font-size: 1.2rem;
  }

  .bl_footer_right {
    margin-top: 25px;
    -webkit-transform: translate(0);
            transform: translate(0);
  }

  .bl_footer_nav_item_text {
    font-size: 1.2rem;
  }

  .bl_footer_copyright {
    margin-top: 10px;
  }

  .bl_footer_copyright_text {
    font-size: 1rem;
  }

  .bl_footer_toTop {
    position: absolute;
    top: 30px;
    right: -3%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
@media (max-width: 960px) {
  .ly_header {
    width: 100%;
    padding: 0 4%;
  }

  .bl_header {
    width: 90%;
  }

  .bl_conv_text > p {
    font-size: 1.8rem;
  }
  .bl_conv .el_btn_inner {
    height: 60px;
    width: 235px;
  }

  .bl_features_heading_text {
    font-size: 1.6rem;
  }
  .bl_features_desc_text {
    font-size: 1.4rem;
  }
}
@media (max-width: 960px) and (max-width: 915px) {
  .bl_features_heading_text {
    font-size: 1.4rem;
  }
  .bl_features_desc_text {
    font-size: 1.2rem;
  }
}
@media (max-width: 960px) {
  .bl_flow_cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bl_flow_cards_item {
    width: 100%;
    max-width: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
    height: 125px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .bl_flow_cards_item:nth-of-type(4n) {
    margin-right: 0;
  }
  .bl_flow_cards_item:first-of-type {
    width: 100%;
    margin-top: 0;
  }
  .bl_flow_cards_item + li {
    margin-top: 32px;
  }
  .bl_flow_cards_item::before {
    width: 13px;
    height: 17px;
    margin-right: 0;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -150%) rotate(90deg);
            transform: translate(-50%, -150%) rotate(90deg);
  }
}
@media (max-width: 960px) {
  .bl_flow_cards_step .el_heading-block {
    padding-bottom: 10px;
  }
  .bl_flow_cards_step .el_heading-block::after {
    width: 25px;
  }
  .bl_flow_cards_step .el_heading-block_text {
    font-size: 1.4rem;
  }
  .bl_flow_cards_step .el_heading-block_text_num {
    font-size: 2.4rem;
    margin-left: 2px;
  }
}
@media (max-width: 960px) {
  .bl_flow_cards_item_heading-image {
    width: 117.5px;
  }
  .bl_flow_cards_image {
    height: 60px;
  }
  .bl_flow_cards_image > img {
    width: auto;
    height: 100%;
  }
  .bl_flow_cards_subHeading {
    font-size: 1.2rem;
  }
  .bl_flow_cards_heading {
    -moz-text-align-last: left;
         text-align-last: left;
    margin-top: 0 !important;
    height: auto;
  }
  .bl_flow_cards_heading_text {
    font-size: 1.4rem;
  }
  .bl_flow_cards_desc {
    line-height: 1.5;
    margin-top: 5px;
  }
  .bl_flow_cards_desc_text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .bl_flow_cards_desc_text__s {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 3px;
  }
  .bl_flow_cards_textUnit {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0 !important;
    padding: 0 2%;
  }
}
@media (max-width: 960px) {
  .bl_flow_cards_item:nth-of-type(5) .bl_flow_cards_image > img, .bl_flow_cards_item:nth-of-type(6) .bl_flow_cards_image > img, .bl_flow_cards_item:nth-of-type(7) .bl_flow_cards_image > img {
    width: 72%;
    height: auto;
  }
  .bl_flow_cards_item:last-of-type .bl_flow_cards_image > img {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .bl_conv {
    display: none;
  }

  .ly_bg__feautres {
    background-image: unset;
  }
  .ly_bg__services {
    background-color: var(--color-bg-dGray);
  }

  .ly_cont {
    padding-bottom: 0;
  }

  .ly_header {
    background-color: #fff;
    padding: 0 4%;
    position: fixed;
    z-index: 999;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .bl_header {
    margin: 0 auto;
    width: 100%;
    position: relative;
  }
  .bl_header_inner {
    padding-right: 20px;
    height: 40px;
  }
  .bl_header_logo {
    max-width: 160px;
    min-width: 110px;
  }

  .bl_header_nav {
    display: none;
  }

  .bl_header_nav_contact__tb {
    display: block;
    margin-right: 15px;
  }
  .bl_header_nav_contact__tb .bl_header_nav_item_link {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0 15px;
  }

  .bl_hamburger_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bl_hamburger_btnUnit {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1000;
  }
  .bl_hamburger_btn_outer {
    position: relative;
    z-index: 200;
  }
  .bl_hamburger_btn {
    width: 20px;
    height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .bl_hamburger_btn::before {
    background-color: #000;
    content: "";
    width: 100%;
    display: block;
    height: 1px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  .bl_hamburger_btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
  .bl_hamburger_btn_line {
    width: 20px;
    height: 1px;
    background-color: #000;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 1;
  }

  .bl_hamburger_nav {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
    padding-top: 40px;
    padding-bottom: 35px;
    position: absolute;
    right: -5%;
    top: 0;
    z-index: 100;
    width: 185px;
    background-color: var(--color-bg-main);
    color: var(--color-font-white);
    z-index: 999;
  }
  .bl_hamburger_nav_inner {
    height: 100%;
  }
  .bl_hamburger_nav_item {
    font-size: 1.4rem;
    padding: 10px 30px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    border-top: solid 1px #fff;
  }
  .bl_hamburger_nav_item:last-of-type {
    border-bottom: solid 1px #fff;
  }
  .bl_hamburger_nav_item_link:hover {
    opacity: 0.4;
  }

  .bl_hamburger_btnUnit.open .bl_hamburger_btn::before {
    -webkit-transform: translateY(8.5px) rotate(45deg);
            transform: translateY(8.5px) rotate(45deg);
    background-color: #fff;
  }
  .bl_hamburger_btnUnit.open .bl_hamburger_btn::after {
    -webkit-transform: translateY(-8.5px) rotate(-45deg);
            transform: translateY(-8.5px) rotate(-45deg);
    background-color: #fff;
  }
  .bl_hamburger_btnUnit.open .bl_hamburger_btn_line {
    visibility: hidden;
    opacity: 0;
  }

  .bl_hamburger_nav.open {
    -webkit-transform: translate(0);
            transform: translate(0);
    visibility: visible;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    z-index: -1;
  }

  .overlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 200;
  }

  body.open {
    position: fixed;
    width: 100%;
  }

  .ly_mv {
    margin-top: 40px;
  }

  .bl_mv {
    height: 48vw;
    min-height: 100px;
  }
  .bl_mv_textUnit {
    width: 69.333%;
    -webkit-transform: skew(-29deg);
            transform: skew(-29deg);
  }
  .bl_mv_desc {
    -webkit-transform: skew(29deg);
            transform: skew(29deg);
  }
  .bl_mv_desc_svg {
    display: none;
  }
  .bl_mv_desc_svg__sp {
    display: block;
    width: 71%;
  }
  .bl_mv_heading {
    width: 93%;
    margin-top: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 23vw;
  }
  .bl_mv_heading_svg {
    -webkit-transform: skew(29deg);
            transform: skew(29deg);
    width: 90%;
  }
  .bl_mv_image {
    display: none;
  }
  .bl_mv_image__sp {
    display: block;
    position: absolute;
    bottom: 0;
  }
  .bl_mv_image_wrapper {
    width: 61.86%;
    top: 10px;
    z-index: 20;
  }

  .bl_features_itemUnit {
    margin-top: 20px;
  }
  .bl_features_itemUnit_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bl_features_item {
    width: 84vw;
    height: 84vw;
    max-width: 270px;
    max-height: 270px;
  }
  .bl_features_item + li {
    margin-top: 20px;
  }
  .bl_features_heading_text {
    font-size: 4.27vw;
    font-size: 1.6rem;
  }
  .bl_features_desc_text {
    font-size: 3.72vw;
    font-size: 1.4rem;
  }

  .bl_services_itemUnit_inner {
    margin-bottom: -15px;
  }
  .bl_services_item {
    width: 48.115%;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-bg-main) 0, var(--color-bg-main) 14px, #fff 14px);
  }
  .bl_services_item:nth-of-type(4n) {
    margin-right: 2.5%;
  }
  .bl_services_item:nth-of-type(2n) {
    margin-right: 0;
  }
  .bl_services_item_card {
    padding-top: 20px;
    min-height: 132.5px;
  }
  .bl_services_item_card::after {
    width: 8px;
    height: 14px;
    bottom: 0;
  }
  .bl_services_item_number .el_heading-block {
    padding-bottom: 10px;
  }
  .bl_services_item_number .el_heading-block_text {
    font-size: 2.4rem;
  }
  .bl_services_item_heading {
    margin-top: 9px;
  }
  .bl_services_item_heading_text {
    font-size: 1.6rem;
  }
  .bl_services_item_s-text {
    font-size: 1.2rem;
  }
  .bl_services_desc_text {
    font-size: 1.4rem;
  }

  .bl_merit_cards_outer {
    margin-top: 20px;
  }

  .bl_merit_cardUnit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .bl_merit_card {
    width: 100%;
    margin-right: 0;
  }
  .bl_merit_card + li {
    margin-top: 40px;
  }
  .bl_merit_badge_wrapper {
    width: 75px;
    height: 75px;
    line-height: 70px;
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  .bl_merit_badge {
    font-size: 1.4rem;
  }
  .bl_merit_num {
    font-size: 2.3rem;
  }
  .bl_merit_textUnit {
    padding: 15px 20px;
  }
  .bl_merit_heading_text {
    font-size: 1.6rem;
  }
  .bl_merit_desc {
    margin-top: 7.5px;
  }
  .bl_merit_desc_text {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .bl_price_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }

  .bl_price_qa {
    width: 100%;
  }
  .bl_price_voice {
    margin-bottom: 36.5px;
  }
  .bl_price_voice::after {
    width: 50px;
    height: 10px;
    bottom: -25px;
  }
  .bl_price_qa_q {
    padding: 9px 8%;
    margin-left: 19px;
  }
  .bl_price_qa_q::before {
    -webkit-transform: translate(-40px, -30px);
            transform: translate(-40px, -30px);
    border-top: 10px solid transparent;
    border-right: 17.5px solid #fff;
    border-bottom: 10px solid transparent;
  }
  .bl_price_qa_q_text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .bl_price_qa_a {
    width: 92.75%;
    max-width: 500px;
    margin: 0 auto;
  }
  .bl_price_clientImg {
    width: 75px;
  }
  .bl_price_qa_a_text {
    font-size: 1.4rem;
  }
  .bl_price_qa_a_text:last-of-type {
    margin-top: 28px;
  }

  .bl_pRecommend {
    margin: 60px auto 0;
    width: 100%;
    max-width: 500px;
  }
  .bl_pRecommend_price {
    padding-left: 0;
    text-align: center;
  }
  .bl_pRecommend_text_getsugaku {
    font-size: 4.2933vw;
    font-size: 1.6rem;
  }
  .bl_pRecommend_text_5500 {
    font-size: 6.9763vw;
    font-size: 2.6rem;
  }
  .bl_pRecommend_text_en {
    font-size: 4.2931vw;
    font-size: 1.6rem;
  }
  .bl_pRecommend_text_creca {
    font-size: 3.7564vw;
    font-size: 1.4rem;
  }
  .bl_pRecommend_service_heading {
    margin-left: 0;
    font-weight: bold;
    text-align: center;
    font-size: 4.2931vw;
    font-size: 1.6rem;
  }
  .bl_pRecommend_service_list {
    padding-left: 3%;
    font-size: 4.2931vw;
    font-size: 1.6rem;
  }
  .bl_pRecommend_service_item {
    padding-left: 20px;
  }
  .bl_pRecommend_service_item::before {
    width: 12.5px;
    height: 9.2px;
  }
  .bl_pRecommend_menu {
    width: 80%;
    margin: 0 auto;
  }
  .bl_pRecommend_menu_item {
    font-size: 4.6vw;
    font-size: 1.8rem;
    padding-left: 34px;
  }
  .bl_pRecommend_menu_item::before {
    width: 30px;
    height: 32px;
  }
  .bl_pRecommend_annotation {
    margin-left: 0;
    font-size: 3.4881vw;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .bl_result_item {
    width: 47.69%;
  }
  .bl_result_item:nth-of-type(3n) {
    margin-right: 2%;
  }
  .bl_result_item:nth-of-type(2n) {
    margin-right: 0;
  }
  .bl_result_item_name {
    margin-top: 15px;
    font-size: 1.3rem;
  }

  .bl_voices_article div + div {
    margin-left: 9px;
  }
  .bl_voices_article:nth-of-type(2n) div + div {
    margin-right: 9px;
  }

  .bl_voices_imageUnit {
    min-width: unset;
    width: 75px;
  }
  .bl_voices_image_text {
    font-size: 1.6rem;
  }
  .bl_voices_article_desc {
    padding: 15px;
  }
  .bl_voices_article_text {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .bl_qa_articles_wrapper {
    width: 100%;
  }

  .bl_qa_articles_question::before {
    font-size: 2rem;
    margin-right: 6px;
  }
  .bl_qa_articles_question_text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .bl_qa_articles_answer::before {
    font-size: 1.9rem;
    margin-right: 6px;
  }
  .bl_qa_articles_answer_text {
    font-size: 1.4rem;
    line-height: 1.42;
  }
}
