@charset "UTF-8";

/*================================================
* subVisual
================================================*/
#subVisual {
  background: url(../../images/img_shop_header_bg.jpg) no-repeat center/cover;
}

@media screen and (max-width:767px) {}


/*================================================
* 
================================================*/

.companyList {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}

.companyList dt {
  width: 17rem;
  font-weight: 700;
  padding: 1rem 0.5rem;
  margin-bottom: 2rem;
  border-right: 1px solid #000;
}

.companyList dd {
  width: calc(100% - 17rem);
  margin-bottom: 2rem;
  padding: 1rem 0.5rem 1rem 3rem;
}

#company .galleryList {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
}

#company iframe {
  display: block;
  width: 100%;
  height: 50rem;
  margin-top: 10rem;
}

@media screen and (max-width:767px) {
  .companyList dt {
    width: 100%;
    font-weight: 700;
    padding: 1rem 0.5rem;
    margin-bottom: 0;
    border-right: unset;
    border-bottom: 1px solid #000;
  }

  .companyList dd {
    width: 100%;
    margin-bottom: 2rem;
    padding: 1rem 0.5rem 1rem 0.5rem;
  }

  #company .galleryList {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 6rem;
  }

  #company iframe {
    height: 38rem;
    margin-top: 10rem;
  }
}



