@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display:block;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

img {
  vertical-align: top;
}

img {
  max-width: 100%;
  height: auto;
}

a:not([class]) {
  text-decoration: underline;
  color: #4285f4;
}
a:not([class]):hover {
  text-decoration: none;
}

*,*::before,*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Original Yu Gothic", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  font-size: 62.5%;
  line-height: 1.5;
}

/* IE10以上 */
@media all and (-ms-high-contrast: none)  {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

body {
  background-color: #fafafa;
  font-size: 1.4rem;
  color: #202020;
}
.page {
  padding-top: 100px;
  -webkit-animation: fade-in 0.9s 0.1s ease-out both;
  animation: fade-in 0.9s 0.1s ease-out both;
}
/*
.page--animate {
  -webkit-animation: fade-in 1s 0.3s ease-out both;
  animation: fade-in 1s 0.3s ease-out both;
}
*/

.main {
  width: 100%;
}
@media screen and (max-width: 1150px) {
  .main {
    overflow: hidden;
  }
}


.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 10;
  transition: 0.3s;
}
.body--state-fixed .header {
  height: 60px;
}
.header:after {
  display: block;
  width: 100%;
  height: 3px;
  content: '';
  background: #000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: 0.3s;
}
.body--state-fixed .header:after {
  opacity: 1;
}
.header__logo {
  position: absolute;
  left: 37px;
  top: 27px;
  transition: 0.3s;
}
.body--state-fixed .header__logo {
  width: 170px;
  left: 10px;
  top: 10px;
}
.header-nav-wrapper {
  height: 100%;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  width: 45.833333%;
  height: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.header__nav__item {
  position: relative;
  list-style-type: none;
  font-size: 1.6rem;
  font-weight: 600;
  height: 100%;
}
.header__nav__link {
  position: relative;
  display: flex;
  padding-left: 2px;
  padding-right: 2px;
  align-items: center;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  color: #333;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__nav__link:not(.header__nav__link--arrow):not(.header__nav__link--active):hover {
  color: #4285f4;
}
.header__nav__link--active:before {
  position: absolute;
  bottom: 0;
  display: block;
  content: '';
  background: #4285f4;
  width: 100%;
  height: 5px;
  -webkit-animation: fade-in 1.5s 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: fade-in 1.5s 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
/*
.page--animate .header__nav__link--active:before {
  -webkit-animation: fade-in 1.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: fade-in 1.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
*/
.header__nav__link--arrow:after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 7px;
  margin-top: -1px;
  margin-left: 5px;
  background: url(/recruit/assets/img/common/header_nav_arrow.png) no-repeat;
  background-size: 8px auto;
}

.header-sub-nav {
  position: absolute;
  left: -20px;
  width: 200px;
  background: #fff;
  display: none;
  z-index: 1;
  transform: translateY(-10px);
}
.body--state-fixed .header-sub-nav {
  box-shadow: 0 2px 1px rgba(000,000,000,0.15);
}
.header-sub-nav__item {
  list-style-type: none;
}
.header-sub-nav__link {
  display: block;
  padding: 15px 22px;
  text-decoration: none;
  color: #333;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header-sub-nav__link:hover,
.header-sub-nav__link--active {
  color: #4285f4;
}


.header__nav__button {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.header__nav__button__link {
  overflow: hidden;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 46px;
  padding-right: 40px;
  text-decoration: none;
  /*background: #4285f4;*/
  background: #4285f4 url(/recruit/assets/img/common/header_button_arrow.png) no-repeat;
  background-position: 188px center;
  background-size: 8px 12px;
  color: #fff;
}
.header__nav__button__link:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-hover);
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4285f4 url(/recruit/assets/img/common/header_button_arrow.png) no-repeat;
  background-position: 188px center;
  background-size: 8px 12px;
  transform: none;
  transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.header__nav__button__link:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-hover);
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a6ad4 url(/recruit/assets/img/common/header_button_arrow.png) no-repeat;
  background-position: 188px center;
  background-size: 8px 12px;
  transform: translateX(-100%);
  transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.header__nav__button__link:hover:before {
  transform: translateX(100%);
}
.header__nav__button__link:hover:after {
  transform: none;
}
/*
.header__nav__button__link:after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 12px;
  margin-left: 16px;
  background: url(/recruit/assets/img/common/header_button_arrow.png) no-repeat;
  background-size: cover;
  vertical-align: -1px;
}
*/

.sp-button {
  position: absolute;
  top: 0px;
  right: 0px;
  display: none;
  height: 60px;
  width: 60px;
  padding: 8px;
  background: #4285f4;
  border: 8px solid #fff;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.sp-button span {
  position: absolute;
  display: block;
  background: #fff;
  width: 28px;
  height: 2px;
  left: 8px;
  transition: 0.3s;
}
.sp-button span:nth-of-type(1) {
  top: 11px;
}
.sp-button span:nth-of-type(2) {
  top: 21px;
}
.sp-button span:nth-of-type(3) {
  bottom: 11px;
}

@media screen and (max-width: 1450px) {
  .header__nav {
    width: 54%;
  }
}
@media screen and (max-width: 1280px) {
  .header__nav__item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1150px) {
  .page {
    padding-top: 60px;
  }
  .header {
    height: 60px;
  }
  .header:after {
    position: absolute;
    top: 60px;
    opacity: 1;
  }
  .header__logo {
    width: 170px;
    left: 10px;
    top: 10px;
  }
  .header__nav {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    max-width: none;
    opacity: 0;
    transition: 0.3s;
  }
  .header__nav__link {
    position: relative;
    display: flex;
    padding: 14px 15px;
    align-items: center;
    height: auto;
  }
  .header-sub-nav__link {
    padding: 14px 22px;
  }
  .header__nav__link--active {
    background: #4285f4;
    color: #fff;
  }
  .header__nav__link--active:before {
    content: none;
  }
  .header-sub-nav {
    position: relative;
    left: -20px;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
    background: none;
  }
  .header__nav__link--active + .header-sub-nav,
  .header__nav__link--dropdown .header-sub-nav {
    display: block;
    transform: translateY(0px);
  }
  .header-sub-nav:after {
    content: '';
    display: block;
    clear: both;
  }
  .header-sub-nav__item {
    float: left;
  }
  .body--state-fixed .header-sub-nav {
    box-shadow: none;
  }
  .header__nav__button {
    position: relative;
    height: auto;
    opacity: 0;
    transition: 0.3s;
  }
  .header-nav-wrapper {
    display: none;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  .sp-button {
    display: block;
  }
  .state-nav-open .header {
    height: 100%;
  }
  .state-nav-open .header-nav-wrapper {
    display: block;
    animation: fade-in 1s;
  }
  .state-nav-open .header__nav,
  .state-nav-open .header__nav__button {
    opacity: 1;
  }
  .header__nav__button {
    text-align: center;
  }
  .header__nav__button__link {
    position: relative;
    display: block;
    width: 240px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    line-height: 60px;
  }
  .state-nav-open .sp-button span:nth-of-type(1) {
    transform: rotateZ(45deg) translate(7px,7px);
  }
  .state-nav-open .sp-button span:nth-of-type(2) {
    opacity: 0;
  }
  .state-nav-open .sp-button span:nth-of-type(3) {
    transform: rotateZ(-45deg) translate(7px,-7px);
  }
}


.footer {
  margin-top: 100px;
  text-align: center;
}
.footer__button {
  margin-top: 20px;
}
.footer__button__link {
  position: relative;
  display: inline-block;
  width: 200px;
  padding-top: 13px;
  padding-bottom: 13px;
  border: 1px solid rgba(51,51,51,0.5);
  text-decoration: none;
  color: #001f21;
  transition: 0.3s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) color, 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) border;
  overflow: hidden;
}
.footer__button__link:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 110%;
  height: 102%;
  background: rgba(51,51,51,1.00);
  transform: translateX(-110%) skewX(-15deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.footer__button__link:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 15px;
  margin-left: 8px;
  margin-right: -18px;
  background: url(/recruit/assets/svg/arrow_white.svg) no-repeat;
  background-size: cover;
  vertical-align: -2px;
  transition: 0.4s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity,  0.4s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform;
  transform: translateX(-10px);
  opacity: 0;
}
.footer__button__link:hover {
  border: 1px solid rgba(51,51,51,1);
  color: #fff;
}
.footer__button__link:hover:before {
  transform: translateX(-5%) skewX(-15deg);
}
.footer__button__link:hover:after {
  transform: none;
  opacity: 1;
}
.copyright {
  margin-top: 26px;
  font-weight: 600;
  font-size: 1.2rem;
}

.page-top {
  margin-top: 98px;
  background: #4285f4;
}
.page-top__link {
  display: block;
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  transition: 0.3s;
}
.page-top__link:hover {
  background: #2a6ad4;
}
.page-top__image {
  width: 71px;
  height: auto;
  transition: 0.3s;
}
.page-top__link:hover .page-top__image {
  transform: translateY(-5px);
}

@media screen and (max-width: 1150px) {
  .page-top__link {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .page-top__image {
    width: 50px;
  }
}
@media screen and (max-width: 650px) {
  .copyright {
    font-size: 1rem;
  }
  .page-top {
    margin-top: 50px;
  }
  .page-top__link {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .page-top__image {
    width: 30px;
  }
}




.general-gradient-headline,
.general-gradient-headline:before {
  background: linear-gradient(to right, #01c353, #4285f4, #01c353);
  background-clip: text;
  background-size: 200%;
  -webkit-animation: move-gradient 10s infinite;
  animation: move-gradient 10s infinite;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.no-backgroundcliptext .general-gradient-headline,
.no-backgroundcliptext .general-gradient-headline:before {
  background: none;
  color: #02c255;
}
.general-en-headline {
  font-weight: 500;
}
.general-en-headline:before {
  display: inherit;
  content: attr(data-en-title);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 6rem;
  line-height: 1.1;
}
.general-gradient {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .general-en-headline:before {
    font-size: 4rem;
  }
}

.general-button-arrow {
  position: relative;
  display: inline-block;
  border: 1px solid #a0c2f9;
  text-decoration: none;
  text-align: center;
  color: #4285f4;
  transition: 0.3s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) color, 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) border;
  overflow: hidden;
  z-index: 1;
}
.general-button-arrow:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 116%;
  height: 102%;
  background: #4285f4;
  transform: translateX(-110%) skewX(-15deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.general-button-arrow:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 15px;
  margin-left: 8px;
  margin-right: -18px;
  background: url(/recruit/assets/svg/arrow_white.svg) no-repeat;
  background-size: cover;
  vertical-align: -2px;
  transition: 0.4s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity, 0.4s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform, 0.1s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) margin;
  transform: translateX(-10px);
  opacity: 0;
}
.general-button-arrow:hover {
  border-color: #4285f4;
  color: #fff;
}
.general-button-arrow:hover:before {
  transform: translateX(-5%) skewX(-15deg);
}
.general-button-arrow:hover:after {
  margin-right: -8px;
  transform: none;
  opacity: 1;
}
.general-button-arrow--wide:hover:after {
  margin-right: -18px;
}




.home-slider {
  position: relative;
  height: 0;
  padding-top: 41.66666%;
  overflow: hidden;
}
.home-slider__text {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 800px;
  transform: translate(-50%,-50%);
  text-align: center;
  z-index: 2;
}
.home-slider__text__item01 {
  font-size: 10.2rem;
  font-weight: 600;
  line-height: 1;
  /*
  -webkit-animation: home-slider-text01 4s 3.5s cubic-bezier(0.165, 0.84, 0.44, 1) both, fade-in 4s 3.5s linear both;
  animation: home-slider-text01 4s 3.5s cubic-bezier(0.165, 0.84, 0.44, 1) both, fade-in 4s 3.5s linear both;
  */
  -webkit-animation: home-slider-text02 0.8s 0.7s both, move-gradient 10s infinite;
  animation: home-slider-text02 0.8s 0.7s both, move-gradient 10s infinite;
}
.home-slider__text__item02 {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 40px;
  font-family: 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', serif;
  font-size: 2.4rem;
  font-weight: 600;
  -webkit-animation: home-slider-text02 0.8s 0.83s both, move-gradient 10s infinite;
  animation: home-slider-text02 0.8s 0.83s both, move-gradient 10s infinite;
}
.home-slider-images {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.home-slider-image img {
  max-width: none;
  width: 100%;
}
.home-slider-image--active img {
  -webkit-animation: scale-up 15s linear both;
  animation: scale-up 15s linear both;
}
.home-slider-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-slider-cover__item {
  position: absolute;
  top: 0;
  width: calc(100% / 3);
  height: 100%;
  background: rgba(250,250,250,1.00);
  transform-origin: left;
  -webkit-animation: home-slider-cover 1s 1.14s cubic-bezier(1, 0, 0, 1) both;
  animation: home-slider-cover 1s 1.14s cubic-bezier(1, 0, 0, 1) both;
}
.home-slider-cover__item:nth-of-type(1) {
  left: 0;
}
.home-slider-cover__item:nth-of-type(2) {
  left: calc(100% / 3);
}
.home-slider-cover__item:nth-of-type(3) {
  left: calc(100% / 3 * 2);
}
@media screen and (max-width: 500px) {
  .home-slider {
    padding-top: 220px;
  }
  .home-slider-image {
    position: relative;
    width: 100%;
    height: 220px !important;
  }
  .home-slider-image img {
    width: 528px;
    height: 220px;
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    transform: translateX(-50%);
  }
  .home-slider-image--active img {
    -webkit-animation: scale-up2 15s linear both;
    animation: scale-up2 15s linear both;
  }
}


.home-topics {
  position: relative;
  width: calc(100% - 20px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  /*margin-top: -58px;*/
  margin-top: -3.05%;
  padding-left: 159px;
  padding-right: 18px;
  z-index: 2;
}
.home-topics__title {
  position: absolute;
  top: -52px;
  left: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  height: 222px;
  background: #4285f4;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  z-index: 1;
}

.home-topics-list {
  padding: 75px 34px 30px 88px;
  background: #fff;
}
.home-topics-list__item:not(:first-child) {
  margin-top: 14px;
}
.home-topics-list__link {
  display: flex;
  text-decoration: none;
  font-size: 1.8rem;
  color: #4285f4;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
}
.home-topics-list__link:hover {
  opacity: 0.80;
}
.home-topics-list__date {
  width: 120px;
}
.home-topics-list__title {
  width: calc(100% - 120px);
}
.home-topics-list__button {
  margin-top: 46px;
  text-align: right;
  font-size: 1.6rem;
}
.home-topics-list__button__link:before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 12px;
  margin-right: 10px;
  background: url(/recruit/assets/img/home/topics_arrow.png) no-repeat;
  background-size: cover;
}
.home-topics-list__button__link {
  text-decoration: none;
  color: #4285f4;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
}
.home-topics-list__button__link:hover {
  opacity: 0.80;
}
@media screen and (max-width: 950px) {
  .home-topics {
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .home-topics__title {
    top: -20px;
    left: 0;
    width: 180px;
    height: 180px;
  }
  .home-topics {
    margin-top: 40px;
  }
  .home-topics-list {
    padding: 55px 34px 30px 55px;
  }
  .home-topics-list__link {
    flex-direction: column;
  }
  .home-topics-list__title {
    width: 100%;
  }
  .home-slider__text__item01 {
    font-size: 7rem;
  }
  .home-slider__text__item02 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .home-topics-list__button {
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .home-topics {
    padding-left: 20px;
  }
  .home-topics__title {
    height: 60px;
    font-size: 2rem;
  }
  .home-topics-list__link {
    font-size: 1.6rem;
  }
  .home-topics-list {
    padding: 55px 30px 30px 30px;
  }
  .home-slider__text__item01 {
    font-size: 4rem;
  }
  .home-slider__text__item02 {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 1.8rem;
  }
}



.entry-entrance {
  position: relative;
  height: 435px;
  margin-top: 155px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.entry-entrance__movie__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: 100%;
  height: 431px;
  /*height: 0;*/
  /*padding-top: 22.65625%;*/
  transform: skewY(-2deg);
  transform: skewY(-2deg) translateX(-50%) translateY(-50%);
}
.entry-entrance__movie__wrapper:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background: linear-gradient(to right, rgba(3,230,206,0.90), rgba(3,115,230,0.90), rgba(3,230,206,0.90));
  background-size: 200%;
  z-index: 1;
  -webkit-animation: move-gradient 100s infinite;
  animation: move-gradient 100s infinite;
}
.entry-entrance__movie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1920px;
  height: auto;
  transform: skewY(2deg) translateY(-47.5%) translateX(-50%);
  max-width: none;
  z-index: 0;
}
.entry-entrance__title {
  position: relative;
  padding-top: 20px;
  text-align: center;
  font-weight: normal;
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
}
.entry-entrance__title:before {
  display: block;
  content: attr(data-en-title);
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 7.2rem;
  line-height: 1;
}
.entry-entrance__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.entry-entrance__nav__item {
  margin-left: 25px;
  margin-right: 25px;
  list-style-type: none;
}
.entry-entrance__nav__link {
  position: relative;
  display: inline-block;
  width: 200px;
  padding-top: 13px;
  padding-bottom: 13px;
  border: 1px solid #fff;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) color, 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) border;
  overflow: hidden;
  z-index: 1;
}
.entry-entrance__nav__link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 110%;
  height: 100%;
  background: #fff;
  transform: translateX(-110%) skewX(-15deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.entry-entrance__nav__link:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 15px;
  margin-left: 8px;
  margin-right: -18px;
  background: url(/recruit/assets/svg/arrow_blue.svg) no-repeat;
  background-size: cover;
  vertical-align: -2px;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) opacity,  0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform;
  transform: translateX(-5px);
  opacity: 0;
}
.entry-entrance__nav__link:hover {
  border-color: #fff;
  color: #4285f4;
}
.entry-entrance__nav__link:hover:before {
  transform: translateX(-5%) skewX(-15deg);
}
.entry-entrance__nav__link:hover:after {
  transition: 0.4s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity,  0.4s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform;
  transform: none;
  opacity: 1;
}
@media screen and (min-width: 1980px) {
  .entry-entrance__movie {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .entry-entrance__nav {
    flex-direction: column;
  }
  .entry-entrance__title:before {
    font-size: 4rem;
  }
  .entry-entrance__nav__item:not(:first-child) {
    margin-top: 10px;
  }
  .entry-entrance {
    height: 300px;
    margin-top: 100px;
  }
  .entry-entrance__movie__wrapper {
    height: 300px;
  }
  .entry-entrance__movie {
    width: 1000px;
  }
}


.general-gradient--interview {
  margin-top: 90px;
  align-items: center;
  text-align: center;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.general-gradient--interview.stage-in {
  transform: none;
  opacity: 1;
}
.general-gradient--interview-other {
  margin-top: 190px;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .general-gradient--interview-other {
    margin-top: 100px;
  }
}

.interview-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1256px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}
.interview-list--slide {
  display: block;
}
.interview-list--home {
  margin-top: 40px;
}
.interview-list--other {
  margin-top: 70px;
}
.interview-list--home .interview-list__item {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.interview-list--home .interview-list__item:nth-of-type(1) {
  transition-delay: 0;
}
.interview-list--home .interview-list__item:nth-of-type(2) {
  transition-delay: 0.1s;
}
.interview-list--home .interview-list__item:nth-of-type(3) {
  transition-delay: 0.2s;
}
.interview-list--home.stage-in .interview-list__item {
  transform: translate3d(0,0,0);
  opacity: 1;
}
.interview-list__item {
  position:relative;
  width: 30.5%;
  max-width: 366px;
  -moz-transform-style: flat;
  -webkit-transform-style: flat;
  transform: translate3d(0,0,0);
}
.interview-list__item:not(:nth-of-type(3n+1)) {
  margin-left: 4.25%;
}
.interview-list__item:nth-of-type(n+4) {
  margin-top: 50px;
}
.interview-list--slide .interview-list__item {
  width: auto;
  margin-left: 0;
  margin-top: 0;
      margin: 0 28px;
}
.interview-list__link {
  display: block;
  height: 0;
  padding-top: 159.01639%;
  text-decoration: none;
}
.interview-list__name {
  position: absolute;
  top: 28px;
  left: -28px;
  font-weight: bold;
  font-size: 3.6rem;
  color: #4285f4;
  z-index: 1;
  transform: translateZ(200px);
}
.interview-list__box {
  position: absolute;
  bottom: 0;
  width: calc(100% - 44px);
  max-width: 322px;
  min-height: 226px;
  margin-left: 22px;
  margin-right: 22px;
  padding: 37px 40px 0;
  background: #fff;
  z-index: 1;
  transform: translateZ(200px);
}
.interview-list__number {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 84px;
  margin-left: -42px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: linear-gradient(to right, #01c353, #4285f4, #01c353);
  background-size: 200%;
  background-position: 0 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  transform-origin: 50% bottom;
  transition: 0.3s transform;
}
.interview-list__link:hover .interview-list__number {
  transform: scale(1.2);
  -webkit-animation: move-gradient 0.5s linear infinite;
  animation: move-gradient 0.5s linear infinite;
  font-size: 0;
}
.interview-list__link:hover .interview-list__number:before {
  content: 'GO!';
  font-size: 1.2rem;
}
.interview-list__title {
  font-weight: 600;
  font-size: 1.8rem;
  color: #4285f4;
}
.interview-list__year {
  margin-top:36px;
  color: #333;
}
.interview-list__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.interview-list__image img {
  transform: none;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.interview-list__link:hover .interview-list__image img {
  transform: rotateY(180deg);
  opacity: 0;
}
.interview-list__image--cover {
  overflow: hidden;
}
.interview-list__image--cover img {
  transform: rotateY(180deg);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}
.interview-list__link:hover .interview-list__image--cover img {
  transform: rotateY(360deg);
  opacity: 1;
}

.interview-button {
  margin-top: 50px;
  text-align: center;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.interview-button.stage-in {
  transform: none;
  opacity: 1;
}
.interview-button__link,
.faq-list-button__link {
  width: 294px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.4rem;
}

.interview-list--slide .slick-arrow {
  position: absolute;
  top: 50%;
  display: block;
  content: '';
  width: 75px;
  height: 75px;
  margin-top: -37px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #4285f4;
  transition: 0.3s background ease;
  z-index: 1;
  font-size: 0;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.interview-list--slide .slick-arrow:hover {
  background-color: #2a6ad4;
  border-color: #2a6ad4;
}
.interview-list--slide .slick-prev {
  left: 10px;
  background-image: url(/recruit/assets/img/interview/slider_arrow_l.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.interview-list--slide .slick-prev:hover {
  background-position: -6px;
}
.interview-list--slide .slick-next {
  right: 10px;
  background-image: url(/recruit/assets/img/interview/slider_arrow_r.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.interview-list--slide .slick-next:hover {
  background-position: 6px;
}

@media screen and (max-width: 1150px) {
  .interview-list__title {
    font-size: 1.6rem;
  }
  .interview-list__box {
    min-height: 200px;
  }
}
@media screen and (max-width: 950px) {
  .interview-list__title {
    font-size: 1.6rem;
  }
  .interview-list__box {
    min-height: 150px;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    padding: 36px 15px 0;
  }
  .interview-list__name {
    font-size: 3rem;
  }
  .interview-list__year {
    margin-top: 18px;
  }
}
@media screen and (max-width: 750px) {
  .interview-list__title {
    font-size: 1.4rem;
  }
  .interview-list__name {
    font-size: 2.4rem;
  }
  .interview-list__year {
    margin-top: 10px;
  }
}
@media screen and (max-width: 650px) {
  .interview-list--slide {
    padding: 0;
  }
  .interview-list__box {
    width: calc(100% - 44px);
    max-width: 322px;
    min-height: 226px;
    margin-left: 22px;
    margin-right: 22px;
    padding: 37px 40px 0;
  }
  .interview-list {
    align-items: center;
  }
  .interview-list__item:nth-of-type(n+2) {
    margin-top: 30px;
  }
  .interview-list--slide  .interview-list__item:nth-of-type(n+2) {
    margin-top: 0;
  }
  .interview-list__item {
    position:relative;
    width: 100%;
    max-width: 366px;
    margin-left: auto;
    margin-right: auto;
  }
  .interview-list__item:not(:nth-of-type(3n+1)) {
    margin-left: auto;
  }
  .interview-list--slide .interview-list__item {
    margin: 0 60px;
    min-width: 300px;
    max-width: 300px;
  }
  .interview-list__name {
    font-size: 3rem;
    left: -10px;
    top: 10px;
  }
  .interview-list__title {
    font-size: 1.8rem;
  }

  .interview-list--slide .slick-arrow {
    width: 40px;
    height: 40px;
    margin-top: -40px;
  }
  .interview-list--slide .slick-prev {
    left: 10px;
  }
  .interview-list--slide .slick-next {
    right: 10px;
  }
}


.message-entrance {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.message-entrance:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: '';
  overflow: hidden;
  width: 100%;
  height: 431px;
  background: #4285f4;
  /*padding-top: 22.65625%;*/
  transform: skewY(-2deg) translateY(-50%);
}
.message-entrance:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: '';
  overflow: hidden;
  width: 100%;
  height: 431px;
  background: #4285f4;
  /*padding-top: 22.65625%;*/
  transform: skewY(-2deg) translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: 1s cubic-bezier(0.86, 0, 0.07, 1) transform;
  z-index: -1;
}
.message-entrance.stage-in:before {
  transform: skewY(-2deg) translateY(-50%) scaleX(1);
}
.message-entrance__col01 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 500px;
  padding-left: 153px;
}
.message-entrance__col02 {
  position: relative;
  width: 500px;
}
.message-entrance__title {
  width: 284px;
  color: #fff;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.message-entrance__title.stage-in {
  transform: none;
  opacity: 1;
}
.message-entrance__title:before {
  display: block;
  content: attr(data-en-title);
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: 8rem;
  line-height: 1.05;
}
@media screen and (max-width: 1000px) {
  .message-entrance__col01 {
    width: 500px;
    padding-left: 10%;
  }
  .message-entrance__col02 {
    width: 350px;
  }
}
@media screen and (max-width: 700px) {
  .message-entrance {
    flex-direction: column-reverse;
  }
  .message-entrance__image {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .message-entrance__title {
    width: auto;
  }
  .message-entrance__col01 {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .message-entrance__col02 {
    width: 100%;
  }
  .message-entrance:before {
    top: auto;
    bottom: 0;
    transform: skewY(-2deg) translateY(25%) scaleX(0);
  }
  .message-entrance.stage-in:before {
    transform: skewY(-2deg) translateY(25%) scaleX(1);
  }
}
@media screen and (max-width: 600px) {
.message-entrance__title:before {
  font-size: 4rem;
}
  .message-entrance:before {
    height: 300px;
  }
}

.message-entrance__button {
  margin-top: 18px;
}
.message-entrance__button__link {
  position: relative;
  display: inline-block;
  width: 282px;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.5);
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) color, 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) border;
  overflow: hidden;
}
.message-entrance__button__link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 110%;
  height: 100%;
  background: #fff;
  transform: translateX(110%) skewX(-15deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.message-entrance__button__link:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 15px;
  margin-left: 8px;
  margin-right: -18px;
  background: url(/recruit/assets/svg/arrow_blue.svg) no-repeat;
  background-size: cover;
  vertical-align: -2px;
  transition: 0.4s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity,  0.4s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform;
  transform: translateX(-5px);
  opacity: 0;
}
.message-entrance__button__link:hover {
  border-color: #fff;
  color: #4285f4;
}
.message-entrance__button__link:hover:before {
  transform: translateX(-5%) skewX(-15deg);
}
.message-entrance__button__link:hover:after {
  transform: none;
  opacity: 1;
}


.home-2col {
  display: flex;
  max-width: 1220px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.home-2col + .home-2col {
  margin-top: 100px;
}
.home-2col--reverse {
  flex-direction: row-reverse;
}
.home-2col__item {
  width: 50%;
  background: #fff;
}
.home-2col__item .general-gradient {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.general-gradient.stage-in {
  transform: none;
  opacity: 1;
}
.home-2col__item--text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 100px;
  padding-right: 100px;
}
.home-2col-links {
  table-layout: fixed;
  display: table;
  width: calc(100% + 20px);
  margin-top: 15px;
  margin-left: -10px;
  margin-right: -10px;
}
.home-2col-links__item {
  display: table-cell;
  padding-left: 10px;
  padding-right: 10px;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.home-2col-links__item:nth-of-type(1) {
  transition-delay: 0;
}
.home-2col-links__item:nth-of-type(2) {
  transition-delay: 0.1s;
}
.home-2col-links__item:nth-of-type(3) {
  transition-delay: 0.2s;
}
.stage-in .home-2col-links__item {
  transform: none;
  opacity: 1;
}
.home-2col-links__link {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 1.6rem;
}
.home-2col__image {
  overflow: hidden;
}
.home-2col__image img {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 1s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: scale(1.1);
  opacity: 0;
}
.home-2col__image.stage-in img {
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 1150px) {
  .home-2col__item--text {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 950px) {
  .home-2col {
    margin-top: 100px;
    flex-direction: column;
  }
  .home-2col__item {
    width: 100%;
  }
  .home-2col__item--text {
    padding-top: 40px;
    text-align: center;
  }
  .home-2col__item--image {
    padding: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .home-2col__item--text {
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .home-2col-links__link {
    font-size: 1.4rem;
    transition: none;
  }
  .home-2col__item--image {
    padding: 25px;
  }
}


.home-faq-title {
  margin-top: 90px;
  align-items: center;
  text-align: center;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.home-faq-title .general-en-headline:before {
  margin-bottom: 3px;
}
.home-faq-title.stage-in {
  transform: none;
  opacity: 1;
}

.faq-category-title {
  margin-top: 100px;
  text-align: center;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 950px) {
  .faq-category-title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .faq-category-title {
    margin-top: 50px;
    font-size: 3rem;
  }
}

.faq-list {
  max-width: 1020px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.faq-list__item.js-stage-event-target {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.faq-list__item.stage-in {
  transform: none;
  opacity: 1;
}
.faq-list__item:not(:first-child) {
  margin-top: 50px;
}
.faq-list__header {
  background: #e4eeff;
}
.faq-list__link {
  position: relative;
  display: flex;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-right: 100px;
  text-decoration: none;
  color: #4285f4;
}
.faq-list__nav {
  position: absolute;
  right: 30px;
  display: block;
  content: '';
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #4285f4;
  background: #4285f4;
  transition: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.faq-list--active .faq-list__nav {
  background: #fff;
}
.faq-list__nav:before,
.faq-list__nav:after {
  position: absolute;
  display: block;
  content: '';
  background: #fff;
  transition: 0.3s;
}
.faq-list__nav:before {
  top: 19px;
  left: 12px;
  height: 1px;
  width: 15px;
}
.faq-list--active .faq-list__nav:before {
  background: #4285f4;
}
.faq-list__nav:after {
  top: 12px;
  left: 19px;
  height: 15px;
  width: 1px;
}
.faq-list--active .faq-list__nav:after {
  background: none;
}
.faq-list__icon {
  width: 15.55555%;
  padding-left: 68px;
  padding-left: 7.55555%;
  line-height: 1;
  font-size: 3.6rem;
  font-weight: bold;
}
.faq-list__title {
  width: 84.44444%;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 2rem;
}
.faq-list-button {
  margin-top: 50px;
  text-align: center;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.faq-list-button.stage-in {
  transform: none;
  opacity: 1;
}
.faq-list__body {
  position: relative;
  display: flex;
  height: 0;
  margin-top: 2px;
  padding-right: 100px;
  background: #fff;
  transition: 0.3s;
  overflow: hidden;
}
.faq-list__body .faq-list__icon {
  transition: 0.3s;
  transform: translateY(-50px);
  opacity: 0;
}
.faq-list__entry-body {
  width: 84.44444%;
  font-size: 1.8rem;
  line-height: 2;
  transition: 0.3s;
  transform: translateY(-50px);
  opacity: 0;
}
.faq-list--active .faq-list__body {
  padding-top: 35px;
  padding-bottom: 100px;
  height: auto;
}
.faq-list--active .faq-list__body .faq-list__icon,
.faq-list--active .faq-list__body .faq-list__entry-body {
  transform: none;
  opacity: 1;
}
.faq-list__entry-body > :not(:first-child) {
  margin-top: 1.5em;
}
@media screen and (max-width: 950px) {
  .faq-list__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .faq-list__title {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 1.6rem;
  }
  .faq-list__link {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 60px;
  }
  .faq-list__nav {
    right: 18px;
    width: 30px;
    height: 30px;
  }
  .faq-list__nav:before {
    top: 14px;
    left: 7px;
  }
  .faq-list__nav:after {
    top: 7px;
    left: 14px;
  }
  .faq-list__icon {
    width: 55px;
    padding-left: 15px;
    font-size: 3rem;
  }
  .faq-list__body {
    padding-right: 50px;
  }
  .faq-list__entry-body {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .faq-list--active .faq-list__body {
    padding-bottom: 50px;
  }
}

.general-page-title {
  display: flex;
  height: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #19c864, #5490f4, #19c864);
  background-size: 200%;
  text-align: center;
  color: #fff;
  -webkit-animation: move-gradient 10s infinite;
  animation: move-gradient 10s infinite;
}
.general-page-title__text {
  font-size: 1.8rem;
}
.general-page-title__text:before {
  display: block;
  margin-bottom: 11px;
  content: attr(data-en-title);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 6rem;
  line-height: 1;
}
.general-page-title__text__inner:before {
  content: '-「 ';
}
.general-page-title__text__inner:after {
  content: ' 」-';
}
@media screen and (max-width: 950px) {
  .general-page-title {
    height: 240px;
  }
}
@media screen and (max-width: 600px) {
  .general-page-title {
    height: 150px;
  }
  .general-page-title__text:before {
    font-size: 3rem;
  }
  .general-page-title__text {
    font-size: 1.6rem;
  }
}

.general-page-image-title {
  text-align: center;
}
.general-page-image-title__image {
  position: relative;
  height: 0;
  padding-top: 41.666666%;
}
.general-page-image-title__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}
.general-page-image-title__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2.3em;
  font-size: 2.7rem;
  -webkit-animation: slide-up 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both,fade-in 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: slide-up 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both,fade-in 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.general-page-image-title__text:before {
  display: inline-block;
  margin-bottom: 11px;
  content: attr(data-en-title);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11.5rem;
  line-height: 1;
}
.general-page-image-title__text__inner:before {
  content: '-「 ';
}
.general-page-image-title__text__inner:after {
  content: ' 」-';
}
.general-page-image-title__text__inner--message {
  margin-top: 3px;
  font-size: 2rem;
}
@media screen and (max-width: 1150px) {
  .general-page-image-title__text {
    margin-top: -1.6em;
  }
  .general-page-image-title__text:before {
    font-size: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .general-page-image-title__text {
    margin-top: -1.15em;
  }
  .general-page-image-title__text:before {
    font-size: 6rem;
  }
}
@media screen and (max-width: 600px) {
  .general-page-image-title__text {
    margin-top: -1.05em;
    font-size: 1.6rem;
  }
  .general-page-image-title__text__inner--message {
    font-size: 1.6rem;
  }
  .general-page-image-title__text:before {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 500px) {
  .general-page-image-title__image {
    padding-top: 220px;
  }
  .general-page-image-title__image img {
    width: 528px;
    height: 220px;
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    transform: translateX(-50%);
  }
}


.message-section--01,
.message-section--03 {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1920px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
.message-section--02 {
  display: flex;
  max-width: 1920px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
.message-section--04 {
  margin-top: 280px;
}
.message-section__image--01,
.message-section__image--03 {
  margin-top: 195px;
  margin-left: -7.55208%;
  width: 65.05208%;
}
.message-section__image--02 {
  width: 50%;
  margin-top: 311px;
  margin-right: -4.89583%;
}
.message-section__body--01,
.message-section__body--03 {
  position: relative;
  width: 36.45833%;
  max-width: 700px;
  margin-right: -7.55208%;
  z-index: 1;
}
.message-section__body--02 {
  position: relative;
  width: 46.875%;
  max-width: 900px;
  margin-left: -4.89583%;
  z-index: 1;
}
.message-section__body--04 {
  position: relative;
  max-width: 1020px;
  margin-top: -112px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.message-section__image--04 img {
  width: 100%;
  max-width: none;
}
.message-section__text {
  padding: 100px;
  background: #fff;
  font-size: 1.8rem;
  line-height: 2;
}
.message-section__title {
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.25;
  color: #4285f4;
}
.message-section__title:not(.stage-in) {
  opacity: 0;
}
.message-section__title.stage-in {
  -webkit-animation: slide-up 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both,fade-in 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: slide-up 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both,fade-in 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.message-section__text p {
  margin-top: 1.75em;
}
.message-section__text p:not(.stage-in) {
  opacity: 0;
}
.message-section__text p.stage-in {
  -webkit-animation: slide-up 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both,fade-in 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: slide-up 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both,fade-in 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
@media screen and (max-width: 1800px) {
  .message-lg-break {
    display: none;
  }
}
@media screen and (max-width: 1550px) {
  .message-section__text {
    font-size: 1.6rem;
  }
  .message-section__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1300px) {
  .message-section__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1150px) {
  .message-section__text {
    padding: 50px;
  }
  .message-section__image--02 {
    margin-top: 150px;
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) {
  .message-section--01,
  .message-section--03 {
    flex-direction: column;
  }
  .message-section__image--01,
  .message-section__image--03 {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
  .message-section__body--01,
  .message-section__body--03 {
    width: calc(100% - 20px);
    max-width: none;
    margin-top: -20px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .message-section--02 {
    flex-direction: column;
  }
  .message-section__image--02 {
    width: calc(100% - 100px);
    margin-top: 0;
    margin-left: 50px;
    margin-right: 50px;
  }
  .message-section__body--02 {
    width: 100%;
    max-width: none;
    margin-left: 10px;
    margin-right: 10px;
  }
  .message-section--04 {
    margin-top: 100px;
  }
  .message-section__body--04 {
    margin-top: -20px;
  }
}
@media screen and (max-width: 600px) {
  .message-section--01,
  .message-section--02,
  .message-section--03,
  .message-section--04 {
    margin-top: 50px;
  }
  .message-section__title {
    font-size: 2rem;
  }
  .message-section__text {
    padding: 25px;
  }
}



.interview-header {
  position: relative;
}
.interview-header__image {
  width: 100%;
}
.interview-header__image img {
  max-width: none;
  width: 100%;
}
.interview-header__text {
  position: relative;
  /*bottom: -136px;*/
  width: 28.64583%;
  /*margin-top: -145px;*/
  margin-top: -7.6%;
  margin-left: 16.66666%;
  padding: 74px;
  background: #4285f4;
  color: #fff;
  z-index: 1;
}
.interview-header__number {
  font-size: 1.8rem;
}
.interview-header__name {
  font-weight: 600;
  font-size: 7.2rem;
}
.interview-header__year {
  font-size: 1.6rem;
}

.interview-title {
  display: flex;
  flex-direction:column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 90px;
  margin-bottom: 105px;
}
.interview-title__text {
  width: 62.91666%;
  padding: 52px 60px;
  background: #01c354;
  font-size: 3.6rem;
  color: #fff;
}

.interview-section {
  margin-top: 100px;
}
.interview-section__title01 {
  font-size: 3rem;
  color: #4285f4;
}
.interview-section__title02 {
  font-size: 3.6rem;
  color: #4285f4;
}
.interview-section__text {
  font-size: 1.8rem;
  line-height: 2;
}
.interview-section__text > p {
  margin-top: 1.5em;
}

.interview-section01 {
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.interview-section01__image {
  width: 38.02083%;
  max-width: 730px;
  margin-right: -2.86458%;
}
.interview-section01__body {
  position: relative;
  width: 41.66666%;
  max-width: 800px;
  /*margin-top: 144px;*/
  margin-top: 7.5%;
  margin-left: -2.86458%;
  padding: 90px 100px 100px;
  background: #fff;
}

.interview-section02 {
  position: relative;
}
.interview-section02__image {
  width: 100%;
}
.interview-section02__image img {
  width: 100%;
  max-width: none;
}
.interview-section02__body {
  position: relative;
  width: 49.875%;
  max-width: 900px;
  /*margin-top: -130px;*/
  margin-top: -6.85%;
  margin-left: auto;
  margin-right: auto;
  padding: 90px 100px 100px;
  background: #fff;
}

.interview-section03 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.interview-section03__image {
  width: 52.08333%;
  max-width: 1000px;
  margin-left: -8.75%;
}
.interview-section03__body {
  position: relative;
  width: 41.66666%;
  max-width: 800px;
  /*margin-top: 470px;*/
  margin-top: 24.5%;
  margin-right: -8.75%;
  padding: 90px 100px 100px;
  background: #fff;
}

.interview-header__text .interview-header__animate {
  display: inline-block;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.interview-header__text.stage-in .interview-header__animate {
  transform: none;
  opacity: 1;
}
.interview-section01__body .js-stage-event-target,
.interview-section02__body .js-stage-event-target,
.interview-section03__body .js-stage-event-target {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.interview-section01__body .stage-in,
.interview-section02__body .stage-in,
.interview-section03__body .stage-in {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 1550px) {
  .interview-header__text {
    padding: 50px;
  }
  .interview-title__text {
    font-size: 3rem;
  }
  .interview-section01__body,
  .interview-section02__body,
  .interview-section03__body {
    padding: 50px;
  }
  .interview-section__title01,
  .interview-section__title02 {
    font-size: 3rem;
  }
  .interview-section__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 1350px) {
  .interview-header__name {
    font-size: 5rem;
  }
  .interview-header__year {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 950px) {
  .interview-title {
    margin-top: 50px;
  }
  .interview-header__text {
    position: relative;
    left: 0;
    padding: 25px;
    width: 270px;
  }
  .interview-header__number {
    line-height: 1;
  }
  .interview-header__name {
    font-size: 4rem;
    line-height: 1.2;
  }
  .interview-title__text {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    padding: 25px;
  }
  .interview-section01,
  .interview-section03 {
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }
  .interview-section01__image,
  .interview-section03__image {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
  }
  .interview-section01__body,
  .interview-section03__body {
    width: 100%;
    max-width: none;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }
  .interview-section02__body {
    width: calc(100% - 20px);
    margin-top: 50px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 600px) {
  .interview-title__text {
    font-size: 2rem;
  }
  .interview-header__text {
    margin-top: -10px;
    margin-left: 10px;
    padding: 20px;
  }
  .interview-title {
    display: block;
    margin-bottom: 0;
  }
  .interview-section__title01,
  .interview-section__title02 {
    font-size: 2rem;
  }
  .interview-section01__body,
  .interview-section02__body,
  .interview-section03__body {
    margin-top: 20px;
    padding: 20px;
  }
  .interview-section {
    margin-top: 50px;
  }
}
@media screen and (max-width: 500px) {
  .interview-header__year {
    font-size: 1.3rem;
  }
  .interview-header__image {
    position: relative;
    height: 220px;
  }
  .interview-header__image img {
    position: absolute;
    width: 528px;
    height: 220px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}


/* ==========================================================================
   職種紹介
   ========================================================================== */

.jobs-main-image {
  display: flex;
  width: 100%;
  max-width: 1220px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.jobs-main-image__item {
  width: 25%;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.jobs-main-image__item:nth-of-type(1) {
  transition-delay: 0;
}
.jobs-main-image__item:nth-of-type(2) {
  transition-delay: 0.1s;
}
.jobs-main-image__item:nth-of-type(3) {
  transition-delay: 0.2s;
}
.jobs-main-image__item:nth-of-type(4) {
  transition-delay: 0.3s;
}
.jobs-main-image.stage-in .jobs-main-image__item {
  transform: none;
  opacity: 1;
}

.jobs-section01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1220px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.jobs-section01__item {
  width: calc((100% - 12.5%) / 2);
}
.jobs-section01__item:nth-of-type(n + 3) {
  margin-top: 90px;
}
.jobs-section01__title {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
}
.jobs-section01__subtitle {
  margin-top: 6px;
  font-size: 1.8rem;
  color: #808080;
}
.jobs-section01__list {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #bfbfbf;
}
.jobs-section01__list__term {
  font-size: 2.4rem;
  font-weight: 600;
}
.jobs-section01__list__term:not(:first-child) {
  margin-top: 40px;
}
.jobs-section01__list__description {
  margin-top: 9px;
  font-size: 1.8rem;
  line-height: 2;
}

.jobs-section02 {
  margin-top: 100px;
  padding: 100px 10px;
  background: url(/recruit/assets/img/about/jobs_bg01.jpg) no-repeat center center;
  background-size: auto 115%;
  transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) background-position;
}
.jobs-section02__title {
  text-align: center;
  font-size: 4.8rem;
  line-height: 1;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 1s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.jobs-section02__title.stage-in {
  transform: none;
  opacity: 1;
}
.jobs-section02__subtitle {
  text-align: center;
  font-size: 3rem;
  line-height: 1;
}
.jobs-section02__item {
  width: 52.08333%;
  max-width: 1000px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 200px;
  background: rgba(255,255,255,0.70);
  font-size: 1.8rem;
  line-height: 2;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 1s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.jobs-section02__item.stage-in {
  transform: none;
  opacity: 1;
}
.jobs-section02__item > * {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 1s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.jobs-section02__item.stage-in > * {
  transform: none;
  opacity: 1;
}
.jobs-section02__item.stage-in > *:nth-of-type(1) {
  transition-delay: 0.5s;
}
.jobs-section02__item.stage-in > *:nth-of-type(2) {
  transition-delay: 0.7s;
}
.jobs-section02__item.stage-in > *:nth-of-type(3) {
  transition-delay: 0.9s;
}
.jobs-section02__item.stage-in > *:nth-of-type(4) {
  transition-delay: 1.1s;
}
.jobs-section02__row {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 48px;
}
.jobs-section02__col01 {
  width: 180px;
}
.jobs-section02__col01__link {
  display: block;
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
  transition: 0.3s;
}
.jobs-section02__col01__link:hover {
  color: #4285f4;
}

.jobs-section02__col01__link__text {
  padding-left: 1em;
}
.jobs-section02__col02 {
  width: calc(100% - 180px);
}
.jobs-section02__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.jobs-section02__list__term {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #ff6376;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}
.jobs-section02__list__term__number {
  font-weight: 600;
  font-size: 3.7rem;
}
.jobs-section02__list__description {
  width: 470px;
  width: calc(100% - 150px);
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.75;
  font-size: 3rem;
  color: #ff6376;
}

@media screen and (max-width: 1700px) {
  .jobs-lg-break {
    display: none;
  }
}
@media screen and (max-width: 1650px) {
  .jobs-section02__item {
    padding: 100px 100px;
  }
}
@media screen and (max-width: 1300px) {
}
@media screen and (max-width: 1150px) {
  .jobs-section02__item {
    padding: 50px;
    font-size: 1.6rem;
  }
  .jobs-section01__title {
    font-size: 4rem;
  }
  .jobs-section01__subtitle {
    font-size: 1.6rem;
  }
  .jobs-section01__list__term {
    font-size: 2rem;
  }
  .jobs-section01__list__description {
    font-size: 1.6rem;
  }
  .jobs-section02__list__description  {
    width: calc(100% - 120px);
    font-size: 2rem;
  }
}
@media screen and (max-width: 950px) {
  .jobs-section02__title {
    font-size: 4rem;
  }
  .jobs-section01__item {
    width: 100%;
  }
  .jobs-section01__item:nth-of-type(n + 2) {
    margin-top: 90px;
  }
  .jobs-section01__list__term:not(:first-child) {
    margin-top: 20px;
  }
  .jobs-section02__list__term {
    width: 64px;
    height: 64px;
  }
  .jobs-section02__list__term__number {
    font-size: 3rem;
  }
  .jobs-section02__list__description  {
    width: calc(100% - 80px);
  }
  .jobs-section02__row {
    flex-direction: column;
  }
  .jobs-section02__col01,
  .jobs-section02__col02 {
      width: 100%;
  }
  .jobs-section02__col01 {
    margin-top: 20px;
    text-align: center;
  }
  .jobs-section02__item {
    padding: 25px;
  }
  .jobs-section02__row {
    margin-top: 24px;
  }
  .jobs-section02__subtitle {
    font-size: 2rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .jobs-main-image {
    margin-top: 50px;
  }
  .jobs-section01,
  .jobs-section01__item:nth-of-type(n + 2) {
    margin-top: 50px;
  }
  .jobs-section01__title {
    font-size: 3rem;
  }
  .jobs-section02__title {
    font-size: 3rem;
  }
  .jobs-section02__item {
    width: calc(100% - 20px);
  }
}


/* ==========================================================================
   前田製作所とは
   ========================================================================== */

.company-section-title {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
}
.company-section-text {
  margin-top: 50px;
  font-size: 1.8rem;
  line-height: 2;
}
.company-section-text p:not(:first-child) {
  margin-top: 1.75em;
}
.company-section-logo {
  margin-bottom: 16px;
}

.company-section01 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.company-section01__body {
  width: 36.45833%;
  padding-left: 5.20833%;
}
.company-section01__body .js-stage-event-target {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 1s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.company-section01__body .stage-in {
  transform: none;
  opacity: 1;
}
.company-section01__image {
  width: 46.875%;
  max-width: 900px;
}

.company-section02 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1940px;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.company-section02__body {
  width: 36.45833%;
  padding-right: 5.20833%;
}
.company-section02__body .js-stage-event-target {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 1s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.company-section02__body .stage-in {
  transform: none;
  opacity: 1;
}
.company-section02__image {
  width: 46.875%;
  max-width: 900px;
}

.company-section03 {
  position: relative;
  margin-top: 190px;
  padding-bottom: 360px;
  background: url(/recruit/assets/img/about/company_bg01.png) no-repeat center bottom;
}
.company-section03__title {
  text-align: center;
}
.company-section03__body {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.company-section03__body .js-stage-event-target {
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 1s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transform: translateY(30px);
  opacity: 0;
}
.company-section03__body .stage-in {
  transform: none;
  opacity: 1;
}
.company-section03__image {
  width: 100%;
  max-width: 1920px;
  display: flex;
  align-items: flex-end;
  margin-top: -160px;
  margin-left: auto;
  margin-right: auto;
}
.company-section03__image__item {
  width: calc(100% / 3);
}
.company-section03__image01 {
  transform: translateX(-86px);
}
.company-section03__image02 {
  transform: translateY(-30px);
}
.company-section03__image03 {
  transform: translateY(-16px) translateX(15px);
}

.company-section04 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1940px;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.company-section04__body {
  width: 36.45833%;
  padding-right: 5.20833%;
}
.company-section04__image {
  width: 46.875%;
  max-width: 900px;
}
.company-section04__image .general-image-slider__item img {
    transform: scale(1.05);
    opacity: 0;
    transition: 1s transform, 1s opacity;
}
.no-backgroundcliptext .company-section04__image .general-image-slider__item img {
  transform: none;
  opacity: 1;
  transition: none;
}
.company-section04__image.stage-in .general-image-slider__item img {
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 1760px) {
  .company-section03__image {
    margin-top: -6%;
  }
  .company-section03__image {
    transform: translateY(-16px) translateX(30px);
  }
}
@media screen and (max-width: 1550px) {
  .company-section03__image {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1150px) {
  .company-section01,
  .company-section02,
  .company-section03 {
    margin-top: 100px;
  }
  .company-section04 {
    margin-top: -200px;
  }
  .company-section01__body {
    padding-left: 50px;
  }
  .company-section02__body {
    padding-right: 50px;
  }
  .company-section04__body {
    padding-right: 50px;
  }
  .company-section-title {
    font-size: 4rem;
  }
  .company-section-text {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 950px) {
  .company-section01,
  .company-section02,
  .company-section04 {
    flex-direction: column;
  }
  .company-section01__body,
  .company-section02__body,
  .company-section04__body {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .company-section01__image,
  .company-section04__image {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
  }
  .company-section02__image {
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
  }
  .company-section-title {
    text-align: center;
    font-size: 3rem;
  }
  .company-section-logo {
    text-align: center;
  }
  .company-section02 {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .company-section01,
  .company-section02,
  .company-section03,
  .company-section04 {
    margin-top: 50px;
  }
  .company-section03 {
    padding-bottom: 0;
    background: none;
  }
  .company-section02__image {
    max-width: 300px;
  }
  .company-section-title {
    font-size: 2rem;
  }
  .company-section03__image {
    flex-direction: column;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .company-section03__image__item {
    width: 100%;
  }
  .company-section03__image01,
  .company-section03__image02,
  .company-section03__image03 {
    transform: none;
  }
}


/* ==========================================================================
   トピックス
   ========================================================================== */

.topicks-entries {
  width: calc(100% - 20px);
  max-width: 1000px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 150px;
  background: #fff;
}
.topicks-entries__item {
  border-bottom: 1px solid #e5e5e5;
}
.topicks-entries__item:first-child {
  border-top: 1px solid #e5e5e5;
}
.topicks-entries__link {
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
  font-size: 1.8rem;
  color: #4285f4;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
}
.topicks-entries__link:hover {
  opacity: 0.8;
}
.topicks-entries__date {
  width: 120px;
}
.topicks-entries__title {
  width: calc(100% - 120px);
}

@media screen and (max-width: 950px) {
  .topicks-entries {
    padding: 100px;
  }
}
@media screen and (max-width: 600px) {
  .topicks-entries {
    margin-top: 50px;
    padding: 30px;
  }
  .topicks-entries__link {
    display: block;
  }
.topicks-entries__date {
    font-size: 1.6rem;
}
  .topicks-entries__title {
    width: 100%;
    font-size: 1.6rem;
  }
}

.entries-pager {
  margin-top: 50px;
}
.entries-pager__list {
  display: flex;
  justify-content: center;
}
.entries-pager__item {
  margin-left: 25px;
  margin-right: 25px;
  list-style-type: none;
}
.entries-pager__link {
  position: relative;
  display: inline-block;
  width: 250px;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid #a0c2f9;
  text-decoration: none;
  text-align: center;
  font-size: 1.4rem;
  color: rgba(66,133,244,1);
  transition: 0.3s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) color, 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) border;
  overflow: hidden;
}
.entries-pager__link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 116%;
  height: 102%;
  background: #4285f4;
  transform: translateX(-110%) skewX(-15deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.entries-pager__link:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 15px;
  margin-left: 8px;
  margin-right: -8px;
  background: url(/recruit/assets/svg/arrow_white.svg) no-repeat;
  background-size: cover;
  vertical-align: -2px;
  transition: 0.4s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) opacity,  0.4s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform;
  transform: translateX(-10px);
  opacity: 0;
}
.entries-pager__link:hover {
  border-color: #4285f4;
  color: #fff;
}
.entries-pager__link:hover:before {
  transform: translateX(-5%) skewX(-15deg);
}
.entries-pager__link:hover:after {
  transform: none;
  opacity: 1;
}

.topicks-entry {
  max-width: 1000px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 150px;
  background: #fff;
}
.topicks-entry__date {
  text-align: center;
  font-size: 1.8rem;
  font-style: italic;
  color: #4285f4;
}
.topicks-entry__title {
  margin-top: 30px;
  line-height: 1.75;
  font-size: 3.6rem;
}
.topicks-entry-body {
  margin-top: 28px;
  font-size: 1.8rem;
  line-height: 1.75;
}
.topicks-entry-body > p:not(:first-child) {
  margin-top: 1.75em;
}
.topicks-entry-body > ul:not(:first-child),
.topicks-entry-body > ol:not(:first-child) {
  margin-top: 1.75em;
  margin-left: 1.75em;
}
@media screen and (max-width: 950px) {
  .topicks-entry {
    padding: 100px;
  }
}
@media screen and (max-width: 600px) {
  .topicks-entry {
    margin-top: 50px;
    padding: 30px;
  }
  .topicks-entry__title {
    font-size: 2rem;
  }
  .topicks-entry-body {
    font-size: 1.6rem;
  }
  .entries-pager__item {
    width: 40%;
  }
  .entries-pager__link {
    width: 100%;
  }
}


.training-section01 {
  margin-top: 90px;
}
.training-section01__header {
  text-align: center;
}
.training-section01__header__title {
  font-size: 4.8rem;
  line-height: 1;
}
.training-section01__header__text {
  margin-top: 50px;
  font-size: 1.8rem;
  line-height: 2;
}

.training-section__row {
  display: flex;
  max-width: 1920px;
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
.training-section__image {
  position: relative;
  width: 65.05208%;
  max-width: 1249px;
  margin-right: -13.54166%;
  margin-left: -6.25%;
}
.training-section__image .general-image-slider__item img {
  transform: scale(1.05);
  opacity: 0;
  transition: 1s transform, 1s opacity;
}
.no-backgroundcliptext .training-section__image .general-image-slider__item img {
  transform: none;
  opacity: 1;
  transition: none;
}
.training-section__image .stage-in .general-image-slider__item img {
  transform: none;
  opacity: 1;
}
.training-section__body {
  position: relative;
  width: 33.85416%;
  max-width: 650px;
  margin-top: 160px;
  margin-right: -6.25%;
  padding: 100px;
  background: #fff;
}
.training-section03__body {
  margin-top: 195px;
}

.general-image-slider {
  max-width: 1249px;
}
.general-image-slider__item {
  position: relative;
  overflow: hidden;
}
.general-image-slider__item__caption {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 165px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #3e6290;
  text-align: center;
  color: #fff;
}
.general-image-slider .slick-arrow {
  position: absolute;
  bottom: -29px;
  display: block;
  content: '';
  width: 66px;
  height: 66px;
  padding: 0;
  border: 1px solid #4285f4;
  background: #4285f4;
  transition: 0.3s;
  z-index: 1;
  font-size: 0;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.general-image-slider .slick-arrow:hover {
  background-color: #2a6ad4;
  border-color: #2a6ad4;
}
.general-image-slider .slick-prev {
  left: 50%;
  margin-left: -67px;
  background-image: url(/recruit/assets/img/common/slick_prev.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.general-image-slider .slick-next {
  left: 50%;
  background-image: url(/recruit/assets/img/common/slick_next.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.general-image-slider--arrow-r .slick-prev {
  left: auto;
  right: 98px;
}
.general-image-slider--arrow-r .slick-next {
  left: auto;
  right: 31px;
}
@media screen and (max-width: 950px) {
  .general-image-slider .slick-arrow:hover {
    background-color: #4285f4;
    border-color: #4285f4;
  }
}
@media screen and (max-width: 600px) {
  .general-image-slider .slick-arrow {
    width: 44px;
    height: 44px;
    bottom: -45px;
  }
  .general-image-slider .slick-prev {
    margin-left: -45px;
  }
  .general-image-slider--arrow-r .slick-prev {
    right: 76px;
    margin-left: 0;
  }
}

.training-section__body__title01 {
  font-size: 4.8rem;
  line-height: 1;
}
.training-section03__body__title01 {
  margin-bottom: 45px;
}
.training-section__body__title02 {
  font-size: 2.4rem;
  line-height: 2;
}
.training-section__body__text {
  font-size: 1.8rem;
  line-height: 2;
}
.training-section01__body__title02:not(:first-child) {
  margin-top: 70px;
}
.training-section03__body__title02:not(:first-child) {
  margin-top: 35px;
}

.training-section-title01 {
  font-size: 4.8rem;
  line-height: 1;
}
.training-section-title02 {
  font-size: 2.4rem;
  line-height: 2;
}
.training-section-title02:not(:first-child) {
  margin-top: 35px;
}
.training-section-body {
  position: relative;
  max-width: 650px;
  padding: 100px;
  background: #fff;
}
.training-section-text {
  font-size: 1.8rem;
  line-height: 2;
}
.training-section-title01 + .training-section-text {
  margin-top: 50px;
}
.training-section-text p:not(:first-child) {
  margin-top: 1.75em;
}

.training-section02 {
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.training-section02__col {
  width: 33.85416%;
}
.training-section02__col--01 {
  margin-right: 2.60416%;
}
.training-section02__col--02 {
  margin-left: 2.60416%;
  padding-top: 190px;
}
@media screen and (max-width: 1550px) {
  .training-section01__header__title,
  .training-section-title01,
  .training-section__body__title01 {
    font-size: 4rem;
  }
  .training-section01__header__text,
  .training-section-text,
  .training-section__body__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .training-section-body,
  .training-section__body {
    padding: 50px;
  }
  .training-section-title01 + .training-section-text {
    margin-top: 25px;
  }
}
@media screen and (max-width: 950px) {
  .training-section__row {
    flex-direction: column-reverse;
  }
  .training-section__image {
    width: 100%;
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
  }
  .training-section__body {
    width: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .training-section02 {
    flex-direction: column;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .training-section02__col {
    width: 100%;
    max-width: 650px;
      margin-left: auto;
      margin-right: auto;
  }
  .training-section02__col--02 {
    margin-top: 50px;
    padding-top: 0;
  }
}
@media screen and (max-width: 690px) {
  .training-section__body {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 600px) {
  .training-section01 {
    margin-top: 50px;
  }
  .training-section01__header__title,
  .training-section-title01,
  .training-section__body__title01 {
    font-size: 2.4rem;
  }
  .training-section__body__title02,
  .training-section-title02 {
    font-size: 1.8rem;
  }
  .training-section01__body__title02:not(:first-child) {
    margin-top: 30px;
  }
  .training-section03__body__title01 {
    margin-bottom: 30px;
  }
  .training-section01__header__text {
    margin-top: 20px;
  }
  .training-section-body,
  .training-section__body {
    padding: 25px;
  }
  .training-section__row {
    margin-top: 50px;
  }
}


/* ==========================================================================
   福利厚生
   ========================================================================== */

.welfare {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1370px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.welfare__item {
  width: calc(50% - 25px);
  padding: 100px;
  background: #fff;
}
.welfare__item:nth-of-type(n+3) {
  margin-top: 50px;
}
.welfare__icon {
  overflow: hidden;
  text-align: center;
}
.welfare__icon img {
  transform: translateY(70px);
  opacity: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.welfare__item:nth-of-type(2) .welfare__icon img {
  transition-delay: 0.1s;
}
.stage-in .welfare__icon img {
  transform: none;
  opacity: 1;
}
.welfare__title {
  overflow: hidden;
  margin-top: 16px;
  font-size: 4.8rem;
  text-align: center;
  line-height: 1;
}
.welfare__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(70px);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.welfare__item:nth-of-type(2) .welfare__title span {
  transition-delay: 0.1s;
}
.stage-in .welfare__title span {
  transform: none;
  opacity: 1;
}
.welfare__list {
  margin-top: 46px;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(30px);
  opacity: 0;
}
.welfare__item:nth-of-type(2) .welfare__list {
  transition-delay: 0.1s;
}
.stage-in .welfare__list {
  transform: none;
  opacity: 1;
}
.welfare__list__item {
  padding: 11px 5px;
  border-bottom: 1px solid #e5e5e5;
  list-style: none;
  font-size: 1.8rem;
}
.welfare__list__item:first-child {
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 1150px) {
  .welfare__item {
    padding: 50px;
  }
  .welfare__title {
    font-size: 4rem;
  }
  .welfare__list__item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 950px) {
  .welfare__title {
    font-size: 3rem;
  }
  .welfare__item {
    padding: 25px;
  }
}
@media screen and (max-width: 600px) {
  .welfare__item {
    width: 100%;
  }
  .welfare,
  .welfare__item:nth-of-type(n+2) {
    margin-top: 50px;
  }
}


/* ==========================================================================
   社員交流
   ========================================================================== */

.activity-text {
  position: relative;
  max-width: 650px;
  padding: 100px;
  background: #fff;
}
.activity-text {
  font-size: 1.8rem;
  line-height: 2;
}
.activity-text p:not(:first-child) {
  margin-top: 1.75em;
}
.activity-title {
  font-size: 4.8rem;
  line-height: 1;
}

.activity-section01 {
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
.activity-section01__body {
  position: relative;
  width: 33.85716%;
  margin-right: -6.25%;
  z-index: 1;
}
.activity-section01__image {
  width: 65.05208%;
  max-width: 1249px;
  margin-top: 200px;
  margin-left: -6.25%;
  margin-right: -12.5%;
}

.activity-section02 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  max-width: 1920px;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
}
.activity-section02__body {
  position: relative;
  width: 33.85716%;
  margin-left: -6.25%;
  z-index: 1;
}
.activity-section02__image {
  width: 65.05208%;
  max-width: 1249px;
  margin-top: 200px;
  margin-right: -6.25%;
  margin-left: -12.5%;
}

.activity-section03 {
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
}
.activity-section03__body {
  position: relative;
  width: 33.85716%;
  margin-right: -6.25%;
  z-index: 1;
}
.activity-section03__image {
  width: 65.05208%;
  max-width: 1249px;
  margin-top: 100px;
  margin-left: -6.25%;
  margin-right: -12.5%;
}
.activity-section01__image .general-image-slider__item img,
.activity-section02__image .general-image-slider__item img,
.activity-section03__image .general-image-slider__item img {
  transform: scale(1.05);
  opacity: 0;
  transition: 1s transform, 1s opacity;
}
.no-backgroundcliptext .activity-section01__image .general-image-slider__item img,
.no-backgroundcliptext .activity-section02__image .general-image-slider__item img,
.no-backgroundcliptext .activity-section03__image .general-image-slider__item img {
  transform: none;
  opacity: 1;
  transition: none;
}
.activity-section01__image .stage-in .general-image-slider__item img,
.activity-section02__image .stage-in .general-image-slider__item img,
.activity-section03__image .stage-in .general-image-slider__item img {
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 1550px) {
  .activity-title {
    font-size: 4rem;
  }
  .activity-text {
    padding: 50px;
  }
  .activity-text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 950px) {
  .activity-title {
    font-size: 3rem;
  }
  .activity-section01,
  .activity-section02,
  .activity-section03 {
    flex-direction: column;
    margin-top: 100px;
  }
  .activity-text {
    max-width: none;
  }
  .activity-section01__body,
  .activity-section02__body,
  .activity-section03__body {
    width: calc(100% - 20px);
    max-width: none;
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
  .activity-section01__image,
  .activity-section02__image,
  .activity-section03__image {
    width: 100%;
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .activity-section01 {
    margin-top: 50px;
  }
  .activity-title {
    font-size: 2rem;
  }
  .activity-text {
    padding: 25px;
  }
}


/* ==========================================================================
   募集要項
   ========================================================================== */

.requirements {
  max-width: 1220px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.requirements__header {}
.requirements-header__nav {
  display: flex;
}
.requirements-header__nav__item {
  width: 50%;
  list-style: none;
}
.requirements-header__nav__link {
  display: block;
  padding-top: 27px;
  padding-bottom: 27px;
  background: #e8e8e8;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  color: #808080;
  outline: none;
  transition: 0.3s;
}
.ui-state-active .requirements-header__nav__link,
.requirements-header__nav__link--active {
  background: #4285f4;
  color: #fff;
}

.requirements-body {
  margin-top: 50px;
}
.requirements-body__item {
  padding: 100px;
  background: #fff;
}
.requirements-body__item:not(:first-child) {
  margin-top: 90px;
}

.requirements-nav {
  display: flex;
  justify-content: center;
  margin-bottom: -40px;
}
.requirements-nav__item {
  list-style: none;
  margin-left: 10px;
  margin-right: 10px;
}
.requirements-nav__link {
  display: inline-block;
  padding-left: 30px;
  padding-right: 20px;
  border: 1px solid rgba(66,133,244,0.50);
  border-radius: 20px;
  text-decoration: none;
  line-height: 38px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4285f4;
  transition: 0.3s;
}
.requirements-nav__link:after {
  display: inline-block;
  width: 8px;
  height: 7px;
  margin-top: -2px;
  margin-left: 15px;
  background: url(/recruit/assets/img/entry/arrow.png) no-repeat;
  background-size: contain;
  vertical-align: 1px;
  opacity: 0.5;
  content: '';
  transition: 0.3s;
}
.requirements-nav__link:hover {
  border: 1px solid rgba(66,133,244,1.00);
}
.requirements-nav__link:hover:after {
  opacity: 1;
}

.requirements-table-title {
  margin-bottom: 45px;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1;
}

.requirements-table {
  table-layout: fixed;
  width: 100%;
  font-size: 1.8rem;
  line-height: 2;
}
.requirements-table__col01 {
  width: 25.6%;
}
.requirements-table__row {
  border-top: 2px solid #fff;
}
.requirements-table__header {
  padding: 23px 30px;
  background: #e4eeff;
  vertical-align: top;
  text-align: left;
  color: #4285f4;
}
.requirements-table__data {
  padding: 23px 30px;
  background: #f3f5f9;
  vertical-align: top;
}

.requirements-button {
  margin-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
.requirements-button__link {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding-top: 38px;
  padding-bottom: 38px;
  background: #4285f4;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
}

.requirements-es {
  margin-top: 50px;
  text-align: center;
  font-size: 1.8rem;
}
.requirements-es__link {
  text-decoration: none;
  color: #4285f4;
  transition: 0.3s color;
}
.requirements-es__link:before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 12px;
  margin-right: 10px;
  background: url(/recruit/assets/img/home/topics_arrow.png) no-repeat;
  background-size: cover;
  transition: 0.3s transform;
}
.requirements-es__link:hover {
  color: #2a6ad4;
}
.requirements-es__link:hover:before {
  transform: translateX(3px);
}

@media screen and (max-width: 950px) {
  .requirements-header__nav__link {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .requirements-body__item {
    padding: 50px;
  }
  .requirements-table-title {
    padding-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .requirements {
    margin-top: 50px;
  }
  .requirements-nav {
    flex-direction: column;
    align-items: center;
  }
  .requirements-nav__item:not(:first-child) {
    margin-top: 10px;
  }
  .requirements-header__nav__link {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 2rem;
  }
  .requirements-body__item {
    padding: 10px;
  }
  .requirements-table-title {
    margin-bottom: 20px;
    padding-top: 60px;
    font-size: 2rem;
  }
  .requirements-table {
    font-size: 1.6rem;
  line-height: 1.75;
  }
  .requirements-table__header {
    padding: 10px;
  }
  .requirements-table__data {
    padding: 10px;
  }
  .requirements-es {
    padding-bottom: 30px;
    font-size: 1.6rem;
  }
  .requirements-es__link {
    transition: none;
  }
  .requirements-es__link:hover {
    color: #4285f4;
  }
}


/* ==========================================================================
   UTILITIES
   ========================================================================== */

.u-font-oswald {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.u-text-right {
  text-align: right;
}

.u-lg-break {
}
@media screen and (max-width: 880px){
  .u-lg-break {
    display: none;
  }
}


/* ==========================================================================
   アニメーション
   ========================================================================== */

@-webkit-keyframes home-slider-text01 {
  0% {
    letter-spacing: -20px;
    transform: scaleX(0.5);
    opacity: 0;
  }
  100% {
    letter-spacing: normal;
    transform: none;
    opacity: 1;
  }
}
@keyframes home-slider-text01 {
  0% {
    letter-spacing: -0.3em;
    transform: scaleX(0.2);
    opacity: 0;
  }
  100% {
    letter-spacing: normal;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes home-slider-text02 {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
  transform: translate3d(0,0,0);
    opacity: 1;
  }
}
@keyframes home-slider-text02 {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
  transform: translate3d(0,0,0);
    opacity: 1;
  }
}

@-webkit-keyframes home-slider-cover {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes home-slider-cover {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

@-webkit-keyframes move-gradient {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes move-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes scale-up {
  0% {
    transform: none;
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes scale-up {
  0% {
    transform: none;
  }
  100% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes scale-up2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%) scale(1.1);
  }
}
@keyframes scale-up2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%) scale(1.1);
  }
}

@-webkit-keyframes slide-up {
  0% {
    transform: translateY(50px);
    
  }
  100% {
    transform: none;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(50px);
    
  }
  100% {
    transform: none;
  }
}


/* ==========================================================================
   その他
   ========================================================================== */

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/* Particles */

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: -1;
  overflow: hidden;
}
#particles-js camvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}