@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: 20px;
  padding-right: 20px;
}

.inner {
  max-width: 1000px;
  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: 20px;
  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: 290px;
  width: 100%;
  margin-right: 20px;
}
.header__logo-area a p {
  color: #FFF;
  font-size: 15;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .header__logo-area a p {
    font-size: 14;
  }
}
@media screen and (min-width: 1601px) {
  .header__logo-area a p {
    font-size: 14px;
  }
}
.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: 80px;
  padding: 0px 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #FFF;
  font-size: 19;
  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: 18;
  }
}
@media screen and (min-width: 1601px) {
  .header__btn-area__new-graduate a, .header__btn-area__mid-career a {
    font-size: 18px;
  }
}
.header__btn-area__new-graduate a::after, .header__btn-area__mid-career a::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: 10px 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: 20px;
}
.header__btn-area__lang__jp, .header__btn-area__lang__en {
  width: 45px;
  height: 45px;
  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: 19;
  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: 18;
  }
}
@media screen and (min-width: 1601px) {
  .header__btn-area__lang__jp, .header__btn-area__lang__en {
    font-size: 18px;
  }
}
.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: 10px;
}
.humb-nav__navArea__nav {
  width: 50vw;
  display: block;
  position: fixed;
  top: 80px;
  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: 17;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .humb-nav__navArea__nav__inner ul li .title {
    font-size: 16;
  }
}
@media screen and (min-width: 1601px) {
  .humb-nav__navArea__nav__inner ul li .title {
    font-size: 16px;
  }
}
.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: 50px;
  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: 17;
  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: 16;
  }
}
@media screen and (min-width: 1601px) {
  .humb-nav__navArea__nav__inner > ul > li > ul > li > a {
    font-size: 16px;
  }
}
.humb-nav__navArea__nav__inner > ul > li > ul > li > a:hover {
  background-color: #e4e4e4;
}
.humb-nav__navArea__nav__inner .btn-area {
  padding: 0 20px;
  margin-bottom: 50px;
  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: 100px;
  padding: 20px;
  border: solid 2px #e5e5e5;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #e70606;
  font-size: 17;
  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: 16;
  }
}
@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: 16px;
  }
}
.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: 20px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.humb-nav__navArea__nav__inner .btn-area__contact {
  margin-right: 30px;
}
.humb-nav__navArea__nav__inner .btn-area__contact a::before {
  width: 32px;
  height: 25px;
  background-image: url(../img/common/icon_mail.png);
}
.humb-nav__navArea__nav__inner .btn-area__corpolate a::before {
  width: 29px;
  height: 29px;
  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: 29px;
  height: 29px;
  background-image: url(../img/common/icon_login_green.png);
}
.humb-nav__navArea__toggle {
  width: 80px;
  height: 80px;
  display: block;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
  background-color: #000;
}
.humb-nav__navArea__toggle span {
  width: 50px;
  height: 6px;
  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: 15px;
}
.humb-nav__navArea__toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.humb-nav__navArea__toggle span:nth-child(3) {
  bottom: 15px;
}
.humb-nav__navArea__mask {
  display: none;
  transition: all 0.5s;
}

.humb-nav__navArea.open .humb-nav__navArea__nav {
  height: calc(100vh - 80px);
  top: 80px;
  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: 80px;
  left: 0;
  background-color: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

.information {
  width: 100%;
  height: 525px;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 300px;
  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: 30px;
  text-align: center;
}
.information__title h2 span {
  text-shadow: 0px 0px 12px rgb(0, 0, 0);
  color: #FFF;
  font-size: 73;
  font-weight: 100;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .information__title h2 span {
    font-size: 72;
  }
}
@media screen and (min-width: 1601px) {
  .information__title h2 span {
    font-size: 72px;
  }
}
.information__title h2 span:nth-child(2) {
  font-weight: 700;
}
.information__title p {
  text-align: center;
  color: #FFF;
  font-size: 19;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .information__title p {
    font-size: 18;
  }
}
@media screen and (min-width: 1601px) {
  .information__title p {
    font-size: 18px;
  }
}
.information__btn-area {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -300px;
}
.information__btn-area__new-graduate, .information__btn-area__mid-career {
  position: relative;
  width: 550px;
  height: 450px;
}
.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: 75px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-size: 37;
  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: 36;
  }
}
@media screen and (min-width: 1601px) {
  .information__btn-area__new-graduate__contents h3, .information__btn-area__mid-career__contents h3 {
    font-size: 36px;
  }
}
.information__btn-area__new-graduate__contents a, .information__btn-area__mid-career__contents a {
  padding: 60px 50px;
  border: solid 1px #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  white-space: nowrap;
  color: #FFF;
  font-size: 37;
  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: 36;
  }
}
@media screen and (min-width: 1601px) {
  .information__btn-area__new-graduate__contents a, .information__btn-area__mid-career__contents a {
    font-size: 36px;
  }
}
.information__btn-area__new-graduate__contents a:before, .information__btn-area__mid-career__contents a:before {
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 20px;
  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 80px;
  text-align: center;
}
.pamphlet__btn-area a {
  padding: 40px 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #FFF;
  font-size: 19;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .pamphlet__btn-area a {
    font-size: 18;
  }
}
@media screen and (min-width: 1601px) {
  .pamphlet__btn-area a {
    font-size: 18px;
  }
}
.pamphlet__btn-area a::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 10px;
  display: block;
  background-image: url(../img/common/icon_arrow.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.footer nav {
  padding-top: 100px;
  padding-bottom: 100px;
  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: 15;
  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: 14;
  }
}
@media screen and (min-width: 1601px) {
  .footer nav .inner > ul li p,
  .footer nav .inner > ul li a {
    font-size: 14px;
  }
}
.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 p {
  margin-bottom: 20px;
}
.footer nav .inner > ul li ul {
  margin-left: 1em;
}
.footer nav .inner > ul li ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer nav .inner > ul li .title {
  color: #FFF;
  font-size: 17;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer nav .inner > ul li .title {
    font-size: 16;
  }
}
@media screen and (min-width: 1601px) {
  .footer nav .inner > ul li .title {
    font-size: 16px;
  }
}
.footer nav .inner .btn-area {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
.footer nav .inner .btn-area__corpolate, .footer nav .inner .btn-area__carbonneutral {
  margin: 0 20px;
}
.footer nav .inner .btn-area__corpolate a, .footer nav .inner .btn-area__carbonneutral a {
  padding: 20px 60px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #737373;
  color: #FFF;
  font-size: 17;
  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: 16;
  }
}
@media screen and (min-width: 1601px) {
  .footer nav .inner .btn-area__corpolate a, .footer nav .inner .btn-area__carbonneutral a {
    font-size: 16px;
  }
}
.footer nav .inner .btn-area__corpolate a::before, .footer nav .inner .btn-area__carbonneutral a::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 20px;
  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: 40px;
  padding-bottom: 40px;
}
.footer__box__link {
  margin-bottom: 20px;
}
.footer__box__link ul {
  display: flex;
  justify-content: center;
}
.footer__box__link ul li a {
  color: #000;
  font-size: 15;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer__box__link ul li a {
    font-size: 14;
  }
}
@media screen and (min-width: 1601px) {
  .footer__box__link ul li a {
    font-size: 14px;
  }
}
.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: 15;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .footer__box__link ul li:not(:last-child)::after {
    font-size: 14;
  }
}
@media screen and (min-width: 1601px) {
  .footer__box__link ul li:not(:last-child)::after {
    font-size: 14px;
  }
}
.footer__box__copyright {
  color: #000;
  font-size: 15;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer__box__copyright {
    font-size: 14;
  }
}
@media screen and (min-width: 1601px) {
  .footer__box__copyright {
    font-size: 14px;
  }
}

#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: 65px 0 0;
}

.interview-common {
  padding: 100px 0;
  overflow-x: hidden;
}
.interview-common .inner {
  height: 530px;
}
.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:hover {
  opacity: 0.7;
}
.interview-common .swiper-slide-active {
  width: 370px !important;
  transform-origin: top;
  transition: all 0.5s;
}
.interview-common .swiper-slide-active .interview-common__txt-wrap span {
  background-color: #000;
}
.interview-common .swiper-button-next,
.interview-common .swiper-button-prev {
  width: 50px;
  height: 68px;
  background-size: contain;
  background-repeat: no-repeat;
}
.interview-common .swiper-button-next {
  top: 12em;
  right: -8%;
  background-image: url(../img/interview/interview-common/swiper_next.png);
}
.interview-common .swiper-button-prev {
  top: 12em;
  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: 18px;
  padding: 10px 15px;
}
.interview-common__words {
  font-size: 24px;
  padding: 10px 15px;
}
.interview-common__btn-wrap {
  margin-top: 50px;
  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: 832px;
  max-width: 90%;
  margin: 80px 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: 30px;
  font-weight: 500;
}

.sustainability {
  padding-bottom: 200px;
}
.sustainability__bnr {
  max-width: 832px;
  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: 31;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .sustainability__bnr-txt {
    font-size: 30;
  }
}
@media screen and (min-width: 1601px) {
  .sustainability__bnr-txt {
    font-size: 30px;
  }
}

main p {
  color: #000;
  font-size: 17;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  main p {
    font-size: 16;
  }
}
@media screen and (min-width: 1601px) {
  main p {
    font-size: 16px;
  }
}
main p span.subscript {
  font-size: 75%;
}
main .red-line {
  margin-bottom: 80px;
}
main .red-line .inner {
  padding: 60px;
  border: solid 2px #e70606;
}
main .mv__front {
  width: 100%;
  height: 550px;
  position: relative;
  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 span,
main .mv__front h2 .second-line span {
  display: inline-block;
}
main .mv__front h2 .first-line {
  display: inline-block;
  background-color: #000;
}
main .mv__front h2 .first-line span {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  color: #FFF;
  font-size: 25;
  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: 24;
  }
}
@media screen and (min-width: 1601px) {
  main .mv__front h2 .first-line span {
    font-size: 24px;
  }
}
main .mv__front h2 .first-line span:first-child {
  padding-left: 0.5em;
}
main .mv__front h2 .first-line span:last-child {
  padding-right: 0.5em;
}
main .mv__front h2 .second-line span {
  padding-top: 0.1em;
  padding-bottom: 0.2em;
  color: #FFF;
  font-size: 61;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  main .mv__front h2 .second-line span {
    font-size: 60;
  }
}
@media screen and (min-width: 1601px) {
  main .mv__front h2 .second-line span {
    font-size: 60px;
  }
}
main .mv__front h2 .second-line span:first-child {
  padding-left: 0.1em;
}
main .mv__front h2 .second-line span:last-child {
  padding-right: 0.1em;
}
main .mv__front h2 .second-line span:nth-child(2) {
  padding-left: 0.1em;
}
main .overview {
  margin: 40px 0 100px;
}
main .overview__link-area ul {
  margin: 40px auto 100px;
  display: flex;
  justify-content: center;
}
main .overview__link-area ul li {
  color: #000;
  font-size: 22;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .overview__link-area ul li {
    font-size: 21;
  }
}
@media screen and (min-width: 1601px) {
  main .overview__link-area ul li {
    font-size: 21px;
  }
}
main .overview__link-area ul li._on {
  color: #e70606;
}
main .overview__link-area ul li:not(:last-child)::after {
  content: "／";
  padding: 0 3em;
  color: #000;
}
main .overview__link-area ul li a:hover {
  opacity: 0.6;
  text-decoration: underline;
}
main .overview__text-area h1 {
  margin-bottom: 40px;
  text-align: center;
  color: #e70606;
  font-size: 49;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .overview__text-area h1 {
    font-size: 48;
  }
}
@media screen and (min-width: 1601px) {
  main .overview__text-area h1 {
    font-size: 48px;
  }
}
main .overview__text-area h2 {
  text-align: center;
  color: #e70606;
  font-size: 25;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.5;
}
@media screen and (min-width: 769px) {
  main .overview__text-area h2 {
    font-size: 24;
  }
}
@media screen and (min-width: 1601px) {
  main .overview__text-area h2 {
    font-size: 24px;
  }
}
main .overview__text-area p {
  text-align: center;
  color: #000;
  font-size: 19;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.5;
}
@media screen and (min-width: 769px) {
  main .overview__text-area p {
    font-size: 18;
  }
}
@media screen and (min-width: 1601px) {
  main .overview__text-area p {
    font-size: 18px;
  }
}
main .common-title {
  margin-bottom: 30px;
}
main .common-title h2 {
  width: 100%;
  padding: 30px 20px 30px 50px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #e70606;
}
main .common-title h2 .head {
  padding: 0 30px;
  margin-right: 50px;
  border-left: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
main .common-title h2 .head span:nth-child(1) {
  color: #FFF;
  font-size: 15;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-title h2 .head span:nth-child(1) {
    font-size: 14;
  }
}
@media screen and (min-width: 1601px) {
  main .common-title h2 .head span:nth-child(1) {
    font-size: 14px;
  }
}
main .common-title h2 .head span:nth-child(2) {
  color: #FFF;
  font-size: 31;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-title h2 .head span:nth-child(2) {
    font-size: 30;
  }
}
@media screen and (min-width: 1601px) {
  main .common-title h2 .head span:nth-child(2) {
    font-size: 30px;
  }
}
main .common-title h2 .title {
  color: #FFF;
  font-size: 31;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-title h2 .title {
    font-size: 30;
  }
}
@media screen and (min-width: 1601px) {
  main .common-title h2 .title {
    font-size: 30px;
  }
}
main .common-title .triangle {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #e70606;
  border-bottom: 0;
}
main .common-plus {
  padding: 30px;
  background-color: rgba(231, 6, 6, 0.05);
}
main .common-plus h4 {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
main .common-plus h4 span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
main .common-plus h4 span.plus {
  height: 40px;
  margin-right: 30px;
  background-image: url(../img/common/icon_plus.png);
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  color: #e70606;
  font-size: 15;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-plus h4 span.plus {
    font-size: 14;
  }
}
@media screen and (min-width: 1601px) {
  main .common-plus h4 span.plus {
    font-size: 14px;
  }
}
main .common-plus h4 span.title {
  color: #e70606;
  font-size: 25;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-plus h4 span.title {
    font-size: 24;
  }
}
@media screen and (min-width: 1601px) {
  main .common-plus h4 span.title {
    font-size: 24px;
  }
}
main .common-eyecatch .text-area p {
  margin-bottom: 30px;
}
main .common-eyecatch .img-area .first-line,
main .common-eyecatch .img-area .second-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
main .common-eyecatch .img-area .first-line figure,
main .common-eyecatch .img-area .second-line figure {
  max-width: 240px;
  position: relative;
}
main .common-eyecatch .img-area .first-line figure:not(:last-child),
main .common-eyecatch .img-area .second-line figure:not(:last-child) {
  margin-right: 40px;
}
main .common-eyecatch .img-area .first-line figure img,
main .common-eyecatch .img-area .second-line figure img {
  width: 100%;
}
main .common-eyecatch .img-area .first-line figure figcaption,
main .common-eyecatch .img-area .second-line figure figcaption {
  width: 100%;
  padding: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
main .common-eyecatch .img-area .first-line figure figcaption h3,
main .common-eyecatch .img-area .second-line figure figcaption h3 {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: solid 1px #FFF;
  color: #FFF;
  font-size: 19;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-eyecatch .img-area .first-line figure figcaption h3,
  main .common-eyecatch .img-area .second-line figure figcaption h3 {
    font-size: 18;
  }
}
@media screen and (min-width: 1601px) {
  main .common-eyecatch .img-area .first-line figure figcaption h3,
  main .common-eyecatch .img-area .second-line figure figcaption h3 {
    font-size: 18px;
  }
}
main .common-eyecatch .img-area .first-line figure figcaption p,
main .common-eyecatch .img-area .second-line figure figcaption p {
  color: #FFF;
  font-size: 15;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  main .common-eyecatch .img-area .first-line figure figcaption p,
  main .common-eyecatch .img-area .second-line figure figcaption p {
    font-size: 14;
  }
}
@media screen and (min-width: 1601px) {
  main .common-eyecatch .img-area .first-line figure figcaption p,
  main .common-eyecatch .img-area .second-line figure figcaption p {
    font-size: 14px;
  }
}
main .common-eyecatch .img-area .first-line {
  margin-bottom: 30px;
}
main .common-tilezone .box:not(:last-child) {
  margin-bottom: 20px;
}
main .common-tilezone .box .red-box {
  padding: 20px;
  border: solid 3px #e70606;
}
main .common-tilezone .box .red-box figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .common-tilezone .box .red-box h3 {
  color: #000;
  font-size: 31;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-tilezone .box .red-box h3 {
    font-size: 30;
  }
}
@media screen and (min-width: 1601px) {
  main .common-tilezone .box .red-box h3 {
    font-size: 30px;
  }
}
main .common-tilezone .box .red-box h3 span.red {
  color: #e70606;
  font-size: 47;
}
@media screen and (min-width: 769px) {
  main .common-tilezone .box .red-box h3 span.red {
    font-size: 46;
  }
}
@media screen and (min-width: 1601px) {
  main .common-tilezone .box .red-box h3 span.red {
    font-size: 46px;
  }
}
main .common-tilezone .box .red-box h3 span.red-small {
  color: #e70606;
  font-size: 33;
}
@media screen and (min-width: 769px) {
  main .common-tilezone .box .red-box h3 span.red-small {
    font-size: 32;
  }
}
@media screen and (min-width: 1601px) {
  main .common-tilezone .box .red-box h3 span.red-small {
    font-size: 32px;
  }
}
main .common-tilezone .box .red-box h3 span.red-small-2 {
  color: #e70606;
  font-size: 25;
}
@media screen and (min-width: 769px) {
  main .common-tilezone .box .red-box h3 span.red-small-2 {
    font-size: 24;
  }
}
@media screen and (min-width: 1601px) {
  main .common-tilezone .box .red-box h3 span.red-small-2 {
    font-size: 24px;
  }
}
main .common-tilezone .box .row-1 {
  width: 100%;
}
main .common-tilezone .box .row-1-variable {
  width: 340px;
}
main .common-tilezone .box .row-2 {
  width: 580px;
}
main .common-tilezone .box .row-2-variable {
  width: 520px;
}
main .common-tilezone .box .row-3 {
  width: 280px;
}
main .common-job {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  border: solid 2px #737373;
}
main .common-job:not(:last-child) {
  margin-bottom: 50px;
}
main .common-job h3 {
  padding: 20px;
  margin-right: 40px;
  background-color: #aaaaaa;
  writing-mode: vertical-rl;
  color: #FFF;
  font-size: 19;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-job h3 {
    font-size: 18;
  }
}
@media screen and (min-width: 1601px) {
  main .common-job h3 {
    font-size: 18px;
  }
}
main .common-job h3 span {
  text-combine-upright: all;
  margin-bottom: 2px;
}
main .common-job .job-area {
  width: 100%;
}
main .common-job .job-area .job {
  display: flex;
  justify-content: space-between;
}
main .common-job .job-area .job:not(:last-child) {
  margin-bottom: 60px;
}
main .common-job .job-area .job .detail h4 {
  margin-bottom: 20px;
  color: #e70606;
  font-size: 25;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  main .common-job .job-area .job .detail h4 {
    font-size: 24;
  }
}
@media screen and (min-width: 1601px) {
  main .common-job .job-area .job .detail h4 {
    font-size: 24px;
  }
}
main .common-job .job-area .job .detail p {
  width: 350px;
}
main .common-job .job-area .job figure {
  width: 300px;
}
main .common-job .job-area .job figure img {
  width: 100%;
}
main .point1__main__text-area h3, main .point1__main__img-area h3 {
  color: #e70606;
  font-size: 25;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  main .point1__main__text-area h3, main .point1__main__img-area h3 {
    font-size: 24;
  }
}
@media screen and (min-width: 1601px) {
  main .point1__main__text-area h3, main .point1__main__img-area h3 {
    font-size: 24px;
  }
}
main .point4 {
  margin-bottom: 120px;
}

main .mv__front {
  background-image: url(../img/movie/mv_bg.jpg);
}
main .mv h2 .second-line {
  background: linear-gradient(to right, #000 16.65%, #e70606 0%);
}
main .business-movie {
  padding: 100px 0 130px;
}
main .business-movie-ttl {
  color: #e70606;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 18px;
  margin-bottom: 35px;
  border-bottom: solid 2px #000;
}
main .business-movie .movie {
  margin: 30px auto 0;
  width: 100%;
  position: relative;
}
main .business-movie .movie .left-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;
}
main .business-movie .movie video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto 100px;
}
main .business-movie .movie video.video_2 {
  margin-bottom: unset;
}
main .business-movie .movie .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  cursor: pointer;
}
main .business-movie .movie .play-btn:hover {
  opacity: 0.8;
}
main .business-movie .movie .play-btn.playActive {
  display: none;
}
main .business-movie .movie .play-btn.playActive {
  display: none;
}/*# sourceMappingURL=movie_pc.css.map */