﻿.recruitWrapper img{
  max-width: 100%;
}

#visualWrap{
  position: relative;
}

#visualBg{
  position: relative;
  height: 300px;
}

#visualBg .in{
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(14,102,181);
/*
  animation: mask .7s forwards cubic-bezier(.8,0,.5,1);
  animation-delay: 1s;
*/
}

#visualBg .bgg{
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(14,102,181,.5);
}

@keyframes mask {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}
#visualText{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  z-index: 5;
}

#visualText .en{
  opacity: 0;
  font-size: 2rem;
  animation: copyUp .5s forwards cubic-bezier(.8,0,.5,1);
}

#visualText .jp{
  opacity: 0;
  font-size: 3.3rem;
  animation: copyUp .5s forwards cubic-bezier(.8,0,.5,1);
  animation-delay: .5s;
  line-height: 1.3;
  text-align: center;
}
@keyframes copyUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Content common
----------------------*/
#flowWrap.inner {
    max-width: 1160px;
    margin: auto;
}

#flowWrap .companyBlock{
  margin: 100px 0;
  padding: 5rem;
  background-color: #EBF7FF;
}

#flowWrap .companyBlock h2{
  text-align: center;
  margin-bottom: 40px;
}

#flowWrap .companyBlock.company1 h2 img{
  height: 50px;
}
#flowWrap .companyBlock.company2 h2 img{
  height: 80px;
}
#flowWrap .companyBlock.company3 h2 img{
  height: 50px;
}
#flowWrap .companyBlock.company4 h2 img{
  height: 50px;
}
#flowWrap .companyBlock.company5 h2 img{
  height: 50px;
}

#flowWrap .companyBlock .layout{
  display: flex;
  justify-content: space-between;
}

#flowWrap .companyBlock .layout.wide{
  justify-content: center;
}

#flowWrap .companyBlock .layout .box{
  display: block;
  width: 48%;
  border: 1px solid #B8BEC3;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  transition: 0.2s;
}

#flowWrap .companyBlock .layout .box:hover{
  border: 1px solid #0E66B5;
  background-color: #0E66B5;
  color: #fff;
}

#flowWrap .companyBlock .layout .box:hover::after{
  border-color: #fff;
}


#flowWrap .companyBlock .layout .box .type{
  display: inline-block;
  background-color: #0E66B5;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding: 8px 20px;
}

#flowWrap .companyBlock .layout .box:hover .type{
  background-color: #fff;
  color: #0E66B5;
}

#flowWrap .companyBlock .layout .box .text{
  display: inline-block;
  margin-top: 20px;
}

#flowWrap .companyBlock .layout .applicationClosed{
  display: block;
  width: 48%;
  border: 1px solid #B8BEC3;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  transition: 0.2s;
}

#flowWrap .companyBlock .layout .applicationClosed .type{
  display: inline-block;
  background-color: #0E66B5;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding: 8px 20px;
}
#flowWrap .companyBlock .layout .applicationClosed .text{
  display: inline-block;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {

#visualBg{
  height: 150px;
}
#visualText{
  /*
  position: static;
  color: #000;
  padding: 15px 0;
  */
}

#visualText .en{
  font-size: 1.5rem;
}

#visualText .jp{
  font-size: 2rem;
}

#visualBg .bgg{
  display: none;
}

#flowWrap.inner {
  padding: 0 5%;
}

#flowWrap .companyBlock{
  padding: 15px;
}

#flowWrap .companyBlock .layout{
  display: block;
}

#flowWrap .companyBlock .layout .box{
  width: 100%;
  margin-bottom: 20px;
  padding: 30px 10px;
}
	
#flowWrap .companyBlock .layout .applicationClosed{
  width: 100%;
  margin-bottom: 20px;
  padding: 30px 10px;
}

#flowWrap .companyBlock h2{
  margin-bottom: 20px;
}

#flowWrap .companyBlock.company1 h2 img{
  height: 30px;
}
#flowWrap .companyBlock.company2 h2 img{
  height: 50px;
}
#flowWrap .companyBlock.company3 h2 img{
  height: 30px;
}
#flowWrap .companyBlock.company4 h2 img{
  height: 30px;
}
#flowWrap .companyBlock.company5 h2 img{
  height: 30px;
}

#flowWrap .companyBlock{
  margin: 30px 0;
}

}