.hero {
  background: url(../img/bg.png);
  padding: 120px;
  height: 850px;
  position: relative;
  border: none;
}

.hero__tv {
  width: 450px;
  background: #333;
  padding: 20px 20px 40px 20px;
  border-radius: 10px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__tv::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #1a9769;
  border-radius: 5px;
  width: 10px;
  height: 10px;
}
.hero__tv::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 30px;
  background: #f0eeeb;
  border-radius: 5px;
  width: 10px;
  height: 10px;
}

.hero__movie {
  width: 100%;
  height: auto;
}

.hero__slider {
  width: 600px;
  background: #333;
  padding: 20px 20px 40px 20px;
  border-radius: 10px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__slider::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #1a9769;
  border-radius: 5px;
  width: 10px;
  height: 10px;
}
.hero__slider::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 30px;
  background: #f0eeeb;
  border-radius: 5px;
  width: 10px;
  height: 10px;
}

.hero__item {
  background: #fff;
}

.hero__photo {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 50vw;
  text-align: right;
  display: block;
}

.hero__photo-002 {
  position: absolute;
  top: 50%;
  left: 60px;
  width: 33vw;
  transform: translateY(-50%);
}

.about {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about__text {
  text-align: center;
}

.family {
  max-width: 600px;
  margin: 0 auto 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
  position: unset;
  transform: none;
}

.family__cat {
  width: 25%;
  background: linear-gradient(180deg, #f0eeeb 0%, #f0eeeb 80%, #6f5436 80%, #6f5436 100%);
  padding: 10px;
  border-radius: 20px;
}

.business__menu {
  display: flex;
  gap: 30px;
  padding-bottom: 70px;
  position: relative;
}
.business__menu::before {
  content: "";
  position: absolute;
  width: calc(100% - (33.3333333333% - 25px));
  height: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f0eeeb;
}

.business__item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.business__item::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 40px;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0eeeb;
}
.business__item:nth-child(2)::after {
  display: none;
}

.business__title {
  font-size: 1.25rem;
  text-align: center;
  border-bottom: solid 1px #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.business__text {
  flex-grow: 1;
}

.business__note {
  text-align: center;
  margin-top: 30px;
  padding: 30px;
  background: #f0eeeb;
  border-radius: 20px;
  position: relative;
}
.business__note::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 70px;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0eeeb;
}

.news__slider-link {
  margin: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
}
.news__slider-link:hover {
  opacity: 0.8;
}

.news__slider-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #6f5436;
  color: #fff;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 20px;
}

.news__slider-block {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.news__slider-title {
  font-size: 1.25rem;
  flex-grow: 1;
}

.news__slider-deta {
  text-align: right;
}

.event {
  border-top: 1px solid #ccc;
}

.event__link {
  display: flex;
  gap: 30px;
  padding: 20px 40px 20px 20px;
  border-bottom: solid 1px #ccc;
  align-items: center;
  position: relative;
  background: #fff;
}
.event__link::after {
  content: "\f152";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #6f5436;
  font-size: 0.75rem;
}
.event__link:hover {
  opacity: 0.8;
}

.event__date {
  background: #6f5436;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
}

.sns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sns__link {
  width: calc(25% - 25px);
}

@media screen and (max-width: 1260px) {
  .hero__photo {
    right: 0;
  }
}
@media screen and (max-width: 980px) {
  .hero {
    padding: 120px 30px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    height: 700px;
  }
  .family {
    gap: 10px;
  }
  .hero__photo {
    right: 0;
    width: 80%;
  }
  .hero__photo-002 {
    left: 0;
    width: 50%;
    top: 80%;
    transform: translateY(-80%);
  }
  .hero__tv {
    z-index: 10;
    top: 40%;
    transform: translate(-505, -40%);
    width: 100%;
  }
  .business__menu {
    flex-direction: column;
    gap: 100px;
  }
  .business__menu::before {
    display: none;
  }
  .business__item {
    width: 100%;
  }
  .business__item::after {
    display: none;
  }
  .business__item::before {
    content: "\f055";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    color: #6f5436;
  }
  .business__item:last-child::before {
    content: "\f28b";
  }
  .business__note::after {
    display: none;
  }
  .event__link {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .sns {
    gap: 10px;
  }
  .sns__link {
    width: calc(50% - 5px);
  }
  .section, .footer {
    margin-top: 120px;
  }
}/*# sourceMappingURL=top.css.map */