@charset "utf-8";
/* CSS Document */



/*==============================
共通
==============================*/

.titleBox{
  text-align: center;
  margin-bottom: 30px;
}

.titleBox h3{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #ffe824;
}

.titleBox hr{
  display: block;
  width: 50px;
  margin: 15px auto;
  height: 2px;
  border: none;
  background-color: #fff;
}

.titleBox h2{
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 600px){
  .titleBox h3{
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .titleBox hr{
    margin: 10px auto;
  }
  
  .titleBox h2{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 26px;
  }
}

/*==============================
メイン
==============================*/


a.scrollIcon {
  padding-top: 80px;
}

a.scrollIcon {
  position: absolute;
  bottom: 200px;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  text-decoration: none;
  color: #fff;
  font-family: 'Didact Gothic', sans-serif;
}

a.scrollIcon span {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  
}
a.scrollIcon span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
a.scrollIcon span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
a.scrollIcon span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#headWrap{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
  border: 100px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#headWrap > video{
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

.headCopy{
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: calc(100% - 100px);
}

.headCopy h2{
  display: inline-block;
  color: #fff;
  font-size: 100px;
  line-height: 70px;
  letter-spacing: 20px;
  font-weight: 100;
}

#aboutWrap{
  position: relative;
  background-color: #eef3f2;
  margin-top: 100px;
  padding-bottom: 50px;
}

#aboutWrap > div{
  display: flex;
}

#aboutWrap > div > img{
  position: relative;
  top: -100px;
  width: 50%;
  align-self: flex-start;
}

#aboutWrap > div > div{
  position: relative;
  top: -25px;
  width: 50%;
  padding-left: 50px;
  padding-right: 100px;
  z-index: 1;
}

#aboutWrap > div > div h2{
  margin-bottom: 20px;
}

#aboutWrap > div > div h3{
  margin-bottom: 30px;
}

#aboutWrap > img{
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: .2;
  z-index: 0;
}

#linkWrap{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#linkWrap > a{
  width: 50%;
  background-position: center center;
  background-size: cover;
  text-align: center;
  padding: 100px 20px;
}

#linkWrap > a h2{
  color: #fff;
}

#linkWrap > a h3{
  color: #fff;
  margin-bottom: 20px;
}

#linkWrap > a .linkBtn{
  color: #fff;
}

#linkWrap > a .linkBtn::before{
  background: linear-gradient(to right, #fff 0%, #fff 20%, #ccc 20%, #ccc 100%);
}

#linkWrap > a:hover{
  opacity: 1;
}

#linkWrap > a:first-of-type{
  background-image: url("../img/flowerBack.jpg");
}

#linkWrap > a:last-of-type{
  background-image: url("../img/careBack.jpg");
}

#recruitWrap{
  width: 100%;
  padding: 100px;
  padding-bottom: 0;
}

#recruitWrap > img{
  width: 100%;
}

#recruitWrap > div{
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  top: -50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 50px;
}

#recruitWrap > div h2{
  margin-right: 20px;
}

#recruitWrap > div h3{
  margin-right: auto;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
  #headWrap > video{
    position: absolute;
    width: 120%;
    left: -10vw;
  }
  
  .headCopy h2{
    font-size: 70px;
    letter-spacing: 15px;
  }
  
  #recruitWrap > div{
    max-width: 1000px;
  }
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1200px) {
  
  .headCopy h2{
    font-size: 50px;
    letter-spacing: 10px;
  }
  
  #recruitWrap > div{
    max-width: 800px;
  }
}

@media screen and (max-width: 1000px) {
  #headWrap{
    border: 70px solid #fff;
  }
  
  .headCopy h2{
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 6px;
  }
  
  #aboutWrap{
    
  }
  
  #aboutWrap > div{
    display: block;
  }
  
  #aboutWrap > div > img{
    top: -50px;
    margin-bottom: 30px;
    width: 90%;
  }
  
  #aboutWrap > div > div{
    width: 100%;
  }
  
  #recruitWrap{
    padding: 0 0 0px;
  }
  
  #recruitWrap > div{
    max-width: calc(100% - 100px);
  }
}

@media screen and (max-width: 800px) {
  #linkWrap{
    display: block;
  }
  
  #linkWrap > a{
    display: block;
    width: 100%;
  }
  
  #recruitWrap > div{
    top: -20px;
    max-width: calc(100% - 40px);
    padding: 30px 20px;
    display: block;
  }
}

@media screen and (max-width: 600px){
  #headWrap{
    height: auto;
    border: none;
  }
  .headCopy{
    position: absolute;
  }
  #headWrap > video{
    margin-top: 70px;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    left: 0;
  }
  
  #aboutWrap > div > div{
    padding: 0 20px;
  }
  
  #aboutWrap > img{
    width: 80%;
  }
  
  #linkWrap > a{
    padding: 50px 20px;
  }
}

@media screen and (max-width: 414px){
}