@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*----------------------------------
    clamp関数
-----------------------------------*/
/*----------------------------------
    fz-rem関数
-----------------------------------*/
/*----------------------------------
　　    pxをremに変換する関数
-----------------------------------*/
/*----------------------------------
　　    フォントサイズをレスポンシブにするmixin (pxをremに変換)
-----------------------------------*/
/*----------------------------------
使い方
@include responsive-font-size(16px, 24px, 375px, 1366px);
-----------------------------------*/
@-webkit-keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.js-fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  will-change: opacity;
}
.js-fade-in.is-visible {
  opacity: 1;
}

.js-fade-in--delay1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-fade-in--delay2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-fade-in--delay3 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.js-fade-in--delay4 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.js-fade-in--delay5 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.js-fade-in--up {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.js-fade-in--up.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fade-in--down {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.js-fade-in--down.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fade-in--left {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.js-fade-in--left.is-visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-fade-in--right {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.js-fade-in--right.is-visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-fade-in--fast {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.js-fade-in--slow {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.js-scale-up {
  opacity: 0;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  will-change: opacity, transform;
}
.js-scale-up.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.js-scale-up--delay1 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.js-scale-up--delay2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.js-scale-up--delay3 {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.js-scale-up--delay4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.js-scale-up--delay5 {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 63px;
  font-size: 16px;
}

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  color: #757676;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #080f14;
}

main {
  overflow-x: hidden;
}

video,
img,
svg {
  width: 100%;
  height: auto;
}

picture,
img,
a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* 透過度の変化にアニメーションを適用 */
  color: inherit;
}
a:hover {
  opacity: 0.8; /* ホバー時の透過度を設定 */
}
@media screen and (min-width: 820px) {
  a:hover {
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

.l-inner {
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (min-width: 820px) {
  .l-inner {
    max-width: 1020px;
    padding-inline: clamp(60px, 60px + (0) * (100vw - 820px) / (1366 - 820), 60px);
  }
}
@media screen and (min-width: 1366px) {
  .l-inner {
    max-width: 1366px;
    padding-inline: clamp(143px, 143px + (0) * (100vw - 820px) / (1366 - 820), 143px);
  }
}

.l-header {
  position: fixed;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(8, 15, 20, 0.3), inset rgba(8, 15, 20, 0.8) 0px -1px 0px 0px, inset #dff7f6 0px 1px 0px 0px;
          box-shadow: 0px 4px 4px 0px rgba(8, 15, 20, 0.3), inset rgba(8, 15, 20, 0.8) 0px -1px 0px 0px, inset #dff7f6 0px 1px 0px 0px;
  border-radius: 26px;
  background: rgba(0, 122, 156, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-inline: 20px;
  margin-inline: auto;
  width: 335px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 820px) {
  .l-header {
    width: calc(100% - 48px);
    max-width: 724px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    top: 21px;
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 20px;
  height: 41px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  .l-header__inner {
    padding-inline: 0;
    margin: 0;
  }
}
@media screen and (min-width: 1366px) {
  .l-header__inner {
    height: 51px;
  }
}
.l-header__logo {
  width: 118px;
}
.l-header__hamburger {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 101;
}
@media screen and (min-width: 820px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  position: absolute;
  left: 65%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15px;
  height: 1.5px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header__hamburger span:nth-child(1) {
  top: 10px;
}
.l-header__hamburger span:nth-child(2) {
  top: 15px;
  opacity: 1;
}
.l-header__hamburger span:nth-child(3) {
  top: 20px;
}
.l-header__hamburger.is-active span:nth-child(1) {
  top: 15px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  top: 15px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.l-header__nav {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
@media screen and (min-width: 820px) {
  .l-header__nav {
    height: auto;
    overflow: visible;
  }
}
.l-header.is-active .l-header__nav {
  height: 167px;
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-inline: 30px 20px;
  gap: 18px;
}
@media screen and (min-width: 820px) {
  .l-header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
    gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 820px) {
  .l-header__nav-item {
    padding-inline: 8px;
  }
}
.l-header__nav-item a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.l-header__nav-item a:hover {
  opacity: 0.7;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
}

@-webkit-keyframes hoverAnimation {
  0% {
    color: black; /* アニメーション開始時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置 */
  }
  50% {
    color: #fff; /* アニメーション中間点の文字色 */
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); /* 少し上に移動 */
  }
  100% {
    color: #fff; /* アニメーション終了時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}

@keyframes hoverAnimation {
  0% {
    color: black; /* アニメーション開始時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置 */
  }
  50% {
    color: #fff; /* アニメーション中間点の文字色 */
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); /* 少し上に移動 */
  }
  100% {
    color: #fff; /* アニメーション終了時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}
.l-header__menu-ja {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; /* 色の変化にアニメーションを適用 */
}

.menu-item:hover .c-header__menu-ja {
  -webkit-animation: hoverAnimation 0.6s ease forwards;
          animation: hoverAnimation 0.6s ease forwards; /* キーフレームアニメーションを適用 */
}

.l-footer {
  background: #080f14;
}

.l-footer__inner {
  padding-block: 20px;
}
@media screen and (min-width: 820px) {
  .l-footer__inner {
    padding-block: clamp(22px, 22px + (6) * (100vw - 820px) / (1366 - 820), 28px);
  }
}

.l-footer__text {
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 225% */
}

.c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-button {
  border: solid 1px #fff;
  display: block;
  font-size: 1.125rem;
  width: clamp(345px, 345px + (205) * (100vw - 375px) / (1366 - 375), 550px);
  height: clamp(40px, 40px + (35) * (100vw - 375px) / (1366 - 375), 75px);
  display: grid;
  place-items: center;
  text-align: center;
}
/*----------------------------------
      <div class="p-mv-btn c-btn">
            <a class="c-button" href="#">会員登録する（無料）</a>
          </div>
-----------------------------------*/
.l-fv {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 15, 20, 0)), color-stop(50%, rgba(8, 15, 20, 0)), color-stop(78%, rgba(8, 15, 20, 0.7)), color-stop(95%, rgba(8, 15, 20, 0.95)), color-stop(99%, #080f14)), url(../img/fv-bg-img.webp) lightgray 50%/cover no-repeat;
  background: linear-gradient(180deg, rgba(8, 15, 20, 0) 0%, rgba(8, 15, 20, 0) 50%, rgba(8, 15, 20, 0.7) 78%, rgba(8, 15, 20, 0.95) 95%, #080f14 99%), url(../img/fv-bg-img.webp) lightgray 50%/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
}

.l-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.l-fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  gap: 15px;
  margin-inline: auto;
}
@media screen and (min-width: 820px) {
  .l-fv__title {
    gap: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .l-fv__title {
    gap: 36px;
  }
}

.l-fv__slogan {
  width: 225px;
  width: clamp(225px, 225px + (279) * (100vw - 375px) / (1366 - 375), 504px);
}

.l-fv__logo {
  width: clamp(325px, 325px + (455) * (100vw - 375px) / (1366 - 375), 780px);
}

/*----------------------------------
    philosophy
-----------------------------------*/
.l-philosophy {
  margin-top: -2px;
  padding-top: 1px;
  background-color: #080f14;
  translate: 0 1px;
  padding-block: 39px 60px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 820px) {
  .l-philosophy {
    padding-top: clamp(99px, 99px + (0) * (100vw - 820px) / (1366 - 820), 99px);
    padding-bottom: clamp(80px, 80px + (40) * (100vw - 820px) / (1366 - 820), 120px);
  }
}

.l-philosophy__title {
  background: var(--Cyvate_gradation, linear-gradient(90deg, #32a2a6 0%, #00bce2 55%, #006c81 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1366px) {
  .l-philosophy__title {
    gap: 29px;
  }
}

.l-philosophy__h2 {
  /* h2英字 */
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 100;
  line-height: 60px; /* 100% */
  text-transform: capitalize;
}
@media screen and (min-width: 820px) {
  .l-philosophy__h2 {
    font-size: clamp(5rem, 3.1227106227rem + 3.663003663vw, 6.25rem);
    line-height: 80px; /* 100% */
    text-transform: capitalize;
  }
}

.l-philosophy__p {
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 2.8px;
  text-transform: capitalize;
}

.l-philosophy__content {
  padding-top: 20px;
}

.l-philosophy__content-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 820px) {
  .l-philosophy__content-text-wrap {
    gap: 25px;
  }
}

.l-philosophy__content-text {
  color: #fff;
  /* p18px(16px)medium */
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.68; /* 168.75% */
}
@media screen and (min-width: 820px) {
  .l-philosophy__content-text {
    font-size: 1.125rem;
    text-align: center;
  }
}

/*----------------------------------
    symbol
-----------------------------------*/
.l-symbol {
  padding-top: 1px;
  background-color: #080f14;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(8, 15, 20, 0)), to(rgba(8, 15, 20, 0.3))), #6a6c6d;
  background: linear-gradient(180deg, rgba(8, 15, 20, 0) 80%, rgba(8, 15, 20, 0.3) 100%), #6a6c6d;
  padding-block: 60px 56px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 820px) {
  .l-symbol {
    padding-top: clamp(80px, 80px + (50) * (100vw - 820px) / (1366 - 820), 130px);
    padding-bottom: clamp(80px, 80px + (40) * (100vw - 820px) / (1366 - 820), 120px);
  }
}

.l-symbol__inner {
  z-index: 3;
  position: relative;
}

.l-symbol__title {
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1366px) {
  .l-symbol__title {
    gap: 29px;
  }
}

.l-symbol__h2 {
  /* h2英字 */
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 100;
  line-height: 60px; /* 100% */
  text-transform: capitalize;
}
@media screen and (min-width: 820px) {
  .l-symbol__h2 {
    font-size: clamp(5rem, 3.1227106227rem + 3.663003663vw, 6.25rem);
    line-height: 80px; /* 100% */
    text-transform: capitalize;
  }
}

.l-symbol__p {
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 2.8px;
  text-transform: capitalize;
}

.l-symbol__content {
  padding-top: 41px;
}

.l-symbol__content-main-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  width: 263px;
}
@media screen and (min-width: 820px) {
  .l-symbol__content-main-img {
    width: clamp(278px, 278px + (52) * (100vw - 820px) / (1366 - 820), 330px);
  }
}

.l-symbol__content-text-wrap {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 1366px) {
  .l-symbol__content-text-wrap {
    padding-inline: 60px;
  }
}

.l-symbol__content-text {
  color: #fff;
  /* p18px(16px)medium */
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.68; /* 168.75% */
}
@media screen and (min-width: 820px) {
  .l-symbol__content-text {
    font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
    line-height: 1.66; /* 168.75% */
  }
}

.l-symbol__content-text-bold {
  font-weight: 700;
}

.l-symbol__content-sub-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  margin-inline: -20px;
}
@media screen and (min-width: 820px) {
  .l-symbol__content-sub-img-wrap {
    margin-inline: 0;
  }
}

.l-symbol__content-text-wrap-2 {
  padding-block: 6px;
}
@media screen and (min-width: 820px) {
  .l-symbol__content-text-wrap-2 {
    padding-block: 0px;
  }
}

.l-symbol__content-text-center {
  text-align: center;
}

.l-symbol__bg-wrap {
  position: relative;
  z-index: 2;
}
.l-symbol__bg {
  position: absolute;
}

.l-symbol__bg1 {
  top: clamp(-100px, -100px + (100) * (100vw - 375px) / (820 - 375), 0px);
  right: clamp(-80px, -80px + (10) * (100vw - 375px) / (820 - 375), -70px);
  width: 196.5px;
}
@media screen and (min-width: 820px) {
  .l-symbol__bg1 {
    top: -100px;
    right: -20%;
    width: clamp(335px, 335px + (68) * (100vw - 820px) / (1366 - 820), 403px);
  }
}
@media screen and (min-width: 1366px) {
  .l-symbol__bg1 {
    top: -155px;
    right: -2%;
  }
}

.l-symbol__bg2 {
  top: -200px;
  right: 10%;
  width: 142.4px;
}
@media screen and (min-width: 820px) {
  .l-symbol__bg2 {
    top: 100px;
    right: 10%;
    width: clamp(243px, 243px + (49) * (100vw - 820px) / (1366 - 820), 292px);
  }
}
@media screen and (min-width: 1366px) {
  .l-symbol__bg2 {
    top: -304px;
    right: 14%;
  }
}
@media screen and (min-width: 1800px) {
  .l-symbol__bg2 {
    top: -364px;
    right: 14%;
  }
}

.l-symbol__bg3 {
  top: 135px;
  right: -20%;
  width: 160px;
}
@media screen and (min-width: 820px) {
  .l-symbol__bg3 {
    top: 135px;
    right: -15%;
    width: clamp(273px, 273px + (56) * (100vw - 820px) / (1366 - 820), 329px);
  }
}
@media screen and (min-width: 1366px) {
  .l-symbol__bg3 {
    top: 336px;
    right: -7%;
  }
}

.l-symbol__bg4 {
  top: 20px;
  right: 2%;
  width: 158px;
}
@media screen and (min-width: 820px) {
  .l-symbol__bg4 {
    top: 195px;
    right: -2%;
    width: clamp(270px, 270px + (55) * (100vw - 820px) / (1366 - 820), 325px);
  }
}
@media screen and (min-width: 1366px) {
  .l-symbol__bg4 {
    top: 311px;
    right: 8%;
  }
}

.l-symbol__bg5 {
  top: 483px;
  right: -9%;
  width: 160px;
}
@media screen and (min-width: 820px) {
  .l-symbol__bg5 {
    top: 816px;
    right: -5%;
    width: clamp(252px, 252px + (51) * (100vw - 820px) / (1366 - 820), 303px);
  }
}
@media screen and (min-width: 1366px) {
  .l-symbol__bg5 {
    top: 942px;
  }
}

.l-symbol__bg6 {
  top: -50px;
  left: clamp(-150px, -150px + (100) * (100vw - 375px) / (820 - 375), -50px);
  width: 300px;
}
@media screen and (min-width: 820px) {
  .l-symbol__bg6 {
    top: -20px;
    left: clamp(-80px, -80px + (30) * (100vw - 820px) / (1366 - 820), -50px);
    width: clamp(400px, 400px + (204) * (100vw - 820px) / (1366 - 820), 604px);
  }
}
@media screen and (min-width: 1366px) {
  .l-symbol__bg6 {
    top: -300px;
  }
}
@media screen and (min-width: 1800px) {
  .l-symbol__bg6 {
    top: -360px;
  }
}

/*----------------------------------
    service
-----------------------------------*/
.l-service {
  padding-block: 60px 60px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(8, 15, 20, 0)), to(rgba(8, 15, 20, 0.6))), #182c3b;
  background: linear-gradient(180deg, rgba(8, 15, 20, 0) 70%, rgba(8, 15, 20, 0.6) 100%), #182c3b;
}
.l-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/fv-bg-img.webp) lightgray 50%/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}
@media screen and (min-width: 820px) {
  .l-service {
    padding-block: clamp(80px, 80px + (50) * (100vw - 820px) / (1366 - 820), 130px);
  }
}

.l-service__inner {
  position: relative;
  z-index: 1;
}

.l-service__title {
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1366px) {
  .l-service__title {
    gap: 29px;
  }
}

.l-service__h2 {
  /* h2英字 */
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 100;
  line-height: 60px; /* 100% */
  text-transform: capitalize;
}
@media screen and (min-width: 820px) {
  .l-service__h2 {
    font-size: clamp(5rem, 3.1227106227rem + 3.663003663vw, 6.25rem);
    line-height: 80px; /* 100% */
    text-transform: capitalize;
  }
}

.l-service__p {
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 2.8px;
  text-transform: capitalize;
}

.l-service__discription {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 820px) {
  .l-service__discription {
    gap: 12px;
  }
}
@media screen and (min-width: 1366px) {
  .l-service__discription {
    gap: 15px;
  }
}

.l-service__discription-text {
  color: #fff;
  text-align: center;
  /* h3-24px（20px） */
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
}
@media screen and (min-width: 820px) {
  .l-service__discription-text {
    font-size: 1.5rem;
  }
}

.l-service__discription-ruby {
  width: 200px;
  padding-top: 10px;
}
@media screen and (min-width: 820px) {
  .l-service__discription-ruby {
    padding-top: 0px;
    padding-left: 10px;
  }
}

.l-service__discription-text-ruby {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 820px) {
  .l-service__discription-text-ruby {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-service__label {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: -webkit-gradient(linear, left top, right top, from(#32a2a6), color-stop(55%, #00bce2), to(#006c81));
  background: linear-gradient(90deg, #32a2a6 0%, #00bce2 55%, #006c81 100%);
}
@media screen and (min-width: 820px) {
  .l-service__label {
    margin-top: clamp(42px, 42px + (3) * (100vw - 820px) / (1366 - 820), 45px);
  }
}

.l-service__label-text {
  color: #fff;
  text-align: center;
  /* 20px（18px） */
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
}
@media screen and (min-width: 1366px) {
  .l-service__label-text {
    font-size: 1.25rem;
  }
}

.l-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1366px) {
  .l-service__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
  }
}

.l-service__content-item-img {
  padding-inline: 50px;
}
@media screen and (min-width: 820px) {
  .l-service__content-item-img {
    padding-inline: 0px;
    width: clamp(440px, 440px + (60) * (100vw - 820px) / (1366 - 820), 500px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.l-service__content-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1366px) {
  .l-service__content-item-wrap {
    padding-top: 20px;
  }
}

.l-service__content-item-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-service__content-item-text + .l-service__content-item-text {
  padding-top: 25px;
}

.l-service__content-item-text {
  color: #fff;
  /* p18px(16px)medium */
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.68; /* 168.75% */
}
@media screen and (min-width: 820px) {
  .l-service__content-item-text {
    font-size: 1.125rem;
    line-height: 1.66; /* 168.75% */
  }
}

.l-service__content-item-text-strong-main {
  padding-top: 40px;
  color: #fff;
  text-align: center;
  /* 20px（18px） */
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
}
@media screen and (min-width: 820px) {
  .l-service__content-item-text-strong-main {
    padding-top: 52px;
  }
}
@media screen and (min-width: 1366px) {
  .l-service__content-item-text-strong-main {
    font-size: 1.25rem;
  }
}

.l-service__content-item-text-strong-sub {
  padding-top: 15px;
  color: #fff;
  text-align: center;
  /* p-18px（16px） */
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.68; /* 168.75% */
}
@media screen and (min-width: 820px) {
  .l-service__content-item-text-strong-sub {
    font-size: 1.125rem;
  }
}

.l-service__content-item-btn {
  margin-top: 15px;
  border-radius: 10px;
  background: #080f14;
  padding-inline: 20px;
  padding-block: 10px;
  position: relative;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-service__content-item-btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  cursor: pointer;
}

.l-service__content-item-btn-text {
  color: #fff;
  text-align: center;
  font-family: "ryo-gothic-plusn", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}

.l-service__content-item-btn-arrow {
  position: absolute;
  top: 34%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*----------------------------------
    overview
-----------------------------------*/
.l-overview {
  padding-top: 1px;
  background-color: #080f14;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 15, 20, 0.9)), to(rgba(8, 15, 20, 0.9))), -webkit-gradient(linear, right top, left top, from(#32a2a6), color-stop(49.52%, #00bce2), to(#006c81));
  background: linear-gradient(0deg, rgba(8, 15, 20, 0.9) 0%, rgba(8, 15, 20, 0.9) 100%), linear-gradient(270deg, #32a2a6 0%, #00bce2 49.52%, #006c81 100%);
  padding-block: 40px 60px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 820px) {
  .l-overview {
    padding-top: clamp(60px, 60px + (40) * (100vw - 820px) / (1366 - 820), 100px);
    padding-bottom: clamp(80px, 80px + (40) * (100vw - 820px) / (1366 - 820), 120px);
  }
}

.l-overview__inner {
  z-index: 3;
  position: relative;
}

.l-overview__title {
  background: -webkit-gradient(linear, left top, right top, from(#32a2a6), color-stop(55%, #00bce2), to(#006c81));
  background: linear-gradient(90deg, #32a2a6 0%, #00bce2 55%, #006c81 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1366px) {
  .l-overview__title {
    gap: 29px;
  }
}

.l-overview__h2 {
  /* h2英字 */
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 100;
  line-height: 60px; /* 100% */
  text-transform: capitalize;
}
@media screen and (min-width: 820px) {
  .l-overview__h2 {
    font-size: clamp(5rem, 3.1227106227rem + 3.663003663vw, 6.25rem);
    line-height: 80px; /* 100% */
    text-transform: capitalize;
  }
}

.l-overview__p {
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 2.8px;
  text-transform: capitalize;
}

.l-overview__content {
  margin-top: 21px;
}
.l-overview__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #006c81;
}
.l-overview__table tr {
  border-bottom: 1px solid #006c81;
}
.l-overview__table th,
.l-overview__table td {
  padding-block: 18px 17px;
  color: #fff;
  /* 16px */
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 150% */
}
@media screen and (min-width: 820px) {
  .l-overview__table th,
  .l-overview__table td {
    padding-block: 19px 19px;
  }
}
.l-overview__table th {
  width: 120px;
  color: #fff;
  font-weight: normal;
  text-align: left;
  padding-inline: 20px;
}
@media screen and (min-width: 820px) {
  .l-overview__table th {
    width: 160px;
    text-align: center;
  }
}
.l-overview__table td {
  color: #fff;
  padding-inline: 10px 20px;
}
@media screen and (min-width: 820px) {
  .l-overview__table td {
    padding-inline: 0px 20px;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (min-width: 820px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 820px) {
  .u-hidden-sp {
    display: block;
  }
}

.u-hidden-md {
  display: none;
}
@media screen and (min-width: 820px) {
  .u-hidden-md {
    display: block;
  }
}
@media screen and (min-width: 1366px) {
  .u-hidden-md {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-fz-14 {
  font-size: 0.875rem;
}

.u-fz-36 {
  font-size: 2.25rem;
}

.u-color-white {
  color: #fff;
}

.u-bg-white {
  background-color: #fff;
}

.u-dib {
  display: inline-block;
}