@charset "UTF-8";

/* ================================================== */
/* hero */
/* ================================================== */
#hero .hero-body {
  background: url(../images/hero_background.jpg) no-repeat center center;
  background-size: cover;
}

#hero .hero-content {
  align-items: center;
  display: flex;
  justify-content: center;
}
#hero .hero-content figure {
  margin-right: 6rem;
}
#hero .hero-content figure img {
  height: 200px;
}

@media screen and (max-width: 1023px) {
  #hero .hero-content h1 {
    font-size: 4.4rem;
  }
}

@media screen and (max-width: 768px) {
  #hero .hero-content {
    flex-direction: column;
  }
  #hero .hero-content figure {
    margin: 0 0 4rem 0;
  }
  #hero .hero-content figure img {
    height: 140px;
  }
  #hero .hero-content h1 {
    font-size: 3rem;
    text-align: center;
  }
}

/* ================================================== */
/* philosophy */
/* ================================================== */
#philosophy .list-border-dotted li:not(:last-child) {
  border-color: var(--color-white);
}

#philosophy .values-item {
  align-items: center;
  display: flex;
}

#philosophy .tag {
  flex-shrink: 0;
  font-size: 1.6rem;
  margin-right: 2rem;
  padding: 1rem;
  width: 200px;
}

@media screen and (max-width: 1023px) {
  #philosophy .values-item {
    align-items: stretch;
    flex-direction: column;
  }

  #philosophy .tag {
    margin: 0 0 1rem 0;
    width: auto;
  }
}

/* ================================================== */
/* activities */
/* ================================================== */
#activities .less-morning-item .image {
  background: url(../images/activities_less-morning_background.jpg) no-repeat center center;
  background-size: cover;
}

#activities .less-yoake-item .image {
  background: url(../images/activities_less-yoake_background.jpg) no-repeat center center;
  background-size: cover;
}

/* ================================================== */
/* news */
/* ================================================== */
#news .news-title {
  align-items: center;
  display: flex;
}
#news .news-title span {
  margin-bottom: 1rem;
}
#news .news-title span:not(:last-child) {
  margin-right: 1rem;
}

/* ================================================== */
/* company-profile */
/* ================================================== */
#company-profile .company-profile-item {
  display: flex;
}
#company-profile .company-profile-item .item-title {
  flex-shrink: 0;
  margin-right: 2rem;
  width: 200px;
}

#company-profile .address-item .address-item-content .address-item-detail:not(:last-child) {
  margin-bottom: 2rem;
}

#company-profile .image {
  background: url(../images/company-profile_background.jpg) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #company-profile .company-profile-item {
    flex-direction: column;
  }
  #company-profile .company-profile-item .item-title {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}