@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');
/* CSS Document */
body {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  color: #0f322a;
  overflow-x: hidden;
  position: relative;
  background-color: #f7f7f7;
}

@media (max-width: 768px) {
  body::before {
    left: 5px;
    height: 80%;
  }
  body::after {
    right: 5px;
    height: 80%;
  }
}
/*-----------------header----------------------*/
header {
  position: fixed;
  z-index: 5;
  top: 30px;
  left: 20px;
  width: calc(100% - 40px);
  border: 2px solid #0f322a;
  border-radius: 25px;
  padding: 20px 0;
  background-color: #ffffff;
}
.header__wrapper {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
h1 {
  font-size: 36px;
  font-weight: 500;
  z-index: 11;
}
h1 a {
  display: block;
  color: #0f322a;
  transition: color 0.2s;
}
h1 a:hover {
  color: #ff8111;
}
.header__navigation ul {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.header__navigation li {
  padding: 0 30px 5px;
}
.header__navigation li:last-child {
  margin-right: 0;
}
.header__navigation a {
  display: block;
  color: #0f322a;
  line-height: 36px;
}
.header__navigation a:hover {
  color: #ff8111;
}

/*モバイルメニュー*/
.header__mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 50px;
}
.header__mobile-menu span {
  display: block;
  content: '';
  width: 30px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 10px;
  right: 5px;
  transition: all 0.5s;
}
.header__mobile-menu span:nth-child(2) {
  top: 18px;
  transition: all 0.6s;
}
.header__mobile-menu span:last-child {
  top: 26px;
  transition: all 0.5s;
}
@media (max-width: 1024px) {
  .header {
    padding: 20px 0;
  }
  .header__wrapper {
    display: block;
  }
  .header__navigation {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
  }
  .header__navigation ul {
    display: block;
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .header__navigation li {
    padding: 20px 0 20px;
    border-bottom: 1px dotted #0f322a;
  }
  .header__navigation li:last-child {
    border-bottom: none;
  }
  .header__mobile-menu {
    display: block;
    cursor: pointer;
    top: 19px;
  }
  .header__mobile-menu.open span:first-child {
    transform: rotate(45deg) translate(2px, 9px);
    transition: all 0.5s;
  }
  .header__mobile-menu.open span:nth-child(2) {
    opacity: 0;
    transition: all 0.5s;
  }
  .header__mobile-menu.open span:last-child {
    transform: rotate(-45deg) translate(2px, -9px);
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0;
  }
  h1 {
    font-size: 26px;
    margin: 20px 0;
  }
  .header__mobile-menu {
    right: 30px;
    top: 14px;
  }
}
/*-----------------main----------------------*/
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 0;
  padding: 0 20px;
}
/*-----------------skill color----------------------*/
.ps {
  background-color: #229bff;
}
.ai {
  background-color: #ff8400;
}
.fig {
  background-color: #9338eb;
}
.ae {
  background-color: #9999f8;
}
.pr {
  background-color: #000057;
}
.dw {
  background-color: #ff50f4;
}
.vsce {
  background-color: #1f9cf0;
}
.st {
  background-color: #ffab36;
}
.HTML {
  background-color: #e44f26;
}
.CSS {
  background-color: #1572b6;
}
.Sass {
  background-color: #cf649a;
}
.jq {
  background-color: #0868ac;
}
.js {
  background-color: #f7df1e;
}
.wp {
  background-color: #21759b;
}
/*-----------------button----------------------*/
.button {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  position: relative;
  z-index: 1;
}
.button_bl a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 60px;
  background-color: #0f322a;
  border-radius: 30px;
  padding: 0 50px;
  transition: all 0.3s;
  cursor: pointer;
}

.button_bl:hover a {
  background-color: #ff8111;
}

.button_wh a {
  display: block;
  width: 100%;
  height: 100%;
  color: #f6f9f8;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 50px;
  background-color: transparent;
  border: 1px solid #f6f9f8;
  padding: 0 50px;
  transition: all 0.3s;
}
.button_wh:hover a {
  color: #2f6357;
  background-color: #fff;
}

/*-----------------footer----------------------*/
footer {
  margin: 0 auto;
  width: calc(100% - 60px);
  background-color: #2f2f30;
  padding: 50px 30px;
  color: #fff;
  border-radius: 20px 20px 0 0;
}
.footer__wrapper {
  margin: 0 auto;
}
.footer__navigation {
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
}
.footer__navigation li {
  flex-basis: 160px;
  text-align: center;
}
.footer__navigation li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 2em;
  color: #fff;
}
.footer__navigation li a:hover {
  color: #ff8111;
}
.footer__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__btn {
  line-height: 2em;
}
.footer__btn a {
  display: block;
  padding: 0 10px;
  font-size: 14px;
  color: #6c6c6e;
}
.footer__btn a:hover {
  color: #ff8111;
}
footer small {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: block;
  color: #6c6c6e;
}
@media (max-width: 768px) {
  footer {
    width: calc(100% - 40px);
    padding: 50px 15px;
  }
  .footer__navigation li {
    flex-basis: 25%;
  }
  .footer__btn-wrapper {
    display: block;
  }
  .footer__btn {
    line-height: 2em;
	text-align: center;
  }
}

/*ふわっ*/
.fadeUpTrigger {
  opacity: 0;
}
.fadeUp {
  opacity: 0;
  animation: fadeUpAnime 1s forwards;
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
