/* ------------------------------
  info page Style
------------------------------*/
.concept {
  background: #141414;
  color: #fff;
}

.concept .container .flex-wrapper {
  align-items: stretch;
  gap: 30px;
}

.concept__text {
  flex: 1;
}

.concept__image {
  flex: 1;
}

.concept__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .concept .container .flex-wrapper {
    flex-direction: column;
  }
}

.concept-sub{
  width: 100%;
  position: relative;
  color: #fff;
  background-color: #141414;
  overflow: hidden;
  z-index: 0;
}

.concept-sub::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../img/concept-sub_bg2.jpg");

  background-size: cover;
  background-position: center;
}

.info-data {
  background: #E7E7E7;
}

.info-data .container .section-heading {
  text-align: center;
}

.info-data .container .shop-info {
  margin-bottom: 50px;
}

.info-data .container .shop-info .shop-info__content .shop-data {
  font-size: 1.6rem;
  color: #000;
  text-shadow: none;
  border-bottom: 1px solid #888888;
  padding: 20px 0;
  margin: 0;
}

.info-data .container .shop-info .shop-info__content .shop-data:first-of-type {
  padding: 0 0 20px;
}