@charset "utf-8";
/*================================
top
================================*/
@media only screen and (max-width: 768px) {
  header {
    height: 115px;
  }

  .sp_header_btn {
    text-align: center;
    margin-top: -5px;
  }

  .sp_header_btn a {
    color: #cc5d00;
    font-size: 12px;
    display: inline-block;
    border: 1px solid #cc5d00;
    padding: 10px 5px;
    margin: 5px 2px;
    text-align: center;
  }
}

@media only screen and (max-width: 374px) {
  .sp_header_btn a {
    font-size: 10px;
  }
}

main {
  display: flex;
  position: relative;
  z-index: 0;
  overflow: visible;
}
.mv {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .mv {
    display: block;
  }
}
aside {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  aside {
    display: none;
  }
}
.sidebar {
  background: #fe7d4b;
  position: sticky;
  top: 70px;
  height: 100vh;
  z-index: 10;
}
/* .sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  text-align: center;
  background: #fff;
  margin: 20px;
}
.sidebar ul li a {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  display: block;
  padding: 10px 0;
} */
@media only screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .mv::before {
    content: "";
    position: absolute;
    background: #fe7d4b;
    width: 100%;
    height: 93vh;
    left: 0;
    z-index: -1;
  }
}
.sidebar__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊ここから＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
.sidebar__nav {
  width: 100%; /*navの外側のheaderなどに横幅を指定する場合は削除してください*/
}

.sidebar__nav ul {
  list-style: none;
  text-align: center;
}

.sidebar__nav ul.to-corp {
  margin-top: 120px;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.sidebar__nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
.sidebar__nav ul li a {
  display: block;
  text-decoration: none;
  color: #000;
  background: #fff;
  padding: 15px 5px;
  transition: all 0.3s;
}
.sidebar__nav ul .first-li-a {
  margin: 10px 20px;
}

.sidebar__nav ul.to-corp .first-li-a {
  padding: 11px 5px;
  font-size: 13px;
}

.sidebar__nav ul.to-corp .first-li-a img {
  padding: 0 5px 2px 0;
}

@media only screen and (max-width: 1024px) {
  .sidebar__nav ul .first-li-a {
    margin: 20px 10px;
    padding: 10px;
    font-size: 13px;
  }
}
.small-li {
  margin: 0;
  border-bottom: 1px solid #fe7d4b;
}
.small-li:last-child {
  border-bottom: none;
}
.small-li a {
  border-bottom: 1px solid #fe7d4b;
  padding: 10px !important;
}
.sidebar__nav ul li a:hover {
  color: #666;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
.sidebar__nav ul li.has-child::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1024px) {
  .sidebar__nav ul li.has-child::before {
    right: 18px;
    top: 18px;
  }
}
/*3階層目を持つliの矢印の設定*/
.sidebar__nav ul ul li.has-child::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
.sidebar__nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 100%;
  top: 0px;
  z-index: 4;
  /*形状を指定*/
  background: #ffffff;
  width: 210px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
.sidebar__nav li.has-child:hover > ul,
.sidebar__nav li.has-child ul li:hover > ul,
.sidebar__nav li.has-child:active > ul,
.sidebar__nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.sidebar__nav li.has-child ul li a {
  color: #000000;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

.sidebar__nav li.has-child ul li:last-child > a {
  border-bottom: none;
}

.sidebar__nav li.has-child ul li a:hover,
.sidebar__nav li.has-child ul li a:active {
  background: #fff;
}

/*==3階層目*/

/* 3階層目の位置
  .sidebar__nav li.has-child ul ul{
    top:0;
    left:182px;
    background:#66ADF5;
  }
  
  .sidebar__nav li.has-child ul ul li a:hover,
  .sidebar__nav li.has-child ul ul li a:active{
    background:#448ED3;
  } */
header .nav_pc .nav01 > .entry__button-li {
  margin-right: 2%;
}
header .nav_pc .nav01 > li .entry__button {
  padding: 10px 50px;
  color: #fff;
  font-weight: bold;
  background: #50abff;
  border-radius: 50px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  header .nav_pc .nav01 > li .entry__button {
    padding: 10px 40px;
  }
}
header .nav_pc .nav01 > li .entry__button::before {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid rgb(255, 255, 255);
}
/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊ここまで＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
.slide {
  position: relative;
  height: 100vh;
  margin-left: auto;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .slide {
    width: 80%;
    height: 100vh;
  }
}
.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url("../img/top/mv.jpg");
  animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url("../img/top/mv02.jpg");
  animation-delay: 6s;
}

.slide-image:nth-child(3) {
  background-image: url("../img/top/mv03.jpg");
  animation-delay: 14s;
}
@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}

/* 
.mv .mv_img{
  background: url("../img/top/mv.jpg") no-repeat top center / cover;
  position: relative;
  width: 90%;
  height: 100vh;
  margin-left: auto;
} */
.mv h2 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #fff;
  position: absolute;
  bottom: 60px;
  left: 70px;
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 75px;
  bottom: 25px;
  /*全体の高さ*/
  height: 50px;
}
/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -12px;
  top: -55px;
  /*テキストの形状*/
  color: #000;
  font-size: 1rem;
  letter-spacing: 0.1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 60px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 45px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 65px;
    opacity: 0;
  }
}
#top .contents {
  position: relative;
  width: 80%;
  margin-left: auto;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #top .contents {
    width: 100%;
  }
}
.inner {
  max-width: 1000px;
  width: 90%;
}
.news {
  padding-top: 120px;
  margin-right: -120px;
  margin-bottom: 250px;
}
.news .news_bg {
  background: #fff;
  width: 75%;
  margin-left: auto;
  padding: 50px 12% 50px 3%;
  position: relative;
}
.news .news_bg h2 {
  font-size: 48px;
  font-weight: bold;
  position: absolute;
  top: -45px;
  left: 5%;
}
.news .news_bg a {
  padding-left: 9.5em;
  text-indent: -9em;
  display: block;
}
.news_bg p + p {
  padding-top: 15px;
}
.company {
  position: relative;
  margin-bottom: 250px;
}
.orange_bg {
  height: 100%;
}
.orange_bg span {
  position: relative;
}
.orange_bg::before {
  content: "";
  background: #faa708;
  display: block;
  position: absolute;
  right: 0;
  width: 0;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.fade::before {
  width: calc(50vw + 45%);
  height: calc(100vh + 40%);
  top: -310px;
}
.works_contents {
  position: relative;
}
.orange_bg02 {
  height: 100%;
  position: relative;
}
.orange_bg02 span {
  position: relative;
}
.orange_bg02::before {
  content: "";
  background: #faa708;
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.fade02::before {
  width: calc(50vw + 45%);
  height: calc(100vh + 20%);
  top: 0;
}
.company .company_bg02 {
  position: relative;
}
.company .company_bg02::after {
  content: "";
  position: absolute;
  background: #fff;
  width: calc(50vw + 55%);
  top: -80px;
  bottom: -200px;
  left: calc((100vw - 100%) / -2);
  z-index: -1;
}
.company .inner {
  position: relative;
}
.company .ttl01 {
  position: absolute;
  width: 580px;
  top: -170px;
  right: 0;
}
.company h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 6px;
  margin-bottom: 20px;
}
.company .txt01 {
  line-height: 2;
  margin-bottom: 40px;
}
.company ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}
.company ul li {
  /* width: 30%; */
  width: 24%;
}
.company ul li .shadow {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.company ul li:nth-child(2) .list_img {
  margin-top: 50px;
}
.company ul li:nth-child(3) .list_img {
  margin-top: 100px;
}
.company ul li:nth-child(4) .list_img {
  margin-top: 150px;
}
.company ul li .list_img {
  position: relative;
  margin-top: auto;
}
.company ul li .list_img p {
  position: absolute;
  background: #fe7d4b;
  bottom: 0;
  right: 0;
  padding: 5px 40px 5px 15px;
}
.company ul li .list_img p span {
  position: relative;
}
.company ul li .list_img p span::after {
  content: "";
  position: absolute;
  background: url("../common/img/arrow02_black.png") no-repeat center center /
    contain;
  width: 15px;
  height: 15px;
  top: 4px;
  right: -28px;
}
.btn01 a {
  display: block;
  width: 25%;
  padding: 20px 0;
  margin: 0 auto 100px;
  font-weight: bold;
  color: #fff;
  background: #fe7d4b;
  border-radius: 30px;
  text-align: center;
  position: relative;
}
.btn01 a::after {
  content: "";
  position: absolute;
  background: url("../common/img/arrow01_white.png") no-repeat center center /
    contain;
  width: 26px;
  height: 26px;
  top: 20px;
  right: 20px;
}
.company ul li .bg_w {
  background: #fff;
  padding: 25px 20px;
}
.company ul li .bg_w h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.works {
  padding: 60px 0;
  margin-bottom: 140px;
}
.works .works_img {
  margin-bottom: 400px;
  position: relative;
}
.works .works_img .img01 {
  width: 70%;
  margin-right: auto;
  left: calc((100vw - 100%) / -2);
}
.works .works_img .img02 {
  width: 15%;
  position: absolute;
  top: 40px;
  right: 4%;
}
.works .works_img .img03 {
  width: 40%;
  position: absolute;
  bottom: -140px;
  right: 4%;
}
.works .works_bg {
  position: relative;
}
.works .works_bg::after {
  content: "";
  position: absolute;
  background: #fff;
  width: calc(50vw + 55%);
  top: -80px;
  bottom: -700px;
  right: calc((100vw - 100%) / -2);
  z-index: -1;
}
.works .inner {
  position: relative;
}
.works .ttl01 {
  position: absolute;
  width: 376px;
  top: -160px;
  left: -5%;
}
.works .txt_box {
  width: 65%;
  margin-left: auto;
}
.works .txt_box h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 6px;
  margin-bottom: 20px;
}
.works .txt_box p {
  margin-bottom: 60px;
  line-height: 2;
}
.works_contents .works_btn01 {
  display: block;
  color: #fff;
  padding: 110px 120px 110px 0;
  background: #000 url("../img/top/works_bg01.jpg") no-repeat top center / cover;
}
.works_contents .works_btn02 {
  display: block;
  color: #fff;
  padding: 110px 120px 110px 0;
  background: #000 url("../img/top/works_bg02.jpg") no-repeat top center / cover;
}
.works_contents .bg {
  width: 80%;
  background: #000;
  margin-bottom: 20px;
}
.works_contents .works_btn01:hover,
.works_contents .works_btn02:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.works_contents .txt_contents {
  width: 45%;
  margin-left: auto;
  position: relative;
}
.works_contents .txt_contents::after {
  content: "";
  position: absolute;
  background: url("../common/img/arrow01_orange.png") no-repeat center center /
    contain;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: -70px;
}
.works_contents .txt_contents .ttl {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
.works_contents .txt_contents .txt {
  line-height: 2;
}
.interview_img {
  position: relative;
  margin-bottom: 140px;
}
.interview {
  margin-bottom: 155px;
}
.interview_img .ttl01 {
  position: absolute;
  background: #f7f6f0;
  width: 700px;
  padding: 20px 40px 20px 150px;
  bottom: -80px;
  left: 0;
}
.interview h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 6px;
  margin-bottom: 20px;
}
.interview .txt01 {
  margin-bottom: 60px;
  line-height: 2;
}
.interview h3 {
  color: #fe7d4b;
  padding: 10px 10px 10px 20px;
  margin-bottom: 30px;
  border-left: 3px solid #fe7d4b;
}
.interview h3 span {
  font-size: 13px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .interview h3 span {
    display: block;
  }
}
.interview h3.green {
  color: #00e3c0;
  border-left: 3px solid #00e3c0;
}
.interview .interview_list01 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.interview .interview_list01 li {
  width: 32%;
  padding-left: 25px;
  position: relative;
}
.interview .interview_list01 li::after {
  content: "";
  position: absolute;
  background: url("../img/top/interview_txt01.png") no-repeat center center /
    contain;
  width: 12px;
  height: 120px;
  top: 0;
  left: 0;
}
.btn02 {
  display: block;
  width: 90%;
  font-weight: bold;
  background: #fff;
  margin: 60px auto;
  padding: 30px 0;
  text-align: center;
}
.btn02 span {
  letter-spacing: 3px;
  position: relative;
}
.btn02 span::before {
  content: "";
  position: absolute;
  background: url("../common/img/icon_orange.png") no-repeat center center /
    contain;
  width: 24px;
  height: 24px;
  top: 0;
  left: -40px;
}
.btn02.green span::before {
  background: url("../common/img/icon_green.png") no-repeat center center /
    contain;
}
.interview .interview_list01 li img {
  z-index: -1;
}
.interview .interview_list01 li .txt_box {
  width: 90%;
  padding: 10px 0;
  margin-top: -20px;
}
.interview .interview_list01 li .txt_bg {
  position: relative;
  z-index: 1;
}
.interview .interview_list01 li .txt_bg::after {
  content: "";
  position: absolute;
  background: #f7f6f0;
  width: 100%;
  height: 100%;
  top: -20px;
  left: 0;
  z-index: -1;
}
.interview .txt_bg .department {
  margin-bottom: 10px;
}
.interview .txt_bg .department span {
  color: #fff;
  background: #fe7d4b;
  padding: 5px 10px;
}
.interview .txt_bg h4 {
  font-size: 20px;
  font-weight: bold;
}
.interview .interview_movie {
  background: #55544f;
  padding: 70px 0;
}
.interview .interview_list02 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.interview .interview_list02 li {
  width: 31%;
}
.environment .environment_bg {
  position: relative;
}
.environment .environment_bg::after {
  content: "";
  position: absolute;
  background: #fff;
  width: calc(50vw + 55%);
  top: -70px;
  bottom: -80px;
  right: calc((100vw - 100%) / -2);
  z-index: -1;
}
.environment .inner {
  position: relative;
}
.environment .ttl01 {
  position: absolute;
  width: 680px;
  top: -145px;
  right: 0;
}
.environment {
  padding: 60px 0 0;
  margin-bottom: 300px;
  position: relative;
}
.environment::before {
  content: "";
  width: 46%;
  height: 700px;
  background: url("../img/top/environment_img01.jpg") no-repeat center / cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.environment h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 6px;
  text-align: right;
  margin-bottom: 100px;
}
.environment .environment_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.environment .environment_list .environment_img {
  width: 40vw;
  margin-left: calc(50% - 50vw);
}
.environment .environment_list ul {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: auto;
}
.environment .environment_list ul li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}
.environment .environment_list ul li:last-child {
  margin-bottom: 0;
}
.environment .environment_list ul li a {
  display: block;
  position: relative;
}
.environment .environment_list ul li a::after {
  content: "";
  position: absolute;
  background: url("../common/img/arrow01_orange.png") no-repeat center center /
    contain;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0;
}
.environment .environment_list ul li h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.environment .environment_list ul li h3 span {
  color: #fe7d4b;
  padding-right: 20px;
}
.environment .environment_list ul li p {
  line-height: 2;
  width: 85%;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media only screen and (max-width: 1024px) {
  .sidebar__title {
    font-size: 22px;
  }
  .mv {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .mv::before {
    height: 85vh;
  }
  .slide-image:nth-child(1) {
    background-image: url("../img/top/mv_sp.jpg");
  }

  .slide-image:nth-child(2) {
    background-image: url("../img/top/mv02_sp.jpg");
  }

  .slide-image:nth-child(3) {
    background-image: url("../img/top/mv03_sp.jpg");
  }
  .scrolldown1 {
    left: 20px;
    bottom: 8.5%;
    height: 50px;
  }
  .scrolldown1 span {
    font-size: 0.8rem;
  }
  /* 線の描写 */
  .scrolldown1::after {
    left: -3px;
    height: 40px;
  }
  /*高さ・位置・透過が変化して線が上から下に動く*/
  @keyframes pathmove {
    0% {
      height: 0;
      top: 0;
      opacity: 0;
    }
    30% {
      height: 35px;
      opacity: 1;
    }
    100% {
      height: 0;
      top: 50px;
      opacity: 0;
    }
  }
  .news {
    padding-top: 80px;
    margin-right: -80px;
    margin-bottom: 120px;
  }
  .mv h2 {
    font-size: 24px;
    left: 10px;
    bottom: 28%;
    letter-spacing: 0;
  }
  .news .news_bg {
    width: 90%;
    padding: 40px 18% 40px 3%;
  }
  .news .news_bg h2 {
    font-size: 40px;
    top: -35px;
    left: 3%;
  }
  .news .news_bg a {
    padding-left: 0;
    text-indent: 0;
  }
  .company {
    margin-bottom: 120px;
  }
  .company .ttl01 {
    position: absolute;
    width: 80%;
    top: -75px;
    right: 0;
  }
  .company h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .fade::before {
    height: calc(100vh + 58%);
    top: -200px;
  }
  .company .company_bg02::after {
    width: calc(50vw + 50%);
    top: -30px;
    bottom: -70px;
  }
  .company ul {
    display: block;
  }
  .company ul li {
    width: 94%;
    /* margin: 0 auto; */
  }
  .company .txt01 {
    margin-bottom: 40px;
    width: 94%;
  }
  .btn01 a {
    width: 94%;
  }
  .company .txt01 .bgextend.bgLRextendTrigger.bgLRextend {
    display: block;
  }
  .company ul li:nth-child(2) .list_img,
  .company ul li:nth-child(3) .list_img,
  .company ul li:nth-child(4) .list_img {
    margin-top: 40px;
  }
  .works {
    margin-bottom: 100px;
  }
  .works .works_img .img01 {
    width: 80%;
  }
  .works .works_img .img02 {
    width: 30%;
    top: 70px;
  }
  .works .works_img .img03 {
    width: 70%;
    bottom: -210px;
  }
  .works .works_bg::after {
    width: calc(50vw + 50%);
    top: -45px;
    bottom: -700px;
  }
  .works .ttl01 {
    width: 70%;
    top: -100px;
    left: 3%;
  }
  .works .txt_box {
    width: 90%;
    margin-left: 5%;
  }
  .works .txt_box h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .works_contents .bg {
    width: 90%;
  }
  .works_contents .works_btn01,
  .works_contents .works_btn02 {
    padding: 40px 0;
  }
  .works_contents .txt_contents {
    width: 80%;
    margin-left: 5%;
  }
  .works_contents .txt_contents::after {
    right: -40px;
    width: 30px;
    height: 30px;
  }
  .works_contents .txt_contents .ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .works_contents .txt_contents .txt {
    line-height: 1.8;
  }
  .works .works_bg::after {
    bottom: -690px;
  }
  .fade02::before {
    height: calc(100vh + 10%);
  }
  .interview {
    margin-bottom: 60px;
  }
  .interview_img {
    margin-bottom: 60px;
  }
  .interview_img .ttl01 {
    width: 80%;
    padding: 20px;
    bottom: -50px;
    left: 0;
  }
  .interview h2 {
    font-size: 34px;
    letter-spacing: 4px;
    margin-bottom: 10px;
  }
  .interview .txt01 {
    margin-bottom: 40px;
  }
  .interview .interview_list01 {
    display: block;
  }
  .interview .interview_list01 li {
    width: 90%;
    margin: 0 auto 40px;
  }
  .interview .interview_list01 li:last-child {
    margin: 0 auto;
  }
  .interview .txt_bg .department span {
    font-size: 14px;
  }
  .interview .txt_bg h4 {
    font-size: 18px;
  }
  .btn02 {
    width: 100%;
    margin: 30px auto 40px;
    padding: 20px 0;
  }
  .interview .interview_movie {
    background: #55544f;
    padding: 70px 0 0;
  }
  .interview .interview_list02 {
    display: block;
  }
  .interview .interview_list02 li {
    width: 100%;
    margin-bottom: 30px;
  }
  .interview .interview_list02 li:last-child {
    margin-bottom: 0;
  }
  .environment {
    margin-bottom: 120px;
  }
  .environment .environment_bg::after {
    top: -30px;
    bottom: -30px;
    width: calc(50vw + 50%);
  }
  .environment .ttl01 {
    width: 90%;
    top: -65px;
  }
  .environment h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .environment::before {
    display: none;
  }
  .environment .environment_list .environment_img {
    width: 70vw;
    margin-bottom: 20px;
  }
  .environment .environment_list ul {
    width: 94%;
  }
  .environment .environment_list ul li h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .environment .environment_list ul li p {
    line-height: 1.6;
  }
  .environment .environment_list ul li a::after {
    width: 30px;
    height: 30px;
  }
  .environment .fade02::before {
    height: calc(100vh + 28%);
  }
}

/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@media only screen and (max-width: 375px) {
  .news .news_bg {
    width: 89%;
    padding: 40px 20% 40px 3%;
  }
}

footer {
  position: relative;
  z-index: 1;
}
