@charset "UTF-8";

/*
=================================================================================================
トップページ用のcss
=================================================================================================
*/

/*
=================================================================================================
共通部分
=================================================================================================
*/
[class$="_topttl"] {
  display: inline-block;
  margin-bottom: 48px;
  font-size: 4.0rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}

[class$="_topttl"] ::before{
  width: 100%;
  height: 2px;
  display: block;
  content: "";
  background: #707070;
  position: absolute;
  bottom: -24px;
}

[class$="_topttl"] span {
  font-size: 7.0rem;
  color: #00264B;
  font-weight: 400;
}

[class$="_topimg"] {
  width: 440px;
  height: 320px;
  position: relative;
}

[class$="_topimg"]::after {
  display: block;
  content: "";
  width: 440px;
  height: 320px;
  background: #E8F2FF;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

[class$="_toptxt"] {
  font-size: 2.0rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

[class$="_moreBtn"] {
  display: block;
  width: 170px;
  height: 45px;
  font-size: 1.6rem;
  border: solid 2px #888;
  position: relative;
  transition: 0.5s;
}

[class$="_btntxt"] {
  text-align: center;
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
}

[class$="_moreBtn"]:hover {
  color: #fff;
  border: solid 2px #888;
  background: #888;
  transition: 0.5s;
}


/*
=================================================================================================
トップビジュアル
=================================================================================================
*/
.mainVisual {
  width: 100%;
  height: 100vh;
  background: url("../img/top_mainvisual_pc.jpg") no-repeat bottom center/cover fixed;
  position: relative;
  top: 0;
  left: 0;
}

.mainVisual_slogan {
  font-size: 5vh;
  font-weight: 400;
  line-height: 2.0em;
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px #444;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 150px;
  right: 15%;
}

.sp_topLogo {
  display: none;
}

/*
 * 以下スクロールダウンの動きのCSS
 */

/*スクロールダウン全体の場所*/
.scrolldown{
	position:absolute;
	bottom:0;
	right: 540px;
}

/*Scrollテキストの描写*/
.scrolldown span{
  color: #fff;
	position: absolute;
	left:10px;
	bottom:10px;
	font-size: 2.0rem;
	letter-spacing: 0.05em;
	-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

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

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

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

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

/*
=================================================================================================
事業内容
=================================================================================================
*/

.business_topWrap {
  margin: 120px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business_topimg {
  background: url("../img/top_business.jpg") no-repeat top center/cover;
}

/*
=================================================================================================
車両紹介
=================================================================================================
*/
.vehicle {
  padding: 120px 0;
  background-blend-mode: multiply;
  background: url(../img/top_vehicle.jpg) no-repeat center center/cover;
  background-color: #777;
}

.vehicle_topttl,
.vehicle_topttl span,
.vehircle_toptxt,
.vehicle_moreBtn {
  color: #fff;
}

.vehicle_moreBtn {
  border: solid 3px #fff;
  font-weight: 400;
}

.vehicle_topttl ::before {
  background: #fff;
}

.vehicle_moreBtn:hover {
  color: #888;
  font-weight: 400;
  border: solid 3px #fff;
  background: #fff;
}

/*
=================================================================================================
安全への取り組み＆会社案内
=================================================================================================
*/
.company {
  background: #E8F2FF;
}

.company_topWrap {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

.safety_topBlk,
.company_topBlk {
  width: 472px;
  height: 304px;
  overflow: hidden;
  position: relative;
}

.safety_top_backimg,
.company_top_backimg {
  width: 472px;
  height: 304px;
  transition-duration: 0.5s;
}

.safety_top_backimg {
  background-blend-mode: multiply;
  background: url(../img/top_safety.jpg) no-repeat top center/cover;
  background-color: #c7c4c4;
}

.company_top_backimg {
  background-blend-mode: multiply;
  background: url(../img/top_company.jpg) no-repeat top center/cover;
  background-color: #c7c4c4;
}

.safety_top_backimg:hover,
.company_top_backimg:hover {
  background-color: #666;
  transform: scale(1.2, 1.2);

}

.company .icon-arrow_down {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  left: calc(100%/2);
  bottom: 15px;
}

.safety_topttl,
.company_topttl {
  display: block;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 0 10px #444;
}

.safety_topttl {
  width: 370px;
}

.company_topttl {
  width: 200px;
}

.safety_topttl ::before,
.company_topttl ::before {
  background: #fff;
  height: 3px;
}

.safety_topttl span,
.company_topttl span {
  color: #fff;
}

/*
=================================================================================================
採用情報
=================================================================================================
*/

.recruit_topWrap {
  margin: 120px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruit_topimg {
  background: url("../img/top_recruit.jpg") no-repeat top center/cover;
}

/*
=============================================================
   index.css 以下スマホサイズ
============================================================
*/

@media screen and (max-width: 559px) {
  /*
  ============================================
  共通部分
  ============================================
  */
  /*TODO 共通部分あとでレスポンシブ化する */
  [class$="_topttl"] {
    padding-bottom: 16px;
    margin: 0;
    font-size: 3.0rem;
  }

  [class$="_topttl"] ::before {
    bottom: 0;
  }

  [class$="_topttl"] span {
    font-size: 5.0rem;
  }

  [class$="_topimg"] {
    width: 100%;
    height: 280px;
  }

  [class$="_topimg"]::after {
    display: none;
  }

  [class$="_toptxt"] {
    font-size: 1.8rem;
    line-height: 1.6;
    margin: 24px 0;
    text-align: justify;
  }

  [class$="_moreBtn"] {
    margin: 0 0 0 auto;
  }


  /*
  ============================================
  メインビジュアル
  ============================================
  */
  .mainVisual {
    width: 100%;
    height: 90vh;
    background: none;
  }

  .mainVisual::before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-repeat:no-repeat;
    background-position:bottom center;
    background-image:url("../img/top_mainvisual_sp.jpg");
    background-size:cover;
  }

  .mainVisual_slogan {
    padding-top: 25vh;
    height: 100vh;
    width: auto;
    font-size: 4.5vh;
    line-height: 1.8;
    top: 60%;
    right: 50%;
    transform: translate(50%,-50%);
    display: inline-block;
}

  .sp_topLogo {
    display: block;
  }

  .sp_topLogo .headerLogo_img {
    width: 30%;
    position: absolute;
    top: calc(100%/30);
    left: 5%;
  }

  /*スクロールダウン全体の場所*/
  .scrolldown{
    right: 20%;
  }

  /*
  ============================================
  事業内容
  ============================================
  */
  .business {
    background: #fff;
    position: relative;
    padding: 120px 0 40px 0;
  }

  .business_topWrap {
    margin: 0;
    display: block;
  }

  .business_topttl {
    position: absolute;
    top: 24px;
    left: calc(50% - 70px);
  }

  .business_topimg {
    width: 100%;
  }

  /*
  ============================================
  車両紹介
  ============================================
  */

  .vehicle {
    padding: 40px 0;
  }

  .vehicle_topttl {
    left: calc(50% - 70px);
  }

  /*
  ============================================
  安全への取り組み＆会社案内
  ============================================
  */
  .company_topWrap {
    flex-direction: column;
    padding: 20px 0;
  }

  .safety_topBlk,
  .company_topBlk {
    margin: 10px auto;
    width: 90%;
    height: 200px;
  }

  .safety_top_backimg,
  .company_top_backimg {
    width: 100%;
    height: 200px;
  }

  .company .icon-arrow_down {
    font-size: 1.5rem;
  }

  .safety_topttl,
  .company_topttl {
    font-size: 2.5rem;
    text-align: center;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color: #fff;
  }

  .safety_topttl span,
  .company_topttl span {
    font-size: 4rem;
  }

  .safety_topttl {
    width:90%;
  }

  .company_topttl {
    width:50%;
  }


  .safety_topttl span,
  .company_topttl span {
    color: #fff;
  }

  /*
  ============================================
  採用情報
  ============================================
  */
  .recruit {
    background: #fff;
    padding: 120px 0 40px 0;
    position: relative;
  }

  .recruit_topWrap {
    display: block;
    margin: 0;
  }

  .recruit_topttl {
    position: absolute;
    top: 24px;
    left: calc(50% - 70px);
  }

}
