@charset "UTF-8";
/*@media (max-width:px) { }*/
body {
  font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: black;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

h1 {
  padding: 0;
}

h2 {
  font-family: 'Bangers',serif;
  font-size: 4rem;
  letter-spacing: 7px;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 3rem;
  }
}

h2 span {
  color: red;
}

.top {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.top .bg-video {
  position: absolute;
  left: 50%;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: -1;
  animation: fadeOut 4s ease 0s 1 forwards;
  -webkit-animation: fadeOut 4s ease 0s 1 forwards;
}

.top .logo-video {
  position: absolute;
  width: 80%;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.inner {
  max-width: 1180px;
  margin: 0 auto;
  margin-top: 100px;
  text-align: center;
  padding: 0 30px;
}

.skill .skill-items {
  display: flex;
  flex-wrap: wrap;
}

.skill .skill-items .skill-item {
  margin-top: 30px;
  font-size: 1.5rem;
  width: 33.3%;
}

.skill .skill-items .skill-item .fab, .skill .skill-items .skill-item .fas {
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .skill .skill-items .skill-item .fab, .skill .skill-items .skill-item .fas {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .skill .skill-items .skill-item {
    font-size: 1rem;
  }
}

.work .work-item {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .work .work-item {
    display: block;
    margin-top: 50px;
  }
}

.work .work-item img {
  max-width: 100%;
}

.work .work-item .work-about {
  text-align: left;
}

.work .work-item .work-about li {
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .work .work-item .work-about li {
    font-size: .8rem;
  }
}

.about .content {
  text-align: justify;
  line-height: 2.5;
  margin: 0 auto;
  width: 60%;
  margin-top: 100px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .about .content {
    width: 80%;
    line-height: 1.8;
    margin-top: 50px;
    font-size: .9rem;
  }
}

.contact {
  padding-bottom: 50px;
}

.text {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border-bottom: 1px solid #3E3E3E;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1.5rem;
  padding: 1rem;
  width: 80%;
  max-width: 800px;
  opacity: 0.5;
  text-align: center;
  box-sizing: border-box;
}

.text:focus, .text:hover {
  border-bottom: 1px solid #fff;
  box-shadow: 0 5px 5px -5px #fff;
  outline: none;
  opacity: 0.5;
}

.contact-item {
  color: #3e3e3e;
  font-size: 1.5rem;
  margin-top: 20px;
}

.textarea-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #3E3E3E;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 200px;
  padding: 0.4em 0.8em;
  width: 80%;
  max-width: 800px;
  margin-top: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .textarea-text {
    height: 150px;
  }
}

.textarea-text:focus, .textarea-text:hover {
  border: 1px solid #fff;
  box-shadow: 0 0 3px #fff;
  outline: none;
  opacity: 0.5;
}

.button {
  cursor: pointer;
  background: transparent;
  border: none;
  color: #3e3e3e;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.45px;
  margin-top: 20px;
}

.button:hover {
  background: #fff;
  opacity: 0.8;
}

.button:active {
  outline: none;
}

.button:focus {
  outline: none;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
