@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;700;900&display=swap');

:root {
  --gradation-main-vertical: linear-gradient(180deg, rgba(155, 20, 155, 1) 0%, rgba(62, 20, 155, 1) 100%);
  --gradation-main-diagonal: linear-gradient(110deg, rgba(155, 20, 155, 1) 0%, rgba(62, 20, 155, 1) 100%);
  --gradation-main-horizontal: linear-gradient(90deg, rgba(155, 20, 155, 1) 0%, rgba(62, 20, 155, 1) 100%);
  --color-main: #9B149B;
}

html {
  font-size: 62.5%;
  line-height: 1.65;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Zen Kaku Gothic New', sans-serif !important;
  color: #222222;
  margin-left: 0%;
  position: relative;
}

a:hover {
  opacity: 0.85;
  transition: .1s;
}

.outer {
  padding: 0 5%;
  position: relative;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.wrap {
  flex-wrap: wrap;
}

.pc {
  display: revert;
}

.header__right.pc {
  display: flex;
}

.sp {
  display: none;
}

.pc--inline {
  display: inline;
}

.sp--inline {
  display: none;
}

.outer__grid {
  height: 100%;
  position: absolute;
  width: 100%;
}

.outer__grid span {
  border-right: 1px solid #EFEFEF;
  height: 100%;
  width: 22.5%;
}

.inner {
  margin: 0 auto;
  border-left: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF;
}

.inner__contents {
  margin: 0 auto;
}



@media screen and (min-width: 834px) and (max-width: 1024px) {
  .outer {
    padding: 0 4%;
  }

  .inner {
    width: 768px;
  }

  .outer__grid span {
    border-right: 1px solid #EFEFEF;
    height: 100%;
    width: 50%;
  }

  .outer__grid-sp {
    display: none;
  }

  .outer__grid {
    width: 92%;
  }

  .pc {
    display: none;
  }

  .header__right.pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc--inline {
    display: none;
  }

  .sp--inline {
    display: block;
  }

    .inner .inner__contents .mainVisual .mainVisual__right:after {
        width: 50%;
        height: 100%;
        top: 50%;
    }

}

@media screen and (max-width: 833px) {

  .pc {
    display: none;
  }

  .header__right.pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc--inline {
    display: none;
  }

  .sp--inline {
    display: block;
  }

  .outer {
    padding: 0 4%;
  }

  .outer__grid-sp {
    display: none;
  }

  .outer__grid span {
    border-right: 1px solid #EFEFEF;
    height: 100%;
    width: 50%;
  }

  .outer__grid {
    width: 92%;
  }
  .inner .inner__contents .mainVisual .mainVisual__right:after {
    width: 50%;
    height: 100%;
    top: 50%;
}
}


/* header */

.header {
  font-size: 1.05vw;
  font-weight: 500;
  border-bottom: 2px solid var(--color-main);
  position: fixed;
  width: 100%;
  z-index: 103;
  background: #fff;
  top: 0;
}

.header .header__inner {
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 1;
}

.header .header__logo {
  padding: 24px 20px;
  width: 18%;
  margin-right: auto;
}

.header .header__logo img {
  width: 100%;
  float: left;
}

.header .header__nav ul {
  align-items: center;
}
.header .header__nav > ul {
  background: #fff;
}

.header .header__inner li.header__nav--menu>a::after {
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/header_arrow.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  margin: .4em 0 0 .4em;
  width: 0.8vw;
  height: 0.8vw;
}

.header .header__inner li.header__nav--menuRight>a::after {
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/header_arrow.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  margin: .4em 0 .3em .4em;
  width: 0.8vw;
  height: 0.8vw;
  transform: rotate(-90deg);
}

.header .header__inner li.header__nav--menu>a {
  padding: 1.6vw 11px;
  align-items: center;
}
.header .header__inner li.header__nav--menu:nth-of-type(3) .header__navCard::before{
  content:"";
  display: block;
  width:23%;
  order:1;
}
.header .header__inner li.header__nav--menu:nth-of-type(3) .header__navCard::after{
  content:"";
  display: block;
  width:23%;
  order:1;
}
.header .header__nav--child {
  border-top: 2px solid var(--color-main);
  ;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  color: #333;
  background-color: rgba(244, 244, 244, .9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  visibility: hidden;

}

.header .header__nav--menu:hover .header__nav--child {
  visibility: visible;
  animation-duration: 0.2s;
  animation-name: fade-in;
}

.header .header__nav {
  display: flex;
}
.header .header__navCard li {
  position: relative;
  border: 1px solid transparent;
  outline: none;
}
.header .header__navCard li a::before,
.header .header__navCard li a::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  content: '';
  transition: all .2s;
}
.header .header__navCard li a::before {
  border-top: 1px solid #9b149b;
  border-bottom: 1px solid #9b149b;
  transform: scale(0, 1);
}
.header .header__navCard li a::after {
  border-right: 1px solid #9b149b;
  border-left: 1px solid #9b149b;
  transform: scale(1, 0);
}
.header .header__navCard li a:hover {
  color: #9b149b;
}
.header .header__navCard li a:hover::after,
.header .header__navCard li a:hover::before {
  transform: scale(1);
}

/* .topMainvisual__copy {
	background-image:linear-gradient(90deg, rgba(154, 20, 155,0.2), rgba(111, 20, 155,0.2))
} */

@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  50% {
    visibility: visible;
    opacity: 0.5;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

.header .header__navTitle {
  width: 30%;
  padding: 5% 2% 5% 10%;
  text-align: left;
}

.header .header__navTitle h3 {
  position: relative;
  font-size: 1.4vw;
  padding-left: 24px;
}

.header .header__navTitle h3:before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(155, 20, 155, 1) 51%, rgba(155, 20, 155, 1) 100%);
  width: 4px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -3px;
  content: "";
}

.header .header__navTitle h3:after {
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/arrow_upperright.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  margin: 0px 0 6px 20px;
  width: 0.7vw;
  height: 0.7vw;
}

.header .header__navTitle p {
  margin-top: 40px;
  line-height: 1.7em;
  font-size: 0.8vw;
}

.header .header__navCard {
  width: 60%;
  justify-content: space-between;
  padding: 4% 0;
  font-size: 0.8vw;
}

.header .header__navCard p::after {
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/arrow_right.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 1vw;
  height: 1vw;
}
.header .header__navCard .other_tab p::after{
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/icn_arrow-other.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 1vw;
  height: 1vw;
}

.header .header__navCard li {
  width: 23%;
  margin-bottom: 3%;
  background: #fff;
}

.header .header__navCard::after {
  content: "";
  display: block;
  width: 23%;
}

.header .header__navCard li img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
}

.header .header__navCard li p {
  justify-content: space-between;
  align-items: center;
  padding: 6%;
}

.header .header__navCardList--long {
  text-align: left;
}

.header .header__navCardList--long p {
  padding: 1.2% 6% !important;
}

@media screen and (min-width: 1440px) {
  .header .header__navCardBr {
    display: none;
  }
}

.header .header__right {
  width: 20%;
}

.header .header__right a {
  align-items: center;
  /* width: 50%; */
  justify-content: center;
}

.header .header__right a p {
  margin: 4px 0;
}

.header .header__right a:nth-of-type(1) {
  color: var(--color-main);
}
.header .header__right > a{
  background: linear-gradient(90deg, #9a149b, #6f149b);
}

.header .header__right a:nth-of-type(2) {
  background: linear-gradient(90deg, #9a149b, #6f149b);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .header .header__logo {
    width: 64%;
    padding: 24px 0;
  }

  .header .header__nav {
    display: none;
  }

  .header .header__right {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 1.6rem;
  }

  .header .header__right a:nth-of-type(1) {
    background: #FFEAFF;
  }

  .header .header__right img {
    margin-right: 10px;
    width: 1.6rem;
  }

  .header .header__right .header__right__recruit,
  .header .header__right .header__right__inquiry {
    display: flex;
    padding: 1.5rem;
  }

  /* .header__sitemapinner.inner09 {
    font-size: 20px;
    width: 100%;
    display: inline-block;
    text-align: left !important;
    margin-bottom: 0;
    border-bottom: 2px solid #fff;
    pointer-events: auto;
    font-weight: bold;
}

  .header__sitemapinner.inner09 a {
    width: 100%;
    display: block;
    height: 100%;
    padding: 20px 3%;
}
.header__sitemapinner.inner09 a::before{
  border-top: 10px solid #fff;
  border-bottom: 10px solid var(--color-main);
  height: 5px;
  width: 3px;
  margin-right: 15px;
  content: "";
    display: inline-block;
} */


}


.header--sp {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.header__sitemap {
  display: grid;
  grid-template-columns: repeat(5, 20%);
  gap: 2vw 0;
  margin: 0 auto;
}

.header__sitemapinner {
  width: 100%;
}

.header__sitemapinner.inner08,
.header__sitemapinner.inner09,
.header__sitemapinner.inner10,
.header__sitemapinner.inner11 {
  grid-row-start: 1;
  grid-row-end: 4;
}

.header__sitemapinner input {
  display: none;
}

.header__sitemapinner label {
  font-size: 1.04vw;
  position: relative;
  margin-bottom: 0.88vw;
  font-weight: bold;
  pointer-events: none;
}

.header__sitemapinner label::after {
  content: "";
  display: inline-block;
  margin-right: 0.625vw;
}

/*.header__sitemapinner label::before {
  border-top: 0.6vw solid #fff;
  border-bottom: 0.6vw solid var(--color-main);
  height: 1.2vw;
  width: 3px;
}*/

.header__sitemapinner li {
  font-size: 0.73vw;
  text-indent: -0.9375vw;
  margin-left: 1.71875vw;
  margin-top: 0.57vw;
  line-height: 1.5;
}

.header__sitemapinner.other li {
  margin-left: 0.9375vw;
  text-indent: -0.78125vw;
}

.header__sitemapinner.inner14 li {
  margin-left: 0.9375vw;
  text-indent: -0.78125vw;
}

.header__sitemapinner li a::before {
  content: "";
  display: inline-block;
  width: 0.42vw;
  height: 0.42vw;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  transform: rotate(-45deg);
  margin-right: 0.5vw;
}

.header__sitemapinner li a.link_other::after {
  content: "";
  display: inline-block;
  width: 0.73vw;
  height: 0.73vw;
  background-image: url(/cms/wp-content/themes/japax/assets/img/common/Icn_arrow-other-k.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 0.42vw;
}

.header__sitemapinner.other li a::before {
  width: 0.5rem;
  border-right: none;
  border-bottom: 1px solid var(--color-main);
  transform: rotate(0deg);
  margin-right: 0.52vw;
}


@media screen and (max-width: 1024px) {
  .sp {
    display: revert;
  }
  .footer {
    margin-bottom: 17%;
    }
  .footer__left {
    width: 100%;
    order: 2;
    padding-top: 45px;
  }

  .footer__box {
    width: 92%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4%;
    padding-right: 4%;
  }

  .footer__logo {
    width: 100%;
    max-width: 352px;
  }

  .footer__company {
    margin-top: 30px;
  }

  .footer__company-name {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .footer__company-adress {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 15px;
  }

  .footer__company .flex {
    display: flex;
    margin-top: 15px;
    justify-content: flex-start;
  }

  .footer__company-tel,
  .footer__company-fax {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    margin-top: 0;
    margin-right: 30px;
  }

  .footer__company-tel::before,
  .footer__company-fax::before {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .footer__btn-contact {
    margin-top: 40px;
    width: 100%;
    text-align: left;
  }

  .footer__btn-contact a {
    font-size: 16px;
    background: var(--gradation-main-horizontal);
    padding: 15px 0 15px 75px;
  }

  .footer__btn-contact::before,
  .footer__btn-contact::after {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer__btn-contact::before {
    background-image: url(/cms/wp-content/themes/japax/assets/img/common/header_mail.svg);
    width: 33px;
    height: 25px;
    left: 15px;
  }

  .footer__btn-contact::after {
    background-image: url(/cms/wp-content/themes/japax/assets/img/common/icn_arrow-up-right-w.svg);
    width: 15px;
    height: 15px;
    right: 20px;
    transform: translateY(-50%);
  }

  .header__sitemap {
    grid-template-columns: 1fr;
    gap: 0;
    background-color: #EFEFEF;
  }

  .header__sitemapinner {
    position: relative;
  }

  .header__sitemapinner input~ul {
    max-height: 0;
    background-color: #fff;
    overflow: hidden;
    animation-duration: 0.3s;
    animation-name: close;
    animation-direction: alternate;
    animation-fill-mode: both;
  }

  @keyframes close {
    0% {
      max-height: 100vh;
    }

    100% {
      max-height: 0vh;
    }
  }

  .footer .footer__sitemapinner li, .header__sitemapinner li {
    margin-left: 5.71875vw !important;
    }

  .header__sitemapinner input:checked~ul {
    height: auto;
    display: revert;
    animation-duration: 1s;
    animation-name: open;
    animation-direction: alternate;
    animation-fill-mode: both;
  }

  @keyframes open {
    0% {
      max-height: 0;
    }

    100% {
      max-height: 100vh;
    }
  }

  .header__sitemapinner label {
    font-size: 20px;
    width: 100%;
    display: inline-block;
    text-align: left;
    padding: 20px 3%;
    margin-bottom: 0;
    border-bottom: 2px solid #fff;
    pointer-events: auto;
  }

/*  .header__sitemapinner label::before {
    border-top: 10px solid #fff;
    border-bottom: 10px solid var(--color-main);
    height: 5px;
    width: 3px;
    margin-right: 15px;
  }*/

  .header__sitemapinner label::after {
    content: "";
    display: inline-block;
    border: 2px solid #ADADAD;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    transition: .3s;
    margin-right: 0;
  }
  .header__sitemapinner label a {
    display: inline-block;
    padding-left: .75em;
  }
  .header__sitemapinner input~label span.cercle::before,
  .header__sitemapinner input~label span.cercle::after {
    content: "";
    display: inline-block;
    background-color: #adadad;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    transition: .3s;
  }

  .header__sitemapinner input~label span.cercle::before {
    width: 2px;
    height: 12px;
    top: 50%;
    right: calc(4% + 11px);
  }

  .header__sitemapinner input:checked~label span.cercle::before {
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
  }

  .header__sitemapinner input~label span.cercle::after {
    width: 12px;
    height: 2px;
    right: calc(4% + 6px);
  }

  .header__sitemapinner input:checked~label span.cercle::after {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
  }

  .header__sitemapinner.inner08,
  .header__sitemapinner.inner09,
  .header__sitemapinner.inner10,
  .header__sitemapinner.inner11,
  .header__sitemapinner.inner12,
  .header__sitemapinner.inner13,
  .header__sitemapinner.inner14 {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: auto;
    grid-row-end: auto;
    text-align: center;
  }

  .header__sitemapinner li,
  .header__sitemapinner.other li,
  .header__sitemapinner.inner14 li {
    font-size: 14px;
    margin-top: 20px;
    text-indent: 0px;
  }

  .header__sitemapinner li:last-child {
    margin-bottom: 20px;
  }

  .header__sitemapinner li a {
    display: flex;
    align-items: center;
  }

  .header__sitemapinner li a::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
    transform: rotate(-45deg);
    margin-right: 10px;
  }

  .header__sitemapinner.other li a::before {
    width: 7px;
    border-right: none;
    transform: rotate(0deg);
    margin-right: 10px;
    height: 1px;
  }

  .header__sitemapinner li a.link_other::after {
    width: 14px;
    height: 14px;
    margin-left: 10px;
  }





  .header__hamburger.sp {
    display: block;
    width: 7vw;
    height: 7vw;
  }

  .header__inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }

  .header__title img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .header__nav {
    position: fixed;
    overflow-y: scroll;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: ease .4s;
    opacity: 0;
    background-color: rgba(244, 244, 244, .9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: none;
    visibility: hidden;
    padding-bottom: 200px;
    z-index: 1000;
  }



  @media screen and (min-width: 960px) {
    .nav__items {
      width: 100%;
      display: flex;
      align-items: center;
      height: initial;
      justify-content: space-between;
    }
  }

  .nav-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }

  @media screen and (min-width: 960px) {
    .nav-items {
      position: inherit;
      top: 0;
      left: 0;
      transform: translate(0, 0);

    }
  }

  @media screen and (min-width: 960px) {
    .nav-items__item a {
      margin-bottom: 0;
    }
  }

  .header__hamburger {
    width: 48px;
    height: 100%;
  }

  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }

  @media screen and (min-width: 960px) {
    .hamburger {
      display: none;
    }
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-main);
    position: relative;
    transition: ease .4s;
    display: block;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 3px 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }

  html.active {
    overflow: hidden;
  }

  .header__nav.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(20deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: -5px;
    transform: rotate(-20deg);
  }
}









/* topRecruitment */
.topRecruitment {
  margin-top: 10%;
  position: relative;
  padding-bottom: 10%;
}

.topRecruitment .topRecruitment__image {
  width: 126%;
  margin-left: -13%;
  background: url(/cms/wp-content/themes/japax/assets/img/top/recruitment_image.jpg);
  background-size: cover;
  color: #fff;
}

.topRecruitment .topRecruitment__title h2 {
  margin: 0 auto;
  font-size: 2.5vw;
  font-weight: 500;
  background: url(/cms/wp-content/themes/japax/assets/img/top/recruitment_title.png) no-repeat center;
  background-size: contain;
  padding: 12% 0;
  text-align: center;
}

.topRecruitment .topRecruitment__title p {
  font-family: 'Zen Old Mincho', serif;
  text-align: center;
}

.topRecruitment .topRecruitment__title p:nth-of-type(1) {
  margin-top: -8%;
  padding-bottom: 8%;
  font-size: 2.2vw;
}

.topRecruitment .topRecruitment__title p:nth-of-type(2) {
  margin-top: -7%;
  padding-bottom: 12%;
  font-size: 2.5vw;
}

.topRecruitment .recruitment__boxImage {
  width: 100%;
}

.topRecruitment .recruitment__boxImage img {
  width: 100%;
  margin-top: -9%;
}

.topRecruitment .topRecruitment__box a {
  align-items: center;
}

.topRecruitment .topRecruitment__btn {
  width: calc(90vw / 4);
  padding: 2% 1px 0% 2%;
  background: #fff;
  float: right;
  margin-top: -8%;
  position: relative;
  margin-right: -1px;
  font-weight: 500;
}

.topRecruitment .topRecruitment__btn a {
  font-size: 1.6vw;
  padding: 7%;
  width: 100%;
  color: #fff;
  background: var(--gradation-main-vertical);
  text-align: center;
  float: right;
  position: relative;
}

.topRecruitment .topRecruitment__btn p:after {
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/arrow_external.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  margin: 16px 0 0px 20px;
  width: 2.2vw;
  height: 2.2vw;
  float: right;
}

.topRecruitment .topRecruitmentCareer__btn p:after {
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/arrow_upperrightWhite.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  margin: 16px 0 0px 20px;
  width: 2vw;
  height: 2vw;
  float: right;
}


@media screen and (max-width: 1024px) {
  .topRecruitment {
    margin-top: 24%;
    padding-bottom: 50%;
  }

  .topRecruitment .topRecruitment__title h2 {
    font-size: 3.2rem;
    background-size: 107%;
    padding: 18.5% 0 12.5% 0;
    background-size: 112%;
  }

  .topRecruitment .topRecruitment__title p:nth-of-type(1) {
    font-size: 1.2rem;
    margin-top: 8%;
  }

  .topRecruitment .topRecruitment__title p:nth-of-type(2) {
    font-size: 2.4rem;
  }

  .topRecruitment .recruitment__boxImage {
    width: 150%;
    margin-left: -25%;
    margin-top: 5%;
  }

  .topRecruitment .recruitment__boxImage img {
    margin-top: 0;
  }

  .topRecruitment .topRecruitment__btn {
    width: 100%;
    padding: 0;
    margin-top: 6%;
  }

  .topRecruitment .topRecruitment__btn a {
    font-size: 2.5rem;
    text-align: left;
  }

  .topRecruitment .topRecruitment__btn p:after {
    width: 5.5vw;
    height: 5.5vw;
    margin: 14px 0 0px 20px;
  }

  .topRecruitment .topRecruitmentCareer__btn p:after {
    width: 4.5vw;
    height: 4.5vw;
  }

  .topRecruitment__btnWrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}


/* footer */
.footer {
  border-top: 4px solid var(--color-main);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.footer .footer__left {
  width: 27.5%;
  background-color: #fff;
  padding-top: 3.7vw;
}

.footer .footer__box {
  width: 22.5vw;
  margin-left: 5vw;
  padding-right: 5%;
}

.footer .footer__logo {
  width: 15.625vw;
}

.footer .footer__logo img {
  width: 100%;
}

.footer .footer__company {
  margin-top: 1vw;
}

.footer .footer__company .flex {
  display: revert;
  margin-top: 0.2vw;
}

.footer .footer__company-name {
  font-size: 1.248vw;
  font-weight: bold;
  letter-spacing: 0.03vw;
}

.footer .footer__company-adress {
  font-size: 0.75vw;
  letter-spacing: 0.02vw;
  line-height: 2;
}

.footer .footer__company-tel,
.footer .footer__company-fax {
  font-size: 1.248vw;
  font-weight: bold;
  letter-spacing: 0.03vw;
  margin-top: 0.2vw;
  display: flex;
  align-items: center;
}

.footer .footer__company-tel::before,
.footer .footer__company-fax::before {
  content: "";
  display: inline-block;
  width: 1.248vw;
  height: 1.248vw;
  margin-right: 0.5vw;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer .footer__company-tel::before {
  background-image: url(/cms/wp-content/themes/japax/assets/img/common/icn_tel.svg);
}

.footer .footer__company-fax::before {
  background-image: url(/cms/wp-content/themes/japax/assets/img/common/icn_fax.svg);
}

.footer .footer__btn-contact {
  display: inline-block;
  margin-top: 1.04vw;
  width: 80%;
  text-align: center;
  position: relative;
}

.footer .footer__btn-contact::after {
  content: "";
  display: inline-block;
  background-image: url(/cms/wp-content/themes/japax/assets/img/common/icn_arrow-up-right-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.78125vw;
  height: 0.78125vw;
  position: absolute;
  top: 50%;
  right: 1.04vw;
  transform: translateY(-50%);
}

.footer .footer__btn-contact a {
  background: var(--gradation-main-vertical);
  font-weight: bold;
  color: #fff;
  padding: 1.4vw 0;
  display: inline-block;
  width: 100%;
  font-size: 0.83vw;
}

.footer .copyright {
  color: #999999;
  font-size: 0.6vw;
  margin-top: 2.8vw;
  margin-bottom: 1vw;
}

.footer .footer__right {
  width: 72.5%;
  background-color: #EFEFEF;
  padding: 3.7vw 5vw;
}

.footer .footer__sitemap {
  display: grid;
  grid-template-columns: repeat(5, 20%);
  gap: 2vw 0;
  margin: 0 auto;
}

.footer .footer__sitemapinner {
  width: 100%;
}

.footer .footer__sitemapinner.inner01,
.footer .footer__sitemapinner.inner02,
.footer .footer__sitemapinner.inner03,
.footer .footer__sitemapinner.inner04 {
  grid-row-start: 1;
  grid-row-end: 4;
}

.footer .footer__sitemapinner input {
  display: none;
}

.footer .footer__sitemapinner label {
  font-size: 1.248vw;
  position: relative;
  margin-bottom: 0.88vw;
  font-weight: bold;
}

.footer .footer__sitemapinner label::before,
.footer .footer__sitemapinner label::after {
  content: "";
  display: inline-block;
  margin-right: 0.625vw;
}

.footer .footer__sitemapinner label::before {
  border-top: 0.6vw solid #fff;
  border-bottom: 0.6vw solid var(--color-main);
  height: 1.2vw;
  width: 3px;
}

.footer .footer__sitemapinner li {
  font-size: 0.876vw;
  text-indent: -0.9375vw;
  margin-left: 1.71875vw;
  margin-top: 0.57vw;
  line-height: 1.5;
}

.footer .footer__sitemapinner.other li {
  margin-left: 0.9375vw;
  text-indent: -0.78125vw;
}

.footer .footer__sitemapinner.inner07 li {
  margin-left: 0.9375vw;
  text-indent: -0.78125vw;
}

.footer .footer__sitemapinner li a::before {
  content: "";
  display: inline-block;
  width: 0.42vw;
  height: 0.42vw;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  transform: rotate(-45deg);
  margin-right: 0.5vw;
}

.footer .footer__sitemapinner li a.link_other::after {
  content: "";
  display: inline-block;
  width: 0.73vw;
  height: 0.73vw;
  background-image: url(/cms/wp-content/themes/japax/assets/img/common/Icn_arrow-other-k.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 0.42vw;
}
.footer .footer__sitemapinner li a.link_other.samesite::after{
  content: "";
  display: inline-block;
  width: 0.73vw;
  height: 0.73vw;
  background-image: url(/cms/wp-content/themes/japax/assets/img/common/Icn_arrow-other-p.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 0.42vw;}
.footer .footer__sitemapinner.other li a::before {
  width: 0.5rem;
  border-right: none;
  border-bottom: 1px solid var(--color-main);
  transform: rotate(0deg) translateY(-.25em);
  margin-right: 0.5rem;
}
/* .footer__sitemapinner.inner02 a{
  font-size: 1.248vw;
  position: relative;
  margin-bottom: 0.88vw;
  font-weight: bold;
}
.footer__sitemapinner.inner02 a::before{
  border-top: 0.6vw solid #fff;
    border-bottom: 0.6vw solid var(--color-main);
    height: 1.2vw;
    width: 3px;
    content: "";
    display: inline-block;
    margin-right: 0.625vw;
} */

@media screen and (max-width: 1024px) {
  .footer .sp {
    display: revert;
  }

  .footer .footer__left {
    width: 100%;
    order: 2;
    padding-top: 45px;
  }

  .footer .footer__box {
    width: 92%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4%;
    padding-right: 4%;
  }

  .footer .footer__logo {
    width: 100%;
    max-width: 352px;
  }

  .footer .footer__company {
    margin-top: 30px;
  }

  .footer .footer__company-name {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .footer .footer__company-adress {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 15px;
  }

  .footer .footer__company .flex {
    display: flex;
    margin-top: 15px;
    justify-content: flex-start;
  }

  .footer .footer__company-tel,
  .footer .footer__company-fax {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    margin-top: 0;
    margin-right: 30px;
  }

  .footer .footer__company-tel::before,
  .footer .footer__company-fax::before {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .footer .footer__btn-contact {
    margin-top: 40px;
    width: 100%;
    text-align: left;
  }

  .footer .footer__btn-contact a {
    font-size: 16px;
    background: var(--gradation-main-horizontal);
    padding: 15px 0 15px 75px;
  }

  .footer .footer__btn-contact::before,
  .footer .footer__btn-contact::after {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer .footer__btn-contact::before {
    background-image: url(/cms/wp-content/themes/japax/assets/img/common/header_mail.svg);
    width: 33px;
    height: 25px;
    left: 15px;
  }

  .footer .footer__btn-contact::after {
    background-image: url(/cms/wp-content/themes/japax/assets/img/common/icn_arrow-up-right-w.svg);
    width: 15px;
    height: 15px;
    right: 20px;
    transform: translateY(-50%);
  }

  .footer .copyright {
    font-size: 12px;
    margin-top: 60px;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer .footer__right {
    width: 100vw;
    order: 1;
    padding: 0;
  }

  .footer .footer__sitemap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer .footer__sitemapinner {
    position: relative;
  }

  .footer .footer__sitemapinner input~ul {
    max-height: 0;
    background-color: #fff;
    overflow: hidden;
    animation-duration: 0.3s;
    animation-name: close;
    animation-direction: alternate;
    animation-fill-mode: both;
  }

  @keyframes close {
    0% {
      max-height: 100vh;
    }

    100% {
      max-height: 0vh;
    }
  }

  .footer__sitemapinner.inner02{
/*    border-bottom: 2px solid #fff;*/
  }

  /* .footer__sitemapinner.inner02 a{
    width: 100%;
    display: block;
    height: 100%;
    padding: 20px 3%;
    font-size: 20px;
    text-align: left;
  }
  .footer__sitemapinner.inner02 a::before{
    border-top: 10px solid #fff;
    border-bottom: 10px solid var(--color-main);
    height: 5px;
    width: 3px;
    margin-right: 15px;
    content: "";
    display: inline-block;
  } */


  .footer .footer__sitemapinner input:checked~ul {
    height: auto;
    display: revert;
    animation-duration: 1s;
    animation-name: open;
    animation-direction: alternate;
    animation-fill-mode: both;
  }

  @keyframes open {
    0% {
      max-height: 0;
    }

    100% {
      max-height: 100vh;
    }
  }

  .footer .footer__sitemapinner label {
    font-size: 20px;
    width: 100%;
    display: inline-block;
    text-align: left;
    padding: 20px 3%;
    margin-bottom: 0;
    border-bottom: 2px solid #fff;
    pointer-events: auto;
  }

  .footer .footer__sitemapinner label::before {
    border-top: 10px solid #fff;
    border-bottom: 10px solid var(--color-main);
    height: 5px;
    width: 3px;
    margin-right: 15px;
  }

  .footer .footer__sitemapinner label::after {
    content: "";
    display: inline-block;
    border: 2px solid #ADADAD;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    transition: .3s;
    margin-right: 0;
  }

  .footer .footer__sitemapinner input~label span.cercle::before,
  .footer .footer__sitemapinner input~label span.cercle::after {
    content: "";
    display: inline-block;
    background-color: #adadad;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    transition: .3s;
  }

  .footer .footer__sitemapinner input~label span.cercle::before {
    width: 2px;
    height: 12px;
    top: 50%;
    right: calc(4% + 11px);
  }

  .footer .footer__sitemapinner input:checked~label span.cercle::before {
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
  }

  .footer .footer__sitemapinner input~label span.cercle::after {
    width: 12px;
    height: 2px;
    right: calc(4% + 6px);
  }

  .footer .footer__sitemapinner input:checked~label span.cercle::after {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
  }

  .footer .footer__sitemapinner.inner01,
  .footer .footer__sitemapinner.inner02,
  .footer .footer__sitemapinner.inner03,
  .footer .footer__sitemapinner.inner04,
  .footer .footer__sitemapinner.inner05,
  .footer .footer__sitemapinner.inner06,
  .footer .footer__sitemapinner.inner07 {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: auto;
    grid-row-end: auto;
    text-align: center;
  }

  .footer .footer__sitemapinner li,
  .footer .footer__sitemapinner.other li,
  .footer .footer__sitemapinner.inner07 li {
    font-size: 14px;
    margin-top: 20px;
    text-indent: 0px;
  }

  .footer .footer__sitemapinner li:last-child {
    margin-bottom: 20px;
  }

  .footer .footer__sitemapinner li a {
    display: flex;
    align-items: center;
  }

  .footer .footer__sitemapinner li a::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
    transform: rotate(-45deg);
    margin-right: 10px;
  }

  .footer .footer__sitemapinner.other li a::before {
    width: 7px;
    border-right: none;
    transform: rotate(0deg);
    margin-right: 10px;
    height: 1px;
  }

  .footer .footer__sitemapinner li a.link_other::after,
  .footer .footer__sitemapinner li a.link_other.samesite::after {
    width: 14px;
    height: 14px;
    margin-left: 10px;
  }
  
}

@media screen and (max-width: 833px) {
  .footer .footer__box {
    width: 70%;
    margin-left: 15%;
    padding-right: 0%;
    padding-left: 0%;
  }
}

@media screen and (max-width: 500px) {
  .footer .footer__company .flex {
    justify-content: space-between;
  }
}



.breadcrumbs{
  font-size:0.625vw;
  position:absolute;
  top:2.6vw;
  left:calc(2.5% - (0.625vw / 2));
  writing-mode: vertical-rl;
  display: flex;
  font-weight: bold;
  letter-spacing: 0.1vw;
  z-index: 1;
}
.breadcrumbs .home span img{
  width:1vw;
  height:1vw;
    vertical-align: initial;
}
.breadcrumbs span a{
  color:var(--color-main);
}
.breadcrumbs > span:not(:last-child)::after{
  content: "";
  display: inline-block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 0.3vw;
  height: 0.3vw;
  margin-top: 1vw;
  margin-bottom: 1.25vw;
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px){
  .breadcrumbs{
      font-size: 12px;
      margin-top: 15px;
      writing-mode: initial;
      position: static;
      /* padding-top: 10px; */
      display: inline-block;
  }
  .breadcrumbs .home span img{
      width:20px;
      height:16px;
  }
  .breadcrumbs > span:not(:last-child)::after{
      width: 8px;
      height: 8px;
      margin-top: 0;
      margin-bottom: 0;
      transform: rotate(-45deg);
      margin-left: 15px;
      margin-right: 15px;
  }
}



/* ページネーション */
.navigation.pagination .nav-links ul.page-numbers{
  display: flex;
  font-size: 0.8vw;
  align-items: center;
  font-weight: bold;
  flex-wrap: wrap;
}

.navigation.pagination li {
  border-radius: 100vw;
  position: relative;
  padding: 1.5vw;
  border-radius: 50%;
  margin: 0 0.5%;
}
.topNews .news__categorylink li a{
  display: block;
  height: 100%;
  padding: 8px 20px;
}
.navigation.pagination li:hover{
  background: var(--color-main);
}
.navigation.pagination li:hover a{
  color: #fff;
} 
.navigation.pagination li.arrow_list:hover{
  background:#fff;
}
.navigation.pagination li.arrow_list_dot:hover{
  background:#fff;
  cursor: default;
}
.navigation.pagination .arrow_list .prev img{
  transform: rotate(180deg);
}

.navigation.pagination a{
  position: absolute;
  left: 0;
  top: 50%;
  margin: -0.65vw 0 0;
  width: 100%;
  text-align: center;
}

.navigation.pagination .current_item{
  background: var(--color-main);
}
.navigation.pagination .current_item .current{
position: absolute;
left: 0;
top: 50%;
margin: -0.65vw 0 0;
width: 100%;
text-align: center;
color: #fff;
}

.wp-block-file a.wp-block-file__button {
  position: relative;
}
.wp-block-file__button::after{
  left: 0;
  margin-left: 0 !important;
}




ul.header__recruitBtn > li{
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #fff;
}
ul.header__recruitBtn > li > a{
  display: flex;
}
ul.header__recruitBtn > li > span{
  margin-left: 1.2em;
}
ul.header__recruitBtn > li:hover > a{
  color: #444;
}
ul.header__recruitBtn{
  position: relative;
  align-items: center;
  width: 50%;
  justify-content: center;
}
ul.header__recruitBtn li ul{
  position: absolute;
  left: 0;
  background-color: rgba(244, 244, 244, .9);
  backdrop-filter: blur(5px);
  padding: 12%;
  margin-top:-100%;
  z-index: -1000;
  transition: .3s;
  width: 160%;
  margin-left: -30%;
  opacity: 0;
  border-top: 2px solid var(--color-main);
}
ul.header__recruitBtn li:hover ul{
  margin-top:0;
  opacity:1;
}
ul.header__recruitBtn li ul li{
  display: block;
  color: #000;
  width: 100%;
  z-index: 0;
  text-align: left;
  background: #fff;
}
ul.header__recruitBtn li ul li:nth-of-type(1){
  /* margin-bottom: 10%; */
}
ul.header__recruitBtn li ul li:nth-of-type(2){
  margin-top: 10%;
}
ul.header__recruitBtn li ul li a{
  color: #000 !important;
  display: block;
  height: 100%;
  width: 100%;
  padding: 5%;
  font-size: 0.8vw;
  justify-content: space-between !important;
  align-items: center;
  position: relative;
  display: flex;
}
ul.header__recruitBtn li ul li a::after {
  content: "";
  background: url(/cms/wp-content/themes/japax/assets/img/common/arrow_right.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 5%;
}
ul.header__recruitBtn li ul li:nth-of-type(2) a::after {
  background: url(/cms/wp-content/themes/japax/assets/img/common/icn_arrow-other.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}


.header .header__right > a{
  align-items: center;
  width: 50%;
  justify-content: center;
}
.header .header__right .header__recruitBtn li > div{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header__right > a p{
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .header .header__right > a{
    background: linear-gradient(90deg, #9a149b, #6f149b) !important;
    color: #fff;
  }
  .header__right__recruit{
    display: flex;
    justify-content: center;
  }
  ul.header__recruitBtn li ul{
    width: 200%;
    margin-left: 0%;
    border-top: none;
    padding: 20px;
    justify-content: space-between !important;
    margin-top: 0px;
  }
  ul.header__recruitBtn li:hover ul{
    margin-top: -140px;
  }
  ul.header__recruitBtn li ul li{
    width: 49%;
  }
  ul.header__recruitBtn li ul li:nth-of-type(1){
    margin-bottom: 0;
  }
  ul.header__recruitBtn li ul li a{
    background: #fff !important;
    padding: 10px;
    font-size: 12px;
  }
}
li.none{
  opacity: 0;
}