@charset "UTF-8";
/*-----------------
# mixins
------------------*/
/*-----------------
# colors
------------------*/
/*-ベースカラー-*/
/*-フォントカラー-*/
/*-ボタンカラー-*/
/*-アクセントカラー-*/
/*-----------------
# common - 全体に共通するスタイル
------------------*/
/*-----------------
# font
------------------*/
body {
  color: #333;
  font-family: "Garamond Premier Pro", "小塚ゴシック Pr6N", serif;
}

/*-----------------
# common - 全体に共通するスタイル
------------------*/
.btn {
  padding: 20px 60px;
  display: inline-block;
  background: #f092aa;
  color: #2b8083;
  font-weight: 600;
  border-radius: 40px;
  border: solid 2px #2b8083;
  transition: color 0.4s;
}
.btn:hover {
  background: #2b8083;
  color: #fff;
}

.head {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .head {
    font-size: 24px;
  }
}

/*-----------------
# header------------------------------------
------------------*/
.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.header {
  background: #f092aa;
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header__logo {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  transition: color 0.4s;
}
.header__logo:hover {
  color: #92edf0;
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 16px;
  }
}

.header__nav {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav li {
  transition: color 0.4s;
}
.header__nav li:not(:first-child) {
  margin-left: 40px;
}
.header__nav li:hover {
  color: #92edf0;
}

/*-----------------
# drawer__icon------------------------------------
------------------*/
.drawer__icon {
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active {
  transform: translateX(-200px);
}
.drawer__icon.is-active .drawer__icon-bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}
.drawer__icon.is-active .drawer__icon-bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer__icon-bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer__icon-bar1 {
  top: 0;
}

.drawer__icon-bar2 {
  top: 8px;
}

.drawer__icon-bar3 {
  top: 16px;
}

/*-----------------
# drawer__content------------------------------------
------------------*/
.drawer__content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer__content.is-active {
  transform: translateX(0);
}

.drawer__content-item {
  border-bottom: 1px solid #707070;
}
.drawer__content-item a {
  display: block;
  padding: 18px 20px;
}

/*-----------------
# drawer__background------------------------------------
------------------*/
.drawer__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer__background.is-active {
  display: block;
}

/*-----------------
# footer------------------------------------
------------------*/
.footer__img {
  background: url(../img/contact_footer.png) no-repeat center center/cover;
  height: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__img {
    background: url(../img/sp_img/sp_contact.png) no-repeat center center/cover;
    height: 300px;
    width: 100%;
  }
}

.copyright {
  background: #f092aa;
  font-size: 10px;
  text-align: center;
  color: #797979;
}

/*-----------------
# to-top------------------------------------
------------------*/
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 12px;
    bottom: 12px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a img {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .to-top a img {
    width: 60px;
  }
}

/*-----------------
# main-visual------------------------------------
------------------*/
.main-visual {
  height: 600px;
  width: 100%;
  background: url(../img/mv.png) no-repeat center center/cover;
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .main-visual {
    margin-top: 60px;
    background: url(../img/sp_img/sp_mv.png) no-repeat center center/cover;
  }
}

.main-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.main-visual__title {
  font-size: 48px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .main-visual__title {
    font-size: 30px;
  }
}

.main-visual__lead {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .main-visual__lead {
    font-size: 18px;
  }
}

/*-----------------
# profile------------------------------------
------------------*/
.profile {
  background: #fff;
  padding: 100px 0 150px;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 60px 0 100px;
  }
}

.profile__icon_img {
  width: 120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .profile__icon_img {
    width: 80px;
  }
}

.profile__items {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  flex-wrap: wrap;
}

.profile__img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .profile__img {
    width: 90%;
    margin: 0 auto;
  }
}
.profile__img img {
  border-radius: 50% 20%/10% 40%;
}

.profile__text-items {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .profile__text-items {
    width: 90%;
    margin: 0 auto;
    padding-top: 30px;
  }
}

.profile__name {
  font-size: 20px;
  font-weight: 600;
}

.profile__text {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .profile__text {
    padding-top: 30px;
  }
}

.profile-more {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.4s;
}

/*-----------------
# works------------------------------------
------------------*/
.works {
  background: #fff;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .works {
    padding-bottom: 100px;
  }
}

.works__icon_img {
  width: 120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .works__icon_img {
    width: 80px;
  }
}

.works__card-items {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .works__card-item {
    width: calc(33.3% - 16px);
  }
  .works__card-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .works__card-item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .works__card-item {
    width: 90%;
    margin-left: 0;
    margin: 0 auto;
  }
  .works__card-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.warks__card-title {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.warks__card-text {
  font-size: 10px;
}

.works-more {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  cursor: pointer;
  transition: 0.4s;
}

/*-----------------
# contact------------------------------------
------------------*/
.contact {
  background: #fcecee;
}

.contact__head {
  padding-top: 30px;
}

.contact__text {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 16px;
  }
}

.contact__email {
  text-align: center;
  padding-top: 30px;
  font-size: 18px;
}

/*-----------------
# profile-visual------------------------------------
------------------*/
.profile-visual {
  height: 300px;
  width: 100%;
  background: url(../img/top.img.png) no-repeat center center/cover;
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .profile-visual {
    margin-top: 60px;
    background: url(../img/sp_img/sp_top.png) no-repeat center center/cover;
  }
}

.profile-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.profile-visual__title {
  font-size: 48px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .profile-visual__title {
    font-size: 30px;
  }
}

/*-----------------
# profile------------------------------------
------------------*/
.profile {
  background: #fff;
  padding: 100px 0 150px;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 60px 0 100px;
  }
}

.profile__items {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  flex-wrap: wrap;
}

.profile__img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .profile__img {
    width: 90%;
    margin: 0 auto;
  }
}
.profile__img img {
  border-radius: 50% 20%/10% 40%;
}

.profile__text-items {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .profile__text-items {
    width: 90%;
    margin: 0 auto;
    padding-top: 30px;
  }
}

.profile__name {
  font-size: 20px;
  font-weight: 600;
}

.profile__age {
  padding-top: 4px;
}

.profile__text {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .profile__text {
    padding-top: 30px;
  }
}

/*-----------------
# introduction------------------------------------
------------------*/
.introduction {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .introduction {
    padding-bottom: 100px;
  }
}

.introduction__item:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .introduction__item {
    width: 90%;
    margin: 0 auto;
  }
}

.introduction__item-titles {
  display: flex;
  justify-content: center;
}
.introduction__item-titles img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .introduction__item-titles img {
    width: 40px;
  }
}

.introduction__item-title {
  padding-top: 20px;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .introduction__item-title {
    font-size: 16px;
  }
}

.introduction__item-text {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .introduction__item-text {
    font-size: 14px;
  }
}

/*-----------------
# skills------------------------------------
------------------*/
.skills {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .skills {
    padding-bottom: 100px;
  }
}

.skills__icon_img {
  width: 120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .skills__icon_img {
    width: 80px;
  }
}

.skills__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}

.skills__item {
  display: flex;
  width: 48%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .skills__item {
    width: 90%;
    padding-bottom: 50px;
    margin: 0 auto;
  }
}

.skills__img {
  margin-right: 20px;
}

.skills__text {
  font-size: 14px;
}

/*-----------------
# challenge------------------------------------
------------------*/
.challenge {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .challenge {
    padding-bottom: 100px;
  }
}

.challenge__item-titles {
  display: flex;
  justify-content: center;
}
.challenge__item-titles img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .challenge__item-titles img {
    width: 40px;
  }
}

@media screen and (max-width: 767px) {
  .challenge__item {
    width: 90%;
    margin: 0 auto;
  }
}

.challenge__item-title {
  padding-top: 20px;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .challenge__item-title {
    font-size: 16px;
  }
}

.challenge__item-text {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .challenge__item-text {
    font-size: 14px;
  }
}

/*-----------------
# works-visual------------------------------------
------------------*/
.works-visual {
  height: 300px;
  width: 100%;
  background: url(../img/top.img.png) no-repeat center center/cover;
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .works-visual {
    margin-top: 60px;
    background: url(../img/sp_img/sp_top.png) no-repeat center center/cover;
  }
}

.works-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.works-visual__title {
  font-size: 48px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .works-visual__title {
    font-size: 30px;
  }
}

/*-----------------
# works------------------------------------
------------------*/
.works {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .works {
    padding-bottom: 100px;
  }
}

.works__icon_img {
  width: 120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .works__icon_img {
    width: 80px;
  }
}

.works__card-items {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .works__card-item {
    width: calc(33.3% - 16px);
  }
  .works__card-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .works__card-item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .works__card-item {
    width: 90%;
    margin-left: 0;
    margin: 0 auto;
  }
  .works__card-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.warks__card-title {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.warks__card-text {
  font-size: 10px;
}

/*-----------------
# work------------------------------------
------------------*/
.work {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .work {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.work__img {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .work__img {
    padding-bottom: 40px;
  }
}
.work__img img {
  width: 1000px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .work__img img {
    width: 90%;
  }
}

.work__title {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .work__title {
    font-size: 20px;
  }
}

.work__site-link {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .work__site-link {
    font-size: 14px;
  }
}
.work__site-link:hover {
  opacity: 0.6;
}

/*-----------------
# work__body------------------------------------
------------------*/
.work__item {
  padding-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .work__item {
    width: 90%;
    margin: 0 auto;
  }
}

.work__item-titles {
  display: flex;
  justify-content: center;
}
.work__item-titles img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .work__item-titles img {
    width: 40px;
  }
}

.work__item-title {
  font-size: 24px;
  padding-top: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .work__item-title {
    font-size: 20px;
  }
}

.work__item-text {
  padding-top: 40px;
}

.work__item-categorys {
  padding-top: 20px;
}

.work__item-category {
  display: flex;
  padding-top: 10px;
  line-height: 16px;
  justify-content: center;
}

.work__item-category-text {
  font-size: 14px;
}

/*-----------------
# work__bodyのcolor------------------------------------
------------------*/
.work__item-img {
  padding-top: 30px;
  text-align: center;
}
.work__item-img img {
  width: 800px;
  max-width: 100%;
  height: 250px;
  max-height: 100%;
}

/*-----------------
# work__bodyのpoint------------------------------------
------------------*/
.work__item-categorys-point {
  padding-top: 40px;
}

.work__item-category-point:not(:first-child) {
  padding-top: 30px;
}/*# sourceMappingURL=style.css.map */