@charset "UTF-8";
/* フォント設定 *******************************************/
/* モリサワType Square ************************************/
/* クリアフィックス */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*----------- 定義内容-----------
ブレイクポイント設定
メディアクエリ
コンテンツ幅(basicWrap)
基本ベンダープレフィックスをつけた状態で書き出す(prefix)
アニメーション：プレフィクス付（animation）
角丸設定(border-radius)

---------------------------------
*/
.small {
  font-size: 13px;
  font-size: 1.3rem;
}

.contentsHeader {
  background: url(../images/header-bg-pc.jpg) no-repeat top center;
  height: 510px;
  position: relative;
  text-align: center;
  background-size: cover;
}
.contentsHeader h1 {
  position: absolute;
  top: 50%;
  left: 50%; /* Safari用 */
  transform: translate(-50%, -50%);
  width: 480px;
  height: auto;
}
.contentsHeader h1 img {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .contentsHeader {
    background-image: url(../images/header-bg-mb.jpg);
    background-size: 100%;
    height: 280px;
  }
  .contentsHeader img {
    width: 100%;
  }
  .contentsHeader h1 {
    width: 63%;
    left: 33%;
    top: 12%;
    transform: none;
  }
}

#topView .slider_css {
  height: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  #topView .slider_css {
    height: 340px;
  }
}
#topView .slider_css ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#topView .slider_css ul li {
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
}
@media only screen and (max-width: 600px) {
  #topView .slider_css ul li {
    height: 340px;
  }
}
#topView .slider_css ul li:nth-child(1) {
  background-image: url("../images/slide-top01.jpg");
  -webkit-animation-name: slider-zoomin;
          animation-name: slider-zoomin;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}
#topView .slider_css ul li:nth-child(2) {
  background-image: url("../images/slide-top02.jpg");
  -webkit-animation-name: slider-zoomout;
          animation-name: slider-zoomout;
  opacity: 0;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
#topView .slider_css ul li:nth-child(3) {
  background-image: url("../images/slide-top03.jpg");
  -webkit-animation-name: slider-zoomin;
          animation-name: slider-zoomin;
  opacity: 0;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}
#topView .slider_css ul li:nth-child(4) {
  background-image: url("../images/slide-top04.jpg");
  -webkit-animation-name: slider-zoomout;
          animation-name: slider-zoomout;
  opacity: 0;
  -webkit-animation-delay: 21s;
          animation-delay: 21s;
}
#topView .slider_css ul li:nth-child(5) {
  background-image: url("../images/slide-top05.jpg");
  -webkit-animation-name: slider-zoomin;
          animation-name: slider-zoomin;
  opacity: 0;
  -webkit-animation-delay: 29s;
          animation-delay: 29s;
}
#topView .slider_css ul li img {
  width: 120%;
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  #topView .slider_css {
    height: 340px;
  }
}
@media only screen and (max-width: 768px) {
  #topView .slider_css ul li {
    background-repeat: no-repeat;
  }
  #topView .slider_css ul li:nth-child(1) {
    background-image: url("../images/slide-top01_mb.jpg");
  }
  #topView .slider_css ul li:nth-child(2) {
    background-image: url("../images/slide-top02_mb.jpg");
  }
  #topView .slider_css ul li:nth-child(3) {
    background-image: url("../images/slide-top03_mb.jpg");
  }
  #topView .slider_css ul li:nth-child(4) {
    background-image: url("../images/slide-top04_mb.jpg");
  }
  #topView .slider_css ul li:nth-child(5) {
    background-image: url("../images/slide-top05_mb.jpg");
  }
}
@-webkit-keyframes slider-zoomin {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
@keyframes slider-zoomin {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
@-webkit-keyframes slider-zoomout {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes slider-zoomout {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/*本文 **********************************************************/
#contents-base > section {
  padding: 60px 0 60px;
}
@media only screen and (max-width: 600px) {
  #contents-base > section {
    padding: 0 0 30px;
  }
}

.innerBlock {
  max-width: 750px;
}
@media only screen and (max-width: 600px) {
  .innerBlock {
    width: 100%;
  }
}

#intro {
  text-align: center;
}
#intro .introLogoList {
  margin-bottom: 60px;
  margin-top: 40px;
  padding-bottom: 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  #intro .introLogoList {
    display: inherit;
  }
}
#intro .introLogoList img {
  width: auto;
  max-width: 140px;
  max-height: 80px;
  margin: 30px;
}
#intro h2 {
  text-align: center;
  font-weight: normal;
  line-height: 1.8;
  padding: 0 3%;
  font-feature-settings: "palt" 1;
}
@media only screen and (max-width: 600px) {
  #intro h2 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
#intro .basicWrap {
  padding: 0 5%;
  margin: 0 auto;
}
#intro p {
  text-align: left;
  margin-bottom: 16px;
}

.companyInfo h2 {
  margin: 0 5% 20px;
  font-size: 28px;
  font-size: 2.8rem;
  color: #7f7f7f;
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
}
@media only screen and (max-width: 600px) {
  .companyInfo h2 {
    margin: 0 0 20px;
  }
}

.qualification {
  text-align: left;
}
.qualification .logoList li {
  list-style: none;
  display: inline-block;
  height: 100px;
  margin-right: 20px;
}
@media only screen and (max-width: 600px) {
  .qualification .logoList li {
    height: auto;
    width: 25%;
  }
}
.qualification .logoList li img {
  height: 100%;
}

dl {
  width: 640px;
  margin: 40px auto 20px;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  dl {
    width: 100%;
  }
}
dl dt {
  width: 9em;
  float: left;
  line-height: 1.2;
}
dl dd {
  padding-left: 12em;
  margin-bottom: 24px;
}
dl dd.address {
  line-height: 1.4;
}
@media only screen and (max-width: 600px) {
  dl dt {
    float: none;
    width: auto;
    margin: 0;
  }
  dl dd {
    padding: 0 5% 20px;
    padding-left: 0;
    margin-bottom: 10px;
  }
}

#recruit .innerBlock > p {
  margin-top: 40px;
  text-align: center;
}
/*# sourceMappingURL=home.css.map */