@charset "UTF-8";
.ecm-wrap,
.layout-header .wrap,
.layout-footer .wrap {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ecm-wrap,
  .layout-header .wrap,
  .layout-footer .wrap {
    padding-inline: 0;
    width: auto;
  }
}

body {
  padding-top: 91px;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 50px;
  }
}

.layout-header .icon-blank,
.layout-footer .icon-blank {
  display: inline-block;
  width: 11px;
  height: 10px;
  fill: #1f2879;
  vertical-align: middle;
}
.layout-header .is-blank,
.layout-footer .is-blank {
  margin-right: 18px;
  position: relative;
}
.layout-header .is-blank .icon-blank,
.layout-footer .is-blank .icon-blank {
  position: absolute;
  right: -18px;
  top: 0.5em;
}

.layout-footer .icon-blank {
  fill: #fff;
}

.layout-header {
  background-color: #fff;
  border-bottom: 1px solid #dbdbdb;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  text-align: left;
  line-height: 1.4;
  font-family: Roboto, YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, Meiryo, sans-serif;
  font-feature-settings: "palt";
  text-rendering: auto;
  -webkit-font-smoothing: auto;
}
@media screen and (max-width: 767px) {
  .layout-header {
    height: 50px;
  }
}
.layout-header a {
  text-decoration: none;
}
.layout-header ul, .layout-header ol, .layout-header dl {
  list-style: none;
  margin: 0;
  padding: 0;
}
.layout-header dt, .layout-header dd {
  margin: 0;
}

.layout-header .layout-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: none;
  min-height: 90px;
  padding-block: 0;
}
@media screen and (max-width: 767px) {
  .layout-header .layout-header_inner {
    min-height: 50px;
    align-items: center;
  }
}

.layout-header .logo {
  padding-top: 7px;
  flex: 0 0 auto;
}
.layout-header .logo img {
  display: block;
  width: 260px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .layout-header .logo {
    padding-top: 0;
    margin-left: 15px;
  }
  .layout-header .logo img {
    width: 137px;
  }
}

.layout-header .layout-header_sptel,
.layout-header .layout-header_spcontact {
  display: none;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .layout-header .layout-header_sptel,
  .layout-header .layout-header_spcontact {
    display: block;
  }
}

.layout-header .layout-header_sptel {
  right: 110px;
}
.layout-header .layout-header_sptel > a {
  background-color: #5e69c4;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 55px;
  font-size: 9px;
  gap: 2px;
}
.layout-header .layout-header_sptel svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.layout-header .layout-header_spcontact {
  right: 55px;
}
.layout-header .layout-header_spcontact > a {
  background-color: #b30000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 55px;
  font-size: 9px;
  gap: 2px;
}
.layout-header .layout-header_spcontact svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.menu {
  background-color: #1f2879;
  cursor: pointer;
  display: none;
  height: 50px;
  width: 55px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000000;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
  }
}
.menu:before {
  color: #fff;
  content: "MENU";
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
}
.menu.is-active:before {
  content: "CLOSE";
}
.menu > span {
  display: block;
  width: 22px;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  height: 13px;
}
.menu > span > span, .menu > span:before, .menu > span:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu > span:before {
  top: 0;
}
.menu > span > span {
  top: 6px;
}
.menu > span:after {
  top: 12px;
}
.menu.is-active > span:before {
  transform: translateY(6px) rotate(45deg);
}
.menu.is-active > span > span {
  opacity: 0;
}
.menu.is-active > span:after {
  transform: translateY(-6px) rotate(-45deg);
}

.layout-header_navigation {
  display: flex;
  align-items: flex-start;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .layout-header_navigation {
    background-color: rgba(21, 21, 21, 0.95);
    display: block;
    height: 100vh;
    width: 80%;
    overflow-y: auto;
    padding: 78px 15px 40px;
    position: fixed;
    right: -100%;
    top: 0;
    transition: right 0.3s ease;
    z-index: 999999;
  }
  .layout-header_navigation.is-active {
    right: 0;
  }
}

.global-navigation {
  margin-left: auto;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .global-navigation {
    margin: 0;
  }
}
.global-navigation > ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .global-navigation > ul {
    display: block;
  }
}
.global-navigation > ul > li {
  font-size: 15px;
  line-height: 1;
  margin-right: 47px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.global-navigation > ul > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .global-navigation > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 0;
    white-space: normal;
  }
}
.global-navigation > ul > li > a,
.global-navigation > ul > li .sub_sptoggle a {
  color: #000;
  display: block;
  font-weight: 700;
  padding-bottom: 11px;
  text-decoration: none;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .global-navigation > ul > li > a,
  .global-navigation > ul > li .sub_sptoggle a {
    color: #fff;
    font-size: 78%;
    padding: 22px 0 22px 115px;
  }
}
.global-navigation > ul > li > a > span,
.global-navigation > ul > li .sub_sptoggle a > span {
  display: none;
}
@media screen and (max-width: 767px) {
  .global-navigation > ul > li > a > span,
  .global-navigation > ul > li .sub_sptoggle a > span {
    display: inline-block;
    color: #7684ff;
    font-family: "Roboto", sans-serif;
    font-size: 19px;
    font-weight: 500;
    position: absolute;
    left: 5px;
    top: 15px;
  }
}
.global-navigation > ul > li > a:before,
.global-navigation > ul > li .sub_sptoggle a:before {
  background-color: #1f2879;
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .global-navigation > ul > li > a:before,
  .global-navigation > ul > li .sub_sptoggle a:before {
    background-color: #1f2879;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 8' fill='%23fff'%3E%3Cpath d='M0 3h13V0l6 4-6 4V5H0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 13px 7px;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .global-navigation > ul > li > a:hover,
  .global-navigation > ul > li .sub_sptoggle a:hover {
    color: #1f2879;
  }
  .global-navigation > ul > li > a:hover:before,
  .global-navigation > ul > li .sub_sptoggle a:hover:before {
    transform: scaleY(1);
  }
}
.global-navigation .icon-blank {
  top: 0.3em;
}
@media screen and (max-width: 767px) {
  .global-navigation .icon-blank {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .global-navigation > ul > li > a.is-blank {
    margin-right: 0;
  }
}

.global-navigation .sub {
  position: static;
}
.global-navigation .sub .sub_sptoggle {
  position: relative;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_sptoggle {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_sptoggle a:before {
    content: none;
  }
}
.global-navigation .sub .js-nav-toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .js-nav-toggle {
    display: block;
    width: 50px;
    height: 50px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
    flex: 0 0 auto;
    background: radial-gradient(circle 10px at right 10px center, #1f2879 99%, transparent 100%);
  }
  .global-navigation .sub .js-nav-toggle:before, .global-navigation .sub .js-nav-toggle:after {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(50%, -50%);
    transition: opacity 0.2s ease;
  }
  .global-navigation .sub .js-nav-toggle:before {
    width: 10px;
    height: 2px;
  }
  .global-navigation .sub .js-nav-toggle:after {
    width: 2px;
    height: 10px;
  }
  .global-navigation .sub .js-nav-toggle.is-active:after {
    opacity: 0;
  }
}
.global-navigation .sub .sub_box {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 90px;
  z-index: -1;
  text-align: left;
  transition: opacity 0.5s ease;
}
.global-navigation .sub .sub_box:before {
  background-color: rgba(0, 0, 0, 0.95);
  content: "";
  height: 100%;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box {
    height: auto;
    opacity: 1;
    overflow: hidden;
    padding-bottom: 0;
    position: static;
    transition: all 0.3s;
  }
  .global-navigation .sub .sub_box:before {
    content: none;
  }
  .global-navigation .sub .sub_box.is-active {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .global-navigation .sub:hover .sub_box {
    opacity: 1;
    height: auto;
    overflow: visible;
    padding: 40px 0 50px;
    z-index: 1;
  }
}
.global-navigation .sub .sub_box .wrap {
  max-width: 1140px;
}
.global-navigation .sub .sub_box .sub_box-wrap {
  padding-left: 310px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box .sub_box-wrap {
    padding-left: 0;
  }
}
.global-navigation .sub .sub_box_title {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_title {
    display: none;
  }
}
.global-navigation .sub .sub_box_title > h2 {
  color: #7684ff;
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: 500;
  margin: 0;
}
.global-navigation .sub .sub_box_title > h2 > span {
  color: #fff;
  display: block;
  font-family: Roboto, YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-top: 0.5em;
}
.global-navigation .sub .sub_box_list {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_list {
    display: block;
  }
}
.global-navigation .sub .sub_box_list > dl {
  max-width: 380px;
  width: 100%;
}
.global-navigation .sub .sub_box_list > dl:nth-child(n+2) {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_list > dl:nth-child(n+2) {
    margin: 10px 0 0;
  }
}
.global-navigation .sub .sub_box_list > dl > dt {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_list > dl > dt {
    font-size: 13px;
    margin-bottom: 0;
  }
}
.global-navigation .sub .sub_box_list > dl > dt > a {
  background-color: #1f2879;
  color: #fff;
  display: block;
  font-weight: 700;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.global-navigation .sub .sub_box_list > dl > dt > a:before {
  content: "";
  height: 100%;
  width: 19px;
  position: absolute;
  right: 1px;
  top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 8' fill='%23fff'%3E%3Cpath d='M0 3h13V0l6 4-6 4V5H0z'/%3E%3C/svg%3E") no-repeat 0 50%;
  background-size: 80%;
}
.global-navigation .sub .sub_box_list > dl > dt > a > span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_list > dl > dt > a {
    padding: 15px 10px;
    text-align: left;
  }
  .global-navigation .sub .sub_box_list > dl > dt > a:before {
    right: 10px;
  }
  .global-navigation .sub .sub_box_list > dl > dt > a br {
    display: none;
  }
  .global-navigation .sub .sub_box_list > dl > dt > a > span {
    display: inline;
    font-size: 10px;
    font-weight: 700;
  }
}
.global-navigation .sub .sub_box_list > dl > dd {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_list > dl > dd {
    background-color: #1f2879;
    display: block;
    padding: 0 5px 5px;
  }
}
.global-navigation .sub .sub_box_list > dl > dd ul {
  display: flex;
  flex-wrap: wrap;
  width: inherit;
}
.global-navigation .sub .sub_box_list > dl > dd ul > li {
  font-size: 13px;
  line-height: 1.5;
}
.global-navigation .sub .sub_box_list > dl > dd ul > li > a {
  background: linear-gradient(0deg, #fff, #fff) no-repeat 0 100%;
  background-size: 0% 1px;
  color: #fff;
  padding-bottom: 3px;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .global-navigation .sub .sub_box_list > dl > dd ul > li > a:hover {
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_list > dl > dd ul > li > a {
    display: block;
    padding: 10px;
  }
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type01:nth-child(n+2) {
  margin-left: 20px;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type01 ul > li {
  width: 49%;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type01 > ul {
  margin-bottom: 30px;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type01 > ul:last-child {
  margin-bottom: 0;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type01 > ul > li {
  margin-top: 10px;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type02 {
  padding-inline: 5px;
  width: inherit;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type02 ul > li {
  width: 33%;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type02 ul > li:nth-child(n+4) {
  margin-top: 10px;
}
.global-navigation .sub .sub_box_list > dl > dd .sub_box_list_type02 > ul {
  margin-bottom: 30px;
}
.global-navigation .sub .sub_box ul.sol_list > li {
  width: 50% !important;
  margin-top: 0 !important;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box ul.sol_list > li {
    width: auto !important;
    margin-bottom: 0;
  }
}
.global-navigation .sub .sub_box .servicelist > dl > dd .sub_box_list_type01 ul > li {
  width: 100%;
}
.global-navigation .sub .sub_box_subtitle,
.global-navigation .sub .sub_box .sub_box_list_type01 > p,
.global-navigation .sub .sub_box .sub_box_list_type02 > p {
  border-bottom: 1px solid #343434;
  color: #7684ff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.global-navigation .sub .sub_box_subtitle:before,
.global-navigation .sub .sub_box .sub_box_list_type01 > p:before,
.global-navigation .sub .sub_box .sub_box_list_type02 > p:before {
  background-color: #4555e9;
  content: "";
  height: 1px;
  width: 50px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box_subtitle,
  .global-navigation .sub .sub_box .sub_box_list_type01 > p,
  .global-navigation .sub .sub_box .sub_box_list_type02 > p {
    background-color: #3c47aa;
    border-bottom: 0;
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
    padding: 13px 10px;
  }
  .global-navigation .sub .sub_box_subtitle:before,
  .global-navigation .sub .sub_box .sub_box_list_type01 > p:before,
  .global-navigation .sub .sub_box .sub_box_list_type02 > p:before {
    content: none;
  }
}
.global-navigation .sub .sub_box.theme-service .sub_box-wrap {
  padding-left: 210px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box.theme-service .sub_box-wrap {
    padding-left: 0;
  }
}
.global-navigation .sub .sub_box.theme-service .sub_box_list > dl:nth-child(n+2) {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box.theme-service .sub_box_list > dl:nth-child(n+2) {
    margin-left: 0;
  }
}
.global-navigation .sub .sub_box.theme-service .sub_box_list > dl > dd .sub_box_list_type01 {
  width: auto;
}
.global-navigation .sub .sub_box.theme-company .sub_box-wrap,
.global-navigation .sub .sub_box.theme-recruit .sub_box-wrap {
  padding-left: 290px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box.theme-company .sub_box-wrap,
  .global-navigation .sub .sub_box.theme-recruit .sub_box-wrap {
    padding-left: 0;
  }
}
.global-navigation .sub .sub_box .sub_box_list.theme-image {
  display: block;
}
.global-navigation .sub .sub_box .sub_box_list.theme-image > ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box .sub_box_list.theme-image > ul {
    display: block;
  }
}
.global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li {
  margin-right: 20px;
  width: 240px;
}
.global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li:nth-child(3n) {
  margin-right: 0;
}
.global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li:nth-child(n+4) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li {
    margin-right: 0;
    width: auto;
  }
  .global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li:nth-child(n+2) {
    margin-top: 5px;
  }
}
.global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li > a {
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li > a figure {
    display: none;
  }
}
.global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li > a > span {
  background-color: #1f2879;
  color: #fff;
  display: block;
  font-weight: 700;
  padding: 15px 0;
  text-align: center;
  position: relative;
}
.global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li > a > span:before {
  content: "";
  height: 100%;
  width: 19px;
  position: absolute;
  right: 15px;
  top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 8' fill='%23fff'%3E%3Cpath d='M0 3h13V0l6 4-6 4V5H0z'/%3E%3C/svg%3E") no-repeat 0 50%;
  background-size: 19px 8px;
}
@media screen and (max-width: 767px) {
  .global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li > a > span {
    padding: 15px 11px;
    text-align: left;
  }
  .global-navigation .sub .sub_box .sub_box_list.theme-image > ul > li > a > span:before {
    right: 13px;
  }
}

.layout-header .link-en {
  position: absolute;
  right: 265px;
  top: 20px;
  font-size: 14px;
}
.layout-header .link-en a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.layout-header .link-en a:hover {
  color: #1f2879;
}
@media screen and (max-width: 767px) {
  .layout-header .link-en {
    display: none;
  }
}

.layout-header_inner_helper {
  position: absolute;
  right: 30px;
  top: 0;
}
.layout-header_inner_helper > ul {
  display: flex;
}
.layout-header_inner_helper > ul > li > a {
  background-color: #f8f8f8;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 13px 0;
  text-align: center;
  width: 180px;
}
.layout-header_inner_helper > ul > li > a svg {
  width: 16px;
  fill: #1f2879;
  margin-right: 6px;
  vertical-align: middle;
}
.layout-header_inner_helper > ul > li > a {
  min-height: 47px;
}
.layout-header_inner_helper > ul > li > a svg {
  margin-right: 10px;
}
.layout-header_inner_helper > ul > li.is-contact {
  font-weight: 700;
  margin-left: 5px;
}
.layout-header_inner_helper > ul > li.is-contact > a {
  background-color: #b30000;
  border: 1px solid #b30000;
  color: #fff;
  height: auto;
  min-height: 47px;
  width: 200px;
  padding: 0;
  transition: opacity 0.3s ease;
}
.layout-header_inner_helper > ul > li.is-contact > a:hover {
  opacity: 0.8;
}
.layout-header_inner_helper > ul > li.is-contact > a svg {
  fill: #fff;
  width: 20px;
}
@media screen and (max-width: 767px) {
  .layout-header_inner_helper {
    position: static;
    right: auto;
    top: auto;
  }
  .layout-header_inner_helper > ul {
    display: block;
  }
  .layout-header_inner_helper > ul > li.is-contact {
    margin-left: 0;
  }
  .layout-header_inner_helper > ul > li.is-contact > a {
    width: 100%;
    padding: 18px 0;
    font-size: 14px;
  }
}

.layout-header_inner_splinks {
  display: none;
}
@media screen and (max-width: 767px) {
  .layout-header_inner_splinks {
    display: block;
    padding: 20px;
  }
  .layout-header_inner_splinks li + li {
    margin-top: 4px;
  }
  .layout-header_inner_splinks a {
    color: #fff;
    display: block;
    font-size: 13px;
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  body.is-nav-open {
    overflow: hidden;
  }
}

.ecm-breadcrumb-bar {
  background: #1f2879;
  color: #fff;
  padding-block: 10px;
}
.ecm-breadcrumb-bar .lm-breadcrumb {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ecm-breadcrumb-bar .lm-breadcrumb::-webkit-scrollbar {
  display: none;
}
.ecm-breadcrumb-bar .lm-breadcrumb__list {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.ecm-breadcrumb-bar .lm-breadcrumb__item {
  flex: 0 0 auto;
  white-space: nowrap;
}
.ecm-breadcrumb-bar .lm-breadcrumb__item a {
  color: #fff;
  text-decoration: none;
}
.ecm-breadcrumb-bar .lm-breadcrumb__item a:hover {
  color: #fff;
  text-decoration: underline;
}
.ecm-breadcrumb-bar .lm-breadcrumb__item:not(:last-child)::after {
  content: ">";
  color: #fff;
  margin-inline: 8px;
}
.ecm-breadcrumb-bar .lm-breadcrumb__item [aria-current=page] {
  color: #fff;
  font-weight: 400;
}

.layout-footer {
  background-color: #151515;
  color: #fff;
  padding: 68px 0 78px;
  margin-top: 80px;
  text-align: left;
  font-family: Roboto, YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, Meiryo, sans-serif;
  font-feature-settings: "palt";
  text-rendering: auto;
  -webkit-font-smoothing: auto;
}
@media screen and (max-width: 767px) {
  .layout-footer {
    padding: 40px 20px 55px;
  }
}
.layout-footer a {
  color: #fff;
  text-decoration: none;
}
.layout-footer a:hover {
  color: #7684ff;
}
.layout-footer ul, .layout-footer ol, .layout-footer dl {
  list-style: none;
  margin: 0;
  padding: 0;
}
.layout-footer dt, .layout-footer dd {
  margin: 0;
}
.layout-footer p {
  margin: 0;
}

.layout-footer_inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .layout-footer_inner {
    display: block;
  }
}

.layout-footer_inner_left {
  flex: 0 0 auto;
}
.layout-footer_inner_left ul {
  margin: 24px 0 0;
}
.layout-footer_inner_left li + li {
  margin-top: 8px;
}
.layout-footer_inner_left li a {
  font-size: 15px;
}
.layout-footer_inner_left .copy {
  display: block;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.layout-footer_inner_logo img {
  display: block;
  width: 200px;
  height: auto;
}

.layout-footer_inner_right {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .layout-footer_inner_right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    margin: 40px 0 0;
  }
}

.layout-footer_inner_list dt p {
  color: #7684ff;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.layout-footer_inner_list dt p span {
  display: block;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}
.layout-footer_inner_list dd li + li {
  margin-top: 6px;
}
.layout-footer_inner_list dd a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.floating__banner {
  position: fixed;
  right: 0;
  top: 60%;
  z-index: 9998;
}
@media screen and (max-width: 767px) {
  .floating__banner {
    top: 70%;
  }
}

.floating__banner-box {
  background: #b30000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: opacity 0.3s ease;
}
.floating__banner-box:hover {
  opacity: 0.7;
  color: #fff;
}
.floating__banner-box svg {
  width: 20px;
  fill: #fff;
}
.floating__banner-box span {
  display: block;
  padding-top: 5px;
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}
.page-top[hidden] {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 80px;
    right: auto;
    left: 15px;
  }
}

.page-top__link {
  background: #1f2879;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.page-top__link:hover {
  background: #1a2265;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  color: #fff;
}
.page-top__link svg {
  width: 20px;
  height: 20px;
}
.page-top__link span {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-top__link {
    width: 50px;
    height: 50px;
  }
  .page-top__link svg {
    width: 16px;
    height: 16px;
  }
  .page-top__link span {
    font-size: 9px;
  }
}

.grecaptcha-badge {
  right: auto !important;
  left: 14px !important;
  overflow: hidden !important;
  width: 70px !important;
  transition: width 0.3s ease !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

.lm-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  text-align: left;
  color: #000;
  padding-block: 40px;
  margin-bottom: 56px;
}
.lm-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  z-index: -1;
  background: linear-gradient(45deg, #f2f2f2 0%, #e7e7e7 33%, #adadad 100%);
}
@media screen and (max-width: 767px) {
  .lm-hero {
    min-height: 160px;
    padding-block: 24px;
    margin-bottom: 32px;
  }
}
.lm-hero h1 {
  color: #1f2879;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}
.lm-hero__eyebrow {
  color: #1f2879;
  font-family: var(--lm-font-en);
  opacity: 0.85;
  margin: 0 0 8px;
}
.lm-hero__intro,
.lm-hero p {
  color: #1f2879;
  max-width: 820px;
  margin-inline: 0;
  margin-top: 0px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.lm-hero__intro, .lm-hero__intro p {
  color: #000;
}
.lm-hero a {
  color: #1f2879;
  text-decoration: underline;
}

.lm-main {
  overflow-x: clip;
}

.lm-filter {
  gap: 10px;
  margin-block: 0 32px;
}
@media screen and (max-width: 767px) {
  .lm-filter {
    margin-bottom: 28px;
  }
}

.lm-filter__btn {
  border: 1px solid #1f2879;
  border-radius: 5px;
  background: #fff;
  color: #1f2879;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 8px;
}
.lm-filter__btn:hover {
  background: #1f2879;
  color: #fff;
  border-color: #1f2879;
}
.lm-filter__btn.is-active {
  background: #1f2879;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lm-filter__btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.lm-taglist {
  gap: 8px 10px;
  margin-block: -28px 48px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .lm-taglist {
    margin: -12px 0 28px;
  }
}

.lm-taglist__item {
  border: none;
  color: #1f2879;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 14px;
}
.lm-taglist__item:hover {
  background: #1f2879;
  color: #fff;
  border-color: #1f2879;
}
@media screen and (max-width: 767px) {
  .lm-taglist__item {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.lm-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px 30px;
}
@media screen and (max-width: 767px) {
  .lm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lm-card {
  border: 1px solid #e5e7eb;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
  padding: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.lm-card:hover {
  border-color: #1f2879;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.lm-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 8px;
  min-height: 20px;
}

.lm-card__thumblink {
  display: block;
}

.lm-card__thumbwrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.lm-card__thumb {
  border-radius: 0;
  transition: transform 0.3s ease-out;
}

.lm-card:hover .lm-card__thumb {
  transform: scale(1.1);
}

.lm-card__body {
  padding: 0;
  gap: 8px;
}

.lm-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
.lm-card__title a {
  color: inherit;
  text-decoration: none;
}

.lm-card:hover .lm-card__title,
.lm-card:hover .lm-card__title a {
  color: #1f2879;
}

.lm-card__body p {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lm-card .lm-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  margin-top: auto;
  background: #fff;
  border: 1px solid #1f2879;
  color: #1f2879;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.lm-card .lm-card__btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.lm-card:hover .lm-card__btn {
  background: #1f2879;
  color: #fff;
}

.lm-tag {
  display: inline-block;
  border-radius: 0;
  background: #1f2879;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 10px;
  letter-spacing: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.lm-card .lm-tag {
  color: #fff;
}

.lm-tag:hover {
  opacity: 0.85;
}

.lm-tag[data-cat=webinar] {
  background: #f7bb09;
  color: #1a1a1a;
}

.lm-tag[data-cat=seminar] {
  background: #f7bb09;
  color: #1a1a1a;
}

.lm-tag[data-cat=service] {
  background: #e0380e;
}

.lm-tag[data-cat=sales] {
  background: #e0380e;
}

.lm-tags {
  margin-top: 0;
  gap: 8px;
}

.lm-card__body .lm-tags {
  margin: 2px 0 4px;
}

.lm-tags__item,
.lm-card .lm-tags__item {
  background: #fff;
  border: 1px solid #1f2879;
  border-radius: 5px;
  color: #1f2879;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding: 0 10px;
}
.lm-tags__item:hover,
.lm-card .lm-tags__item:hover {
  background: #1f2879;
  color: #fff;
  border-color: #1f2879;
}

.lm-btn {
  border-radius: 5px;
  background: #b30000;
  box-shadow: none;
  font-weight: 700;
  padding: 0.9em 2em;
}
.lm-btn:hover {
  background: #8f0000;
  transform: none;
  box-shadow: none;
}
.lm-btn:focus-visible {
  outline: 3px solid rgba(179, 0, 0, 0.35);
  outline-offset: 2px;
}

.lm-btn--ghost {
  background: #fff;
  border-color: #1f2879;
  color: #1f2879;
}
.lm-btn--ghost:hover {
  background: #f5f5f5;
  color: #1f2879;
}

.lm-detail__heading h1 {
  font-weight: 900;
  font-size: clamp(18px, 3.2vw, 24px);
  line-height: 1.5;
}

.lm-detail__head {
  position: relative;
  border-bottom: 1px solid #cacaca;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.lm-detail__head:after {
  content: "";
  background: #1f2879;
  width: 140px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.lm-detail__head .lm-card__cats {
  margin-top: 14px;
}
.lm-detail__head .lm-tags {
  margin-top: 10px;
}

.lm-detail__thumb img {
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.lm-detail__side {
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lm-detail:has(.lm-detail__side) {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
  }
  .lm-detail__side {
    top: 120px;
  }
}
.lm-form {
  background: #eff3f6;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 32px 20px;
}

.lm-form__label {
  color: #000;
  font-size: 13px;
}

.lm-form__req,
.lm-form__opt {
  display: inline-block;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

.lm-form__req {
  background: var(--lm-color-danger);
  border: 1px solid var(--lm-color-danger);
  color: #fff;
}

.lm-form__opt {
  background: #fff;
  border: 1px solid #bbb;
  color: #777;
}

.lm-form__control {
  border-radius: 3px;
  border-color: #ccc;
  background: #fff;
  font-size: 15px;
}
.lm-form__control:focus {
  border-color: #1f2879;
  box-shadow: 0 0 0 3px rgba(31, 40, 121, 0.12);
}

.lm-form__choices label {
  border-radius: 3px;
  background: #fff;
}
.lm-form__choices label:hover {
  border-color: #1f2879;
  background: #fff;
}
.lm-form__choices input {
  accent-color: #1f2879;
}

.lm-form__field--span .lm-form__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .lm-form__field--span .lm-form__choices {
    grid-template-columns: 1fr;
  }
}

.lm-form__consent {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 13px;
}
.lm-form__consent input {
  accent-color: #1f2879;
}

.lm-form > .lm-btn {
  border-radius: 5px;
  font-size: 16px;
  margin-top: 12px;
}

.lm-form__note-below {
  margin: 8px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--lm-color-danger);
}

.lm-modal__panel {
  border-radius: 0;
}

.lm-modal {
  background: rgba(31, 40, 121, 0.55);
}

.lm-prose h2 {
  background: #232b7b;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 0;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 2.4em 0 1.6em;
  position: relative;
}
.lm-prose h2:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top-color: #232b7b;
}
@media screen and (max-width: 767px) {
  .lm-prose h2 {
    font-size: 18px;
    padding: 10px 15px;
  }
}
.lm-prose h3 {
  font-size: 18px;
  border-left: 4px solid #1f2879;
  padding-left: 12px;
}
.lm-prose blockquote {
  border-left-color: #1f2879;
  border-radius: 0;
  background: #f5f5f5;
}
.lm-prose img {
  border-radius: 0;
}
.lm-prose th {
  background: #eff3f6;
}

.lm-bios__title {
  font-size: 18px;
  border-bottom-color: #cacaca;
}

.lm-bio {
  background: #f5f5f5;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lm-bio__avatar {
  background: #1f2879;
}

.lm-bio__role {
  background: #1f2879;
  color: #fff;
  border-radius: 3px;
  letter-spacing: 0.08em;
}

.lm-bio__name {
  color: #000;
}

.lm-thanks {
  background: #eff3f6;
  border: 1px solid #ccc;
  padding: 40px 20px;
}
.lm-thanks__title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2879;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .lm-thanks__title {
    font-size: 18px;
  }
}
.lm-thanks__note {
  font-size: 14px;
  line-height: 1.9;
}
.lm-thanks .lm-btn {
  font-size: 16px;
  padding: 1em 2.5em;
}

.lm-alert {
  border-radius: 3px;
  border-left-color: #1f2879;
  background: #eff3f6;
}

.lm-alert--error {
  background: #fef3f2;
  border-left-color: var(--lm-color-danger);
}

.lm-empty {
  border: 1px dashed #ccc;
  font-size: 14px;
}

.lm-box {
  background: #f5f5f5;
  border: 0;
  border-left: 0;
  border-radius: 0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .lm-box {
    padding: 20px 15px;
  }
}

.lm-toc {
  border-radius: 0;
  border-color: #ccc;
}

.ecm-thanks {
  max-width: 720px;
  margin: 0 auto;
  padding-block: 64px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ecm-thanks {
    padding-block: 40px 0;
  }
}
.ecm-thanks__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #1f2879;
  color: #fff;
}
.ecm-thanks__mark svg {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .ecm-thanks__mark {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  .ecm-thanks__mark svg {
    width: 26px;
    height: 26px;
  }
}
.ecm-thanks__title {
  color: #1f2879;
  font-size: 34px;
  line-height: 1.3;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .ecm-thanks__title {
    font-size: 24px;
  }
}
.ecm-thanks__lead {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .ecm-thanks__lead {
    font-size: 15px;
    line-height: 1.9;
  }
}
.ecm-thanks__doc {
  margin-top: 36px;
  padding: 24px 28px;
  background: #f5f5f5;
  border-left: 4px solid #1f2879;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .ecm-thanks__doc {
    margin-top: 28px;
    padding: 18px 16px;
  }
}
.ecm-thanks__doc-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #666;
}
.ecm-thanks__doc-title {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .ecm-thanks__doc-title {
    font-size: 16px;
  }
}
.ecm-thanks__doc-desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}
@media screen and (max-width: 767px) {
  .ecm-thanks__doc-desc {
    font-size: 13px;
  }
}
.ecm-thanks__note {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: #666;
}

.ecm-next {
  max-width: 1080px;
  margin: 0 auto;
  padding-block: 64px 0;
}
@media screen and (max-width: 767px) {
  .ecm-next {
    padding-block: 40px 0;
  }
}
.ecm-next__head {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .ecm-next__head {
    margin-bottom: 24px;
  }
}
.ecm-next__title {
  color: #1f2879;
  font-size: 26px;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .ecm-next__title {
    font-size: 20px;
  }
}
.ecm-next__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .ecm-next__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.ecm-next__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #cacaca;
  text-decoration: none;
  color: #000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.ecm-next__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 3px;
  background: #1f2879;
  transition: width 0.3s ease;
}
.ecm-next__card:hover {
  border-color: #1f2879;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  color: #000;
}
.ecm-next__card:hover::before {
  width: calc(100% + 2px);
}
.ecm-next__card:hover .ecm-next__arrow {
  transform: translateX(4px);
}
@media screen and (max-width: 767px) {
  .ecm-next__card {
    padding: 20px 16px;
  }
}
.ecm-next__en {
  font-family: var(--lm-font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1f2879;
}
.ecm-next__ja {
  margin-top: 6px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ecm-next__ja {
    font-size: 17px;
  }
}
.ecm-next__desc {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.9;
  color: #444;
}
.ecm-next__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #1f2879;
}
.ecm-next__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

:root {
  --lm-color-bg: #ffffff;
  --lm-color-surface: #eff3f6;
  --lm-color-surface-2: #f5f5f5;
  --lm-color-text: #000000;
  --lm-color-muted: #666666;
  --lm-color-primary: #1f2879;
  --lm-color-primary-contrast: #ffffff;
  --lm-color-accent: #1f2879;
  --lm-color-accent-hover: #3c47aa;
  --lm-color-accent-soft: #eef0f8;
  --lm-color-border: #cacaca;
  --lm-color-danger: #d92d20;
  --lm-color-em-red: #e0380e;
  --lm-color-em-blue: #1f2879;
  --lm-color-check: #5e69c4;
  --lm-radius: 5px;
  --lm-radius-sm: 3px;
  --lm-radius-pill: 4px;
  --lm-space: 16px;
  --lm-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.12);
  --lm-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  --lm-shadow-lg: 0 8px 18px rgba(0, 0, 0, 0.22);
  --lm-font: 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic,
    'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  --lm-font-en: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --lm-maxw: 1080px;
}

h1, h2, h3, h4 {
  font-weight: 900;
}

.lm-container {
  padding-inline: 15px;
}

.lm-main {
  padding-block: 0;
}

/*# sourceMappingURL=custom.css.map */
