@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  background-color: #131212;
}

.sp_show {
  display: none;
}

@media (max-width: 768px) {
  .sp_show {
    display: none;
  }
}

@media (max-width: 480px) {
  .sp_show {
    display: block;
  }
}

.sp_show2 {
  display: none;
}

@media (max-width: 768px) {
  .sp_show2 {
    display: block;
  }
}

.pc_show {
  display: block;
}

@media (max-width: 480px) {
  .pc_show {
    display: none;
  }
}

@media (min-width: 769px) {
  .onlyPc {
    display: block;
  }
}

@media (max-width: 768px) {
  .onlyPc {
    display: none;
  }
}

li {
  list-style: none;
}

a {
  color: #fff;
  text-decoration: none;
  font-family: serif;
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #000;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
}

.hoverText:before {
  content: "";
  /*疑似要素の中身は空（記述は必須）*/
  position: absolute;
  /*子要素として疑似要素を固定*/
  left: 0;
  /*長さはテキストの両端まで*/
  right: 0;
  /*長さはテキストの両端まで*/
  bottom: -5px;
  /*線の上下位置*/
  width: 100%;
  /*線の長さ*/
  height: 2px;
  /*線の太さ*/
  background-color: #fff;
  /*線の色*/
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*横方向に0状態から全体まで線を入れる*/
  -webkit-transform-origin: center;
          transform-origin: center;
  /*中央を起点にアニメーション*/
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  /*アニメーションの時間*/
}

.hoverText:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  /*ホバー時に等倍へ拡大*/
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  /* フェードインで動く高さを指定 */
  -webkit-transition: all 2000ms;
  transition: all 2000ms;
  /* フェードインにかかる時間を指定 */
}

.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.effect-fade_top {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 40%;
  right: 5%;
}

@media (max-width: 768px) {
  .scrolldown2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .scrolldown2 {
    display: none;
  }
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 40px;
  /*テキストの形状*/
  color: #eee;
  font-size: 1vw;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 145px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 145px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 150px;
  background: #eee;
}

.scroll-promote {
  position: absolute;
  top: 80%;
  left: 50%;
  background: transparent;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 52px;
  text-align: center;
  line-height: 110px;
  color: white;
  border: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .scroll-promote {
    width: 60px;
    height: 60px;
    top: 60%;
    font-size: 32px;
    line-height: 80px;
  }
}

@media (max-width: 480px) {
  .scroll-promote {
    width: 40px;
    height: 40px;
    top: 70%;
    font-size: 32px;
    line-height: 60px;
  }
}

@media (max-width: 1360px) {
  .page-head_title {
    font-family: serif;
  }
}

@media (max-width: 768px) {
  .page-head_title {
    font-family: serif;
  }
}

@media (max-width: 480px) {
  .page-head_title {
    font-family: serif;
    font-size: 20px;
  }
}

.container {
  margin: 0 auto 50px;
}

main {
  overflow: hidden;
  background-color: #131212;
}

.sub_title {
  position: relative;
  padding: 1.5rem 2rem;
  color: #fff;
  width: 20%;
  margin: 0 auto;
  font-size: 1.6vw;
  font-family: serif;
}

.sub_title:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}

.sub_title:after {
  bottom: 0;
}

h2 {
  color: #fff;
  font-family: serif;
  font-size: 25px;
  text-align: center;
  margin: 0;
}

@media (max-width: 1360px) {
  h2 {
    font-size: 25px;
    font-size: 1.83824vw;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 20px;
    font-size: 2.60417vw;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 10px;
    font-size: 2.08333vw;
  }
}

p {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-family: serif;
}

@media (max-width: 1360px) {
  p {
    font-size: 20px;
    font-size: 1.47059vw;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 15px;
    font-size: 1.95313vw;
  }
}

@media (max-width: 480px) {
  p {
    font-size: 10px;
    font-size: 2.08333vw;
  }
}

a {
  text-decoration: none;
}

header {
  height: 70px;
  width: 100%;
  padding: 0px 15px;
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  header {
    height: 70px;
  }
}

@media (max-width: 480px) {
  header {
    height: 55px;
  }
}

header a {
  color: #ffffff;
  text-decoration: none;
  line-height: 70px;
  padding: 0 18.5px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

@media (max-width: 768px) {
  header a {
    line-height: 40px;
    display: block;
    text-align: left;
    padding: initial;
    font-size: 10px;
  }
}

header a img {
  width: 4vw;
}

@media (max-width: 768px) {
  header a img {
    width: 20%;
  }
}

@media (max-width: 480px) {
  header a img {
    width: 15%;
  }
}

header .hoverText:before {
  content: "";
  /*疑似要素の中身は空（記述は必須）*/
  position: absolute;
  /*子要素として疑似要素を固定*/
  left: 0;
  /*長さはテキストの両端まで*/
  right: 0;
  /*長さはテキストの両端まで*/
  bottom: -5px;
  /*線の上下位置*/
  width: 100%;
  /*線の長さ*/
  height: 2px;
  /*線の太さ*/
  background-color: #fff;
  /*線の色*/
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*横方向に0状態から全体まで線を入れる*/
  -webkit-transform-origin: center;
          transform-origin: center;
  /*中央を起点にアニメーション*/
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  /*アニメーションの時間*/
}

header .hoverText:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  /*ホバー時に等倍へ拡大*/
}

header nav {
  margin: 0 0 0 auto;
}

@media (max-width: 768px) {
  header nav {
    position: fixed;
    width: 300px;
    top: 0;
    right: -300px;
    background-color: #fff;
    height: 100%;
    opacity: 0.9;
  }
}

@media (min-width: 769px) {
  header nav ul {
    margin-right: 2vw;
  }
}

@media (max-width: 768px) {
  header nav ul {
    display: initial;
  }
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  header ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  header ul li {
    width: 100%;
    border-bottom: 1px solid #949494;
  }
}

@media (max-width: 768px) {
  header ul li a {
    color: black;
    padding-left: 20px;
  }
}

header #hamburger {
  background-color: transparent;
  position: relative;
  cursor: pointer;
  margin: 0 0 0 auto;
  height: 60px;
  width: 60px;
}

header .btn-gnavi.hb-open span:nth-child(1) {
  left: -10px;
  top: 24px;
  width: 24px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

@media (max-width: 768px) {
  header .btn-gnavi.hb-open span:nth-child(1) {
    width: 34px;
    top: 4px !important;
  }
}

@media (max-width: 480px) {
  header .btn-gnavi.hb-open span:nth-child(1) {
    top: 4px !important;
  }
}

header .btn-gnavi.hb-open span:nth-child(2) {
  opacity: 0;
}

header .btn-gnavi.hb-open span:nth-child(3) {
  left: -10px;
  top: 10px;
  width: 24px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

@media (max-width: 768px) {
  header .btn-gnavi.hb-open span:nth-child(3) {
    width: 34px;
    top: 4px !important;
  }
}

@media (max-width: 480px) {
  header .btn-gnavi.hb-open span:nth-child(3) {
    top: 4px !important;
  }
}

header .icon span {
  position: absolute;
  left: 10px;
  width: 27px;
  height: 2px;
  background-color: white;
  border-radius: 8px;
  -webkit-transition: ease 0.75s;
  transition: ease 0.75s;
}

header .icon span:nth-of-type(1) {
  top: 18px;
}

header .icon span:nth-of-type(2) {
  top: 26px;
}

header .icon span:nth-of-type(3) {
  bottom: 24px;
}

header .close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 26px;
}

header .close span:nth-of-type(2) {
  opacity: 0;
}

header .close span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 28px;
}

header .sm {
  width: 100%;
  top: 40px;
  left: 0px;
  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: rgba(34, 49, 52, 0.9);
}

header .sm a {
  color: #000;
  text-align: center;
  border-top: solid 0.5px rgba(255, 255, 255, 0.6);
}

header #sm.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  /* right0まで-250px移動 */
}

header .menu-background {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  /* 透明度を0にすることで隠す */
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  /* 透明度の0→1になる速度 */
}

header .btn-gnavi {
  position: fixed;
  right: 30px;
  width: 30px;
  height: 24px;
  z-index: 3;
  cursor: pointer;
  transition: all 400ms;
  -webkit-transition: all 400ms;
}

header .btn-gnavi span {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

header .btn-gnavi span:nth-child(1) {
  top: 6px;
}

@media (max-width: 480px) {
  header .btn-gnavi span:nth-child(1) {
    top: 7px;
  }
}

header .btn-gnavi span:nth-child(2) {
  top: 16px;
}

@media (max-width: 480px) {
  header .btn-gnavi span:nth-child(2) {
    top: 17px;
  }
}

header .btn-gnavi span:nth-child(3) {
  top: 27px;
}

@media (max-width: 480px) {
  header .btn-gnavi span:nth-child(3) {
    top: 27px;
  }
}

header .btn-gnavi.hb-open {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

header .btn-gnavi.hb-open span {
  background: #949494;
}

header .btn-gnavi.hb-open span:nth-child(1) {
  left: -10px;
  top: 24px;
  width: 21px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

header .btn-gnavi.hb-open span:nth-child(2) {
  opacity: 0;
}

header .btn-gnavi.hb-open span:nth-child(3) {
  left: -10px;
  top: 24px;
  width: 21px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

header #global-navi p {
  font-size: 20px;
  color: #000;
}

.slider {
  padding: 0;
  margin-top: 0;
}

.slider img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .slider img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .slider img {
    height: 100px;
  }
}

.slider .slick-dots li button:before {
  color: #fff;
}

.topBanner {
  position: relative;
}

.topBanner img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 700px;
}

@media (max-width: 480px) {
  .topBanner img {
    height: initial;
  }
}

.topbanner_title {
  position: absolute;
  bottom: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4vw;
  font-family: serif;
  width: 100%;
  line-height: 80px;
}

@media (max-width: 768px) {
  .topbanner_title {
    bottom: 35%;
    line-height: initial;
    font-size: 6vw;
  }
}

@media (max-width: 480px) {
  .topbanner_title {
    bottom: 35%;
    line-height: initial;
    font-size: 7vw;
  }
}

.topbanner_title span {
  font-size: 2.5vw;
}

.page_topbanner_title {
  position: absolute;
  color: #fff;
  font-size: 4vw;
  font-family: serif;
  line-height: 70px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

@media (max-width: 480px) {
  .page_topbanner_title {
    font-size: 7vw;
    line-height: initial;
  }
}

.page_topbanner_title span {
  font-size: 2.5vw;
}

.video_wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video_wrapper > video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}

section {
  text-align: center;
  margin-top: 100px;
}

@media (max-width: 768px) {
  section {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  section {
    margin-top: 20px;
  }
}

section .section_content {
  margin-top: 50px;
}

@media (max-width: 768px) {
  section .section_content {
    height: initial;
  }
}

@media (max-width: 480px) {
  section .section_content {
    height: initial;
    margin-top: 20px;
  }
}

.news_wrap ul {
  padding: 0;
}

.news_wrap li {
  border-top: 1px solid #dcdcdc;
}

.news_wrap li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

@media (min-width: 480px) {
  .news_wrap .news_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news_wrap .news_block .news_title {
  margin-left: 50px;
}

@media (max-width: 768px) {
  .news_wrap .news_block .news_title {
    margin-left: initial;
  }
}

@media (max-width: 480px) {
  .news_wrap .news_block .news_title {
    margin-left: initial;
  }
}

.recruitWrap {
  background-image: url(img/recruit/noiseporn-JNuKyKXLh8U-unsplash.jpg);
  width: 100%;
  background-size: contain;
  height: 50vw;
  background-repeat: no-repeat;
}

@media (max-width: 480px) {
  .recruitWrap {
    background-size: cover;
    margin-top: 20px;
    padding-top: 1px;
  }
}

.recruitWrap .white_bg {
  background-color: rgba(255, 255, 255, 0.5);
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .recruitWrap .white_bg {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .recruitWrap .white_bg {
    margin-top: 20px;
  }
}

.recruitWrap .white_bg .top_movie_btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #000;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  -webkit-transition: ease .2s;
  transition: ease .2s;
  margin-top: 3vw;
  margin-bottom: 3vw;
}

@media (max-width: 768px) {
  .recruitWrap .white_bg .top_movie_btn {
    padding: 7px 30px;
    margin-top: 1vw;
  }
}

@media (max-width: 480px) {
  .recruitWrap .white_bg .top_movie_btn {
    padding: 3px 30px;
    margin-top: 20px;
  }
}

.recruitWrap .white_bg .top_movie_btn span {
  color: #000;
}

.recruitWrap .white_bg .top_movie_btn:hover {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #000;
  /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  background-color: #000;
  /*アニメーションの指定*/
  -webkit-transition: ease .5s;
  transition: ease .5s;
  color: #fff;
}

.recruitWrap .white_bg .top_movie_btn:hover span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.top_recruit_message {
  font-size: 3vw;
  text-align: center;
  padding-top: 50px;
  color: #000;
}

@media (max-width: 768px) {
  .top_recruit_message {
    margin-top: 10px;
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .top_recruit_message {
    margin-top: 10px;
    padding-top: 10px;
  }
}

/*====================================================================
slick
====================================================================*/
html, body {
  margin: 0;
  padding: 0;
}

.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.sliderArea.w300 {
  max-width: 300px;
}

.slick-slide {
  margin: 0 5px;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-prev, .slick-next {
  z-index: 1;
  right: 35px;
}

@media (max-width: 480px) {
  .slick-prev, .slick-next {
    right: -25px;
  }
}

.slick-prev:before, .slick-next:before {
  color: #000;
  font-size: 4vw !important;
}

.slick-slide {
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  opacity: .2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.thumb {
  margin: 20px 0 0;
}

.thumb .slick-slide {
  cursor: pointer;
}

.thumb .slick-slide:hover {
  opacity: .7;
}

/*====================================================================
以下は不要です。
====================================================================*/
@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

.section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 30px 0 0;
}

.section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.section p._a .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 10px;
}

.top_movie_sec {
  position: relative;
}

.top_movie_sec h2 {
  font-size: 3vw;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .top_movie_sec h2 {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .top_movie_sec h2 {
    margin-bottom: 10px;
  }
}

.top_movie_sec .top_movie_block {
  position: absolute;
  top: 40%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 768px) {
  .top_movie_sec .top_movie_block {
    top: 39%;
  }
}

.top_movie_sec .top_movie_block .top_movie_btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #fff;
  /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease .2s;
  transition: ease .2s;
  margin-top: 3vw;
}

@media (max-width: 768px) {
  .top_movie_sec .top_movie_block .top_movie_btn {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .top_movie_sec .top_movie_block .top_movie_btn {
    margin-top: 10px;
  }
}

.top_movie_sec .top_movie_block .top_movie_btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.top_movie_sec .top_movie_block .top_movie_btn:hover {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #fff;
  /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  background-color: #fff;
  /*アニメーションの指定*/
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.top_movie_sec .top_movie_block .top_movie_btn:hover span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #000;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.top_movie_sec .top_movie_block_sp {
  position: absolute;
  top: 30%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top_movie_sec .top_movie_block_sp .top_movie_btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #fff;
  /* ボーダーの色と太さ */
  padding: 2px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease .2s;
  transition: ease .2s;
  margin-top: 10px;
}

.top_movie_sec .top_movie_block_sp .top_movie_btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
  font-size: 10px;
}

.recruit_block {
  position: relative;
  background-color: #000;
  height: 10em;
  -webkit-transition: opacity 1s,height .4s,-webkit-transform 1s;
  transition: opacity 1s,height .4s,-webkit-transform 1s;
  transition: transform 1s,opacity 1s,height .4s;
  transition: transform 1s,opacity 1s,height .4s,-webkit-transform 1s;
  overflow: hidden;
  margin: 1px 0;
}

.recruit_block h2 {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  font-size: 2.1vw;
}

.recruit_block h2 .btn-more {
  text-align: center;
  margin: 10px auto;
  font-weight: normal;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: 0;
  color: #fff;
  position: relative;
}

.recruit_block h2 .btn-more:before, .recruit_block h2 .btn-more:after {
  content: '';
  position: absolute;
  background: #fff;
}

.recruit_block h2 .btn-more:before {
  top: -4px;
  right: -30px;
  height: 2px;
  width: 100px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.recruit_block h2 .active::before {
  top: -4px;
  right: -60px;
  height: 2px;
  width: 100px;
}

.recruit_block h2 .btn-more:after {
  top: -8px;
  right: -30px;
  height: 2px;
  width: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 300ms;
  transition: 300ms;
}

.recruit_block h2 .active:after {
  top: -8px;
  right: -60px;
  height: 2px;
  width: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.recruit_block .front_service_img {
  position: absolute;
  right: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background .4s;
  transition: background .4s;
  height: 100%;
  background-position: right center;
  background-size: 50%;
  width: 100%;
  z-index: 0;
}

.recruit_block_sp {
  width: 90%;
  margin: 0 auto;
}

.recruit_block_sp .recruit_block_sp_bg {
  background-size: cover;
  margin-top: 10px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.recruit_block_sp h2 {
  text-align: left;
  margin-left: 10px;
  margin-bottom: 20px;
}

.recruit_block_sp a {
  border: 1px solid;
  padding: 3px 10px;
}

.front_service_img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 1;
  -webkit-transition: .4s;
  transition: .4s;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(90%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #000, #000 50%, rgba(0, 0, 0, 0) 90%);
}

.s_img1 {
  background-image: url(img/top/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg);
}

.s_img2 {
  background-image: url(img/top/stem-list-ryRU-cd1yas-unsplash.jpg);
}

.s_img3 {
  background-image: url(img/top/entrepreneur-gd6153bc48_1280.jpg);
}

.s_img4 {
  background-image: url(img/recruit/fortnite-4129124_1920.jpg);
}

.s_img5 {
  background-image: url(img/top/startup-g3f3f83685_1280.jpg);
}

.contact_btnWrap {
  width: 350px;
  height: 45px;
  background-color: #ffbb00;
  margin: 0 auto;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*アニメーションの時間*/
  display: inline;
  padding: 20px 120px;
  color: #000;
  font-family: serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact_btnWrap {
    padding: 10px 60px;
  }
}

@media (max-width: 480px) {
  .contact_btnWrap {
    padding: 10px 60px;
  }
}

.contact_btnWrap a {
  line-height: 45px;
  color: #000;
  font-family: serif;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*アニメーションの時間*/
}

@media (max-width: 768px) {
  .contact_btnWrap a {
    font-weight: 800;
  }
}

@media (max-width: 480px) {
  .contact_btnWrap a {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
  }
}

.contact_btnWrap:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #ffbb00;
  padding: 25px 130px;
}

.contact_btnWrap:hover a {
  font-size: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*アニメーションの時間*/
}

footer {
  width: 100%;
}

footer .footerContent {
  background-color: #000;
}

@media (max-width: 768px) {
  footer .footerContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer div {
  text-align: center;
  color: #fff;
  font-weight: bold;
}

footer .footerTitleText {
  text-align: left;
}

@media (min-width: 769px) {
  .copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.copyright .copyrightText {
  color: #fff;
}

@media (max-width: 480px) {
  .copyright .copyrightText {
    font-size: 10px;
    font-size: 2.08333vw;
    background-color: #4e4d4d;
    color: #fff;
  }
}

@media (min-width: 769px) {
  .copyright .appendix {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.copyright .appendix .plivacypolicy {
  margin-right: 20px;
}

.copyright .appendix div {
  color: #000;
}

.copyright .appendix a {
  color: #fff;
}

.footerContent {
  background-size: contain;
}

@media (min-width: 769px) {
  .footerContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    height: 27vw;
  }
}

.footerContent p {
  color: #fff;
}

.footerContent a {
  color: #fff;
}

.footerContent a span {
  vertical-align: 3px;
}

.footerContent .footerLogo {
  width: 40%;
}

@media (max-width: 768px) {
  .footerContent .footerLogo {
    width: 40%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footerContent .footerLogo {
    margin: 0 auto;
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .footerContent .footerLogo .headquarters {
    text-align: center;
  }
}

.footerContent .footerLogo div {
  margin-top: 50px;
}

.footerContent .footerLogo div img {
  width: 50%;
}

.footerContent .footerWrap {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 769px) {
  .footerContent .footerWrap {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .footerContent .footerWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footerContent .footerWrap .footerContentBlock {
  color: #fff;
  text-align: justify;
  width: 25%;
}

@media (max-width: 768px) {
  .footerContent .footerWrap .footerContentBlock {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .footerContent .footerWrap .footerContentBlock {
    width: 50%;
  }
}

.footerContent .footerWrap .footerContentBlock ul {
  padding: 0;
}

@media (max-width: 480px) {
  .footerContent .footerWrap .footerContentBlock .footerMarginaddjust {
    margin-left: 20px;
  }
}

.footerContent .footerWrap .footerContentBlock .footerText {
  margin-top: 20px;
  text-align: initial;
  font-size: 1vw;
}

@media (max-width: 480px) {
  .footerContent .footerWrap .footerContentBlock .footerText {
    margin-top: 5px;
    margin-left: 20px;
    font-size: 10px;
    font-size: 2.08333vw;
  }
}

.footerContent .footerWrap .sitemap {
  text-align: justify;
}

@media (max-width: 768px) {
  .margin-addjust {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  .margin-addjust {
    margin-top: 60px;
  }
}
/*# sourceMappingURL=style.css.map */