@charset "utf-8";
/* CSS Document */
#mainBlock {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: url("../images/top/bg_pc.jpg") no-repeat center top;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.contents {
  width: 1080px;
  margin: 0 auto;
}
.logo {
  margin-bottom: 75px;
  text-align: center;
}
.logo img {
  width: 186px;
}
.text {
  line-height: 2.0;
  text-align: center;
  font-size: 20rem;
  margin-bottom: 40px;
}
.menuArea {
  position: relative;
  border-top: 1px solid #a38e78;
  padding-top: 24px;
  margin-bottom: 80px;
}
.menuArea:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  top: -3px;
  left: 0;
  background-color: #a38e78;
}
.menuArea:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  top: -3px;
  right: 0;
  background-color: #a38e78;
}
.menuArea ul {
  display: flex;
  justify-content: center;
}
.menuArea ul li {
  margin: 0 30px;
}
.copyright {
  text-align: center;
  margin-bottom: 30px;
  font-size: 12rem;
}
@media screen and (max-width: 768px) {
  #mainBlock {
    background: url("../images/top/bg_sp.jpg") no-repeat center 50px;
    background-size: cover;
  }
  .header {
    position: relative;
    position: fixed;
    background: #fff;
    height: 50px;
    width: 100%;
  }
  .header .cart {
    position: absolute;
    top: 14px;
    right: 75px;
    width: 24px;
  }
  .header .naviArea {
    position: fixed;
    z-index: 2;
    top: 0!important;
    left: 0!important;
    height: 100%;
    background: #fff;
    color: #333;
    text-align: center;
    transform: translateX(120%);
    transition: all 0.6s;
    width: 100%;
    border: none;
    padding: 0;
  }
  .header .naviArea {
    padding-top: 75px;
  }
  .header .naviArea .snsNavi {
    border-top: 1px solid #c7c5c4;
    padding-top: 40px;
  }
  .header .naviArea .snsNavi ul {
    display: flex;
    justify-content: center;
  }
  .header .naviArea .snsNavi li {
    padding: 0;
    margin: 0 5px;
    width: 30px;
  }
  .header .naviArea .mainNavi {
    width: 100%;
    margin-top: 15px;
  }
  .header .naviArea .mainNavi li {
    padding: 15px 0;
  }
  .header .naviArea .mainNavi li a {
    display: block;
  }
  .header .naviArea.active {
    transform: translateX(0%);
  }
  .naviArea .mainNavi ul.outbound{
    width: 200px;
    margin:0 auto;
    text-align: center;
  }
  .navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 20px;
    top: 14px;
    width: 30px;
    height: 29px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
}
 
  .navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 25px;
    border-bottom: solid 2px #000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0;
  }

  .navToggle span:nth-child(1) {
      top: 0;
  }

  .navToggle span:nth-child(2) {
      top: 10px;
  }

  .navToggle span:nth-child(3) {
      top: 20px;
  }

    /* 最初のspanをマイナス45度に */
  .navToggle.active span:nth-child(1) {
      top: 13px;
      left: 0;
      border-bottom: solid 3px #000;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }

  .navToggle.active {
  }
  /* 2番目と3番目のspanを45度に */
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
      top: 13px;
      border-bottom: solid 3px #000;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg);
  }
  .contents {
    width: 94%;
    margin: 0 auto;
  }
  .logo {
    margin-bottom: 35px;
  }
  .logo img {
    width: 33.2%;
  }
  .text {
    line-height: 2.0;
    text-align: center;
    font-size: 14rem;
    margin-bottom: 80px;
  }
  .copyright {
    text-align: center;
    margin-bottom: 20px;
    font-size: 12rem;
  }
}