/*--------------------------------
  reset
--------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
main *,
main ::before,
main ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}
main html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
main body {
  margin: 0;
}
main main {
  display: block;
}
main p,
main table,
main blockquote,
main address,
main pre,
main iframe,
main form,
main figure,
main dl {
  margin: 0;
}
main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
main ul,
main ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
main dt {
  font-weight: bold;
}
main dd {
  margin-left: 0;
}
main hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
main pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}
main address {
  font-style: inherit;
}
main a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
main abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
main b,
main strong {
  font-weight: bolder;
}
main code,
main kbd,
main samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}
main small {
  font-size: 80%;
}
main sub,
main sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
main sub {
  bottom: -0.25em;
}
main sup {
  top: -0.5em;
}
main svg,
main img,
main embed,
main object,
main iframe {
  vertical-align: bottom;
}
main button,
main input,
main optgroup,
main select,
main textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}
main button,
main [type=button],
main [type=reset],
main [type=submit] {
  cursor: pointer;
}
main button:disabled,
main [type=button]:disabled,
main [type=reset]:disabled,
main [type=submit]:disabled {
  cursor: default;
}
main :-moz-focusring {
  outline: auto;
}
main select:disabled {
  opacity: inherit;
}
main option {
  padding: 0;
}
main fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
main legend {
  padding: 0;
}
main progress {
  vertical-align: baseline;
}
main textarea {
  overflow: auto;
}
main [type=number]::-webkit-inner-spin-button,
main [type=number]::-webkit-outer-spin-button {
  height: auto;
}
main [type=search] {
  outline-offset: -2px; /* 1 */
}
main [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
main ::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
main [type=number] {
  -moz-appearance: textfield;
}
main label[for] {
  cursor: pointer;
}
main details {
  display: block;
}
main summary {
  display: list-item;
}
main [contenteditable]:focus {
  outline: auto;
}
main table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}
main caption {
  text-align: left;
}
main td,
main th {
  vertical-align: top;
  padding: 0;
}
main th {
  text-align: left;
  font-weight: bold;
}

:root {
  --color-text: #333333;
  --color-white: #fff;
  --color-site: #005ce7;
  --color-site-rgb: 0 92 231;
  --color-site-bg: #F2F7FF;
  --color-site-lite: #277AF6;
}

/*--------------------------
  base
--------------------------*/
html {
  font-size: 100%;
  line-height: 1.5;
}

body {
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--color-bg);
  font-size: 1rem;
}

main a {
  text-decoration: none;
  color: var(--color-site);
}

main img, main svg {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

/*--------------------------------
  common
--------------------------------*/
main {
  padding-block-start: 43px;
}
@media (width >= 768px) {
  main {
    padding-block-start: 80px;
  }
}

.ly_common_inner {
  max-width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
}

.is_sp {
  display: block;
}
@media (width >= 768px) {
  .is_sp {
    display: none;
  }
}

.is_pc {
  display: none;
}
@media (width >= 768px) {
  .is_pc {
    display: block;
  }
}

.is_pc_max {
  display: none;
}
@media (width >= 1040px) {
  .is_pc_max {
    display: block;
  }
}

@media (any-hover: hover) {
  .el_text_link:hover {
    text-decoration: none;
  }
}
@media (any-hover: hover) {
  .el_img_link:hover {
    opacity: 0.7;
  }
}
/*--------------------------------
  ly_header
--------------------------------*/
.ly_header {
  position: fixed;
  width: 100%;
  z-index: var(--z-index-header);
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

.is-top .ly_header {
  background-color: transparent;
}

.ly_header_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1260px;
  padding: 15px 20px;
  margin-inline: auto;
}
@media (width >= 768px) {
  .ly_header_inner {
    padding: 20px 30px;
  }
}

.ly_header_logo_pict {
  filter: none;
  transition: filter 0.3s;
  width: 180px;
  height: auto;
}
@media (width >= 768px) {
  .ly_header_logo_pict {
    width: 200px;
  }
}

#TopPage.is-top .ly_header_logo_pict {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(33deg) brightness(102%) contrast(101%);
}

.hamburger {
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  position: relative;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  background-color: #333;
  transition: 0.3s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #333;
  transition: inherit;
}

.hamburger__line:before {
  top: -12px;
}

.hamburger__line:after {
  top: 12px;
}

#TopPage.is-top .hamburger__line,
#TopPage.is-top .hamburger__line:before,
#TopPage.is-top .hamburger__line:after {
  background-color: #fff;
}

.ly_hamburger_close_wrapper {
  display: block;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}

.ly_hamburger_close {
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  border: none;
  background-color: transparent;
}

.ly_hamburger_line_close:before,
.ly_hamburger_line_close:after {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
  background-color: #fff;
  transition: inherit;
}

.ly_hamburger_line_close::before {
  transform: rotate(45deg);
}

.ly_hamburger_line_close::after {
  transform: rotate(-45deg);
}

.header__nav-area {
  display: block;
  position: fixed;
  top: 0;
  z-index: var(--z-index-nav);
  height: 100vh;
  height: 100dvh;
  width: 320px;
  visibility: hidden;
  background-color: #000;
  color: #fff;
  transition: 0.4s;
  right: -100%;
  visibility: hidden;
  overflow-y: auto;
  font-size: 14px;
}

.header__nav-area.-active {
  right: 0;
  visibility: visible;
}

.global-navigation {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: color 0.4s;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 14px;
}

.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
}

.global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 25px;
  width: 2px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: transform 0.4s;
}

.global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  background-color: #fff;
  transform: translateY(-50%);
}

.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}

.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}

.accordion.-active {
  height: auto;
  visibility: visible;
}

.accordion__link {
  display: block;
  padding: 15px 20px;
  color: #fff;
}

.header__nav-area .-lv1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header__nav-area .-lv2 {
  background-color: #333;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header__nav-area .-lv3 {
  background-color: #666;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header__nav-area .-lv4 {
  background-color: #e5e5e5;
  color: #333;
  border-bottom: 1px solid #999;
}

.global-navigation__link:hover,
.header__nav-area .-lv2:hover,
.header__nav-area .-lv3:hover {
  background-color: #eb6d8e;
}

.header__nav-area .-lv4:hover {
  color: #fff;
  background-color: #eb6d8e;
}

.global-sns__link {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-inline: auto;
}

.global-sns__item_svg svg {
  fill: #fff;
  width: auto;
  height: 30px;
  transition: fill 0.3s;
}

.global-sns__item_svg:hover svg {
  fill: #eb6d8e;
}

.foot_fixed_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding: 0 20px;
  margin-top: 20px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  box-sizing: border-box;
  padding-bottom: 30px;
}

.foot_fixed_item_link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  transition: opacity 0.3s;
}

.foot_fixed_item_link:hover {
  opacity: 0.7;
}

.foot_fixed_item_line {
  background-color: #00B900;
}

.foot_fixed_item_tel {
  background-color: #AC8C4F;
}

.foot_fixed_item_web {
  background-color: #eb6d8e;
}

.ly_nav_bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.5s ease, opacity 0.5s ease;
  z-index: var(--z-index-nav_bg);
}

body.-active .ly_nav_bg {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}

/*--------------------------------
  .bl_mv
--------------------------------*/
.bl_mv {
  position: relative;
}

@media (width >= 768px) {
  .bl_mv_link01 {
    position: absolute;
    display: block;
    bottom: 40.6%;
    right: 38.2%;
    width: 8.3%;
    height: 6%;
  }
}

@media (width >= 768px) {
  .bl_mv_link02 {
    position: absolute;
    display: block;
    bottom: 40.6%;
    right: 24.6%;
    width: 9.5%;
    height: 6%;
  }
}

.bl_mv_img {
  width: 100%;
  height: auto;
}

.bl_mv_heading {
  position: relative;
}

.bl_mv_inko {
  position: absolute;
  bottom: -60px;
  z-index: 10;
}

.bl_mv_contents {
  position: relative;
  padding: 60px 20px 55px;
  background-color: var(--color-site-bg);
  text-align: center;
  z-index: 1;
}

.bl_mv_download_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.bl_mv_download_app_wrap {
  padding: 20px 10px 0;
  border-radius: 12px 12px 0 0;
  background-color: #fff;
}

.bl_mv_download_app {
  display: flex;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.bl_mv_download_note {
  padding: 10px 0;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
}

.bl_mv_download_app_item {
  display: grid;
  row-gap: 12px;
}

.bl_mv_download_text_wrap {
  width: 100%;
  padding: 8px 12px;
  background-color: var(--color-site);
  color: #fff;
  border-radius: 0 0 12px 12px;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.25rem;
}

/*
.bl_mv_download_note {
  margin-block-start: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
  text-decoration: underline;
  font-size: rem(14);
}
*/
.bl_mv_sp_pict {
  position: relative;
}

/*--------------------------------
  .bl_info
--------------------------------*/
.bl_info {
  padding-block: 44px 65px;
  margin-inline: auto;
}
@media (width >= 768px) {
  .bl_info {
    padding-block: 70px 70px;
  }
}

.bl_info_title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-site);
  line-height: 1;
}
@media (width >= 768px) {
  .bl_info_title {
    font-size: 2.25rem;
  }
}

.bl_info_contents {
  margin-block-start: 26px;
  display: grid;
}
@media (width >= 768px) {
  .bl_info_contents {
    margin-block-start: 40px;
  }
}

.bl_info_contents_heading {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-site);
  text-align: center;
  border-bottom: 1px solid var(--color-site);
  padding: 20px;
  border-radius: 20px 20px 0 0;
  background-color: var(--color-site-bg);
}
@media (width >= 768px) {
  .bl_info_contents_heading {
    font-size: 1.5rem;
  }
}

.bl_info_contents_txt {
  padding: 25px;
  border-radius: 0 0 20px 20px;
  background-color: var(--color-site-bg);
  display: grid;
  row-gap: 30px;
}
@media (width >= 768px) {
  .bl_info_contents_txt {
    padding: 30px 50px;
  }
}

.bl_info_contents_title {
  font-weight: bold;
  text-align: center;
}
@media (width >= 768px) {
  .bl_info_contents_title {
    font-size: 1.25rem;
  }
}

.bl_info_contents_note {
  font-size: 0.875rem;
}

/*--------------------------------
  .bl_point01
--------------------------------*/
.bl_point01 {
  padding-block: 60px 60px;
  position: relative;
  margin-inline: auto;
}
@media (width >= 768px) {
  .bl_point01 {
    padding-block: 136px 70px;
  }
}

@media (width >= 768px) {
  .bl_point01::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, #007BFF, rgba(0, 102, 255, 0));
    background-repeat: no-repeat;
    background-size: 100% 500px;
    opacity: 0.1;
    z-index: -2;
  }
}

.bl_point01::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/point01_bg_sp.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (width >= 768px) {
  .bl_point01::after {
    background-image: url("../img/point01_bg_pc.svg");
  }
}

.bl_point_heading {
  text-align: center;
}

.bl_point_title01 {
  margin-block-start: 60px;
}
@media (width >= 768px) {
  .bl_point_title01 {
    margin-block-start: 100px;
  }
}

.bl_point01_contents {
  display: grid;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin-block-start: 40px;
}
@media (width >= 768px) {
  .bl_point01_contents {
    margin-block-start: 70px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 53.5%;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.bl_point01_contents_txt {
  display: grid;
  row-gap: 32px;
}
@media (width >= 768px) {
  .bl_point01_contents_txt {
    row-gap: 36px;
  }
}

.bl_point01_contents_lead {
  font-size: 1.125rem;
  display: grid;
  text-align: center;
  justify-items: center;
}
@media (width >= 768px) {
  .bl_point01_contents_lead {
    font-size: 1.3125rem;
  }
}

.bl_point01_contents_lead_em {
  font-style: normal;
  font-weight: bold;
}

.bl_point01_contents_lead_strong {
  color: var(--color-site);
  font-size: 1.25rem;
}

.bl_point01_contents_lead_plus {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
}
@media (width >= 768px) {
  .bl_point01_contents_lead_plus {
    font-size: 2.25rem;
    line-height: 1.8;
  }
}

.bl_point01_contents_pict {
  display: grid;
  row-gap: 8px;
}

.bl_point01_contents_pict_catch {
  text-align: center;
}
@media (width < 768px) {
  .bl_point01_contents_pict_catch {
    padding-block-start: 40px;
  }
}

.bl_point01_contents_item_wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(25px, 5vw, 40px) minmax(0, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-block-start: 40px;
}
@media (width >= 768px) {
  .bl_point01_contents_item_wrap {
    margin-block-start: 0;
  }
}

.bl_point01_contents_item {
  display: grid;
  row-gap: 20px;
  grid-row: span 2;
  grid-template-rows: subgrid;
}

.bl_point01_contents_item_txt {
  text-align: center;
  display: grid;
  align-self: start;
  row-gap: 10px;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media (width >= 768px) {
  .bl_point01_contents_item_txt {
    font-size: 1rem;
  }
}

.bl_point01_contents_item_title {
  font-weight: bold;
}

.bl_point01_contents_item_lead_icon {
  display: flex;
  justify-items: center;
  align-items: baseline;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (width >= 768px) {
  .bl_point01_contents_item_lead_icon {
    -moz-column-gap: 3px;
         column-gap: 3px;
    align-self: start;
  }
}

.bl_point01_contents_item_lead_icon_img {
  width: 17px;
}
@media (width >= 768px) {
  .bl_point01_contents_item_lead_icon_img {
    width: auto;
  }
}

.bl_point01_contents_item_plus {
  min-width: 25px;
  margin-block-start: clamp(68px, 23.41vw - 19.78px, 160px);
}
@media (width >= 768px) {
  .bl_point01_contents_item_plus {
    margin-block-start: 85px;
  }
}

.bl_point01_step_wrap {
  padding: 20px 30px 0;
  border-radius: 30px;
  background-image: linear-gradient(#f4f8ff 47%, #b2d0ff);
  margin-block-start: 60px;
  overflow-y: hidden;
}
@media (width >= 768px) {
  .bl_point01_step_wrap {
    padding: 20px 45px 0;
    margin-block-start: 80px;
  }
}

.bl_point01_step_title {
  text-align: center;
}

.bl_point01_step {
  display: grid;
  row-gap: 20px;
  margin-block-start: 32px;
}
@media (width >= 768px) {
  .bl_point01_step {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.bl_point01_step_item {
  display: grid;
  row-gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.bl_point01_step_item_title {
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (width >= 768px) {
  .bl_point01_step_item_title {
    font-size: 0.9375rem;
  }
}

.bl_point01_step_item_number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  padding-bottom: 0.1rem;
  border: 1px solid var(--color-site);
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--color-site);
  background-color: #fff;
  flex-shrink: 0;
}

.bl_point01_step_item_pict {
  align-self: self-end;
  text-align: center;
  padding-inline: 15px;
}
@media (width >= 768px) {
  .bl_point01_step_item_pict {
    padding-inline: 0;
  }
}

.bl_point01_step_item_img {
  filter: drop-shadow(0 0 20px rgb(var(--color-site-rgb)/0.2));
  max-width: 370px;
  width: 100%;
}
@media (width >= 768px) {
  .bl_point01_step_item_img {
    max-width: 100%;
    width: auto;
  }
}

.bl_point01_step_arrow {
  align-self: center;
  justify-self: center;
}
@media (width >= 768px) {
  .bl_point01_step_arrow {
    padding-block-start: 60px;
    width: 50px;
  }
}

@media (width < 768px) {
  .bl_point01_step_arrow_img {
    transform: rotate(90deg);
  }
}

.bl_point01_more {
  display: flex;
  align-items: end;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-block-start: 80px;
  line-height: 1.5;
}
@media (width >= 768px) {
  .bl_point01_more {
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}

.bl_point01_more_title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  color: var(--color-site);
}
@media (width >= 768px) {
  .bl_point01_more_title {
    font-size: 2rem;
  }
}

.bl_point01_more_item_title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  padding-block-end: 8px;
  border-bottom: 1px solid var(--color-site);
  text-align: center;
}
@media (width >= 768px) {
  .bl_point01_more_item_title {
    text-align: left;
  }
}

.bl_point01_more_content {
  display: grid;
  margin-block-start: 40px;
  row-gap: 40px;
}
@media (width >= 768px) {
  .bl_point01_more_content {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
    margin-block-start: 60px;
  }
}

.bl_point01_more_item {
  display: grid;
  row-gap: 25px;
  grid-row: span 3;
  grid-template-rows: subgrid;
}

.bl_point01_more_item_lead {
  line-height: 1.5;
}

/*--------------------------------
  .bl_point02
--------------------------------*/
.bl_point02 {
  padding-block: 60px 60px;
  position: relative;
}
@media (width >= 768px) {
  .bl_point02 {
    padding-block: 100px 100px;
  }
}

.bl_point02::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-site-bg);
  background-size: 100% 100%;
  z-index: -2;
}

.bl_point02::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/point02_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.bl_point02_contents {
  display: grid;
  align-items: center;
  row-gap: 20px;
  position: relative;
}
@media (width >= 768px) {
  .bl_point02_contents {
    row-gap: 30px;
  }
}
@media (width >= 1040px) {
  .bl_point02_contents {
    -moz-column-gap: 50px;
         column-gap: 50px;
    grid-template-columns: auto auto;
  }
}

.bl_point02_lead {
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.5rem;
  padding-block-start: 40px;
}
@media (width >= 768px) {
  .bl_point02_lead {
    padding-block-start: 60px;
  }
}

.bl_point02_pict {
  justify-self: center;
}
@media (width >= 1040px) {
  .bl_point02_pict {
    position: absolute;
    top: -200px;
    right: 0;
  }
}

.bl_point02_note {
  margin-block-start: 40px;
}
@media (width >= 768px) {
  .bl_point02_note {
    text-align: center;
  }
}
@media (width >= 1040px) {
  .bl_point02_note {
    margin-block-start: 200px;
  }
}

/*--------------------------------
  .bl_point03
--------------------------------*/
.bl_point03 {
  padding-block: 60px;
}
@media (width >= 768px) {
  .bl_point03 {
    padding-block: 100px;
  }
}

.bl_point03_contents {
  display: grid;
  row-gap: 12px;
  margin-block-start: 40px;
  align-items: center;
}
@media (width >= 768px) {
  .bl_point03_contents {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-block-start: 60px;
    align-items: stretch;
  }
}

.bl_point03_item {
  padding: 30px 24px 24px;
  background-color: var(--color-site-bg);
  border-radius: 15px;
}
@media (width >= 768px) {
  .bl_point03_item {
    padding: 30px clamp(25px, 4.52vw - 9.69px, 40px);
  }
}

.bl_point03_img {
  width: 188px;
}
@media (width >= 768px) {
  .bl_point03_img {
    width: auto;
  }
}

.bl_point03_item_box {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  height: 100%;
}

.bl_point03_item_title {
  font-size: clamp(1.0625rem, 14.1374045802px + 0.7633587786vw, 1.25rem);
  font-weight: bold;
  line-height: 1.6;
  justify-content: center;
}
@media (width >= 768px) {
  .bl_point03_item_title {
    font-size: clamp(1.125rem, 2.586vw - 1.86px, 1.5rem);
  }
}

.bl_point03_item_note {
  font-size: 0.875rem;
  margin-left: 5px;
}
@media (width >= 768px) {
  .bl_point03_item_note {
    font-size: 1rem;
  }
}

/*
.bl_point03_arrow {
  text-align: center;
  align-self: center;
}
.bl_point03_arrow_img {
  @include mq(mdmax) {
    width: 30px;
    transform: rotate(90deg);
  }
}
  */
.bl_point03_note {
  margin-block-start: 30px;
  font-size: 1rem;
  line-height: 1.5;
}

.bl_point03_note_item {
  display: flex;
  gap: 0.5em;
}

.bl_point03_note_number {
  flex-shrink: 0;
}

.bl_point03_link {
  font-size: 1rem;
  color: var(--color-site);
  text-decoration: underline;
  display: inline;
  text-align: left;
}
@media (width >= 768px) {
  .bl_point03_link {
    text-align: center;
    margin-top: auto;
  }
}

.bl_point03_link_icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

@media (width >= 768px) {
  .bl_point03_pict_right {
    padding-block: 40px 0;
  }
}

/*--------------------------------
  .bl_point04
--------------------------------*/
.bl_point04 {
  padding-block: 60px;
  position: relative;
}
@media (width >= 768px) {
  .bl_point04 {
    padding-block: 100px;
  }
}

.bl_point04::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-site-bg);
  background-size: 100% 100%;
  z-index: -2;
}

.bl_point04::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/point04_bg_top.svg"), url("../img/point04_bg_bottom.svg");
  background-position: top left, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  z-index: -1;
}

.bl_point04_lead {
  font-size: 1.5rem;
  font-weight: bold;
  margin-block-start: 60px;
  line-height: 1.5;
}
@media (width >= 768px) {
  .bl_point04_lead {
    font-size: 2rem;
    margin-block-start: 53px;
    text-align: center;
  }
}

.bl_point04_lead_em {
  color: var(--color-site);
  font-style: normal;
}

.bl_point04_content {
  margin-block-start: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: grid;
  row-gap: 40px;
}
@media (width >= 768px) {
  .bl_point04_content {
    padding-left: clamp(70px, 10vw, 140px);
  }
}

.bl_point04_item_member {
  position: relative;
}

.bl_point04_item_member_img {
  width: auto;
}

.bl_point04_item_more {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

/*--------------------------------
  .bl_cta
--------------------------------*/
.bl_cta {
  padding-block: 60px;
}
@media (width >= 768px) {
  .bl_cta {
    padding-block: 80px 100px;
  }
}

.bl_cta_download {
  margin-inline: auto;
  display: grid;
  align-items: center;
  background-color: var(--color-site-bg);
  border-radius: 12px;
}
@media (width >= 768px) {
  .bl_cta_download {
    width: 690px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 40px auto;
    align-items: center;
    border-radius: 0 12px 12px 0;
  }
}

.bl_cta_download_txt {
  padding: 20px 15px;
  background-color: var(--color-site-lite);
  border-radius: 12px 12px 0 0;
  text-align: center;
}
@media (width >= 768px) {
  .bl_cta_download_txt {
    padding: 36px 24px;
    border-radius: 12px 0 0 12px;
    text-align: left;
  }
}

.bl_cta_download_lead {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
}

.bl_cta_download_point {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 4px 12px;
  background-color: #fff;
  color: var(--color-site);
  margin-block-start: 12px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (width >= 768px) {
  .bl_cta_download_point {
    margin-block-start: 20px;
  }
}

.bl_cta_download_arrow {
  width: 100%;
  height: 41px;
  clip-path: polygon(0 0, 100% 0, 100% 1px, 50% 100%, 0 1px);
  background-color: var(--color-site-lite);
  margin-top: -1px;
}
@media (width >= 768px) {
  .bl_cta_download_arrow {
    height: 100%;
    clip-path: polygon(0 0, 0 1px, 100% 50%, 1px 100%, 0% 100%);
  }
}

.bl_cta_download_app {
  display: flex;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  padding: 20px;
}
@media (width >= 768px) {
  .bl_cta_download_app {
    display: flex;
    justify-content: center;
    -moz-column-gap: 60px;
         column-gap: 60px;
    padding-inline: 50px;
  }
}

.bl_cta_download_app_item {
  display: grid;
  row-gap: 16px;
  justify-items: center;
}

.bl_cta_note {
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 20px;
  margin-block-start: 40px;
  display: grid;
  row-gap: 32px;
}
@media (width >= 768px) {
  .bl_cta_note {
    padding: 40px 50px;
    margin-block-start: 80px;
  }
}

.bl_cta_note_title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF5D44;
}

.bl_cta_note_lead_title {
  font-size: 1.125rem;
  font-weight: bold;
}

.bl_cta_note_lead {
  line-height: 1.5;
  display: grid;
  row-gap: 24px;
}

.bl_cta_note_env {
  line-height: 1.5;
  display: grid;
  row-gap: 24px;
}

.bl_cta_note_env_title {
  font-size: 1.125rem;
  font-weight: bold;
}

.bl_cta_note_env_table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
  border-top: 1px solid rgba(204, 204, 204, 0.8);
}

.bl_cta_note_env_table tr {
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
}

.bl_cta_note_env_table td {
  padding: 12px 0;
}

.bl_cta_note_env_table th {
  padding: 12px 0;
  font-weight: normal;
  width: 100px;
}

.bl_cta_link {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-block-start: 40px;
  padding: 16px 40px;
  border: 1px solid var(--color-site);
  border-radius: 9999px;
  line-height: 1.5;
  font-weight: bold;
  font-size: 1.125rem;
}

.bl_cta_link_icon {
  width: 20px;
  height: auto;
}

/*--------------------------------
  .bl_footer
--------------------------------*/
.bl_footer {
  padding-block: 20px 60px;
  text-align: center;
  position: relative;
}
@media (width >= 768px) {
  .bl_footer {
    padding-block: 20px 80px;
    overflow: hidden;
  }
}

.bl_footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  z-index: -2;
}

.bl_footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/footer_bg_sp.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -1;
}
@media (width >= 768px) {
  .bl_footer::after {
    background-image: url("../img/footer_bg.svg");
    background-repeat: no-repeat;
    background-position: top center;
  }
}

.bl_footer_heading {
  display: grid;
  row-gap: 50px;
}

.bl_footer_heading_note {
  text-align: center;
  font-size: 0.875rem;
}
@media (width >= 768px) {
  .bl_footer_heading_note {
    margin-right: -10px;
    font-size: 1rem;
  }
}

.bl_footer_title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 3.05vi + 0.41rem, 1.875rem);
  color: var(--color-site);
  line-height: 1.5;
  font-weight: bold;
}
@media (width >= 768px) {
  .bl_footer_title {
    font-size: clamp(1.625rem, 4.22vi - 6.39px, 2.5rem);
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.bl_footer_title span {
  justify-self: center;
  padding-bottom: 15px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (width >= 768px) {
  .bl_footer_title span {
    margin-inline: 0;
  }
}

.bl_footer_title_icon {
  width: 40px;
}
@media (width >= 768px) {
  .bl_footer_title_icon {
    width: auto;
  }
}

.bl_footer_download {
  margin-block-start: 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (width >= 768px) {
  .bl_footer_download {
    margin-block-start: 40px;
  }
}

.bl_footer_download_title {
  background-color: var(--color-site);
  padding: 12px 24px;
  border-radius: 12px 12px 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
}

.bl_footer_download_app_wrap {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  background-color: var(--color-site-bg);
  position: relative;
}
@media (width >= 768px) {
  .bl_footer_download_app_wrap {
    padding: 40px 80px;
  }
}

.bl_footer_download_app {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  justify-content: center;
}
@media (width >= 768px) {
  .bl_footer_download_app {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}

.bl_footer_download_note {
  margin-block-start: 22px;
  text-align: left;
}

.bl_footer_download_item {
  display: grid;
  row-gap: 20px;
  justify-items: center;
}

.bl_footer_download_app_inko {
  margin-block-start: 40px;
}
@media (width >= 768px) {
  .bl_footer_download_app_inko {
    margin-block-start: 0;
    position: absolute;
    right: -160px;
    bottom: 12px;
    background-image: url("../img/footer_img_inko_pc.svg");
    width: 133px;
    height: 176px;
    z-index: 2;
  }
}

/*--------------------------------
	el_comTitle
--------------------------------*/
/*--------------------------------
	helper
--------------------------------*/
/*--------------------------------
  TOP
--------------------------------*/
/* .un_mv
--------------------------------*/
.un_mv {
  position: relative;
  width: 100%;
  height: 100svh;
}

.un_mv_bg_pict {
  width: 100%;
  height: 100svh;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.un_mv_inner {
  position: relative;
  width: 100%;
  height: 100svh;
}

.un_mv_list {
  position: absolute;
  color: var(--color-white);
  bottom: 30px;
  display: grid;
  font-size: 1.25rem;
  row-gap: 30px;
}
@media (width >= 768px) {
  .un_mv_list {
    bottom: 50px;
    font-size: 1.5rem;
    row-gap: 40px;
  }
}

.un_mv_list_link {
  position: relative;
  padding-right: 45px;
  height: 30px;
  transition: opacity 0.5s;
}
@media (width >= 768px) {
  .un_mv_list_link {
    padding-right: 60px;
    height: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .un_mv_list_link:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=app.css.map */

.bl_info_list li {
  display: flex;
}
.bl_info_list li + li {
  margin-top: 40px;
}
.bl_info_list li .c-mark {
    width: 24.5px;
    height: 24.5px;
    background: #333333;
    color: #ffffff;
    font-weight: 500;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 18px;
    text-align: center;
    line-height: 23px;
    margin-top: 3px;
}
.bl_info_list li > div {
    flex: 1;
    padding-left: 10px;
}
.bl_info_list li .bl_info_contents_lead {
  line-height: 1.6;
  font-weight: 500;
}
.bl_info_list li .bl_info_contents_lead + .bl_info_contents_note {
  margin-top: 6px;
}

@media (width <= 768px) {
.bl_info_list li + li {
  margin-top: 22px;
}
.bl_info_contents_txt {  
    row-gap: 22px;
}
.bl_info_contents_title {
    font-weight: bold;
    text-align: left;
}
}