/* =======================================================
mv
======================================================= */
.bl_mv {
  padding: 180px 0 44px;
  background: url("../images/top/mv_bg.jpg") top center/cover no-repeat;
}
.bl_mv_ttl {
  width: 468px;
  margin-bottom: 178px;
}
.bl_mv_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.bl_mv_item:first-of-type {
  width: 256px;
}
.bl_mv_item:nth-of-type(2) {
  width: 198px;
}
.bl_mv_item:nth-of-type(3) {
  width: 244px;
}
@media screen and (width <= 750px) {
  .bl_mv {
    padding: 216px 0 96px;
    background: url("../images/top/mv_bg_sp.jpg") top center/cover no-repeat;
  }
  .bl_mv_ttl {
    width: 630px;
    margin-bottom: 351px;
  }
  .bl_mv_list {
    gap: 12px 24px;
  }
  .bl_mv_list::after {
    width: 100%;
    content: "";
  }
  .bl_mv_item:first-of-type {
    width: 334px;
  }
  .bl_mv_item:nth-of-type(2) {
    width: 262px;
  }
  .bl_mv_item:nth-of-type(3) {
    width: 320px;
  }
  .bl_mv_item:nth-of-type(n + 2) {
    order: 1;
  }
}
/* =======================================================
about
======================================================= */
.bl_about .el_sec_mainTtl {
  padding: 32px 0;
  color: var(--color-white);
  background: var(--color-primary);
}
.bl_about .ly_cont_inner {
  padding: 56px 0;
}
.bl_about .bl_column_list {
  display: grid;
  gap: 56px;
}
.bl_about .bl_column_item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px 32px;
}
.bl_about .bl_column_item:nth-of-type(odd) {
  grid-template-areas: "imgWrapper ttl" "imgWrapper txt";
  grid-template-columns: 510px auto;
}
.bl_about .bl_column_item:nth-of-type(even) {
  grid-template-areas: "ttl imgWrapper" "txt imgWrapper";
  grid-template-columns: auto 510px;
}
.bl_about .bl_column_imgWrapper {
  grid-area: imgWrapper;
}
.bl_about .bl_column_ttl {
  grid-area: ttl;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.bl_about .bl_column_txt {
  grid-area: txt;
}
@media screen and (width <= 750px) {
  .bl_about .el_sec_mainTtl {
    padding: 40px 0;
  }
  .bl_about .ly_cont_inner {
    padding: 56px 0 80px;
  }
  .bl_about .bl_column_list {
    gap: 80px;
  }
  .bl_about .bl_column_item {
    grid-template-rows: auto;
    gap: 0;
  }
  .bl_about .bl_column_item:nth-of-type(odd) {
    grid-template-areas: "ttl" "imgWrapper" "txt";
    grid-template-columns: auto;
  }
  .bl_about .bl_column_item:nth-of-type(even) {
    grid-template-areas: "ttl" "imgWrapper" "txt";
    grid-template-columns: auto;
  }
  .bl_about .bl_column_imgWrapper {
    margin-bottom: 40px;
  }
  .bl_about .bl_column_ttl {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: calc(56/32);
    text-align: center;
  }
}
/* =======================================================
reason
======================================================= */
.bl_reason {
  position: relative;
  padding: 56px 0;
  margin-bottom: 52px;
  background: url("../images/top/reason_bg.jpg") top center/cover no-repeat;
}
.bl_reason::after {
  position: absolute;
  bottom: -51px;
  left: 50%;
  width: 2000px;
  height: 52px;
  content: "";
  background: url("../images/top/reason_bg_deco.svg") top center/contain no-repeat;
  transform: translateX(-50%);
}
.bl_reason .el_sec_mainTtl {
  margin-bottom: 70px;
  color: var(--color-primary);
}
.bl_reason .bl_card_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 48px;
}
.bl_reason .bl_card_item {
  position: relative;
  padding: 121px 20px 40px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(63, 120, 188, 0.4509803922);
}
.bl_reason .bl_card_item::before {
  position: absolute;
  top: -30px;
  left: 10px;
  width: 56px;
  height: 56px;
  content: "";
}
.bl_reason .bl_card_item::after {
  position: absolute;
  top: -25px;
  left: 82px;
  width: 162px;
  height: 138px;
  content: "";
}
.bl_reason .bl_card_item .bl_item_ttl {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}
.bl_reason .bl_card_item .bl_item_txt {
  line-height: calc(28/17);
  text-align: center;
}
.bl_reason .bl_card_item .bl_item_att {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: calc(22/14);
}
.bl_reason .bl_card_item:first-of-type::before {
  background: url("../images/top/reason_num_01.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:first-of-type::after {
  background: url("../images/top/reason_img01.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(2)::before {
  background: url("../images/top/reason_num_02.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(2)::after {
  background: url("../images/top/reason_img02.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(3)::before {
  background: url("../images/top/reason_num_03.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(3)::after {
  background: url("../images/top/reason_img03.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(4)::before {
  background: url("../images/top/reason_num_04.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(4)::after {
  background: url("../images/top/reason_img04.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(5)::before {
  background: url("../images/top/reason_num_05.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(5)::after {
  background: url("../images/top/reason_img05.png") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(6)::before {
  background: url("../images/top/reason_num_06.svg") top center/contain no-repeat;
}
.bl_reason .bl_card_item:nth-of-type(6)::after {
  background: url("../images/top/reason_img06.png") top center/contain no-repeat;
}
@media screen and (width <= 750px) {
  .bl_reason {
    padding: 80px 0;
    margin-bottom: 52px;
    background: var(--color-primary-light);
  }
  .bl_reason::after {
    width: 750px;
    background: url("../images/top/reason_bg_deco_sp.svg") top center/contain no-repeat;
  }
  .bl_reason .el_sec_mainTtl {
    margin-bottom: 120px;
  }
  .bl_reason .bl_card_list {
    grid-template-columns: auto;
    gap: 147px;
  }
  .bl_reason .bl_card_item {
    padding: 268px 30px 56px;
  }
  .bl_reason .bl_card_item::before {
    top: -67px;
    left: 20px;
    width: 126px;
    height: 126px;
  }
  .bl_reason .bl_card_item::after {
    position: absolute;
    top: -56px;
    left: 172px;
    width: 360px;
    height: 308px;
  }
  .bl_reason .bl_card_item .bl_item_ttl {
    margin-bottom: 40px;
    font-size: 40px;
  }
  .bl_reason .bl_card_item .bl_item_att {
    margin-top: 12px;
    font-size: 24px;
    line-height: calc(42/24);
  }
}
/* =======================================================
price
======================================================= */
.bl_price {
  padding: 56px 0 57px;
  background: url("../images/top/price_bg.jpg") top center/cover no-repeat;
}
.bl_price .el_sec_mainTtl {
  margin-bottom: 40px;
}
.bl_price_intro {
  margin-bottom: 40px;
  font-size: 16px;
  text-align: center;
}
.bl_price .bl_brand_def {
  display: inline-flex;
  flex-wrap: wrap;
  height: 60px;
  overflow: hidden;
  border: 1px solid var(--color-primary-dark);
  border-radius: 10px;
}
.bl_price .bl_brand_def_wrapper {
  margin-bottom: 40px;
  text-align: center;
}
.bl_price .bl_brand_dttl {
  display: grid;
  place-content: center;
  padding: 0 23px 1px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary-dark);
}
.bl_price .bl_brand_ditem {
  display: grid;
  place-content: center;
  padding: 0 52px 5px;
  font-size: 24px;
  font-weight: 700;
  background: var(--color-white);
}
.bl_price_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.bl_price_item:nth-of-type(2) .bl_item_ditem {
  padding: 5px 0 24px 33px;
}
.bl_price_item:nth-of-type(2) .bl_ditem_inner {
  display: grid;
  grid-template-areas: "deco conts" "deco att";
  grid-template-columns: 110px auto;
  gap: 0 15px;
  align-items: end;
}
.bl_price_item .bl_item_dttl {
  position: relative;
  z-index: 2;
  padding: 9px 0 26px;
  margin: 0 15px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  background: url("../images/top/price_dttl_bg.svg") top center/contain no-repeat;
}
.bl_price_item .bl_item_ditem {
  display: grid;
  place-content: center;
  padding: 17px 0 21px;
  margin-top: -23px;
  background: var(--color-white);
  border: 1px solid var(--color-primary-dark);
}
.bl_price_item .bl_item_ditem .bl_ditem_num {
  font-size: 90px;
  font-weight: 700;
  line-height: calc(130/90);
  color: var(--color-primary-dark);
}
.bl_price_item .bl_item_ditem .bl_ditem_unit {
  font-size: 36px;
  font-weight: 700;
  line-height: 2;
}
.bl_price_item .bl_item_ditem .bl_ditem_deco {
  grid-area: deco;
}
.bl_price_item .bl_item_ditem .bl_ditem_conts {
  grid-area: conts;
}
.bl_price_item .bl_item_ditem .bl_ditem_conts .bl_conts_num {
  font-size: 90px;
  font-weight: 700;
  line-height: calc(130/90);
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
}
.bl_price_item .bl_item_ditem .bl_ditem_conts .bl_conts_unit {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.3em;
}
.bl_price_item .bl_item_ditem .bl_ditem_conts .bl_conts_tax {
  margin-left: -4px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}
.bl_price_item .bl_item_ditem .bl_ditem_att {
  grid-area: att;
  margin-top: -12px;
  font-size: 14px;
}
@media screen and (width <= 750px) {
  .bl_price {
    padding: 131px 0 80px;
    background: var(--color-white);
  }
  .bl_price_intro {
    margin-bottom: 56px;
    font-size: 28px;
  }
  .bl_price .bl_brand_def {
    display: grid;
    grid-template-columns: auto 1fr;
    height: 72px;
  }
  .bl_price .bl_brand_def_wrapper {
    margin-bottom: 56px;
  }
  .bl_price .bl_brand_dttl {
    padding: 0 28px 1px;
    font-size: 24px;
  }
  .bl_price .bl_brand_ditem {
    padding: 0 0 6px;
    font-size: 28px;
  }
  .bl_price_list {
    grid-template-columns: auto;
    gap: 80px;
  }
  .bl_price_item:nth-of-type(2) .bl_item_ditem {
    padding: 7px 0 32px 47px;
  }
  .bl_price_item:nth-of-type(2) .bl_ditem_inner {
    grid-template-columns: 158px auto;
    gap: 0;
  }
  .bl_price_item .bl_item_dttl {
    padding: 12px 0 30px;
    margin: 0 22px;
    font-size: 40px;
  }
  .bl_price_item .bl_item_ditem {
    padding: 25px 0 34px;
    margin-top: -33px;
  }
  .bl_price_item .bl_item_ditem .bl_ditem_num {
    font-size: 128px;
  }
  .bl_price_item .bl_item_ditem .bl_ditem_unit {
    font-size: 51px;
  }
  .bl_price_item .bl_item_ditem .bl_ditem_conts .bl_conts_num {
    margin-left: 22px;
    font-size: 129px;
  }
  .bl_price_item .bl_item_ditem .bl_ditem_conts .bl_conts_unit {
    font-size: 65px;
  }
  .bl_price_item .bl_item_ditem .bl_ditem_conts .bl_conts_tax {
    font-size: 42px;
  }
  .bl_price_item .bl_item_ditem .bl_ditem_att {
    margin-top: -18px;
    font-size: 24px;
  }
}
/* =======================================================
compare
======================================================= */
.bl_compare {
  padding: 56px 0 57px;
  background: var(--color-white-02);
}
.bl_compare .el_sec_mainTtl {
  margin-bottom: 56px;
}
.bl_compare_scroll-att {
  display: none;
}
.bl_compare_tbl {
  display: block;
}
.bl_compare_thead {
  display: block;
}
.bl_compare_thead .bl_compare_tr {
  align-items: end;
}
.bl_compare_thead .bl_compare_th {
  display: grid;
  place-content: center;
}
.bl_compare_thead .bl_compare_th:nth-of-type(2) {
  height: 100px;
  padding-bottom: 4px;
  background: var(--color-white);
  border: 4px solid var(--color-accent);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.bl_compare_thead .bl_compare_th:nth-of-type(2) img {
  display: block;
  width: 160px;
  margin: 0 auto 4px;
}
.bl_compare_thead .bl_compare_th:nth-of-type(3) {
  border-right: 2px solid var(--color-white);
}
.bl_compare_thead .bl_compare_th:nth-of-type(n + 3) {
  height: 80px;
  color: var(--color-white);
  background: var(--color-secondary);
}
.bl_compare_tbody {
  display: block;
}
.bl_compare_tbody .bl_compare_tr:nth-of-type(4) .bl_compare_td:nth-of-type(2) {
  align-content: start;
  padding: 22px 0 43px;
}
.bl_compare_tbody .bl_compare_tr:nth-of-type(4) .bl_compare_td:last-of-type {
  align-content: start;
  padding: 26px 0 39px;
}
.bl_compare_tbody .bl_compare_tr:last-of-type .bl_compare_th {
  height: 80px;
}
.bl_compare_tbody .bl_compare_tr:last-of-type .bl_compare_td {
  height: 80px;
}
.bl_compare_tbody .bl_compare_tr:last-of-type .bl_compare_td:first-of-type {
  height: 88px;
  border-bottom: 4px solid var(--color-accent);
  border-radius: 0 0 10px 10px;
}
.bl_compare_tbody .bl_compare_tr:not(:last-of-type) .bl_compare_th {
  border-bottom: 2px solid var(--color-white);
}
.bl_compare_tbody .bl_compare_th {
  display: grid;
  place-content: center;
  min-height: 80px;
  padding-bottom: 3px;
  font-weight: 400;
  color: var(--color-white);
  background: var(--color-primary-dark);
}
.bl_compare_tbody .bl_compare_td {
  display: grid;
  place-content: center;
  background: var(--color-white);
}
.bl_compare_tbody .bl_compare_td:first-of-type {
  position: relative;
  font-weight: 700;
  text-align: center;
  border-right: 4px solid var(--color-accent);
  border-left: 4px solid var(--color-accent);
}
.bl_compare_tbody .bl_compare_td:first-of-type::before {
  position: absolute;
  top: -2px;
  left: 50%;
  width: calc(100% - 2px);
  height: 2px;
  content: "";
  background: var(--color-white-02);
  transform: translateX(-50%);
}
.bl_compare_tbody .bl_compare_td:nth-of-type(2) {
  border-right: 2px solid var(--color-white-02);
}
.bl_compare_tbody .bl_compare_td:nth-of-type(n + 2) {
  border-bottom: 2px solid var(--color-white-02);
}
.bl_compare_tr {
  display: grid;
  grid-template-columns: 1fr 330px 252px 220px;
}
.bl_compare_th {
  display: block;
}
.bl_compare_td {
  display: block;
}
.bl_compare_figure {
  display: none;
}
@media screen and (width <= 750px) {
  .bl_compare {
    padding: 80px 0;
  }
  .bl_compare .ly_cont_inner {
    width: 100%;
    padding-left: 30px;
  }
  .bl_compare_scroll-att {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-right: 30px;
    margin-bottom: 16px;
  }
  .bl_compare_scroll-att::before {
    justify-self: end;
  }
  .bl_compare_tbl {
    display: none;
  }
  .bl_compare_figure {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    width: max-content;
  }
  .bl_compare_def_wrapper {
    overflow-x: scroll;
  }
  .bl_compare_def_outer {
    display: flex;
    width: max-content;
    margin-right: 30px;
  }
  .bl_compare_def_outer .bl_compare_def:not(:first-of-type) .bl_compare_dttl {
    border-left: 3px solid var(--color-white);
  }
  .bl_compare_def_outer .bl_compare_def:not(:first-of-type) .bl_ditem_ditem {
    border-left: 3px solid var(--color-white-02);
  }
  .bl_compare_def_outer .bl_compare_dttl {
    height: 120px;
    margin-top: 30px;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-secondary);
  }
  .bl_compare_def_outer .bl_compare_ditem .bl_ditem_dttl {
    color: var(--color-primary-dark);
  }
  .bl_compare_def.yutoripay .bl_compare_dttl {
    height: 150px;
    padding-bottom: 6px;
    margin-top: 0;
    background: var(--color-white);
    border: 4px solid var(--color-accent);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
  }
  .bl_compare_def.yutoripay .bl_compare_dttl img {
    display: block;
    width: 272px;
  }
  .bl_compare_def.yutoripay .bl_compare_ditem .bl_ditem_ditem {
    position: relative;
    font-weight: 700;
    text-align: center;
    border-right: 4px solid var(--color-accent);
    border-left: 4px solid var(--color-accent);
  }
  .bl_compare_def.yutoripay .bl_compare_ditem .bl_ditem_dwrap:last-of-type .bl_ditem_ditem {
    border-bottom: 4px solid var(--color-accent);
    border-radius: 0 0 10px 10px;
  }
  .bl_compare_dttl {
    display: grid;
    place-content: center;
  }
  .bl_compare_ditem .bl_ditem_dwrap:first-of-type .bl_ditem_ditem, .bl_compare_ditem .bl_ditem_dwrap:nth-of-type(2) .bl_ditem_ditem, .bl_compare_ditem .bl_ditem_dwrap:nth-of-type(5) .bl_ditem_ditem {
    height: 100px;
  }
  .bl_compare_ditem .bl_ditem_dwrap:nth-of-type(4) .bl_ditem_ditem {
    height: 244px;
  }
  .bl_compare_ditem .bl_ditem_dttl {
    padding: 12px 24px 16px;
    color: var(--color-white);
    background: var(--color-primary-dark);
  }
  .bl_compare_ditem .bl_ditem_ditem {
    display: grid;
    place-content: center;
    padding: 12px 24px 16px;
    font-size: 24px;
    background: var(--color-white);
  }
}
/* =======================================================
flow
======================================================= */
.bl_flow {
  padding: 56px 0 32px;
  background: url("../images/top/flow_bg.jpg") top center/cover no-repeat;
}
.bl_flow .el_sec_mainTtl {
  margin-bottom: 69px;
}
.bl_flow_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.bl_flow_item {
  position: relative;
  padding: 84px 0 24px;
  background: var(--color-white);
  border: 2px solid var(--color-primary-dark);
  border-radius: 10px;
}
.bl_flow_item::before {
  position: absolute;
  left: 50%;
  width: 166px;
  height: 116px;
  content: "";
  transform: translateX(-50%);
}
.bl_flow_item:first-of-type::before {
  top: -12px;
  background: url("../images/top/flow_img01.png") top center/contain no-repeat;
}
.bl_flow_item:nth-of-type(2)::before {
  top: -13px;
  background: url("../images/top/flow_img02.png") top center/contain no-repeat;
}
.bl_flow_item:nth-of-type(3)::before {
  top: -19px;
  background: url("../images/top/flow_img03.png") top center/contain no-repeat;
}
.bl_flow_item:nth-of-type(4)::before {
  top: -31px;
  background: url("../images/top/flow_img04.png") top center/contain no-repeat;
}
.bl_flow_item:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: -32px;
  width: 26px;
  height: 18px;
  content: "";
  background: url("../images/top/flow_arrow.svg") top center/contain no-repeat;
  transform: translateY(-50%);
}
.bl_flow_item .bl_item_imgWrapper {
  position: relative;
  z-index: 2;
  display: flex;
  width: 120px;
  margin: 0 auto 16px;
}
.bl_flow_item .bl_item_ttl {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-align: center;
}
.bl_flow_item .bl_item_txt {
  padding: 0 22px;
}
@media screen and (width <= 750px) {
  .bl_flow {
    padding: 80px 0;
    background: var(--color-white);
  }
  .bl_flow .el_sec_mainTtl {
    margin-bottom: 86px;
  }
  .bl_flow_list {
    grid-template-columns: auto;
    gap: 235px;
  }
  .bl_flow_item {
    position: relative;
    padding: 258px 0 56px;
  }
  .bl_flow_item::before {
    width: 498px;
    height: 348px;
  }
  .bl_flow_item:first-of-type::before {
    top: -30px;
  }
  .bl_flow_item:nth-of-type(2)::before {
    top: -33px;
  }
  .bl_flow_item:nth-of-type(3)::before {
    top: -33px;
  }
  .bl_flow_item:nth-of-type(4)::before {
    top: -33px;
  }
  .bl_flow_item:not(:last-of-type)::after {
    top: initial;
    right: initial;
    bottom: -146px;
    left: 50%;
    width: 62px;
    height: 90px;
    background: url("../images/top/flow_arrow_sp.svg") top center/contain no-repeat;
    transform: translateX(-50%);
  }
  .bl_flow_item .bl_item_imgWrapper {
    width: 360px;
    margin: 0 auto 40px;
  }
  .bl_flow_item .bl_item_ttl {
    margin-bottom: 40px;
    font-size: 40px;
  }
  .bl_flow_item .bl_item_txt {
    padding: 0;
    text-align: center;
  }
}
/* =======================================================
faq
======================================================= */
.bl_faq {
  position: relative;
  padding: 56px 0;
  margin-top: 56px;
  background: var(--color-white-02);
}
.bl_faq::before {
  position: absolute;
  top: -55px;
  left: 50%;
  width: 2000px;
  height: 56px;
  content: "";
  background: url("../images/top/faq_bg_deco.svg") top center/contain no-repeat;
  transform: translateX(-50%);
}
.bl_faq .el_sec_mainTtl {
  margin-bottom: 56px;
}
.bl_faq_def {
  display: grid;
  gap: 32px;
}
.bl_faq_dwrap {
  padding: 24px 32px;
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(206, 206, 206, 0.3019607843);
}
.bl_faq_dttl {
  position: relative;
  padding-right: 62px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.bl_faq_dttl::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  content: "";
  background: var(--color-primary-dark);
  border-radius: 50%;
}
.bl_faq_dttl::after {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 9px;
  height: 8px;
  content: "";
  background: url("../images/top/faq_arrow.svg") top center/contain no-repeat;
  transition: transform 0.3s ease;
}
.bl_faq_dttl.is_faq_open::after {
  transform: scale(1, -1);
}
.bl_faq_ditem {
  display: none;
  padding-top: 16px;
}
@media screen and (width <= 750px) {
  .bl_faq {
    padding: 80px 0;
    margin-top: 21px;
  }
  .bl_faq::before {
    top: -20px;
    width: 750px;
    height: 21px;
    background: url("../images/top/faq_bg_deco_sp.svg") top center/contain no-repeat;
  }
  .bl_faq_def {
    gap: 40px;
  }
  .bl_faq_dwrap {
    padding: 32px 30px;
  }
  .bl_faq_dttl {
    padding-right: 78px;
    font-size: 32px;
  }
  .bl_faq_dttl::before {
    width: 48px;
    height: 48px;
  }
  .bl_faq_dttl::after {
    top: 15px;
    right: 15px;
    width: 18px;
    height: 18px;
  }
  .bl_faq_dttl.is_faq_open::after {
    top: 13px;
    transform: scale(1, -1);
  }
  .bl_faq_ditem {
    padding-top: 24px;
  }
}
/* =======================================================
service
======================================================= */
.bl_service {
  padding: 56px 0 72px;
}
.bl_service .el_sec_mainTtl {
  margin-bottom: 56px;
}
.bl_service_dwrap {
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-gray-02);
}
.bl_service_dwrap:first-of-type {
  border-top: 1px solid var(--color-gray-02);
}
.bl_service_dttl {
  font-weight: 700;
  color: var(--color-primary-dark);
}
.bl_service_ditem {
  padding-right: 16px;
}
@media screen and (width <= 750px) {
  .bl_service {
    padding: 80px 0;
  }
  .bl_service_dwrap {
    display: grid;
    grid-template-columns: auto;
    padding: 32px 30px;
  }
  .bl_service_ditem {
    padding-right: 0;
  }
  .bl_service_ditem_deco {
    font-size: 24px;
  }
}