@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "San Fransisco", "Franklin Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", sans-serif;
  color: #363636;
  letter-spacing: 1px;
}
body a {
  text-decoration: none;
  color: #363636;
}

header {
  min-width: 100vw;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  padding: 10px 20px;
  font-size: 200%;
}
@media screen and (max-width: 600px) {
  header h1 {
    padding: 10px;
    line-height: 1;
  }
}
header ul {
  margin: 25px 25px 10px;
}
@media screen and (max-width: 600px) {
  header ul {
    margin: 25px 25px 10px 0;
    min-width: 50vw;
    text-align: center;
  }
}
header ul li {
  display: inline;
  font-size: 90%;
  padding: 0 10px;
  border-left: 1px solid #363636;
}
header ul li:last-child {
  border-right: 1px solid #363636;
}

.top img {
  min-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 90px;
}
@media screen and (min-width: 900px) {
  .top {
    max-width: 80vw;
    margin: 0 auto;
  }
}

.box {
  width: 80vw;
  margin: 0 auto;
}

h2 {
  width: 70%;
  margin: 0 auto;
  padding: 40px 0 10px;
  font-size: 150%;
  text-align: center;
  border-bottom: 2px solid rgba(54, 54, 54, 0.5019607843);
}

.about {
  background-color: #fff;
}
.about .contents {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 20px 40px;
}
@media screen and (max-width: 600px) {
  .about .contents {
    display: block;
  }
}
.about .contents .content1 {
  width: 250px;
}
@media screen and (max-width: 600px) {
  .about .contents .content1 {
    margin: 0 auto;
  }
}
.about .contents .content1 .prof {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}
.about .contents .content1 .prof img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.about .contents .content1 p {
  text-align: center;
}
.about .contents .content2 {
  width: 380px;
}
@media screen and (max-width: 600px) {
  .about .contents .content2 {
    margin: 0 auto;
  }
}
.about .contents .content2 p {
  padding: 15px;
  font-size: 90%;
}

.skill {
  background-color: #eef7da;
}
.skill .contents {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  justify-content: space-evenly;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .skill .contents {
    padding: 40px 10px;
  }
}
@media screen and (max-width: 600px) {
  .skill .contents {
    grid-template-columns: 100px 100px;
  }
}
.skill .contents .content {
  min-width: 100px;
  min-height: 150px;
}
.skill .contents .content p.lang {
  width: 100%;
  line-height: 6;
  text-align: center;
  border: 1px solid rgba(54, 54, 54, 0.5019607843);
  border-radius: 20%;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .skill .contents .content p.langs {
    font-size: 14px;
    line-height: 6.8;
  }
}
.skill .contents .content p.level {
  line-height: 2;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.skill .license {
  padding-bottom: 60px;
}
.skill .license h3 {
  width: 70%;
  margin: 0 auto;
  font-size: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(54, 54, 54, 0.5019607843);
}
@media screen and (max-width: 600px) {
  .skill .license h3 {
    width: 80%;
  }
}
.skill .license ul {
  line-height: 1.5;
  font-size: 90%;
}
.skill .license ul li {
  width: 60%;
  margin: 0 auto;
  list-style: none;
  padding: 20px 15px 0;
  border-bottom: 1px dotted rgba(54, 54, 54, 0.5019607843);
}
@media screen and (max-width: 600px) {
  .skill .license ul li {
    width: 75%;
    font-size: 80%;
  }
}
.skill .license ul li span {
  padding-right: 10px;
}
@media screen and (min-width: 900px) {
  .skill .license {
    max-width: 900px;
    margin: 0 auto;
  }
}

.works {
  background-color: #fff;
}
.works .contents {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: auto;
  padding: 20px 0;
  font-size: 90%;
}
@media screen and (min-width: 900px) {
  .works .contents {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .works .contents {
    display: block;
    min-width: 100%;
    margin: 0 auto;
  }
}
.works .contents .content1 {
  place-content: center;
}
.works .contents .content1 img {
  display: inline;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(54, 54, 54, 0.5019607843);
}
@media screen and (max-width: 768px) {
  .works .contents .content1 img {
    width: 250px;
  }
}
@media screen and (max-width: 600px) {
  .works .contents .content1 {
    text-align: center;
  }
}
.works .contents .content2 {
  padding: 15px 40px;
  max-width: 380px;
}
@media screen and (max-width: 600px) {
  .works .contents .content2 {
    margin: 0 auto;
    padding: 15px 20px;
  }
}
.works .contents .content2 h3 {
  font-size: 100%;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .works .contents .content2 h3 {
    text-align: center;
  }
}
.works .contents .content2 ul {
  margin: 15px 0;
  line-height: 4;
}
.works .contents .content2 ul li {
  display: inline;
  background-color: #363636;
  color: #fff;
  margin: 0 3px;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .works .contents .content2 ul {
    line-height: 2;
  }
}
@media screen and (max-width: 600px) {
  .works .contents .content2 ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    line-height: 1.2;
  }
}
.works .contents .content2 p {
  font-size: 80%;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .works .contents .content2 p {
    max-width: 280px;
    margin: 0 auto;
  }
}
.works .contents .content3 {
  grid-column: 1/6;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .works .contents .content3 {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 600px) {
  .works .contents .content3 p {
    width: 280px;
    margin: 0 auto;
  }
}
.works .contents .content3 p a {
  display: block;
  color: #fff;
  width: 400px;
  text-align: center;
  font-size: 80%;
  line-height: 2;
  background-color: #363636;
}
@media screen and (max-width: 600px) {
  .works .contents .content3 p a {
    width: 280px;
  }
}

footer {
  text-align: right;
  padding: 40px 15px 20px;
  background-color: #fff;
}/*# sourceMappingURL=mystyle.css.map */