@charset "utf-8";
.pc_hidden_t{
  display: none;
}

.about_flex {
  display: flex;
  justify-content: center;

}

h3 {
  border-top: 0.1px solid #908d8d;
  border-bottom: 0.1px solid #908d8d;
  font-weight: 400;
}

.me {
  width: 30%;
  margin-right: 10%;
}

#me {
  opacity: 0;
  animation: fadein 3s forwards;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.me_sentence {
  width: 40%;
}

.name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3px;
  margin-top: 50px;
}

.place {
  font-size: 14px;
  margin-bottom: 10px;
}

.about_thin {
  margin-left: 10px;
}

.strength_important {
  justify-content: space-between;
}

.frame {
  padding: 5px 10px;
  border: 0.5px solid #272727;
}
.design_can{
  width: 100%;
  justify-content: space-between;
}
.design_me {
  width: 55%;
  margin-right: 10%;
}
.can{
  width: auto;
}

.about_h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about_p {
  margin-bottom: 30px;
}

.important li {
  width: 30%;
}

.important_theme {
  /* font-weight: 600; */
  margin-bottom: 10px;
}

.likeme{
  width: 100%;
  height: auto;
}
.likeme_div{
  width: 100%;
}
.keyword:not(:last-child),
.important li:not(:last-child) {
  margin-right: 5%;
}

.keyword {
  width: 100%;
  margin-bottom: 40px;
}

.likeme img {
  width: 100%;
}

.keyword_h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;

}
.keyword_span {
  margin-left: 10px;
  font-size: 12px;
}

#footer{
  height: 50vh;
}
#totop{
  right: 2%;
  bottom: 0;
}

/* -------キーワードの画像ホバー------ */
.blur-wrapper {
  background-size: contain;
  position: relative;

  .blur-contents {
    transition: 0.3s ease;
  }

  &:hover .blur-contents {
    filter: blur(0.8px);
    opacity: 0;
  }

  .cover-contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

    .cover-contents p {
      position: absolute;
      top: 0;
      font-weight: 400;
      font-size: 14px;
      margin: 2% 0 0 0;
      color: #272727;
      text-align: left;
      letter-spacing:0.01rem;
    }

  &:hover .cover-contents {
    opacity: 1;
  }

  &:hover {
    background-color: #ffffff;
  }
}

@keyframes fadein {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* 1024px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 1024px) {

  .tablet_hidden{
    display: none;
  }
  .pc_hidden_t{
    display: block;
  }
  #footer{
    height: 20vh;
  }
  
}

/* 767px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 767px) {
  
  .about_flex {
    display: block !important;
    text-align: center;
  }

  #container h2{
    font-size: 24px;
    margin: 100px 0 50px 0;

  }

  #container h3{
    margin-bottom: 50px;
  }
  .me {
    width: 80%;
    margin-right: 0;
  }

  .me_sentence {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }

  .important li {
    width: 100%;
  }

  .design_me {
    width: 100%;
    text-align: left;
  }

  .can {
    text-align: left;
  }

  .keyword {
    width: 100%;
  }

  .blur-wrapper,
  .blur-contents {
    width: 100%;
    height: auto;
  }

  .keyword:not(:last-child),
  .important li:not(:last-child) {
    margin-right: 0;
  }

  .likeme{
    width: 90%;
    margin: auto;
  }
  .likeme img {
    width: 100%;
  }

  .blur-wrapper {
    width: 100%;
    height: 100%;
  } 
    .blur-contents {
      width: 100%;
      height: 100%;
    }


}