@charset "UTF-8";
.first_view_wrap {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  /* 初期値設定: 画面上部外に配置 */
  --x: 50%;
  --y: -100px;
  --mask-size: 0px;
  /* マスク設定 */
  -webkit-mask-image: -webkit-radial-gradient(var(--x) var(--y), circle, transparent var(--mask-size), black var(--mask-size));
  mask-image: radial-gradient(circle at var(--x) var(--y), transparent var(--mask-size), black var(--mask-size));
  will-change: mask-image, -webkit-mask-image, --mask-size, transform;
  /* マスク変数初期値（念のため） */
  --mask-size: 0px;
  cursor: none;
}
.first_view_wrap::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  background-image: url(../img/common/bg_noise_white.webp);
  background-repeat: repeat;
  background-size: 1300px;
  -webkit-animation: styles_grain 2s steps(6) infinite;
          animation: styles_grain 2s steps(6) infinite;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .first_view_wrap::before {
    background-size: 800px;
  }
}
.first_view_wrap.visible {
  opacity: 1;
  pointer-events: auto;
}
.first_view_wrap .center_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.first_view_wrap .center_wrap img {
  width: 100%;
  margin-bottom: 10px;
}
.first_view_wrap .center_wrap p {
  font-size: 22px;
  color: #d9d9d9;
  width: 90%;
  margin: 0 auto;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .first_view_wrap .center_wrap p {
    width: 100%;
    font-size: 16px;
  }
}
.first_view_wrap .first_logo {
  position: absolute;
  width: 160px;
  left: 40px;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .first_view_wrap .first_logo {
    width: 140px;
    left: 20px;
    bottom: 20px;
  }
}
.first_view_wrap.mask-active {
  -webkit-mask-image: -webkit-radial-gradient(var(--x) var(--y), circle, transparent var(--mask-size), black var(--mask-size));
  mask-image: radial-gradient(circle at var(--x) var(--y), transparent var(--mask-size), black var(--mask-size));
}

.second_view_wrap {
  background-color: gray;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 8888;
  --mask-size-2: 0px;
  -webkit-mask-image: -webkit-radial-gradient(50% 50%, circle, transparent var(--mask-size-2), black var(--mask-size-2));
  mask-image: radial-gradient(circle at 50% 50%, transparent var(--mask-size-2), black var(--mask-size-2));
}
.second_view_wrap .wide_view_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- 追従するカーソル要素 --- */
#custom_cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  will-change: transform;
  height: 300px;
  /* 初期状態は透明、transitionなし */
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* ← フェードする時間 */
  pointer-events: none;
  will-change: transform, opacity;
}

/* 枠内に入った後にのみtransitionを適用 */
#custom_cursor.active {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.cursor_dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cursor_text {
  color: white;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: bold;
  letter-spacing: 1.5px;
  white-space: nowrap;
  margin-top: 130px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* スマホ表示時の調整 */
@media (hover: none) and (pointer: coarse) {
  #custom_cursor {
    display: none;
  }
  .first_view_wrap {
    --mask-size: 0px;
    cursor: auto;
  }
}
.parallax-item {
  /* JavaScriptから渡される変数を使って位置をずらす */
  -webkit-transform: translateY(var(--parallax-y, 0));
          transform: translateY(var(--parallax-y, 0));
  /* 見た目の調整（任意） */
  will-change: transform; /* パフォーマンス向上 */
  -webkit-transition: -webkit-transform 0.05s linear;
  transition: -webkit-transform 0.05s linear;
  transition: transform 0.05s linear;
  transition: transform 0.05s linear, -webkit-transform 0.05s linear;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

body.home a.view_btn {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: #272727;
}
body.home a.view_btn img {
  width: 24px;
}
body.home header {
  background-color: transparent;
}
body.home main .home_sec_ttl {
  font-weight: normal;
  font-size: 65px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  body.home main .home_sec_ttl {
    font-size: 43px;
  }
}
body.home main .home_sec_subttl {
  font-weight: bold;
  font-size: 17px;
  color: #272727;
}
@media screen and (max-width: 767px) {
  body.home main .home_sec_subttl {
    font-size: 14px;
  }
}
body.home main #home_mv {
  position: relative;
  height: calc(100svh - 90px);
  margin-bottom: 377px;
}
body.home main #home_mv .mv_bg_flexwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1440px;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .mv_bg_flexwrap {
    top: 40%;
    left: 60%;
    width: 290vw;
  }
}
body.home main #home_mv .mv_bg_wrap {
  width: 100%;
  height: 100%;
}
body.home main #home_mv .mv_bg_wrap .mv_bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
body.home main #home_mv .mv_bg_wrap .circle {
  position: absolute;
  width: 13.6%;
  left: 34.5%;
  top: 47%;
  opacity: 0;
  rotate: -4deg;
  -webkit-animation: moveAndScale 30s linear infinite;
          animation: moveAndScale 30s linear infinite;
}
body.home main #home_mv .mv_bg_wrap {
  /* 2つ目は10秒遅れてスタート */
}
body.home main #home_mv .mv_bg_wrap .circle-1 {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
body.home main #home_mv .mv_bg_wrap {
  /* 3つ目は20秒遅れてスタート */
}
body.home main #home_mv .mv_bg_wrap .circle-2 {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
@-webkit-keyframes moveAndScale {
  /* 0%: 開始 */
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  /* 3.3%付近: 最初の約1秒でフェードイン (1s / 30s ≈ 3.3%) */
  3.3% {
    opacity: 1;
  }
  /* 96.7%付近: 最後の約1秒の開始地点まで透明度を維持 (29s / 30s ≈ 96.7%) */
  96.7% {
    -webkit-transform: translate(300px, -300px) scale(3.5);
            transform: translate(300px, -300px) scale(3.5); /* 右上移動と拡大の終点付近 */
    opacity: 1;
  }
  /* 100%: 終了（最後の1秒でフェードアウト） */
  100% {
    -webkit-transform: translate(305px, -305px) scale(3.55);
            transform: translate(305px, -305px) scale(3.55); /* 最終的な位置 */
    opacity: 0;
  }
}
@keyframes moveAndScale {
  /* 0%: 開始 */
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  /* 3.3%付近: 最初の約1秒でフェードイン (1s / 30s ≈ 3.3%) */
  3.3% {
    opacity: 1;
  }
  /* 96.7%付近: 最後の約1秒の開始地点まで透明度を維持 (29s / 30s ≈ 96.7%) */
  96.7% {
    -webkit-transform: translate(300px, -300px) scale(3.5);
            transform: translate(300px, -300px) scale(3.5); /* 右上移動と拡大の終点付近 */
    opacity: 1;
  }
  /* 100%: 終了（最後の1秒でフェードアウト） */
  100% {
    -webkit-transform: translate(305px, -305px) scale(3.55);
            transform: translate(305px, -305px) scale(3.55); /* 最終的な位置 */
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  body.home main #home_mv {
    height: calc(100svh - 70px);
    margin-bottom: 100px;
  }
}
body.home main #home_mv .mv_txt {
  position: absolute;
  color: rgb(13, 60, 200);
  font-weight: bold;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 10px;
  padding: 0px;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .mv_txt {
    padding: 0 10px;
  }
}
body.home main #home_mv .mv_txt span {
  font-size: 2.91666vw;
  font-size: clamp(16px, 2.91666vw, 42px);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  body.home main #home_mv .mv_txt.mv_txt1 {
    padding-right: 85px;
  }
}
body.home main #home_mv .mv_txt.mv_txt1 {
  top: 10px;
  z-index: 1;
}
body.home main #home_mv .mv_txt.mv_txt1 img {
  width: 100%;
}
body.home main #home_mv .mv_txt.mv_txt2 {
  bottom: 10px;
}
body.home main #home_mv .mv_txt.mv_txt2 img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body.home main #home_mv .mv_txt.mv_txt1_sp1 {
  top: 2%;
  padding: 0;
  width: 103%;
}
body.home main #home_mv .mv_txt.mv_txt1_sp2 {
  bottom: 2%;
  padding: 0;
  width: 103%;
}
body.home main #home_mv .mv_txt.mv_txt3 {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.home main #home_mv .mv_txt.mv_txt3 span {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .mv_txt.mv_txt3 span {
    font-size: 3.4666vw;
  }
}
body.home main #home_mv .img_box {
  opacity: 0;
  will-change: transform;
  -webkit-transition: opacity 0.4s, -webkit-transform 0s;
  transition: opacity 0.4s, -webkit-transform 0s;
  transition: opacity 0.4s, transform 0s;
  transition: opacity 0.4s, transform 0s, -webkit-transform 0s;
}
body.home main #home_mv .img_box p {
  color: #2f4bd5;
  font-size: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .img_box p {
    font-size: 9px;
  }
}
body.home main #home_mv .img_box img {
  margin-bottom: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 330px;
  height: 130px;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .img_box img {
    width: 180px;
    height: 54px;
  }
}
body.home main #home_mv .img_box:hover img {
  scale: 1.2122;
}
body.home main #home_mv .img_box.img_box01 {
  position: absolute;
  top: 49%;
  left: 7%;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .img_box.img_box01 {
    top: 17%;
    left: 30%;
  }
}
body.home main #home_mv .img_box.img_box02 {
  position: absolute;
  top: 170px;
  right: 30%;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .img_box.img_box02 {
    right: -2%;
    top: 41%;
  }
}
body.home main #home_mv .img_box.img_box03 {
  position: absolute;
  top: 59%;
  right: 3%;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .img_box.img_box03 {
    top: 57%;
    right: unset;
    left: 7%;
  }
}
body.home main #home_mv .img_box.img_box04 {
  position: absolute;
  bottom: -130px;
  right: 21%;
  -webkit-transition-delay: 4.6s, 0s;
          transition-delay: 4.6s, 0s;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .img_box.img_box04 {
    bottom: 5%;
    left: 50%;
    right: unset;
  }
}
body.home main #home_mv .img_box.img_box04 img {
  width: 332px;
  height: 110px;
}
@media screen and (max-width: 767px) {
  body.home main #home_mv .img_box.img_box04 img {
    width: 223px;
    height: 68px;
  }
}
body.home main #home_mv .img_box.active {
  opacity: 1;
}
body.home main #logos {
  overflow: hidden; /* はみ出た部分を隠す */
  width: 100%;
}
body.home main #logos .loop-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; /* 中身のサイズに合わせる */
}
body.home main #logos .loop-container img {
  height: 108px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  max-width: unset;
  display: block;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  body.home main #logos .loop-container img {
    height: 68px;
  }
}
body.home main #logos {
  /* 右移動のアニメーション */
}
body.home main #logos .loop-container.right {
  -webkit-animation: loop-right 30s linear infinite;
          animation: loop-right 30s linear infinite;
}
body.home main #logos {
  /* 左移動のアニメーション */
}
body.home main #logos .loop-container.left {
  -webkit-animation: loop-left 30s linear infinite;
          animation: loop-left 30s linear infinite;
}
body.home main {
  /* アニメーションの定義 */
}
@-webkit-keyframes loop-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  } /* 画像2枚分のうち1枚分左に動いたらリセット */
}
@keyframes loop-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  } /* 画像2枚分のうち1枚分左に動いたらリセット */
}
@-webkit-keyframes loop-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  } /* 半分ずれた状態から開始 */
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  } /* 半分ずれた状態から開始 */
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
body.home main .intro_bg_wrap {
  width: 100%;
  height: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home main .intro_bg_wrap {
    display: none;
  }
}
body.home main .intro_bg_wrap .intro_bg {
  position: absolute;
  top: -60px;
  max-width: unset;
  width: 1166px;
  left: -20%;
}
@media screen and (max-width: 767px) {
  body.home main .intro_bg_wrap .intro_bg {
    display: none;
  }
}
body.home main #intro {
  position: relative;
  margin: 300px auto 0;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  body.home main #intro {
    margin: 100px auto 0;
    padding: 0;
  }
}
body.home main #intro .intro_btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 160px;
  height: 160px;
  display: block;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  body.home main #intro .intro_btn {
    display: none;
  }
}
body.home main #intro .intro_btn img {
  width: 100%;
  height: auto;
}
@media (hover: none) {
  body.home main #intro .intro_btn {
    display: none;
  }
}
@media (any-hover: hover) {
  body.home main #intro {
    cursor: pointer;
  }
  body.home main #intro:hover .intro_btn {
    opacity: 1;
    cursor: pointer;
  }
}
body.home main #intro .section__inner {
  max-width: 1360px;
  margin: auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  body.home main #intro .section__inner {
    padding: 0 20px;
  }
}
body.home main #intro .section__inner p.sec_ttl {
  font-size: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  body.home main #intro .section__inner p.sec_ttl {
    font-size: 12px;
    margin-bottom: 39px;
  }
}
body.home main #intro .section__inner .intro_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 10px;
}
body.home main #intro .section__inner .intro_flex .left {
  width: 48%;
}
@media screen and (max-width: 767px) {
  body.home main #intro .section__inner .intro_flex .left {
    display: none;
  }
}
body.home main #intro .section__inner .intro_flex .left img {
  width: 100%;
}
body.home main #intro .section__inner .intro_flex .left .intro_btn {
  width: 160px;
  height: 160px;
  display: block;
  margin: auto;
}
body.home main #intro .section__inner .intro_flex .left .intro_btn img {
  width: 100%;
  height: auto;
}
body.home main #intro .section__inner .intro_flex .right {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  width: 48%;
}
@media screen and (max-width: 767px) {
  body.home main #intro .section__inner .intro_flex .right {
    width: 100%;
  }
}
body.home main #intro .section__inner .intro_flex .right .ttl {
  font-weight: bold;
  font-size: 50px;
  letter-spacing: -0.07em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  body.home main #intro .section__inner .intro_flex .right .ttl {
    width: 90%;
  }
}
body.home main #intro .section__inner .intro_flex .right .sub_ttl {
  font-size: 22px;
  font-weight: bold;
  margin: 60px auto 40px;
}
@media screen and (max-width: 767px) {
  body.home main #intro .section__inner .intro_flex .right .sub_ttl {
    font-size: 18px;
  }
}
body.home main #intro .section__inner .intro_flex .right .txt {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  body.home main #intro .section__inner .intro_flex .right .txt {
    font-size: 14px;
  }
}
@-webkit-keyframes bowon {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes bowon {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}
body.home main #intro .section__inner .intro_flex .right .intro_btn2 {
  width: 150px;
  height: 150px;
  display: block;
  margin: 50px auto;
  position: relative;
  z-index: 1;
}
body.home main #intro .section__inner .intro_flex .right .intro_btn2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  background-color: rgba(0, 68, 204, 0.4);
  -webkit-animation: bowon 2s infinite ease-out;
          animation: bowon 2s infinite ease-out;
}
body.home main #channel {
  margin: 190px auto;
}
@media screen and (max-width: 767px) {
  body.home main #channel {
    margin: 150px auto 100px;
  }
}
body.home main #channel .section__inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 47px;
}
@media screen and (max-width: 767px) {
  body.home main #channel .section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
body.home main #channel .section__inner .left {
  width: auto;
}
body.home main #channel .section__inner .right {
  width: 693px;
}
@media screen and (max-width: 767px) {
  body.home main #channel .section__inner .right {
    width: 100%;
  }
}
body.home main #channel .section__inner .right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  background-image: url(../img/top/channel_line.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body.home main #channel .section__inner .right ul {
    background-image: url(../img/top/channel_line_sp.png);
  }
}
body.home main #channel .section__inner .right ul li {
  width: 33%;
  height: 88px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
@media screen and (max-width: 767px) {
  body.home main #channel .section__inner .right ul li {
    width: 50%;
    height: auto;
    padding: 0;
  }
}
body.home main #channel .section__inner .right ul li img {
  width: auto;
}
@media screen and (max-width: 767px) {
  body.home main #channel .section__inner .right ul li img {
    scale: 0.9;
  }
}
body.home main #service {
  color: #ffffff;
}
body.home main #service .section__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 187px 40px 292px;
}
@media screen and (max-width: 767px) {
  body.home main #service .section__inner {
    padding: 126px 20px;
  }
}
body.home main #service .service-container {
  margin-top: 80px;
}
body.home main #service .service_ttl {
  font-size: 120px;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  body.home main #service .service_ttl {
    font-size: 12vw;
    margin-bottom: 10px;
  }
}
body.home main #service .service_lead {
  font-size: 25px;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.home main #service .service_lead {
    font-size: 14px;
  }
}
body.home main #service .service-unit {
  margin-bottom: 120px;
}
body.home main #service .service-unit:last-child {
  margin-bottom: 0;
}
body.home main #service .service-unit .service-unit__img {
  position: relative;
}
body.home main #service .service-unit .hover_txt {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  background-color: rgba(50, 114, 242, 0.8196078431);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-unit .hover_txt {
    display: none;
  }
}
body.home main #service .service-unit__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-unit__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 19.7px;
  }
}
@media screen and (max-width: 767px) {
  body.home main #service .service-unit__head .service-unit__img {
    width: 100%;
  }
  body.home main #service .service-unit__head .service-unit__img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
body.home main #service .service-unit__head:hover .service-unit__img .hover_txt {
  opacity: 1;
}
body.home main #service .service-unit__info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 600px;
}
body.home main #service .service-unit__deco-bar {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #45aefc;
  margin-bottom: 18px;
}
body.home main #service .service-unit__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-unit__title {
    margin-bottom: 50px;
  }
}
body.home main #service .service-unit__title .en {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  font-family: sans-serif;
  opacity: 0.4;
}
body.home main #service .service-unit__lead {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-unit__lead {
    font-size: 16px;
    font-weight: bold;
  }
}
body.home main #service .service-unit__desc {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}
body.home main #service .service-unit {
  /* 右側画像エリア */
}
body.home main #service .service-unit__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 500px;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  width: 500px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-unit__img {
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
body.home main #service .service-unit__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
body.home main #service .service-unit {
  /* 下段：リンクボタンエリア */
}
body.home main #service .service-unit__nav {
  width: 100%;
}
body.home main #service {
  /* リンクリスト（グリッドレイアウト） */
}
body.home main #service .service-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-link-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 9.2px 9px;
  }
}
body.home main #service .service-link-list li {
  width: 100%;
}
body.home main #service {
  /* リンクボタン本体 */
}
body.home main #service .service-link-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3); /* 透明度30%の白ボーダー */
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-link-item {
    padding-right: 10px;
    font-size: 3vw;
  }
}
body.home main #service .service-link-item::before {
  content: "・";
  margin-right: 10px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.home main #service .service-link-item::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  body.home main #service .service-link-item::after {
    content: none;
  }
}
body.home main #service .service-link-item {
  /* ホバー時およびアクティブ時のスタイル */
}
body.home main #service .service-link-item:hover, body.home main #service .service-link-item.active {
  background-color: #ffffff;
  color: #1a237e; /* ホバー時のテキスト色（濃い青） */
  border-color: #ffffff;
}
body.home main .voice_bg_wrap {
  width: 100%;
  height: 0;
  position: relative;
  margin: 367px auto 319px;
}
@media screen and (max-width: 767px) {
  body.home main .voice_bg_wrap {
    display: none;
  }
}
body.home main .voice_bg_wrap .voice_bg {
  position: absolute;
  top: -360px;
  max-width: unset;
  width: 68vw;
  left: -17%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  body.home main .voice_bg_wrap .voice_bg {
    display: none;
  }
}
body.home main #voice {
  margin: 0 auto 319px;
  max-width: 1280px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  body.home main #voice {
    margin: 100px auto;
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  body.home main #voice .home_sec_ttl {
    font-size: 60px;
  }
}
body.home main .strengths_bg_wrap {
  width: 100%;
  height: 0;
  position: relative;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  body.home main .strengths_bg_wrap {
    display: none;
  }
}
body.home main .strengths_bg_wrap .strengths_bg {
  position: absolute;
  top: -200px;
  max-width: unset;
  width: 68vw;
  right: -8%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  body.home main .strengths_bg_wrap .strengths_bg {
    display: none;
  }
}
body.home main section#strengths {
  margin-bottom: 282px;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths {
    margin-bottom: 0;
    margin-top: 100px;
  }
}
body.home main section#strengths div.section__inner {
  max-width: 1280px;
  padding: 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 10px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 17px;
  }
}
body.home main section#strengths div.section__inner div.left {
  width: 60%;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner div.left {
    width: 100%;
  }
}
body.home main section#strengths div.section__inner div.left a {
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 20px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 0 45px;
  margin-bottom: 13px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner div.left a {
    padding: 11px 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
  }
}
body.home main section#strengths div.section__inner div.left a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/common/arrow_white.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner div.left a::after {
    content: none;
  }
}
body.home main section#strengths div.section__inner div.left a .num {
  font-size: 30px;
  letter-spacing: -0.03em;
  color: #2f4bd5;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner div.left a .num {
    font-size: 18px;
  }
}
body.home main section#strengths div.section__inner div.left a .txt {
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner div.left a .txt {
    font-size: 14px;
  }
}
body.home main section#strengths div.section__inner div.left a:hover {
  background-color: #2f4bd5;
}
body.home main section#strengths div.section__inner div.left a:hover .num {
  color: #fff;
}
body.home main section#strengths div.section__inner div.left a:hover .txt {
  color: #fff;
}
body.home main section#strengths div.section__inner div.right {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner div.right {
    width: 100%;
  }
}
body.home main section#strengths div.section__inner div.right .home_sec_subttl {
  margin-bottom: 54px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  body.home main section#strengths div.section__inner div.right .home_sec_subttl {
    margin-bottom: 30px;
  }
}
body.home main #column {
  margin: 0 auto 319px;
  max-width: 1280px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  body.home main #column {
    margin: 100px auto;
    padding: 0 20px;
  }
}
body.home main #column .home_sec_ttl {
  color: #33a9ea;
}
body.home main #ec {
  margin-top: 210px;
}
body.home main #ec .echack_bg {
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1400px;
}
@media screen and (max-width: 767px) {
  body.home main #ec .echack_bg {
    width: 1000px;
    max-width: unset;
  }
}
body.home main #ec .section__inner {
  position: relative;
  padding: 131px 40px;
  max-width: 1280px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  body.home main #ec .section__inner {
    padding: 110px 20px 130px;
  }
}
body.home main #ec .section__inner .home_sec_ttl {
  color: #fff;
  position: relative;
}
body.home main #ec .section__inner .home_sec_ttl img {
  display: inline;
}
@media screen and (max-width: 767px) {
  body.home main #ec .section__inner .home_sec_ttl img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10px;
    width: 52px;
  }
}
body.home main #ec .section__inner .home_sec_subttl {
  color: #fff;
}
body.home main #ec .section__inner .ec_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  body.home main #ec .section__inner .ec_list {
    gap: 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
body.home main #ec .section__inner .ec_list .modal_open {
  width: 22%;
  aspect-ratio: 271/156;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  body.home main #ec .section__inner .ec_list .modal_open {
    width: calc((100% - 15px) / 2);
  }
}
body.home main #ec .section__inner .ec_list .modal_open:hover {
  cursor: pointer;
  opacity: 0.8;
}
body.home main #ec .section__inner .txt_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  body.home main #ec .section__inner .txt_flex {
    gap: 47px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.home main #ec .section__inner .txt_flex p,
body.home main #ec .section__inner .txt_flex a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.home main #ec .section__inner .txt_flex p {
    font-size: 14px;
  }
}
body.home main #ec .section__inner .txt_flex .view_btn {
  margin: 0;
}
body.home main #links {
  background-color: #fff;
  padding: 156px 40px 0;
}
@media screen and (max-width: 767px) {
  body.home main #links {
    padding: 90px 20px 0;
  }
}
body.home main #links .link_flex {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  body.home main #links .link_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
body.home main #links .link_flex a {
  width: calc(50% - 10px);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
body.home main #links .link_flex a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  body.home main #links .link_flex a {
    width: 100%;
    height: 140px;
  }
}
body.home main #links .link_flex a .main {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.home main #links .link_flex a .txt1 {
  position: absolute;
  top: 27px;
  left: 25px;
  color: #fff;
  font-size: 22px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  body.home main #links .link_flex a .txt1 {
    font-size: 18px;
    top: 16px;
    left: 14px;
  }
}
body.home main #links .link_flex a .txt2 {
  position: absolute;
  bottom: 27px;
  left: 39px;
  color: #fff;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  body.home main #links .link_flex a .txt2 {
    font-size: 15px;
    bottom: 16px;
    left: 14px;
  }
}
body.home main #links .link_flex a .arrow {
  position: absolute;
  width: 27px;
  right: 35px;
  bottom: 27px;
}
@media screen and (max-width: 767px) {
  body.home main #links .link_flex a .arrow {
    width: 15px;
    right: 20px;
    bottom: 17px;
  }
}
body.home main #news {
  background-color: #fff;
  padding: 189px 40px 210px;
}
@media screen and (max-width: 767px) {
  body.home main #news {
    padding: 100px 20px;
  }
}
body.home main #news .section__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  max-width: 1280px;
  padding: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  body.home main #news .section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
body.home main #news .section__inner {
  gap: 10px;
}
body.home main #news .section__inner .left {
  width: 30%;
}
@media screen and (max-width: 767px) {
  body.home main #news .section__inner .left {
    width: 100%;
  }
}
body.home main #news .section__inner .right {
  width: 70%;
}
@media screen and (max-width: 767px) {
  body.home main #news .section__inner .right {
    width: 100%;
  }
}
body.home main #news .section__inner .right .news_list {
  width: 100%;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 40px;
}
body.home main #news .section__inner .right .news_list .news_item {
  display: block;
  padding: 14px 0 29px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
body.home main #news .section__inner .right .news_list .news_item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #064ad5;
}
body.home main #news .section__inner .right .news_list .news_item:hover {
  background-color: #fafafa;
}
body.home main #news .section__inner .right .news_list .news_item .news_meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
body.home main #news .section__inner .right .news_list .news_item .news_meta .news_date {
  font-size: 14px;
  color: #064ad5;
}
body.home main #news .section__inner .right .news_list .news_item .news_meta .news_category {
  font-size: 12px;
  color: #064ad5;
  border: 1px solid rgba(6, 74, 213, 0.4);
  border-radius: 20px;
  padding: 2px 12px;
  background-color: #fff;
  font-weight: bold;
}
body.home main #news .section__inner .right .news_list .news_item .news_title {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  font-weight: normal;
}
body.home main #modal_bg {
  position: fixed;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
body.home main #modal_bg.active {
  opacity: 1;
  visibility: visible;
}
body.home main #modal_bg div.video_wrap {
  width: 90%;
  max-width: 820px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% + 20px));
          transform: translate(-50%, calc(-50% + 20px));
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  body.home main #modal_bg div.video_wrap {
    width: 95%;
  }
}
body.home main #modal_bg div.video_wrap.active {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}
body.home main #modal_bg div.video_wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
body.home main #modal_bg div.video_wrap .close {
  position: absolute;
  top: 0;
  right: -45px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media screen and (max-width: 767px) {
  body.home main #modal_bg div.video_wrap .close {
    top: -45px;
    right: 0;
  }
}
body.home main #modal_bg div.video_wrap .close::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body.home main #modal_bg div.video_wrap .close::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
body.home main #modal_bg div.video_wrap .close:hover {
  cursor: pointer;
  opacity: 0.8;
}
body.home #home_float_btn {
  position: fixed;
  right: 0px;
  width: 259px;
  bottom: 0;
  z-index: 9;
  background-color: rgba(47, 75, 213, 0.54);
  backdrop-filter: blur(2px) brightness(70%);
  -webkit-backdrop-filter: blur(2px) brightness(70%);
  display: none;
}
@media screen and (max-width: 767px) {
  body.home #home_float_btn {
    width: 117px;
    bottom: 3%;
  }
}
body.home #home_float_btn:hover {
  opacity: 0.8;
}
body.home #home_float_btn img {
  width: 100%;
  height: auto;
}

html.nav-open body.home header {
  background-color: #fff !important;
}