@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,400;1,100;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,400;1,100;1,300&display=swap");
img {
  width: 100%;
}

.en {
  font-family: "Alegreya Sans SC", sans-serif;
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000000;
  top: 0;
  font-size: 100px;
  background: #05051e;
  text-align: center;
  color: #fff;
  display: none;
}
@media screen and (max-width: 768px) {
  #splash{
  font-size: 10vw;
}}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.TextTyping {
  text-align: center;
}

/*========= タイピング ===============*/
.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  -webkit-animation: typinganime 0.8s ease infinite;
          animation: typinganime 0.8s ease infinite;
}

@-webkit-keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-size: 1.7rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333;
}

.header {
  position: fixed;
  top: 0;
  z-index: 10000;
}

/*==================================================
　5-2-2 2本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.gMenu_hum {
  position: fixed;
  /*ボタン内側の基点となるためrelativeを指定*/
  right: 10px;
  top: 10px;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .gMenu_hum {
    width: 50px;
    height: 50px;
  }
}
.gMenu_hum span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 4px;
  background-color: #fff;
}
.gMenu_hum.black span {
  background-color: #333;
}
.gMenu_hum.black.active span {
  background-color: #fff;
}

.gMenu_hum span:nth-of-type(1) {
  top: 22px;
  width: 50%;
}

.gMenu_hum span:nth-of-type(2) {
  top: 35px;
  width: 50%;
}

/*activeクラスが付与されると線が回転して×に*/
.gMenu_hum.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 35%;
}

.gMenu_hum.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.gMenu_content {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, right top, left top, from(#ffb72d), to(#ee592f));
  background: -webkit-linear-gradient(right, #ffb72d, #ee592f);
  background: linear-gradient(to left, #ffb72d, #ee592f);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.gMenu_content.active {
  right: 0;
}

.gMenu_lists {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.gMenu_lists a {
  display: inline-block;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
  transition: 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s;
}
.gMenu_lists.active a {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.gMenu_lists li {
  overflow: hidden;
  color: #fff;
  font-size: 96px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gMenu_lists li {
    font-size: 10vw;
  }
}

.mv {
  background-color: #000023;
  height: 100vh;
  position: relative;
}
.mv_img {
  background-image: url(../image/mv.jpg);
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 auto;
}
.mv_text {
  font-size: 100px;
  position: absolute;
  top: 40%;
  -webkit-transform: translate3d(0, -40%, 0);
          transform: translate3d(0, -40%, 0);
  font-weight: bold;
  margin-left: 10%;
  color: #fff;
  border-bottom: 7px solid #ffb72d;
}
@media screen and (max-width: 768px) {
  .mv_text {
    font-size: 10vw;
  }
}

.scrolldown {
  position: absolute;
  bottom: 10px;
  left: 10%;
}
.scrolldown_text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  left: 10px;
  bottom: 5px;
  color: #eee;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #eee;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-out infinite;
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #eee;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes circlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes circlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.container {
  margin-top: 20rem;
}
@media screen and (max-width: 768px) {
  .container {
    margin-top: 10rem;
  }
}

.contentNumber {
  font-size: 5rem;
  font-weight: bold;
  padding-left: 8rem;
  color: #ee592f;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .contentNumber {
    font-size: 3rem;
    padding-left: 4rem;
  }
}
.contentNumber::after {
  content: "";
  width: 7rem;
  height: 5px;
  background: #ffb72d;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contentNumber::after {
    width: 3rem;
  }
}

.textWrap {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .textWrap {
    display: block;
  }
}
.textWrap_title {
  font-size: 5rem;
  font-weight: bold;
}
@media screen and (max-width: 1450px) {
  .textWrap_title {
    padding-left: 150px;
  }
}
@media screen and (max-width: 768px) {
  .textWrap_title {
    font-size: 3rem;
    padding-left: 8rem;
  }
}
.textWrap_content {
  width: 48%;
  padding-right: 2%;
}
@media screen and (max-width: 768px) {
  .textWrap_content {
    width: 100%;
    padding: 0 2%;
    margin-top: 40px;
  }
}

.profile_name {
  margin-bottom: 2rem;
}
.profile_jName {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.profile_enName {
  font-size: 1.4rem;
}
.profile_desc {
  line-height: 1.7;
}
.profile_image {
  margin-top: 2rem;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-top: 100px;
  padding: 0 2%;
}
@media screen and (max-width: 768px) {
  .wrapper {
    margin-top: 40px;
  }
}

.works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.works_list {
  width: 33.3333333333%;
  position: relative;
  overflow: hidden;
  -webkit-transition: 1s all;
  transition: 1s all;
}
@media screen and (max-width: 768px) {
  .works_list {
    width: 100%;
  }
  .works_list + .works_list {
    border-top: 1px solid #a7a7a7;
  }
}
.works_list.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.works_list a:hover .works_mask {
  top: 0%;
  opacity: 1;
}
.works_mask {
  opacity: 0;
  -webkit-transition: 0.7s all ease;
  transition: 0.7s all ease;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  padding: 10%;
  background-color: rgba(51, 51, 51, 0.7);
  color: #fff;
  line-height: 1.7;
}
.works_btnBox {
  margin-top: 2rem;
}

.moreBtn {
  padding: 5px 15px;
  background-color: #ee592f;
  color: #fff;
  border-radius: 7px;
  border: 2px solid #ee592f;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.moreBtn:hover {
  background-color: #fff;
  color: #ee592f;
}

.cat {
  font-size: 1.2rem;
  color: #fff;
  background-color: #333;
  padding: 5px 10px;
  border-radius: 5px;
}
.cat_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  top: 5px;
  left: 5px;
}
.cat.-wp {
  background-color: #2d46ff;
}
.cat.-design {
  background-color: #ffb72d;
}
.cat.-cording {
  background-color: #ee592f;
}
.cat.-personal {
  background-color: #3ba820;
}
.cat + .cat {
  margin-left: 5px;
}

.skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* スキルの熟練度（パーセンテージ） */
  /* スキルバーの親要素 */
  /* スキルバー本体 */
}
@media screen and (max-width: 768px) {
  .skills {
    display: block;
  }
}
.skills_list {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .skills_list {
    width: 100%;
  }
}
.skills_list:nth-child(even) {
  margin-left: 5%;
}
@media screen and (max-width: 768px) {
  .skills_list:nth-child(even) {
    margin-left: 0;
  }
}
.skills_img {
  margin-right: 10px;
  width: 36px;
}
.skills_content {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.skills_contents {
  width: calc(100% - 36px);
}
.skills_per {
  opacity: 0;
  /* 初期状態では透明に */
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.skills_barBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
  border-radius: 25px;
  height: 15px;
  /* スキルバーの高さ */
  background-color: #f3f3f3;
  /* スキルバーの背景色 */
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 5px 0px #dddddd;
          box-shadow: 0px 5px 5px 0px #dddddd;
}
.skills_bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  /* 初期状態では0 */
  border-radius: 25px;
  background: -webkit-gradient(linear, right top, left top, from(#ffb72d), to(#ee592f));
  background: -webkit-linear-gradient(right, #ffb72d, #ee592f);
  background: linear-gradient(to left, #ffb72d, #ee592f);
  -webkit-transition: width 3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: width 3s cubic-bezier(0.22, 1, 0.36, 1);
  /* スキルバーが伸びる速度を調整 */
}

.aboutMe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .aboutMe {
    display: block;
  }
}
.aboutMe_text {
  width: 50%;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .aboutMe_text {
    width: 100%;
  }
}
.aboutMe_img {
  margin-left: 5%;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .aboutMe_img {
    width: 100%;
    margin: 2rem 0 0 0;
  }
}

.footer {
  background-color: #ffb72d;
  padding: 20px 0;
  margin-top: 100px;
}
.footer_textBox {
  width: 100%;
  max-width: 1200px;
  padding: 0 2%;
  margin: auto;
}

.contact_title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact_box {
  margin-bottom: 20px;
}
.contact_box input, .contact_box textarea {
  padding: 10px;
  width: 100%;
  max-width: 500px;
  border: 2px solid #333;
  border-radius: 5px;
}
.contact_btn input {
  background-color: #ee592f;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border: 2px solid #ee592f;
  color: #fff;
  border-radius: 7px;
  padding: 5px 15px;
}
.contact_btn input:hover {
  background-color: #fff;
  color: #ee592f;
}
.grecaptcha-badge { visibility: hidden; }

.recapcha{
  margin-top: 20px;
}
