.ly_header {
  width: 100%;
  padding: 15.5px 0;
  position: fixed;
  z-index: 999;
}

.bl_header {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.bl_header_inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1366px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_header_btn {
  display: inline-block;
  padding: 12px 16px;
  background: #4c566a;
  border: 1px solid #4c566a;
  color: #eceff4;
  border-radius: 6px;
  transition: all 0.3s;
}

.bl_header_btn:hover {
  background: #eceff4;
  color: #4c566a;
}

.ly_footer {
  width: 100%;
  padding: 40px 0 24px;
}

@media screen and (min-width: 1080px) {
  .ly_footer {
    padding: 64px 0 24px;
  }
}
.bl_footer_inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

@media screen and (min-width: 1080px) {
  .bl_footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.bl_footer_nav_listItem {
  text-align: center;
  color: #4c566a;
  transition: all 0.3s;
}

.bl_footer_nav_listItem:hover {
  opacity: 0.7;
}

.bl_footer_nav_listItem + .bl_footer_nav_list_line {
  margin-top: 8px;
}

.bl_footer_copyRight_wrapper {
  text-align: center;
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .bl_footer_nav_list_line {
    width: 1px;
    height: 16px;
    transform: rotate(15deg);
    background: #4c566a;
  }
  .bl_footer_nav_list {
    display: flex;
    gap: 12px;
  }
}
body {
  font-size: 14px;
  font-family: "Noto Sans JP";
  color: #4c566a;
  line-height: 175%;
  font-display: swap;
}

span {
  display: block;
}

@media screen and (min-width: 1080px) {
  body {
    font-size: 16px;
  }
}
.bl_cont_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .bl_cont_inner {
    width: 80%;
  }
}
.bl_imgWrapper img {
  width: 100%;
}

.un_lb__reverse {
  display: none;
}

@media screen and (min-width: 1080px) {
  .un_lb {
    display: none;
  }
  .un_lb__reverse {
    display: block;
  }
}
.ly_cont {
  padding: 80px 0;
}

.ly_secTtl {
  text-align: center;
}

.ly_btn {
  margin-top: 24px;
  overflow: hidden;
}

.bl_contBg_light {
  background: #eceff4;
}

.bl_contBg_dark {
  background: #2d3440;
}

.bl_secChange img {
  width: 100%;
  height: auto;
  max-height: 200px;
}

.el_secTtl {
  font-size: 24px;
  font-weight: 700;
  line-height: 155%;
}

.el_secTtl__white {
  color: #eceff4;
}

@media screen and (min-width: 1080px) {
  .el_secTtl {
    font-size: 32px;
  }
}
.el_btn {
  display: inline-block;
  padding: 14.5px 58px;
  background: #4c566a;
  border: 1px solid #4c566a;
  color: #eceff4;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s;
  transform: translateY(80px);
}

.el_btn::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 2px;
  background: #eceff4;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  transition: all 0.3s;
}

.el_btn::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #eceff4;
  border-right: 2px solid #eceff4;
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  transition: all 0.3s;
}

.el_btn:hover {
  background: #eceff4;
  color: #4c566a;
}

.el_btn:hover::before {
  background: #4c566a;
}

.el_btn:hover::after {
  border-bottom: 2px solid #4c566a;
  border-right: 2px solid #4c566a;
}

@media screen and (min-width: 1080px) {
  .el_btn {
    font-size: 18px;
  }
}
.ly_kv {
  padding: 110px 0 24px;
}

.bl_kv_inner {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .bl_kv_inner {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.bl_kv_imgWrapper {
  max-width: 540px;
  -webkit-animation: kv_an 2s infinite alternate;
          animation: kv_an 2s infinite alternate;
}
.bl_kv_imgWrapper img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .bl_kv_imgWrapper img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1080px) {
  .bl_kv_imgWrapper img {
    width: 100%;
  }
}

@-webkit-keyframes kv_an {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(0px);
  }
}

@keyframes kv_an {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(0px);
  }
}
.bl_kv_body {
  margin-top: 32px;
  max-width: 500px;
}
@media screen and (min-width: 1080px) {
  .bl_kv_body {
    max-width: 380px;
  }
}

.bl_kv_mainCopy {
  font-size: 30px;
  font-weight: 700;
  line-height: 155%;
}

@media screen and (min-width: 1080px) {
  .bl_kv_mainCopy {
    font-size: 38px;
  }
}
.bl_kv_function_list {
  margin-top: 14px;
}

.bl_kv_function_listItem {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.bl_kv_function_listItem::before {
  display: inline-block;
  content: "";
  width: 14px;
  height: 10px;
  border-bottom: 3px solid #5e81ac;
  border-left: 3px solid #5e81ac;
  transform: rotate(-45deg);
  vertical-align: middle;
}

@media screen and (min-width: 1080px) {
  .bl_kv_function_list {
    margin-top: 20px;
  }
  .bl_kv_function_listItem {
    font-size: 18px;
  }
  .bl_kv_function_listItem::before {
    width: 18px;
    height: 12px;
  }
}
.bl_comit_list {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .bl_comit_list {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.bl_comit_listItem {
  margin: 0 auto;
  max-width: 344px;
}

.bl_comit_listItem + .bl_comit_listItem {
  margin-top: 40px;
}

.bl_comit_listItem_imgWrapper {
  text-align: center;
}

.bl_comit_listItem_ttl {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}

.bl_comit_listItem_txt {
  margin-top: 16px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .bl_comit_listItem_ttl {
    font-size: 22px;
  }
}
.bl_function_list {
  margin-top: 40px;
  max-width: 1080px;
}

.bl_function_listItem + .bl_function_listItem {
  margin-top: 40px;
}

.bl_function_listItem_imgWrapper {
  max-width: 600px;
}
.bl_function_listItem_imgWrapper img {
  width: 100%;
  height: auto;
}

.bl_function_listItem_txt_group {
  margin-top: 14px;
  max-width: 370px;
}

.bl_function_listItem_ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: #eceff4;
}

.bl_function_listItem_txt {
  margin-top: 8px;
  color: #eceff4;
}

@media screen and (min-width: 1080px) {
  .bl_function_list {
    margin-top: 80px;
  }
  .bl_function_listItem figure {
    display: flex;
    justify-content: space-between;
    gap: 56px;
  }
  .bl_function_listItem:nth-child(2) figure {
    flex-direction: row-reverse;
  }
  .bl_function_listItem + .bl_function_listItem {
    margin-top: 64px;
  }
  .bl_function_listItem_ttl {
    font-size: 22px;
  }
  .bl_function_listItem_txt {
    margin-top: 16px;
  }
}
/*# sourceMappingURL=styles.css.map */