@charset "UTF-8";
/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
	04 Work_style
*/
/*====================================================================
	01 General_style
====================================================================*/
@import url("https://fonts.googleapis.com/css?family=Gudea");
body {
  font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif,"宋体",Gulim;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
}

body.on {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: inherit;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*====================================================================
	02 Common_style
====================================================================*/
/*---------------------------------------------------------
	header
*/
header {
  border-bottom: 1px solid #ccc;
}

header .inner {
  position: relative;
  display: block;
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
  height: 60px;
}

@media screen and (max-width: 768px) {
  header .inner {
    max-width: 100%;
  }
}

header .inner img.logo {
  width: 180px;
  margin-top: 20px;
}

header .inner ul {
  position: absolute;
  top: 0;
  right: 0;
  letter-spacing: -.4em;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 768px) {
  header .inner ul {
    position: fixed;
    top: 60px;
    display: block;
    width: 100%;
    height: 100%;
    right: -100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
  }
  header .inner ul.on {
    right: 0;
  }
}

header .inner ul li {
  display: inline-block;
  letter-spacing: normal;
  margin: 0 0 0 50px;
}

@media screen and (max-width: 768px) {
  header .inner ul li {
    display: block;
  }
}

header .inner ul li a {
  position: relative;
  font-size: 1.08em;
  line-height: 60px;
  letter-spacing: .05em;
  font-family: 'Gudea', sans-serif;
}

header .inner ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translate3d(0, 10px, 0);
  -ms-transform: translate3d(0, 10px, 0);
  -moz-transform: translate3d(0, 10px, 0);
  -o-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

header .inner ul li a:hover:after {
  opacity: 1;
  -webkit-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

@media screen and (max-width: 768px) {
  header .sp_menu {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
  }
  header .sp_menu .sp_menu_inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 20px;
  }
  header .sp_menu .sp_menu_inner span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    background: #222;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  header .sp_menu .sp_menu_inner span:first-child {
    top: 0;
    right: 0;
  }
  header .sp_menu .sp_menu_inner span:nth-child(2) {
    top: 0;
    bottom: 0;
  }
  header .sp_menu .sp_menu_inner span:last-child {
    bottom: 0;
    left: 0;
  }
  header .sp_menu.on .sp_menu_inner span:first-child {
    top: 9px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  header .sp_menu.on .sp_menu_inner span:nth-child(2) {
    opacity: 0;
  }
  header .sp_menu.on .sp_menu_inner span:last-child {
    bottom: 9px;
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    -o-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }
}

/*---------------------------------------------------------
	footer
*/
footer address {
  display: block;
  padding: 50px 0 20px;
  font-style: normal;
  text-align: center;
  font-family: 'Gudea', sans-serif;
}

/*====================================================================
	03 Top_style
====================================================================*/
/*---------------------------------------------------------
	Top
*/
#top .main {
  position: relative;
}

#top .main .ttl_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 20%;
}

@media screen and (max-width: 768px) {
  #top .main .ttl_wrap {
    width: 50%;
  }
}

#top .main .ttl_wrap img {
  margin: 0 auto 20px;
}

#top .main .scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 1s ease-in-out 0s;
  -ms-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
  opacity: 1;
}

#top .main .scroll.none {
  opacity: 0;
}

#top .main .scroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1px;
  background: #222;
  -webkit-animation: scroll_line 2s ease-in-out 0s infinite;
  -moz-animation: scroll_line 2s ease-in-out 0s infinite;
  animation: scroll_line 2s ease-in-out 0s infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes scroll_line {
  0% {
    height: 0;
    -webkit-transform: translate(-50%, -90px);
    -ms-transform: translate(-50%, -90px);
    -moz-transform: translate(-50%, -90px);
    -o-transform: translate(-50%, -90px);
    transform: translate(-50%, -90px);
    opacity: 0;
  }
  50% {
    height: 40px;
    -webkit-transform: translate(-50%, -50px);
    -ms-transform: translate(-50%, -50px);
    -moz-transform: translate(-50%, -50px);
    -o-transform: translate(-50%, -50px);
    transform: translate(-50%, -50px);
    opacity: 1;
  }
  100% {
    height: 0;
    -webkit-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -o-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
    opacity: 1;
  }
}

@-moz-keyframes scroll_line {
  0% {
    height: 0;
    -webkit-transform: translate(-50%, -90px);
    -ms-transform: translate(-50%, -90px);
    -moz-transform: translate(-50%, -90px);
    -o-transform: translate(-50%, -90px);
    transform: translate(-50%, -90px);
    opacity: 0;
  }
  50% {
    height: 40px;
    -webkit-transform: translate(-50%, -50px);
    -ms-transform: translate(-50%, -50px);
    -moz-transform: translate(-50%, -50px);
    -o-transform: translate(-50%, -50px);
    transform: translate(-50%, -50px);
    opacity: 1;
  }
  100% {
    height: 0;
    -webkit-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -o-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
    opacity: 1;
  }
}

@keyframes scroll_line {
  0% {
    height: 0;
    -webkit-transform: translate(-50%, -90px);
    -ms-transform: translate(-50%, -90px);
    -moz-transform: translate(-50%, -90px);
    -o-transform: translate(-50%, -90px);
    transform: translate(-50%, -90px);
    opacity: 0;
  }
  50% {
    height: 40px;
    -webkit-transform: translate(-50%, -50px);
    -ms-transform: translate(-50%, -50px);
    -moz-transform: translate(-50%, -50px);
    -o-transform: translate(-50%, -50px);
    transform: translate(-50%, -50px);
    opacity: 1;
  }
  100% {
    height: 0;
    -webkit-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -o-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
    opacity: 1;
  }
}

#top .main .scroll p {
  margin: 10px 0 0;
}

#top h2 {
  text-align: center;
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  #top h2 {
    font-size: 3em;
  }
}

#top .about {
  margin: 80px 0 100px;
}

#top .about .wrap {
  display: block;
  width: 90%;
  margin: 0 auto;
  letter-spacing: -.4em;
}

#top .about .wrap img, #top .about .wrap p {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.8s ease-in-out 0.2s;
  -ms-transition: all 0.8s ease-in-out 0.2s;
  -moz-transition: all 0.8s ease-in-out 0.2s;
  -o-transition: all 0.8s ease-in-out 0.2s;
  transition: all 0.8s ease-in-out 0.2s;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  #top .about .wrap img, #top .about .wrap p {
    display: block;
  }
}

#top .about .wrap img {
  width: 30%;
  margin: 0 10% 0 0;
  border-radius: 10px;
  -webkit-transform: translate(-20px, 0);
  -ms-transform: translate(-20px, 0);
  -moz-transform: translate(-20px, 0);
  -o-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
}

@media screen and (max-width: 768px) {
  #top .about .wrap img {
    width: 90%;
    margin: 0 auto 20px;
  }
}

#top .about .wrap p {
  width: 60%;
  font-size: 1.5em;
  letter-spacing: .04em;
  line-height: 2;
  -webkit-transform: translate(20px, 0);
  -ms-transform: translate(20px, 0);
  -moz-transform: translate(20px, 0);
  -o-transform: translate(20px, 0);
  transform: translate(20px, 0);
}

@media screen and (max-width: 768px) {
  #top .about .wrap p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.33em;
  }
}

#top .about .wrap.view img, #top .about .wrap.view p {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

#top .works {
  margin: 0 0 100px;
}

#top .works ul {
  display: block;
  width: 90%;
  margin: 0 auto;
  letter-spacing: -.4em;
  text-align: center;
}

#top .works ul li {
  display: inline-block;
  width: 32%;
  margin: 0 0 40px 0;
  vertical-align: top;
  -webkit-transition: all 0.8s ease-in-out 0.2s;
  -ms-transition: all 0.8s ease-in-out 0.2s;
  -moz-transition: all 0.8s ease-in-out 0.2s;
  -o-transition: all 0.8s ease-in-out 0.2s;
  transition: all 0.8s ease-in-out 0.2s;
  -webkit-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  -moz-transform: translate(0, 20px);
  -o-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  #top .works ul li {
    width: 48%;
    margin: 0 4% 40px 0;
  }
}

#top .works ul li:nth-child(3n-1) {
  margin: 0 2% 40px;
}

@media screen and (max-width: 768px) {
  #top .works ul li:nth-child(3n-1) {
    margin: 0 2% 40px 0;
  }
}

@media screen and (max-width: 768px) {
  #top .works ul li:nth-child(2n) {
    margin: 0 0 40px 0;
  }
}

#top .works ul li .img_wrap {
  position: relative;
  display: block;
  border: 1px solid #aaa;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 20px;
}

#top .works ul li .img_wrap img {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#top .works ul li .img_wrap:hover img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}

#top .works ul li h3 {
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .04em;
  font-size: 1.5em;
}

@media screen and (max-width: 768px) {
  #top .works ul li h3 {
    font-size: 1.33em;
  }
}

#top .works ul li.view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

#top .skill {
  margin: 0 0 100px;
}

#top .skill ul {
  display: block;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #top .skill ul {
    width: 90%;
  }
}

#top .skill ul li {
  letter-spacing: -.4em;
  text-align: center;
  margin: 0 0 40px;
}

#top .skill ul li h3, #top .skill ul li .meter_wrap {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #top .skill ul li h3, #top .skill ul li .meter_wrap {
    display: block;
  }
}

#top .skill ul li h3 {
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .04em;
  width: 200px;
  font-size: 1.5em;
}

@media screen and (max-width: 768px) {
  #top .skill ul li h3 {
    text-align: left;
    margin: 0 0 20px;
  }
}

#top .skill ul li .meter_wrap {
  position: relative;
  width: -webkit-calc(100% - 200px);
  width: calc(100% - 200px);
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #555;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  #top .skill ul li .meter_wrap {
    width: 100%;
  }
}

#top .skill ul li .meter_wrap .meter {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 38px;
  background: #FF9300;
  border-radius: 8px;
  box-sizing: border-box;
  width: 0;
  -webkit-transition: all 0.8s ease-in-out 0s;
  -ms-transition: all 0.8s ease-in-out 0s;
  -moz-transition: all 0.8s ease-in-out 0s;
  -o-transition: all 0.8s ease-in-out 0s;
  transition: all 0.8s ease-in-out 0s;
}

#top .skill ul li.view .meter_wrap .meter.html {
  width: 100%;
}

#top .skill ul li.view .meter_wrap .meter.css {
  width: 100%;
}

#top .skill ul li.view .meter_wrap .meter.jquery {
  width: 80%;
}

#top .skill ul li.view .meter_wrap .meter.php {
  width: 70%;
}

#top .skill ul li.view .meter_wrap .meter.wp {
  width: 80%;
}

/*====================================================================
	04 Work_style
====================================================================*/
/*---------------------------------------------------------
	Work
*/
#works {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  #works {
    padding: 50px 0;
  }
}

#works .contents {
  display: block;
  width: 90%;
  max-width: 800px;
  margin: 0 auto 0;
}

#works .contents .ttl_wrap {
  margin: 0 0 40px;
}

#works .contents .ttl_wrap h2 {
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3em;
  margin: 0 0 40px;
}

@media screen and (max-width: 768px) {
  #works .contents .ttl_wrap h2 {
    font-size: 2em;
    margin: 0 0 20px;
  }
}

#works .contents .ttl_wrap img {
  margin: 0 0 20px;
}

#works .contents .ttl_wrap .ttl {
  position: relative;
  margin: 0 0 20px;
}

#works .contents .ttl_wrap .ttl h3 {
  position: relative;
  display: table;
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  text-decoration: underline;
}

#works .contents .ttl_wrap .ttl h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -40px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_tab.svg");
  background-size: cover;
}

#works .contents .ttl_wrap .ttl ul {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  letter-spacing: -.4em;
}

@media screen and (max-width: 768px) {
  #works .contents .ttl_wrap .ttl ul {
    position: relative;
    text-align: left;
    margin: 20px 0 0;
  }
}

#works .contents .ttl_wrap .ttl ul li {
  display: inline-block;
  padding: 10px 20px;
  background: #FF9300;
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.33em;
  color: #fff;
  letter-spacing: .04em;
  border-radius: 5px;
  margin: 0 0 0 10px;
}

@media screen and (max-width: 768px) {
  #works .contents .ttl_wrap .ttl ul li {
    margin: 0 10px 0 0;
  }
}

#works .contents .tag ul {
  letter-spacing: -.4em;
}

#works .contents .tag ul li {
  display: inline-block;
  padding: 10px 20px;
  background: #1117B2;
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  letter-spacing: .04em;
  border-radius: 5px;
  margin: 0 10px 0 0;
}

#works .contents .txt {
  font-size: 1.33em;
  letter-spacing: .04em;
  line-height: 1.5;
}

#works .contents .back_btn {
  display: table;
  margin: 80px auto 0;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 20px 40px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#works .contents .back_btn:hover {
  background: #222;
  color: #fff;
}
