/*******
top
***************/
.top-movie {
  position: relative;
  overflow: hidden;
  height: 573px;
}

.top-movie .movie {
  position: absolute;
  top: 50%;
  right: 50%;
  min-width: 100%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%)
}

.top-movie__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 100%
}

.top-movie__content {
  width: 352px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.top-movie__content .btn {
  padding: 27px 10px;
  background-color: #fff;
  border-radius: 37px;
  box-shadow: 0px 0px 16px -5px rgba(0, 0, 0);
  color: #344939;
  font-size: 22px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.top-about {
  max-width: 1190px;
  margin: 0 auto;
}

.top-about__hl {
  width: 204px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 18px;
}

.top-about__hl::after {
  content: '';
  position: absolute;
  right: 50%;
  bottom: 0;
  -webkit-transform: translate(50%, 0%);
  transform: translate(50%, 0%);
  width: 240px;
  height: 10px;
  background: url(../img/common/border_hl.png) no-repeat center;
  background-size: 240px auto;
}

.top-about__lead {
  letter-spacing: 1.4px;
  margin-top: 25px;
  text-align: center;
  line-height: 1.9;
}

.top-about__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 45px;
}

.top-about__list--item {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #5db89f;
  border-radius: 5px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding: 85px 10px 35px;
  margin-top: 47px;
}

.top-about__list--item:nth-child(-n+2) {
  margin-top: 0;
}

.top-about__list--item::before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 570px auto;
}

.top-about__list--item:hover::before {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 1;
}

.top-about__list--item1::before {
  background-image: url(../img/top/bg_item_01.png);
}

.top-about__list--item2::before {
  background-image: url(../img/top/bg_item_02.png);
}

.top-about__list--item3::before {
  background-image: url(../img/top/bg_item_03.png);
}

.top-about__list--item4::before {
  background-image: url(../img/top/bg_item_04.png);
}

.top-about__list--item .text {
  font-size: 20px;
  font-weight: 700;
  color: #344939;
  width: 100%;
  text-align: center;
  letter-spacing: 4px;
  line-height: 2.1;
  position: relative;
  z-index: 1;
}

.top-about__list--item .btn {
  background-color: #eb8a81;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  max-width: 400px;
  width: 100%;
  padding: 20px 10px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 55px;
  position: relative;
  z-index: 1;
}

.top-company {
  margin-top: 172px;
}

.top-company__list {
  max-width: 650px;
  margin: 32px auto 0;
}

.top-company__list li {
  border-bottom: 1px solid #344939;
  padding: 0 42px 14px;
  font-size: 18px;
  color: #344939;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.top-map {
  position: relative;
  padding-bottom: 520px;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 58px;
}

.top-map iframe,
.top-map object,
.top-map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*******
 responsive
***************/

@media only screen and (max-width: 799px) {
  .top-movie {
    height: 500px
  }

  .top-movie .movie {
    height: 100%
  }

  .top-movie__content {
    width: 300px;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  .top-movie__content .btn {
    padding: 20px 10px;
    font-size: 18px;
    margin-top: 15px;
  }

  .top-about {
    max-width: 1190px;
    margin: 0 auto;
  }

  .top-about__hl {
    width: 150px;
  }

  .top-about__hl::after {
    width: 180px;
    background-size: 180px auto;
  }

  .top-about__lead {
    letter-spacing: 0;
    margin-top: 15px;
    font-size: 14px;
  }

  .top-about__list {
    display: block;
    margin-top: 20px;
  }

  .top-about__list--item {
    width: auto;
    padding: 35px 10px;
    margin-top: 20px;
  }

  .top-about__list--item:nth-child(-n+3) {
    margin-top: 20px;
  }

  .top-about__list--item::before {
    opacity: 1;
    background-size: cover;
  }

  .top-about__list--item .text {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .top-about__list--item .btn {
    font-size: 16px;
    margin-top: 25px;
  }

  .top-company {
    margin-top: 85px;
  }

  .top-company__list li {
    padding: 0 15px 14px;
    font-size: 16px;
    letter-spacing: 0;
  }

  .top-map {
    padding-bottom: 200px;
  }
}