@charset "UTF-8";
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
 * base
 *--------------------------------------*/
/*--------------------------------------*
 * color
 *--------------------------------------*/
/*--------------------------------------*
 * breakpoint
 *--------------------------------------*/
/*--------------------------------------*
 * px to vw
 *--------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #372D2D;
  font-size: 1.6rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  width: 100%;
  background-color: #ffffff;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  color: #f2f2f2;
  text-decoration: underline;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
a:hover {
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * svg
 *--------------------------------------*/
/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * button
 *--------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 16px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.25);
  z-index: 100;
}
@media (min-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 16px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.25);
    z-index: 100;
  }
}
.l-header__ttl {
  font-weight: bold;
  font-size: 12px;
  background: url(../../img/lp/header/logo.png) left center no-repeat;
  background-size: auto 29px;
  padding: 8px 0 8px 206px;
  overflow: hidden;
  white-space: nowrap;
  /* 文字がはみ出た時に三点リーダーにする */
  text-overflow: ellipsis;
}
.l-header__cnt {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__cnt .c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #242424;
  background: #FFCB37;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  padding: 0;
  width: 202px;
  height: 33px;
  position: relative;
}
@media (max-width: 767px) {
  .l-header__cnt .c-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #242424;
    background: #FFCB37;
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 138px;
    height: 33px;
    position: relative;
  }
  .l-header__cnt .c-button::before { /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px; /* くの字を山なりに見た時、左側の長さ */
    height: 8px; /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); /* くの字の向き */
  }
  .l-header__cnt .c-button:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
            box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
  }
  .l-header__cnt .c-button:hover:hover {
    -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
  }
  .l-header__cnt .c-button::before {
    display: none;
  }
}
.l-header__cnt .c-button::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px; /* くの字を山なりに見た時、左側の長さ */
  height: 8px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* くの字の向き */
}
.l-header__cnt .c-button:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
}
.l-header__cnt .c-button:hover:hover {
  -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
}
.l-header__cnt > p {
  display: none;
}
@media (min-width: 980px) {
  .l-header__cnt > p {
    display: inline-block;
    font-size: 12px;
    margin-right: 12px;
  }
}

/*--------------------------------------*
 * footer
 *--------------------------------------*/
.l-footer {
  text-align: center;
  font-family: Roboto, Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 20px;
  background: #333;
}
.l-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-bottom: 12px;
  color: #f2f2f2;
}
.l-footer ul li:nth-child(1) {
  border-right: 1px solid #f2f2f2;
  padding-right: 12px;
  font-size: 15px;
}
.l-footer ul li:nth-child(2) {
  padding-left: 12px;
  font-size: 15px;
}
.l-footer small {
  color: #fff;
}

/*--------------------------------------*
* object > component
*--------------------------------------*/
/*--------------------------------------*
 * inner
 *--------------------------------------*/
.c-inner-body {
  overflow-x: hidden;
}

.c-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (min-width: 768px) {
  .c-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-inner-md {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (min-width: 768px) {
  .c-inner-md {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-inner-sm {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (min-width: 768px) {
  .c-inner-sm {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*--------------------------------------*
 * quote
 *--------------------------------------*/
/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * category
 *--------------------------------------*/
/*--------------------------------------*
* object > project
*--------------------------------------*/
/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * fv
 *--------------------------------------*/
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 開始位置 */
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); /* 少し上に移動 */
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 元に戻る */
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 開始位置 */
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); /* 少し上に移動 */
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 元に戻る */
  }
}
.c-inner-mod {
  width: 100%;
}

.c-svg {
  display: none;
}

.c-hero {
  background: #13253F;
}
.c-hero_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 24px 32px;
}
@media (min-width: 1075px) {
  .c-hero_wrp {
    padding: 120px 0 220px;
  }
}
@media (max-width: 767px) {
  .c-hero_wrp {
    display: block;
    padding: 72px 14px 0;
  }
}
.c-hero_inl {
  background: #13253F;
  max-width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .c-hero_inl {
    padding-bottom: 0;
  }
}
@media (min-width: 1075px) {
  .c-hero_inl {
    background: #13253F;
    width: auto;
    margin-right: 43px;
  }
}
.c-hero__demo {
  width: 34%;
}
@media (max-width: 767px) {
  .c-hero__demo_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    margin-right: 14px;
    margin-left: 14px;
  }
}
@media (min-width: 768px) {
  .c-hero__demo_sp {
    display: none;
  }
}
@media (min-width: 1075px) {
  .c-hero__demo_sp {
    display: none;
  }
}
.c-hero__demo_sp_ss {
  width: 40%;
  margin-right: 14px;
}
.c-hero__demo_sp_btn {
  width: 60%;
}
.c-hero__demo_sp_btn h3 {
  color: #BDBDBD;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .c-hero__demo_sp_btn a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #242424;
    background: #FFCB37;
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 53px;
    position: relative;
  }
  .c-hero__demo_sp_btn a::before { /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px; /* くの字を山なりに見た時、左側の長さ */
    height: 8px; /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); /* くの字の向き */
  }
  .c-hero__demo_sp_btn a:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
            box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
  }
  .c-hero__demo_sp_btn a:hover:hover {
    -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
  }
}
.c-hero__demo a {
  position: relative;
  width: auto;
  -webkit-animation-name: float;
          animation-name: float;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  cursor: pointer;
  display: block;
}
@media (max-width: 767px) {
  .c-hero__demo a {
    display: none;
  }
}
.c-hero__demo a:hover::after {
  content: "デモサイトを確認";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 23;
  background-color: rgba(0, 0, 0, 0.7);
}
.c-hero__ttl {
  background: #FFCB37;
  display: inline-block;
  padding: 8px 8px 8px 12px;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .c-hero__ttl {
    font-size: 1.2rem;
    padding: 3px;
  }
}
@media (min-width: 1075px) {
  .c-hero__ttl {
    background: #FFCB37;
    display: inline-block;
    padding: 8px 8px 8px 12px;
    font-size: 23px;
  }
}
.c-hero__ttls {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .c-hero__ttls {
    margin-bottom: 6px;
  }
}
.c-hero__ttls_sp {
  display: block;
}
@media (min-width: 1075px) {
  .c-hero__ttls_sp {
    display: none;
  }
}
.c-hero__ttls_pc {
  display: none;
}
@media (min-width: 1075px) {
  .c-hero__ttls_pc {
    display: block;
  }
}
.c-hero__ttls img {
  max-width: 60%;
}
@media (min-width: 1075px) {
  .c-hero__ttls img {
    max-width: 668px;
  }
}
@media (max-width: 767px) {
  .c-hero__ttls img {
    max-width: 100%;
  }
}
.c-hero__pgf {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #ffcb38;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .c-hero__pgf {
    font-size: 18px;
  }
}
.c-hero__act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
@media (min-width: 1075px) {
  .c-hero__act {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-hero__act_btn {
  margin-right: 16px;
}
@media (max-width: 767px) {
  .c-hero__act_btn {
    width: 50%;
  }
}
.c-hero__act_btn .c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #242424;
  background: #FFCB37;
  border: 0;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  padding: 0;
  width: 230px;
  height: 64px;
  position: relative;
}
.c-hero__act_btn .c-button::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px; /* くの字を山なりに見た時、左側の長さ */
  height: 8px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* くの字の向き */
}
.c-hero__act_btn .c-button:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
}
.c-hero__act_btn .c-button:hover:hover {
  -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .c-hero__act_btn .c-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #242424;
    background: #FFCB37;
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 53px;
    position: relative;
  }
  .c-hero__act_btn .c-button::before { /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px; /* くの字を山なりに見た時、左側の長さ */
    height: 8px; /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); /* くの字の向き */
  }
  .c-hero__act_btn .c-button:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
            box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
  }
  .c-hero__act_btn .c-button:hover:hover {
    -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 768px) {
  .c-hero__act_btn .c-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #242424;
    background: #FFCB37;
    border: 0;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 230px;
    height: 64px;
    position: relative;
    margin: 0 auto;
  }
  .c-hero__act_btn .c-button::before { /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px; /* くの字を山なりに見た時、左側の長さ */
    height: 8px; /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); /* くの字の向き */
  }
  .c-hero__act_btn .c-button:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
            box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
  }
  .c-hero__act_btn .c-button:hover:hover {
    -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
  }
}
.c-hero__act_lab {
  max-width: 270px;
}
@media (max-width: 767px) {
  .c-hero__act_lab {
    width: 50%;
  }
}
.c-hero__act_lab_sp {
  display: block;
}
@media (min-width: 1075px) {
  .c-hero__act_lab_sp {
    display: none;
  }
}
.c-hero__act_lab_pc {
  display: none;
}
@media (min-width: 1075px) {
  .c-hero__act_lab_pc {
    display: block;
  }
}

/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * solution
 *--------------------------------------*/
.l-position {
  position: relative;
  top: auto;
  height: auto;
}
@media (min-width: 1075px) {
  .l-position {
    position: relative;
    top: -150px;
    height: 656px;
  }
}

.c-solution {
  max-width: 1170px;
  margin: 0 auto 60px auto;
  position: relative;
  background: #fff;
  border-radius: 16px;
  left: 0;
  right: 0;
}
@media (min-width: 1075px) {
  .c-solution {
    max-width: 1170px;
    margin: 0 auto 60px auto;
    position: absolute;
    background: #fff;
    border-radius: 16px;
    left: 0;
    right: 0;
  }
}
.c-solution__ttl_sp {
  display: block;
}
@media (min-width: 1075px) {
  .c-solution__ttl_sp {
    display: none;
  }
}
.c-solution__ttl_pc {
  display: none;
}
@media (min-width: 1075px) {
  .c-solution__ttl_pc {
    display: block;
  }
}
.c-solution__firl {
  max-width: 710px;
  text-align: center;
  display: block;
  margin: 0 auto;
  padding: 12px;
}
.c-solution__secl {
  max-width: 1076px;
  margin: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
}
@media (max-width: 767px) {
  .c-solution__secl {
    margin: 12px;
  }
}
@media (min-width: 1075px) {
  .c-solution__secl {
    max-width: 1076px;
    margin: 12px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 28px;
  }
}
.c-solution__inf {
  width: 48%;
  border: 1px solid #D9D9D9;
  border-radius: 9px;
}
@media (max-width: 767px) {
  .c-solution__inf {
    width: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 9px;
  }
}
@media (min-width: 1075px) {
  .c-solution__inf {
    width: 340px;
    border: 1px solid #D9D9D9;
    border-radius: 9px;
  }
}
.c-solution__inf_ttl {
  background: #3E6398;
  background: -webkit-gradient(linear, left top, right top, from(rgb(62, 99, 152)), to(rgb(40, 77, 131)));
  background: linear-gradient(90deg, rgb(62, 99, 152) 0%, rgb(40, 77, 131) 100%);
  color: #fff;
  text-align: center;
  border-radius: 8px 8px 0 0;
  font-size: 18px;
  padding: 24px 0 22px 0;
  line-height: 1;
  position: relative;
}
.c-solution__inf_ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  border-color: #3e6398 transparent transparent;
  translate: -50% 100%;
}
.c-solution__inf_ico {
  display: inline-block;
  vertical-align: middle;
  color: #FFCB37;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: #FFCB37;
  position: absolute;
  left: 22px;
}
.c-solution__inf_ico::after {
  content: "";
  width: 0.58em;
  height: 0.4em;
  border: 0.15em solid #484848;
  border-top: 0;
  border-right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(-45deg);
  transform: translateY(-25%) rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.c-solution__inf_pgf p {
  padding: 20px 30px;
  text-align: center;
  height: 84px;
}
.c-solution__inf_img {
  text-align: center;
  overflow: hidden;
  width: 312px;
  height: 90px;
  position: relative;
  border-radius: 8px;
  margin: 0 auto;
}
.c-solution__inf_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.c-solution__inf_pnt {
  text-align: center;
  padding: 0 0 10px 0;
}
.c-solution__inf_pnt h2 {
  font-size: 20px;
  font-weight: bold;
  color: #355E99;
  margin: 12px 0;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(88%, transparent), color-stop(88%, #FFCB37));
  background: linear-gradient(transparent 88%, #FFCB37 88%);
}

/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * solution
 *--------------------------------------*/
.c-push {
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(rgb(83, 153, 167)), to(rgb(62, 99, 152)));
  background: linear-gradient(90deg, rgb(83, 153, 167) 0%, rgb(62, 99, 152) 100%);
  padding: 60px 24px;
}
@media (max-width: 767px) {
  .c-push {
    padding: 20px;
  }
}
.c-push__demo {
  background: -webkit-gradient(linear, left top, right top, from(rgb(83, 153, 167)), to(rgb(62, 99, 152)));
  background: linear-gradient(90deg, rgb(83, 153, 167) 0%, rgb(62, 99, 152) 100%);
  padding: 8px;
  border-radius: 10px;
  margin-top: 12px;
}
.c-push__demo_spec {
  margin: 40px auto 0 auto;
  padding: 32px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(83, 153, 167)), to(rgb(62, 99, 152)));
  background: linear-gradient(90deg, rgb(83, 153, 167) 0%, rgb(62, 99, 152) 100%);
  border-radius: 10px;
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .c-push__demo_spec {
    width: 90%;
    margin-bottom: 20px;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .c-push__demo_spec {
    width: 450px;
  }
}
@media (min-width: 1075px) {
  .c-push__demo_spec {
    width: 450px;
  }
}
.c-push__demo_spec_thb {
  width: 23%;
  margin-right: 14px;
}
.c-push__demo_spec .c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #242424;
  background: #FFCB37;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 44px;
  position: relative;
  padding: 32px 42px;
  width: auto;
}
.c-push__demo_spec .c-button::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px; /* くの字を山なりに見た時、左側の長さ */
  height: 8px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* くの字の向き */
}
.c-push__demo_spec .c-button:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
}
.c-push__demo_spec .c-button:hover:hover {
  -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
}
.c-push__demo_spec .c-button span {
  display: none;
}
.c-push__demo_spec .c-button:hover span {
  display: block;
  position: absolute;
  left: auto;
  right: auto;
  top: -20px;
  font-size: 10px;
  background: #fff;
  border: 3px solid #ffcb37;
  border-radius: 20px;
  padding: 6px 13px;
}
.c-push__demo .c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #242424;
  background: #FFCB37;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 44px;
  position: relative;
}
.c-push__demo .c-button::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px; /* くの字を山なりに見た時、左側の長さ */
  height: 8px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* くの字の向き */
}
.c-push__demo .c-button:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
}
.c-push__demo .c-button:hover:hover {
  -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
}
.c-push__demo .c-button span {
  display: none;
}
.c-push__demo .c-button:hover span {
  display: block;
  position: absolute;
  left: auto;
  right: auto;
  top: -20px;
  font-size: 10px;
  background: #fff;
  border: 3px solid #ffcb37;
  border-radius: 20px;
  padding: 6px 13px;
}
.c-push__ttl {
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 18px;
}
.c-push__ttl span {
  font-size: 16px;
  font-weight: normal;
}
.c-push__ttl b {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(88%, transparent), color-stop(88%, #FFCB37));
  background: linear-gradient(transparent 88%, #FFCB37 88%);
}
.c-push__pgf {
  font-size: 18px;
  color: #fff;
  margin-bottom: 19px;
}
.c-push .c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #242424;
  background: #FFCB37;
  border: 0;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
  padding: 0;
  width: 354px;
  height: 84px;
  position: relative;
}
@media (max-width: 767px) {
  .c-push .c-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #242424;
    background: #FFCB37;
    border: 0;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 84px;
    position: relative;
  }
  .c-push .c-button::before { /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px; /* くの字を山なりに見た時、左側の長さ */
    height: 8px; /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); /* くの字の向き */
  }
  .c-push .c-button:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
            box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
  }
  .c-push .c-button:hover:hover {
    -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
  }
}
.c-push .c-button::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px; /* くの字を山なりに見た時、左側の長さ */
  height: 8px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #4C4C4C; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #4C4C4C; /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* くの字の向き */
}
.c-push .c-button:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 7px rgba(0, 0, 0, 0.1);
}
.c-push .c-button:hover:hover {
  -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
}
.c-push .c-button span {
  display: none;
}
.c-push .c-button:hover span {
  display: block;
  position: absolute;
  left: auto;
  right: auto;
  top: -20px;
  font-size: 12px;
  background: #fff;
  border: 3px solid #ffcb37;
  border-radius: 20px;
  padding: 6px 13px;
}

/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * solution
 *--------------------------------------*/
.c-realize {
  background: #EEF3F9;
  text-align: center;
  padding: 22px;
}
@media (min-width: 980px) {
  .c-realize {
    background: #EEF3F9;
    text-align: center;
    padding: 64px 0;
  }
}
.c-realize__ttl {
  font-size: 34px;
  font-weight: bold;
  line-height: 42px;
  color: #274571;
  margin-bottom: 24px;
}
.c-realize__pgf {
  font-size: 22px;
  color: #435F88;
  margin-bottom: 24px;
}
.c-realize__lst {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.c-realize__dtl {
  display: block;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  margin: 0 auto 42px auto;
  text-align: left;
}
.c-realize__dtl:last-child {
  margin: 0 auto;
}
@media (min-width: 980px) {
  .c-realize__dtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    margin: 0 auto 42px auto;
    text-align: left;
  }
}
.c-realize__dtl:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-realize__dtl:nth-child(4) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-realize__img {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow: hidden;
  height: 287px;
  position: relative;
}
@media (max-width: 767px) {
  .c-realize__img {
    height: 225px;
  }
}
@media (min-width: 980px) {
  .c-realize__img {
    display: block;
    max-width: 500px;
    overflow: hidden;
    width: 500px;
    height: 287px;
    position: relative;
  }
}
.c-realize__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.c-realize__inf {
  max-width: 100%;
  padding: 20px;
}
@media (min-width: 980px) {
  .c-realize__inf {
    max-width: 500px;
    padding: 20px;
  }
}
.c-realize__inf span {
  font-size: 18px;
  padding: 4px 16px;
  background: #FFCB37;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  display: inline-block;
}
.c-realize__inf h2 {
  font-size: 30px;
  font-weight: bold;
  color: #3E6398;
  margin-bottom: 12px;
}
.c-realize__inf p {
  font-size: 17px;
}

/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * solution
 *--------------------------------------*/
.c-functions {
  text-align: center;
  padding: 0;
}
@media (min-width: 980px) {
  .c-functions {
    text-align: center;
    padding: 56px 0;
  }
}
.c-functions__ttl {
  font-size: 32px;
  font-weight: bold;
  background: #FFCB37;
  color: #262626;
  display: inline-block;
  padding: 17px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (min-width: 980px) {
  .c-functions__ttl {
    font-size: 32px;
    font-weight: bold;
    background: #FFCB37;
    color: #262626;
    display: inline-block;
    padding: 2px;
    line-height: 1;
    margin-bottom: 42px;
  }
}
.c-functions__lst {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 24px;
  gap: 12px;
}
@media (min-width: 980px) {
  .c-functions__lst {
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 26px 50px;
  }
}
.c-functions__dtl {
  width: 47%;
  text-align: left;
}
@media (max-width: 767px) {
  .c-functions__dtl {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .c-functions__dtl {
    width: 300px;
    text-align: left;
  }
}
.c-functions__dtl p {
  font-size: 14px;
  padding-left: 6px;
}
.c-functions__fttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-functions__fttl .c-svg {
  display: block !important;
  width: 32px;
  height: 32px;
  margin-right: 4px;
}
.c-functions__fttl h3 {
  font-weight: bold;
  color: #000;
  font-size: 18px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(36%, #FFCB37));
  background: linear-gradient(transparent 60%, #FFCB37 36%);
  line-height: 1.1;
}

/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * solution
 *--------------------------------------*/
.c-support {
  width: 100%;
  background: #EEF3F9;
  padding: 0;
}
@media (min-width: 980px) {
  .c-support {
    width: 100%;
    background: #EEF3F9;
    padding: 62px 0;
  }
}
.c-support__wrp {
  max-width: 1000px;
  margin: 0 auto;
}
.c-support__ttl {
  background: -webkit-gradient(linear, left top, right top, from(rgb(83, 153, 167)), to(rgb(62, 99, 152)));
  background: linear-gradient(90deg, rgb(83, 153, 167) 0%, rgb(62, 99, 152) 100%);
  padding: 40px;
  border-radius: 0;
  text-align: center;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 980px) {
  .c-support__ttl {
    background: -webkit-gradient(linear, left top, right top, from(rgb(83, 153, 167)), to(rgb(62, 99, 152)));
    background: linear-gradient(90deg, rgb(83, 153, 167) 0%, rgb(62, 99, 152) 100%);
    padding: 40px 0;
    border-radius: 8px 8px 0 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-support__ttl span {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 4px 0;
  font-size: 26px;
  margin-right: 0;
}
@media (min-width: 980px) {
  .c-support__ttl span {
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 4px 0;
    font-size: 26px;
    margin-right: 12px;
  }
}
.c-support__ttl h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
.c-support__ttl h2 b {
  background: #FFCB37;
  color: #000;
  line-height: 1;
}
.c-support__lst {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
  padding: 22px;
}
@media (min-width: 980px) {
  .c-support__lst {
    background: #fff;
    padding: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 60px;
  }
}
.c-support__dtl {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 980px) {
  .c-support__dtl {
    width: 420px;
  }
}
.c-support__dtl p {
  font-size: 17px;
  height: 60px;
  display: inline-block;
}
.c-support__dtl p b {
  font-weight: bold;
}
.c-support__thb {
  display: block;
  overflow: hidden;
  height: 200px;
  position: relative;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 12px;
}
@media (min-width: 980px) {
  .c-support__thb {
    display: block;
    overflow: hidden;
    width: 420px;
    height: 200px;
    position: relative;
    border-radius: 8px;
    margin-bottom: 27px;
  }
}
.c-support__thb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.c-support__thb h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 7px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

/*--------------------------------------*
 * header
 *--------------------------------------*/
/*--------------------------------------*
 * solution
 *--------------------------------------*/
.c-notification__lst {
  color: #6B6B6B;
  font-size: 12px;
  line-height: 17px;
  max-width: 1000px;
  margin: 20px;
  padding: 0;
}
@media (min-width: 980px) {
  .c-notification__lst {
    color: #6B6B6B;
    font-size: 12px;
    line-height: 17px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
  }
}
.c-notification__lst li:nth-child(3) {
  text-indent: 0;
}
@media (min-width: 980px) {
  .c-notification__lst li:nth-child(3) {
    text-indent: 16px;
  }
}
.c-notification__lst li:nth-child(4) {
  text-indent: 0;
}
@media (min-width: 980px) {
  .c-notification__lst li:nth-child(4) {
    text-indent: 16px;
  }
}

/*--------------------------------------*
* object > utility
*--------------------------------------*/