@charset "UTF-8";
/*------------------------------------------common */
/* ------------------------------------------------*/
.contents-inner {
  background-color: #DBDBDB;
}

.section-title-inner {
  text-align: center;
}

.section-title {
  display: inline-block;
  font-size: 40px;
  position: relative;
  padding-left: 10px;
  line-height: 1;
  border-left: 5px solid #3FA9F5;
  margin-bottom: 20px;
}

.section-sub-title {
  font-size: 20px;
  color: #696969;
}

.text-line {
  display: flex;
  align-items: center;
  width: 200px;
  margin: 0 auto 30px auto;
}

.text-line:before,
.text-line:after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: #696969;
  margin: 0 20px;
}

/*----view-more-btn----*/
.view-more-btn {
  font-size: 20px;
  border: 1px solid #333;
  border-radius: 50px;
  width: 170px;
  margin: 0 auto 30px auto;
  position: relative;
  padding: 10px 0;
}
.view-more-btn:hover {
  opacity: 1;
  background-color: #333;
  border-color: #333;
  color: #FFF;
}

.view-more-btn:hover .arrow::before {
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}

.arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(-5%, -50%);
  padding: 10px;
  display: inline-block;
}

.arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  left: 0px;
  top: 2px;
}

.arrow.arrow-right::before {
  transform: rotate(45deg);
}

/*--------------------------------------------main */
/* ------------------------------------------------*/
.main {
  background-image: url("../img/main-visual.jpg");
  background-size: cover;
}

.top-navbar {
  display: none;
}

/*slider*/
.slider1 {
  padding: 80px 0 0 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
}

.slider-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 50vw;
  border-radius: 30px;
}

.catchphrase-text {
  color: #FFF;
  font-size: 48px;
  font-weight: bold;
  font-family: serif;
  margin: 0 0 10px 40px;
  line-height: 1.4;
  text-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px;
}

.catchphrase-subtext {
  color: #FFF;
  font-size: 24px;
  font-family: serif;
  margin-left: 40px;
  padding-bottom: 30px;
  text-shadow: rgba(0, 0, 0, 0.15) 1px 1px 5px;
}

/*------------------------------------------about-us */
/* -------------------------------------------------*/
.about-us {
  position: relative;
  padding-top: 40px;
  text-align: center;
}
.about-us .view-more-btn:hover {
  border: 1px solid #FFF;
}
.about-us .about-us-text {
  padding: 0px 0 30px 0;
}
.about-us .text {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: left;
}

.about-us-img {
  width: 90%;
  border-radius: 25px;
  margin-bottom: 30px;
}

/*--------------------------------------------works */
/* ------------------------------------------------*/
.works {
  background-color: black;
  border-radius: 0 100px 100px 0;
  padding: 40px;
  width: 90%;
  color: #ffffff;
}
.works .section-title-inner {
  margin-bottom: 20px;
}
.works .section-sub-title {
  color: #FFF;
}
.works .text-line:before,
.works .text-line:after {
  content: "";
  background: #FFF;
}
.works .img-inner {
  margin: 40px 0;
}
.works img {
  display: inline-block;
  margin: 40px 0 10px 0;
  width: 60vw;
  height: 40vw;
}
.works .view-more-btn {
  padding-left: 30px;
  border: 1px solid #FFF;
  margin: 40px auto 0 auto;
}
.works .arrow::before {
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}

/*-------------------------------------------recruit*/
/* ------------------------------------------------*/
.recruit {
  padding: 40px 0;
  color: #FFF;
  margin: 40px 0;
}
.recruit .inner {
  width: 90%;
  margin: 0 0 0 auto;
  height: 380px;
  background-image: url("../img/recruit-img.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 100px 0px 0px 100px;
  padding-top: 30px;
  position: relative;
}
.recruit .text-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.recruit .text {
  width: 80%;
  margin: 10px auto 40px auto;
}
.recruit .section-sub-title {
  color: #FFF;
}
.recruit .text-line:before,
.recruit .text-line:after {
  content: "";
  background: #FFF;
}
.recruit .view-more-btn {
  text-align: center;
  border: 1px solid #FFF;
  margin: 0 auto;
}
.recruit .arrow::before {
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}

/*---------------------------------------------news*/
/* ------------------------------------------------*/
.news {
  padding-bottom: 60px;
}
.news .section-title-inner {
  margin-bottom: 40px;
  padding: 0;
}
.news .text-content {
  border-bottom: #333 dashed 1px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.news .text-inner {
  display: flex;
  margin-bottom: 10px;
}
.news .date {
  color: #696969;
  margin-right: 30px;
}
.news .category {
  background-color: #5E5E5E;
  color: #FFF;
  padding: 0 10px;
}
.news .view-more-btn {
  text-align: center;
  margin: 0 auto;
}

/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -------------------------------　＠media(768px) */
@media (min-width: 768px) {
  /* ------------------------------------------common*/
  .section-title-inner {
    display: flex;
  }
  .section-title {
    margin: 0;
  }
  .text-line {
    width: 200px;
    margin: 0;
  }
  /*------------------------------------------main */
  .main {
    height: 100vh;
    position: relative;
  }
  .slider1 {
    position: absolute;
    left: 90%;
    top: 40%;
    width: 70%;
    transform: translate(-90%, -40%);
  }
  .catchphrase {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .catchphrase-subtext {
    font-size: 2rem;
    font-family: serif;
    margin-left: -px;
  }
  .catchphrase-text {
    font-size: 60px;
  }
  .catchphrase-subtext {
    font-size: 32px;
  }
  /*------------------------------------------about-us */
  .about-us {
    padding: 60px 0;
  }
  .about-us .row {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-us .about-us-title {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  .about-us .about-us-text {
    padding: 0;
  }
  .about-us .text {
    padding: 10px;
    width: 420px;
  }
  .about-us .view-more-btn {
    margin: 0 auto;
  }
  .about-us .about-us-img {
    padding: 0;
  }
  /*------------------------------------------works */
  .works .inner {
    display: flex;
  }
  .works img {
    margin: 40px 60px 10px 0;
    width: 20vw;
    height: 15vw;
  }
  .works .img-inner {
    margin-bottom: 60px;
  }
  /*------------------------------------------recruit */
  .recruit .section-title-inner {
    justify-content: center;
  }
  .recruit .section-title-inner {
    margin-bottom: 60px;
  }
  /*---------------------------------------------news */
  .news .section-title-inner {
    justify-content: center;
  }
  .news .text-content {
    display: flex;
    padding: 0;
  }
  .news .category {
    margin-right: 30px;
  }
}
/* 768px */
@media (min-width: 1200px) {
  /*---------------------------------------------common*/
  .section-title {
    font-size: 60px;
  }
  /*-----------------------------------------------main*/
  .main {
    height: 100vh;
    position: relative;
  }
  .slider1 {
    position: absolute;
    top: 50%;
    left: 90%;
    width: 65%;
    min-width: 100px;
    transform: translate(-90%, -50%);
  }
  .slider-img {
    height: 40vw;
  }
  .catchphrase {
    position: absolute;
    top: 65%;
    transform: translateY(-65%);
  }
  .catchphrase-text {
    font-size: 90px;
    margin-bottom: 60px;
    line-height: 1.2;
  }
  .catchphrase-subtext {
    font-size: 36px;
    font-family: serif;
    margin-left: -px;
  }
  /*---------------------------------------------about-us*/
  .about-us .text {
    width: 80%;
  }
  .about-us-img {
    background-color: #fff;
    width: 80%;
    margin-left: 50px;
    max-width: 600px;
  }
  /*------------------------------------------recruit */
  .recruit .inner {
    height: 600px;
  }
  .recruit .section-title-inner {
    margin-bottom: 100px;
  }
  .recruit .text {
    width: 50%;
  }
}/*# sourceMappingURL=page-top.css.map */