@charset "UTF-8";
/* ========================================
  @media screen and (min-width: 768px),print
======================================== */
@media screen and (min-width: 768px), print {
.system-logo-wrap {
  display: grid;
  grid-template-columns: 40% minmax(0, 1fr);
  gap: 0 1rem;
  margin-bottom: 5rem;
  align-items: center;
}

.system-logo img {
  width: 100%;
  height: auto;   
  max-height: 39.25rem;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;       
}

}

/* ========================================
  @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
#paint .l-header {
  margin-bottom: -14.6vw;
}

.system-logo-wrap {
  display: grid;
  grid-template-columns: repeat(1,minmax(0, 1fr));
  gap: 4vw 0;
  margin-bottom: 5vw;
}

.system-logo img {
  max-height: 77.295vw;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;      
}

}