@charset "utf-8";
/*
Theme Name: workweaver
Theme URI: テーマのURL
Author: テーマの作者（組織名）
Author URI: テーマの作者のURL
Description: テーマの説明文
Version: 1.0
*/ :root {
  --main-color: #1f97af;
  --accent-color: #df8a10;
  --accent-font: a-otf-ud-reimin-pr6n, sans-serif;
  --en-font: "Poppins", sans-serif;
  --tel-font: "Roboto", sans-serif;
  --en-weight: 600;
  --progress: 0;
  --base-space: 8.75rem;
  --l-space: 6.25rem;
  --sp-l-space: 3.75rem;
  --m-space: 3.75rem;
  --sp-m-space: 2.14rem;
  --case-speed: 0.8s;
  --case-easing: cubic-bezier(0.45, 0, 0.15, 1);
}
/* ==========================
   　　　　common
========================== */
html {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  min-height: 100%;
}
body {
  width: 100%;
  height: 100%;
  position: relative;
  color: #0f0e0e;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  border: 1px solid var(--accent-color);
  background: linear-gradient(-45deg, var(--accent-color) 45%, #fff 80%);
  background-size: 500% 500%;
  background-position: 100% 0%;
  border-radius: 1000px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  padding: 1.04rem;
  min-width: 11.25rem;
  transition: background 0.4s ease;
}
.c-button span:nth-of-type(1) {
  display: block;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #fff;
  transition: transform 0.4s 0.06s ease;
}
.c-button span:nth-of-type(2) {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 100vmax;
  transition: transform 0.4s ease;
}
.c-button::after {
  opacity: 0;
  content: "";
  display: block;
  background: url(image/common/arrow-o.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  width: 26px;
  height: 20px;
  top: 52%;
  left: 0;
  transform: translateY(-50%) translateX(-4px);
  transition: transform 0.4s 0.1s ease;
}
.c-button:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(43px);
}
.c-button:hover {
  background-position: 0% 0%;
}
.c-button:hover.c-button span:nth-of-type(1) {
  color: var(--accent-color);
  transform: translateX(6px);
}
.c-button:hover.c-button span:nth-of-type(2) {
  background-color: var(--accent-color);
  transform: translateY(-50%) translateX(48px) scale(0);
}
.c-button__white {
  display: flex;
  width: 400px;
  padding: 1.9rem;
  margin: 8.125rem auto 0;
  font-size: 1.5rem;
  font-family: var(--en-font);
  background: linear-gradient(-45deg, transparent 45%, #fff 80%);
  background-size: 500% 500%;
  background-position: 100% 0%;
  border: 2px solid #fff;
}
.c-button__white span:nth-of-type(2) {
  right: 2rem;
  width: 10px;
  height: 10px;
}
.c-button__white:hover.c-button span:nth-of-type(1) {
  color: var(--accent-color);
}
.c-button__white:hover.c-button span:nth-of-type(3) {
  transform: translateY(-50%) translateX(33px);
}
.c-button__or {
  position: relative;
  z-index: 20;
  background: linear-gradient(-45deg, transparent 45%, var(--accent-color) 80%);
  background-size: 500% 500%;
  background-position: 100% 0%;
  border: 2px solid var(--accent-color);
  margin: 0 auto;
}
.c-button__or::after {
  background: url(image/common/arrow.svg) no-repeat;
  background-size: 100%;
}
.c-button__or span:nth-of-type(1) {
  color: var(--accent-color);
}
.c-button__or span:nth-of-type(2) {
  background-color: var(--accent-color);
}
.c-button__or:hover.c-button__or span:nth-of-type(1) {
  color: #fff;
}
.c-button__or:hover.c-button__or span:nth-of-type(2) {
  background-color: #fff;
}
.c-button__or:hover.c-button__or span:nth-of-type(3) {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(167deg) brightness(105%) contrast(101%);
}
/*b*/
.c-btn__b span {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-family: var(--en-font);
  font-weight: 500;
}
.c-btn__b-content {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 3.3rem;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}
.c-btn__b-inner {
  position: relative;
  aspect-ratio: 1;
  width: 0.6rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.c-btn__b-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 16.41 / 11.41;
  width: 1.3rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--color-blue);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.c-btn__b-svg svg {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}
.c-btn__b-a:hover .c-btn__b-inner, .c-btn__b-a.is-active .c-btn__b-inner {
  width: 100%;
}
.c-btn__b-a:hover .c-btn__b-svg, .c-btn__b-a.is-active .c-btn__b-svg {
  opacity: 1;
}
.sp {
  display: none;
}
h2 {
  color: var(--main-color);
  font-size: 5.3125rem;
  font-family: var(--en-font);
  font-weight: var(--en-weight);
  margin-bottom: var(--l-space);
}
h2 span {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 22px;
  margin-bottom: 9px;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
}
h2 span::before {
  content: "";
  display: block;
  background: url("image/common/t-icon.svg")no-repeat;
  background-size: 100%;
  filter: brightness(0) saturate(100%) invert(45%) sepia(71%) saturate(513%) hue-rotate(142deg) brightness(97%) contrast(87%);
  width: 17px;
  height: 18px;
}
.color_accent {
  color: #fff;
}
.color_accent span::before {
  filter: none;
}
.u-common__space {
  padding: 8.75rem 0 16.25rem;
  margin-top: -60px;
}
.radius {
  border-radius: 60px 60px 0 0;
}
.main_content {
  width: min(1216px, 90%);
  margin: auto;
}
@media screen and (max-width: 1600px) {
  .l-service__inner {
    height: clamp(73vh, 73vh + (86 - 73) * ((100vw - 1024px) / (1600 - 1024)), 86vh);
  }
}
@media screen and (max-width: 1024px) {
  .c-button__white {
    margin: 14.125rem auto 0;
  }
  .c-button {
    margin-top: 0;
  }
  .c-button::after {
    opacity: 0;
    content: "";
    display: block;
    background: url(image/common/arrow-o.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    width: 18px;
    height: 12px;
    top: 50.3%;
    left: 0;
    transform: translateY(-50%) translateX(4px);
    transition: transform 0.4s 0.1s ease;
    transition: none;
  }
  .c-button:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(20px);
  }
}
@media screen and (max-width:767px) {
  html {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  h2 {
    font-size: 3.25rem;
    margin-bottom: var(--sp-l-space);
  }
  .u-common__space {
    padding: 7.14rem 0 10rem;
  }
  .c-button__white {
    width: 70%;
    font-size: 1.285rem;
    margin-top: 13rem;
    transition: none;
  }
  .c-button__or {
    margin-top: 3rem;
  }
  .radius {
    border-radius: 24px 24px 0 0;
  }
  .c-button span:nth-of-type(1) {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  html {
    font-size: 13px;
  }
  .c-button__white {
    margin-top: 120px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 12px;
  }
}
/* ==========================
   　　　　　header
========================== */
.l-header {
  position: fixed;
  top: -1px;
  left: 0;
  padding: calc(2.5rem + 1px) .5rem 0;
  width: 100%;
  z-index: 9990;
}
.l-header__content {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-inline: 2rem;
  max-width: 120rem;
  height: 5rem;
}
.l-header__logo {
  width: 20.7%;
}
.l-header__logo a {
  display: inline-block;
  width: 100%;
}
.l-header__nav {
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 26px 0 49px;
  margin-left: auto;
  box-shadow: 0px 0px 13px rgba(31, 151, 175, 0.11);
  border-radius: 1000px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.38rem;
}
.l-header__mainmenu {
  display: flex;
  align-items: center;
  gap: 1.625rem;
}
.l-header__mainmenu li a {
  font-weight: 600;
}
.l-header__mainmenu li a:hover {
  color: var(--accent-color);
  transition: filter 0.3s ease-out, width 0.3s ease-out, color 0.3s ease-out;
}
.c-slidebar-menu__container, .c-slidebar-button {
  display: none;
}
.c-slidebar-menu.is-top-to-bottom {
  width: 100%;
  opacity: 0;
}
.l-header__nav .c-button::after {
  width: 18px;
  height: 14px;
  top: 53%;
}
.l-header__nav .c-button:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(10px);
}
.l-header__nav .c-button:hover.c-button span:nth-of-type(1) {
  transform: translateX(14px);
}
@media screen and (max-width: 1313px) {
  .c-slidebar-button {
    display: block;
  }
  .c-slidebar-button {
    position: fixed;
    right: 1.5rem;
    top: 3.33rem;
    z-index: 9999;
    background-color: var(--accent-color);
    color: #fff;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 100%;
  }
  .c-slidebar-button__inner {
    display: grid;
    position: absolute;
    inset: 0;
    place-content: center;
  }
  .c-slidebar-button__line {
    position: relative;
    width: 20px;
    height: 1px;
    background-color: #fff;
    transition: transform .3s ease, opacity .3s ease;
  }
  .c-slidebar-button__line::before, .c-slidebar-button__line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: transform .3s ease, opacity .3s ease;
  }
  .c-slidebar-button__line::before {
    top: -3px;
  }
  .u-visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
  .c-slidebar-button__line::after {
    top: 3px;
  }
  .is-slidebar-active .c-slidebar-button__line::after, .is-slidebar-active .c-slidebar-button__line::before {
    top: 0;
  }
  .is-slidebar-active .c-slidebar-button__line {
    background-color: transparent;
  }
  .is-slidebar-active .u-visually-hidden {
    display: none;
  }
  .is-slidebar-active .c-slidebar-button__line::before {
    transform: rotate(45deg);
  }
  .is-slidebar-active .c-slidebar-button__line::after {
    transform: rotate(-45deg);
  }
  .is-slidebar-active .c-slidebar-menu.is-top-to-bottom {
    opacity: 1;
  }
  .c-slidebar-menu {
    position: fixed;
    top: 0;
    right: 0;
    overflow-x: scroll;
    padding: 5.5rem 1.25rem 1rem;
    height: 100vh;
    width: 100%;
    z-index: 9981;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, visibility, box-shadow, transform;
    transition-timing-function: ease;
    transition-duration: .3s;
    pointer-events: none;
  }
  .is-slidebar-active .c-slidebar-menu {
    background-color: rgba(0, 0, 0, .2);
    pointer-events: auto;
  }
  .c-slidebar-menu__container {
    display: block;
    background-color: #fff;
    border-radius: 18px;
    transform: translate3d(0, -130%, 0);
    transition: transform .2s ease-in-out;
    padding: 2rem 1.5rem;
    margin: auto;
  }
  .c-slidebar-menu__container.is-open {
    transform: translate3d(0, 12%, 0);
  }
  .c-slidebar-menu__list {
    width: 100%;
    font-size: .875rem;
    font-weight: 600;
  }
  .c-slidebar-menu__parent:first-child {
    border-top: solid 1px #ddd;
  }
  .c-slidebar-menu__parent {
    border-bottom: solid 1px #ddd;
  }
  .c-slidebar-menu__parent a {
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
    padding: 1rem .875rem .9375rem;
  }
  .c-slidebar-menu__list a, .c-slidebar-menu__list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .c-slidebar-menu__buttons {
    margin-top: 1.5rem;
  }
  .c-slidebar-menu__button {
    padding: .78125rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__content {
    background: #ffffffb3;
    backdrop-filter: blur(15px);
    box-shadow: 0px 0px 13px rgba(31, 151, 175, 0.11);
    border-radius: 1000px;
  }
  .l-header__nav {
    width: 100%;
    height: 100%;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }
}
@media screen and (max-width: 1313px) {
  .c-slidebar-menu__container .c-button {
    width: 100%;
    margin-top: 1rem;
    transition: none;
  }
  .l-service .c-button__or::after {
    background: url(image/common/arrow.svg) no-repeat;
    background-size: 100%;
  }
  .c-slidebar-menu__container .c-button span:nth-of-type(1) {
    transition: none;
  }
  .c-slidebar-menu__container .c-button:hover span:nth-of-type(1) {
    color: var(--accent-color);
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 46%;
  }
}
/* ==========================
   　     kv_bg
========================== */
#kv-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: center;
}
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ==========================
   　     kv_main
========================== */
.l-kv {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
}
.l-kv__content {
  width: min(1079px, 80%);
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-kv .l-kv__content .l-kv__logo {
  width: 275px;
  padding-top: 12px;
}
.l-kv .l-kv__content p {
  font-size: 3.375rem;
  font-family: var(--accent-font);
  line-height: 1.59;
  text-shadow: 0 0 0.6px currentColor;
}
@media screen and (max-width: 1200px) {
  .l-kv .l-kv__content p {
    font-size: 4vw;
  }
  .l-kv .l-kv__content .l-kv__logo {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  #kv-container {
    margin: auto;
    z-index: -1;
  }
  .l-kv__content {
    top: 52%;
    flex-direction: column;
    gap: 17vw;
  }
  .l-kv .l-kv__content p {
    font-size: 6.66vw;
  }
  .l-kv .l-kv__content .l-kv__logo {
    width: 46%;
  }
}
@media screen and (max-width: 767px) {
  .l-kv .l-kv__content p {
    line-height: 50px;
  }
}
@media screen and (max-width: 320px) {
  .l-kv {
    margin-top: 6rem;
  }
}
/* ==========================
   　　　　movie
========================== */
.l-movie {
  height: 300vh;
  margin-top: -170px;
  position: relative;
  z-index: 1;
}
.l-movie__content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.l-movie__video {
  position: sticky;
  top: 0;
  width: calc((100% - 8rem) + (7rem * var(--progress)));
  height: calc(80vh + (20vh * var(--progress)));
  border-radius: calc(1.125rem * (1 - var(--progress)));
  margin: 0 auto;
  background-color: transparent;
  overflow: hidden;
  transition:
    width 0.2s ease-out, height 0.2s ease-out, border-radius 0.2s ease-out;
}
.l-movie__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-movie__video.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: calc((100% - 8rem) + (8rem * var(--progress))) !important;
  height: calc(80vh + (34vh * var(--progress))) !important;
  margin: 0 auto;
  border-radius: 0 !important;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .l-movie__video.is-fixed {
    width: calc((100% - 8rem) + (8rem * var(--progress))) !important;
    height: calc(80vh + (34vh * var(--progress))) !important;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-movie {
    margin-top: -50px;
  }
  .l-movie__video {
    width: calc((100% - 2rem) + (7rem * var(--progress)));
  }
  .l-movie__video.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    z-index: -1;
  }
}
/* ==========================
       私たちについて
========================== */
.l-about {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  -webkit-backdrop-filter: blur(80px);
  backdrop-filter: blur(80px);
  background-color: rgba(158, 158, 158, 0.6);
}
.l-about .l-about__inner {
  width: min(1211px, 90%);
  margin: auto;
}
.l-about .l-about__inner h3 {
  font-family: var(--accent-font);
  font-size: 2.5rem;
  line-height: 1.58;
}
.l-about__inner > p:first-of-type {
  font-size: 1.25rem;
  line-height: 2;
  margin-top: var(--m-space);
}
.l-about .l-about__inner .l-about__content p:nth-of-type(1) {
  font-size: 1.875rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
.l-about .l-about__inner .l-about__content .l-about__vision p:nth-of-type(1) {
  margin-left: 18px;
}
.l-about .l-about__inner .l-about__content .l-about__vision p:nth-of-type(2) {
  margin-left: 39px;
}
.l-about .l-about__inner .l-about__content .l-about__vision p:nth-of-type(3) {
  margin-left: 27px;
}
.l-about .l-about__inner .l-about__content p:nth-of-type(2) {
  margin: 3rem 0 2rem;
  font-size: 2.5rem;
  line-height: 1.5;
}
.l-about .l-about__inner .l-about__content p:nth-of-type(3) {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2;
}
.l-about .l-about__inner .l-about__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 120px 0 142px 0;
  margin-top: var(--base-space);
}
.l-about .l-about__inner .l-about__content div:nth-of-type(1), .l-about .l-about__inner .l-about__content div:nth-of-type(2) {
  width: calc(100% / 2);
  text-align: center;
}
/*パス*/
.svg-container {
  position: absolute;
  top: -17px;
  width: 100%;
  max-width: 1211px;
}
#main-line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dot {
  fill: #ffffff;
  stroke: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.visible {
  opacity: 1;
}
@media screen and (max-width: 1300px) {
  .svg-container {
    top: 20px;
  }
  .l-about .c-button__white {
    margin-top: 3.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .svg-container {
    top: 170px;
    left: 49%;
    width: 1198px;
    max-width: auto;
    transform: translateX(-50%) rotate(90deg);
  }
  .l-about .l-about__inner .l-about__content {
    flex-direction: column;
    gap: 250px;
    padding: 5px 0 0;
    margin-top: 160px;
  }
  .l-about .l-about__inner .l-about__content div:nth-of-type(1), .l-about .l-about__inner .l-about__content div:nth-of-type(2) {
    width: 100%;
  }
  .l-about .c-button {
    margin-top: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .svg-container {
    top: 125px;
    width: 740px;
  }
  .l-about .c-button {
    margin-top: 11rem;
  }
  .l-about .l-about__inner .l-about__content {
    gap: 190px;
    padding: 5px 0 0;
    margin-top: 100px;
  }
  .l-about {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
    z-index: 2;
  }
  .l-about .l-about__inner h3 {
    font-size: 2rem;
  }
  .l-about__inner > p:first-of-type {
    margin-top: var(--sp-m-space);
  }
  h2 span {
    margin-left: 9px;
  }
  h2 span::before {
    width: 14px;
    height: 15px;
  }
  .l-about .l-about__inner .l-about__content p:nth-of-type(1) {
    font-size: 1.4rem;
  }
  .l-about .l-about__inner .l-about__content p:nth-of-type(2) {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
  }
  .l-about .l-about__inner .l-about__content p:nth-of-type(3) {
    font-size: 1rem;
  }
  .l-about .l-about__inner .l-about__content .l-about__vision p:nth-of-type(1) {
    margin-left: 0;
  }
  .l-about .l-about__inner .l-about__content .l-about__vision p:nth-of-type(2) {
    margin-left: 0;
  }
  .l-about .l-about__inner .l-about__content .l-about__vision p:nth-of-type(3) {
    margin-left: 0;
  }
}
@media screen and (max-width: 440px) {
  .svg-container {
    top: 107px;
    width: 200%;
  }
}
@media screen and (min-width: 430px) and (max-width: 440px) {
  .l-about .l-about__inner .l-about__content {
    gap: 190px;
  }
}
@media screen and (max-width: 393px) {
  .l-about .l-about__inner .l-about__content {
    gap: 156px;
  }
}
@media screen and (max-width: 375px) {
  .svg-container {
    width: 207%;
    left: 48.5%;
  }
}
@media screen and (max-width: 360px) {
  .l-about .l-about__inner .l-about__content {
    gap: 137px;
  }
}
/* ==========================
       　　事業案内
========================== */
.l-service {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 2;
  overflow: clip;
}
.l-service__content {
  position: relative;
}
.l-service h2 {
  position: absolute;
  top: 0;
  margin-bottom: 0;
}
.l-service__inner h2 span {
  margin-left: 16px;
}
.spacer {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-service__inner {
  position: sticky;
  top: 100px;
  height: 754px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}
.l-service__inner::before {
  content: "";
  display: block;
  background: url("image/top/service_bg.jpg")no-repeat;
  background-size: 100%;
  width: 100vw;
  height: 767px;
  position: absolute;
  top: 98px;
  left: -336px;
}
.l-service__box {
  position: absolute;
  top: 15vh;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  display: flex;
  justify-content: center;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}
.l-service__box.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-service__text {
  margin-top: 60px;
  color: var(--main-color);
  flex: 1;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.l-service__inner .l-service__box:nth-of-type(2) .l-service__text {
  color: var(--accent-color);
}
.l-service__inner .l-service__box:nth-of-type(3) .l-service__text {
  color: #30af1f;
}
.l-service__text p:nth-of-type(1) {
  font-size: 4.625rem;
  font-family: var(--en-font);
  font-weight: 500;
}
.l-service__text p:nth-of-type(1) span:nth-of-type(1) {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  transform: translateY(-6px);
}
.l-service__text p:nth-of-type(1) span:nth-of-type(2) {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  transform: translateY(-2px);
}
.l-service__text h3 {
  font-size: 2.25rem;
  font-weight: 600;
  padding: 3.625rem 0 3.125rem 0;
}
.l-service__text p:nth-of-type(2) {
  color: #0f0e0e;
  line-height: 2;
}
.l-service__img {
  position: relative;
  flex: 0.899;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.l-service__img::before {
  width: 517px;
  height: 622px;
  position: absolute;
  top: 0;
  right: -222px;
  z-index: -1;
  content: "";
  display: block;
  background: url("image/top/service_a-icon.png")no-repeat;
  background-size: 100%;
}
.l-service__inner .l-service__box:nth-of-type(2) .l-service__img::before {
  background: url("image/top/service_b-icon.png")no-repeat;
  background-size: 100%;
}
.l-service__inner .l-service__box:nth-of-type(3) .l-service__img::before {
  background: url("image/top/service_c-icon.png")no-repeat;
  background-size: 100%;
}
.l-service__box.active .l-service__text {
  opacity: 1;
  transform: translateX(0);
}
.l-service__box.active .l-service__img {
  opacity: 1;
  transform: scale(1);
}
.l-service__img img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}
.scroll-trigger {
  height: 100vh;
  position: relative;
  top: -450px;
  z-index: 1;
}
#l-service-container {
  display: none;
}
@media screen and (min-width: 1728px) and (max-width: 2048px) {
  .l-service__inner {
    top: 210px;
  }
}
@media screen and (width: 1920px) {
  .l-service__inner {
    top: 115px;
  }
}
@media screen and (width: 1440px) {
  .l-service__inner {
    top: -10px;
    height: 93vh;
  }
}
@media screen and (width: 1280px) {
  .l-service__inner {
    top: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .l-service__inner {
    height: 640px;
  }
}
@media screen and (max-width: 1024px) {
  .l-service__inner {
    height: 600px;
  }
}
@media screen and (max-width: 900px) {
  .l-service__inner {
    top: -20px;
    height: 1100px;
  }
  .l-service__inner::before {
    top: 183px;
    left: -140px;
  }
  .l-service__box {
    top: 170px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .l-service__img {
    width: 65%;
    margin-right: auto;
    flex: none;
  }
  .l-service__text {
    flex: none;
    margin-top: 0;
  }
  .l-service__img::before, .l-service__inner .l-service__box:nth-of-type(2) .l-service__img::before, .l-service__inner .l-service__box:nth-of-type(3) .l-service__img::before {
    background-size: 94%;
  }
  .l-service__img::before {
    width: 100%;
    height: 518px;
    right: -238px;
  }
}
@media screen and (max-width: 767px) {
  .l-service .c-button__or {
    margin-top: 0;
  }
  .l-service__inner {
    top: 100px;
    height: 850px;
  }
  .l-service__inner h2 span {
    margin-left: 7px;
  }
  .l-service__box {
    top: 100px;
    width: 100%;
  }
  .l-service__text p:nth-of-type(1) {
    font-size: 3.1428rem;
  }
  .l-service__text p:nth-of-type(1) span:nth-of-type(1) {
    font-size: 1.285rem;
    transform: translateY(-3px);
  }
  .l-service__text p:nth-of-type(1) span:nth-of-type(2) {
    font-size: 1.642rem;
    transform: translateY(0px);
  }
  .l-service__text h3 {
    font-size: 2rem;
    padding: 24px 0 24px 0;
  }
  .l-service__img::before {
    height: 600px;
    right: -228px;
  }
  .l-service__inner::before {
    display: none;
  }
  #l-service-container.is-active {
    display: block;
    opacity: 0.4;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 130vh;
  }
}
@media screen and (max-width: 600px) {
  .l-service__img::before {
    height: 255px;
    right: -108px;
  }
  .l-service__inner {
    height: 740px;
  }
}
@media screen and (max-width: 440px) {
  .l-service__inner {
    height: 670px;
  }
}
@media screen and (max-width: 428px) {
  .l-service__inner {
    top: 20px;
  }
}
@media screen and (max-width: 390px) {
  .l-service__inner {
    height: 618px;
  }
}
@media screen and (max-width: 320px) {
  .l-service__inner {
    height: 110vh;
  }
}
/* ==========================
          6つの強み
========================== */
.l-featur {
  position: relative;
  z-index: 2;
  background-color: var(--main-color);
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 3px 3px;
}
.l-featur h2 span {
  margin-left: 12px;
}
.l-featur__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 51px 29px;
}
.l-featur__inner dl {
  width: 386px;
  background-color: #fff;
  border-radius: 32px;
  padding: 60px 0;
}
.l-featur__inner dl dt {
  color: var(--main-color);
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--en-font);
  text-align: center;
}
.l-featur__inner dl dd:nth-of-type(1) {
  width: 290px;
  height: 236px;
  margin: 53px auto 54px;
}
.l-featur__inner dl dd:nth-of-type(2) {
  text-align: center;
  font-weight: 600;
  line-height: 1.63;
}
.l-featur__inner dl:nth-of-type(3) dd:nth-of-type(1) {
  width: 217px;
}
.l-featur__inner dl:nth-of-type(4) dd:nth-of-type(1) {
  width: 256px;
}
.l-featur__inner dl:nth-of-type(5) dd:nth-of-type(1) {
  width: 233px;
}
@media screen and (max-width: 1330px) {
  .l-featur h2 span {
    margin-left: 4px;
  }
  .l-featur__inner {
    gap: 3vw;
  }
  .l-featur__inner dl {
    width: calc(96% / 2);
  }
}
@media screen and (max-width: 767px) {
  .l-featur__inner dl {
    width: calc(97% / 2);
    padding: 40px 14px;
    border-radius: 16px;
  }
  .l-featur__inner {
    gap: 14px 8px;
  }
  .l-featur__inner dl dd:nth-of-type(1) {
    width: 100%;
    height: 176px;
    margin: 30px auto 4px;
  }
  .l-featur__inner dl dt {
    font-size: 1.5rem;
  }
  .l-featur__inner dl:nth-of-type(3) dd:nth-of-type(1) {
    width: 83%;
  }
  .l-featur__inner dl:nth-of-type(4) dd:nth-of-type(1) {
    width: 100%;
  }
  .l-featur__inner dl:nth-of-type(5) dd:nth-of-type(1) {
    width: 88%;
  }
  .l-featur__inner dl:nth-of-type(1) dd:nth-of-type(1) {
    padding-top: 12px;
  }
  .l-featur__inner dl:nth-of-type(6) dd:nth-of-type(1) {
    padding-top: 16px;
  }
}
@media screen and (max-width: 414px) {
  .l-featur__inner dl dt {
    font-size: 1.41rem;
  }
  .l-featur__inner dl dd:nth-of-type(1) {
    height: 145px;
  }
}
/* ==========================
          導入事例
========================== */
.l-case {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.l-case h2 {
  position: relative;
  z-index: 1;
}
.l-case h2 span {
  margin-left: 28px;
}
.l-case__content {
  position: relative;
  z-index: 1;
  width: min(1461px, 100%);
  margin: auto;
}
.l-case__viewport {
  position: relative;
  top: -195px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 1270px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.l-case__viewport::before {
  position: absolute;
  top: 182px;
  left: -52px;
  content: "";
  display: block;
  background: url(image/top/case-bg.png.jpg) no-repeat;
  background-size: 100%;
  width: 100vw;
  height: 700px;
  z-index: -1;
}
.l-case__track {
  display: flex;
  align-items: center;
  will-change: transform;
  gap: 108px;
}
.l-case__item {
  flex: 0 0 459px;
  margin: 0;
  position: relative;
}
.l-case__image-wrap {
  width: 100%;
  height: 100%;
  transition: transform var(--case-speed) var(--case-easing), opacity var(--case-speed);
  transform: scale(0.75);
}
.l-case__item.is-active .l-case__image-wrap {
  transform: scale(1.51);
  opacity: 1;
}
.l-case__viewport.is-shrinking .l-case__item.is-active .l-case__image-wrap {
  transform: scale(0.9);
  transition: transform 0.3s var(--case-easing);
}
.l-case__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.l-case__card {
  position: absolute;
  top: 60%;
  left: 59%;
  width: 486px;
  height: auto;
  padding: 38px 50px;
  background: #fff;
  border-radius: 40px;
  box-shadow: -2px 2px 29px rgba(0, 0, 0, 0.07);
  z-index: 10;
  transition: height 0.4s ease;
  overflow: hidden;
}
.l-case__text-inner {
  position: absolute;
  width: calc(100% - 100px);
  transition: transform var(--case-speed) var(--case-easing), opacity 0.6s var(--case-easing);
}
.l-case__text-inner.is-leaving {
  opacity: 0;
  transform: translateX(-180px);
}
.l-case__text-inner.is-waiting {
  opacity: 0;
  transform: translateX(180px);
  transition: none;
}
.l-case__text-inner.is-active {
  opacity: 1;
  transform: translateX(0);
}
.l-case__text-inner h3 {
  color: var(--accent-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid var(--accent-color);
}
.l-case__text-inner table {
  font-weight: 500;
  line-height: 1.81;
  width: 100%;
}
.l-case__text-inner .label {
  width: 100px;
}
.l-case__text-inner table tr td:last-child, .l-case__card .l-case__text-inner p {
  font-weight: 400;
}
.l-case__text-inner p {
  margin-top: 20px;
  line-height: 1.81;
}
#l-case-container {
  display: none;
}
@media screen and (max-width: 1300px) {
  .l-case__viewport {
    width: 100%;
  }
  .l-case__card {
    left: 54%;
  }
  .l-case__item.is-active .l-case__image-wrap {
    transform: scale(1.1);
  }
  .l-case__viewport {
    top: -335px;
  }
}
@media screen and (max-width: 1024px) {
  .l-case__card {
    left: 47%;
  }
}
@media screen and (max-width: 900px) {
  .l-case__viewport::before {
    display: none;
  }
  .l-case h2 span {
    margin-left: 10px;
  }
  .l-case__viewport {
    position: relative;
    top: -540px;
    width: 100%;
    height: 1500px;
  }
  .l-case__card {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 362px;
    padding: 34px 35px 32px;
  }
  .l-case__text-inner {
    width: calc(100% - 73px);
  }
  #l-case-container {
    display: block;
  }
  .l-case__track {
    gap: 60px;
  }
  .l-case__item {
    flex: 0 0 260px;
  }
  .l-case__item.is-active .l-case__image-wrap {
    transform: scale(1.4);
  }
  .l-case {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-case__item.is-active .l-case__image-wrap {
    transform: scale(1.1);
  }
  .l-case__viewport {
    top: -550px;
  }
}
.l-support {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;
  background-color: #eef3fa;
  border-radius: 40px;
  padding: 81px 0 62px 0;
}
.l-support::before {
  position: absolute;
  top: 58%;
  left: 49.6%;
  content: "";
  display: block;
  background: url(image/top/support_bg.png) no-repeat;
  background-size: 100%;
  width: 91%;
  height: 390px;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.l-support .l-support__text h3 {
  color: var(--main-color);
  font-size: 2.25rem;
  font-weight: 600;
}
.l-support .l-support__text {
  width: 516px;
  line-height: 2;
}
.l-support .l-support__text p {
  margin-top: 20px;
}
.l-support .l-support__img {
  width: 192px;
}
.l-support__text .c-btn__b {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  margin-top: 20px;
}
#l-support-container {
  display: none;
}
@media screen and (max-width: 1670px) {
  .l-case__viewport::before {
    top: 159px;
    left: -22px;
  }
}
@media screen and (max-width: 1300px) {
  .l-case__viewport::before {
    top: 353px;
  }
  .l-support {
    margin-top: -14rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-support {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 30px;
    margin-top: -70px;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .l-support .l-support__text {
    width: 80%;
    line-height: 2;
  }
  .l-support .l-support__text h3 {
    font-size: 1.714rem;
    text-align: center;
  }
  .l-support .l-support__img {
    width: 30%;
  }
  .l-support::before {
    display: none;
  }
  #l-support-container {
    display: block;
  }
  .c-btn__b span {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 900px) {
  .l-support {
    margin-top: -600px;
  }
}
@media screen and (max-width: 767px) {
  .l-support .l-support__text p {
    width: 280px;
    margin: 20px auto 0;
  }
  .l-case__card {
    top: 63%;
  }
  .l-support {
    margin-top: -600px;
  }
}
@media screen and (max-width: 375px) {
  .l-support {
    margin-top: -520px;
  }
}
/* ==========================
        　会社概要
========================== */
.l-company {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.l-company__content {
  display: flex;
}
.l-company__content .c-btn__b-content {
  border: 1px solid #fff;
}
.l-company__content .c-btn__b-inner {
  background-color: #fff;
}
.l-company__content .c-btn__b-svg svg {
  color: var(--accent-color);
}
.l-company__inner {
  overflow: hidden;
  display: block;
  position: relative;
  background-size: cover;
  padding: 60px 0 0 100px;
  width: 50%;
  height: 534px;
}
.l-company__inner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: transform .5s cubic-bezier(.33, 1, .68, 1);
}
.l-company__co {
  border-radius: 60px 0 0 0;
}
.l-company__co::before {
  background: url("image/top/company_a.jpg") no-repeat center / cover;
}
.l-company__ourefforts {
  border-radius: 0 60px 0 0;
}
.l-company__ourefforts::before {
  background: url("image/top/company_b.jpg") no-repeat center / cover;
}
.l-company__inner:hover::before {
  transform: scale(1.05);
}
.l-company__inner h2 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 2.25rem;
  margin-bottom: 0;
}
.l-company__inner .c-btn__b {
  position: absolute;
  bottom: 60px;
  right: 60px;
}
@media screen and (max-width: 900px) {
  .l-company__content {
    flex-direction: column;
  }
  .l-company__inner {
    padding: 40px 0 0 20px;
    width: 100%;
    height: 330px;
  }
  .l-company__inner h2 {
    font-size: 2rem;
  }
  .l-company__co {
    border-radius: 24px 24px 0 0;
  }
  .l-company__ourefforts {
    border-radius: 0;
  }
}
/* ==========================
   　　　　footer
========================== */
.l-footer {
  position: relative;
  z-index: 2;
  background-color: #084363;
}
.l-footer__border {
  width: min(1762px, 98%);
  margin: 0 auto;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
.l-footer__contact {
  position: relative;
  display: flex;
  justify-content: center;
}
.l-footer__contact::before {
  content: "";
  display: block;
  border-right: none;
  width: 1px;
  height: 333px;
  background-image: linear-gradient(to bottom, #fff 2px, transparent 2px);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  background-position: left top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.l-footer__tel:hover .l-footer__text p .tel::before {
  filter: brightness(0) saturate(100%) invert(56%) sepia(95%) saturate(1722%) hue-rotate(3deg) brightness(96%) contrast(87%);
  transition: filter 0.3s ease-out, width 0.3s ease-out;
}
.l-footer__tel:hover .l-footer__text-inner .tel {
  color: var(--accent-color);
  transition:
    filter 0.3s ease-out, width 0.3s ease-out, color 0.3s ease-out;
}
.l-footer__contact-co:hover .l-footer__co p {
  color: var(--accent-color);
  transition:
    filter 0.3s ease-out, width 0.3s ease-out, color 0.3s ease-out;
}
.l-footer__contact li {
  color: #fff;
  width: 50%;
}
.l-footer__contact li a {
  height: 405px;
  display: flex;
  align-items: center;
  position: relative;
}
.l-footer__tel {
  justify-content: flex-start;
}
.l-footer__contact-co {
  justify-content: end;
}
.l-footer__contact .explanation {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 2.06;
  text-align: center;
}
.l-footer__text p {
  padding-left: 85px;
  position: relative;
}
.l-footer__text p .l-footer__text-inner {
  font-size: 3.9375rem;
  font-family: var(--tel-font);
  font-weight: 600;
}
.l-footer__text p .time {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
.l-footer__text p .tel {
  position: relative;
  display: block;
}
.l-footer__text p .tel::before {}
.l-footer__text p .tel::before {
  content: "";
  display: block;
  background: url(image/common/tel.svg) no-repeat;
  background-size: 100%;
  width: 63px;
  height: 63px;
  position: absolute;
  left: -83px;
  top: 4px;
}
.l-footer__text p .time {
  margin-left: 4px;
}
.l-footer__contact-co p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer__co-en {
  font-size: 5.3125rem;
  font-family: var(--en-font);
  font-weight: 600;
}
.l-footer__co-text {
  font-size: 2.25rem;
  font-weight: 600;
}
.l-footer__contact-co .c-btn__b {
  position: absolute;
  bottom: 42px;
  right: 0;
}
.l-footer__contact-co .c-btn__b-content {
  border: 1px solid #fff;
}
.l-footer__contact-co:hover .c-btn__b-content {
  border: 1px solid var(--accent-color);
}
.l-footer__contact-co:hover .l-footer__co .c-btn__b-inner {
  background-color: var(--accent-color);
}
.l-footer__co .c-btn__b-inner {
  background-color: #fff;
}
@media screen and (max-width: 1070px) {
  .l-footer__contact {
    flex-direction: column;
  }
  .l-footer__contact li {
    width: 100%;
  }
  .l-footer__text p .l-footer__text-inner {
    font-size: 2.8571rem;
  }
  .l-footer__text p .time {
    font-size: 0.9rem;
  }
  .l-footer__contact .explanation {
    margin-bottom: 0;
    position: absolute;
    top: -68px;
    left: 50%;
    width: 110%;
    transform: translateX(-50%);
  }
  .l-footer__text p .tel::before {
    width: 43px;
    height: 43px;
    left: -56px;
    top: 2px;
  }
  .l-footer__text p {
    padding-left: 50px;
  }
  .l-footer__contact li a {
    justify-content: center;
  }
  .l-footer__contact::before {
    height: 41%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .l-footer__tel {
    padding-top: 50px;
  }
  .l-footer__contact li a {
    height: 300px;
  }
  .l-footer__co-en {
    font-size: 3.8571rem;
  }
  .l-footer__co-text {
    font-size: 1.7142rem;
  }
}
.l-footer__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.l-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px 58px;
  align-items: start;
}
.l-footer__nav ul li {
  color: #fff;
  font-weight: 600;
}
.l-footer__nav ul li a:hover {
  color: var(--accent-color);
  transition: filter 0.3s ease-out, width 0.3s ease-out, color 0.3s ease-out;
}
.l-footer__logo {
  padding: 80px 0 104px 0;
}
.l-footer__logo img {
  width: 342px;
  height: 58px;
}
.l-footer__logo .text {
  display: block;
  color: #fff;
  margin-top: 15px;
}
.l-footer__logo .ub {
  margin-right: 14px;
}
.l-cc {
  color: #fff;
  font-size: 14px;
  padding-bottom: 40px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1070px) {
  .l-footer__list {
    flex-direction: column;
  }
  .l-footer__logo {
    text-align: center;
  }
  .l-footer__logo {
    padding: 80px 0 90px;
  }
  .l-footer__logo img {
    width: 79%;
    height: auto;
  }
  .l-footer__nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 30px;
  }
  .l-cc {
    font-size: 12px;
    padding-bottom: 60px;
    padding-top: 140px;
  }
  .l-footer__list {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 360px) {
  .l-footer__nav ul {
    gap: 44px 16px;
  }
}
@media screen and (max-width: 320px) {
  .l-footer__text p .tel::before {
    width: 33px;
    height: 33px;
    left: -43px;
  }
}