@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: #333;
}

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

.headCopy{
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  width: 100%;
  max-width: calc(100% - 100px);
}

.headCopy p{
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: 5px;
  line-height: 16px;
  font-family: 'Sawarabi Gothic', sans-serif;
}

.headCopy p.eng{
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 1px;
  margin-top: 5px;
  font-family: 'Didact Gothic', sans-serif;
}

#infomationWrap{
  padding: 100px 20px 100px;
  background-color: #333;  
}

#infomationWrap > p{
  display: none;
  color: #fff;
  margin-bottom: 50px;
}

#aboutWrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0 100px 100px;
  background-color: #222;
}

#aboutWrap h3,
#aboutWrap h2{
  color: #fff;
  font-weight: normal;
}

#aboutWrap h3{
  color: #999;
  margin-bottom: 20px;
}

#aboutWrap h2{
  margin-bottom: 20px;
  font-size: 50px;
  line-height: 70px;
}
#aboutWrap p{
  color: #fff;
  margin-bottom: 10px;
}

#aboutWrap > div:first-of-type{
  width: 40%;
  margin-right: 50px;
}

#aboutWrap > div:last-of-type{
  position: relative;
  width: calc(60% - 50px);
  max-width: 1100px;
}

#aboutWrap > div:last-of-type img:nth-of-type(1){
  width: 100%;
}

#aboutWrap > div:last-of-type img:nth-of-type(2){
  display: inline-block;
  vertical-align: top;
  top: -40px;
  left: 100px;
  position: relative;
  width: 35%;
}

#aboutWrap > div:last-of-type img:nth-of-type(3){
  display: inline-block;
  vertical-align: top;
  top: -70px;
  left: 150px;
  position: relative;
  width: 35%;
}

#menuWrap{
  width: 100%;
  background-color: #111;
}

#menuWrap a{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center center;
  border-top: 10px solid #111;
  border-bottom: 10px solid #111;
  overflow: hidden;
  padding: 0 100px;
}

#menuWrap a::after{
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
  z-index: 1;
}

#menuWrap a:first-of-type{
  justify-content: flex-start;
  background-image: url("../img/manuBack.jpg");
}

#menuWrap a:last-of-type{
  justify-content: flex-end;
  background-image: url("../img/sweetBack.jpg");
}

#menuWrap a div{
  position: relative;
  display: flex;
  z-index: 2;
}

#menuWrap a div h2{
  color: #fff;
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin-right: 50px;
}

#menuWrap a div p{
  color: #fff;
  margin-right: 50px;
}

#menuWrap a div .linkBtn{
  align-self: center;
  width: 130px;
  text-align: center;
}

#infoWrap{
  padding: 100px 20px;
  background-color: #222;
}

.infolinkBox{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.infolinkBox a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 300px;
  background-size: cover;
  background-position: center center;
}

.infolinkBox a::after{
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.3);
  z-index: 1;
}

.infolinkBox a div{
  position: relative;
  text-align: center;
  z-index: 2;
}

.infolinkBox a div h2{
  font-size: 50px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 10px;
}

.infolinkBox a div p{
  color: #fff;
}

.infolinkBox a:first-of-type{
  background-image: url("../img/shopBack.jpg");
}

.infolinkBox a:last-of-type{
  background-image: url("../img/recruitBack.jpg");
}

.infoBox{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.infoBox > div{
  width: calc(40% - 20px);
}

.infoBox > div h2{
  font-size: 50px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 10px;
}

.infoBox > div p{
  color: #999;
  margin-bottom: 20px;
}

.infoBox > ul{
  width: 60%;
}

.infoBox > ul li{
  width: 100%;
}

.infoBox > ul li a{
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #999;
  transition: .3s;
}

.infoBox > ul li a:hover{
  transition: .3s;
  opacity: 1;
  border-bottom: 1px solid #fff;
}

.infoBox > ul li a h4{
  color: #fff;
  font-size: 14px;
  margin-right: 20px;
}

.infoBox > ul li a span{
  padding: 5px 15px;
  font-size: 14px;
  color: #fff;
  background-color: #222;
  margin-right: 20px;
}

.infoBox > ul li a p{
  color: #fff;
}

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

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

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

@media screen and (max-width: 1200px) {
  #menuWrap a div h2,
  #menuWrap a div p{
    margin-right: 20px;
  }
  
  
}

@media screen and (max-width: 1000px) {
  #headWrap{
    height: 60vw;
  }
  
  #headWrap > video{
    width: 110%;
  }
  
  #aboutWrap{
    padding: 100px 0 100px 20px;
  }
  
  #menuWrap a{
    padding: 0 50px;
  }
}

@media screen and (max-width: 800px) {
  .headCopy{
    bottom: 20px;
    left: 20px;
    max-width: calc(100% - 40px);
  }
  
  .headCopy p{
    padding: 5px;
    line-height: 14px;
  }
  
  .headCopy p.eng{
    display: none;
  }
  
  #aboutWrap{
    display: block;
    padding: 100px 20px;
  }
  
  #aboutWrap > div:first-of-type{
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  #aboutWrap > div:last-of-type{
    width: 100%;
  }
  
  #menuWrap a{
    height: auto;
    padding: 50px 20px;
  }
  
  #menuWrap a div{
    display: block;
  }
  
  #menuWrap a div h2,#menuWrap a div p{
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .infoBox{
    display: block;
  }
  
  .infoBox > div{
    width: 100%;
    margin-bottom: 30px;
  }
  
  .infoBox > ul{
    width: 100%;
  }
}

@media screen and (max-width: 600px){
  #headWrap{
    position: relative;
    height: 80vw;
  }
  
  #headWrap > video{
    width: 150%;
    bottom: 0;
    left: -25%;
    position: absolute;
  }
  
  .headCopy{
    display: none;
  }

  #infomationWrap > p{
    display: block;
  }
  
  #aboutWrap > div:last-of-type img:nth-of-type(2){
    left: 50px;
  }
  
  #aboutWrap > div:last-of-type img:nth-of-type(3){
    left: 100px;
  }
  
  .infolinkBox{
    display: block;
  }
  
  .infolinkBox a{
    width: 100%;
    max-width: 300px;
    height: 160px;
    margin: 0 auto;
  }
  
  .infolinkBox a::after{
    height: 160px;
  }
  
  .infoBox > div{
    text-align: center;
  }
  
  .infoBox > ul{
    max-width: 300px;
    margin: 0 auto;
  }
  
  .infoBox > ul li a{
    display: block;
    text-align: center;
  }
  
  .infoBox > ul li a h4,.infoBox > ul li a span{
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

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