﻿.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: 4rem;
  animation: copyUp .5s forwards cubic-bezier(.8,0,.5,1);
  animation-delay: .5s;
}
@keyframes copyUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Content common
----------------------*/
#faqWrap.inner {
    max-width: 1160px;
    padding: 5rem;
    margin: auto;
}
#faqWrap h2{
  font-weight: bold;
  margin: 5rem 0 1rem 0;
  color: #0067B9;
  text-align: center;
  border-bottom: none !important;
  padding: 0;
  font-size: 24px;
  font-size: 2.4rem;
}

#faqWrap h3{
  position: relative;
  padding: 2rem 4rem 2rem 2rem;
  font-weight: bold;
  cursor: pointer;
  border-top: 1px solid #ccc;
  line-height: 150%;
}

#faqWrap h3.open,
#faqWrap h3:hover {
  background: #0067B9;
  color: #ffffff;
}

#faqWrap h3 i{
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7px;
  width: 15px;
  height: 15px;
  display: block;
  transition: all .3s ease;
}

#faqWrap h3 i::before{
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #0067B9;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
#faqWrap h3 i::after{
  content: "";
  display: block;
  position: absolute;
  height: 15px;
  width: 2px;
  background-color: #0067B9;
  right: 7px;
  top: 0;
}

#faqWrap h3.open i::before,
#faqWrap h3.open i::after,
#faqWrap h3:hover i::before,
#faqWrap h3:hover i::after{
  background-color: #fff;
}

#faqWrap h3.open i{
  transform: rotate(45deg);
}

#faqWrap .answerBox{
  display: none;
  padding: 2rem;
  border-top: 1px dotted #ccc;
}

#faqWrap a{
  text-decoration: underline;
}

#faqWrap .iconBlank{
  margin-right: 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;
}

#faqWrap.inner {
  padding: 0 5% 80px;
}

}


