@charset "utf-8";
/* CSS Document */

	
html{
  font-size: 62.5%;
}

body{
  font-family: 'Noto Sans JP', sans-serif;
}

img{
  width: 100%;
  height: auto;
}


h1{
  font-size: 2.4rem;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
h1:before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  background-color: #dd0033;
  height: 2px;
  width: 50%;
  display: inline-block;
  transform: translateX(-50%);/*位置調整*/
}

/*-------------

   utility

-------------*/
.img-padding{
  padding-top: 20px;
}
/*appear*/

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
  animation-delay: 0.6s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration: 0.5s;
	animation-delay: 0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:0.7s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #c92f1a;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}

.googlemap {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*fadein*/

.fadeIn {
  transition: 0.5s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}

/*-------------

   button

-------------*/
.application-button{
  position: fixed;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
  cursor: pointer;
  transition: .3s;
  z-index: 10;
  text-align: center;
  width: 100%;
  
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
.application-button>a>img{
  width: 70%;
}
/*-------------

   section

-------------*/

.section-body{
  padding: 50px 20px 0;
}
.section-body:last-of-type{
  padding-bottom: 100px;
}

/*-------------

     header

-------------*/

.top{
  position: relative;
  background-image: url("../img/background.png");
  padding: 70vw 30px 0;
  height: 141.775vw;
  background-size: cover;
}
.top-label-1{
  position: absolute;
  top: 25px;
  left: 0;
  background-color: #fff;
  width: 220px;
}
.label-1{
  font-size: 2rem;
  color: #c92f1a;
}
.top-label-2{
  position: absolute;
  top: 140px;
  left: 0;
  background-color: #fff;
  width: 170px;
}
.label-2{
  font-size: 1.8rem;
  color: #c92f1a;
}
.box{
  background-color:rgba(255,255,255,0.6);
  padding: 20px 30px;
  margin: 0 auto;
}
.box-contents{
  display: flex;
  align-items: center;
}
.box-contents:first-of-type{
  border-bottom: 2px dashed #c92f1a;
}

.title, .yen{
  writing-mode:vertical-rl;
}
.title{
  font-size: 1.4rem;
  padding: 15px;
  color: #fff;
  background-color: #c92f1a;
}
.number{
  font-size: 5rem;
  color: #c92f1a;
  font-weight: bold;
  text-shadow:  
    1px 0 0 #fff,
    0 1px 0 #fff,
    -1px 0 0 #fff,
    0 -1px 0 #fff;
  padding-left: 30px;
}
.yen{
  font-size: 2rem;
  color: #c92f1a;
  font-weight: bold;
  padding: 5px 0 0 5px;
}
/*-------------

     ex-month

-------------*/
.ex-month-body{
  position: relative;
  padding: 30px 50px 30px;
}
.staff1{
  position: absolute;
  top: 30%;
}
.staff1>img{
  width: 15px;
}
.staff2{
  position: absolute;
  top: 50%;
  left: 90%;
}
.staff2>img{
  width: 15px;
}
.button{
  width: 250px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.denso-logo{
  width: 150px;
  margin: 0 auto;
}
.ex-work{
  font-size: 1.2rem;
  text-align: center;
  color: #c92f1a;
  padding-bottom: 40px;
  line-height: 1.7;
  font-weight: bold;
}
.ex-month{
  color: #000;
  border: 2px solid #000;
  border-radius: 15px;
  background-color: #fff1e2;
  padding: 20px;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
.ex-title{
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 10px;
}
.ex-detail{
  display: flex;
  font-size: 1.2rem;
  font-weight: bold;
}

/*-------------

　   merit

-------------*/
.merit-wrapper{
  background-color: #f8d8b5;
  padding: 100px 25px 30px;
}
.merit-title{
  padding-bottom: 15px;
}
.merit-background{
  background-color: #fff;
  padding-bottom: 30px;
}
.merit-no{
  text-align: center;
  padding: 30px 0;
}
.merit-no>img{
  width: 25px;
}
.merit{
  position: relative;
}
.text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.09em;
  line-height: 1.7;
}
.text1-1{
  font-size: 1.6rem;
}
.text1-2{
  font-size: 3rem;
}
.text2-1, .text3-1{
  font-size: 1.6rem;
}
.text2-2, .text3-2{
  font-size: 1.8rem;
}
.text-contents1{
  font-size: 1.4rem;
  padding: 20px 0;
  text-align: center;
}
.text-contents2{
  text-align: left;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
}
.check{
  border-bottom: 1px dashed #000;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.check:before {
  font-family: "Font Awesome 5 Free";
  content: '\f00c';
  font-weight: 900;
  color: #000;
  padding-right: 30px;
}
/*-------------

　 recruitment

-------------*/
.table-recruit{
  line-height: 1.5;
}
.table-recruit th{
  font-size: 1.4rem;
  padding: 10px 10px;
  background-color: #c92f1a;
  color: #fff;
  border: solid 1px #888;
  width: 30%;
}
.table-recruit td{
  font-size:1.4rem;
  padding: 10px 10px;
  border: solid 1px #888;
}

/*-------------

　  company

-------------*/
.company-img{
  padding-bottom: 20px;
}
.table-company{
  padding: 100px 0;
  line-height: 1.5;
}
.table-company th{
  font-size: 1.4rem;
  padding: 10px 10px;
  background-color: #dddee0;
  color: #000;
  border: solid 1px #888;
  width: 30%;
}
.table-company td{
  font-size:1.4rem;
  padding: 10px 10px;
  border: solid 1px #888;
}

/*-------------

　 form

-------------*/
.c-apply-termsOfUse__heading--lv1::before{
  content: none;
}
.c-apply-termsOfUse__heading--lv1{
  margin-bottom: 0;
}

/*-------------

　 footer

-------------*/
.footer{
  background-color: #fcdbb7;
  text-align: center;
  padding: 50px 50px 100px;
}
.footer>a>img{
  width:200px;
}
.footer-text{
  font-size: 1.4rem;
  padding: 20px 0;
  line-height: 1.5;
  color: #c92f1a;
}