body {
  font-family:'Fira Mono', 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%; 
  color: #404040;
  overflow-x: hidden; 
}

/*--------------------------------*/
/*    Loading                     */
/*--------------------------------*/
#splash {
  /*fixedで全面に固定*/
	position: fixed;
	z-index: 99999;
	width: 100%;
	height: 100%;
	background:#65BBE9;
	text-align:center;
	color:#FFFFFF;
}

/*--------------------------------*/
/*    ローディングアニメ           */
/*--------------------------------*/
.loader {
  position:fixed;           /* ① スクロールしても固定 */
  width: 50px;              /* ④ エリア範囲幅 */
  height: 50px;             /* ⑤ エリア範囲高 */
  text-align: center;     /* ⑥ エリア内中央 */
  z-index: 999;             /* ⑦ 重なり一番上 */
}

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; }
}

.ball-scale-ripple-multiple {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
  .ball-scale-ripple-multiple > div:nth-child(0) {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }
  .ball-scale-ripple-multiple > div:nth-child(1) {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; }
  .ball-scale-ripple-multiple > div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
  .ball-scale-ripple-multiple > div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .ball-scale-ripple-multiple > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid #FFFFFF;
    -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
            animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); 
  }
/*--------------------------------*/
/*    ローディングアニメ（ここまで） */
/*--------------------------------*/

a {
  text-decoration: none;
  color: inherit;
}
.all-wrapper {
  overflow-x: hidden;
}
.container {
  width: 100%;
  margin: 0 auto;
}
.top-wrapper {
  background-image: url(../images/img_main_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;  
  height: 800px;
}
h1 {
  color: #FFFFFF;
  font-size: 60px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 80px;
  padding-top: 200px;
  text-align: center;
  text-indent: 0.05em;
}
header {
  display: flex;
  overflow: hidden;
}
header.on {
  height: 100%;
}
header .container {
  background-color: rgba(256, 256, 256, 0.6);
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.container li {
  list-style: none;
  padding-top: 25px;
  padding-right: 60px;
  font-size: 18px;
  transition:all 0.3s;
}
#g-nav {
  display: none;
}
.container h2 {
  display: inline-block;
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 0.05em;
  padding-top: 130px;
  padding-left: 150px;
 }
.fadeUp {
   /* ふわっ */
   animation-name:fadeUpAnime;
   animation-duration:2.0s;
   animation-fill-mode:forwards;
   opacity:0;
 }
 /* ふわっ */
 @keyframes fadeUpAnime{
   from {
     opacity: 0;
     transform: translateY(100px);
   }
   to {
     opacity: 1;
	   transform: translateY(0);
   }
}
.fadeUpTrigger {
  opacity: 0;
}

h3 {
  display: inline-block;
  padding-left: 10px; 
}
h4 {
  font-size: 30px;
  padding-top: 130px;
  text-align: center;
}

#gnavi ul {
	list-style: none;
	display: flex;
	justify-content: right;
  margin: 0 0 0 5%;
}

#gnavi li a{
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

#gnavi li.current a,
#gnavi li a:hover{
  color:#0481A2;
}

#gnavi li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background:#0481A2;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
#gnavi li.current a::after,
#gnavi li a:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}


/*----------------------------
      scrollの矢印表示
  ----------------------------*/
.scrollDown {
  /*描画位置*/
	position: absolute;
	bottom: 1%;
	right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
  0%{bottom: 1%;}
  50%{bottom: 3%;}
  100%{bottom: 1%;}
}
/*Scrollテキストの描写*/
.scrollDown span{
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #FFFFFF;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrollDown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #FFFFFF;
  transform: skewX(-31deg);
}
.scrollDown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 70px;
  background: #FFFFFF;
}

.concept-wrapper {
  background-color: #a2dfef;
}
.concepts {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 160px;
}
.concept {
  display: flex;
  align-items: center;
  padding-right: 30px;
  padding-bottom: 30px;
}
.circle {
  position: relative;
  display: inline-block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #FFFFFF;
}
.circle span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 180px;
  text-align: center;
  line-height: 1.5em;
}
.concept-txt {
  display: inline-block;

  width: 200px;
  color: #7d7d7d;
}

.work-wrapper {
  height: 750px;
  background-color: #FFFFFF;
}

.about-wrapper {
  height: 750px;
  background-color: #a2dfef;
}

.profile {
  display: grid;
  grid-template-rows: 50px 100px;
  grid-template-columns: 250px 350px;
  margin-top: 100px;
  justify-content: center;
}
.img_self {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.img_self_png {
  width: 150px;
  height: 150px;
}
.my_name {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  font-size: 25px;
}
.prof_detail {
  padding-top: 20px;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.btn {
  text-align: center;
  margin-top: 80px;
}
.btnSkill {
  position: relative;
  padding: 20px 50px;
  background-color: #FFFFFF;
  font-size: 18px;
  border-radius: 29px;
}
.btnSkill::after {
  content: '';
  position: absolute;  
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
  border-top: 2px solid #404040;
  border-right: 2px solid #404040;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}
.contact-wrapper {
  height: 750px;
  background-color: #b8e89d;
}
form {
  width: 500px;
  margin: 0 auto;
  margin-top: 50px;
}
input[type="text"],
input[type="email"],
textarea {
  border: none;
  background-color: #FFFFFF;
  width: 100%;
  margin-top: 5px;
  padding: 4px 8px;
}
form p {
  margin-bottom: 20px;
}
input[type="text"],
input[type="email"] {
  height: 24px;
}
textarea {
  height: 150px;
}
input[type="submit"] {
  border: none;
  height: 58px;
  width: 200px;
  margin-top: 15px;
  background-color: #FFFFFF;
  font-family: 'Fira Mono', sans-serif;
  font-size: 15px;
  border-radius: 29px;
}
.btnSubmit {
  color: #404040;
  text-align: center;
}
footer {
  height: 40px;  
  padding-top: 10px;
}
footer p {
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 640px) { 
  body {
    overflow-x: hidden;
    font-size: 16px;
  }
  .container, form {
    width: 100%;
  }
  h1 {
    font-size: 45px;
    letter-spacing: 0.01em;
    text-indent: 0.01em;
  }
  .container li {
    display: none;
  }
  .container h2 {
    display: block;
    font-size: 36px;
    padding-top: 90px;
    text-align: center;
    padding-left: 0;
  }
  h3 {
    display: block;
    text-align: center;
    padding-top: 10px;
    padding-left: 0;
  }
  .profile, ui {
    display: block;
    text-align: center;
  }
  .profile {
    margin-top: 50px;
  }
  .my_name {
    font-size: 25px;
    margin-top: 30px;
  }
  .prof_detail {
    margin-top: 20px;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    width: 95%;
  }
  form p {
    margin-left: 15px;
  }
  
  /*----------------------------
      ハンバーガーメニュー
    ----------------------------*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 20px;
    height: 3px;
    border-radius: 2px;
	  background: #707070;
  	width: 50px;
    z-index: 9999;
    cursor: pointer;
  }
  .openbtn span:nth-of-type(1) {
    top:20px;	
  }
  .openbtn span:nth-of-type(2) {
    top:35px;
  }
  .openbtn span:nth-of-type(3) {
    top:50px;
  } 
  /*activeクラスが付与されると1・3番目の要素が2番目の要素と同じ位置になり一本線に*/  
  .openbtn.active span:nth-of-type(1) ,
  .openbtn.active span:nth-of-type(3) {
      top: 35px;
  }
  
  /*----------------------------
      メニュー子画面
    ----------------------------*/
  #g-nav{
    display: block;
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	  top: 0;
    left: -120%;
	  width: 100%;
    height: 100vh;/*ナビの高さ*/
	  background:#FFFFFF;
    /*動き*/
	  transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive{
    left: 0;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  /*リストのレイアウト設定*/
  #g-nav li{
    text-align: center; 
  }
  #g-nav li a{
    font-size: 35px;
	  color: #404040;
	  text-decoration: none;
    letter-spacing: 0.1em;
    display: block;
	  padding: 10px;  	
  }
}
