@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 1s !important;
}

.anim--delay {
  animation-delay: 0.6s !important;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 1s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 1s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft {
  opacity: 0;
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 1s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight {
  opacity: 0;
}
.anim-fadeRight.onAnim {
  animation: fadeRight 1s ease 0s 1 alternate forwards;
}

.fz14 {
  font-size: 0.875em;
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:-moz-placeholder-shown {
  color: #ccc;
}

:placeholder-shown {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
}

a {
  color: #242424;
}
a:hover {
  text-decoration: underline;
}

html {
  font-size: 16px;
}

body {
  font-size: 16px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.05em;
  background-color: #fff;
  color: #242424;
  overscroll-behavior: none;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}

.raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

.textRight {
  text-align: right;
}

@media all and (max-width: 640px) {
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 1024px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 640px) {
  html {
    font-size: 3.7376vw;
  }
  body {
    font-size: 3.7376vw;
  }
}
@media all and (max-width: 640px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp {
    display: none !important;
  }
}
.inner {
  max-width: 1180px;
  padding: 0 50px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
@media all and (max-width: 1024px) {
  .inner {
    padding: 0 30px;
  }
}
@media all and (max-width: 428px) {
  .inner {
    padding: 0 7.008vw;
  }
}

.commonBTWrap {
  display: flex;
}

.commonBT {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  letter-spacing: 0.1em;
}
.commonBT:hover {
  text-decoration: none;
}
.commonBT:hover .ic:before {
  scale: 1.4;
}
.commonBT:hover:not(.commonBT--nohv) .ic:before {
  background-color: #000;
}
.commonBT:hover:not(.commonBT--nohv) .ic.white:before {
  background-color: #fff;
}
.commonBT:hover:not(.commonBT--nohv) .ic.white line {
  stroke: #000;
}
.commonBT:hover:not(.commonBT--nohv) .ic line {
  stroke: #fff;
}
.commonBT .ic {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
}
.commonBT .ic.white:before {
  border-color: #fff;
}
.commonBT .ic.white line {
  stroke: #fff;
}
@media all and (max-width: 640px) {
  .commonBT .ic {
    width: 9.344vw;
    height: 9.344vw;
    margin-right: 4.672vw;
  }
}
.commonBT .ic:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease 0s;
}
.commonBT .ic:before:hover {
  text-decoration: none;
}
.commonBT .ic svg {
  position: relative;
  z-index: 10;
}
.commonBT .ic svg line {
  transition: all 0.3s ease 0s;
}
.commonBT .ic svg line:hover {
  text-decoration: none;
}
.commonBT .ic .arrow {
  width: 30%;
}
.commonBT .ic .blank {
  width: 25%;
}
.commonBT .text {
  font-size: 0.75em;
  font-weight: bold;
}

@media all and (min-width: 641px) {
  .navWrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    padding-top: 30px;
    padding-right: 50px;
    height: 80px;
    width: 110px;
    transition: width 0s 0.4s, translate 0.8s 2s;
  }
  .navWrap:hover {
    height: auto;
    width: 170px;
    transition: width 0s 0s;
  }
}
@media all and (min-width: 641px) and (min-width: 641px) {
  .navWrap:hover .gNav {
    opacity: 1;
    translate: 0 0;
    transition: translate 0s 0s, opacity 0.4s 0s;
  }
  .navWrap:hover .navBT {
    background-color: #242424;
  }
  .navWrap:hover .navBT .bar:nth-child(1), .navWrap:hover .navBT .bar:nth-child(3) {
    scale: 0.7 1;
  }
  .navWrap:hover .navBT .bar:nth-child(2) {
    scale: 1 1;
  }
}

.navBT {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: auto;
  margin-bottom: 25px;
  top: 30px;
  right: 50px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #fff;
  background-color: #000;
  background-image: none;
  cursor: pointer;
}
@media all and (max-width: 640px) {
  .navBT {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    gap: 5px;
  }
}
@media all and (max-width: 428px) {
  .navBT {
    top: 4.2048vw;
    right: 4.2048vw;
    width: 11.68vw;
    height: 11.68vw;
    gap: 1.168vw;
  }
}
.navBT .bar {
  height: 1px;
  width: 30%;
  background-color: #fff;
  transform-origin: left;
  transition: all 0.3s ease 0s;
}
.navBT .bar:hover {
  text-decoration: none;
}
.navBT .bar:nth-child(2) {
  scale: 0.7 1;
}
@media all and (max-width: 640px) {
  .navBT .bar {
    width: 35%;
  }
  .navBT .bar:nth-child(1), .navBT .bar:nth-child(3) {
    transform-origin: center;
  }
}
@media all and (max-width: 640px) {
  .navBT.active .bar:nth-child(1) {
    rotate: 45deg;
    translate: 0 6px;
    scale: 1.7 1;
  }
  .navBT.active .bar:nth-child(2) {
    scale: 0 1;
  }
  .navBT.active .bar:nth-child(3) {
    rotate: -45deg;
    translate: 0 -6px;
    scale: 1.7 1;
  }
}
@media all and (max-width: 428px) {
  .navBT.active .bar:nth-child(1) {
    translate: 0 1.4016vw;
  }
  .navBT.active .bar:nth-child(3) {
    translate: 0 -1.4016vw;
  }
}

.mainLogo {
  position: fixed;
  z-index: 999;
  top: 47px;
  left: 50px;
  mix-blend-mode: difference;
  transition: all 0.3s ease 0s;
}
.mainLogo:hover {
  text-decoration: none;
}
.mainLogo.active {
  filter: brightness(200%);
}
@media all and (max-width: 640px) {
  .mainLogo {
    top: 30px;
    left: 30px;
  }
}
@media all and (max-width: 428px) {
  .mainLogo {
    top: 7.008vw;
    left: 7.008vw;
    width: 35.04vw;
  }
  .mainLogo img {
    width: 100%;
  }
}

.gNav {
  position: relative;
  right: -30px;
  z-index: 990;
  translate: 130% 0;
  background-color: #242424;
  padding: 20px 16px;
  transition: translate 0s 0.4s, opacity 0.4s 0s;
  opacity: 0;
}
@media all and (min-width: 641px) {
  .gNav {
    border-radius: 10px;
    border: 1px solid #fff;
  }
}
@media all and (max-width: 640px) {
  .gNav:before {
    content: "";
    background-image: url(../images/bg-dot.png);
    background-size: 300px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color-burn;
  }
}
.gNav__inner {
  position: relative;
  z-index: 5;
}
.gNav__arrow {
  display: none;
}
@media all and (min-width: 641px) {
  .gNav {
    background-color: #000;
  }
  .gNav__arrow {
    display: block;
    scale: 0.6 1;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
  .gNav__arrow:before {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #000;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% -50%;
    rotate: 45deg;
  }
}
.gNav a {
  color: #fff;
}
@media all and (max-width: 640px) {
  .gNav {
    position: fixed;
    width: 100%;
    height: 100svh;
    background-color: #242424;
    top: 0;
    right: 0;
    opacity: 0;
  }
}
@media all and (max-width: 640px) {
  .gNav.active {
    opacity: 1;
    translate: 0 0;
    transition: translate 0s 0s, opacity 0.4s 0s;
  }
}
@media all and (max-width: 640px) {
  .gNav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: auto;
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .gNav__list {
    margin: auto;
    padding: 110px 7.008vw 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
  }
}
@media all and (max-width: 428px) {
  .gNav__list {
    padding: 25.696vw 7.008vw 7.008vw;
  }
}
.gNav__item {
  font-size: 3.2704vw;
}
@media all and (min-width: 641px) {
  .gNav__item {
    margin-bottom: 0.1em;
    font-size: 12px;
  }
}
@media all and (min-width: 641px) {
  .gNav__item.first {
    display: none;
  }
}
.gNav__item:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 640px) {
  .gNav__item {
    padding: 1em 0;
    border-top: 1px solid #fff;
  }
  .gNav__item:last-child {
    border-bottom: 1px solid #fff;
  }
}
.gNav__item > a {
  display: block;
  padding: 0.5em 0.2em;
  transition: all 0.3s ease 0s;
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
.gNav__item > a:hover {
  text-decoration: none;
}
@media all and (min-width: 641px) {
  .gNav__item > a > strong {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .gNav__item > a {
    padding: 1em 0;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.1em;
  }
  .gNav__item > a .raleway {
    font-size: 2.336vw;
    font-weight: normal;
    opacity: 0.2;
  }
}
.gNav__item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  transform-origin: left;
  scale: 0 1;
}
.gNav__item > a:after:hover {
  text-decoration: none;
}
@media all and (min-width: 641px) {
  .gNav__item > a:hover:after {
    scale: 1;
  }
}
.gNav__child {
  display: none;
}
@media all and (max-width: 640px) {
  .gNav__child {
    display: block;
    margin-top: 0.2em;
    padding-bottom: 0.75em;
  }
  .gNav__child__item {
    font-size: 2.8032vw;
  }
  .gNav__child__item a {
    color: #fff;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
  }
  .gNav__child__item a svg {
    display: block;
    width: 100%;
  }
  .gNav__child__item a .arrow {
    width: 3.88944vw;
    margin-right: 1.25em;
  }
}

.fv__recruit.fixedRecruit {
  position: fixed;
  z-index: 90;
}

.footRecruit {
  background-color: #6a6a6a;
  display: block;
  padding: 120px 0;
  position: relative;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  color: #fff;
}
.footRecruit:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .footRecruit {
    padding: 14.016vw 0;
  }
}
.footRecruit:hover .ic:before {
  background-color: #fff;
  scale: 1.4;
}
.footRecruit:hover .ic line {
  stroke: #000;
}
.footRecruit:hover .footRecruit__bg {
  opacity: 0.34;
  scale: 1.15;
}
.footRecruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/foot_recruit.jpg);
  mix-blend-mode: overlay;
  opacity: 0.12;
  transition: all 0.3s ease 0s;
}
.footRecruit__bg:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .footRecruit__bg {
    background-image: url(../images/foot_recruit-sp.jpg);
  }
}
.footRecruit__box {
  max-width: 980px;
  margin: 40px auto 0;
}
@media all and (min-width: 641px) {
  .footRecruit__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footRecruit__lead {
  font-weight: bold;
  font-size: 1.875em;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.footRecruit__text {
  font-size: 0.875em;
}
@media all and (max-width: 640px) {
  .footRecruit__text {
    font-size: 0.86875em;
  }
}
@media all and (max-width: 640px) {
  .footRecruit__btWrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 18.688vw;
  }
  .footRecruit__btWrap .commonBT {
    flex-direction: row-reverse;
  }
  .footRecruit__btWrap .commonBT .ic {
    margin-right: 0;
    margin-left: 4.672vw;
  }
}

.mainFooter {
  padding: 40px 0 54px;
  position: relative;
  z-index: 99;
  background-color: #fff;
}
@media all and (max-width: 640px) {
  .mainFooter {
    padding: 5.84vw 0 12.848vw;
  }
}
.mainFooter__upper {
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 3em;
}
@media all and (max-width: 1024px) {
  .mainFooter__upper {
    gap: 1em;
  }
}
@media all and (max-width: 640px) {
  .mainFooter__upper {
    flex-direction: column;
    align-items: center;
    gap: 8.4096vw;
    padding-bottom: 0;
  }
}
.mainFooter__nav {
  font-size: 0.75em;
  width: calc(100% - 3rem);
  max-width: 780px;
}
@media all and (max-width: 1024px) {
  .mainFooter__nav {
    width: calc(100% - 1rem);
  }
}
@media all and (max-width: 640px) {
  .mainFooter__nav {
    width: 100%;
  }
}
.mainFooter__nav__list {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.2em;
  gap: 1.5em;
}
@media all and (min-width: 641px) {
  .mainFooter__nav__list .en {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .mainFooter__nav__list {
    display: block;
  }
}
.mainFooter__nav__item {
  position: relative;
}
@media all and (max-width: 640px) {
  .mainFooter__nav__item {
    border-top: 1px solid #EBEBEB;
  }
  .mainFooter__nav__item:last-child {
    border-bottom: 1px solid #EBEBEB;
  }
}
.mainFooter__nav__link {
  display: flex;
  font-weight: bold;
  line-height: 1.5;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 640px) {
  .mainFooter__nav__link {
    padding: 1.5em 0;
  }
  .mainFooter__nav__link .ja {
    font-size: 3.2704vw;
  }
  .mainFooter__nav__link .en {
    opacity: 0.2;
    font-size: 2.336vw;
    font-weight: normal;
  }
}
@media all and (min-width: 641px) {
  .mainFooter__nav__child {
    width: 6em;
    line-height: 2;
    height: 11em;
    position: relative;
    white-space: nowrap;
  }
  .mainFooter__nav__child ul {
    padding-top: 1em;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media all and (max-width: 640px) {
  .mainFooter__nav__child {
    line-height: 1.6;
    padding-bottom: 2em;
  }
  .mainFooter__nav__child a {
    display: block;
    padding: 0.3em;
  }
}
.mainFooter__sitelink {
  width: 43.4496vw;
}
@media all and (min-width: 641px) {
  .mainFooter__sitelink {
    width: 196px;
  }
}
.mainFooter__lower {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
@media all and (max-width: 640px) {
  .mainFooter__lower {
    margin-top: 11.2128vw;
  }
}
@media all and (min-width: 641px) {
  .mainFooter__lower {
    border-top: 1px solid #313131;
    padding-top: 47px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media all and (max-width: 640px) {
  .mainFooter__lower {
    gap: 5.84vw;
  }
}
.mainFooter__credit {
  font-weight: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 0.625em;
}
@media all and (max-width: 640px) {
  .mainFooter__credit {
    text-align: center;
  }
}
.mainFooter__logo {
  filter: invert(1);
}
@media all and (max-width: 640px) {
  .mainFooter__logo {
    width: 100%;
    padding-bottom: 4.672vw;
    border-bottom: 1px solid #313131;
  }
  .mainFooter__logo img {
    width: 100%;
  }
}

.commonHeading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
  letter-spacing: 0.2em;
  gap: 0.4em;
}
.commonHeading__jp {
  font-size: 0.75em;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-sp {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.fv {
  position: relative;
  z-index: 5;
  height: 500px;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .fv {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
  }
}
.fv__imgWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv__imgWrap__img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-name: fade;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
@media all and (max-width: 640px) {
  .fv__imgWrap__img {
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    animation-duration: 10s;
    animation-name: fade-sp;
  }
}
.fv__imgWrap__img1 {
  background-image: url(../images/top/fv1.jpg);
}
@media all and (max-width: 640px) {
  .fv__imgWrap__img1 {
    background-image: url(../images/top/fv1-sp.jpg);
    top: 0;
  }
}
.fv__imgWrap__img2 {
  background-image: url(../images/top/fv2.jpg);
}
@media all and (max-width: 640px) {
  .fv__imgWrap__img2 {
    background-image: url(../images/top/fv2-sp.jpg);
    top: auto;
    bottom: 0;
  }
}
@media all and (min-width: 641px) {
  .fv__imgWrap__img2 {
    animation-delay: 3s;
  }
}
.fv__imgWrap__img3 {
  background-image: url(../images/top/fv3.jpg);
}
@media all and (max-width: 640px) {
  .fv__imgWrap__img3 {
    background-image: url(../images/top/fv3-sp.jpg);
    animation-delay: 5s;
  }
}
@media all and (min-width: 641px) {
  .fv__imgWrap__img3 {
    animation-delay: 6s;
  }
}
.fv__imgWrap__img4 {
  background-image: url(../images/top/fv4.jpg);
}
@media all and (max-width: 640px) {
  .fv__imgWrap__img4 {
    background-image: url(../images/top/fv4-sp.jpg);
    top: auto;
    bottom: 0;
    animation-delay: 5s;
  }
}
@media all and (min-width: 641px) {
  .fv__imgWrap__img4 {
    animation-delay: 9s;
  }
}
.fv__leadWrap {
  min-height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media all and (max-width: 640px) {
  .fv__leadWrap {
    min-height: 50%;
    height: 50%;
  }
}
.fv__leadContainer {
  width: 100%;
  overflow: hidden;
}
@media all and (max-width: 640px) {
  .fv__leadContainer {
    translate: 0 50%;
  }
}
.fv__leadContainer__inner {
  width: 240%;
  display: flex;
  justify-content: space-between;
  animation: infinity-scroll-left 20s infinite linear 0s both;
}
@media all and (max-width: 640px) {
  .fv__leadContainer__inner {
    width: 600%;
  }
}
.fv__leadContainer__lead {
  width: 50%;
  padding: 0 4vw;
}
@media all and (max-width: 640px) {
  .fv__leadContainer__lead {
    padding: 0 8vw;
  }
}
.fv__leadContainer img {
  width: 100%;
}
.fv__copy {
  position: absolute;
  z-index: 30;
  top: 65%;
  left: 100px;
  font-size: 23px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media all and (max-width: 1024px) {
  .fv__copy {
    left: 50px;
  }
}
@media all and (max-width: 640px) {
  .fv__copy {
    font-size: 6.5408vw;
    left: 7.008vw;
    top: 50%;
    translate: 0 70%;
  }
}
.fv__bar {
  position: absolute;
  left: 30px;
  padding: 0 20px;
  bottom: 0;
  z-index: 40;
  display: block;
}
@media all and (max-width: 640px) {
  .fv__bar {
    display: none;
  }
}
.fv__bar span {
  width: 1px;
  height: 60px;
  background-color: #242424;
  display: block;
  animation: fv-bar 3s infinite ease 0s both;
}
.fv__recruit {
  position: absolute;
  z-index: 50;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  gap: 0.6em;
  transition: all 0.3s ease 0s;
}
.fv__recruit:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .fv__recruit {
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    border-radius: 1em 1em 0 0;
    font-size: 0.1752vwem;
    border: 1px solid #fff;
    border-bottom: 0;
    width: 39.2448vw;
    padding: 0.8em 0 0.65em;
  }
}
@media all and (min-width: 641px) {
  .fv__recruit {
    right: 0;
    bottom: 0;
    flex-direction: column;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    border-radius: 1em 0 0 0;
    height: 168px;
    padding: 1em;
  }
  .fv__recruit:hover {
    padding-right: 2em;
  }
}
.fv__recruit .ic {
  width: 13px;
}
@media all and (max-width: 640px) {
  .fv__recruit .ic {
    width: 3.0368vw;
  }
}
.fv__recruit .ic img {
  display: block;
  width: 100%;
  rotate: 90deg;
}
.fv__recruit .txt {
  font-weight: normal;
}
@media all and (min-width: 641px) {
  .fv__recruit .txt {
    font-size: 12px;
    writing-mode: vertical-rl;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes fv-bar {
  0% {
    transform-origin: top;
    scale: 1 0;
  }
  20% {
    transform-origin: top;
    scale: 1 0;
  }
  40% {
    transform-origin: top;
    scale: 1 1;
  }
  60% {
    transform-origin: bottom;
    scale: 1 1;
  }
  80% {
    transform-origin: bottom;
    scale: 1 1;
  }
  100% {
    transform-origin: bottom;
    scale: 1 0;
  }
}
.topPhilosophy {
  position: relative;
  padding-top: 100px;
  background: linear-gradient(to bottom, #fff 0%, #eaeaea 100%);
}
@media all and (max-width: 640px) {
  .topPhilosophy {
    padding: 18.688vw 0 7.008vw;
  }
}
.topPhilosophy:before {
  content: "";
  background-image: url(../images/bg-dot.png);
  background-size: 300px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.topPhilosophy__img {
  position: absolute;
  width: 470px;
  left: 60%;
  top: 0;
}
@media all and (max-width: 640px) {
  .topPhilosophy__img {
    opacity: 0.25;
    left: 40%;
    width: 102.784vw;
    top: 42.048vw;
  }
}
.topPhilosophy__box {
  margin: 76px auto 0;
  position: relative;
  z-index: 10;
  max-width: 980px;
}
@media all and (max-width: 640px) {
  .topPhilosophy__box {
    margin-top: 11.68vw;
  }
}
.topPhilosophy__lead {
  line-height: 1.6;
  font-size: 2.0625em;
  margin-bottom: 1em;
}
.topPhilosophy__text {
  line-height: 2.4;
  margin-bottom: 3.5em;
}
.topPhilosophy__leadContainer {
  width: 100%;
  overflow: hidden;
  margin-top: 120px;
  translate: 0 5%;
}
@media all and (max-width: 640px) {
  .topPhilosophy__leadContainer {
    margin-top: 14.016vw;
  }
}
.topPhilosophy__leadContainer__inner {
  width: 240%;
  display: flex;
  justify-content: space-between;
  animation: infinity-scroll-left 20s infinite linear 0s both;
}
@media all and (max-width: 640px) {
  .topPhilosophy__leadContainer__inner {
    width: 600%;
  }
}
.topPhilosophy__leadContainer__lead {
  width: 50%;
  padding: 0 2em;
}

.topService {
  padding: 100px 0 130px;
}
@media all and (max-width: 640px) {
  .topService {
    padding: 18.688vw 0 0;
  }
}
.topService__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.topService__main {
  margin-top: 50px;
  gap: 120px;
  display: grid;
  grid-template-columns: 1fr;
}
@media all and (max-width: 640px) {
  .topService__main {
    gap: 18.688vw;
    margin-top: 11.68vw;
  }
}
.topService__content {
  max-width: 1180px;
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media all and (min-width: 641px) {
  .topService__content:nth-child(odd) {
    padding-left: 50px;
    margin-left: auto;
  }
}
.topService__content:nth-child(odd) figure {
  border-radius: 1em 0 0 1em;
}
@media all and (min-width: 641px) {
  .topService__content:nth-child(even) {
    padding-right: 50px;
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 640px) {
  .topService__content:nth-child(even) .topService__content__img {
    padding-left: 0;
    padding-right: 7.008vw;
  }
}
.topService__content:nth-child(even) figure {
  border-radius: 0 1em 1em 0;
}
@media all and (max-width: 640px) {
  .topService__content {
    flex-direction: column;
    padding-bottom: 15.184vw;
  }
}
.topService__content__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (min-width: 641px) {
  .topService__content__content {
    width: 40%;
  }
}
@media all and (max-width: 640px) {
  .topService__content__content {
    padding: 0 7.008vw;
  }
}
@media all and (min-width: 641px) {
  .topService__content__img {
    width: 55%;
  }
}
@media all and (max-width: 640px) {
  .topService__content__img {
    margin-top: 7.008vw;
    padding-left: 7.008vw;
  }
}
.topService__content__img figure {
  overflow: hidden;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}
.topService__content__heading {
  font-size: 1.75em;
  margin-bottom: 1.2em;
}
@media all and (max-width: 640px) {
  .topService__content__heading {
    font-size: 1.5em;
  }
}
.topService__content__btWrap {
  margin-top: 2em;
}
@media all and (max-width: 640px) {
  .topService__content__btWrap {
    margin-top: 0;
    position: absolute;
    bottom: 0;
  }
}

.topTopics {
  padding: 130px 0 0;
  position: relative;
}
.topTopics:before {
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #f2f2f2;
}
@media all and (max-width: 640px) {
  .topTopics {
    padding-top: 21.024vw;
  }
}
.topTopics__box {
  border-radius: 1em;
  background-color: #fff;
  border: 1px solid #242424;
  padding: 60px 50px;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.06));
  min-height: 500px;
}
@media all and (max-width: 640px) {
  .topTopics__box {
    min-height: 116.8vw;
  }
}
@media all and (max-width: 640px) {
  .topTopics__box {
    padding: 8.176vw 5.84vw 11.68vw;
  }
}
.topTopics__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  margin-bottom: 44px;
}
@media all and (max-width: 640px) {
  .topTopics__header {
    margin-bottom: 9.344vw;
  }
}

.topContact {
  padding: 150px 0 170px;
  background-color: #f2f2f2;
}
@media all and (max-width: 640px) {
  .topContact {
    padding: 21.024vw 0 29.2vw;
  }
}

.contactWrap {
  max-width: 860px;
  margin: 0 auto;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.85em;
}
@media all and (max-width: 640px) {
  .contactWrap {
    margin-top: 11.68vw;
  }
}
.contactWrap__row.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4em;
}
@media all and (max-width: 640px) {
  .contactWrap__row.col2 {
    grid-template-columns: 1fr;
    gap: 1.85em;
  }
}
.contactWrap__label {
  font-size: 0.875em;
  line-height: 1.6;
  margin-bottom: 1em;
}
.contactWrap__label .required {
  margin-left: 0.2em;
  color: #f00;
}
.contactWrap input[type=text],
.contactWrap input[type=email],
.contactWrap input[type=tel],
.contactWrap textarea,
.contactWrap select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0.75em 1.5em;
  border: 1px solid #242424;
  background-color: #fff;
  width: 100%;
  display: block;
  border-radius: 0.3em;
}
@media all and (max-width: 640px) {
  .contactWrap input[type=text],
  .contactWrap input[type=email],
  .contactWrap input[type=tel],
  .contactWrap textarea,
  .contactWrap select {
    font-size: 15px;
  }
}
.contactWrap select {
  background-size: 0.5em;
  background-repeat: no-repeat;
  background-position: center right 1em;
  background-image: url(../images/form_arrow.svg);
  color: #242424;
}
.contactWrap__ppWrap {
  padding: 1.5em 1.5em;
  border: 1px solid #242424;
  background-color: #fff;
  height: 200px;
  overflow: auto;
  border-radius: 0.3em;
}
@media all and (max-width: 640px) {
  .contactWrap__ppWrap {
    height: 65.408vw;
  }
}
.contactWrap__pp {
  font-size: 0.875em;
  line-height: 1.8;
}
.contactWrap__footer {
  padding-top: 1.4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  align-items: center;
}
@media all and (max-width: 640px) {
  .contactWrap__footer {
    padding-top: 0.5em;
    flex-direction: column;
    gap: 1.5em;
  }
}
.contactWrap__footer .commonBT .text {
  font-size: 12px;
  color: #242424;
}
@media all and (max-width: 640px) {
  .contactWrap__footer .commonBT .text {
    font-size: 2.8032vw;
  }
}
.contactWrap__accept {
  font-size: 0.875em;
  display: flex;
  align-items: center;
  gap: 1em;
  cursor: pointer;
  position: relative;
}
.contactWrap__accept .check {
  width: 1.3em;
  height: 1.3em;
  border: 1px solid #313131;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.contactWrap__accept .check:after {
  display: none;
  content: "";
  width: 60%;
  height: 60%;
  background-color: #313131;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.contactWrap__accept input {
  position: absolute;
  opacity: 0;
  left: 0;
  bottom: 0;
}
.contactWrap__accept input:checked + .check:after {
  display: block;
}

.pageHeader {
  min-height: 93.44vw;
  padding-top: 23.36vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2em;
  position: relative;
}
@media all and (min-width: 641px) {
  .pageHeader {
    min-height: 492px;
    padding-top: 136px;
  }
}
.pageHeader .inner {
  width: 100%;
}
.pageHeader__heading {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.pageHeader__heading .en {
  transition: all 1s ease;
  font-weight: normal;
  font-size: 2.5em;
  line-height: 1.6;
  opacity: 0;
  translate: -1em 0;
}
.pageHeader__heading .ja {
  transition: all 1s ease;
  transition-delay: 0.3s;
  font-size: 1.125em;
  opacity: 0;
  translate: -1em 0;
}
.pageHeader__heading.onAnim .en,
.pageHeader__heading.onAnim .ja {
  translate: 0;
  opacity: 1;
}
.pageHeader__leadContainer {
  width: 100%;
  overflow: hidden;
  translate: 0 3%;
}
.pageHeader__leadContainer__inner {
  width: 240%;
  display: flex;
  justify-content: space-between;
  animation: infinity-scroll-left 20s infinite linear 0s both;
}
@media all and (max-width: 640px) {
  .pageHeader__leadContainer__inner {
    width: 600%;
  }
}
.pageHeader__leadContainer__lead {
  width: 50%;
  padding: 0 2em;
}

.companyWrap {
  padding-top: 110px;
  background-color: #242424;
  position: relative;
}
@media all and (max-width: 640px) {
  .companyWrap {
    padding-top: 21.024vw;
  }
}
.companyWrap:before {
  content: "";
  background-image: url(../images/bg-dot.png);
  background-size: 300px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-burn;
}

.companyNavWrap {
  position: sticky;
  top: 110px;
  margin-bottom: 70px;
  z-index: 20;
}
@media all and (max-width: 640px) {
  .companyNavWrap {
    top: 21.024vw;
  }
}
@media all and (max-width: 640px) {
  .companyNavWrap {
    margin-bottom: 0;
  }
}

.companyNav {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .companyNav {
    gap: 1em;
    flex-wrap: wrap;
  }
}
.companyNav a {
  width: 22%;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  background-color: #fff;
  border: 1px solid #242424;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  letter-spacing: 0.1em;
  padding: 0.66em 0.66em 0.66em 1.33em;
  border-radius: 4em;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .companyNav a {
    width: calc((100% - 1em) / 2);
    max-width: 50%;
  }
}
.companyNav a:hover {
  text-decoration: none;
}
.companyNav a:hover .ic:before {
  background-color: #242424;
}
.companyNav a:hover .ic line {
  stroke: #fff;
}
.companyNav a .ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  rotate: 90deg;
}
@media all and (max-width: 640px) {
  .companyNav a .ic {
    width: 7.4752vw;
    height: 7.4752vw;
  }
}
.companyNav a .ic:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease 0s;
}
.companyNav a .ic:before:hover {
  text-decoration: none;
}
.companyNav a .ic svg {
  position: relative;
  z-index: 10;
}
.companyNav a .ic svg line {
  transition: all 0.3s ease 0s;
}
.companyNav a .ic svg line:hover {
  text-decoration: none;
}
.companyNav a .ic .arrow {
  width: 30%;
}
.companyNav a .text {
  font-size: 0.875em;
}
@media all and (max-width: 640px) {
  .companyNav a .text {
    font-size: 0.6875em;
  }
}

.company_top-message {
  padding: 120px 0 0;
  color: #fff;
}
@media all and (max-width: 640px) {
  .company_top-message {
    padding-top: 25.696vw;
  }
}
.company_top-message__box {
  margin: 50px auto 0;
  display: flex;
}
@media all and (max-width: 640px) {
  .company_top-message__box {
    flex-direction: column;
    margin-top: 9.344vw;
  }
}
.company_top-message__name {
  max-width: 980px;
  margin: 50px auto 0;
  text-align: right;
  font-size: 1.75em;
}
@media all and (max-width: 640px) {
  .company_top-message__name {
    margin-top: 9.344vw;
  }
}

.company_mvv {
  padding: 120px 0 155px;
  color: #fff;
}
@media all and (max-width: 640px) {
  .company_mvv {
    padding: 25.696vw 0;
  }
}
.company_mvv__box1 {
  margin: 20px auto 0;
  max-width: 870px;
  position: relative;
  margin-bottom: 86px;
}
@media all and (max-width: 640px) {
  .company_mvv__box1 {
    margin-top: 4.672vw;
  }
}
@media all and (max-width: 640px) {
  .company_mvv__box1 {
    margin-bottom: 14.016vw;
  }
}
.company_mvv__list {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media all and (max-width: 640px) {
  .company_mvv__list {
    display: block;
    margin-top: 11.68vw;
  }
}
.company_mvv__list__item {
  border: 1px solid rgba(255, 255, 255, 0.43);
  overflow: hidden;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5em 1em 0.5em;
  position: relative;
  z-index: 5;
  gap: 1.5em;
  letter-spacing: 0;
  scale: 1.125;
}
@media all and (max-width: 640px) {
  .company_mvv__list__item {
    width: 74.752vw;
    scale: 1;
    margin: -14.9504vw auto 0;
  }
}
.company_mvv__list__item:before {
  content: "";
  background: linear-gradient(135deg, #fff 0%, rgba(83, 83, 83, 0.131) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.13;
}
.company_mvv__list__heading {
  line-height: 1.5;
  font-size: 1.125em;
  letter-spacing: 0.1em;
}
@media (max-width: 840px) {
  .company_mvv__list__heading {
    font-size: 1em;
  }
}
@media all and (max-width: 640px) {
  .company_mvv__list__heading {
    font-size: 1.25em;
  }
}
.company_mvv__list__text {
  font-size: 0.875em;
  line-height: 1.75;
  min-height: 3.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2;
}
@media (max-width: 820px) {
  .company_mvv__list__text {
    font-size: 0.75em;
  }
}
@media all and (max-width: 640px) {
  .company_mvv__list__text {
    font-size: 0.875em;
  }
}
.company_mvv__box2 {
  max-width: 910px;
  margin: 0 auto;
  padding: 2em 2.5em;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media all and (max-width: 640px) {
  .company_mvv__box2 {
    padding: 2.5rem 0.4rem;
  }
}
.company_mvv__box2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #fff;
  opacity: 0.2;
  background: linear-gradient(-45deg, #fff 0%, #808080 100%);
}
@media all and (max-width: 640px) {
  .company_mvv__box2 {
    flex-direction: column;
  }
}
.company_mvv__box2__heading {
  font-size: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid #fff;
  text-align: center;
  width: 9em;
  border-radius: 50%;
}
.company_mvv__box2__content {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 640px) {
  .company_mvv__box2__content {
    max-width: 100%;
    padding: 0 1em;
  }
}
.company_mvv__box2__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35em;
  line-height: 1.75;
}
.company_mvv__box2__list li {
  display: flex;
}
.company_mvv__box2__list li:before {
  content: "・";
}

.bg-grey {
  background-color: #f2f2f2;
}

.company_outline {
  padding: 110px 0 50px;
}
@media all and (max-width: 640px) {
  .company_outline {
    padding: 25.696vw 0 0;
  }
}
.company_outline__box {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 640px) {
  .company_outline__box {
    padding: 0;
    margin-top: 11.68vw;
    display: block;
  }
}
.company_outline__imgWrap {
  width: 56.31%;
  position: relative;
  overflow: hidden;
  border-radius: 1em;
}
.company_outline__imgWrap:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #1F31BA;
  mix-blend-mode: hue;
  opacity: 0.55;
}
@media all and (max-width: 1024px) {
  .company_outline__imgWrap {
    width: 45%;
  }
}
@media all and (max-width: 640px) {
  .company_outline__imgWrap {
    width: calc(100% + 60px);
    left: -30px;
    border-radius: 0;
  }
}
@media all and (max-width: 428px) {
  .company_outline__imgWrap {
    width: calc(100% + 14.016vw);
    left: -7.008vw;
  }
}
@media all and (max-width: 640px) {
  .company_outline__imgWrapIn {
    display: flex;
    width: 800%;
    animation: infinity-scroll-left 20s infinite linear 0s both;
  }
}
.company_outline__imgList {
  display: flex;
}
@media all and (min-width: 641px) {
  .company_outline__imgList {
    flex-wrap: wrap;
  }
  .company_outline__imgList:nth-child(2) {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .company_outline__imgList {
    width: 50%;
  }
}
.company_outline__img1 {
  padding-top: 52%;
  width: 100%;
}
@media all and (max-width: 640px) {
  .company_outline__img1 {
    width: 50%;
    padding-top: 18%;
  }
}
.company_outline__img2 {
  padding-top: 42%;
  width: 50%;
}
@media all and (max-width: 640px) {
  .company_outline__img2 {
    width: 25%;
    padding-top: 18%;
  }
}
.company_outline__img3 {
  padding-top: 42%;
  width: 50%;
}
@media all and (max-width: 640px) {
  .company_outline__img3 {
    width: 25%;
    padding-top: 18%;
  }
}
.company_outline__content {
  width: 40%;
}
@media all and (max-width: 1024px) {
  .company_outline__content {
    width: 50%;
  }
}
@media all and (max-width: 640px) {
  .company_outline__content {
    width: 100%;
    margin-top: 11.68vw;
  }
}
.company_outline__list {
  display: grid;
  grid-template-columns: 1fr;
  line-height: 2;
  gap: 1.38em;
  font-size: 0.875em;
}
.company_outline__list__row {
  display: flex;
}
.company_outline__list dt {
  width: 7em;
  flex-shrink: 0;
  font-weight: bold;
}
.company_outline__list .list li {
  padding-left: 1em;
  position: relative;
}
.company_outline__list .list li:before {
  content: "-";
  position: absolute;
  left: 0;
}

.company_history {
  padding: 110px 0;
}
@media all and (max-width: 640px) {
  .company_history {
    padding: 25.696vw 0;
  }
}
.company_history__table {
  max-width: 1030px;
  margin: 0 auto;
}
@media all and (max-width: 640px) {
  .company_history__table {
    margin-top: 11.68vw;
  }
}
.company_history__row {
  padding: 1.5em 0;
  border-top: 1px solid #242424;
}
@media all and (min-width: 641px) {
  .company_history__row {
    display: flex;
    gap: 2.5em;
  }
}
@media all and (max-width: 640px) {
  .company_history__row {
    padding-top: 2.5em;
  }
}
.company_history__row:first-child {
  border-top: 0;
}
@media all and (min-width: 641px) {
  .company_history__year {
    width: 190px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    border-right: 1px solid #242424;
    align-items: center;
  }
}
@media all and (max-width: 640px) {
  .company_history__year {
    height: 4.672vw;
    margin-bottom: 3.504vw;
  }
  .company_history__year img {
    height: 100%;
    width: auto;
  }
}
.company_history__content {
  width: 100%;
}
@media all and (max-width: 640px) {
  .company_history__content {
    border-left: 1px solid #242424;
    padding-left: 5.84vw;
  }
}
.company_history__topics .row {
  width: 100%;
  line-height: 1.8;
  padding: 0.9em 0;
  display: flex;
  border-top: 1px solid #DEDEDE;
}
.company_history__topics .row:first-child {
  border-top: 0;
}
.company_history__topics dt {
  font-weight: normal;
  font-size: 1.125em;
  line-height: 1.4;
  width: 6em;
  flex-shrink: 0;
}
@media all and (max-width: 640px) {
  .company_history__topics dt {
    font-size: 0.75em;
    line-height: 2;
    width: 4em;
  }
}
.company_history__topics dd {
  font-size: 0.875em;
}

.company_sdgs {
  background-color: #fff;
  padding: 100px 0 70px;
}
@media all and (max-width: 640px) {
  .company_sdgs {
    padding: 23.36vw 0 11.68vw;
  }
}
.company_sdgs__header {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
  margin-bottom: 55px;
}
@media all and (max-width: 640px) {
  .company_sdgs__header {
    margin-bottom: 11.68vw;
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
}
.company_sdgs__header .commonHeading {
  width: 100%;
}
.company_sdgs__header__img {
  width: 57.9328vw;
}
@media all and (min-width: 641px) {
  .company_sdgs__header__img {
    width: 248px;
  }
}
.company_sdgs__lead {
  max-width: 1030px;
  margin: 0 auto 30px;
}
@media all and (max-width: 640px) {
  .company_sdgs__lead {
    margin-bottom: 7.008vw;
  }
}
.company_sdgs__list {
  max-width: 1030px;
  margin: 0 auto;
}
.company_sdgs__list__item {
  padding: 70px 0;
  border-top: 1px solid #242424;
}
.company_sdgs__list__item:first-child {
  border-top: 0;
}
@media all and (max-width: 640px) {
  .company_sdgs__list__item {
    padding: 11.68vw 0;
  }
}
.company_sdgs__list__heading {
  display: flex;
  align-items: center;
  font-size: 1.3125em;
  font-weight: bold;
  gap: 1.6em;
  line-height: 1.8;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media all and (max-width: 640px) {
  .company_sdgs__list__heading {
    margin-bottom: 7.008vw;
    font-size: 1.125em;
    gap: 1em;
  }
}
@media all and (max-width: 640px) and (max-width: 640px) {
  .company_sdgs__list__heading .num {
    height: 9.344vw;
  }
  .company_sdgs__list__heading .num img {
    height: 100%;
    width: auto;
  }
}
.company_sdgs__list__lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media all and (max-width: 640px) {
  .company_sdgs__list__lower {
    flex-direction: column-reverse;
  }
}
.company_sdgs__list .list {
  width: 56%;
  font-size: 0.875em;
}
@media all and (max-width: 640px) {
  .company_sdgs__list .list {
    width: 100%;
  }
}
.company_sdgs__list .list li {
  padding-left: 1.2em;
  position: relative;
}
.company_sdgs__list .list li:before {
  content: "・";
  position: absolute;
  left: 0;
}
.company_sdgs__list__icons {
  width: 40%;
  display: flex;
  gap: 0.35em;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.company_sdgs__list__icons li {
  width: calc((100% - 1.05em) / 4);
}
@media all and (max-width: 640px) {
  .company_sdgs__list__icons {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 7.008vw;
  }
}

.bkWrap {
  padding: 110px 0 90px;
  position: relative;
  background-color: #242424;
}
@media all and (max-width: 640px) {
  .bkWrap {
    padding: 21.024vw 0 21.024vw;
  }
}
.bkWrap:before {
  content: "";
  background-image: url(../images/bg-dot.png);
  background-size: 300px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-burn;
}

.pagerWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager {
  display: flex;
  margin-top: 100px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 0 40px;
  position: relative;
}
@media all and (min-width: 641px) {
  .pager {
    min-width: 346px;
  }
}
@media all and (max-width: 640px) {
  .pager {
    min-width: 80.8256vw;
  }
}
@media all and (max-width: 640px) {
  .pager {
    padding: 0 9.344vw;
    gap: 2.336vw 4.672vw;
  }
}
.pager li.prevWrap {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.pager li.nextWrap {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.pager a:hover {
  scale: 1.2;
}
.pager__link {
  height: 20px;
  line-height: 18px;
  min-width: 20px;
  text-align: center;
  padding: 0 0.2em;
  background-color: #fff;
  transition: all 0.3s ease 0s;
  border: 1px solid #242424;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  color: #242424;
  display: flex;
  justify-content: center;
}
.pager__link:hover {
  text-decoration: none;
}
.pager__link.is-current {
  background-color: #242424;
  color: #fff;
  border-color: #fff;
}
@media all and (max-width: 640px) {
  .pager__link {
    height: 4.672vw;
    line-height: 4.2048vw;
    min-width: 4.672vw;
    font-size: 2.8032vw;
  }
}
.pager__link.prev, .pager__link.next {
  width: 26px;
  height: 26px;
  background-color: #242424;
  background-image: url(../images/ic_arrow-w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 45%;
}
.pager__link.prev:before, .pager__link.next:before {
  content: "";
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 100%;
  border: 1px solid #242424;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  position: absolute;
  box-sizing: border-box;
}
.pager__link.prev:before:hover, .pager__link.next:before:hover {
  text-decoration: none;
}
.pager__link.prev:hover, .pager__link.next:hover {
  scale: 1;
}
.pager__link.prev:hover:before, .pager__link.next:hover:before {
  scale: 1.4;
}
@media all and (max-width: 640px) {
  .pager__link.prev, .pager__link.next {
    width: 6.0736vw;
    height: 6.0736vw;
  }
}
.pager__link.prev {
  rotate: 180deg;
}
.pager.action .pager__link.prev:before, .pager.action .pager__link.next:before {
  border-color: #fff;
}

.prevBTWrap {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 640px) {
  .prevBTWrap {
    margin-top: 21.024vw;
  }
}
.prevBTWrap a {
  width: 100%;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  background-color: #fff;
  border: 1px solid #242424;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  letter-spacing: 0.1em;
  padding: 0.66em 0.66em 0.66em 1.33em;
  border-radius: 4em;
  line-height: 1.6;
}
@media all and (max-width: 640px) {
  .prevBTWrap a {
    max-width: 51.392vw;
  }
}
.prevBTWrap a:hover {
  text-decoration: none;
}
.prevBTWrap a:hover .ic:before {
  background-color: #242424;
}
.prevBTWrap a:hover .ic line {
  stroke: #fff;
}
.prevBTWrap a .ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  rotate: 180deg;
}
@media all and (max-width: 640px) {
  .prevBTWrap a .ic {
    width: 7.4752vw;
    height: 7.4752vw;
  }
}
.prevBTWrap a .ic:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease 0s;
}
.prevBTWrap a .ic:before:hover {
  text-decoration: none;
}
.prevBTWrap a .ic svg {
  position: relative;
  z-index: 10;
}
.prevBTWrap a .ic svg line {
  transition: all 0.3s ease 0s;
}
.prevBTWrap a .ic svg line:hover {
  text-decoration: none;
}
.prevBTWrap a .ic .arrow {
  width: 30%;
}
.prevBTWrap a .text {
  font-size: 0.875em;
  font-weight: normal;
}
@media all and (max-width: 640px) {
  .prevBTWrap a .text {
    font-size: 0.6875em;
  }
}

.recruitHead {
  background-color: #242424;
  display: block;
  padding: 100px 0;
  position: relative;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  color: #fff;
}
.recruitHead:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .recruitHead {
    padding: 14.016vw 0;
  }
}
.recruitHead:hover .ic:before {
  background-color: #fff;
  scale: 1.4;
}
.recruitHead:hover .ic line {
  stroke: #000;
}
.recruitHead:hover .recruitHead__bg {
  opacity: 0.54;
  scale: 1.15;
}
.recruitHead__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/foot_recruit.jpg);
  mix-blend-mode: overlay;
  opacity: 0.34;
  transition: all 0.3s ease 0s;
}
.recruitHead__bg:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .recruitHead__bg {
    background-image: url(../images/foot_recruit-sp.jpg);
  }
}
.recruitHead__box {
  max-width: 980px;
  margin: 0 auto;
}
@media all and (min-width: 641px) {
  .recruitHead__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.recruitHead__lead {
  font-weight: bold;
  font-size: 1.875em;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.recruitHead__text {
  font-size: 0.875em;
}
@media all and (max-width: 640px) {
  .recruitHead__text {
    font-size: 0.86875em;
  }
}
.recruitHead__btWrap .ic {
  rotate: 90deg;
}
@media all and (max-width: 640px) {
  .recruitHead__btWrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 7.008vw;
  }
  .recruitHead__btWrap .commonBT {
    flex-direction: row-reverse;
  }
  .recruitHead__btWrap .commonBT .ic {
    margin-right: 0;
    margin-left: 4.672vw;
  }
}

.recruitWrap {
  background-color: #fff;
  padding: 70px 50px 110px;
}
@media all and (max-width: 640px) {
  .recruitWrap {
    padding: 14.016vw 5.84vw;
  }
}
.recruitWrap__heading {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 80px;
}
@media all and (max-width: 640px) {
  .recruitWrap__heading {
    margin-bottom: 11.68vw;
  }
}
.recruitWrap__bt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #242424;
  color: #fff;
  gap: 0.2em;
  padding: 1em 0.5em;
  line-height: 1.6;
  transition: opacity 0.3s ease 0s;
}
@media (hover: hover) {
  .recruitWrap__bt:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.recruitWrap__bt .ja {
  font-size: 0.75em;
  font-family: serif;
}

.recruit_requirements {
  max-width: 800px;
  margin: 0 auto 80px;
}
@media all and (max-width: 640px) {
  .recruit_requirements {
    margin-bottom: 14.016vw;
  }
}
.recruit_requirements .row {
  line-height: 1.6;
  padding: 1.2em 0;
}
@media all and (min-width: 641px) {
  .recruit_requirements .row {
    display: flex;
  }
  .recruit_requirements .row dt {
    width: 12em;
    padding-right: 2em;
    position: relative;
    flex-shrink: 0;
  }
  .recruit_requirements .row dt:after {
    content: ":";
    position: absolute;
    right: 0;
    top: 0;
  }
  .recruit_requirements .row dd {
    width: 100%;
    padding-left: 3em;
  }
}
@media all and (max-width: 640px) {
  .recruit_requirements .row {
    border-block-start: 1px solid #313131;
  }
  .recruit_requirements .row:first-child {
    border-top: 0;
  }
  .recruit_requirements .row dt {
    margin-bottom: 0.6em;
    font-weight: bold;
  }
}

.thanksWrap {
  background-color: #fff;
  padding: 70px 50px 110px;
}
@media all and (max-width: 640px) {
  .thanksWrap {
    padding: 14.016vw 5.84vw;
  }
}
.thanksWrap__heading {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 80px;
}
@media all and (max-width: 640px) {
  .thanksWrap__heading {
    margin-bottom: 11.68vw;
  }
}
.thanksWrap__text {
  max-width: 640px;
  margin: 0 auto;
}

#topicsListWrap {
  transition: opacity 0.5s 0.3s;
  opacity: 0;
  min-height: 400px;
  padding: 80px 50px 50px;
  background-color: #fff;
}
#topicsListWrap.loaded {
  opacity: 1;
}
@media all and (max-width: 640px) {
  #topicsListWrap {
    padding: 14.016vw 5.84vw;
  }
}

.topicsList {
  display: flex;
  flex-direction: column;
}
.topicsList__item {
  padding: 2.2em 0;
  border-bottom: 1px solid #242424;
}
@media all and (max-width: 640px) {
  .topicsList__item {
    padding: 2.4em 0;
  }
}
.topicsList__item:first-child {
  padding-top: 0;
}
.topicsList__item:last-child {
  padding-bottom: 0;
  border-bottom-width: 0;
}
.topicsList__link {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .topicsList__link {
    flex-direction: column;
  }
}
.topicsList__link:hover {
  text-decoration: none;
}
@media all and (min-width: 641px) {
  .topicsList__link:hover .topicsList__arrow {
    background-color: #242424;
    width: 80px;
  }
}
@media all and (min-width: 641px) and (max-width: 640px) {
  .topicsList__link:hover .topicsList__arrow {
    width: 38px;
  }
}
@media all and (min-width: 641px) {
  .topicsList__link:hover .topicsList__arrow path {
    fill: #fff;
  }
}
.topicsList__content {
  display: grid;
  width: calc(100% - 100px);
  grid-template-columns: 1fr;
  font-size: 0.875em;
  gap: 1em;
}
@media all and (max-width: 640px) {
  .topicsList__content {
    width: 100%;
  }
}
.topicsList__header {
  font-size: 0.851em;
  display: flex;
  align-items: center;
}
.topicsList__date {
  padding-right: 1em;
  font-weight: normal;
}
.topicsList__cat {
  padding-left: 1em;
  color: #242424;
}
.topicsList__title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media all and (max-width: 640px) {
  .topicsList__title {
    font-size: 1.14em;
  }
}
@media all and (min-width: 641px) {
  .topicsList__excerpt {
    font-size: 0.851em;
  }
}
.topicsList__arrow {
  transition: all 0.3s ease 0s;
  background-color: #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  flex-shrink: 0;
  border-radius: 19px;
}
.topicsList__arrow:hover {
  text-decoration: none;
}
.topicsList__arrow path {
  fill: #fff;
}
.topicsList__arrow svg {
  display: block;
}
.topicsList__arrow path {
  transition: all 0.3s ease 0s;
}
.topicsList__arrow path:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .topicsList__arrow {
    margin-top: 4.672vw;
    width: 100%;
    height: 38px;
  }
}

.articleWrap {
  padding: 100px 0;
}

.singleHeader {
  display: flex;
  margin-bottom: 1em;
  align-items: center;
  font-size: 0.875em;
}
@media all and (max-width: 640px) {
  .singleHeader {
    font-size: 0.75em;
  }
}

.singleDate {
  font-weight: normal;
  display: block;
  line-height: 1.4;
  padding-right: 1em;
}

.singleCat {
  padding-left: 1em;
  color: #242424;
}

.singleTitle {
  font-weight: bold;
  color: #242424;
  line-height: 1.6;
  font-size: 1.2857142857em;
  margin-bottom: 2em;
}

.singleContent {
  font-size: 0.875em;
}
@media all and (max-width: 640px) {
  .singleContent {
    font-size: 0.75em;
  }
}
.singleContent p {
  margin-bottom: 2em;
}
.singleContent figure {
  margin: 2em 0;
}
.singleContent h2 {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.singleContent img {
  height: auto;
}

#modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
#modal #modalIn {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  padding: 50px 80px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 640px) {
  #modal #modalIn {
    padding: 14.016vw 7.008vw;
  }
}
#modal #modalContent {
  background-color: #fff;
  padding: 100px 40px;
  width: 100%;
  max-height: 100%;
  max-width: 940px;
  border: 1px solid #242424;
  position: relative;
  border-radius: 1em;
  display: flex;
}
@media all and (max-width: 640px) {
  #modal #modalContent {
    padding: 14.016vw 4.672vw;
  }
}
#modal #modalContentIn {
  overflow: auto;
  width: 100%;
}
#modal .modalInner {
  max-width: 760px;
  margin: 0 auto;
}
#modal .modalPrev {
  position: absolute;
  top: 50%;
  left: 20px;
  background-color: #fff;
  filter: invert(1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url(../images/ic_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 36%;
  rotate: 180deg;
  translate: 0 -50%;
  display: block;
  cursor: pointer;
}
#modal .modalPrev:before {
  content: "";
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  position: absolute;
  box-sizing: border-box;
}
#modal .modalPrev:before:hover {
  text-decoration: none;
}
#modal .modalPrev:hover:before {
  scale: 1.2;
}
@media all and (max-width: 640px) {
  #modal .modalPrev {
    width: 6.0736vw;
    height: 6.0736vw;
    left: 3.2704vw;
  }
}
#modal .modalNext {
  position: absolute;
  top: 50%;
  right: 20px;
  background-color: #fff;
  filter: invert(1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url(../images/ic_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 36%;
  translate: 0 -50%;
  display: block;
  cursor: pointer;
}
#modal .modalNext:before {
  content: "";
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  position: absolute;
  box-sizing: border-box;
}
#modal .modalNext:before:hover {
  text-decoration: none;
}
#modal .modalNext:hover:before {
  scale: 1.2;
}
@media all and (max-width: 640px) {
  #modal .modalNext {
    width: 6.0736vw;
    height: 6.0736vw;
    right: 3.2704vw;
  }
}
#modal #modalClose {
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #242424;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  translate: -50% 50%;
  cursor: pointer;
}
#modal #modalClose:before, #modal #modalClose:after {
  content: "";
  transition: all 0.3s ease 0s;
  width: 50%;
  height: 1px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  position: absolute;
  background-color: #fff;
  box-sizing: border-box;
}
#modal #modalClose:before:hover, #modal #modalClose:after:hover {
  text-decoration: none;
}
#modal #modalClose:before {
  rotate: 45deg;
}
#modal #modalClose:after {
  rotate: -45deg;
}
@media all and (max-width: 640px) {
  #modal #modalClose {
    width: 11.68vw;
    height: 11.68vw;
  }
}