@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 3vh;
}
body {
    height: 100vh;
}

img {
  vertical-align: baseline;
}


header#header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48%;
  background: #eee;
}
header#header h1 {
  text-align: center;
  line-height: 0;
  width: 40%;
}
header#header h1 img {
  width: 100%;
}
@media screen and (max-width: 680px) {
  header#header h1 {
    width: 70%;
  }
}

main#main {
  text-align: center;
  padding: 48px;
}

#inquiry,
#contact,
#about {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
#inquiry dt,
#contact dt,
#about dt {
  font-size: .925rem;
  font-weight: bold;
  margin-bottom: 12px;
}
#inquiry dd,
#contact dd,
#about dd{
  font-size: .825rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

#about dd aside.detail {
}
#about dd aside.detail ul.detail-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 0 0;
}
#about dd aside.detail ul.detail-items li {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 23%;
  height: 6rem;
  font-size: .75rem;
  border: solid 1px #ccc;
  border-radius: .25rem;
  box-shadow: 1px 1px 4px rgba(0,0,0,.2);
  margin-bottom: 16px;
  background-repeat: no-repeat;
  background-position: top .875rem center;
  background-size: 40%;
  opacity: .5;
}
#about dd aside.detail ul.detail-items li.icon-interview {
  background-image: url(../images/interview.svg);
}
#about dd aside.detail ul.detail-items li.icon-imaging {
  background-image: url(../images/imaging.svg);
}
#about dd aside.detail ul.detail-items li.icon-editorial {
  background-image: url(../images/editorial.svg);
  background-size: 28%;
}
#about dd aside.detail ul.detail-items li.icon-writing {
  background-image: url(../images/writing.svg);
  background-size: 32%;
}
#about dd aside.detail ul.detail-items li.icon-imageProduction {
  background-image: url(../images/imageproduction.svg);
  background-size: 46%;
}
#about dd aside.detail ul.detail-items li.icon-graphicProduction {
  background-image: url(../images/graphicproduction.svg);
  background-size: 46%;
}
#about dd aside.detail ul.detail-items li.icon-webProduction {
  background-image: url(../images/webproduction.svg);
  background-size: 46%;
}
#about dd aside.detail ul.detail-items li.icon-systemArchitecture {
  background-image: url(../images/systemarchitecture.svg);
}
@media screen and (min-width: 681px) {
  #about dd aside.detail ul.detail-items li {
    min-height: 120px;
  }
}
@media screen and (max-width: 680px) {
  #about dd aside.detail ul.detail-items li {
    width: 48%;
    height: 6rem;
    line-height: 1;
    background-position: top 1.25rem center;
    box-sizing: border-box;
    padding-bottom: .5rem;
  }
}




footer#footer {
    font-size: .675rem;
    text-align: center;
    padding-bottom: 20px;
  }
footer#footer a {
  width: 9rem;
  background: #eee;
  border-radius: 2rem;
  margin: 0 auto;
  padding: 4px 12px;
  color: unset;
  text-decoration: none;
}
