@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #333;
  vertical-align: baseline;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
}
body {
  width: 100%;
}
.mv_section {
  width: 100%;
  height: 180px;
  background-image: url("../../../images/mv/mv_laptop.jpg");
  background-position: 50% 30%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv_title {
  padding: 4px 16px;
  width: auto;
  background-color: rgba(255, 255, 255, 0.75);
}
.mv_title p {
  text-align: center;
  font-size: 1rem;
}
.mv_title h1 {
  text-align: center;
  font-size: 1.5rem;
}
:root {
  --t: 1s;
  --d: 0.08em;
  --n: 3;
  --e: cubic-bezier(0.86, 0, 0.07, 1);
  --front: black;
  --back: lightblue;
}
.mv_title h1,
.mv_title p {
  font-family: "Futura", "Noto Sans JP", sans-serif;
  font-weight: 900;
}
.mv_title h1 span,
.mv_title p span {
  position: relative;
  display: inline-block;
  animation: ani var(--t) infinite alternate var(--e);
}
@keyframes ani {
  0% {
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 var(--back);
    color: var(--front);
  }
  30% {
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 var(--back);
    color: var(--front);
  }
  70% {
    transform: translate3d(var(--d), calc(-1 * var(--d)), 0);
    text-shadow: calc(-1 * var(--d)) var(--d) var(--back);
    color: var(--front);
  }
  100% {
    transform: translate3d(var(--d), calc(-1 * var(--d)), 0);
    text-shadow: calc(-1 * var(--d)) var(--d) var(--back);
    color: var(--front);
  }
}
.mv_title span:nth-child(2n) {
  animation-delay: 1.5s;
}
.mv_title span:nth-child(3n) {
  animation-delay: 2s;
}
.works_section {
  max-width: 960px;
  margin: 40px 20px;
}
.works_section > div {
  padding-bottom: 3rem;
}
.works_section_title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.works_section_title h2 {
  z-index: 2;
}
.works_section_title::before {
  content: "Web Site";
  position: absolute;
  top: -1.7rem;
  left: -0.5rem;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(5, 62, 98, 0.2);
  font-family: "Futura", "Noto Sans JP", sans-serif;
  z-index: 1;
}
.works_section_title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
}
.works_item_title h3 {
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #333;
}
.works_item_title a {
  display: block;
}
.works_item_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10%;
  margin: 0 auto;
}
.works_item_wrap div {
  flex-basis: 100%;
}
.works_item_content {
  margin-top: 20px;
}
.works_item_desc h4 {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
}
.works_item_desc p {
  margin-top: 20px;
}
.works_item_desc h4::before,
.works_item_desc h4::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #333;
  transform: rotate(45deg);
}
.works_item_desc h4::before {
  margin-right: 0.5rem;
}
.works_item_desc h4::after {
  margin-left: 0.5rem;
}
.works_item_wrap div a {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.works_item_wrap div a img {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.works_item_wrap ul {
  display: flex;
  gap: 20px;
}
.works_item_wrap ul li {
  border: solid 1px #000;
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  .mv_section {
    height: 360px;
    background-position: 50% 30%;
  }
  .mv_title {
    padding: 16px 64px;
  }
  .mv_title p {
    font-size: 2rem;
  }
  .mv_title h1 {
    text-align: center;
    font-size: 3rem;
  }
  .works_section {
    margin: 3rem auto;
  }
  .works_item_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 5%;
    margin: 0 auto;
  }
  .works_item_wrap div {
    flex-basis: 45%;
  }
  .works_item_content {
    margin-top: 0;
  }
  .works_item_desc.comment {
    flex-basis: 100%;
  }
}
