@charset "UTF-8";


body {
    font-family: "Lato","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: #727171;
    overflow-x: hidden;
  }
  
  a {
    transition: opacity 0.3s;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border-style: none;
  }
  
  ul,
  li {
    list-style: none;
  }
  
  .pc-only {
    display: none;
  }
  
  .sp-only {
    display: block;
  }

/*レイアウト*/
.section {
    padding: 40px 0;
  }
  
.inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
}

/*見出し*/
.title-area{
    text-align: center;
    margin-bottom: 20px;
}

.title-area__title {
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 0.07em;
    color: #D6909D;
  }

  .title-area__subtitle{
    font-size: 13px;
  }

/*ヘッダー*/
.header {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
  }
  
  .header-logo {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  
  .header-logo a {
    color: #727171;
  }
  
 /*ハンバーガーメニュー*/
 .hamburger__btn{
  position: fixed;
  top: 10px;
  right: 20px;
  width: 35px;
  height: 35px;
  background-color: #dfcaca;
  z-index: 200;
}

.hamburger__line{
  display: block;
  position: relative;
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.hamburger__line::before,
.hamburger__line::after{
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.hamburger__line::before{
  top: 10px;
}

.hamburger__line::after{
  bottom: 10px;
}

.hamburger__input.active .hamburger__line{
  top: 50%;
  transform:rotate(45deg);
}

.hamburger__input.active .hamburger__line::before{
  opacity: 0;
}

.hamburger__input.active .hamburger__line::after{
  top: 50%;
  transform: rotate(-45deg);

}

.gnav{
  position: fixed;
  width: 200px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #dfcaca;
  transform: translateX(100%);
}

.gnav.active{
  transform: translateX(0);
}


.gnav__list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
  padding-left: 30px;
}

.gnav__item:first-child{
  margin-top:30px;
}

.gnav__link{
  color:#fff;
}

/*メインビジュアル*/
.main-visual{
    margin-bottom: 40px;
}

.main-visual-img{
    height: 700px;
}

/*Profile*/
.profile-title {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    color: #737d6d;
  }
  
  .profile-text {
    font-size: max(1.0vw, 15px);
    margin: 0 auto;
  }

  /*works*/
  .works-list{
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    justify-content: space-between;
  }

  .works-item{
    width: calc((100% - 20px -20px) / 2);
    text-align: center;
  }

  .works-item:hover{
    opacity: 0.8;
  }

  .works-img img {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 0 2px #727171;
  }
  
  .works-name {
    font-size: 12px;
    font-weight: bold;
    margin-top: 8px;
  }
  
  .works-info {
    font-size: 10px;
  }

/*fadeIn*/
#js-fadeIn{
  opacity: 0;
transform: translateY(30px);
transition: opacity 1.5s, transform 1s;
}

#js-fadeIn.active {
opacity: 1;
transform: translateY(0px);
}

  /*skill*/
.skill-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap:20px;
}

.skill-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.skill-img{
  width: 100%;
  height:auto;
  margin-right: 20px;
}

.skill-img img{
  border-radius: 50%;
}

.skill-name{
  font-size: max(3.0vw, 15px);
  font-weight: bold;
}

.skill-text{
  font-size: max(2.0vw, 10px);
}

  /*contact form*/
  .contact__form{
    border: solid 3px #F2DBE1;
    box-shadow: 0 0 8px 0 #F2DBE1;
    border-radius: 8px;
    margin-bottom: 40px;
    padding: 30px 20px 10px;
}

.form__title{
  display:block;
  position: relative;
  font-size: 12px;
  color:#727171;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.form__title::after{
  position: absolute;
  content: '*必須';
  font-size: 10px;
  left: 65px;
  bottom: 0;
  color:#D6909D;
}

.form__title2{
  display:block;
  position: relative;
  font-size: 12px;
  color:#727171;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.form__title2::after{
  position: absolute;
  content: '*任意';
  font-size: 10px;
  left: 65px;
  bottom: 0;
  color:#8ca6d1;
}

.form__item:not(:last-child){
    margin-bottom: 20px;
}

.form__input,
.form__textArea{
    color:#727171;
    border: solid 1px #727171;
    border-radius: 10px;
    padding: 5px;
    width: 50%;
}

.form__textArea{
    width: 80%;
    min-width: 200px;
    min-height: 70px;
    padding: 10px;
    resize: none;
    color:#727171;
}


.btn{
    display:block;
    background-color: #F2DBE1;
    box-shadow: 1px 2px 3px rgb(0, 0, 0, 0.16);
    border:solid 3px #F2DBE1;
    border-radius: 10px;
    padding: 5px;
    font-size: 14px;
    line-height: 1.2;
    margin: 0 auto;
    color:#727171;
}

.btn:hover{
    transform: translate3d(1px, 3px, 6px);
    box-shadow: none;
}

.form__btn{
    margin-bottom: 30px;
}

/*page-top*/
.page-top{
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index:10;
}

.page-top__link{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-decoration: none;
  box-shadow: 0 0 2px 0 #707070;
}

.page-top__icon{
  font-size: 20px;
}

/*footer*/
.footer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: #dfcaca;
}

.copyright{
  color:#5f4040;
}

