@charset "UTF-8";
* {
  /* blackより見やすい為 space-around*/
  color: #41464b;
  font-size: 14px;
}
@media (min-width: 768px) {
  * {
    font-size: initial;
  }
}

a {
  text-decoration: none;
  color: rgb(44, 43, 43);
}

a:hover {
  color: rgba(44, 43, 43, 0.5);
  font-size: 1.3rem;
}

.header {
  max-width: 768px;
  margin: 0 auto;
  height: 50px;
}
@media (min-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 30px;
    height: auto;
  }
}
.header .header-title {
  font-family: "Foldit", cursive;
  padding-right: 50px;
  text-align: center;
  height: 50px;
}
@media (min-width: 768px) {
  .header .header-title {
    padding-left: 0;
    height: 80px;
  }
}

#logo {
  height: 100%;
}

.header-list {
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  position: fixed;
  top: -150%;
  right: -150%;
}
@media (min-width: 768px) {
  .header-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    background-color: #fff;
    position: initial;
  }
}
.header-list .header-item {
  padding: 15px;
}
@media (min-width: 768px) {
  .header-list .header-item {
    padding-left: 1.5rem;
  }
}

/* ボタン作成 */
.menu-btn {
  /* 必須 */
  position: fixed; /* ボタンの基点作成 +位置固定*/
  width: 50px;
  height: 50px; /* .menu-btnにはサイズがないので設定している */
  top: 0;
  right: 0;
  /* 任意 */
  cursor: pointer; /* マウスの形を変更 */
  border-radius: 10px; /* ブロックの四隅を丸くする */
  background-color: aqua;
  background-attachment: fixed;
  z-index: 2; /* 複数重なるときに前面に出る */
}
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span {
  /* 必須 */
  position: absolute;
  left: 14px; /* absoluteで配置が常に左上になるため */
  height: 3px; /* ハンバーガーメニュの太さ */
  width: 45%; /* 横の長さ */
  /* 任意 */
  background-color: #fff;
}

/* 高さの配置 */
.menu-btn span:nth-of-type(1) {
  top: 15px;
}

.menu-btn span:nth-of-type(2) {
  top: 23px;
}

.menu-btn span:nth-of-type(3) {
  top: 31px;
}

.frist-view {
  background-image: url(../image/main-view2.jpg);
  height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .frist-view {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .frist-view {
    height: 650px;
  }
}
.frist-view .frist-message {
  font-size: 2.5rem;
  background: -webkit-linear-gradient(0deg, rgb(7, 219, 7), rgb(224, 238, 225)); /*背景色にグラデーションを指定*/
  color: rgb(92, 255, 92); /* 非対応のブラウザの為に色を設定 */
  background-clip: text;
  -webkit-background-clip: text; /* テキストで切り抜く*/
  -webkit-text-fill-color: transparent; /*切り抜いた部分は背景を表示*/
  margin: 0 auto;
}
@media (min-width: 768px) {
  .frist-view .frist-message {
    font-size: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .frist-view .frist-message {
    font-size: 6.5rem;
  }
}

/* cmn */
.cmn-title {
  text-align: center;
  margin: 50px auto 25px;
}
.cmn-title .sub-title {
  font-size: 0.8rem;
}
.cmn-title .main-title {
  font-size: 1.5rem;
}

/* about */
.about-img {
  text-align: center;
}
@media (min-width: 768px) {
  .about-img {
    margin: 0 40px 0 -25px;
    height: 300px;
  }
}
@media (min-width: 768px) {
  .about-img img {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .about-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 650px;
    margin: 0 auto;
  }
}
.about-wrapper .about-text {
  max-width: 370px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-wrapper .about-text {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 300px;
    max-width: initial;
  }
}
.about-wrapper .about-subtitle {
  font-size: 1.2rem;
  display: inline-block;
  margin: 10px auto;
  padding: 0 10px;
  border-bottom: 1.2px solid #0f0;
}

/* slills */
@media (min-width: 768px) {
  .skills-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
  }
}

.skill-item {
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .skill-item {
    width: 350px;
  }
}

.skill-image:nth-of-type(4) {
  margin-bottom: 19px;
}

/* works */
@media (min-width: 768px) {
  .work-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.work-list {
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .work-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 900px;
    margin: 0 auto 30px;
    gap: 0 30px;
  }
}
.work-item .work-text {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .work-img {
    width: 50%;
  }
}
.work-img img {
  width: 100%;
}

@media (min-width: 768px) {
  .work-skill {
    width: 50%;
    line-height: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 266px; /* image heightと一緒*/
  }
}

.work-title {
  width: 6rem;
}

.use-sukills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .work-desc {
    padding-top: 20px;
  }
}

/* contact*/
.contact-text {
  text-align: center;
}
.contact-text .contact-mail {
  font-size: 1.2rem;
  padding: 30px 0;
}

/* footer */
.footer {
  background-color: #41464b;
  padding-top: 25px;
  margin-top: 25px;
}
.footer .footer-nav {
  max-width: 768px;
  margin: 0 auto;
}
.footer .footer-list {
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}
.footer li a {
  color: #eee;
}
.footer .copy {
  margin-top: 30px;
  text-align: center;
  font-size: 0.7rem;
  color: #eeeeee;
}

/* js */
.show {
  background-color: #eeeeee;
  top: 0;
  right: 0;
  transition: 0.5s;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 65%;
}

.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}

.active span:nth-of-type(2) {
  opacity: 0;
}

.active span:nth-of-type(3) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(45deg);
  width: 35%;
}

/*作業実績のスライド*/
@media (min-width: 1024px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 1024px) {
  .pc {
    display: initial;
  }
}

@media (min-width: 768px) {
  .tb {
    display: initial;
  }
}

.skill-image:last-of-type {
  margin-bottom: 19px;
}
/*# sourceMappingURL=style.css.map */