@charset "utf-8";
/* CSS Document */
/*--------------------------------
 レイアウト
---------------------------------*/
.section {
  position: relative;
  display: block;
  padding: 20px 0px 70px;
  margin: 0 auto;
  width: 100%;
}
.container {
  position: relative;
  max-width: 1340px;
  margin: 50px 7%;
  padding: 60px 0;
  opacity: 0;
  border-radius: 10px;
  backdrop-filter: blur(20px);
  background-color: rgba(245, 245, 245, 0.419);
  box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 8px;
  border: 1px rgba(255, 255, 255, 0.4) solid;
  border-bottom: 2px rgba(40, 40, 40, 0.35) solid;
  border-right: 2px rgba(40, 40, 40, 0.35) solid;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 0.85;
    transform: translateY(0);
  }
}
/*--------------------------------
 見出し
---------------------------------*/
.title {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: .05em;
}
.lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    font-size: 1.4rem;
    overflow: hidden;
  }
  /* 見出し */
  .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .lead {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  /* レイアウト */
  .section {
    width: 100%;
    padding: 0;
  }
  .container {
    padding: 30px 0;
  }
}
/*-------------
header
---------------*/
.header-logo {
  display: none;
}
.gnav {
  display: none;
}
.gnav__pc {
  position: absolute;
  right: 15%;
  top: 25%;
}
.gnav-list__pc {
  display: flex;
  list-style: none;
  text-align: left;
}
.gnav-item__pc a {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  display: inline-block;
  transition: .3s;
  letter-spacing: .1em;
  line-height: 2.4rem;
  text-align: start;
  border-left: solid 4px #A4A4A4;
}
.gnav-item__pc:nth-child(1) {
  padding: 5px 0;
}
.gnav-item__pc:nth-child(2) {
  padding: 40px 0;
}
.gnav-item__pc:nth-child(3) {
  padding: 75px 0;
}
.gnav-item__pc:nth-child(4) {
  padding: 110px 0;
}
.gnav-item__pc a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content: "";
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A4A4A4;
}
.gnav-item__pc a:hover:after {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .gnav__pc {
    right: 10%;
    top: 20%;
  }
}
@media screen and (max-width: 960px) {
  /* ヘッダー */
  .header-logo {
    display: flex;
    font-size: 1.8rem;
    position: absolute;
    left: 6%;
    top: 40px;
  }
  /*ボタン外側*/
  .openbtn {
    position: absolute;
    right: 6%;
    top: 23px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    opacity: 0.7;
    z-index: 999999;
  }
  /*ボタン内側*/
  .openbtn .openbtn-area {
    transition: all .6s;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #717171;
    opacity: 0.8;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
  .openbtn.active .openbtn-area {
    transform: rotate(360deg);
    position: fixed;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  /*アクティブになったエリア*/
  .gnav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s; /*0.6秒かけてアニメーション*/
    overflow: hidden;
  }
  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }
  .gnav-item a {
    display: none;
  }
  .gnav-item a:after {
    display: none;
  }
  /*ナビゲーション*/
  .gnav {
    display: block;
  }
  .gnav ul {
    display: none; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /*背景が出現後にナビゲーションを表示*/
  .gnav.panelactive ul {
    display: block;
    height: 100vh;
    overflow: hidden;
    padding-top: 40%;
  }
  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  .gnav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s; /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
  }
  .gnav li {
    text-align: center;
    list-style: none;
  }
  .gnav-item a {
    color: #a8c2ee;
    font-size: 2.0rem;
    text-decoration: none;
    padding: 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .gnav__pc {
    display: none;
  }
}
/*ハンバーガーメニューののこり*/
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
  display: flex;
  height: 70vh;
  margin-bottom: 20px;
}
.mv-container {
  padding: 27% 0 0 10%;
}
.mv-title {
  font-size: 8.0rem;
  font-weight: 600;
  line-height: 8.0rem;
  margin-bottom: 10px;
  letter-spacing: .1em;
  font-family: 'Oswald', sans-serif;
  text-align: start;
}
.mv-subtitle {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: .08em;
  text-align: start;
}
.mv-header-logo {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  text-align: start;
}
.mv-text {
  font-size: 1.6rem;
  line-height: 1.8;
}
/*  メインビジュアル mb */
@media screen and (max-width: 767px) {
  .mv {
    height: 65vh;
    margin: 0;
  }
  .mv-container {
    padding: 35% 0 0 8%;
  }
  .mv-title {
    font-size: 3.6rem;
  }
  .mv-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .mv-text {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 1200px) {
  .mv-container {
    padding: 35% 0 0 10%;
  }
}
@media screen and (max-width: 960px) {
  /* ヘッダー */
  .mv-header-logo {
    display: none;
  }
}
/*--------------------------------
 Works
---------------------------------*/
.works-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 40px;
  margin-bottom: -40px;
}
.works-item {
  width: 31.74603%;
  margin-right: 1.58730%;
  margin-bottom: 40px;
}
.works-item:nth-of-type(3n) {
  margin-right: 0;
}
.works-img img {
  width: 100%;
  transition-duration: 0.5s;
}
.works-img img:hover {
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 0.9;
}
.works-name {
  font-size: 12px;
  font-weight: bold;
  margin-top: 8px;
}
.works-info {
  font-size: 10px;
  margin-top: 5px;
}
/*--------------------------------
 Skill
---------------------------------*/
.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
  padding: 0 40px;
}
.skill-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 48%;
  margin-bottom: 50px;
}
.skill-img {
  width: 60px;
  height: auto;
  margin-right: 20px;
}
.skill-img__large {
  width: 90%;
}
.skill-body {
  flex: 1;
}
.skill-name {
  margin-bottom: 10px;
}
.skill-text {
  font-size: 14px;
  line-height: 1.8;
}
/*--------------------------------
 About
---------------------------------*/
.profile {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.profile-img {
  width: 50%;
  margin-right: 30px;
  border-radius: 50%;
}
.profile-img img {
  border-radius: 50%;
  width: 65%;
}
.profile-body {
  flex: 1;
}
.profile-body p {
  font-size: 15px;
  line-height: 1.8;
}
.profile-body p:not(:last-child) {
  margin-bottom: 30px;
}
/*--------------------------------
 Contact
---------------------------------*/
.contact {
  text-align: center;
}
.contact-list {
  position: relative;
  display: block;
  padding: 10px;
}
.contact-item {
  display: block;
  padding-top: 10px;
}
.contact-item__mail {
  display: block;
  background: #36476C;
  border-radius: 50%;
  line-height: 75px;
  width: 75px;
  height: 75px;
  padding: 5px;
  opacity: 0.7;
  margin: 0 auto;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.contact-item__mail i {
  padding: 10px;
  color: #ffffff;
  transition-duration: 0.5s;
}
.contact-item__mail i:hover {
  transform: rotateY(360deg);
  transition-duration: 0.5s;
}
.contact-item:first-of-type {
  padding-top: 20px;
}
.contact-text {
  margin-top: 10px;
}
/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  /* Works */
  .works-name {
    font-size: 1.4rem;
  }
  .works-info {
    margin-top: 3px;
  }
  .works-list {
    display: block;
  }
  .works-item {
    position: relative;
    display: block;
    padding: 40px 0;
    margin: 0 auto;
    width: 100%;
  }
  .works-img img {
    width: 100%;
  }
  /* Skill */
  .skill-list {
    display: block;
    margin-bottom: 0;
  }
  .skill-item {
    width: 100%;
    margin-bottom: 35px;
  }
  .skill-item:last-child {
    margin-bottom: 0;
  }
  .skill-name {
    margin-bottom: 5px;
  }
  .skill-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  /* About */
  .profile {
    display: block;
  }
  .profile-img {
    width: 150px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
  .profile-body p {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .profile-body p:not(:last-child) {
    margin-bottom: 20px;
  }
}