/*------------------------------------------
  First View
------------------------------------------*/
.top-first-view {
  width: 100%;
}
.top-first-view .inner {
  max-width: 1800px;
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.top-first-view .catch {
  width: 50%;
  text-align: center;
}
.top-first-view .catch .catch01 {
  font-size: 50px;
  margin-bottom: 1rem;
}
.top-first-view .catch .catch02 {
  font-size: 20px;
}
.top-first-view .slider {
  width: 50%;
}
.top-first-view .slider .slick-slide {
  z-index: 1 !important;
}
.top-first-view .slider .slick-slide.slick-current {
  z-index: 2 !important;
}
@media only screen and (max-width: 767px) {
  .top-first-view .catch {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
  }
  .top-first-view .catch .catch01 {
    font-size: 40px;
  }
  .top-first-view .catch .catch02 {
    font-size: 16px;
  }
  .top-first-view .slider {
    width: 100%;
  }
}

/*------------------------------------------
  Main Content
------------------------------------------*/
/* Common */
.top-main-content {
  display: flex;
  flex-direction: column;
  gap: 15rem 0;
  position: relative;
}
.top-main-content p {
  line-height: 2.5;
}
.top-main-content .parallax {
  width: 610px;
  height: 960px;
  background: url(../images/index/parallax.png) no-repeat;
  background-attachment: fixed;
  position: absolute;
  top: -200px;
  left: 0;
}
.top-main-content .parallax:before {
  content: "";
  width: 450px;
  height: 350px;
  display: block;
  background: var(--c-white);
  position: absolute;
  right: -1px;
  top: -1px;
  z-index: 2;
}
.top-main-content .parallax:after {
  content: "";
  width: 450px;
  height: 350px;
  display: block;
  background: var(--c-white);
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
}
@media only screen and (max-width: 1300px) {
  .top-main-content .parallax {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .top-main-content {
    gap: 7rem 0;
  }
  .top-main-content p {
    line-height: 1.8;
  }
}

/* About */
.top-about {
  margin-top: 10rem;
}
.top-about .inner {
  max-width: 1800px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.top-about .img {
  width: 50%;
}
.top-about .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  position: relative;
}
.top-about .text p {
  position: relative;
  z-index: 2;
  text-shadow: 2px 1px 1px var(--c-white);
}
.top-about .text .master {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 49.445%;
}
@media only screen and (max-width: 1500px) {
  .top-about .text .master {
    bottom: auto;
    top: 0;
  }
}
@media only screen and (max-width: 1300px) {
  .top-about .img {
    display: none;
  }
  .top-about .text {
    width: 100%;
    gap: 2rem 0;
  }
  .top-about .text .master {
    top: -120px;
  }
}

/* Menu */
.top-menu .inner {
  max-width: 1800px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.top-menu .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
.top-menu .img  {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 10px;
}
.top-menu .img > div:nth-of-type(1) {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .top-menu .inner {
    flex-direction: column;
    gap: 2rem 0;
  }
  .top-menu .text {
    width: 100%;
    gap: 2rem 0;
  }
  .top-menu .img {
    width: 100%;
  }
}

/* Recruit */
.top-recruit {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.top-recruit .img {
  width: 50%;
  overflow: hidden;
}
.top-recruit .text {
  width: 50%;
  padding: 0 2.5%;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
@media only screen and (max-width: 767px) {
  .top-recruit {
    flex-direction: column-reverse;
    gap: 2rem 0;
  }
  .top-recruit .text {
    width: 100%;
    gap: 2rem 0;
  }
  .top-recruit .img {
    width: 100%;
  }
}