@charset "UTF-8";
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9998;
  text-align: center;
}
#bar-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  width: 100%;
}
#bar-left, #bar-right {
  position: absolute;
  width: 50%;
  top: 0;
}
#bar-left {
  right: 50%;
  transform: scaleX(-1);
}
#bar-right {
  left: 50%;
}
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  width: 100%;
}
#splash_text .logo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
}
#splash_text .logo img {
  width: 100%;
}
#splash_text p {
  font-size: 64px;
  color: #111;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
}
/*========= 画面遷移のためのCSS ===============*/
body.appear {
  background: #fff; /*画面を開いた後の背景色を指定*/
}
/*画面遷移アニメーション*/
.splashbg1, .splashbg2 {
  display: none;
}
/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1, body.appear .splashbg2 {
  display: block;
}
/*上に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  bottom: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #fff;
}
@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*下に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #fff;
}
@keyframes PageAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
}
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**/
a {
  outline: none;
  opacity: 1;
  transition: all .3s;
}
a:hover {
  opacity: 0.8;
  transition: all .3s;
}
*:hover {
  transition: all .3s;
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
  vertical-align: bottom;
}
/*アニメーション*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*アニメーション*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/**/
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
body {
  margin: 0;
  padding: 0;
  color: #111;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
  font-style: normal;
}
body.fixed {
  overflow: hidden;
}
#wrapper {
  min-width: 1100px;
  overflow: hidden;
}
.inner {
  width: 80%;
  min-width: 1100px;
  margin: 0 auto;
}
br.sp {
  display: none;
}
.red {
  color: #ed1c24;
}
.bg_text {
  width: 150%;
  height: 170px;
  background-image: url("../img/bg_logo_g.svg");
  background-size: 350px auto;
  background-position: center;
  background-repeat: repeat-x;
  animation: bgscroll 5s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  margin: auto;
  transform: rotate(-13deg);
  opacity: 0.1;
}
@-webkit-keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 350px 0;
  }
}
/*-------------------トップ-------------------*/
.top {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  background-color: #111;
}
.top:before {
  content: '';
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.1) 0%, rgba(17, 17, 17, 0.8) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.top h2 {
  font-size: 74px;
  font-weight: 500;
  margin: 0;
  height: 230px;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  margin: auto;
  z-index: 3;
}
.top h2 .sub {
  display: block;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 128px;
  line-height: 128px;
  margin: 0 0 0 -10%;
}
.top .slide_wrap {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.top .slide_box {
  content: '';
  position: absolute;
  left: -100px;
  right: 0;
  top: -500px;
  bottom: 0;
  margin: auto;
}
.top .slide_box div {
  width: 4000px;
  height: 300px;
  margin: 50px 0;
  background-size: 2500px;
  transform: rotate(-13deg);
}
.top .slide_01 {
  background: url(../img/slide_01.png) top left / 100% repeat-x;
  animation: slide1 70s linear 0s infinite normal none running;
}
.top .slide_02 {
  background: url(../img/slide_02.png) top left / 100% repeat-x;
  animation: slide2 70s linear 0s infinite normal none running;
}
@keyframes slide1 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 2500px;
  }
}
@keyframes slide2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -2500px;
  }
}
/*-------------------トップ以下-------------------*/
.contents {
  position: relative;
  padding: 70px 0 85px;
}
.contents .inner {
  position: relative;
  z-index: 1;
}
.contents h3 {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 88px;
  margin: 0 auto 30px;
}
.contents h3 .sub {
  display: block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 5px;
  padding-left: 30px;
  font-size: 26px;
  position: relative;
}
.contents h3 .sub:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ed1c24;
}
.contents .btn {
  width: 270px;
  margin: 50px auto 0;
}
.contents .btn a {
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: #222;
  text-align: center;
  border-radius: 0 7px 0 7px;
  padding: 20px 0 18px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 1px;
  position: relative;
}
.contents .btn a:hover {
  opacity: 1;
}
.contents .btn .arrow {
  display: block;
  position: absolute;
  top: 10px;
  bottom: 0;
  right: 55px;
  margin: auto;
  transition: all .3s;
  transform: rotate(-13deg);
}
.contents .btn .arrow:before, .contents .btn .arrow:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.contents .btn .arrow:before {
  left: 0;
  width: 35px;
  height: 2px;
  background: #555;
  transition: all .3s;
}
.contents .btn .arrow:after {
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  -webkit-transform: rotate(45deg) skew(-15deg, -15deg);
  transform: rotate(45deg) skew(-15deg, -15deg);
  transition: all .3s;
}
.contents .btn a:hover .arrow:before {
  width: 45px;
}
.contents .btn a:hover .arrow:after {
  left: 30px;
}
/*-------------------私たちについて-------------------*/
.contents.about {
  background-color: #f5f5f5;
}
.contents.about .p {
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.contents.about .p span {
  display: block;
  background-color: #222;
  color: #fff;
  padding: 15px 0 20px;
}
.contents.about .p span:first-child {
  width: 550px;
  margin: 0 0 0 auto;
  margin-bottom: 20px;
}
.contents.about .p span:last-child {
  width: 650px;
  margin: 0 5% 0 auto;
}
.contents.about ul {
  margin: 90px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contents.about ul li {
  width: 32%;
  text-align: center;
  padding: 75px 0 80px;
  background-color: #fff;
}
.contents.about ul li h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 auto 30px;
  position: relative;
}
.contents.about ul li h4:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 5px;
  background-image: radial-gradient(circle, #ccc 1.5px, transparent 1.5px);
  background-position: center;
  background-size: 7px 5px;
  background-repeat: repeat-x;
}
.contents.about ul li h4 .sub {
  display: block;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #ed1c24;
  margin-bottom: 10px;
}
.contents.about ul li p {
  margin: 0;
}
.contents.about ul li p .no {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 108px;
}
.contents.about ul li p .caption {
  display: block;
  font-size: 20px;
}
/*-------------------ブランド-------------------*/
.contents.brand {
  background-color: #fff;
}
.contents.brand ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contents.brand ul li {
  width: 18%;
  margin: 0 1%;
}
/*-------------------お知らせ-------------------*/
.contents.news {
  background-color: #f5f5f5;
}
.contents.news .dl_box {
  width: 1100px;
  margin: 0 auto;
}
.contents.news .dl_box dl {
  margin: 0;
  display: flex;
  padding: 25px 0;
  position: relative;
}
.contents.news .dl_box dl:after {
  content: "";
  position: absolute;
  bottom: -2.5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 5px;
  background-image: radial-gradient(circle, #ccc 1.5px, transparent 1.5px);
  background-position: center;
  background-size: 7px 5px;
  background-repeat: repeat-x;
}
.contents.news .dl_box dl dt {
  width: 25%;
}
.contents.news .dl_box dl dd {
  margin: 0;
  width: 75%;
}
.contents.news .dl_box dl dd a {
  display: block;
  text-decoration: none;
  color: #111;
}
.contents.news .dl_box dl dd a:hover {
  color: #ed1c24;
  opacity: 1;
}
.contents.news .bg_text {
  background-image: url("../img/bg_logo_w.svg");
  opacity: 1;
}
/*-------------------採用情報-------------------*/
.contents.recruit {
  padding: 0;
}
.contents.recruit .inner {
  width: 100%;
}
.contents.recruit .p {
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  width: 100%;
  position: absolute;
  top: -50px;
  right: 5%;
  z-index: 2;
}
.contents.recruit .p span {
  display: block;
  background-color: #222;
  color: #fff;
  padding: 15px 0 20px;
}
.contents.recruit .p span:first-child {
  width: 410px;
  margin: 0 0 0 auto;
  margin-bottom: 20px;
}
.contents.recruit .p span:last-child {
  width: 410px;
  margin: 0 5% 0 auto;
}
.contents.recruit .slide_box {
  position: relative;
  height: 550px;
}
.contents.recruit .slide_box:before {
  content: '';
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.1) 0%, rgba(17, 17, 17, 0.7) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.contents.recruit ul.slider {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.contents.recruit ul.slider img {
  object-fit: cover;
  width: 100%;
  height: 550px;
}
.contents.recruit .btn_entry {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -45%);
  margin: 0;
  z-index: 3;
}
.contents.recruit .btn_entry a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 148px;
}
.contents.recruit .btn_entry a:hover {
  opacity: 1;
}
.contents.recruit .btn_entry .sub {
  display: block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  color: #fff;
  position: relative;
}
.contents.recruit .btn_entry .sub:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 240px;
  height: 5px;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-position: center;
  background-size: 7px 5px;
  background-repeat: repeat-x;
}
.contents.recruit .arrow {
  width: 300px;
  display: block;
  position: absolute;
  top: 15px;
  bottom: 0;
  right: -30px;
  margin: auto;
  transform: rotate(-13deg);
  transition: all .3s;
}
.contents.recruit .arrow:before, .contents.recruit .arrow:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.contents.recruit .arrow:before {
  left: 0;
  width: 300px;
  height: 3px;
  background: #fff;
  transition: all .3s;
}
.contents.recruit .arrow:after {
  left: 275px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg) skew(-15deg, -15deg);
  transform: rotate(45deg) skew(-15deg, -15deg);
  transition: all .3s;
}
.contents.recruit a:hover .arrow:before {
  width: 330px;
}
.contents.recruit a:hover .arrow:after {
  left: 310px;
}
@media screen and (max-width:1050px) {
  #splash_text p {
    font-size: 44px;
  }
  #wrapper {
    min-width: 90%;
  }
  .inner {
    width: 90%;
    min-width: 90%;
  }
  br.sp {
    display: block;
  }
  .bg_text {
    height: 120px;
    background-size: 240px auto;
  }
  @-webkit-keyframes bgscroll {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 240px 0;
    }
  }
  .btn {
    width: 240px;
    margin: 30px auto 0;
  }
  .btn a {
    font-size: 18px;
  }
  /*-------------------トップ-------------------*/
  .top {
    min-height: 500px;
  }
  .top h2 {
    font-size: 54px;
    height: 180px;
  }
  .top h2 .sub {
    font-size: 98px;
    line-height: 98px;
    margin: 0 0 0 -10%;
  }
  /*-------------------トップ以下-------------------*/
  .contents {
    padding: 40px 0 55px;
  }
  .contents h3 {
    font-size: 38px;
    margin: 0 auto 20px;
  }
  .contents h3 .sub {
    margin-top: 5px;
    padding-left: 22px;
    font-size: 16px;
  }
  .contents h3 .sub:before {
    width: 12px;
    height: 12px;
  }
  /*-------------------私たちについて-------------------*/
  .contents.about .p {
    font-size: 22px;
    line-height: 22px;
    width: auto;
    position: static;
  }
  .contents.about .p span {
    padding: 10px 0 12px;
  }
  .contents.about .p span:first-child {
    width: 250px;
    margin: 0 0 0 auto;
    margin-bottom: 10px;
  }
  .contents.about .p span:last-child {
    width: 290px;
    margin: 0 5% 0 auto;
  }
  .contents.about ul {
    display: block;
    margin: 30px auto 0;
  }
  .contents.about ul li {
    width: auto;
    padding: 35px 0;
    margin-bottom: 10px;
  }
  .contents.about ul li h4 {
    font-size: 20px;
    margin: 0 auto 25px;
  }
  .contents.about ul li h4 .sub {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .contents.about ul li p .no {
    font-size: 88px;
  }
  .contents.about ul li p .caption {
    font-size: 18px;
  }
  /*-------------------ブランド-------------------*/
  .contents.brand ul li {
    width: 31.33%;
    margin: 10px 1%;
  }
  /*-------------------お知らせ-------------------*/
  .contents.news .dl_box {
    width: auto;
  }
  .contents.news .dl_box dl {
    display: block;
    padding: 20px 0;
  }
  .contents.news .dl_box dl dt {
    width: auto;
    font-size: 13px;
    margin-bottom: 5px;
  }
  .contents.news .dl_box dl dd {
    width: auto;
  }
  /*-------------------採用情報-------------------*/
  .contents.recruit .p {
    font-size: 28px;
    line-height: 28px;
    position: absolute;
    top: -20px;
  }
  .contents.recruit .p span {
    padding: 10px 0 12px;
  }
  .contents.recruit .p span:first-child {
    width: 250px;
    margin-bottom: 10px;
  }
  .contents.recruit .p span:last-child {
    width: 250px;
  }
  .contents.recruit .slide_box {
    height: 400px;
  }
  .contents.recruit ul.slider img {
    height: 400px;
  }
  .contents.recruit .btn_entry a {
    font-size: 98px;
  }
  .contents.recruit .btn_entry .sub {
    font-size: 22px;
  }
  .contents.recruit .btn_entry .sub:after {
    width: 190px;
  }
  .contents.recruit .arrow {
    width: 200px;
    position: absolute;
    top: 0;
    right: -30px;
  }
  .contents.recruit .arrow:before {
    left: 0;
    width: 200px;
    height: 3px;
  }
  .contents.recruit .arrow:after {
    left: 175px;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg) skew(-15deg, -15deg);
    transform: rotate(45deg) skew(-15deg, -15deg);
  }
  .contents.recruit a:hover .arrow:before {
    width: 230px;
  }
  .contents.recruit a:hover .arrow:after {
    left: 210px;
  }
}
@media screen and (max-width:700px) {
  #splash_text .logo {
    width: 70px;
  }
  #splash_text p {
    font-size: 30px;
    position: absolute;
    top: 15px;
  }
  /*-------------------トップ-------------------*/
  .top h2 {
    font-size: 32px;
    height: 100px;
    position: absolute;
    left: 15%;
  }
  .top h2 .sub {
    font-size: 58px;
    line-height: 58px;
    margin: 0 0 0 -10%;
  }
  .top .slide_box div {
    height: 150px;
    margin: 25px 0;
    background-size: 1250px;
  }
  @keyframes slide1 {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: 1250px;
    }
  }
  @keyframes slide2 {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1250px;
    }
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}