@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Bold_Resize.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Medium_Resize.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Regular_Resize.woff2");
  font-weight: 400;
}
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Light_Resize.woff2");
  font-weight: 300;
}
/*--------------------------------------------------------------------------
fadeイベント（TOPのfadeイベント専用）
--------------------------------------------------------------------------*/
._ncoke_fade,
._ncoke_fade_upper,
._ncoke_fade_under,
._ncoke_fade_right,
._ncoke_fade_left {
  opacity: 0;
}

._ncoke_in ._ncoke_fade {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._ncoke_in ._ncoke_fade_upper {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_upper_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_upper_in {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._ncoke_in ._ncoke_fade_under {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_under_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_under_in {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._ncoke_in ._ncoke_fade_right {
  animation-delay: 0.3s;
  animation-duration: 0.5s;
  animation-name: ncoke_fade_right_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_right_in {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._ncoke_in ._ncoke_fade_left {
  animation-delay: 0.3s;
  animation-duration: 0.5s;
  animation-name: ncoke_fade_left_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_left_in {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------------------
fadeイベント（採用メッセージのfadeイベント専用）
--------------------------------------------------------------------------*/
._ncoke_fade_msg {
  opacity: 0;
}

._ncoke_msg_in ._ncoke_fade_msg {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_msg_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_msg_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------
fadeイベント（通常用）
--------------------------------------------------------------------------*/
._fade,
._fade_upper,
._fade_under,
._fade_right,
._fade_left,
._fade_zoom {
  opacity: 0;
}

._fade_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._fade_upper_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_upper_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_upper_in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._fade_under_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_under_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_under_in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._fade_right_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_right_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_right_in {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._fade_left_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_left_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_left_in {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._fade_zoom_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_zoom_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_zoom_in {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
._fade_left_loop_in {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: fade_left_loop_in;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_left_loop_in {
  0% {
    transform: translateX(-7px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-7px);
  }
}
._fade_right_loop_in {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: fade_right_loop_in;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_right_loop_in {
  0% {
    transform: translateX(7px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(7px);
  }
}
* {
  box-sizing: border-box;
  color: unset;
  font-feature-settings: "palt";
  text-align: justify;
}

html {
  font-family: "NotoSansJP-Resize", sans-serif;
  background-color: #FFF;
}

.ryumin {
  font-family: "a-otf-ryumin-pr6n", serif;
}

.century {
  font-family: "century-gothic", sans-serif;
}

body {
  position: relative;
}

figure {
  margin: unset;
}

img {
  display: block;
}

a,
button {
  text-decoration: none;
  transition: 0.1s linear;
}
.outer {
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}

.inner {
  max-width: 62.5vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
.text-animation {
  display: none;
}
.text-animation span {
  opacity: 0;
}
.text-animation.appeartext {
  display: block;
}
.text-animation.appeartext span {
  animation: text_anime_on 1s linear forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header {
  width: 100%;
  position: fixed;
  z-index: 10;
}
.header.outer {
  padding-right: unset;
}
.header .inner {
  max-width: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo-area {
  margin-right: 1.25vw;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6));
}
.header__logo-area a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__logo-area a img {
  max-width: 18.12vw;
  width: 100%;
  margin-right: 1.25vw;
}
.header__logo-area a p {
  color: #FFF;
  font-size: 1.87vw;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .header__logo-area a p {
    font-size: 0.87vw;
  }
}
@media screen and (min-width: 1601px) {
  .header__logo-area a p {
    font-size: 0.87vwpx;
  }
}
.header__btn-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__btn-area__new-graduate a, .header__btn-area__mid-career a {
  height: 5vw;
  padding: 0 1.87vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #FFF;
  font-size: 2.12vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .header__btn-area__new-graduate a, .header__btn-area__mid-career a {
    font-size: 1.12vw;
  }
}
@media screen and (min-width: 1601px) {
  .header__btn-area__new-graduate a, .header__btn-area__mid-career a {
    font-size: 1.12vwpx;
  }
}
.header__btn-area__new-graduate a::after, .header__btn-area__mid-career a::after {
  content: "";
  width: 1.25vw;
  height: 1.25vw;
  margin: 0.62vw auto 0;
  display: block;
  background-image: url(../img/common/icon_arrow.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.header__btn-area__new-graduate a {
  background-color: #e70606;
}
.header__btn-area__mid-career a {
  background-color: #ab010b;
}
.header__btn-area__lang {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 1.25vw;
}
.header__btn-area__lang__jp, .header__btn-area__lang__en {
  width: 2.81vw;
  height: 2.81vw;
  border: solid 1px #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
  color: #FFF;
  font-size: 2.12vw;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .header__btn-area__lang__jp, .header__btn-area__lang__en {
    font-size: 1.12vw;
  }
}
@media screen and (min-width: 1601px) {
  .header__btn-area__lang__jp, .header__btn-area__lang__en {
    font-size: 1.12vwpx;
  }
}
.header__btn-area__lang__jp.__on, .header__btn-area__lang__en.__on {
  cursor: auto;
  background-color: #FFF;
  color: #000;
}
.header__btn-area__lang__jp.__on:hover, .header__btn-area__lang__en.__on:hover {
  opacity: unset;
}
.header__btn-area__lang__jp {
  margin-right: 0.62vw;
}
.humb-nav__navArea__nav {
  width: 50vw;
  display: block;
  position: fixed;
  top: 5vw;
  right: -50vw;
  background-color: #FFF;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
.humb-nav__navArea__nav__inner ul li .title {
  padding: 1.5em;
  display: block;
  text-decoration: none;
  transition-duration: 0.2s;
  color: #333;
  font-size: 2vw;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .humb-nav__navArea__nav__inner ul li .title {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1601px) {
  .humb-nav__navArea__nav__inner ul li .title {
    font-size: 1vwpx;
  }
}
.humb-nav__navArea__nav__inner ul li .title:hover {
  background-color: #e4e4e4;
}
.humb-nav__navArea__nav__inner ul li .no-bg-color:hover {
  background-color: unset;
}
.humb-nav__navArea__nav__inner > ul {
  list-style: none;
  margin-bottom: 3.12vw;
  padding: 0;
}
.humb-nav__navArea__nav__inner > ul > li {
  margin: 0;
  border-bottom: solid 2px #000;
  position: relative;
}
.humb-nav__navArea__nav__inner > ul > li > p {
  border-bottom: dashed 1px #000;
}
.humb-nav__navArea__nav__inner > ul > li > ul > li:not(:last-child) a {
  border-bottom: solid 1px #000;
}
.humb-nav__navArea__nav__inner > ul > li > ul > li > a {
  padding: 1.5em;
  margin-left: 3em;
  display: block;
  text-decoration: none;
  transition-duration: 0.2s;
  color: #333;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .humb-nav__navArea__nav__inner > ul > li > ul > li > a {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1601px) {
  .humb-nav__navArea__nav__inner > ul > li > ul > li > a {
    font-size: 1vwpx;
  }
}
.humb-nav__navArea__nav__inner > ul > li > ul > li > a:hover {
  background-color: #e4e4e4;
}
.humb-nav__navArea__nav__inner .btn-area {
  padding: 0 1.25vw;
  margin-bottom: 3.12vw;
  display: flex;
  justify-content: space-between;
}
.humb-nav__navArea__nav__inner .btn-area__contact, .humb-nav__navArea__nav__inner .btn-area__corpolate, .humb-nav__navArea__nav__inner .btn-area__carbonneutral {
  width: 49%;
}
.humb-nav__navArea__nav__inner .btn-area__contact a, .humb-nav__navArea__nav__inner .btn-area__corpolate a, .humb-nav__navArea__nav__inner .btn-area__carbonneutral a {
  height: 6.25vw;
  padding: 1.25vw;
  border: solid 2px #e5e5e5;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #e70606;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .humb-nav__navArea__nav__inner .btn-area__contact a, .humb-nav__navArea__nav__inner .btn-area__corpolate a, .humb-nav__navArea__nav__inner .btn-area__carbonneutral a {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1601px) {
  .humb-nav__navArea__nav__inner .btn-area__contact a, .humb-nav__navArea__nav__inner .btn-area__corpolate a, .humb-nav__navArea__nav__inner .btn-area__carbonneutral a {
    font-size: 1vwpx;
  }
}
.humb-nav__navArea__nav__inner .btn-area__contact a::before, .humb-nav__navArea__nav__inner .btn-area__corpolate a::before, .humb-nav__navArea__nav__inner .btn-area__carbonneutral a::before {
  content: "";
  margin-right: 1.25vw;
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.humb-nav__navArea__nav__inner .btn-area__contact {
  margin-right: 1.87vw;
}
.humb-nav__navArea__nav__inner .btn-area__contact a::before {
  width: 2vw;
  height: 1.56vw;
  background-image: url(../img/common/icon_mail.png);
}
.humb-nav__navArea__nav__inner .btn-area__corpolate a::before {
  width: 1.81vw;
  height: 1.81vw;
  background-image: url(../img/common/icon_login.png);
}
.humb-nav__navArea__nav__inner .btn-area__carbonneutral a {
  color: #00b289;
}
.humb-nav__navArea__nav__inner .btn-area__carbonneutral a::before {
  width: 1.81vw;
  height: 1.81vw;
  background-image: url(../img/common/icon_login_green.png);
}
.humb-nav__navArea__toggle {
  width: 5vw;
  height: 5vw;
  display: block;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
  background-color: #000;
}
.humb-nav__navArea__toggle span {
  width: 3.12vw;
  height: 0.37vw;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #FFF;
  transition: all 0.5s;
}
.humb-nav__navArea__toggle span:nth-child(1) {
  top: 0.93vw;
}
.humb-nav__navArea__toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.humb-nav__navArea__toggle span:nth-child(3) {
  bottom: 0.93vw;
}
.humb-nav__navArea__mask {
  display: none;
  transition: all 0.5s;
}

.humb-nav__navArea.open .humb-nav__navArea__nav {
  height: calc(100vh - 5vw);
  top: 5vw;
  right: 0;
  opacity: 1;
}
.humb-nav__navArea.open .humb-nav__navArea__toggle span {
  background-color: #FFF;
}
.humb-nav__navArea.open .humb-nav__navArea__toggle span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-315deg);
}
.humb-nav__navArea.open .humb-nav__navArea__toggle span:nth-child(2) {
  opacity: 0;
}
.humb-nav__navArea.open .humb-nav__navArea__toggle span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(315deg);
}
.humb-nav__navArea.open .humb-nav__navArea__mask {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 5vw;
  left: 0;
  background-color: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

.information {
  width: 100%;
  height: 32.81vw;
  padding-top: 5vw;
  padding-bottom: 5vw;
  margin-bottom: 18.75vw;
  background-image: url(../img/top/information_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.information .inner {
  width: 100%;
  height: 100%;
  max-width: unset;
  position: relative;
}
.information__title h2 {
  margin-bottom: 1.87vw;
  text-align: center;
}
.information__title h2 span {
  text-shadow: 0px 0px 12px rgb(0, 0, 0);
  color: #FFF;
  font-size: 5.5vw;
  font-weight: 100;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .information__title h2 span {
    font-size: 4.5vw;
  }
}
@media screen and (min-width: 1601px) {
  .information__title h2 span {
    font-size: 4.5vwpx;
  }
}
.information__title h2 span:nth-child(2) {
  font-weight: 700;
}
.information__title p {
  text-align: center;
  color: #FFF;
  font-size: 2.12vw;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .information__title p {
    font-size: 1.12vw;
  }
}
@media screen and (min-width: 1601px) {
  .information__title p {
    font-size: 1.12vwpx;
  }
}
.information__btn-area {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -18.75vw;
}
.information__btn-area__new-graduate, .information__btn-area__mid-career {
  position: relative;
  width: 34.37vw;
  height: 28.12vw;
}
.information__btn-area__new-graduate__bg, .information__btn-area__mid-career__bg {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.information__btn-area__new-graduate__contents, .information__btn-area__mid-career__contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.information__btn-area__new-graduate__contents h3, .information__btn-area__mid-career__contents h3 {
  position: absolute;
  top: 4.68vw;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-size: 3.25vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .information__btn-area__new-graduate__contents h3, .information__btn-area__mid-career__contents h3 {
    font-size: 2.25vw;
  }
}
@media screen and (min-width: 1601px) {
  .information__btn-area__new-graduate__contents h3, .information__btn-area__mid-career__contents h3 {
    font-size: 2.25vwpx;
  }
}
.information__btn-area__new-graduate__contents a, .information__btn-area__mid-career__contents a {
  padding: 3.75vw 3.12vw;
  border: solid 1px #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3.12vw;
  white-space: nowrap;
  color: #FFF;
  font-size: 3.25vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .information__btn-area__new-graduate__contents a, .information__btn-area__mid-career__contents a {
    font-size: 2.25vw;
  }
}
@media screen and (min-width: 1601px) {
  .information__btn-area__new-graduate__contents a, .information__btn-area__mid-career__contents a {
    font-size: 2.25vwpx;
  }
}
.information__btn-area__new-graduate__contents a:before, .information__btn-area__mid-career__contents a:before {
  content: "";
  width: 2.5vw;
  height: 2.5vw;
  margin-right: 1.25vw;
  display: block;
  background-image: url(../img/common/icon_arrow.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.information__btn-area__new-graduate__bg {
  background-color: #e70606;
}
.information__btn-area__new-graduate a {
  background-color: #e70606;
}
.information__btn-area__mid-career__bg {
  background-color: #ab010b;
}
.information__btn-area__mid-career a {
  background-color: #ab010b;
}

.pamphlet__btn-area {
  margin: 0 auto 5vw;
  text-align: center;
}
.pamphlet__btn-area a {
  padding: 2.5vw 12.5vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #FFF;
  font-size: 2.12vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .pamphlet__btn-area a {
    font-size: 1.12vw;
  }
}
@media screen and (min-width: 1601px) {
  .pamphlet__btn-area a {
    font-size: 1.12vwpx;
  }
}
.pamphlet__btn-area a::after {
  content: "";
  width: 1.25vw;
  height: 1.25vw;
  margin-left: 0.62vw;
  display: block;
  background-image: url(../img/common/icon_arrow.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.footer nav {
  padding-top: 6.25vw;
  padding-bottom: 6.25vw;
  background: #e70606;
}
.footer nav .inner > ul {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.footer nav .inner > ul li p,
.footer nav .inner > ul li a {
  color: #FFF;
  font-size: 1.87vw;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer nav .inner > ul li p,
  .footer nav .inner > ul li a {
    font-size: 0.87vw;
  }
}
@media screen and (min-width: 1601px) {
  .footer nav .inner > ul li p,
  .footer nav .inner > ul li a {
    font-size: 0.87vwpx;
  }
}
.footer nav .inner > ul li p {
  margin-bottom: 1.25vw;
}
.footer nav .inner > ul li a {
  display: block;
}
.footer nav .inner > ul li a:hover {
  text-decoration: underline;
  opacity: 0.6;
}
.footer nav .inner > ul li ul {
  margin-left: 1em;
}
.footer nav .inner > ul li ul li:not(:last-child) {
  margin-bottom: 1.25vw;
}
.footer nav .inner > ul li .title {
  color: #FFF;
  font-size: 2vw;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer nav .inner > ul li .title {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1601px) {
  .footer nav .inner > ul li .title {
    font-size: 1vwpx;
  }
}
.footer nav .inner .btn-area {
  margin-top: 6.25vw;
  display: flex;
  justify-content: center;
}
.footer nav .inner .btn-area__corpolate, .footer nav .inner .btn-area__carbonneutral {
  margin: 0 1.25vw;
}
.footer nav .inner .btn-area__corpolate a, .footer nav .inner .btn-area__carbonneutral a {
  padding: 1.25vw 3.75vw;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #737373;
  color: #FFF;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer nav .inner .btn-area__corpolate a, .footer nav .inner .btn-area__carbonneutral a {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1601px) {
  .footer nav .inner .btn-area__corpolate a, .footer nav .inner .btn-area__carbonneutral a {
    font-size: 1vwpx;
  }
}
.footer nav .inner .btn-area__corpolate a::before, .footer nav .inner .btn-area__carbonneutral a::before {
  content: "";
  width: 0.93vw;
  height: 0.93vw;
  margin-right: 1.25vw;
  display: inline-block;
  background-image: url(../img/common/icon_login_white.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer__box {
  padding-top: 2.5vw;
  padding-bottom: 2.5vw;
}
.footer__box__link {
  margin-bottom: 1.25vw;
}
.footer__box__link ul {
  display: flex;
  justify-content: center;
}
.footer__box__link ul li a {
  color: #000;
  font-size: 1.87vw;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer__box__link ul li a {
    font-size: 0.87vw;
  }
}
@media screen and (min-width: 1601px) {
  .footer__box__link ul li a {
    font-size: 0.87vwpx;
  }
}
.footer__box__link ul li a:hover {
  text-decoration: underline;
  opacity: 0.6;
}
.footer__box__link ul li:not(:last-child)::after {
  content: "｜";
  margin-left: 2em;
  margin-right: 2em;
  display: inline-block;
  color: #000;
  font-size: 1.87vw;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer__box__link ul li:not(:last-child)::after {
    font-size: 0.87vw;
  }
}
@media screen and (min-width: 1601px) {
  .footer__box__link ul li:not(:last-child)::after {
    font-size: 0.87vwpx;
  }
}
.footer__box__copyright {
  text-align: center;
  color: #000;
  font-size: 1.87vw;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer__box__copyright {
    font-size: 0.87vw;
  }
}
@media screen and (min-width: 1601px) {
  .footer__box__copyright {
    font-size: 0.87vwpx;
  }
}

#pagetop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  cursor: pointer;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #000;
  background-image: url(../img/common/icon_pagetop.svg);
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
}

.top-ic .interview-common {
  padding: 4vw 0 0;
}

.interview-common {
  padding: 7vw 0;
  overflow-x: hidden;
}
.interview-common .inner {
  height: 30vw;
}
.interview-common__swiper {
  position: relative;
  opacity: 0;
  transition: opacity 1s 0.6s;
}
.interview-common__swiper.active {
  opacity: 1;
}
.interview-common__slide {
  position: relative;
}
.interview-common .swiper-slide {
  transition: all 0.5s;
}
.interview-common .swiper-slide:hover {
  opacity: 0.7;
}
.interview-common .swiper-slide-active {
  width: 22vw !important;
  transform-origin: top;
}
.interview-common .swiper-slide-active .interview-common__txt-wrap span {
  background-color: #000;
}
.interview-common .swiper-button-next, .interview-common .swiper-button-prev {
  width: 4vw;
  height: 4vw;
  background-size: contain;
  background-repeat: no-repeat;
}
.interview-common .swiper-button-next {
  top: 12.5vw;
  right: -8%;
  background-image: url(../img/interview/interview-common/swiper_next.png);
}
.interview-common .swiper-button-prev {
  top: 12.5vw;
  left: -3%;
  background-image: url(../img/interview/interview-common/swiper_prev.png);
}
.interview-common__txt-wrap {
  position: absolute;
  bottom: 7%;
  left: 0;
  font-weight: 500;
}
.interview-common__txt-wrap span {
  display: inline-block;
  color: #fff;
  background-color: #ff0000;
}
.interview-common__img {
  width: 100%;
}
.interview-common__job {
  font-size: 1.3vw;
  padding: 10px 15px;
}
.interview-common__words {
  font-size: 1.6vw;
  padding: 10px 15px;
}
.interview-common__btn-wrap {
  margin-top: 5vw;
  text-align: center;
}
.interview-common__btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  width: 309px;
  padding: 20px 0;
  transition: opacity 0.3s;
}
.interview-common__btn::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.interview-common__btn:hover {
  opacity: 0.7;
}
.interview-common__btn:hover::after {
  transform: translate(40%, -50%);
}
.interview-common__bnr {
  position: relative;
  display: block;
  width: 62.5vw;
  max-width: 90%;
  margin: 8vw auto 0;
  transition: opacity 0.3s;
}
.interview-common__bnr:hover {
  opacity: 0.7;
  cursor: pointer;
}
.interview-common__bnr img {
  width: 100%;
}
.interview-common__bnr-txt {
  position: absolute;
  top: 27%;
  left: 18%;
  letter-spacing: 0.05em;
  color: #ff0000;
  text-shadow: 0 0 10px white, 0 0 10px white;
  font-size: 2vw;
  font-weight: 500;
}

.sustainability {
  padding-bottom: 12.5vw;
}
.sustainability__bnr {
  max-width: 62.5vw;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  transition: opacity 0.3s;
}
.sustainability__bnr:hover {
  opacity: 0.7;
  cursor: pointer;
}
.sustainability__bnr img {
  width: 100%;
}
.sustainability__bnr-txt {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFF;
  font-size: 2.87vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .sustainability__bnr-txt {
    font-size: 1.87vw;
  }
}
@media screen and (min-width: 1601px) {
  .sustainability__bnr-txt {
    font-size: 1.87vwpx;
  }
}

main p,
main li,
main dt,
main dd,
main th,
main td,
main figcaption {
  color: #000;
  font-size: 2vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  main p,
  main li,
  main dt,
  main dd,
  main th,
  main td,
  main figcaption {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1601px) {
  main p,
  main li,
  main dt,
  main dd,
  main th,
  main td,
  main figcaption {
    font-size: 1vwpx;
  }
}
main .mv__front {
  width: 100%;
  height: 34.37vw;
  position: relative;
  background-image: url(../img/common_new-graduate/new_graduate_bg_230907.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main .mv__front h2 {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
main .mv__front h2 .first-line {
  background: linear-gradient(to right, #e70606 17.5%, #000 0%);
}
main .mv__front h2 .first-line span {
  padding-top: 0.1em;
  padding-bottom: 0.2em;
  display: inline-block;
  color: #FFF;
  font-size: 4.75vw;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  main .mv__front h2 .first-line span {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 1601px) {
  main .mv__front h2 .first-line span {
    font-size: 3.75vwpx;
  }
}
main .mv__front h2 .first-line span:first-child {
  padding-left: 0.1em;
}
main .mv__front h2 .first-line span:last-child {
  padding-right: 0.1em;
}
main .mv__front h2 .first-line span:nth-child(2) {
  padding-left: 0.1em;
}
main .link-area ul {
  margin: 2.5vw auto 6.25vw;
  display: flex;
  justify-content: center;
}
main .link-area ul li {
  color: #000;
  font-size: 2.31vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .link-area ul li {
    font-size: 1.31vw;
  }
}
@media screen and (min-width: 1601px) {
  main .link-area ul li {
    font-size: 1.31vwpx;
  }
}
main .link-area ul li._on {
  color: #e70606;
}
main .link-area ul li:not(:last-child)::after {
  content: "／";
  padding: 0 3em;
  color: #000;
}
main .link-area ul li a:hover {
  opacity: 0.6;
  text-decoration: underline;
}
main .common-contents {
  margin-bottom: 6.25vw;
}
main .common-contents .contents:not(:last-child) {
  margin-bottom: 6.25vw;
}
main .common-contents .contents h2 {
  padding-bottom: 0.62vw;
  margin-bottom: 3.12vw;
  border-bottom: solid 2px #000;
  color: #e70606;
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-contents .contents h2 {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1601px) {
  main .common-contents .contents h2 {
    font-size: 1.5vwpx;
  }
}
main .common-contents .contents .box {
  padding-left: 6.25vw;
}
main .common-contents .contents .box h3 {
  padding: 0 1.87vw;
  margin-bottom: 0.62vw;
  color: #e70606;
  font-size: 2.25vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-contents .contents .box h3 {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1601px) {
  main .common-contents .contents .box h3 {
    font-size: 1.25vwpx;
  }
}
main .common-contents .contents.detail h2, main .common-contents .contents.ratio h2 {
  margin-bottom: 1.25vw;
}
main .common-contents .contents.detail > p, main .common-contents .contents.ratio > p {
  margin-bottom: 5vw;
}
main .common-contents .contents.detail .box:not(:last-of-type), main .common-contents .contents.ratio .box:not(:last-of-type) {
  margin-bottom: 5vw;
}
main .common-contents .contents.detail .box table, main .common-contents .contents.ratio .box table {
  width: 100%;
}
main .common-contents .contents.detail .box table tr td a, main .common-contents .contents.ratio .box table tr td a {
  text-decoration: underline;
}
main .common-contents .contents.detail .box table tr td a:hover, main .common-contents .contents.ratio .box table tr td a:hover {
  opacity: 0.6;
}
main .common-contents .contents.detail .box table tr td span, main .common-contents .contents.ratio .box table tr td span {
  width: 3.12vw;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  background-color: #000;
}
main .common-contents .contents.ratio .box table {
  width: unset;
}
main .common-contents .contents.ratio .box table tr {
  border: unset;
}
main .common-contents .contents.ratio .box table tr th,
main .common-contents .contents.ratio .box table tr td {
  width: unset;
  padding: 0 1.87vw 0.93vw;
}
main .common-contents .contents.ratio .box table tr td {
  text-align: center;
}
main .common-contents .contents.ratio .box P {
  padding: 0 1.87vw;
  font-size: 1.87vw;
}
@media screen and (min-width: 769px) {
  main .common-contents .contents.ratio .box P {
    font-size: 0.87vw;
  }
}
@media screen and (min-width: 1601px) {
  main .common-contents .contents.ratio .box P {
    font-size: 0.87vwpx;
  }
}

main .talent__contents__box {
  padding-left: unset !important;
}
main .talent__contents__box__visual-area {
  width: 47.37vw;
  height: 44.62vw;
  margin: 6.25vw auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
main .talent__contents__box__visual-area .box-under {
  width: 23.75vw;
  height: 23.75vw;
  border: solid 1.43vw rgba(250, 177, 177, 0.65);
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  top: 13.75vw;
  left: 50%;
  transform: translateX(-50%);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
main .talent__contents__box__visual-area .box-under .box-upper {
  width: 16.87vw;
  height: 16.87vw;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #bbbbbb;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
main .talent__contents__box__visual-area .box-under .box-upper > figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .talent__contents__box__visual-area .box-under .box-upper > figure img {
  width: 9.18vw;
  margin-bottom: 1.56vw;
}
main .talent__contents__box__visual-area .box-under .box-upper > figure figcaption {
  text-align: center;
  color: #FFF;
  font-size: 2.87vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .talent__contents__box__visual-area .box-under .box-upper > figure figcaption {
    font-size: 1.87vw;
  }
}
@media screen and (min-width: 1601px) {
  main .talent__contents__box__visual-area .box-under .box-upper > figure figcaption {
    font-size: 1.87vwpx;
  }
}
main .talent__contents__box__visual-area .box-under .box-upper > figure figcaption span {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) {
  main .talent__contents__box__visual-area .box-under .box-upper > figure figcaption span {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1601px) {
  main .talent__contents__box__visual-area .box-under .box-upper > figure figcaption span {
    font-size: 1.5vwpx;
  }
}
main .talent__contents__box__visual-area ul {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
main .talent__contents__box__visual-area ul li {
  width: 16.87vw;
  height: 16.87vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0px 0px 0.62vw rgba(0, 0, 0, 0.2));
}
main .talent__contents__box__visual-area ul li:nth-child(1) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
main .talent__contents__box__visual-area ul li:nth-child(2) {
  position: absolute;
  top: 28.12vw;
  left: 0;
}
main .talent__contents__box__visual-area ul li:nth-child(3) {
  position: absolute;
  top: 28.12vw;
  right: 0;
}
main .talent__contents__box__visual-area ul li h3 {
  padding: 0.31vw !important;
  margin-bottom: unset !important;
  text-align: center;
  color: #000 !important;
  font-size: 1.5vw !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.5 !important;
}
main .talent__contents__box__visual-area ul li h3 span {
  color: #c41a20;
  font-size: 2.87vw;
}
@media screen and (min-width: 769px) {
  main .talent__contents__box__visual-area ul li h3 span {
    font-size: 1.87vw;
  }
}
@media screen and (min-width: 1601px) {
  main .talent__contents__box__visual-area ul li h3 span {
    font-size: 1.87vwpx;
  }
}
main .talent__contents__box > figure {
  display: flex;
}
main .talent__contents__box > figure img {
  width: 50%;
}
main .talent__contents__detail dl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main .talent__contents__detail dl dt {
  margin-bottom: 1.25vw;
  color: #c41a20;
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .talent__contents__detail dl dt {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1601px) {
  main .talent__contents__detail dl dt {
    font-size: 1.5vwpx;
  }
}
main .talent__contents__detail dl dd {
  text-align: center;
  color: #000;
  font-size: 2.12vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  main .talent__contents__detail dl dd {
    font-size: 1.12vw;
  }
}
@media screen and (min-width: 1601px) {
  main .talent__contents__detail dl dd {
    font-size: 1.12vwpx;
  }
}
main .talent__contents__detail dl:not(:last-of-type) {
  margin-bottom: 1.56vw;
}
main .talent__contents__detail dl:not(:last-of-type)::after {
  content: "●";
  margin-top: 1.56vw;
  color: #dadada;
}/*# sourceMappingURL=talent_tab.css.map */