@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.04rem;
  font-size: 0.9rem;
}

img {
  max-width: 100%;
}

.logo {
  width: 175px;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.pick-up,
.feature {
  margin-bottom: 160px;
}

.video-area {
  margin-bottom: 96px;
  margin-top: 80px;
}

.ttl {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background-color: #fff;
  padding: 0 30px;
}

.hamburger {
  position: fixed;
  top: 35px;
  right: 20px;
  width: 30px;
  height: 20px;
  z-index: 50;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #121212;
  transition: all 0.5s;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}

.active .hamburger span {
  background-color: #fff;
}
.active .hamburger span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.active .hamburger span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}

.nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 300px;
  height: 100vh;
  padding: 50px 30px;
  background-color: #121212;
  color: #fff;
  transform: translateX(-300px);
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.nav-area nav {
  width: 100%;
  margin-bottom: 50px;
}
.nav-area nav li {
  line-height: 3.5;
  border-bottom: 1px solid #fff;
}
.nav-area nav li:first-child {
  border-top: 1px solid #fff;
}
.nav-area nav li a {
  text-transform: uppercase;
}

.active .nav-area {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sns li:not(:last-child) {
  margin-bottom: 8px;
}

.mask {
  display: none;
}

.active .mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  background-color: #121212;
  transition: all 0.5s;
  opacity: 0.8;
}

.main {
  border-bottom: 1px solid #fff;
}

#video {
  width: 100%;
  max-height: 960px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  #video {
    height: 100vh;
  }
}

.slider {
  visibility: hidden;
}

.slider.slick-initialized {
  visibility: visible;
}

.slick-next {
  right: 20px;
}

.slick-prev {
  left: 20px;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slider .slick-slide {
  margin-right: 1vw;
  margin-left: 1vw;
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
}
@media screen and (max-width: 600px) {
  .feature-container {
    grid-template-columns: auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.feature-container .content {
  box-shadow: 0 2px 10px #121212;
  border-radius: 1px;
  overflow: hidden;
}
.feature-container .content img {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s;
}
.feature-container .content .item-content {
  padding: 30px;
}
.feature-container .content .item-cate {
  margin-bottom: 24px;
}
.feature-container .content .item-ttl {
  margin-bottom: 24px;
}
.feature-container .content .item-date {
  text-align: right;
  display: block;
}

.contact {
  background-color: #121212;
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact .ttl {
  color: #fff;
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .contact-flex {
    flex-direction: column;
  }
}
.contact-flex .contact-left {
  width: 40%;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .contact-flex .contact-left {
    width: 100%;
  }
}

.contact-left .contact-left-ttl {
  margin-bottom: 40px;
}
.contact-left .contact-left-text {
  margin-bottom: 30px;
}

.contact-right {
  width: 55%;
}
@media screen and (max-width: 600px) {
  .contact-right {
    width: 100%;
  }
}

input[type=text],
input[type=email] {
  width: 100%;
  background: #fff;
  line-height: 3;
  margin-bottom: 10px;
  padding-left: 8px;
}

.contact-area dt {
  margin-bottom: 5px;
}

.message {
  width: 100%;
  height: 16rem;
  background: #fff;
  margin-bottom: 30px;
  padding: 8px;
}

.label-ttl {
  text-transform: capitalize;
  font-weight: normal;
  color: #fff;
}
.label-ttl::after {
  content: "※必須";
  font-size: 0.6875rem;
  display: inline-block;
  background-color: #ce0707;
  margin-left: 10px;
  border-radius: 3px;
  width: 40px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}

.submit-btn {
  border: 1px solid #fff;
  padding: 12px 80px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .submit-btn {
    text-align: center;
    width: 100%;
  }
}

.footer {
  background-color: #121212;
  padding: 10px 0;
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=style.css.map */