/* reset */
body,
h1,
h2,
h3,
ul,
li {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}

li {
  line-height: 0;
}

/* ------------------------------ */
* {
  font-size: 14px;
}

img {
  width: 100%;
  height: auto;
}

div {
  width: 80%;
  margin: 0 auto 20px;
  box-sizing: border-box;
}

header {
  width: 80%;
  padding: 5px 10px;
  position: fixed;
  margin-left: 10%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
header h1 {
  width: 140px;
}
header nav ul {
  height: 16px;
}
header nav ul li {
  margin-left: 30px;
  line-height: 20px;
}
header nav ul li a {
  color: #000;
  text-decoration: none;
}
header nav ul li a::after {
  display: block;
  content: "";
  height: 1px;
  width: 0%;
  margin-top: -2px;
  background-color: #000;
  transition: width linear 0.3s;
}
header nav ul li a:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  header {
    width: 100vw;
    margin-left: 0vw;
  }
  header nav {
    margin-right: 64px;
  }
  header nav ul li {
    margin-left: 12%;
  }
}

.mainVisual {
  height: 600px;
}
.mainVisual img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .mainVisual {
    width: 100%;
    height: 40vh;
  }
}

footer {
  width: auto;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  div,
  footer {
    width: 92%;
  }
}

.logo {
  width: 110px;
  height: auto;
}

section {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto 30px;
}
section h2 {
  font-size: 24px;
}
section h2::after {
  display: block;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}
section#concept h2::after {
  content: "Concept";
}
section#work h2::after {
  content: "Work";
}
section ul {
  justify-content: space-between;
  align-items: center;
}
section ul li {
  width: 50%;
}
section ul li:nth-child(2) {
  width: 34%;
  margin-left: auto;
  margin-right: auto;
  line-height: 25.2px;
}
section#work ul {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  section {
    width: 100%;
  }
  section h2 {
    font-size: 20px;
  }
  section ul {
    flex-direction: column;
  }
  section ul li {
    width: 100%;
  }
  section ul li:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }
  section#work ul {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */