@charset "utf-8";
/* CSS Document */
/* mikan 2.0*/
/* 1024pxでタブレット移行想定*/

body {
  position: relative;
  z-index: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #05051a;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "palt";

  &:not(:has(.l-contact)) .l-footer {
    padding-top: 150px;
  }
  @media screen and (max-width: 768px) {
    &:not(:has(.l-contact)) .l-footer {
      padding-top: calc(100 / 375 * 100vw);
    }
  }
}

body.menu_open {
  position: fixed;
  width: 100%;
  height: 100vh;
}

/*ヘッダー */
.l-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  padding: calc(29 / 1366 * 100vw) calc(40 / 1366 * 100vw) 0;
  .l-header__inner {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(1920 / 1366 * 100vw);
    margin: 0 auto;
  }
  .l-header__logo {
    width: calc(197 / 1366 * 100vw);
  }
  &.change_color {
    .l-header__logo {
      filter: invert(100%) brightness(100);
    }

    .l-header__btn {
      filter: invert(100%) brightness(100);
      &.open {
        filter: unset;
      }
    }

    .l-header__menu {
      .l-header__list {
        color: #fff;
        .contact {
          filter: invert(100%) brightness(100);
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: 28px 26px 0;
    .l-header__inner {
      padding: 0;
    }
    .l-header__logo {
      width: calc(121 / 375 * 100vw);
    }
  }
}

/*ヘッダーメニュー ------------------------------*/

.l-header__menu {
  width: 59.01%;
  .sp_ttl {
    display: none;
  }
  .l-header__list {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 500;
    font-size: calc(13 / 1366 * 100vw);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: calc(30 / 1366 * 100vw);
    .l-header__item {
      &.contact {
        margin-left: auto;
        color: #0200e0;
        a {
          position: relative;
          z-index: 0;
          display: flex;
          align-items: center;
          gap: calc(7 / 1366 * 100vw);
          &::before {
            content: "";
            background-image: url("../img/common/dec_btn00.svg");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
            width: calc(46 / 1366 * 100vw);
            aspect-ratio: 1;
          }
        }
      }
    }
    a {
      display: block;
    }
  }

  @media screen and (max-width: 768px) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;

    transform: translateX(100%);
    transition: opacity 0.3s;

    width: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    .sp_ttl {
      transition: transform 0.3s;
      transform: translateX(100%);
      background-color: #fff;
      width: 100%;
      padding: calc(32 / 375 * 100vw) calc(22 / 375 * 100vw) calc(32 / 375 * 100vw);
      display: block;
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      font-weight: 600;
      font-size: calc(54 / 375 * 100vw);
      letter-spacing: 0.05em;
      color: #0200e0;

      .size_s {
        display: block;
        font-size: calc(21 / 375 * 100vw);
        margin-bottom: calc(15 / 375 * 100vw);
      }
    }

    .l-header__list {
      transition: transform 0.3s;
      transform: translatey(-100%);
      padding: 0 calc(26 / 375 * 100vw) calc(58 / 375 * 100vw);
      background-color: #fff;
      width: 41.86%;
      height: 100dvh;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: calc(4 / 375 * 100vw) 0;
      margin-left: auto;
      transition: 0.3s;
      font-size: calc(18 / 375 * 100vw);
      line-height: calc(59 / 18);
      color: #0200e0;

      .l-header__item {
        &.contact {
          margin: calc(35 / 375 * 100vw) 0 0 calc(-14 / 375 * 100vw);
          color: #0200e0;

          a {
            font-size: calc(16 / 375 * 100vw);
            flex-flow: column;
            gap: calc(7 / 375 * 100vw);
            &::before {
              width: calc(129 / 375 * 100vw);
            }
          }
        }
      }
    }
    &.open {
      opacity: 1;
      transform: translateX(0);

      .sp_ttl {
        transform: translateX(0%);
      }
      .l-header__list {
        transition: transform 0.4s;
        transform: translatey(0%);
        color: #0200e0 !important;
      }
    }
  }
}
/*ハンバーガーボタン　------------------------------*/

.l-header__btn {
  position: relative;
  z-index: 9999;
  display: none;
  cursor: pointer;
  box-sizing: border-box;
  width: 32px;
  aspect-ratio: 32 / 28;
  .bar_open {
    position: absolute;
    z-index: 0;
    background-image: url("../img/common/menu_bar_open.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    aspect-ratio: 32 / 14;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: clip-path 0.3s;
  }
  .bar_close {
    position: absolute;
    z-index: 0;
    background-image: url("../img/common/menu_bar_close.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    aspect-ratio: 28 / 23;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s;
  }
  &.open {
    .bar_open {
      clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    .bar_close {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
  }

  @media screen and (max-width: 768px) {
    display: block;
  }
}

.l-footer {
  background: #0200e0;
  padding: 0 0 calc(60 / 1366 * 100vw);
  .l-footer__inner {
    margin: 0 auto;
    width: 91.21%;

    display: flex;
    justify-content: space-between;
  }

  .box_data {
    h2 {
      margin-bottom: calc(71 / 1366 * 100vw);
    }
    address {
      font-weight: 500;
      font-size: calc(14 / 1366 * 100vw);
      letter-spacing: 0.03em;
      line-height: calc(30 / 14);
      color: #fff;
    }
  }
  .box_link {
    width: 31.32%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-self: flex-end;

    .wrapper_link {
      width: 100%;
      font-weight: 500;
      font-size: calc(16 / 1366 * 100vw);
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      justify-content: space-between;
      margin-bottom: calc(78 / 1366 * 100vw);
    }
    .link_privacy {
      font-weight: 300;
      font-size: calc(13 / 1366 * 100vw);
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      gap: 0.846em;
      &::before {
        content: "";
        background-image: url("../img/common/dec_btn02.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 0.96em;
        aspect-ratio: 72 / 75;
        align-self: center;
      }
    }
    small {
      font-family: "Be Vietnam Pro";
      font-weight: 300;
      font-size: calc(13 / 1366 * 100vw);
      letter-spacing: 0.05em;
      color: #fff;
    }
  }
  @media screen and (max-width: 768px) {
    padding: 0 0 calc(34 / 375 * 100vw);
    .l-footer__inner {
      width: 85.33%;
      flex-flow: column;
    }

    .box_data {
      order: 3;
      h2 {
        margin-bottom: calc(16 / 375 * 100vw);
      }
      address {
        font-size: calc(12 / 375 * 100vw);
        letter-spacing: 0.025em;
        line-height: calc(22 / 12);
        padding-bottom: calc(24 / 375 * 100vw);
        margin-bottom: calc(22 / 375 * 100vw);
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
      }
    }
    .box_link {
      display: contents;
      .wrapper_link {
        order: 1;
        width: 100%;
        font-size: calc(16 / 375 * 100vw);
        margin-bottom: calc(45 / 375 * 100vw);
        flex-flow: wrap;
        gap: calc(43 / 375 * 100vw) 0;

        a {
          width: 50%;
          &:nth-of-type(1) {
            order: 1;
          }
          &:nth-of-type(2) {
            order: 3;
          }
          &:nth-of-type(3) {
            order: 2;
          }
          &:nth-of-type(4) {
            order: 4;
          }
        }
      }
      .link_privacy {
        order: 2;
        font-size: calc(12 / 375 * 100vw);
        gap: 0.68em;
        margin-bottom: calc(82 / 375 * 100vw);

        &::before {
          content: "";
          width: 0.833em;
        }
      }
      small {
        order: 4;
        font-family: "Be Vietnam Pro";
        font-weight: 300;
        font-size: calc(12 / 375 * 100vw);
        letter-spacing: -0.02em;
        color: #fff;
      }
    }
  }
}

/* 共通  ------------------------------*/

.sp_on {
  display: none;
}

.sp_on02 {
  display: contents;
}
@media screen and (max-width: 768px) {
  .sp_on {
    display: inline;
  }
  .sp_off {
    display: none;
  }
  .sp_on02 {
    display: inline;
  }
  .sp_off02 {
    display: contents;
  }
}

.en {
  font-family: "Be Vietnam Pro", sans-serif;
  font-style: normal;
}
.jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
}

.btn00 {
  font-weight: 500;
  font-size: calc(14 / 1366 * 100vw);
  letter-spacing: 0.05em;
  line-height: calc(50 / 14);
  color: #181c3b;
  display: flex;
  align-items: center;
  &::after {
    content: "";
    background-image: url("../img/common/dec_btn01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 7.643em;
    aspect-ratio: 1;
  }
  @media screen and (max-width: 768px) {
    font-size: 14px;
    &::after {
      width: 7.643em;
    }
  }
}

/* c-accordion  ----*/
.c-accordion {
  &.open .c-accordion__cont {
    grid-template-rows: 1fr;
    opacity: 1;
  }
  .c-accordion__ttl {
    display: block;
    cursor: pointer;
    &::-webkit-details-marker {
      display: none;
    }
  }
  .c-accordion__cont {
    display: grid;
    transition:
      padding 0.3s,
      opacity 3s,
      grid-template-rows 0.3s;
    grid-template-rows: 0fr;
    opacity: 0;
  }

  .c-accordion__inner {
    overflow: hidden;
  }
}

/* blind  ----*/
.blind {
  overflow: hidden;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 10;
  pointer-events: none;
  span {
    flex: none;
    height: 25px;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #0200e0;
    /* Firefox の線対策 */
    backface-visibility: hidden;
    transform: scaleY(0) translateZ(0);
    will-change: transform;
    transform-origin: top;
  }
  &.blind01 {
    span {
      height: 15px;
    }
  }
  &.dec_c_w {
    span {
      background: #fff;
    }
  }
  @media screen and (max-width: 768px) {
    margin-bottom: -1px;
    span {
      flex: none;
      height: calc(100vh / 30);
      min-height: calc(28 / 375 * 100vw);
      max-height: calc(100vh / 30);
    }
    &.blind01 {
      span {
        height: calc(100vh / 50);
        min-height: calc(17 / 375 * 100vw);
        max-height: calc(100vh / 50);
      }
    }
  }
}

/* section: l-mv ------------------------------*/
.l-mv {
  /* aspect-ratio: 1366 / 768; */
  height: 100vh;
  height: 100dvh;
  .inner {
    position: relative;
    z-index: 0;
    height: 100%;
  }
  .mv_ttl {
    position: absolute;
    z-index: 1;
    bottom: calc(26 / 1366 * 100vw);
    left: calc(56 / 1366 * 100vw);
    font-weight: bold;
    font-size: calc(197 / 1366 * 100vw);
    letter-spacing: 0.05em;
    text-align: left;
    .size_s {
      display: block;
      font-size: calc(19 / 1366 * 100vw);
      letter-spacing: 0.01em;
      margin: 0 0 calc(17 / 1366 * 100vw) calc(5 / 1366 * 100vw);
    }
  }
  .mv_text {
    overflow: hidden;
    position: absolute;
    z-index: 1;
    top: 22.91%;
    right: 0;
    font-weight: 500;
    font-size: calc(13 / 1366 * 100vw);
    line-height: 1.55;
    text-align: right;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    gap: calc(18 / 1366 * 100vw);
    .dec_bc {
      transform: translateX(100%);
      transition:
        transform 0.3s ease 0.5s,
        color 0.3s ease 0.8s;
      width: fit-content;
      background: #fff;
      padding: 0 2.5em 0 1em;
      color: #fff;
      &:nth-of-type(2) {
        transition:
          transform 0.3s ease 0.8s,
          color 0.3s ease 1.1s;
      }
      &:nth-of-type(3) {
        transition:
          transform 0.3s ease 1.1s,
          color 0.3s ease 1.4s;
      }
      &:nth-of-type(4) {
        transition:
          transform 0.3s ease 1.4s,
          color 0.3s ease 1.7s;
      }
    }
  }
  .mv_sd {
    position: absolute;
    z-index: 1;
    bottom: calc(49 / 1366 * 100vw);
    right: calc(31 / 1366 * 100vw);

    font-weight: 300;
    font-size: calc(10 / 1366 * 100vw);
    letter-spacing: 0.05em;
  }

  @media screen and (max-width: 768px) {
    /* aspect-ratio: 375 / 812; */
    /* height: auto; */

    .inner {
      position: relative;
      z-index: 0;
      height: 100%;
    }
    .mv_ttl {
      bottom: calc(32 / 375 * 100vw);
      left: calc(24 / 375 * 100vw);
      font-size: calc(84 / 375 * 100vw);
      .size_s {
        font-size: calc(19 / 375 * 100vw);
        letter-spacing: 0.01em;
        margin: 0 0 calc(14 / 375 * 100vw) calc(5 / 375 * 100vw);
      }
    }
    .mv_text {
      position: absolute;
      z-index: 1;
      top: calc(117 / 375 * 100vw);
      right: calc(24 / 375 * 100vw);
      font-weight: 500;
      font-size: calc(13 / 375 * 100vw);
      line-height: 1.15;
      text-align: right;
      display: flex;
      align-items: flex-start;
      gap: calc(15 / 375 * 100vw);
      writing-mode: vertical-rl;
      text-orientation: upright;
      letter-spacing: -0.06em;
      .dec_bc {
        padding: 0.5em 0 0.2em;
        transform: translateY(-100%);
        /* &:has(.sp_adjust) {
          padding: 0.5em 0 3.2em;
        }
        .sp_adjust {
          margin-bottom: -3em;
        } */
      }
    }
    .mv_sd {
      position: absolute;
      z-index: 1;
      bottom: calc(46 / 375 * 100vw);
      right: calc(27 / 375 * 100vw);
      font-size: calc(10 / 375 * 100vw);
      writing-mode: vertical-rl;
    }
  }
}

body.active {
  .l-mv {
    .mv_text {
      .dec_bc {
        transform: translateX(0);
        color: #05051a;
      }
    }

    @media screen and (max-width: 768px) {
      .mv_text {
        .dec_bc {
          transform: translateY(0%);
          &.sp02 {
            transition:
              transform 0.3s ease 0.8s,
              color 0.3s ease 1.1s;
          }
          &.sp03 {
            transition:
              transform 0.3s ease 1.1s,
              color 0.3s ease 1.4s;
          }
          &.sp04 {
            transition:
              transform 0.3s ease 1.4s,
              color 0.3s ease 1.7s;
          }
          &.sp05 {
            transition:
              transform 0.3s ease 1.7s,
              color 0.3s ease 2s;
          }
          &.sp06 {
            transition:
              transform 0.3s ease 2s,
              color 0.3s ease 2.3s;
          }
          &.sp07 {
            transition:
              transform 0.3s ease 2.3s,
              color 0.3s ease 2.6s;
          }
        }
      }
    }
  }
}

/* section: l-intro ------------------------------*/
.l-intro {
  position: relative;
  z-index: 0;
  /* padding: calc(203 / 1366 * 100vw) 0 calc(135 / 1366 * 100vw); */
  padding: calc(203 / 1366 * 100vw) 0 calc(320 / 1366 * 100vw);
  .inner {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    width: calc(576 / 1366 * 100vw);
  }
  .ttl02 {
    position: absolute;
    z-index: 0;
    top: 0;
    left: calc(-316 / 1366 * 100vw);
    font-weight: 500;
    font-size: calc(13 / 1366 * 100vw);
    letter-spacing: 0.05em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: calc(20 / 1366 * 100vw);
    &::before {
      content: "";
      display: block;
      background-image: url("../img/common/dec_btn02.svg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      width: calc(38 / 1366 * 100vw);
      aspect-ratio: 72 / 75;
    }
  }
  .text_intro {
    overflow: hidden;
    font-weight: bold;
    font-size: calc(32 / 1366 * 100vw);
    line-height: calc(61 / 32);
    &.active {
      .dec_font {
        animation: open001 0.3s;
        animation-timing-function: linear;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
        img {
          animation: open002 0.3s;
          animation-timing-function: linear;
          animation-iteration-count: 1;
          animation-fill-mode: forwards;
        }
        &::after {
          animation: open003 1.3s;
          animation-timing-function: linear;
          animation-iteration-count: 1;
          animation-fill-mode: forwards;
        }
      }
    }
    .dec_font {
      display: inline-block;
      overflow: hidden;
      position: relative;
      z-index: 0;
      color: transparent;
      &::after {
        content: "";
        position: absolute;
        z-index: 0;
        background: #0200e0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateX(-101%);
      }
      img {
        opacity: 0;
      }
    }
    &.size_l {
      width: 66.666%;
      margin-top: 2.3em !important;
    }
    + .text_intro {
      margin-top: 1.9em;
    }
  }
  .btn00 {
    margin-top: calc(42 / 1366 * 100vw);
  }
  @media screen and (max-width: 1365px) {
    padding: calc(203 / 1366 * 100vw) 0 calc(400px - 0.1342281879 * (100vw - 769px));
  }

  @media screen and (max-width: 768px) {
    padding: calc(133 / 375 * 100vw) 0 calc(350 / 375 * 100vw);
    .inner {
      width: calc(247 / 375 * 100vw);
    }
    .ttl02 {
      top: calc(-56 / 375 * 100vw);
      left: calc(-38 / 375 * 100vw);
      font-size: calc(12 / 375 * 100vw);
      gap: calc(16 / 375 * 100vw);

      &::before {
        width: calc(21 / 375 * 100vw);
      }
    }
    .text_intro {
      font-size: calc(19 / 375 * 100vw);
      line-height: calc(36 / 19);

      &.size_l {
        width: 104.4%;
        margin-top: 2.9em !important;
      }
      + .text_intro {
        margin-top: 1.9em;
      }
    }

    .btn00 {
      margin-top: calc(14 / 375 * 100vw);
    }
  }
}
@keyframes open001 {
  99% {
    color: transparent;
  }
  100% {
    color: #05051a;
  }
}
@keyframes open002 {
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes open003 {
  0% {
    transform: translateX(-101%);
  }
  25% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(101%);
  }
}

/* section: l-service ------------------------------*/
.l-service {
  position: relative;
  z-index: 0;
  padding: calc(25 / 1366 * 100vw) 0 calc(250 / 1366 * 100vw);
  background: #0200e0;
  .u-text_scroll {
    margin-bottom: calc(74 / 1366 * 100vw);
    overflow: hidden;
    display: flex;
    .box_text {
      font-weight: bold;
      font-size: calc(193 / 1366 * 100vw);
      letter-spacing: 0.05em;
      color: #004eff;
      padding: 0 calc(139 / 1366 * 100vw);
      .weight_l {
        font-weight: 100;
      }
      animation: text_ani01 20s linear infinite;
    }
  }
  .ttl02 {
    margin: 0 0 calc(-24 / 1366 * 100vw) 8.85%;
    font-weight: bold;
    font-size: calc(122 / 1366 * 100vw);
    letter-spacing: 0.05em;
    line-height: calc(135 / 122);
    color: #fff;
    .size_s {
      display: block;
      font-size: calc(16 / 1366 * 100vw);
      letter-spacing: 0;
      margin-bottom: calc(12 / 1366 * 100vw);
    }
  }
  .list_service {
    li {
      border-top: 1px solid #fff;
    }
    &:last-of-type {
      border-bottom: 1px solid #fff;
    }
    a {
      cursor: none;
      position: relative;
      z-index: 0;
      display: block;
      padding: calc(53 / 1366 * 100vw) 8.86% calc(38 / 1366 * 100vw);
      display: block;
      font-weight: 600;
      font-size: calc(41 / 1366 * 100vw);
      letter-spacing: 0.03em;
      color: #fff;
      transition: 0.3s;
      .size_s {
        display: block;
        font-weight: 500;
        font-size: calc(16 / 1366 * 100vw);
        margin-top: calc(15 / 1366 * 100vw);
      }
      .box_img {
        position: absolute;
        z-index: 1;
        bottom: calc(31 / 1366 * 100vw);
        right: 9.8%;
        width: calc(317 / 1366 * 100vw);
        aspect-ratio: 317 / 194;
        height: 0;
        opacity: 0;
        transition: opacity 0;
        img {
          border-radius: calc(20 / 1366 * 100vw);
        }
      }
      svg {
        position: absolute;
        z-index: 0;
        top: 50%;
        right: calc(121 / 1366 * 100vw);
        transform: translateY(-50%);
        width: calc(28 / 1366 * 100vw);
      }
      &:hover {
        color: #0200e0;
        background: #fff;
        .box_img {
          height: auto;
          opacity: 1;
          transition: opacity 0.7s;
        }
        svg path {
          fill: #0200e0;
        }
      }
    }
  }

  .cursor,
  .cursor-img {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
  .cursor {
    opacity: 0;
    pointer-events: none;
    width: calc(20 / 1366 * 100vw);
    height: calc(20 / 1366 * 100vw);
    background: transparent;
    border-radius: 50%;
  }
  .cursor-img {
    width: calc(270 / 1366 * 100vw);
    opacity: 0;
    transition: opacity 0.2s;
  }
  @media screen and (max-width: 1365px) {
    padding: calc(203 / 1366 * 100vw) 0 calc(140px + 0.1845637584 * (100vw - 769px));
  }

  @media screen and (max-width: 768px) {
    padding: calc(50 / 375 * 100vw) 0 calc(290 / 375 * 100vw);
    .u-text_scroll {
      margin-bottom: calc(52 / 375 * 100vw);
      overflow: hidden;
      display: flex;
      .box_text {
        font-size: calc(106 / 375 * 100vw);
        padding: 0 calc(30 / 375 * 100vw);
        animation: text_ani01 10s linear infinite;
      }
    }
    .ttl02 {
      margin: 0 0 calc(-8 / 375 * 100vw) 6.5%;
      font-size: calc(56 / 375 * 100vw);
      line-height: 1;
      .size_s {
        font-size: calc(12 / 375 * 100vw);
        margin-bottom: calc(10 / 375 * 100vw);
      }
    }
    .list_service {
      a {
        padding: calc(28 / 375 * 100vw) calc(26 / 375 * 100vw);
        font-size: calc(17 / 375 * 100vw);
        letter-spacing: 0.03em;
        .size_s {
          font-size: calc(12 / 375 * 100vw);
          margin-top: calc(15 / 375 * 100vw);
        }
        .box_img {
          display: none;
          bottom: calc(31 / 375 * 100vw);
          right: 9.8%;
          width: calc(317 / 375 * 100vw);
          img {
            border-radius: calc(20 / 375 * 100vw);
          }
        }
        svg {
          right: calc(30 / 375 * 100vw);
          width: calc(14 / 375 * 100vw);
        }
      }
    }
    .cursor,
    .cursor-img {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      transform: translate(-50%, -50%);
    }
    .cursor-img {
      width: calc(170 / 375 * 100vw);
    }
  }
}

@keyframes text_ani01 {
  100% {
    translate: -100% 0;
  }
}

/* section: l-news_top ------------------------------*/
.l-news_top {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: #fff;
  padding: calc(25 / 1366 * 100vw) 0 calc(350 / 1366 * 100vw);
  .inner {
    margin: 0 auto;
    width: 82.28%;
    display: flex;
    justify-content: space-between;
  }
  .box_text {
    width: 19.6%;
    display: flex;
    flex-flow: column;
    .ttl02 {
      font-weight: bold;
      font-size: calc(45 / 1366 * 100vw);
      letter-spacing: 0.05em;
      text-align: left;
      color: #0200e0;
      .size_s {
        display: block;
        color: #181c3b;
        font-size: calc(14 / 1366 * 100vw);
        margin-top: calc(16 / 1366 * 100vw);
      }
    }
    .btn00 {
      margin-top: auto;
    }
  }
  .swiper_00 {
    display: contents;
  }
  .list_news {
    width: 74.71%;
    display: flex;
    justify-content: space-between;
  }
  .news_card {
    width: 32.06%;
    font-weight: 500;
    font-size: calc(16 / 1366 * 100vw);
    letter-spacing: 0.03em;
    .box_img {
      position: relative;
      z-index: 0;
      margin-bottom: calc(21 / 1366 * 100vw);
      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background: #0200e0;
        width: 100%;
        height: 100%;
        mix-blend-mode: color;
      }
      img {
        display: block;
      }
    }
    time {
      display: block;
      margin-bottom: calc(7 / 1366 * 100vw);
      font-size: calc(13 / 1366 * 100vw);
      color: #1c36ff;
    }
    h3 {
      line-height: calc(30 / 16);
    }
  }
  @media screen and (max-width: 1365px) {
    padding: calc(25 / 1366 * 100vw) 0 calc(240px + 0.1845637584 * (100vw - 769px));
  }
  @media screen and (max-width: 768px) {
    padding: calc(50 / 375 * 100vw) 0 calc(300 / 375 * 100vw);
    .inner {
      margin: 0 auto;
      width: 86.13%;
      flex-flow: column;
    }
    .box_text {
      display: contents;
      .ttl02 {
        order: 1;
        font-size: calc(45 / 375 * 100vw);
        letter-spacing: 0.16em;
        margin-bottom: calc(40 / 375 * 100vw);
        .size_s {
          font-size: calc(14 / 375 * 100vw);
          margin-top: calc(13 / 375 * 100vw);
          letter-spacing: 0.1em;
        }
      }
      .btn00 {
        order: 3;
        margin-top: calc(20 / 375 * 100vw);
      }
    }
    .swiper_00 {
      order: 2;
      display: block;
      overflow: hidden;
      width: 100vw;
    }
    .list_news {
      width: 74.71%;
      display: flex;
      justify-content: space-between;
    }
    .news_card {
      width: 100%;
      font-size: calc(14 / 375 * 100vw);
      padding-right: calc(20 / 375 * 100vw);
      .box_img {
        margin-bottom: calc(20 / 375 * 100vw);
      }
      time {
        margin-bottom: calc(7 / 375 * 100vw);
        font-size: calc(10 / 375 * 100vw);
      }
      h3 {
        line-height: calc(30 / 16);
      }
    }
  }
}

/* section: l-contact ------------------------------*/
.l-contact {
  background: #0200e0;
  padding: calc(150 / 1366 * 100vw) 0;
  .inner {
    margin: 0 auto;
    width: 64.89%;
    width: calc(1246 / 1366 * 100vw);
    padding: calc(28 / 1366 * 100vw) calc(45 / 1366 * 100vw) calc(23 / 1366 * 100vw) calc(91 / 1366 * 100vw);
    border: 1px solid #fff;
    border-radius: calc(31 / 1366 * 100vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .box_text {
    width: 51.28%;
    .ttl02 {
      font-weight: bold;
      font-size: calc(108 / 1366 * 100vw);
      letter-spacing: 0.05em;
      color: #fff;
      .size_s {
        display: block;
        font-weight: bold;
        font-size: calc(20 / 1366 * 100vw);
        margin-top: calc(14 / 1366 * 100vw);
        letter-spacing: 0.01em;
      }
    }
    .contact_text {
      margin-top: calc(71 / 1366 * 100vw);
      font-weight: 500;
      font-size: calc(16 / 1366 * 100vw);
      letter-spacing: 0.03em;
      line-height: calc(30 / 16);
      color: #fff;
      display: flex;
      justify-content: space-between;
      &::after {
        content: "";
        background-image: url("../img/common/dec_btn02.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 4.5em;
        aspect-ratio: 72 / 75;
      }
    }
  }
  .box_img {
    width: 35.83%;
  }
  @media screen and (max-width: 768px) {
    padding: calc(50 / 375 * 100vw) 0 calc(121 / 375 * 100vw);
    .inner {
      width: 85.16%;
      padding: calc(93 / 375 * 100vw) calc(30 / 375 * 100vw) calc(42 / 375 * 100vw);
      border-radius: calc(31 / 375 * 100vw);
      flex-flow: column;
    }
    .box_text {
      width: 100%;
      margin-bottom: calc(20 / 375 * 100vw);
      .ttl02 {
        font-size: calc(45 / 375 * 100vw);
        .size_s {
          font-size: calc(14 / 375 * 100vw);
          margin-top: calc(9 / 375 * 100vw);
        }
      }
      .contact_text {
        margin-top: calc(49 / 375 * 100vw);
        font-weight: 500;
        font-size: calc(15 / 375 * 100vw);
        letter-spacing: -0.03em;
        line-height: calc(26 / 14);
        color: #fff;
        flex-flow: column;
        align-items: center;
        gap: calc(25 / 375 * 100vw);
        &::after {
          width: 2.72em;
          transform: rotate(90deg);
        }
      }
    }
    .box_img {
      width: 100%;
    }
  }
}

/* section: l-back_anime ------------------------------*/
.l-back_anime {
  position: fixed !important;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &.off {
    opacity: 0 !important;
  }
}

/* page_sub  ------------------------------*/
.l-mv_sub {
  position: relative;
  padding: calc(147 / 1366 * 100vw) 0 calc(50 / 1366 * 100vw);
  background-image: url("../img/common/bc_l-mv_sub.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  aspect-ratio: 1366/ 700;
  .inner {
    margin: 0 auto;
    width: calc(1128 / 1366 * 100vw);
    padding-bottom: calc(345 / 1366 * 100vw);
    .breadcrumb {
      font-weight: 500;
      font-size: calc(12 / 1366 * 100vw);
      line-height: calc(32 / 12);
      margin-bottom: calc(46 / 1366 * 100vw);
      ol {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: calc(12 / 1366 * 100vw);
        li {
          display: flex;
          align-items: center;
          gap: calc(12 / 1366 * 100vw);
          a {
            display: block;
          }
          &:nth-of-type(n + 2) {
            &::before {
              content: "";
              display: block;
              background-image: url("../img/common/dec_bread.svg");
              background-repeat: no-repeat;
              background-size: cover;
              background-position: center center;
              width: calc(4 / 1366 * 100vw);
              aspect-ratio: 4 / 8;
              align-self: center;
            }
          }
          &:last-of-type {
            color: #adadad;
          }
        }
      }
    }
    .mv_ttl {
      font-weight: bold;
      font-size: calc(100 / 1366 * 100vw);
      letter-spacing: 0.05em;
      color: #0200e0;
      .size_s {
        display: block;
        margin-top: calc(22 / 1366 * 100vw);
        font-size: calc(16 / 1366 * 100vw);
        color: #05051a;
        letter-spacing: 0;
      }
    }
    .mv_text {
      margin: calc(30 / 1366 * 100vw) 0 0 auto;
      width: calc(460 / 1128 * 100%);
      font-weight: 500;
      font-size: calc(16 / 1366 * 100vw);
      line-height: 2;
    }
  }
  @media screen and (max-width: 768px) {
    padding: calc(119 / 375 * 100vw) 0 calc(150 / 375 * 100vw);
    background-image: url("../img/common/bc_l-mv_sub_sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    aspect-ratio: unset;

    .inner {
      width: 85.86%;
      padding-bottom: calc(85 / 375 * 100vw);
      .breadcrumb {
        margin-bottom: calc(53 / 375 * 100vw);
        font-weight: 500;
        font-size: calc(10 / 375 * 100vw);
        line-height: calc(32 / 12);
        ol {
          justify-content: flex-start;
          align-items: center;
          gap: calc(10 / 375 * 100vw);
          li {
            display: flex;
            align-items: center;
            gap: calc(10 / 375 * 100vw);
            &:nth-of-type(n + 2) {
              &::before {
                width: calc(4 / 375 * 100vw);
              }
            }
          }
        }
      }
      .mv_ttl {
        font-weight: bold;
        font-size: calc(50 / 375 * 100vw);
        .size_s {
          display: block;
          margin-top: calc(13 / 375 * 100vw);
          font-size: calc(12 / 375 * 100vw);
        }
      }
      .mv_text {
        margin: calc(80 / 375 * 100vw) 0 0;
        width: 100%;
        font-size: calc(14 / 375 * 100vw);
      }
    }
  }
}

/* page_service:  ------------------------------*/

/* section: l-main_service  ----*/
.l-main_service {
  position: relative;
  padding: calc(171 / 1366 * 100vw) 0 calc(103 / 1366 * 100vw);
  background: #0200e0;
  &:not(:has(+ .l-case)) {
    padding-bottom: calc(203 / 1366 * 100vw);
  }
  .inner {
    margin: 0 auto;
    width: calc(1134 / 1366 * 100vw);
    .ttl02 {
      margin-bottom: calc(127 / 1366 * 100vw);
      position: relative;
      z-index: 0;
      width: fit-content;
      font-weight: 100;
      font-size: calc(77 / 1366 * 100vw);
      letter-spacing: 0.03em;
      line-height: 1;
      color: #fff;
      .dec01 {
        display: block;
        font-weight: bold;
        margin-bottom: calc(-11 / 1366 * 100vw);
      }
      .jp {
        position: absolute;
        top: calc(30 / 1366 * 100vw);
        right: calc(24 / 1366 * 100vw);
        font-weight: 500;
        font-size: calc(12 / 1366 * 100vw);
        line-height: 1;
        letter-spacing: 0;
      }
    }
    .list_service {
      display: flex;
      flex-flow: column;
      gap: calc(147 / 1366 * 100vw);
      color: #fff;
      .card_service {
        position: relative;
        z-index: 0;
        padding-left: calc(194 / 1366 * 100vw);
        .dec_no {
          position: absolute;
          z-index: 0;
          top: calc(17 / 1366 * 100vw);
          left: calc(10 / 1366 * 100vw);
          font-weight: bold;
          font-size: calc(20 / 1366 * 100vw);
          letter-spacing: 0.03em;
          display: flex;
          flex-flow: column;
          align-items: center;
          gap: calc(24 / 1366 * 100vw);
          .text {
            display: block;
            writing-mode: vertical-rl;
          }
          .no {
            position: relative;
            z-index: 0;
            font-weight: 600;
            font-size: calc(40 / 1366 * 100vw);
            line-height: 1;
            display: flex;
            flex-flow: column;
            gap: calc(4 / 1366 * 100vw);
            .size_l {
              position: relative;
              z-index: 0;
            }
            .size_s {
              position: relative;
              z-index: 1;
              font-size: calc(15 / 1366 * 100vw);
              opacity: 0.3;
              margin: 0 calc(-10 / 1366 * 100vw) 0 auto;
            }
            &::after {
              content: "";
              display: block;
              position: absolute;
              z-index: 0;
              border-left: 2px solid #fff;
              background: #0200e0;
              bottom: 0;
              right: 0;
              transform: skewX(-45deg);
              width: 0.4em;
              height: calc(40 / 1366 * 100vw);
            }
          }
        }
        .ttl03 {
          margin-bottom: calc(82 / 1366 * 100vw);
          font-weight: 600;
          font-size: calc(61 / 1366 * 100vw);
          letter-spacing: 0.023em;
          line-height: calc(78 / 61);
          .jp {
            display: block;
            margin-top: calc(28 / 1366 * 100vw);
            font-weight: 500;
            font-size: calc(20 / 1366 * 100vw);
            letter-spacing: 0;
          }
        }
        .wrapper_text {
          display: flex;
          gap: calc(63 / 1366 * 100vw);
          p {
            width: calc(316 / 1366 * 100vw);
            padding-right: calc(70 / 1366 * 100vw);
            border-right: 1px solid #fff;
            font-weight: 500;
            font-size: calc(16 / 1366 * 100vw);
            line-height: 2;
          }
          .list_tag {
            width: calc(560 / 1366 * 100vw);
            display: flex;
            flex-flow: wrap;
            gap: calc(12 / 1366 * 100vw);
            font-weight: 500;
            font-size: calc(16 / 1366 * 100vw);
            color: #0200e0;
            .card_tag {
              background: #ffffff;
              border-radius: calc(29 / 1366 * 100vw);
              height: calc(46 / 1366 * 100vw);
              padding: 0 calc(20 / 1366 * 100vw);
              display: flex;
              justify-content: center;
              align-items: center;
            }
          }
        }
      }
    }
    .btn00 {
      margin: calc(74 / 1366 * 100vw) auto 0;
      width: fit-content;
      color: #fff;
      &::after {
        content: "";
        background-image: url("../img/common/dec_btn01_w.svg");
      }
    }
  }
  @media screen and (max-width: 768px) {
    position: relative;
    padding: calc(94 / 375 * 100vw) 0 calc(77 / 375 * 100vw);
    &:not(:has(+ .l-case)) {
      padding-bottom: calc(160 / 375 * 100vw);
    }
    .inner {
      width: 87.2%;
      .ttl02 {
        margin-bottom: calc(68 / 375 * 100vw);
        font-size: calc(45 / 375 * 100vw);
        .dec01 {
          margin-bottom: calc(-5 / 375 * 100vw);
        }
        .jp {
          top: calc(-29 / 375 * 100vw);
          right: auto;
          left: calc(-7 / 375 * 100vw);
          font-size: calc(12 / 375 * 100vw);
        }
      }
      .list_service {
        gap: calc(80 / 375 * 100vw);
        .card_service {
          padding-left: calc(66 / 375 * 100vw);

          &:nth-of-type(1) {
            .list_tag {
              .card_tag:first-of-type {
                margin-right: 10%;
              }
            }
          }
          &:nth-of-type(2) {
            .list_tag {
              .card_tag:last-of-type {
                width: 70%;
              }
            }
          }

          .dec_no {
            font-size: calc(14 / 375 * 100vw);
            gap: calc(20 / 375 * 100vw);
            top: calc(7 / 375 * 100vw);
            left: calc(6 / 375 * 100vw);
            .no {
              font-size: calc(29 / 375 * 100vw);
              gap: calc(4 / 375 * 100vw);
              .size_s {
                font-size: calc(10 / 375 * 100vw);
                margin: 0 calc(-5 / 375 * 100vw) 0 auto;
              }
              &::after {
                right: calc(3 / 375 * 100vw);
                /* transform: skewX(-49deg); */
                width: calc(9 / 375 * 100vw);
                height: calc(30 / 375 * 100vw);
              }
            }
          }
          .ttl03 {
            margin-bottom: calc(47 / 375 * 100vw);
            font-size: calc(24 / 375 * 100vw);
            line-height: calc(33 / 24);
            .jp {
              display: block;
              margin-top: calc(14 / 375 * 100vw);
              font-size: calc(16 / 375 * 100vw);
            }
          }
          .wrapper_text {
            flex-flow: column;
            gap: calc(28 / 375 * 100vw);
            p {
              width: 100%;
              padding-right: 0;
              border-right: 0;
              font-size: calc(14 / 375 * 100vw);
            }
            .list_tag {
              width: 100%;
              padding: calc(10 / 375 * 100vw) 0 calc(10 / 375 * 100vw) calc(10 / 375 * 100vw);
              border-left: 1px solid #fff;
              gap: calc(8 / 375 * 100vw);
              font-size: calc(12 / 375 * 100vw);
              .card_tag {
                border-radius: calc(29 / 375 * 100vw);
                height: calc(30 / 375 * 100vw);
                padding: 0 calc(12 / 375 * 100vw);
              }
            }
          }
        }
      }
      .btn00 {
        margin: calc(57 / 375 * 100vw) auto 0;
      }
    }
  }
}
/* section: l-case  ----*/
.l-case {
  position: relative;
  z-index: 0;
  background: #f5f4f2;
  padding: calc(180 / 1366 * 100vw) 0 calc(180 / 1366 * 100vw);
  overflow: hidden;
  .dec_text {
    position: absolute;
    z-index: -1;
    top: calc(172 / 1366 * 100vw);
    right: calc(-7 / 1366 * 100vw);
    display: flex;
    align-items: flex-start;
    gap: calc(11 / 1366 * 100vw);
    color: #fff;
    svg {
      width: calc(38 / 1366 * 100vw);
    }
    .en {
      font-weight: bold;
      font-size: calc(12 / 1366 * 100vw);
      line-height: calc(22 / 12);
      writing-mode: vertical-rl;
      margin-right: calc(20 / 1366 * 100vw);
    }
    .jp {
      font-weight: 900;
      font-size: calc(144 / 1366 * 100vw);
      writing-mode: vertical-rl;
      height: 13em;
      letter-spacing: 0.05em;
    }
  }
  .inner {
    margin: 0 auto;
    width: calc(1120 / 1366 * 100vw);
    .ttl02 {
      margin-bottom: calc(149 / 1366 * 100vw);
      position: relative;
      z-index: 0;
      width: fit-content;
      font-weight: 100;
      font-size: calc(77 / 1366 * 100vw);
      letter-spacing: 0.11em;
      line-height: 1;
      color: #0200e0;
      letter-spacing: 0.03em;
      .dec01 {
        display: block;
        font-weight: bold;
        margin-bottom: calc(-11 / 1366 * 100vw);
      }
      .jp {
        position: absolute;
        top: calc(30 / 1366 * 100vw);
        right: 0;
        font-weight: 500;
        font-size: calc(12 / 1366 * 100vw);
        line-height: 1;
        letter-spacing: 0;
        color: #05051a;
      }
    }

    .list_case {
      display: flex;
      flex-flow: column;
      gap: calc(131 / 1366 * 100vw);
      .card_case {
        position: relative;
        z-index: 0;
        padding-left: calc(274 / 1366 * 100vw);
        border-bottom: 1px solid #d9d7d2;

        .sec_no {
          position: absolute;
          z-index: 1;
          top: calc(-19 / 1366 * 100vw);
          left: calc(2 / 1366 * 100vw);
          display: flex;
          gap: calc(18 / 1366 * 100vw);
          .text {
            align-self: center;
            font-weight: 100;
            font-size: calc(11 / 1366 * 100vw);
            letter-spacing: 0.03em;
            line-height: 1.2;
            text-align: left;
            color: #0200e0;
            .dec_c01 {
              display: block;
              font-weight: bold;
            }
          }
          .no {
            font-weight: bold;
            font-size: calc(71 / 1366 * 100vw);
            letter-spacing: 0.03em;
            text-align: left;
            color: #0200e0;
          }
        }
        .wrapper_data {
          padding-bottom: calc(94 / 1366 * 100vw);
        }
        .ttl03 {
          margin-bottom: calc(46 / 1366 * 100vw);
          font-weight: bold;
          font-size: calc(29 / 1366 * 100vw);
        }
        .list_overview {
          display: flex;
          justify-content: space-between;
          .card_overview {
            padding: calc(20 / 1366 * 100vw) calc(31 / 1366 * 100vw) calc(28 / 1366 * 100vw);
            border-radius: calc(11 / 1366 * 100vw);
            background: #fff;
            font-weight: 500;
            font-size: calc(17.5 / 1366 * 100vw);
            width: calc(373 / 1366 * 100vw);
            &:nth-of-type(2) {
              width: calc(456 / 1366 * 100vw);
            }
            .en {
              font-weight: bold;
              font-size: calc(11 / 1366 * 100vw);
              letter-spacing: 0.03em;
              color: #0200e0;
            }
            .dec01 {
              display: block;
              margin-top: calc(19 / 1366 * 100vw);
              display: flex;
              align-items: center;
              gap: calc(15 / 1366 * 100vw);
              svg {
                width: calc(15 / 1366 * 100vw);
                height: calc(15 / 1366 * 100vw);
                align-self: center;
                path {
                  fill: #0200e0;
                }
              }
            }
          }
        }
      }
    }
    p {
      margin-top: calc(36 / 1366 * 100vw);
      width: 68%;
      font-weight: 500;
      font-size: calc(16 / 1366 * 100vw);
      line-height: 2;
      strong {
        display: block;
        margin-bottom: calc(19 / 1366 * 100vw);
        font-weight: bold;
        font-size: calc(21 / 1366 * 100vw);
        line-height: calc(38 / 21);
        color: #0200e0;
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: calc(124 / 375 * 100vw) 0 calc(100 / 375 * 100vw);
    .dec_text {
      top: calc(100 / 375 * 100vw);
      right: 0;
      gap: calc(14 / 375 * 100vw);
      svg {
        width: calc(38 / 375 * 100vw);
      }
      .en {
        font-size: calc(12 / 375 * 100vw);
        margin-right: calc(2 / 375 * 100vw);
      }
      .jp {
        font-size: calc(91 / 375 * 100vw);
        height: 12em;
      }
    }
    .inner {
      margin: 0 auto;
      width: 85.866%;
      .ttl02 {
        margin-bottom: calc(83 / 375 * 100vw);
        font-size: calc(44 / 375 * 100vw);
        /* letter-spacing: 0.11em; */
        .dec01 {
          display: block;
          font-weight: bold;
          margin-bottom: calc(-5 / 375 * 100vw);
        }
        .jp {
          top: calc(-29 / 375 * 100vw);
          right: auto;
          left: calc(-6 / 375 * 100vw);
          font-size: calc(12 / 375 * 100vw);
        }
      }
      .list_case {
        display: flex;
        flex-flow: column;
        gap: calc(83 / 375 * 100vw);
        .card_case {
          padding-left: 0;
          .sec_no {
            position: static;
            gap: calc(7 / 375 * 100vw);
            .text {
              font-size: calc(10 / 375 * 100vw);
              line-height: 1.2;
              .dec_c01 {
                display: inline-block;
                margin-right: calc(4 / 375 * 100vw);
              }
            }
            .no {
              font-size: calc(24 / 375 * 100vw);
            }
          }
          .wrapper_data {
            padding-bottom: calc(75 / 375 * 100vw);
          }
          .ttl03 {
            margin: calc(25 / 375 * 100vw) 0 calc(44 / 375 * 100vw);
            font-size: calc(18 / 375 * 100vw);
          }
          .list_overview {
            flex-flow: column;
            gap: calc(10 / 375 * 100vw);
            .card_overview {
              padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw) calc(12 / 375 * 100vw);
              border-radius: calc(11 / 375 * 100vw);
              font-size: calc(16 / 375 * 100vw);
              width: 100%;
              &:nth-of-type(2) {
                width: 100%;
              }
              .en {
                font-size: calc(10 / 375 * 100vw);
              }
              .dec01 {
                margin-top: calc(15 / 375 * 100vw);
                gap: calc(12 / 375 * 100vw);
                line-height: calc(28 / 16);
                svg {
                  width: calc(10 / 375 * 100vw);
                  height: calc(10 / 375 * 100vw);
                  align-self: baseline;
                  transform: translateY(calc(10 / 375 * 100vw));
                }
              }
            }
          }
        }
      }
      p {
        margin-top: calc(37 / 375 * 100vw);
        font-size: calc(14 / 375 * 100vw);
        width: 100%;
        strong {
          margin-bottom: calc(16 / 375 * 100vw);
          font-size: calc(18 / 375 * 100vw);
          line-height: calc(33 / 18);
        }
      }
    }
  }
}
/* page_about:  ------------------------------*/

/* section: l-vision  ----*/
.l-vision {
  position: relative;
  z-index: 0;
  padding: calc(180 / 1366 * 100vw) 0 calc(300 / 1366 * 100vw);
  background: #0200e0;
  color: #fff;
  .inner {
    margin: 0 auto;
    width: calc(744 / 1366 * 100vw);
    .ttl02 {
      margin-bottom: calc(46 / 1366 * 100vw);
      font-weight: bold;
      font-size: calc(40 / 1366 * 100vw);
    }
    .wrapper_text {
      position: relative;
      z-index: 0;
      padding-left: calc(95 / 1366 * 100vw);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-weight: 500;
      font-size: calc(18 / 1366 * 100vw);
      line-height: calc(52 / 18);
    }
    .dec_text {
      position: absolute;
      z-index: 0;
      top: calc(12 / 1366 * 100vw);
      left: calc(10 / 1366 * 100vw);
      writing-mode: vertical-rl;
      font-weight: 100;
      font-size: calc(20 / 1366 * 100vw);
      letter-spacing: 0.07em;
      color: #7a79ff;
      .dec_w {
        font-weight: bold;
      }
    }
    p {
      width: calc(499 / 649 * 100%);
    }
    .representative {
      width: calc(79 / 649 * 100%);
      padding-top: calc(32 / 1366 * 100vw);
      border-top: 1px solid #fff;
      display: flex;
      flex-flow: column;
      line-height: 1;
      gap: calc(16 / 1366 * 100vw);
      transform: translateY(calc(-17 / 1366 * 100vw));
      .size_s {
        font-size: calc(12 / 1366 * 100vw);
        text-align: right;
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: calc(100 / 375 * 100vw) 0 calc(180 / 375 * 100vw);
    .inner {
      width: 81.06%;
      .ttl02 {
        margin-bottom: calc(36 / 375 * 100vw);
        font-size: calc(32 / 375 * 100vw);
      }
      .wrapper_text {
        padding-left: calc(61 / 375 * 100vw);
        flex-flow: column;
        align-items: flex-start;
        gap: calc(47 / 375 * 100vw);
        font-size: calc(15 / 375 * 100vw);
        line-height: calc(45 / 15);
      }
      .dec_text {
        top: calc(14 / 375 * 100vw);
        left: calc(-3 / 375 * 100vw);
        font-size: calc(18 / 375 * 100vw);
      }
      p {
        width: 100%;
      }
      .representative {
        width: fit-content;
        font-size: calc(18 / 375 * 100vw);
        padding-top: calc(32 / 375 * 100vw);
        gap: calc(16 / 375 * 100vw);
        transform: translateY(0);
        .size_s {
          font-size: calc(12 / 375 * 100vw);
          text-align: left;
        }
      }
    }
  }
}

/* section: l-overview  ----*/
.l-overview {
  position: relative;
  z-index: 0;
  padding: calc(150 / 1366 * 100vw) 0 calc(300 / 1366 * 100vw);
  /* &:not(:has(+ .l-contact)) {
    padding-bottom: calc( 1000 / 1366 * 100vw );
  } */
  .inner {
    margin: 0 auto;
    width: 82.28%;
    .ttl02 {
      margin-bottom: calc(47 / 1366 * 100vw);
      position: relative;
      z-index: 0;
      width: fit-content;
      font-weight: 100;
      font-size: calc(77 / 1366 * 100vw);
      letter-spacing: 0.1em;
      line-height: 1;
      color: #0200e0;
      .dec01 {
        display: block;
        font-weight: bold;
        margin-bottom: calc(-12 / 1366 * 100vw);
        letter-spacing: 0.025em;
      }
      .jp {
        position: absolute;
        top: calc(30 / 1366 * 100vw);
        right: calc(28 / 1366 * 100vw);
        font-weight: 500;
        font-size: calc(12 / 1366 * 100vw);
        line-height: 1;
        letter-spacing: 0;
        color: #05051a;
      }
    }
    .company_data {
      margin: auto;
      width: 83.09%;
      padding: 0 calc(59 / 1366 * 100vw);
      border: solid #0200e0;
      border-width: 0 1px;
      .card_data {
        display: flex;
        justify-content: space-between;
        > * {
          height: calc(76 / 1366 * 100vw);
        }
        dt {
          width: calc(226 / 1366 * 100vw);
          font-weight: bold;
          font-size: calc(18 / 1366 * 100vw);
          display: flex;
          align-items: center;
          gap: 0.833em;
          border-bottom: 1px solid #dbdbdb;
          &::before {
            content: "";
            display: block;
            background-image: url("../img/common/icon_arrow_blue.svg");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
            width: 0.833em;
            aspect-ratio: 15 / 16;
          }
        }
        dd {
          width: calc(570 / 1366 * 100vw);
          font-weight: 500;
          font-size: calc(16 / 1366 * 100vw);
          line-height: 2;
          border-bottom: 1px solid #dbdbdb;
          display: flex;
          align-items: center;
          padding: 0 calc(20 / 1366 * 100vw);
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: calc(100 / 375 * 100vw) 0 calc(350 / 375 * 100vw);
    .inner {
      margin: 0 auto;
      width: 82.28%;
      .ttl02 {
        margin-bottom: calc(41 / 375 * 100vw);
        font-size: calc(44 / 375 * 100vw);
        letter-spacing: 0.11em;
        .dec01 {
          display: block;
          font-weight: bold;
          margin-bottom: calc(-4 / 375 * 100vw);
          letter-spacing: 0.05em;
        }
        .jp {
          top: calc(-29 / 375 * 100vw);
          right: auto;
          left: calc(-4 / 375 * 100vw);
          font-size: calc(12 / 375 * 100vw);
        }
      }
      .company_data {
        width: 100%;
        padding: 0 calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
        .card_data {
          padding: calc(27 / 375 * 100vw) 0 calc(22 / 375 * 100vw);
          flex-flow: column;
          gap: calc(10 / 375 * 100vw);
          border-bottom: 1px solid #dbdbdb;
          > * {
            height: auto;
          }
          dt {
            width: 100%;
            font-weight: bold;
            font-size: calc(16 / 375 * 100vw);
            display: flex;
            align-items: center;
            gap: 0.8125em;
            border-bottom: none;
            &::before {
              width: 0.833em;
            }
          }
          dd {
            width: 100%;
            font-size: calc(14 / 375 * 100vw);
            border-bottom: none;
            display: block;
            padding: 0;
          }
        }
      }
    }
  }
}
/* page_news:  ------------------------------*/

.l-news_sub {
  position: relative;
  z-index: 0;
  padding: calc(150 / 1366 * 100vw) 0 calc(400 / 1366 * 100vw);
  .list_news {
    margin: 0 auto;
    width: 82.28%;
    display: flex;
    flex-flow: column;
    .card_news {
      border-bottom: 1px solid #0200e0;
      .c-accordion__ttl {
        padding: calc(44 / 1366 * 100vw) 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        time {
          width: calc(72 / 1366 * 100vw);
          font-weight: 500;
          font-size: calc(12 / 1366 * 100vw);
          color: #1c36ff;
        }
        h2 {
          position: relative;
          z-index: 0;
          width: calc(100% - calc(152 / 1366 * 100vw));
          font-weight: bold;
          font-size: calc(20 / 1366 * 100vw);
          line-height: 2;
          display: flex;
          justify-content: space-between;
          gap: 1em;
          .ttl_text {
            width: calc(100% - 2.4em);
          }
          .dec_plus {
            position: relative;
            width: 1.4em;
            aspect-ratio: 1;
            align-self: baseline;
            transform: translateY(calc(8 / 20 * 1em));
            &::before {
              content: "";
              display: block;
              position: absolute;
              z-index: 0;
              background-color: #0200e0;
              top: 0;
              left: 50%;
              transform-origin: center;
              transform: translate(-50%, 0);
              width: calc(3 / 1366 * 100vw);
              height: 100%;
              transition: 0.3s;
            }
            &::after {
              content: "";
              display: block;
              position: absolute;
              z-index: 0;
              background-color: #0200e0;
              top: 50%;
              left: 50%;
              transform-origin: center;
              transform: translate(-50%, -50%);
              width: 100%;
              height: calc(3 / 1366 * 100vw);
              transition: 0.3s;
            }
          }
        }
      }
      .c-accordion__cont {
        .c-accordion__inner {
          display: flex;
          justify-content: space-between;
          figure {
            position: relative;
            z-index: 0;
            width: calc(459 / 1124 * 100%);
            &::after {
              content: "";
              display: block;
              position: absolute;
              top: 0;
              left: 0;
              z-index: 1;
              background: #0200e0;
              width: 100%;
              height: 100%;
              mix-blend-mode: color;
            }
            img {
              display: block;
            }
          }
          p {
            width: calc(615 / 1124 * 100%);
            font-weight: 500;
            font-size: calc(16 / 1366 * 100vw);
            letter-spacing: 0.03em;
            line-height: calc(30 / 16);
          }
        }
      }
      &.open {
        .c-accordion__ttl {
          .dec_plus {
            &::before {
              width: max(2px, calc(2 / 1366 * 100vw));
              transform: translate(-50%, 0) skewX(-45deg);
            }
            &::after {
              transform: translate(-50%, -50%) scale(0, 1);
            }
          }
        }
        .c-accordion__cont {
          .c-accordion__inner {
            padding-bottom: calc(50 / 1366 * 100vw);
          }
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: 0 0 calc(400 / 375 * 100vw);
    .list_news {
      width: 85.86%;
      .card_news {
        .c-accordion__ttl {
          padding: calc(29 / 375 * 100vw) 0;
          flex-flow: column;
          align-items: flex-start;
          gap: calc(12 / 375 * 100vw) 0;
          time {
            width: 100%;
            font-size: calc(12 / 375 * 100vw);
          }
          h2 {
            width: 100%;
            font-size: calc(16 / 375 * 100vw);
            .ttl_text {
              width: calc(100% - 2.125em);
            }
            .dec_plus {
              width: calc(18 / 375 * 100vw);
              transform: translateY(calc(8 / 18 * 1em));
              &::before {
                width: calc(3 / 375 * 100vw);
              }
              &::after {
                height: calc(3 / 375 * 100vw);
              }
            }
          }
        }
        .c-accordion__cont {
          .c-accordion__inner {
            flex-flow: column;
            gap: calc(30 / 375 * 100vw);
            width: 84.05%;
            figure {
              width: 100%;
            }
            p {
              width: 100%;
              font-size: calc(14 / 375 * 100vw);
              line-height: 2;
            }
          }
        }
        &.open {
          .c-accordion__ttl {
            .dec_plus {
              &::before {
                width: 2px;
              }
            }
          }

          .c-accordion__cont {
            .c-accordion__inner {
              padding-bottom: calc(26 / 375 * 100vw);
              gap: calc(25 / 375 * 100vw);
            }
          }
        }
      }
    }
  }
}
/* page_privacy:  ------------------------------*/

/* section: l-privacy  ----*/
.l-privacy_sub.sw_blind01 {
  position: relative;
  z-index: 0;
  padding: 0 0 calc(400 / 1366 * 100vw);
  .list_privacy {
    margin: 0 auto;
    width: 58.9%;
    display: flex;
    flex-flow: column;
    gap: calc(71 / 1366 * 100vw);
    .card_privacy {
      dt {
        position: relative;
        z-index: 0;
        display: block;
        font-weight: bold;
        font-size: calc(20 / 1366 * 100vw);
        line-height: 2;
        margin-bottom: calc(10 / 1366 * 100vw);
        padding-left: 1.5em;

        &::after {
          content: "";
          display: block;
          position: absolute;
          z-index: 0;
          background-image: url("../img/common/icon_arrow_blue.svg");
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center center;
          top: 0.65em;
          left: 0;
          width: 0.75em;
          aspect-ratio: 15 / 16;
        }
      }
      dd {
        font-weight: 500;
        font-size: calc(16 / 1366 * 100vw);
        letter-spacing: 0.03em;
        line-height: 2;
        padding-left: 1.9em;
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: 0 0 calc(400 / 375 * 100vw);
    .list_privacy {
      width: 85.86%;
      gap: calc(51 / 375 * 100vw);
      .card_privacy {
        dt {
          font-size: calc(20 / 375 * 100vw);
          margin-bottom: calc(10 / 375 * 100vw);
          padding-left: 1.5em;

          &::after {
            top: 0.65em;
            width: 0.75em;
          }
        }
        dd {
          font-size: calc(14 / 375 * 100vw);
          padding-left: 2.1428em;
        }
      }
    }
  }
}
