@charset "UTF-8";

/* ==========================================================================
   Loading
========================================================================== */
@view-transition { navigation: auto; }
#siteHeader { view-transition-name: siteHeader; }
#sidebar { view-transition-name: sidebar; }


/*  Animation
================ */
.iv { opacity: 0; transform: translateY(1.5rem); transition: .4s cubic-bezier(.39, .575, .565, 1); transition-property: opacity,transform; }
.iv.show { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Base
========================================================================== */
html {
  font-size: 81.3%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: auto!important;
}
@media (max-width: 389px) {
  html { font-size: 3.3419vw; }
}
@media (min-width: 576px) {
  html { font-size: min(2vw, 81.3%); }
}
@media (min-width: 768px) {
  html { font-size: min(1.5vw, 81.3%); }
}
@media (min-width: 992px) {
  html { font-size: calc(0.13vw + 75%); }
}
@media (min-width: 1200px) {
  html { font-size: calc(0.14vw + 75%); }
}

body {
  font-family: var(--default-font);
  line-height: 2;
  color: var(--black);
}
body.navOpen {
  height: 100%;
  overflow: hidden;
}


body:not(:has(#mv)) #container {
  padding-top: var(--header-height);
}

#main > *:last-child {
  padding-bottom: calc(var(--section-gy)*0.5);
}


/* ==========================================================================
   Layout
========================================================================== */
.section {
  margin-top: var(--section-gy);
  margin-bottom: var(--section-gy);
}
.section_L {
  margin-top: calc(var(--section-gy)*1.5);
  margin-bottom: calc(var(--section-gy)*1.5);
}
.section-padding {
  padding-top: calc(var(--section-gy)*0.4);
  padding-bottom: calc(var(--section-gy)*0.4);
}
.content {
  margin-top: calc(var(--section-gy)*0.6);
  margin-bottom: calc(var(--section-gy)*0.6);
}


.container { 
  max-width: min(var(--container-base-width), calc(91.429rem + var(--bs-gutter-x))); 
}
.container_S { 
  max-width: min(var(--container-base-width), calc(60rem + var(--bs-gutter-x))); 
}
.row { 
  row-gap: calc(var(--section-gy)*0.5);
}

.gap_XS > .row { --bs-gutter-x: 1rem; }

@media(min-width: 576px){
  .gap_XL > .row { --bs-gutter-x: 4rem; }
  .gap_L > .row { --bs-gutter-x: 2rem; }
}
@media(min-width: 992px){
  :root, .container, .row { 
    --bs-gutter-x: 2.857rem;
  }
  .gap_XL > .row { --bs-gutter-x: 6rem; }
  .gap_L > .row { --bs-gutter-x: 3rem; }
}
@media(min-width: 1200px){
  .container_M { 
    max-width: calc(83.333333% - var(--bs-gutter-x)); 
  }
  .gap_XL > .row { --bs-gutter-x: 10rem; }
  .gap_L > .row { --bs-gutter-x: 5rem; }
}

.g-0, .gx-0 { --bs-gutter-x: 0!important; }


@media (max-width: 991px) {
  ._pc { display: none; }
}
@media (min-width: 992px) {
  ._sp { display: none; }
}

hr { border-color: var(--border1); }
.bg-color1 hr,
.bg-gradation hr {  
  border-color: rgba(255,255,255,0.2);
}



/* ==========================================================================
   Header
========================================================================== */
/* layout */
#siteHeader {
  color: var(--color1);
  height: var(--header-height);
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
#siteHeader::before {
  content: '';
  background: transparent;
  box-shadow: none;
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  right: 0;
}
body:not(:has(#mv)) #siteHeader:not([class*="is-"]),
#siteHeader.is-fixed::before,
#siteHeader:has(._on)::before {
  background: var(--white);
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.10);
}

#siteHeader .inner-header {
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}


@media (min-width: 992px) {
  #siteHeader:has(._on)::before {
    background: var(--white);
  }
  #siteHeader .inner-header {
    font-size: min(.929rem, .929vw);
    padding: 0 2.857em;
  }
}


/* move */
#siteHeader.is-absolute {
  position: absolute; 
  transform: translateY(0);
}
#siteHeader.is-absolute.is-hidden { 
  transform: translateY(-101%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
#siteHeader.is-fixed {
  position: fixed;
  transform: translateY(0);
  transition: none;
}
#siteHeader.is-fixed.is-anim {
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
#siteHeader.is-fixed.is-hidden {
  transform: translateY(-101%);
}


/* white */
@media (max-width: 991px) {
  body:has(#mv) #siteHeader:not(.is-fixed):not(:has(._on)) .nav-btn {
    background: transparent;
  }
}
@media (min-width: 992px) {
  body:has(#mv) #siteHeader:not(.is-fixed):not(:has(._on)) {
    --color1: var(--white);
  }
  body:has(#mv) #siteHeader:not(.is-fixed):not(:has(._on)) .gNav nav > ul > li:has(.sub-menu) > a > span::after {
    background-image: var(--arrow-path-w);
  }
  body:has(#mv) #siteHeader:not(.is-fixed):not(:has(._on)) .gNav nav > ul.main-nav > li > a {
    transition-property: opacity;
  }
  body:has(#mv) #siteHeader:not(.is-fixed):not(:has(._on)) .gNav nav > ul.main-nav > li > a:hover {
    opacity: .6!important;
    color: inherit;
  }
  body:has(#mv) #siteHeader:not(.is-fixed):not(:has(._on)) .gNav nav .sub-nav li a.btn {
    transition-property: background;
  }
  body:has(#mv) #siteHeader:not(.is-fixed):not(:has(._on)) .gNav nav .sub-nav li a.btn:hover {
    background: rgba(255,255,255,0.2);
  }
}



/* logo */
#logo {
  margin: 0;
  flex: 0 0 24%;
  max-width: 35%;
  height: 70%;
  position: relative;
}
#logo .logo__inner {
  display: block;
  height: 100%;
  color: inherit;
  position: relative;
  background: url(../img/logo-w.png) no-repeat left center / contain;
}
#logo .logo__inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: inline-block;
  vertical-align: middle;
}
#logo .logo__inner img.logo-color {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
body:not(:has(#mv)) #logo .logo__inner img.logo-color,
#siteHeader.is-fixed #logo .logo__inner img.logo-color,
#siteHeader:has(._on) #logo .logo__inner img.logo-color {
  visibility: visible;
}
@media (min-width: 992px) {
  #logo {
    flex: 0 0 7.6em;
    max-width: 7.6em;
  }
}


/* ==========================================================================
   Global Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  line-height: 1.25;
  text-decoration: none;
  position: relative;
}




.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.gNav nav ul {
  display: flex;
  column-gap: 2em;
  margin: 0;
}
.gNav nav ul li a {
  display: flex;
  flex-direction: column;
}
.gNav nav ul li a > span {
  position: relative;
}
.gNav nav ul li a[data-en]::before {
  content: attr(data-en);
  display: block;
  font-size: .786em;
  font-weight: 400;
}
.gNav nav > ul > li > a {
  font-weight: 700;
  line-height: 1.5;
}


.gNav nav > ul > li:has(.sub-menu) > a > span {
  padding-right: 2em;
}
.gNav nav > ul > li:has(.sub-menu) > a > span::before {
  content: '';
  display: block;
  width: 1.5em;
  aspect-ratio: 1/1;
  border: 1px solid currentColor;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.gNav nav > ul > li:has(.sub-menu) > a > span::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: var(--arrow-path);
  background-size: 30% 30%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform .2s;
}
.gNav nav > ul > li:has(.sub-menu._on) > a > span::after {
  transform: translateY(-50%) rotate(-90deg);
}


/* Sub Navigation */
.gNav nav .sub-nav {
  align-items: center;
}
.gNav nav .sub-nav .btn {
  width: 100%;
}

/* Sub menu */
.gNav .sub-menu ul {
  display: block;
}

/* Child menu */
.gNav .sub-menu .child-menu dt {
  color: var(--color2);
  font-size: inherit;
  margin-bottom: .25em;
}

/* Foot menu */
.gNav .foot-menu li a {
  font-size: .923em;
}

/* ==========================================================================
   PC Global Navigation
========================================================================== */
@media(min-width: 992px){
  .gNav {
    display: block !important;
  }
  .gNav nav,
  .gNav nav > ul {
    column-gap: min(1.5em, 4vw);
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  .gNav nav > ul.main-nav > li > a {
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: .05em;
    text-align: center;
    transition-property: color, opacity;
    opacity: 1!important;
    position: relative;
  }
  .gNav nav > ul.main-nav > li > a:hover {
    color: var(--color2);
  }
  .gNav nav > ul > li:has(.sub-menu) > a > span {
    padding-right: .75em;
  }
  .gNav nav > ul > li:has(.sub-menu) > a > span::before {
    display: none;
  }
  .gNav nav > ul > li:has(.sub-menu) > a > span::after {
    width: .35em;
    height: .5em;
    background: currentColor;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  }
  .gNav nav ul li a[data-en]::before {
    display: none;
  }

  .gNav .sub-menu {
    font-size: 0.923em;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border1);
    padding: 2.5em 0 3.5em;
    position: absolute;
    top: var(--header-height);
    left: 0;

    display: block!important;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition-property: max-height, opacity;
  }
  .gNav .sub-menu._on {
    pointer-events: auto;
    max-height: 1000px;
    opacity: 1;
  }
  .gNav .sub-menu > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 4%;
    row-gap: 1em;
    max-width: 92%;
    padding: 0 1.5rem;
    margin: 0 auto;
  }
  .gNav .sub-menu ul + ul {
    margin-top: 1em;
  }
  .gNav .sub-menu ul li {
    flex-basis: 100%;
  }
  .gNav .sub-menu ul li:not(:has(dl)) {
    flex: 0 0 calc((100% - 4%*2)/5);
  }
  .gNav .sub-menu ul li a {
    line-height: 1.5;
    padding: 1.25em 0;
    border-bottom: 1px solid var(--border1);
  }
  .gNav .sub-menu ul li a > span {
    padding-left: 1.25em;
    transition: padding .2s;
  }
  .gNav .sub-menu ul li a > span::before {
    content: '';
    display: block;
    width: 1.5em;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: currentColor;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-30%,-50%) scale(.3);
    transition: transform .2s;
  }
  .gNav .sub-menu ul li a > span::after {
    content: '';
    display: block;
    width: 1.5em;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: var(--arrow-path-w);
    background-size: 30% 30%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transform: translate(-30%,-50%);
    transition: opacity .2s, transform .2s;
    opacity: 0;
  }
  .gNav .sub-menu ul li a:hover > span {
    padding-left: 2em;
  }
  .gNav .sub-menu ul li a:hover > span::before {
    transform: translate(0,-50%) scale(1);
  }
  .gNav .sub-menu ul li a:hover > span::after {
    transform: translate(0,-50%);
    opacity: 1;
  }
  .gNav .sub-menu > ul > li.top-menu > a {
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: .5em;
    padding: .5em 0;
    font-weight: 700;
    border-bottom: 0;
  }
  .gNav .sub-menu > ul > li.top-menu > a > span {
    display: inline-block;
    font-size: 1.667em;
    padding: 0 1.75em 0 0;
  }
  .gNav .sub-menu > ul > li.top-menu > a[data-en]::before {
    content: attr(data-en);
    display: block;
    font-size: inherit;
  }
  .gNav .sub-menu > ul > li.top-menu > a > span::before {
    left: auto;
    right: 0;
    transform: translateY(-45%) scale(.7);
  }
  .gNav .sub-menu > ul > li.top-menu > a > span::after {
    background-size: 25% 25%;
    left: auto;
    right: 0;
    transform: translateY(-45%);
    opacity: 1;
  }
  .gNav .sub-menu > ul > li.top-menu > a:hover {
    color: var(--color2);
  }
  .gNav .sub-menu .child-menu {
    margin-top: 1.5em;
    display: flex;
    gap: var(--bs-gutter-x);
  }
  .gNav .sub-menu .child-menu dl {
    flex: 0 0 calc((100% - var(--bs-gutter-x)*4)/5);
  }

  .gNav nav > ul.sub-nav {
    column-gap: min(.75em, 2vw);
  }
  .gNav nav .sub-nav li a.btn {
    width: 12.5em;
    justify-content: center!important;
    text-align: center;
    padding: .75em 10%;
    border-radius: 3em;
    font-size: inherit;
    color: inherit;
  }
  .gNav nav .sub-nav li a.btn:hover {
    background: var(--color1);
    border-color: var(--color1);
    color: var(--white);
  }
  .gNav nav .sub-nav li a.btn::before,
  .gNav nav .sub-nav li a.btn::after {
    display: none;
  }

  .nav-btn {
    display: none;
  }
}

@media (min-width: 1200px) {
  .gNav .sub-menu > ul {
    max-width: min(var(--container-base-width), calc(91.429rem + var(--bs-gutter-x)));
  }
}


/* ==========================================================================
   SP Global Navigation
========================================================================== */
@media(max-width: 991px){
  .gNav{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .gNav__inner {
    width: 100%;
    height: 100vh;
    background: var(--white);
    color: var(--black);
    position: absolute;
    top: 0;
    right: 0;
    
    pointer-events: none;
    opacity: 0;
    transition: .4s;
    transition-property: opacity;
  }
  .gNav nav {
    display: block;
    height: 100%;
    padding: var(--header-height) 0 calc(var(--header-height)/2);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(1em);
    transition: .4s;
    transition-property: opacity, transform;
  }
  .gNav nav > ul {
    max-width: min(29em, 88%);
    margin: 0 auto 3em;
    display: block;
  }
  .gNav nav ul.main-nav {
    color: var(--color1);
  }
  .gNav nav ul.main-nav > li {
    border-bottom: 1px solid var(--border1);
  }
  .gNav nav ul.main-nav > li > a {
    font-size: 1.077em;
    padding: 1.125em 0;
    row-gap: .5em;
  }
  .gNav nav ul.main-nav > li > a > span {
    position: static;
  }

  .gNav .sub-menu {
    padding: 0 0 1.125em;
    display: none;
  }
  .gNav .sub-menu > ul > li > a {
    font-size: .923em;
    padding: .75em 0;
  }
  .gNav .sub-menu > ul > li > a[data-en]::before {
    display: none;
  }
  .gNav .sub-menu ul li a > span {
    padding-left: 1.5em;
  }
  .gNav .sub-menu ul li a > span::before {
    content: '';
    display: block;
    width: .5em;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: currentColor;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: transform .2s;
  }
  .gNav .sub-menu > ul ul > li > a {
    font-size: .846em;
  }
  .gNav .sub-menu .child-menu {
    padding-left: 1.5em;
  }
  .gNav .sub-menu .child-menu dl {
    margin-top: .5em;
  }
  .gNav .sub-menu .child-menu dl dd {
    padding-bottom: .375em;
  }
  .gNav .sub-menu .child-menu dl ul {
    display: flex;
    flex-wrap: wrap;
  }
  .gNav .sub-menu .child-menu dl ul li {
    width: 100%;  
  }
  .gNav .sub-menu .child-menu dl ul.sales-outsourcing li {
    width: calc(50% - 1em);
  }
  .gNav .sub-menu .child-menu dl ul li a {
    padding: .75em 0;
  }
  .gNav .sub-menu .child-menu dl ul li a > span {
    padding-left: 1em;
    white-space: nowrap;
  }
  .gNav .sub-menu .child-menu dl ul li a > span::before {
    top: .625em;
  }
  
  .gNav nav ul.sub-nav {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  .gNav nav ul.sub-nav li {
    width: 100%;
  }
  .gNav nav ul.sub-nav li a {
    width: 100%;
  }

  .gNav .foot-menu {
    max-width: min(29em, 88%);
    margin: 2em auto 0;
  }

  /* OPEN */
  .gNav._on .gNav__inner{
    opacity: 1;
    pointer-events: auto;
    transition: .6s;
  }
  .gNav._on nav {
    opacity: 1;
    transform: translateX(0);
    transition: .4s .2s;
  }

  /* Nav Btn */
  .nav-btn {
    background: var(--color1);
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--header-height);
    height: var(--header-height);
    padding: 15px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transition: .5s;
  }
  .nav-btn i{
    display: block;
    background: currentColor;
    width: 30px;
    height: 1px;
    position: absolute;
    right: 0;
    left: 0;
    margin: -0.5px auto 0;
    transition: transform .3s;
  }
  .nav-btn i:nth-of-type(1){
    top: calc(50% - 5px);
  }
  .nav-btn i:nth-of-type(2){
    top: calc(50% + 5px);
  }
  .nav-btn._on i:nth-of-type(1){
    top: 50%;
    transform: rotate(45deg);
  }
  .nav-btn._on i:nth-of-type(2){
    top: 50%;
    transform: rotate(135deg);
  }

}

/* ==========================================================================
   Sidebar
========================================================================== */
.sidebar > * {
  margin-bottom: 1.25em;
}
.sidebar .post-list ul li {
  border-bottom: 1px solid var(--border1);
}
.sidebar .post-list ul li .card {
  font-size: 0.929em;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 1.25em;
  padding: 1.25em 0;
}
.sidebar .post-list ul li .card .card-img {
  flex: 0 0 11em;
  margin-bottom: 0;
  aspect-ratio: 73 / 46;
}
.sidebar .post-list ul li .card .card-body {
  align-self: center;
}
.sidebar .post-list ul li .card .ttl {
  font-size: 1em;
}

/* ==========================================================================
   other links
========================================================================== */
/* company */
aside.other-links {
  border-top: 1px solid var(--border1);
}

/* service */
.service-menu {
  border-bottom: 1px solid var(--border1);
  margin-bottom: calc(1.75rem + var(--section-gy));
  position: relative;
}
.service-menu .service-menu-ttl {
  font-family: var(--font1);
  font-size: 1.143em;
  font-weight: 700;
  line-height: 1rem;
  padding: 2rem;
  border-bottom: 1px solid var(--border1);
}
.service-menu .service-menu-ttl span {
  display: block;
  line-height: 1;
}
.service-menu .service-menu-body {
  width: 100%;
}
.service-menu .splide,
.service-menu .splide__track,
.service-menu .splide__list {
  height: 100%;
}
.service-menu .splide__arrows {
  position: absolute;
  top: 100%;
  right: 2rem;
  --color1: var(--white);
}

.service-menu .splide__slide {
  width: min(34em, calc(100vw + 1px));
}
.service-menu .child-menu {
  height: 100%;
  padding: 2rem 2rem 1rem;
  border-right: 1px solid var(--border1);
  font-size: 0.846em;
}
.service-menu .child-menu .child-menu-header {
  height: 20em;
}
.service-menu .child-menu .child-menu-header .en_ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5em;
}
.service-menu .child-menu .child-menu-header ._num::before {
  font-size: 1.455em;
  font-weight: 700;
  color: inherit;
}
.service-menu .child-menu .child-menu-header .en_ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5em;
}
.service-menu .child-menu .child-menu-header .ttl {
  font-size: 1.636em;
  line-height: 1.75;
  padding-right: 3.5em;
  background-repeat: no-repeat;
  background-position: right 0% top .5em;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2244%22%20viewBox%3D%220%200%2050%2044%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M37.5%2044H12.5L25%2022L37.5%2044Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M25%2022H0L12.5%2044L25%2022Z%22%20fill%3D%22white%22%20fill-opacity%3D%220.5%22%2F%3E%20%3Cpath%20d%3D%22M25%2022H0L12.5%200L25%2022Z%22%20fill%3D%22white%22%20fill-opacity%3D%220.5%22%2F%3E%20%3Cpath%20d%3D%22M50%2022H25L37.5%200L50%2022Z%22%20fill%3D%22white%22%20fill-opacity%3D%220.8%22%2F%3E%20%3Cpath%20d%3D%22M37.5%200H12.5L25%2022L37.5%200Z%22%20fill%3D%22white%22%20fill-opacity%3D%220.8%22%2F%3E%20%3Cpath%20d%3D%22M50%2022H25L37.5%2044L50%2022Z%22%20fill%3D%22white%22%20fill-opacity%3D%220.7%22%2F%3E%20%3C%2Fsvg%3E');
  background-size: 2.75em;
}
.service-menu .child-menu dt {
  font-family: var(--font1);
  font-size: 0.846rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color2);
  margin-bottom: .5em;
}
.service-menu .child-menu dd ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.091em;
}
.service-menu .child-menu dd ul li {
  width: 100%;
}
.service-menu .child-menu dd ul li a {
  display: block;
  line-height: 1.5;
  padding: 1.5em 0;
  border-bottom: 1px solid var(--border1);
}
.service-menu .child-menu dd ul li a > span {
  display: block;
  padding-left: 1.25em;
  white-space: nowrap;
  transition: padding .2s;
  position: relative;
}
.service-menu .child-menu dd ul li a > span::before {
  content: '';
  display: block;
  width: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-30%,-50%) scale(.3);
  transition: transform .2s;
}
.service-menu .child-menu dd ul li a > span::after {
  content: '';
  display: block;
  width: 1.5em;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: var(--arrow-path);
  background-size: 30% 30%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translate(-30%,-50%);
  transition: opacity .2s, transform .2s;
  opacity: 0;
}
.service-menu .child-menu dd ul li a:hover > span {
  padding-left: 2em;
}
.service-menu .child-menu dd ul li a:hover > span::before {
  transform: translate(0,-50%) scale(1);
}
.service-menu .child-menu dd ul li a:hover > span::after {
  transform: translate(0,-50%);
  opacity: 1;
}

/*.service-menu .child-menu dd ul.sales-outsourcing li {
  width: 50%;
}
.service-menu .child-menu dd ul.sales-outsourcing li:nth-last-child(-n+2) a {
  border-bottom: 0;
}*/
.service-menu .child-menu dd ul.sales-consulting li:last-child a {
  border-bottom: 0;
}

@media(min-width: 992px){
  .service-menu {
    display: flex;
    border-top: 1px solid var(--border1);
  }
  .service-menu .service-menu-ttl {
    width: 5rem;
    border-bottom: 0;
    border-right: 1px solid var(--border1);
  }
  .service-menu .service-menu-ttl span {
    display: block;
    line-height: 1;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
  }
  .service-menu .service-menu-body {
    width: calc(100% - 5rem);
  }
  .service-menu .splide__slide {
    width: 28.5em;
  }
  .service-menu .child-menu {
    font-size: 0.786em;
  }
}



/* ==========================================================================
   Footer Contact
========================================================================== */
#footer-contact {
  background: var(--color1) url(../img/contact_bg_v.jpg) no-repeat 50% 50% / cover;
}
@media(max-width: 575px){
  #footer-contact {
    --section-gy: 5rem;
    text-align: center;
  }
  #footer-contact h2 {
    transform: translateX(.35em);
  }
}
@media(min-width: 576px){
  #footer-contact {
    background-image: url(../img/contact_bg.jpg);
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}
#siteFooter ul li a:hover {
  color: var(--color2);
}
#siteFooter .inner-footer {
  padding-top: var(--section-gy);
  padding-bottom: var(--section-gy);
  color: var(--color1);
}
#siteFooter .footer-info p {
  font-size: .846em;
}
#siteFooter #footer-logo {
  width: 12em;
  margin-bottom: 1.5rem;
}
#siteFooter .logo__inner {
  display: inline-block;
  color: inherit;
}

#siteFooter .footer-bottom {
  border-top: 1px solid var(--border1);
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: .923em;
}
#siteFooter .footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 1em;
  column-gap: 1.5em;
}
#siteFooter .foot-menu {
  display: flex;
  gap: 1.5em;
  list-style-type: none;
}
#siteFooter .copyright {
  text-align: center;
  font-size: .833em;
}
@media(max-width: 576px){
  #siteFooter .inner-footer {
    padding-bottom: 2em;
  }
}
@media(min-width: 768px) and (max-width: 991px){
  #siteFooter .footer-info {
    display: flex;
    gap: calc(var(--section-gy)*0.5);
    align-items: center;
  }
  #siteFooter #footer-logo {
    margin-bottom: 0;
  }
}
@media(min-width: 992px){
  #siteFooter {
    font-size: .929em;
  }
}


/* ==========================================================================
   Footer Navigation
========================================================================== */
.fNav {
  width: 100%;
}
.fNav ul {
  flex-direction: column;
  column-gap: 2em;
}
.fNav ul li a {
  padding: .375em 0;
}
.fNav nav > ul {
  border-top: 1px solid var(--border1);
  padding-top: 2em;
  row-gap: .75em;
}
.fNav nav > ul > li > a {
  padding: .5em 0;
  display: flex;
  flex-direction: column;
  row-gap: .5em;
}
.fNav nav > ul > li > a[data-en]::before {
  content: attr(data-en);
  font-size: .846em;
  font-weight: 700;
  display: block;
}

@media(min-width: 768px){
  .fNav nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: calc(var(--section-gy)*0.5);
  }
  .fNav nav > ul {
    flex: 1 1 50%;
    flex-wrap: nowrap;
  }
  .fNav nav > ul:nth-of-type(2) {
    flex: 1 1 15%;
  }
  .fNav nav > ul > li {
    flex-basis: 100%;
  }
  .fNav nav > ul > li > .sub-menu {
    margin-top: .75em;
    column-count: 2;
    column-gap: 2rem;
  }
  .fNav nav > ul > li > .sub-menu dl {
    margin-bottom: 1em;
    break-inside: avoid; /*途中改行禁止*/
  }
  .fNav nav > ul > li > .sub-menu dl dt {
    font-size: inherit;
    font-weight: 700;
  }
  .fNav nav > ul > li > .sub-menu dl dd > ul {
    display: block;
  }
}
