@charset "utf-8";



/* --------------- header --------------- */
:root{
  --header-height: 4.2em;
  --drawer__btn-width: 4em;
}
.header__wrap{
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  background-color: rgb(255, 255, 255, 0.98);
  backdrop-filter: blur(1px);
  transition: background-color 0.15s linear;
}
.top-header .header__wrap{
  background-color: rgb(255, 255, 255, 0);
  backdrop-filter: blur(0);
}
.top-header.header-scroll .header__wrap{
  background-color: rgb(255, 255, 255, 98);
  backdrop-filter: blur(1px);
}
.header__wrap::after{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.08);
}
.top-header .header__wrap::after{
  opacity: 0;
}
.top-header.header-scroll .header__wrap::after{
  opacity: 1;
}
.header__logo{
  position: relative;
  width: 16em;
  margin-left: 1em;
}
.header__logo-inner{
  display: block;
  padding-top: 17.731%;
}
.header__logo-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../image/common/logo_color.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  transition: opacity 0.15s linear;
}
.top-header .header__logo-inner::before{
  opacity: 0;
}
.top-header.header-scroll .header__logo-inner::before{
  opacity: 1;
}
.top-header .header__logo-inner::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../image/common/logo_txtwhite.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  transition: opacity 0.15s linear;
}
.top-header.header-scroll .header__logo-inner::after{
  opacity: 0;
}
.header__logo-txt{
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.header__right{
  display: flex;
  align-items: center;
  height: 100%;
}
.header__nav{
  display: flex;
  align-items: center;
  height: 100%;
}
.header__nav-list{
  display: flex;
  align-items: center;
}
.header__nav-list+.header__nav-list::before{
  content: "";
  width: 1px;
  height: 1.8em;
  background-color: rgb(33, 98, 163, 0.15);
  margin: 0 1.8em;
}
.top-header .header__nav-list+.header__nav-list::before{
  background-color: rgb(255, 255, 255, 0.4);
}
.header__nav-list>li+li{
  margin-left: 1.8em;
}
.header__nav-list>li a{
  display: block;
  font-weight: 600;
  padding: 0.8em 0;
  transition: color 0.15s linear;
}
.top-header .header__nav-list>li a{
  color: rgb(255, 255, 255, 1);
}
.top-header.header-scroll .header__nav-list>li a{
  color: rgb(51, 51, 51, 1);
}
.header__nav-list>li a:active,
.header__nav-list>li a:hover,
.top-header.header-scroll .header__nav-list>li a:active,
.top-header.header-scroll .header__nav-list>li a:hover{
  color: #2162a3;
}
.header__btn{
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #1c538e;
  margin: 0 var(--drawer__btn-width) 0 5em;
  padding: 0 0.6em 0 1em;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1), background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.header__btn:active,
.header__btn:hover{
  background-color: #114175;
}
.header__btn::after{
  content: "";
  width: 0.45em;
  height: 0.45em;
  background-image: url(../image/common/arrow_white_outside.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0.4em 0 0 1.2em;
}
.header__btn span{
  display: block;
}
.header__btn-en{
  color: rgb(255, 255, 255, 0.9);
}
.float-menu{
  position: fixed;
  z-index: 100;
  top: 11em;
  right: 0;
}
.float-menu__nav{
  width: 7.7em;
  box-shadow: -2px 4px 20px 0px rgb(51, 51, 51, 0.05);
}
.float-menu__nav>a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1em 0.5em 1.1em 0.5em;
  backdrop-filter: blur(1px);
  transition: background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.float-menu__nav>a:nth-child(1){
  background-color: rgb(31, 132, 193, 0.98);
  border-top: 1px solid rgb(51, 51, 51, 0.1);
  border-left: 1px solid rgb(51, 51, 51, 0.1);
  border-radius: 0.25em 0 0 0;
}
.float-menu__nav>a:nth-child(1):active,
.float-menu__nav>a:nth-child(1):hover{
  background-color: #2f94d1;
}
.float-menu__nav>a:nth-child(2){
  background-color: rgb(33, 98, 163, 0.98);
  border-bottom: 1px solid rgb(51, 51, 51, 0.1);
  border-left: 1px solid rgb(51, 51, 51, 0.1);
  border-radius: 0 0 0 0.25em;
}
.float-menu__nav>a:nth-child(2):active,
.float-menu__nav>a:nth-child(2):hover{
  background-color: #0d5099;
}
.float-menu__nav-arrow{
  position: relative;
  width: 0.52em;
  height: 0.52em;
  margin-top: 0.5em;
  overflow: hidden;
}
.float-menu__nav-arrow::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: left 0.8s cubic-bezier(.15, 1, .2, 1), opacity 0.8s cubic-bezier(.15, 1, .2, 1);
}
.float-menu__nav>a:active .float-menu__nav-arrow::before,
.float-menu__nav>a:hover .float-menu__nav-arrow::before{
  left: 150%;
}
.float-menu__nav-arrow::after{
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: left 0.8s cubic-bezier(.15, 1, .2, 1), opacity 0.8s cubic-bezier(.15, 1, .2, 1);
}
.float-menu__nav>a:active .float-menu__nav-arrow::after,
.float-menu__nav>a:hover .float-menu__nav-arrow::after{
  left: 0;
}
.float-menu__nav>a span{
  display: block;
}
.float-menu__nav-en{
  color: rgb(255, 255, 255, 0.9);
}
@media (max-width: 1299px){
  .header__nav-list+.header__nav-list{
    display: none;
  }
}
@media (max-width: 1023px){
  :root{
    --header-height: 4.25em;
  }
  .header__logo{
    width: 16.5em;
    margin-left: 0.8em;
  }
  .header__nav-list{
    display: none;
  }
  .float-menu{
    top: auto;
    bottom: 0.5em;
  }
}
@media (max-width: 767px){
  .header__btn{
    display: none;
  }
  .float-menu{
    display: none;
  }
}

/* ---- ドロワーメニュー ---- */
.drawer__btn{
  position: fixed;
  z-index: 103;
  top: 0;
  right: 0;
  display: block;
  width: var(--drawer__btn-width);
  height: var(--header-height);
  background-color: #1e2b3a;
  transition: background-color 0.4s cubic-bezier(.15, 1, .2, 1);
}
.drawer__btn:active,
.drawer__btn:hover{
  background-color: #0b2b51;
}
.drawer__btn-bar{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2em;
  height: 2px;
  background-color: rgb(255, 255, 255, 0.95);
  transition: top 0.4s 0.1s cubic-bezier(.15, 1, .2, 1), transform 0.4s cubic-bezier(.15, 1, .2, 1);
}
.drawer__btn-bar:nth-child(1){
  top: 44%;
}
.drawer__btn-bar:nth-child(2){
  top: 56%;
}
.drawer-show .drawer__btn-bar:nth-child(1),
.drawer-show .drawer__btn-bar:nth-child(2){
  top: 50%;
  transition: top 0.4s cubic-bezier(.15, 1, .2, 1), transform 0.4s 0.1s cubic-bezier(.15, 1, .2, 1);
}
.drawer-show .drawer__btn-bar:nth-child(1){
  transform:  translate(-50%, -50%) rotate(30deg);
}
.drawer-show .drawer__btn-bar:nth-child(2){
  transform:  translate(-50%, -50%) rotate(-30deg);
}
.drawer__menu{
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: min(60%,28em);
  height: 100%;
  background-color: rgb(255, 255, 255, 0.99);
  border-left: 1px solid rgba(51, 51, 51, 0.05);
  backdrop-filter: blur(1px);
  transition: transform 0.5s cubic-bezier(.15, 1, .2, 1);
  overflow-y: scroll;
  /* スクロールバー非表示 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/*Google Chrome、Safariスクロールバー非表示*/
.drawer-menu::-webkit-scrollbar{
  display: none;
}
.drawer-show .drawer__menu{
  transform: translateX(0);
}
.drawer__inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 5em 0 10em;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.drawer-show .drawer__inner{
  opacity: 1;
  transition: opacity 0.25s 0.18s linear;
}
.drawer__nav{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  width: 100%;
}
.drawer__nav-list--cta{
  grid-column: 1 / -1;
  display: flex;
  margin-top: 2.4em;
}
.drawer__nav-list--cta>li{
  width: 50%;
}
.drawer__nav-list>li+li{
  margin-top: 1.2em;
}
.drawer__nav-list--cta>li+li{
  margin-top: 0;
}
.drawer__nav-list>li>a{
  position: relative;
  display: block;
  width: fit-content;
  padding: 0.1em 0 0.1em 0.5em;
}
.drawer__nav-list>li>a::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 85%;
  background-color: rgb(33, 98, 163, 0.8);
}
.drawer__nav-list>li>a>span{
  display: block;
}
.drawer__nav-jp{
  font-weight: 600;
  line-height: 1.35;
}
.drawer__nav-list--cta .drawer__nav-jp{
  text-decoration: underline;
}
.drawer__bg{
  position: fixed;
  z-index: 101;
  inset: 0;
  background-color: rgb(5, 19, 40, 0.12);
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.15, 1, .2, 1);
}
.drawer-show .drawer__bg{
  opacity: 1;
  pointer-events: inherit;
}
@media (max-width: 1299px){
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .drawer__btn{
    background-color: #1c538e;
  }
  .drawer__nav{
    grid-template-columns: repeat(1,1fr);
  }
  .drawer__nav-list+.drawer__nav-list{
    margin-top: 0.8em;
  }
  .drawer__nav-list>li+li{
    margin-top: 0.8em;
  }
  .drawer__nav-list--cta{
    flex-direction: column;
  }
  .drawer__nav-list--cta>li{
    width: 100%;
  }
}

/* ---- SPフロートメニュー ---- */
.sp-float{
  display: none;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
}
.sp-float__nav{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  width: min(96%,42em);
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  box-shadow: 0px -2px 20px 10px rgb(51, 51, 51, 0.05);
}
.sp-float__nav>a,
.sp-float__nav>span{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(31, 132, 193, 0.95);
  padding: 0.6em 0 0.8em;
}
.sp-float__nav>a:nth-child(2){
  background-color: rgb(33, 98, 163, 0.95);
}
.sp-float__nav>a:nth-child(3){
  background-color: rgb(28, 83, 142, 0.95);
}
.sp-float__nav>a span,
.sp-float__nav>span span{
  display: block;
}
.sp-float__nav-inner{
  position: relative;
  padding: 0 0.5em;
}
.sp-float__nav-inner::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: rgb(255, 255, 255, 0.3);
}
.sp-float__nav-en{
  color: rgb(255, 255, 255, 0.9);
}
.sp-float__nav-jp{
  color: rgb(255, 255, 255, 0.95);
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .sp-float{
    display: inherit;
  }
  .top-header .sp-float{
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(.15, 1, .2, 1);
  }
  .top-header.header-scroll .sp-float{
    transform: translateY(0);
    opacity: 1;
  }
  .top-header .sp-float__nav-inner{
    opacity: 0;
    transition: opacity 0.15s 0.1s linear;
  }
  .top-header.header-scroll .sp-float__nav-inner{
    opacity: 1;
  }
}


/* --------------- footer --------------- */
/* ---- CTA ---- */
.page-cta__wrap{
  display: flex;
}
.page-cta__wrap>li{
  width: 50%;
}
.page-cta__wrap>li>a{
  position: relative;
  display: block;
  padding: 7em 0;
  overflow: clip;
}
.page-cta__wrap>li a::before{
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(.15, 1, .2, 1);
}
.page-cta__catalog>a::before{
  background-image: url(../image/common/cta_catalog.jpg);
}
.page-cta__contact>a::before{
  background-image: url(../image/common/cta_contact.jpg);
}
.page-cta__wrap>li a:hover::before{
  transform: scale(1.01);
}
.page-cta__wrap>li a::after{
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(3, 24, 45, 0.35);
  mix-blend-mode: multiply;
  transition: background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.page-cta__wrap>li a:hover::after{
  background-color: rgb(3, 24, 45, 0.25);
}
.page-cta__inner{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(75%,31.88889em);
  margin: 0 auto;
}
.page-cta__ttl{
  position: relative;
  padding-left: 2em;
}
.page-cta__ttl-line{
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 85%;
  background-color: rgb(255, 255, 255, 0.7);
}
.page-cta__btn{
  position: relative;
  display: block;
  width: 4em;
  height: 4em;
}
.page-cta__btn::before{
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #2162a3;
  margin: auto;
  border-radius: 50%;
}
.page-cta__catalog .page-cta__btn::before{
  background-color: #1f84c1;
}
.page-cta__btn::after{
  content: "";
  position: absolute;
  inset: 0;
  width: 25%;
  height: 25%;
  margin: auto;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1023px){
  .page-cta__inner{
    width: 80%;
  }
  .page-cta__btn{
    width: 3.5em;
    height: 3.5em;
  }
}
@media (max-width: 767px){
  .page-cta__wrap{
    flex-direction: column;
  }
  .page-cta__wrap>li{
    width: 100%;
  }
  .page-cta__wrap>li>a{
    padding: 3em 0;
  }
  .page-cta__inner{
    width: min(90%,40em);
  }
  .page-cta__ttl{
    padding-left: 1em;
  }
  .page-cta__btn{
    width: 3em;
    height: 3em;
  }
}


/* ---- フッター ---- */
.footer{
  position: relative;
  z-index: 1;
  padding: 9em 0 2em;
}
.footer__wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 8em;
}
.footer__wrap,
.footer__wrap a{
  color: rgb(255, 255, 255, 0.95);
}
.footer__logo{
  width: 22em;
}
.footer__logo-inner{
  display: block;
  padding-top: 17.731%;
  background-image: url(../image/common/logo_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  opacity: 0.95;
}
.footer__num>li{
  display: flex;
}
.footer__num>li+li{
  margin-top: 0.2em;
}
.footer__num-left{
  width: 3.2em;
  font-weight: 600;
}
.footer__nav{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer__list{
  padding-left: 1em;
  border-left: 1px solid rgb(255, 255, 255, 0.3);
}
.footer__list:not(:last-child){
  margin-right: 5em;
}
.footer__list>li+li{
  margin-top: 1em;
}
.footer__list>li>a{
  display: block;
  width: fit-content;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.4em 0;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.footer__list>li>a:hover{
  color: rgb(255, 255, 255, 1);
}
.footer__list--cta a{
  text-decoration: underline;
}
.copyright{
  color: rgb(255, 255, 255, 0.6);
}
@media (max-width: 1299px){
  .footer__list:not(:last-child){
    margin-right: 3em;
  }
}
@media (max-width: 1023px){
  .footer__wrap{
    flex-direction: column-reverse;
  }
  .footer__left{
    margin-top: 5em;
  }
}
@media (max-width: 767px){
  .footer{
    padding-top: 7em;
  }
  .footer__wrap{
    padding-bottom: 6em;
  }
  .footer__logo{
    width: 16.5em;
  }
  .footer__list{
    width: 50%;
    padding-left: 0.8em;
  }
  .footer__list:not(:last-child){
    margin-right: 0;
  }
  .footer__list--cta{
    display: flex;
    width: 100%;
    margin-top: 1.5em;
    padding-left: 0;
    border-left: none;
  }
  .footer__list>li+li{
    margin-top: 0.8em;
  }
  .footer__list--cta>li{
    width: 50%;
    padding-left: 0.8em;
    border-left: 1px solid rgb(255, 255, 255, 0.3);
  }
  .footer__list--cta>li+li{
    margin-top: 0;
  }
}




/* --------------- 共通パーツ --------------- */

/* ---- ボタン ---- */
.btn01{
  width: fit-content;
}
.btn01__link{
  display: flex;
  align-items: center;
  width: fit-content;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.8em 0.9em 0.8em 1.6em;
  border-radius: 2px;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1), background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.btn01__link.bg-blue:active,
.btn01__link.bg-blue:hover{
  background-color: #0d5099;
}
.btn01__link.bg-white:active,
.btn01__link.bg-white:hover{
  background-color: #2162a3;
  color: rgb(255, 255, 255, 1);
}
.btn01__arrow{
  position: relative;
  width: 0.65em;
  height: 0.65em;
  margin-left: 1.2em;
  overflow: hidden;
}
.btn01__arrow::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: left 0.8s cubic-bezier(.15, 1, .2, 1), opacity 0.8s cubic-bezier(.15, 1, .2, 1);
}
.btn01__link.bg-white .btn01__arrow::before{
  background-image: url(../image/common/arrow_black.svg);
}
.btn01__arrow::after{
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: left 0.8s cubic-bezier(.15, 1, .2, 1), opacity 0.8s cubic-bezier(.15, 1, .2, 1);
}
/* hover,active */
.btn01__link:active .btn01__arrow::before,
.btn01__link:hover .btn01__arrow::before{
  left: 150%;
  opacity: 0;
}
.btn01__link:active .btn01__arrow::after,
.btn01__link:hover .btn01__arrow::after{
  left: 0;
  opacity: 1;
}
@media (max-width: 1023px){
  .btn01__link{
    padding: 0.7em 0.8em 0.7em 1.5em;
  }
  .btn01__arrow{
    margin-left: 1em;
  }
}
@media (max-width: 767px){
}

@media (max-width: 1023px){
}
@media (max-width: 767px){
}





/* --------------- TOP --------------- */

/* ---- TOP共通 ---- */
.top-ttl__en{
  display: block;
}
.top-ttl__jp{
  font-weight: 600;
  margin-left: 0.05em;
}
/* FVの下敷きにならないために、TOPの各セクションzindexを調整 */
.top-page section{
  position: relative;
  z-index: 1;
}

/* ---- FVスライダー ---- */
.top-fv{
  position: relative;
}
.top-fv__bg{
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
}
.top-fv__bg-curtain{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0);
  mix-blend-mode: multiply;
}
.top-fv__slide{
  overflow: hidden;
}
.top-fv__slide-image{
  height: 100dvh;
  overflow: clip;
}
.top-fv__slide-image img{
  display: block;
  height: 100%;
  object-fit: cover;
}
@keyframes slideZoom{
  0% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
.swiper-slide-active .top-fv__slide-image img,
.swiper-slide-duplicate-active .top-fv__slide-image img,
.swiper-slide-prev .top-fv__slide-image img{
  animation: slideZoom 10s cubic-bezier(0,.2,.19,.93) 0s 1 normal both;  
}
.top-fv__scroll{
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 4em;
  display: flex;
  align-items: flex-start;
}
.top-fv__scroll-txt{
  width: 0.66em;
  margin-right: 0.6em;
}
.top-fv__scroll-bar{
  width: 1px;
  height: 10em;
  background-color: rgb(255, 255, 255, 0.4);
}
@media (max-width: 1023px){
  .top-fv__scroll{
    display: none;
  }
}
@media (max-width: 767px){
}

/* ---- FVコンテンツ ---- */
.top-fv__area{
  position: relative;
  z-index: 1;
  height: 100svh;
}
.top-fv__area-wrap{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.top-fv__copy{
  width: min(55%,40em);
}
.top-fv__copy span{
  display: block;
  overflow: clip;
}
.top-fv__copy span img{
  display: block;
}
.top-fv__copy span:nth-child(2){
  margin: 7% 0 12%;
}
.top-fv__area-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(2 * var(--header-height));
  background: linear-gradient(0deg, rgb(5, 19, 40, 0), rgb(5, 19, 40, 0.1) );
}
@media (max-width: 1023px){
  .top-fv__copy{
    width: min(75%, 28em);
  }
  .top-fv__copy span:nth-child(2){
    margin-bottom: 18%;
  }
}
@media (max-width: 767px){
  .top-fv__copy{
    width: min(85%, 25em);
  }
}
/* ---- FVコンセプト ---- */
.top-fv__concept{
  position: relative;
  z-index: 1;
  padding: 30svh 0 30svh;
}
.top-fv__concept-txt+.top-fv__concept-txt{
  margin-top: 4em;
}
.top-fv__concept .btn01{
  margin-top: 8em;
}
@media (max-width: 1023px){
  .top-fv__concept{
    padding: 6em 0 12em;
  }
}
@media (max-width: 767px){
  .top-fv__concept-box{
    font-size: 1.071429em;
  }
  .top-fv__concept-txt+.top-fv__concept-txt{
    margin-top: 3.2em;
  }
  .top-fv__concept .btn01{
    margin-top: 7em;
  }
}


/* ---- サービス ---- */
.top-service__head{
  position: relative;
}
.top-service__head::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4em;
  height: 100%;
  background-color: rgb(33, 98, 163, 1);
}
.top-service__head-inner{
  display: flex;
  align-items: flex-start;
}
.top-service__head .top-ttl{
  margin-right: 4.5em;
}
.top-service__head-copy{
  margin-top: 0.25em;
}
.top-service__list{
  overflow-x: clip;
}
.top-service__list>li{
  display: flex;
  align-items: flex-start;
}
.top-service__list>li+li{
  margin-top: 0.5em;
}
.top-service__list>li:nth-child(odd){
  flex-direction: row-reverse;
}
.top-service__list-bg{
  flex: 1;
}
.top-service__list-cont{
  position: relative;
  z-index: 1;
  width: min(26.47059%,25.5em);
  margin-top: 8%;
}
.top-service__list>li:nth-child(odd) .top-service__list-cont{
  margin-right: min(2.07613%,2em);
}
.top-service__list>li:nth-child(even) .top-service__list-cont{
  margin-left: min(2.07613%,2em);
}
.top-service__list-ttl{
  position: relative;
  padding-bottom: 2.5em;
}
.top-service__list-jp{
  line-height: 1.3;
}
.top-service__list-point,
.top-service__list-point span{
  display: block;
}
.top-service__list-point{
  position: absolute;
  top: 17%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  line-height: 1;
}
.top-service__list>li:nth-child(odd) .top-service__list-point{
  left: 110%;
}
.top-service__list>li:nth-child(even) .top-service__list-point{
  right: 118%;
}
.top-service__list-point-txt{
  transform: rotate(90deg);
  transform-origin: center;
  margin-top: 0.9em;
}
.top-service__list-point-num{
  /* 144px */
  font-size: 8em;
  margin-left: -0.18em;
}
.top-service__list-line{
  position: absolute;
  bottom: 0;
  width: 50vw;
  height: 2px;
  display: block;
  background-color: rgb(33, 98, 163, 0.9);
}
.top-service__list>li:nth-child(odd) .top-service__list-line{
  right: 0;
}
.top-service__list>li:nth-child(even) .top-service__list-line{
  left: 0;
}
.top-service__list-box{
  margin-top: 4em;
}
.top-service__list-box .btn01{
  margin-top: 3em;
}
.top-service__bottom{
  padding-top: 10em;
}
@media (max-width: 1299px){
  .top-service__list>li{
    align-items: stretch;
  }
  .top-service__list-image{
    height: 100%;
  }
  .top-service__list-image img{
    height: 100%;
    object-fit: cover;
  }
  .top-service__list-cont{
    width: 34%;
    margin-bottom: 15%;
  }
  .top-service__list-ttl{
    padding-bottom: 2em;
  }
  .top-service__list-box{
    margin-top: 2.5em;
  }
  .top-service__list-box .btn01{
    margin-top: 2em;
  }
}
@media (max-width: 1023px){
  .top-service__head::before{
    width: 0.2em;
  }
  .top-service__list>li+li{
    margin-top: 6em;
  }
  .top-service__list>li:nth-child(odd),
  .top-service__list>li:nth-child(even){
    flex-direction: column;
  }
  .top-service__list-cont{
    width: 94.7%;
    margin-top: 1.8em;
    margin-bottom: 0;
  }
  .top-service__list>li:nth-child(odd) .top-service__list-cont{
    margin-right: 0;
  }
  .top-service__list>li:nth-child(even) .top-service__list-cont{
    margin-left: auto;
  }
  .top-service__list-ttl{
    padding-bottom: 1.2em;
  }
  .top-service__list-en{
    margin-top: -0.15em;
  }
  .top-service__list>li:nth-child(odd) .top-service__list-point,
  .top-service__list>li:nth-child(even) .top-service__list-point{
    top: -4.8em;
    left: -0.2em;
  }
  .top-service__list-point-txt{
    font-size: 0.92858em;
  }
  .top-service__list-point-num{
    font-size: 4em;
    margin-left: -0.22em;
  }
  .top-service__list-line{
    width: 100vw;
    height: 1px;
  }
  .top-service__list-box{
    margin-top: 1.2em;
  }
  .top-service__list-box .btn01{
    margin-top: 1.5em;
  }
  .top-service__bottom{
    margin-top: 6em;
    padding-top: 4em;
  }
}
@media (max-width: 767px){
  .top-service__head::before{
    width: 2px;
    background-color: rgb(33, 98, 163, 0.9);
  }
  .top-service__head-inner{
    flex-direction: column;
  }
  .top-service__head .top-ttl{
    margin-right: 0;
  }
  .top-service__head-copy{
    font-size: 1.14286em;
    color: rgb(51, 51, 51, 0.9);
    margin-top: 0.8em;
  }
}


/* ---- 強み ---- */
.top-strength{
  padding: 31em 0 6em;
  overflow-x: clip;
}
.top-strength__bg{
  position: absolute;
  inset: 0;
}
.top-strength__bg-image{
  display: block;
  height: 100%;
  display: block;
  background-image: url(../image/top/strength_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top-strength__wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.top-strength__head{
  width: 29.65117%;
}
.top-strength__ttl{
  position: relative;
  padding-bottom: 2.5em;
}
.top-strength__ttl-line{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  height: 2px;
  display: block;
  background-color: rgb(255, 255, 255, 0.8);
}
.top-strength__head .btn01{
  margin-top: 4em;
}
.top-strength__cont{
  width: 36.04652%;
  margin-top: 0.5em;
}
.top-strength__list>li+li{
  margin-top: 5em;
}
.top-strength__list-head{
  display: flex;
  align-items: center;
}
.top-strength__list-ttl{
  position: relative;
  margin-left: 0.6em;
  padding-left: 0.8em;
}
.top-strength__list-ttl::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 77%;
  background-color: rgb(255, 255, 255, 0.5);
}
.top-strength__list-point{
  margin-top: 1.2em;
}
.top-strength__list-point>li{
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.5;
}
.top-strength__list-point>li+li{
  margin-top: 0.5em;
}
.top-strength__list-point>li::before{
  content: "";
  width: 0.4em;
  height: 2px;
  background-color: rgb(255, 255, 255, 0.8);
  margin-right: 0.3em;
}
@media (max-width: 1299px){
  .top-strength__head{
    width: 36.04652%;
  }
  .top-strength__cont{
    width: 42.44186%;
  }
}
@media (max-width: 1023px){
  .top-strength{
    padding: 0;
    background-color: #fff;
  }
  .top-strength__wrap{
    display: none;
    flex-direction: column;
  }
  .top-strength__head{
    width: 100%;
  }
  .top-strength__ttl{
    padding-bottom: 1.2em;
  }
  .top-strength__ttl-line{
    width: 100vw;
    height: 1px;
  }
  .top-strength__cont{
    width: 100%;
    margin-top: 4.5em;
  }
  .top-strength__list-num{
    color: #2162a3;
  }
  .top-strength__list-ttl::before{
    background-color: rgb(51, 51, 51, 0.3);
  }
  .top-strength__list>li+li{
    margin-top: 2em;
  }
  .top-strength__list-point{
    color: rgb(51, 51, 51, 0.8);
    margin-top: 0.6em;
  }
  .top-strength__list-point>li+li{
    margin-top: 0.3em;
  }
  .top-strength__cont .btn01{
    margin-top: 2.5em;
  }
  .top-strength__bg{
    position: relative;
    display: block;
    height: 50vw;
  }
  .top-strength__list-point>li::before{
    background-color: rgb(33, 98, 163, 0.98);
  }
  .top-strength__sp{
    margin-top: -8.5em;
    padding-bottom: 4em;
    border-bottom: 1px solid rgb(51, 51, 51, 0.25);
  }
}
@media (max-width: 767px){
  .top-strength__bg{
    height: 100vw;
  }
  .top-strength__bg-image{
    background-image: url(../image/top/strength_bg_sp.jpg);
  }
}


/* ---- 導入事例 ---- */
.top-works__wrap{
  display: flex;
  align-items: flex-start;
}
.top-works__head{
  width: min(20.76125%,20em);
  margin-right: min(7.78546%, 7.5em);
}
.top-works__cont{
  flex: 1;
  min-width: 0;
}
.top-works__bar{
  padding-bottom: 1.2em;
  border-bottom: 2px solid rgb(33, 98, 163, 0.9);
}
.top-works__slide-btn{
  display: flex;
  align-items: center;
}
.top-works__slide-prev,
.top-works__slide-next{
  position: relative;
  width: 2em;
  height: 2em;
  background-color: rgb(33, 98, 163, 0.95);
  border-radius: 4px;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: center;
  transition: opacity 0.1s linear, background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.top-works__slide-prev{
  margin-right: 0.6em;
  transform: rotate(180deg);
}
.top-works__slide-prev:hover,
.top-works__slide-prev:active,
.top-works__slide-next:hover,
.top-works__slide-next:active{
  background-color: #1c538e;
}
.top-works__slide-btn .swiper-button-disabled{
  opacity: 0.5;
}
.top-works__slide{
  margin-top: 4em;
}
.top-works__list{
  display: flex;
}
.top-works__list>li{
  width: 27.5em;
  padding-right: 2em;
}
.top-works__list>li a{
  display: block;
}
.top-works__image{
  aspect-ratio: 3/2;
  overflow: hidden;
}
.top-works__image img{
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.15, 1, .2, 1);
}
.top-works__list>li a:hover .top-works__image img{
  transform: scale(1.02);
}
.top-works__info{
  margin-top: 1.5em;
}
.top-works__cate{
  width: fit-content;
  padding: 0.2em 0.8em;
  border-radius: 2px;
  transition: background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.top-works__list>li a:hover .top-works__cate,
.top-works__list>li a:active .top-works__cate{
  background-color: #2162a3;
}
.top-works__name{
  font-weight: 600;
  margin-top: 0.1em;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.top-works__list>li a:hover .top-works__name,
.top-works__list>li a:active .top-works__name{
  color: #2162a3;
}
@media (max-width: 1299px){
  .top-works{
    padding-top: 4em;
  }
  .top-works__head{
    width: min(26.47059%,25.5em);
    margin-right: min(2.07613%, 2em);
  }
}
@media (max-width: 1023px){
  .top-works__wrap{
    flex-direction: column;
  }
  .top-works__head{
    width: 94.7%;
    margin-right: 0;
  }
  .top-works__cont{
    width: 100%;
  }
  .top-works__bar{
    margin-top: 2em;
    padding: 0.8em 0 0;
    border-top: 1px solid rgb(33, 98, 163, 0.9);
    border-bottom: none;
  }
  .top-works__slide-btn{
    justify-content: flex-end;
    margin: 0 5.4% 0 auto;
  }
  .top-works__list>li{
    width: min(72vw, 22em);
    padding-right: 1.5em;
  }
  .top-works__slide{
    margin-top: 2em;
  }
}
@media (max-width: 767px){
}


/* ---- 導入の流れ ---- */
.top-flow__wrap{
  display: flex;
  align-items: center;
}
.top-flow__head{
  width: min(26.47059%, 25.5em);
  margin-right: min(2.07613%, 2em);
}
.top-flow__txt{
  width: 78.43138%;
}
.top-flow__cont{
  width: min(43.59862%,42em);
}
@media (max-width: 1299px){
  .top-flow__head{
    width: 32.179994%;
    margin-right: 5.70935%;
  }
  .top-flow__txt{
    width: 100%;
  }
  .top-flow__cont{
    width: 49.30796%;
  }
}
@media (max-width: 1023px){
  .top-flow__wrap{
    flex-direction: column;
    align-items: flex-start;
  }
  .top-flow__head{
    width: 94.7%;
    margin-right: 0;
  }
  .top-flow__cont{
    width: 94.7%;
    margin-top: 3em;
  }
}
@media (max-width: 767px){
}


/* ---- 会社概要 ---- */
.top-company{
  padding: 25.5em 0 15em;
  overflow-x: clip;
}
.top-company__bg{
  position: absolute;
  inset: 0;
  display: block;
}
.top-company__bg-image{
  display: block;
  height: 100%;
  background-image: url(../image/top/company_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top-company__wrap{
  display: flex;
  justify-content: space-between;
}
.top-company__head{
  width: 23.25582%;
}
.top-company__ttl{
  position: relative;
  padding-bottom: 2.5em;
}
.top-company__ttl-line{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  height: 2px;
  display: block;
  background-color: rgb(255, 255, 255, 0.8);
}
.top-company__head .btn01{
  margin-top: 4em;
}
.top-company__cont{
  width: 48.83721%;
}
.top-company__txt{
  width: 73.80955%;
}
@media (max-width: 1299px){
  .top-company__cont{
    width: 55.23256%;
  }
}
@media (max-width: 1023px){
  .top-company{
    padding: 8em 0 5em;
  }
  .top-company__wrap{
    flex-direction: column;
  }
  .top-company__head{
    width: 100%;
  }
  .top-company__ttl{
    padding-bottom: 1.2em;
  }
  .top-company__ttl-line{
    width: 100vw;
    height: 1px;
  }
  .top-company__cont{
    width: 100%;
    margin-top: 3em;
  }
  .top-company__txt{
    width: 100%;
  }
}
@media (max-width: 767px){
}


/* ---- 採用情報 ---- */
.top-recruit__wrap{
  display: grid;
  grid-template-columns: 30% 40% 30%;
  grid-template-areas: "image-left content image-right";
}
.top-recruit__image{
  min-width: 0;
}
.top-recruit__image img{
  height: 100%;
  object-fit: cover;
}
.top-recruit__image--left{
  grid-area: image-left;
}
.top-recruit__image--right{
  grid-area: image-right;
}
.top-recruit__cont{
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-recruit__ttl{
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1em 1.5em;
}
.top-recruit__ttl-line{
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255, 0.8);
}
.top-recruit__cont .btn01{
  width: fit-content;
  margin: 3em auto 0;
}
.top-recruit__cont .btn01__link{
  border: 1px solid rgb(255, 255, 255, 0.8);
}
@media (max-width: 1023px){
  .top-recruit__wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "image-left image-right" "content content";
  }
  .top-recruit__image{
    aspect-ratio: 1/0.9;
  }
  .top-recruit__ttl{
    padding-bottom: 1em;
  }
  .top-recruit__cont .btn01{
    margin-top: 1.9em;
  }
}
@media (max-width: 767px){
  .top-recruit__image{
    aspect-ratio: 1/1.2;
  }
}


/* ---- ブログ ---- */
.top-blog__head{
  display: flex;
  align-items: center;
}
.top-blog__ttl{
  position: relative;
  margin-right: 5%;
  padding-right: 5%;
}
.top-blog__ttl-line{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: rgb(33, 98, 163, 0.9);
}
.top-blog__list>li a{
  display: block;
  padding: 1.4em 0.2em 0.8em;
  border-bottom: 1px solid rgb(51, 51, 51, 0.4);
  transition: background-color 0.5s cubic-bezier(.15, 1, .2, 1);
}
.top-blog__list>li a:hover,
.top-blog__list>li a:active{
  background-color: #f3f4f5;
}
.top-blog__list>li:nth-child(1) a{
  padding-top: 1em;
}
.top-blog__info{
  display: flex;
  align-items: center;
}
.top-blog__time{
  margin-right: 0.8em;
}
.top-blog__cate{
  padding: 0.05em 0.4em;
  border-radius: 2px;
}
.top-blog__name{
  margin-top: 0.4em;
  transition: color 0.5s cubic-bezier(.15, 1, .2, 1);
}
.top-blog__list>li a:hover .top-blog__name,
.top-blog__list>li a:active .top-blog__name{
  color: #2162a3;
}
.top-blog__txt{
  text-align: justify;
  margin-top: 0.1em;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-blog__cont .btn01{
  margin: 3.5em auto 0;
}
@media (max-width: 1023px){
  .top-blog__head{
    flex-direction: column;
    align-items: flex-start;
  }
  .top-blog__copy{
    margin-top: 0.8em;
  }
  .top-blog__name{
    font-size: 1em;
    margin-top: 0.6em;
  }
}
@media (max-width: 767px){
}





@media (max-width: 1023px){
}
@media (max-width: 767px){
}




/* --------------- 下層共通 --------------- */

/* ---- 下層FV ---- */
.lower-fv{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: var(--header-height);
}
.lower-fv--l{
  min-height: calc(70svh - var(--header-height));
}
.lower-fv--m{
  min-height: calc(60svh - var(--header-height));
}
.lower-fv--info{
  min-height: calc(42svh - var(--header-height));
  border-bottom: 1px solid rgb(51, 51, 51, 0.2);
}
.lower-fv__wrap{
  position: relative;
  z-index: 2;
  padding: 8em 0 2.5em;
}
.lower-fv--info .lower-fv__wrap{
  padding: 5em 0 1.2em;
}
.lower-fv__ttl-en{
  display: block;
  margin-left: 0.08em;
}
.lower-fv__subttl::after{
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background-color: rgb(255, 255, 255, 0.7);
  margin-top: 0.3em;
}
.lower-fv__txt{
  margin-top: 1em;
}
.lower-fv__image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(33, 98, 163, 0.98);
  overflow: clip;
}
.lower-fv__image img{
  display: block;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px){
  .lower-fv--l{
    min-height: calc(65svh - var(--header-height));
  }
  .lower-fv--m{
    min-height: calc(50svh - var(--header-height));
  }
  .lower-fv--info{
    min-height: calc(36svh - var(--header-height));
  }
  .lower-fv__wrap{
    padding-bottom: 3em;
    padding: 5em 0 3em;
  }
  .lower-fv--info .lower-fv__wrap{
    padding: 3em 0 0.8em;
  }
}
@media (max-width: 767px){
}

/* ---- パンくずリスト ---- */
.breadcrumb{
  position: relative;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lower-fv .breadcrumb{
  position: absolute;
  z-index: 2;
  bottom: 2.5em;
  right: 4.2em;
}
.breadcrumb__list{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: fit-content;
  min-width: 100%;
  margin-left: auto;
}
.breadcrumb__list>li{
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb__list>li:not(:last-child)::after{
  content: "";
  width: 2em;
  height: 1px;
  background-color: rgb(51, 51, 51, 0.3);
  margin: 0 0.5em;
}
.lower-fv .breadcrumb__list>li:not(:last-child)::after{
  background-color: rgb(255, 255, 255, 0.4);
}
.breadcrumb__list a{
  opacity: 0.4;
}
.breadcrumb__list span{
  opacity: 0.6;
}
.lower-fv .breadcrumb__list a{
  opacity: 0.8;
}
.lower-fv .breadcrumb__list span{
  opacity: 0.95;
}
/* .breadcrumb__list>li:last-child span{
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
} */
@media (max-width: 1023px){
  .lower-fv .breadcrumb{
    bottom: 0.5em;
    right: 0.5em;
  }
  .breadcrumb__list>li:not(:last-child)::after{
    width: 1.5em;
    margin: 0 0.3em;
  }
}
@media (max-width: 767px){
}

/* ---- 見出し ---- */
.plane-ttl__en{
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 430;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 0.4em 0.12em;
}
.plane-ttl__jp{
  font-weight: 600;
}
.border-ttl{
  position: relative;
  font-weight: 600;
  line-height: 1.4;
  padding: 0 0 0.4em 0.6em;
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
}
.border-ttl::before{
  content: "";
  position: absolute;
  top: 0.1em;
  left: 1px;
  width: 0.1em;
  height: calc(100% - 0.6em);
  background-color: rgb(33, 98, 163, 0.8);
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
}

/* ---- ボタン ---- */
.border-btn{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(48%,20em);
  background-color: rgb(255, 255, 255, 1);
  padding: 1em 1em;
  border: 1px solid #e3e4e6;
  border-radius: 2px;
  overflow: clip;
}
.border-btn--tel{
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.border-btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: rgb(33, 98, 163, 0.9);
}
.border-btn__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.border-btn--tel .border-btn__inner{
  justify-content: flex-start;
}
.border-btn__txt{
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.border-btn:hover .border-btn__txt{
  color: #2162a3;
}
.border-btn--tel .border-btn__txt{
  margin-right: 1em;
}
.border-btn__arrow{
  position: relative;
  width: 1.2em;
  height: 1.2em;
  background-color: #2162a3;
  border-radius: 2px;
  overflow: clip;
}
.border-btn__arrow::before,
.border-btn__arrow::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: left 0.8s cubic-bezier(.15, 1, .2, 1), opacity 0.8s cubic-bezier(.15, 1, .2, 1);
}
.border-btn__arrow::after{
  left: -150%;
  opacity: 0;
}
.border-btn:hover .border-btn__arrow::before{
  left: 150%;
  opacity: 0;
}
.border-btn:hover .border-btn__arrow::after{
  left: 0;
  opacity: 1;
}
.border-btn__tel-inner span{
  display: block;
}
@media (max-width: 1023px){
  .border-btn::before{
    width: 2px;
  }
}
@media (max-width: 767px){
}

@media (max-width: 1023px){
}
@media (max-width: 767px){
}






/* --------------- コンセプト --------------- */
/* ---- FV、導入 ---- */
.concept-fv{
  margin-top: var(--header-height);
  overflow-x: clip;
}
.concept-fv__image01{
  width: 47.5%;
  margin-left: auto;
}
.concept-fv__image01-inner{
  display: block;
  padding-top: min(89.385475%,74svh);
  background-image: url(../image/concept/concept01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.concept-fv__image01 img{
  height: 100%;
  object-fit: cover;
}
.concept-fv .breadcrumb{
  margin: 1em 4em 0 0;
}
.concept-fv__wrap{
  margin-top: -21em;
}
.concept-fv__inner{
  position: relative;
  width: fit-content;
  margin-left: 25.5814%;
}
.concept-fv__copy{
  position: relative;
  width: min(100%,30em);
  margin-top: 2.2em;
}
.concept-fv__copy::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../image/concept/fv_copy_white.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  /* 画像と重なっている部分だけ表示 */
  clip-path: inset(0 0 0 var(--copy-white-start, 100%));
  pointer-events: none;
}
.concept-fv__image02{
  position: absolute;
  top: 10em;
  right: 116%;
  width: 23vw;
}
.concept-fv__message01{
  margin-top: 10em;
}
.concept-fv__box>p+p{
  margin-top: 2.5em;
}
.concept-fv__image03{
  position: absolute;
  top: 2.5em;
  left: 110%;
  width: 27vw;
}
.concept-fv__message02{
  margin-top: 18em;
}
.concept-fv__image04{
  position: absolute;
  top: -2em;
  right: 120%;
  width: 26vw;
}
.concept-fv__image05{
  position: absolute;
  top: 10em;
  left: 110%;
  width: 32vw;
}
@media (max-width: 1599px){
  .concept-fv__image02{
    right: 110%;
    width: 24vw;
  }
  .concept-fv__image03{
    top: 11em;
    left: 106%;
    width: 22vw;
  }
  .concept-fv__image04{
    top: -1em;
    right: 113%;
    width: 24vw;
  }
  .concept-fv__image05{
    top: 10em;
    left: 105%;
    width: 30vw;
  }
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .concept-fv__image01{
    width: 58%;
  }
  .concept-fv__image01-inner{
    background-image: url(../image/concept/concept01_sp.jpg);
    padding-top: 119.3%;
  }
  .concept-fv .breadcrumb{
    margin-right: 1em;
  }
  .concept-fv__wrap{
    margin-top: 3em;
  }
  .concept-fv__inner{
    width: 100%;
    margin-left: 0;
  }
  .concept-fv__copy{
    width: min(100%,16em);
    margin-top: 1.2em;
  }
  .concept-fv__copy::after{
    display: none;
  }
  .concept-fv__image02{
    top: auto;
    bottom: calc(100% + 3em);
    right: 66%;
    width: 37vw;
  }
  .concept-fv__message01{
    margin-top: 4.5em;
  }
  .concept-fv__box{
    line-height: 2;
  }
  .concept-fv__box>p+p{
    margin-top: 2.2em;
  }
  .concept-fv__image03{
    top: -13em;
    left: 75%;
    width: 32vw;
  }
  .concept-fv__message02{
    margin-top: 5em;
  }
  .concept-fv__message02-row{
    display: flex;
    align-items: flex-start;
  }
  .concept-fv__image04,
  .concept-fv__image05{
    position: relative;
    top: 0;
    left: 0;
  }
  .concept-fv__image04{
    width: 40%;
    margin-right: 10%;
  }
  .concept-fv__image05{
    width: 55%;
    margin: 3em -5% 0 0;
  }
  .concept-fv__message02 .concept-fv__box{
    margin-top: 4em;
  }
}


/* ---- 特徴 ---- */
.concept-feature__wrap{
  position: relative;
  z-index: 1;
  display: flex;
  padding-bottom: 2.5em;
}
.concept-feature__wrap::before{
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 8em);
  background-color: #2162a3;
}
.concept-feature__bg{
  width: 58%;
}
.concept-feature__bg-image{
  display: block;
  height: 100%;
  background-image: url(../image/concept/feature_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.concept-feature__cont{
  flex: 1;
  margin-left: min(1.875%,2em);
  padding-top: 12em;
}
.concept-feature__txt{
  width: min(90%,28em);
  font-weight: 600;
  text-align: justify;
  margin-top: 3em;
}
@media (max-width: 1023px){
  .concept-feature__bg{
    width: 50%;
  }
  .concept-feature__cont{
    margin-left: 3%;
  }
}
@media (max-width: 767px){
  .concept-feature__wrap{
    flex-direction: column;
  }
  .concept-feature__bg{
    width: 90%;
  }
  .concept-feature__bg-image{
    padding-top: 60%;
  }
  .concept-feature__cont{
    width: min(90%, 40em);
    margin: -3em auto 0;
    padding-top: 0;
  }
  .concept-feature__txt{
    width: 100%;
    font-weight: 500;
    margin-top: 1.5em;
  }
}


/* ---- 強み ---- */
.concept-strength{
  overflow-x: clip;
}
.concept-strength__wrap{
  position: relative;
  display: flex;
  align-items: flex-start;
}
.concept-strength__left{
  position: sticky;
  top: calc(var(--header-height) + 1em);
  width: 36.04652%;
  margin-right: 8.72093%;
}
.concept-strength__figure{
  position: relative;
  width: 90%;
  margin: 3em auto 0;
}
.concept-strength__figure-scroll{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.15, 1, .2, 1);
}
.concept-strength__figure.active02 .concept-strength__figure-02{
  opacity: 1;
}
.concept-strength__figure.active03 .concept-strength__figure-03{
  opacity: 1;
}
.concept-strength__right{
  width: 48.83721%;
}
.concept-strength__list{
  margin-top: 9.5em;
}
.concept-strength__list>li+li{
  margin-top: 11em;
}
.concept-strength__head{
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f3f4f5;
  border: 1px solid #eff0f2;
  border-radius: 3px;
  padding: 0.7em 1em 0.7em 1.5em;
  overflow: clip;
}
.concept-strength__head::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: rgb(33, 98, 163, 0.8);
}
.concept-strength__head-left{
  position: relative;
  margin-right: 1.5em;
  padding-right: 1.5em;
}
.concept-strength__head-left::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: rgb(51, 51, 51, 0.15);
}
.concept-strength__value .concept-strength__head-left::after{
  display: none;
}
.concept-strength__head-jp{
  margin-top: -0.08em;
}
.concept-strength__head-right{
  margin-top: 0.5em;
}
.concept-strength__detail{
  margin-top: 1.5em;
}
.concept-strength__detail>li{
  padding: 2.2em 0;
  border-bottom: 1px solid rgb(51, 51, 51, 0.25);
}
.concept-strength__detail-txt{
  text-align: justify;
  margin-top: 0.5em;
}
.concept-strength__detail-tag{
  width: fit-content;
  padding: 0.25em 0.5em;
  border-radius: 3px;
  margin-bottom: 0.8em;
}
@media (max-width: 1023px){
  .concept-strength__wrap{
    flex-direction: column;
  }
  .concept-strength__left{
    position: inherit;
    top: auto;
    width: 100%;
    margin-right: 0;
  }
  .concept-strength__figure{
    width: min(80%,25em);
    margin-top: 1.8em;
  }
  .concept-strength__right{
    width: 100%;
    margin-top: 4em;
  }
  .concept-strength__list{
    margin-top: 5em;
  }
  .concept-strength__list>li+li{
    margin-top: 5em;
  }
  .concept-strength__head{
    flex-direction: column;
    align-items: flex-start;
    padding: 0.3em 1em 0.6em 1.2em;
  }
  .concept-strength__detail{
    margin-top: 0.7em;
  }
  .concept-strength__detail>li{
    padding: 1.6em 0;
  }
  .concept-strength__detail-txt{
    margin-top: 0.3em;
  }
  .concept-strength__detail-tag{
    margin-bottom: 0.5em;
  }
}
@media (max-width: 767px){
}







/* --------------- 3つのサービス共通 --------------- */
/* ---- 必要とされるタイミング ---- */
.needed__head-wrap{
  position: absolute;
  bottom: 2.5em;
  left: 0;
  width: 100%;
}
.needed__head-en{
  display: block;
  color: rgb(255, 255, 255, 0.95);
  margin: 0 0 0.4em 0.12em;
}
.lower-fv__row{
  display: flex;
  align-items: center;
}
.lower-fv__row-en{
  margin: 0 0.5em 0 0.12em;
}
.lower-fv__row-jp{
  margin-top: 0.8em;
}
.lower-fv__row + .lower-fv__ttl-jp{
  margin-top: 0.05em;
}
.needed__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.needed__list>li{
  position: relative;
  width: 48.4375%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(255, 255, 255, 0.99);
  padding: 2em 1em 2em 2.8em;
  border: 1px solid #5e83b7;
  border-radius: 0.3em;
}
.needed__list>li:nth-child(n+3){
  margin-top: 3.125%;
}
.needed__list>li::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 2em;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 4em);
  background-color: rgb(33, 98, 163, 0.2);
}
.needed__bg{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 18em);
}
.needed__bg-inner{
  width: 70%;
  height: 100%;
  background-image: url(../image/common/needed_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
@media (max-width: 1023px){
  .needed__head-ttl{
    padding-left: 2em;
  }
  .needed__list>li{
    padding: 1em 1em 1em 1.7em;
  }
  .needed__list>li::before{
    left: 1em;
    height: calc(100% - 2em);
  }
}
@media (max-width: 767px){
  .needed__head-image{
    aspect-ratio: 1/0.9;
  }
  .needed__head-image img{
    height: 100%;
    object-fit: cover;
  }
  .needed__head-wrap{
    bottom: 1.5em;
  }
  .needed__head-ttl{
    padding-left: 0.8em;
  }
  .needed__list{
    flex-direction: column;
  }
  .needed__list>li{
    width: 100%;
  }
  .needed__list>li+li,
  .needed__list>li:nth-child(n+3){
    margin-top: 0.8em;
  }
}

/* ---- 特徴、流れ、メリット ---- */
.feature__head-en{
  margin: 0 0 0.4em 0.12em;
}
.feature__list>li{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.feature__list>li+li{
  margin-top: 5em;
}
.feature__list-left{
  flex: 1;
}
.feature__list-right{
  width: min(34.12844%,31em);
  margin-left: min(4.70949%,4.27778em);
}
.feature__list-ttl{
  display: flex;
  align-items: center;
  padding-bottom: 1.2em;
  border-bottom: 1px solid rgb(51, 51, 51, 0.25);
}
.feature__list-num{
  margin-right: 0.2em;
}
.feature__list-ttl-wrap{
  margin-top: 1.7em;
}
.feature__list-en{
  margin-left: 0.1em;
}
@media (max-width: 1023px){
  .feature__list-right{
    width: 48%;
    margin-left: 3%;
  }
}
@media (max-width: 767px){
  .feature__list>li{
    flex-direction: column;
  }
  .feature__list>li+li{
    margin-top: 6em;
  }
  .feature__list-right{
    width: min(88%,28em);
    margin: 1.2em 0 0 auto;
  }
  .feature__list-ttl{
    padding-bottom: 0.5em;
  }
  .feature__list-ttl-wrap{
    margin-top: 0.4em;
  }
}

/* ---- WORKSリンク ---- */
.service-works__link{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10em 8.59375%;
  overflow: clip;
}
.service-works__link::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../image/common/service_works.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(.15, 1, .2, 1);
}
.service-works__link:hover::before{
  transform: scale(1.01);
}
.service-works__link::after{
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(12, 44, 66, 0.25);
  mix-blend-mode: multiply;
  transition: background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.service-works__link:hover::after{
  background-color: rgb(12, 44, 66, 0.15);
}
.service-works__ttl{
  position: relative;
  z-index: 1;
}
.service-works__jp{
  margin-top: 0.3em;
}
.service-works__arrow{
  position: relative;
  z-index: 1;
  width: 5em;
  height: 5em;
}
.service-works__arrow::before{
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #2162a3;
  margin: auto;
  border-radius: 50%;
}
.service-works__arrow::after{
  content: "";
  position: absolute;
  inset: 0;
  width: 25%;
  height: 25%;
  margin: auto;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1023px){
  .service-works__arrow{
    width: 3.5em;
    height: 3.5em;
  }
}
@media (max-width: 767px){
  .service-works__link{
    padding: 8em 5%;
  }
}





/* --------------- オーダーメイド --------------- */
/* ---- メッセージ ---- */
.origin-message__wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.origin-message__txt{
  flex: 1;
  margin-top: 3em;
}
.origin-message__txt p+p{
  margin-top: 2.5em;
}
.origin-message__image{
  width: 41.33334%;
}
@media (max-width: 1023px){
  .origin-message__wrap{
    flex-direction: column;
  }
  .origin-message__image{
    margin-top: 3em;
  }
}
@media (max-width: 767px){
  .origin-message__txt{
    text-align: justify;
    margin-top: 2em;
  }
  .origin-message__txt p+p{
    margin-top: 1.5em;
  }
  .origin-message__image{
    width: min(90%,30em);
    margin: 1.5em auto 0;
  }
}

/* ---- 特徴と導入の流れ ---- */
.feature--origin{
  overflow-x: clip;
}
.feature--origin .feature__list>li{
  align-items: flex-start;
}
.feature--origin .feature__list>li+li{
  margin-top: 12em;
}
.feature__origin-head{
  display: flex;
  align-items: center;
  padding: 0em 0.8em 0.2em;
  border: 1px solid #f0f1f2;
  border-radius: 4px;
}
.feature__list-product .feature__origin-head{
  align-items: flex-start;
  padding: 0.4em 0.8em 1.5em;
}
.feature__origin-head-left{
  display: flex;
  align-items: center;
  margin-right: 0.8em;
}
.feature__list-product .feature__origin-head-left{
  width: 10em;
}
.feature__origin-num{
  color: rgb(33, 98, 163, 0.9);
  margin-right: 0.13em;
}
.feature__origin-ttl{
  line-height: 1.3;
  margin-top: 0.2em;
}
.feature__origin-info-txt{
  margin-top: 0.3em;
}
.feature__origin-head-right{
  margin-top: 0.3em;
  padding-left: 1em;
  border-left: 1px solid rgb(51, 51, 51, 0.15);
}
.feature__list-product .feature__origin-head-right{
  flex: 1;
  margin-top: 0.6em;
}
.feature__origin-term+.feature__origin-term{
  margin-top: 1.2em;
}
.feature__origin-time{
  width: fit-content;
  line-height: 1.35;
  background-color: rgb(51, 51, 51, 0.15);
  padding: 0.08em 0.4em;
  border-radius: 4px;
}
.feature__origin-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.feature__origin-label{
  margin-right: 0.4em;
}
.feature__origin-note{
  display: flex;
  align-items: flex-start;
  margin-top: 0.4em;
}
.feature__origin-note::before{
  content: "※";
}
.feature__origin-copy{
  margin-top: 2.7em;
}
.feature__origin-cont{
  padding-top: 3.5em;
}
.feature__origin-cont>li+li{
  padding-top: 2.5em;
}
.feature__origin-subttl{
  position: relative;
  background-color: rgb(33, 98, 163, 0.95);
  padding: 0.2em 1em 0.2em 1.2em;
  border-radius: 2px;
}
.feature__origin-subttl::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
  width: 2px;
  height: 40%;
  background-color: rgb(255, 255, 255, 0.7);
}
.feature__origin-box{
  margin-top: 1em;
}
.feature__origin-info{
  margin: 1.5em 0 1.2em;
  padding-left: 1em;
  border-left: 1px solid rgb(51, 51, 51, 0.3);
}
.feature__origin-info-ttl{
  position: relative;
}
.feature__origin-info-ttl::before{
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1.125em - 1px);
  width: 2px;
  height: 100%;
  background-color: #3476b7;
}
.feature__origin-info-thumb{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: flex-start;
  grid-gap: 1em;
  margin-top: 1em;
}
@media (max-width: 1023px){
  .feature__list-product .feature__origin-head{
    flex-direction: column;
    padding: 0.5em 0.8em 1em;
  }
  .feature__list-product .feature__origin-head-right{
    width: 100%;
    margin-top: 0.7em;
    padding: 1em 0 0 0;
    border-top: 1px solid rgb(51, 51, 51, 0.15);
    border-left: none;
  }
}
@media (max-width: 767px){
  .feature--origin .feature__list-right{
    width: min(94.7%, 28em);
    margin-top: 1.5em;
  }
  .feature--origin .feature__list>li+li{
    margin-top: 5em;
  }
  .feature__origin-copy{
    margin-top: 1.8em;
  }
  .feature__origin-cont{
    padding-top: 2.8em;
  }
  .feature__origin-cont>li+li{
    padding-top: 1.8em;
  }
  .feature__origin-box{
    margin-top: 0.7em;
  }
  .feature__origin-info{
    margin: 1.1em 0 1.1em;
  }
  .feature__origin-info-thumb{
    margin-top: 0.8em;
  }
}

/* ---- 動画ポップアップ ---- */
.movie-modal{
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s linear, visibility 0.15s linear;
}
.movie-modal.is-show{
  visibility: visible;
  opacity: 1;
}
.movie-modal__wrap{
  position: relative;
  z-index: 1;
}
.movie-modal__video{
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}
.movie-modal.is-show .movie-modal__video{
  opacity: 1;
  transition: opacity 0.15s 0.05s linear;
}
.movie-modal__close{
  position: absolute;
  top: -2em;
  right: -2em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  font-size: 1.2em;
  background-color: rgb(21, 31, 40, 0.2);
  border-radius: 100px;
  cursor: pointer;
  backdrop-filter: blur(3px);
  opacity: 0;
}
.movie-modal.is-show .movie-modal__close{
  opacity: 1;
  transition: opacity 0.15s 0.05s linear;
}
.movie-modal__close::before{
  content: "×";
  font-weight: 600;
  color: #fff;
}
.movie-modal__bg{
  position: absolute;
  inset: 0;
  background-color: rgb(21, 31, 40, 0.4);
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
}



/* --------------- カタログサービス --------------- */
/* ---- 特徴 ---- */
.catalog-message__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.catalog-message__txt02>p{
  margin-bottom: 1em;
}
.feature__list-txt-detail{
  margin-top: 1.5em;
  border-left: 1px solid rgba(51, 51, 51, 0.3);
  padding-left: 0.8em;
  position: relative;
}
.feature__list-txt-detail-line{
  width: 2px;
  background-color: #2162A3;
  height: 3em;
  position: absolute;
  left: -1.5px;
  top: 0;
}
.feature__list-txt-detail-txt{
  margin-bottom: 1em;
}
.feature__list-txt-detail-img{
  display: flex;
  justify-content: space-between;
}
.feature__list-txt-detail-img img{
  width: 48.5%;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .heaad-message__wrap{
    display: block;
  }
  .heaad-message__txt02{
    margin-left: 0;
    margin-top: 2em;
  }
}





/* --------------- レンタルサービス --------------- */
/* ---- メッセージ ---- */
.rental-message__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rental-message__txt02>p{
  margin-bottom: 1em;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
}





/* --------------- 導入事例 --------------- */
/* ---- 一覧 ---- */
.works{
  padding-top: 6.5svh;
}
.works__list>li>a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8em 0;
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
  transition: background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.works__list>li>a:hover{
  background-color: #f3f4f5;
}
.works__list-image{
  width: 39.84375%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.works__list-image img{
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.15, 1, .2, 1);
}
.works__list>li>a:hover .works__list-image img{
  transform: scale(1.01);
}
.works__list-info{
  width: 57.03125%;
}
.works__list-cate{
  width: fit-content;
  margin-left: 0.1em;
  padding: 0.2em 0.5em;
  border-radius: 3px;
}
.works__list-name{
  margin-top: 0.3em;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.works__list>li>a:hover .works__list-name{
  color: #2162a3;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .works__list>li>a{
    flex-direction: column;
    align-items: flex-start;
    padding: 3em 0 1.5em;
  }
  .works__list-image{
    width: 75%;
  }
  .works__list-info{
    width: 100%;
    margin-top: 1em;
  }
  .works__list-cate{
    padding: 0.1em 0.5em;
    border-radius: 2px;
  }
  .works__list-name{
    margin-top: 0.1em;
  }
}


/* ---- 詳細 ---- */
.works-detail__head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.works-detail__head-info{
  display: flex;
}
.works-detail__head-info>li:not(:last-child){
  margin-right: 3em;
}
.works-detail__head-cate{
  width: fit-content;
  padding: 0.2em 0.5em;
  border-radius: 3px;
}
.works-detail__head-txt{
  margin-top: 0.3em;
}
.works-detail__head-link{
  color: rgb(51, 51, 51, 0.6);
  margin-bottom: 0.4em;
}
.works-detail__thumb{
  margin-top: 1em;
}
.works-detail__cont>li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8em 0;
  border-bottom: 1px solid rgb(51, 51, 51, 0.2);
}
.works-detail__ttl{
  position: relative;
  width: 37.73585%;
  padding: 0 0.8em;
}
.works-detail__ttl::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 80%;
  background-color: rgb(33, 98, 163, 0.8);
}
.works-detail__txt{
  width: 58.70021%;
}
.works-detail__images>li+li{
  margin-top: 2.5em;
}
@media (max-width: 1023px){
  .lower-fv__row-jp{
    margin-top: 0.35em;
  }
}
@media (max-width: 767px){
  .works-detail__head{
    flex-direction: column;
    align-items: flex-start;
  }
  .works-detail__head-info>li:not(:last-child){
    margin-right: 2em;
  }
  .works-detail__head-cate{
    padding: 0.1em 0.5em;
    border-radius: 2px;
  }
  .works-detail__head-txt{
    margin-top: 0.2em;
  }
  .works-detail__head-link{
    margin: 1em 0 0;
  }
  .works-detail__thumb{
    margin-top: 2em;
  }
  .works-detail__cont>li{
    flex-direction: column;
    align-items: flex-start;
    padding: 2em 0;
  }
  .works-detail__cont>li:nth-child(1){
    padding-top: 0;
  }
  .works-detail__ttl{
    width: 100%;
    padding: 0 0.5em;
  }
  .works-detail__ttl::before{
    width: 1px;
  }
  .works-detail__txt{
    width: 100%;
    line-height: 1.65;
    margin-top: 0.6em;
  }
  .works-detail__images>li+li{
    margin-top: 1.2em;
  }
}

/* ---- 他事例 ---- */
.works-other__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 3em;
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
}
.works-other__list>li{
  width: 31.5%;
}
.works-other__image{
  aspect-ratio: 3/2;
  overflow: hidden;
}
.works-other__image img{
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.15, 1, .2, 1);
}
.works-other__list>li a:hover .works-other__image img{
  transform: scale(1.02);
}
.works-other__info{
  margin-top: 0.8em;
}
.works-other__cate{
  width: fit-content;
  padding: 0.1em 0.5em;
  border-radius: 3px;
}
.works-other__name{
  margin-top: 0.2em;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.works-other__list>li a:hover .works-other__name{
  color: #2162a3;
}
.works-other .btn01{
  margin: 3em auto 0;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .works-other__list{
    padding-bottom: 2.5em;
  }
  .works-other__list>li{
    width: 48%;
  }
  .works-other__list>li:nth-child(n+3){
    margin-top: 1.8em;
  }
  .works-other__info{
    margin-top: 0.5em;
  }
  .works-other__cate{
    padding: 0 0.4em;
    border-radius: 2px;
  }
  .works-other__name{
    font-size: 1em;
  }
  .works-other .btn01{
    margin: 2.2em auto 0;
  }
}

/* ---- 事例CTA ---- */
.works-cta{
  background-color: #eaebed;
}
.works-cta__list{
  display: flex;
  justify-content: space-between;
}
.works-cta__list>li{
  width: 31.5%;
}
.works-cta__list .border-btn{
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .works-cta__list{
    flex-direction: column;
  }
  .works-cta__list>li{
    width: 100%;
  }
  .works-cta__list>li+li{
    margin-top: 0.4em;
  }
}



/* --------------- 導入の流れ --------------- */
/* ---- メッセージ ---- */
.flow-message__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow-message__txt02>p{
  margin-bottom: 1em;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
}

/* ---- 導入の全体像 ---- */
.flow-service{
  background-color: #E8EDF2;
}
.flow-service__head-en{
  margin: 0 0 0.4em 0.12em;
}
.flow-service__head-ttl{
  padding-bottom: 1em;
  border-bottom: 1px solid rgb(51, 51, 51, 0.40);
  margin-bottom: 4em;
}
.flow-service__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
}
.flow-service__item:last-child{
  margin-bottom: 0;
}
.flow-service__item-ttl{
  color: #5E7984;
  width: 40%;
}
.flow-service__item-cont{
  width: 56%;
  text-align: justify;
}



@media (max-width: 1023px){
}
@media (max-width: 767px){
  .flow-message__wrap{
    display: block;
  }
  .flowntal-message__txt{
    margin-bottom: 0.7em;
  }
  .flow-service__item{
    display: block;
  }
  .flow-service__item-cont{
    width: 100%;
    text-align: left;
  }
  .flow-service__item-ttl{
    margin-bottom: 0.5em;
    width: 100%;
  }
}


/* ---- よくあるご相談 ---- */
.flow-faq-cont{
  display: flex;
  justify-content: space-between;
  width: 83%;
  margin: 0 auto;
  align-items: center;
  padding: 5em 0;
}
.flow-faq-cont-ttl-en {
    margin: 0 0 0.4em 0.12em;
}
.flow-faq-cont-list {
  width: 60%;
}
.flow-faq-item {
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.flow-faq-item:last-child {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
}
.flow-faq-question {
  display: flex;
  align-items: center;
  margin-bottom: 0.4em;
}
.flow-faq-answer {
  display: flex;
  align-items: center;
}
.flow-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  color: #ffffff;
  font-weight: bold;
  margin-right: 1em;
}
.flow-faq-icon-q {
  background-color: #1d69a6;
}

.flow-faq-icon-a {
  background-color: #637b85;
}
.flow-faq-title {
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
}
.flow-faq-text {
  margin: 0;
  line-height: 1.6;
  width: 90%;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .flow-faq-cont{
    display: block;
    width: 87%;
    padding: 3em 0;
  }
  .flow-faq-cont-list{
    width: 100%;
    margin-top: 2em;
  }
  .flow-faq-title{
    width: 80%;
  }
}






/* --------------- 会社情報 --------------- */
/* ---- 冒頭メッセージ ---- */
.company-top-message{
  padding-bottom: 20%;
}
.company-top-message__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-top-message__txt02>p{
  margin-bottom: 1em;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .company-top-message__wrap{
    display: block;
  }
  .company-top-message__txt{
    margin-bottom: 1em;
  }
  .company-top-message{
    padding-bottom: 16%;
  }
}

/* ---- 代表メッセージ ---- */
.company-message{
  position: relative;
}
.company-message-wrap{
  padding-bottom: 8em;
}
.company-message-bg{
  position: absolute;
  top: 2%;
  left: 0;
  width: 100%;
  z-index: -2;
  height: 100em;
}
.company-message__image{
  position: absolute;
  top: -15%;
  right: 0;
  width: 54%;
  z-index: -1;
}
.company-message-ttl{
  margin-bottom: 3em;
}
.company-message-cont-txt{
  margin-top: 25%;
  font-weight: bold;
  line-height: 2.3;
}
.company-message-cont-txt p{
  margin-bottom: 1.5em;
}
.company-message-cont-txt-name{
  border-left: 2px solid #2162A3;
  padding-left: 1em;
  margin-top: 4em;
}
.company-message-cont-txt-name>span{
  display: inline-block;
  margin-right: 1em;
}

@media (max-width: 1023px){
}
@media (max-width: 767px){
  .company-message-bg{
    height: 86em;
  }
  .company-message__image{
    top: -3%;
  }
  .company-message-ttl{
    margin-bottom: 5em;
  }
  .company-message-cont-txt{
    margin-top: 8%;
  }
  .company-message-cont-txt-name{
    margin-top: 2em;
  }
  .company-message-wrap{
    padding-bottom: 4em;
  }
}

/* ---- 経営理念 ---- */
.company-philosophy-cont{
  margin-top: 8em;
  padding-bottom: 6em;
  display: flex;
  justify-content: space-between;
}
.company-philosophy-cont-ttl{
  width: fit-content;
}
.company-philosophy-cont-txt-box{
  width: 63%;
}
.company-philosophy-cont-txt{
  margin-bottom: 2em;
}
.company-philosophy-cont-txt-ttl{
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.company-philosophy-cont-txt-ttl span{
  display: block;
  width: 2px;
  height: 1em;
  margin-right: 0.5em;
  background-color: #276EAF;
}

@media (max-width: 1023px){
}
@media (max-width: 767px){
  .company-philosophy-cont{
    display: block;
    padding-bottom: 3em;
    margin-top: 3em;
  }
  .company-philosophy-cont-txt-box{
    margin-top: 1em;
    width: 100%;
  }
}

/* ---- 会社概要 ---- */
.company-info-cont {
    display: flex;
    justify-content: space-between;
    width: 83%;
    margin: 0 auto;
    align-items: flex-start;
    padding: 5em 0;
}
.company-info-cont-ttl-en {
    margin: 0 0 0.4em 0.12em;
}
/* 全体コンテナ */
.company-info-cont-list {
  color: #333333;
  width: 70%;
}
/* FAQ各アイテム */
.company-info-item {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.company-info-item-ttl
.company-info-item:last-child {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
}
.company-info-item-cont{
  display: flex;
}
.company-info-item-cont-left{
  width: 20%;
}
.company-info-item-cont-right{
  width: 75%;
}
.company-info-item-map{
  line-height: normal;
  display: inline-block;
  margin-left: 1em;
  border-bottom: 1px solid #2162a3;
}


@media (max-width: 1023px){
}
@media (max-width: 767px){
  .company-info-cont{
    display: block;
  }
  .company-info-cont-list{
    margin-top: 1em;
    width: 100%;
  }
  .company-info-item-cont{
    display: block;
  }
  .company-info-item-cont-left{
    width: 100%;
  }
  .company-info-item-cont-right{
    width: 100%;
  }
  .company-info-item-map{
    margin-left: 0;
  }
}





/* --------------- ブログ --------------- */
/* ---- 共通 ---- */
.blog-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.blog__wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.blog__left{
  width: 65.625%;
}
.blog__right{
  width: 25.78125%;
  position: sticky;
  top: calc(var(--header-height) + 1em);
}
@media (max-width: 1023px){
  .blog-head{
    flex-direction: column-reverse;
  }
  .blog-head .breadcrumb{
    margin-left: auto;
  }
  .blog-head__left{
    margin-top: 1em;
  }
  .blog__wrap{
    flex-direction: column;
  }
  .blog__left{
    width: 100%;
  }
  .blog__right{
    width: 100%;
    margin-top: 5em;
  }
}
@media (max-width: 767px){
}

/* ---- 一覧 ---- */
.blog__list>li a{
  display: block;
  padding: 4em 0 2em;
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
}
.blog__list>li:nth-child(1) a{
  padding-top: 2em;
}
.blog__list-head{
  position: relative;
  padding-left: 0.8em;
}
.blog__list-head::before{
  content: "";
  position: absolute;
  top: 48%;
  left: 1px;
  transform: translateY(-50%);
  width: 2px;
  height: 88%;
  background-color: rgb(33, 98, 163, 0.8);
}
.blog__list-info{
  display: flex;
  align-items: center;
  margin-left: 0.13em;
}
.blog__list-time{
  margin-right: 0.8em;
}
.blog__list-cate{
  width: fit-content;
  margin: 0.1em 0 0 0;
  padding: 0.1em 0.5em;
  border-radius: 3px;
}
.blog__list-ttl{
  margin-top: 0.25em;
}
.blog__list-txt{
  margin-top: 0.8em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1023px){
  .blog__list>li a{
    padding: 1.5em 0 1.5em;
  }
  .blog__list-head::before{
    width: 1px;
  }
  .blog__list-txt{
    margin-top: 0.5em;
  }
}
@media (max-width: 767px){
}

/* ---- 詳細 ---- */
.blog__detail h2{
  position: relative;
  /* 27 */
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  background-color: #f3f4f5;
  border: 1px solid #eff0f2;
  border-radius: 2px;
  margin-bottom: 2em;
  padding: 0.5em 0.8em;
  overflow: clip;
}
.blog__detail>*+h2{
  margin-top: 5.3em;
}
.blog__detail h2::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: rgb(33, 98, 163, 0.8);
}
.blog__detail h3{
  /* 23 */
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-top: 1px solid rgb(51, 51, 51, 0.3);
  margin-top: 3.6em;
  padding-top: 1.2em;
}
.blog__detail h3::after{
  content: "";
  display: block;
  width: 1.2em;
  height: 0.09em;
  background-color: rgb(33, 98, 163, 0.8);
  margin: 0.7em 0 0.8em;
}
.blog__detail strong{
  font-weight: 600;
}
.blog__detail a{
  font-weight: 600;
  color: #2162a3;
  text-decoration: underline;
  transition: color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.blog__detail a:hover{
  color: #0d5099;
}
@media (max-width: 1023px){
  .blog__detail h2{
    font-size: 1.21429em;
    margin-bottom: 1.8em;
  }
  .blog__detail h2::after{
    width: 2px;
  }
  .blog__detail>*+h2{
    margin-top: 3.6em;
  }
  .blog__detail h3{
    font-size: 1.14286em;
    margin-top: 3em;
  }
  .blog__detail h3::after{
    margin: 0.6em 0 0.7em;
  }
}
@media (max-width: 767px){
}

/* ---- CTA ---- */
.blog__cta{
  background-color: #f3f4f5;
  border: 1px solid #eff0f2;
  border-radius: 2px;
  margin-top: 10em;
  padding: 2em;
}
.blog__cta-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog__cta-list>li{
  width: 48.5%;
}
.blog__cta-list>li a{
  width: 100%;
}
.blog__back{
  margin-top: 5em;
  padding-top: 3em;
  border-top: 1px solid rgb(51, 51, 51, 0.3);
}
.blog__back .btn01{
  margin: 0 auto;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .blog__cta{
    margin-top: 6.5em;
    padding: 1.5em;
  }
  .blog__cta-list{
    flex-direction: column;
  }
  .blog__cta-list>li{
    width: 100%;
  }
  .blog__cta-list>li+li{
    margin-top: 0.4em;
  }
  .blog__back{
    margin-top: 2.5em;
    padding-top: 1.8em;
  }
}

/* ---- サイドバー ---- */
.blog__side{
  background-color: #f3f4f5;
  border: 1px solid #f0f1f2;
  padding: 1em;
  border-radius: 2px;
}
.blog__side-inner+.blog__side-inner{
  margin-top: 1.8em;
}
.blog__side-head{
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
  padding-bottom: 0.4em;
  margin-bottom: 1em;
}
.blog__side-cate>li{
  font-size: 0.88889em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
}
.blog__side-cate>li+li{
  margin-top: 0.1em;
}
.blog__side-cate a{
  display: block;
  padding: 0.4em 0.5em;
  border-radius: 4px;
  transition: background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.blog__side-cate a:hover{
  background-color: #e5e7ea;
}
.blog__side-cate a.active{
  background-color: #d5dbe0;
}
.blog__side-cate a.active:hover{
  background-color: #ced6db;
}
.blog__side-new>li+li{
  margin-top: 0.2em;
}
.blog__side-new a{
  display: block;
  background-color: #e5e7ea;
  border-radius: 4px;
  padding: 0.5em;
  transition: background-color 0.8s cubic-bezier(.15, 1, .2, 1);
}
.blog__side-new a:hover{
  background-color: #d5dbe0;
}
.blog__side-new-time{
  color: rgb(33, 98, 163, 0.5);
}
.blog__side-new-ttl{
  margin-top: 0.2em;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
}






/* --------------- お問い合わせ --------------- */
.form__wrap{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.form__left{
  position: sticky;
  top: calc(1em + var(--header-height));
  width: 34.72223%;
}
.form__direct{
  margin-top: 4.5em;
}
.form__direct-list>li{
  display: flex;
  align-items: baseline;
}
.form__direct-list>li+li{
  margin-top: 0.8em;
}
.form__direct-ttl{
  width: 4.2em;
}
.form__direct-cont{
  flex: 1;
}
.form__direct-cont a{
  width: fit-content;
}
.form__right{
  width: 57.03125%;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .form__wrap{
    flex-direction: column;
  }
  .form__left{
    position: inherit;
    top: auto;
    width: 100%;
  }
  .form__right{
    width: 100%;
    margin-top: 2em;
    padding-top: 2.5em;
    border-top: 1px solid rgb(51, 51, 51, 0.2);
  }
  .form__direct{
    margin-top: 6em;
  }
}

/* ---- フォーム ---- */
.form__cont{
  line-height: 1.5;
}
.form__ttl{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  font-size: 1.11111em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 3.5em;
}
.form__cont fieldset + .form__ttl{
  margin-top: 0;
}
.form__ttl .hissu{
  font-size: 0.7em;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: rgb(33, 98, 163, 1);
  padding: 0.08em 0.5em;
  border-radius: 2px;
}
.form__cont .example{
  font-size: 0.88889em;
  letter-spacing: 0.1em;
  color: rgb(51, 51, 51, 0.5);
  margin-top: 0.6em;
}
.form__cont .note{
  font-size: 0.88889em;
  letter-spacing: 0.1em;
}
.form__row{
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.form__row-txt{
  font-weight: 600;
  padding-top: 0.8em;
}
.form__submit{
  margin-top: 6.5em;
  padding-top: 1.2em;
  border-top: 1px solid rgb(51, 51, 51, 0.2);
}
.form__submit-txt{
  font-size: 0.88889em;
  letter-spacing: 0.1em;
}
.form__submit-note{
  font-size: 0.88889em;
  letter-spacing: 0.08em;
  margin-top: 1em;
}
.form__cont input[type="text"],
.form__cont input[type="email"],
.form__cont input[type="tel"],
.form__cont input[type="number"],
.form__cont textarea{
  width: 100%;
  font-size: max(1.11111em,16px);
  background-color: #f3f4f5;
  padding: 0.8em 0.5em;
  margin-top: 0.7em;
  border: 1px solid #e6eaed;
  border-radius: 4px;
}
.form__cont input[type="number"]{
  width: 6em;
}
.form__cont .wpcf7-checkbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.8em;
  line-height: 1.35;
}
.form__cont .wpcf7-checkbox .wpcf7-list-item{
  width: 48%;
  margin: 0.8em 0 0 0;
}
.form__cont .wpcf7-checkbox label{
  display: flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}
.form__cont .wpcf7-checkbox input[type="checkbox"]{
  background-color: #f3f4f5;
  margin-right: 0.4em;
  cursor: pointer;
}
.form__cont input[type="submit"]{
  position: relative;
  width: 100%;
  font-size: max(1.11111em,16px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: underline;
  color: #fff;
  background-color: rgb(33, 98, 163, 1);
  margin-top: 2em;
  padding: 1.2em 2em;
  border-radius: 4px;
  background-image: url(../image/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 0.7em 0.7em;
  background-position: right 1.5em center;
}

@media (max-width: 1023px){
  .form__ttl{
    font-size: 1.07143em;
    margin-top: 3em;
  }
  .form__cont .example,
  .form__submit-note{
    margin-top: 0.5em;
  }
  .form__cont .example,
  .form__submit-txt,
  .form__submit-note{
    font-size: 0.92857em;
  }
  .form__cont input[type="text"],
  .form__cont input[type="email"],
  .form__cont input[type="tel"],
  .form__cont input[type="number"],
  .form__cont textarea{
    margin-top: 0.5em;
    padding: 0.6em 0.4em;
    border-radius: 2px;
  }
  .form__cont input[type="submit"]{
    margin-top: 1.5em;
    padding: 1.2em 1.5em;
    border-radius: 2px;
  }
}
@media (max-width: 767px){
}







/* --------------- 採用 --------------- */

/* ---- FV ---- */
@media (max-width: 1023px){
}
@media (max-width: 767px){
}


/* ---- 仕事内容 ---- */
@media (max-width: 1023px){
}
@media (max-width: 767px){
}



@media (max-width: 1023px){
}
@media (max-width: 767px){
}









/* --------------- animation --------------- */
.top-fv__bg,
.top-header .header__wrap,
.top-header .drawer__btn,
.top-header .float-menu,
.top-fv__scroll,
.open-fade01,
.open-fade02,
.open-fade03{
  opacity: 0;
}
.top-fv__copy span img{
  transform: translateY(120%);
}
.lower-fv__image img{
  transform: scale(1.05);
}
.image-zoom{
  overflow: hidden;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
}



@media (max-width: 1023px){
}
@media (max-width: 767px){
}