@charset "UTF-8";
/* ===================================================================
 CSS Document

 file name  : top.css
 style info : Top Page Style
=================================================================== */

/* ====================
mv
======================= */
.mv {
  text-align: center;
}


/* ====================
about
======================= */
.about {
  background: #f9f9f8;
  padding: 80px 0;
}
.about__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.about__img {
  width: 33%;
}

.about__unit {
  width: 60%;
}

.about__name {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.about__txt {
  margin-bottom: 20px;
}

.about__skill {
  border: solid 1px #ddd;
  padding: 26px;
  margin-top: 40px;
}

.about__skill-ttl {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.about__skill-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #29abe2;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}


/* ====================
works
======================= */
.works__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.works__row::after {
  content: "";
  width: 31.5%;
}

.works__item {
  display: block;
  width: 31.5%;
  margin-bottom: 30px;
}

.works__img {
  margin-bottom: 10px;
}

.works__ttl {
  font-weight: 500;
}


/*-------------------------------------------
SPのみ適用
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* ====================
  about
  ======================= */
  .about__unit {
    width: 100%;
  }
  .about__img {
    width: 100%;
    margin-bottom: 10px;
  }

  /* ====================
  works
  ======================= */
  .works__item {
    width: 100%;
    margin-bottom: 30px;
  }
}