@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;
  }
}

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

#headWrap{
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

#headWrap > h1{
  position: absolute;
  display: inline-block;
  color: #fff;
  top: 0;
  bottom: 0;
  left: 100px;
  margin: auto;
  font-weight: normal;
  font-size: 50px;
  text-decoration: underline;
  line-height: 60px;
  height: 120px;
  z-index: 2;
}

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

a.scrollIcon {
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  color: #fff;
}

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;
  }
}

#aboutWrap{
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background-image: url("../img/aboutBack.jpg");
  background-position: center center;
  background-size: cover;
}

#aboutWrap > p{
  color: #fff;
  margin-bottom: 30px;
}

#serviceWrap{
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background-image: url("../img/serviceBack.jpg");
  background-position: center center;
  background-size: cover;
}

#serviceWrap > div{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

#serviceWrap > div .titleBox{
  text-align: left;
}

#serviceWrap > div .titleBox hr{
  margin-left: 0;
}

#serviceWrap > div p{
  color: #fff;
  margin-bottom: 30px;
}

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

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

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

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

@media screen and (max-width: 1000px) {
  #headWrap > h1{
    left: 20px;
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 800px) {
  #headWrap > h1{
    left: 20px;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 600px){
  #headWrap > h1{
    left: 20px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0px;
  }
}

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