@charset "utf-8";

/* = Primary Styles ===========
   Author: Koji Fujisaki
=============================== */

/* common */
html, body {
  height: 100%;
}
html {
  font-family: 'Hiragino sans', Arial, sans-serif;
  font-weight: 300;
}
h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5em;
}
h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 4px solid #000;
}
.subHeading {
  font-size: 12px;
  color: #666;
  display: block;
}
.stepHeading {
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.textBox {
  text-align: left;
  font-size: 14px;
  line-height: 2em;
  max-width: 640px;
  margin: 30px auto 50px;
}
@media screen and (max-width:768px){
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  .textBox {
  padding: 30px 10px 30px 10px;
  }
}

.pLink {
  display: block;
  margin: 15px 0;
}
.articleLink {
  font-size: 13px;
  display: block;
  font-weight: 400;
  padding: 15px 10px;
  border-bottom: 1px solid #e6e6e6;
}
.articleLink:link,
.articleLink:visited,
.articleLink:active {
  color: #666;
}
.articleLink:hover {
  color: #000;
  background: #fff;
}
/* Link Text Animation */
.linkText {
  position: relative;
  display: inline-block;
}
.linkText:link,
.linkText:visited,
.linkText:hover,
.linkText:active {
  color: #000000;
}
.linkText:before {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #000000;
  transition: 0.1s;
}
.linkText:hover:before {
  width: 100%;
}
/* header */
header {
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.98);
  position: fixed;
  z-index: 100;
}
.headerInner {
  position: relative;
  height: 80px;
  margin: 0 auto;
}
.iconBack {
  position: absolute;
  top: 28px;
  left: 30px;
}
.imgBack {
  display: block;
  width: 24px;
  height: 24px;
}
.iconLogo {
  position: absolute;
  text-align: center;
  top: 26px;
  left: 0;
  right: 0;
  width: 28px;
  height: 28px;
  margin: auto;
}
.imgLogo {
  width: 28px;
  height: 28px;
}
.iconMenu {
  position: absolute;
  top:28px;
  right: 40px;
}
/* footer */
footer {
  text-align: center;
}
.footerInner {
  width: 162px;
  margin: 0 auto;
  padding: 50px 0 50px 0;
}
.footerText {
  font-size: 12px;
  font-weight: 600;
}
.footerIconLogo {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
}
.linkBlock {
  padding: 30px 0 15px 0;
}
.myLink {
  text-indent: -9999px;
  overflow: hidden;
}
.myLink li {
  width: 44px;
  height: 44px;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}
.myLink li a {
  display: block;
  height: 44px;
}
.myLink li:nth-child(3n) {
  margin-right: 0;
}
.myLink li:hover {
  opacity: 0.7;
}
li.facebook {
  background:url(../img/icon_facebook.png) no-repeat 0 0;
  background-size: 44px;
}
li.twitter {
  background:url(../img/icon_twitter.png) no-repeat 0 0;
  background-size:44px;
}
li.googleplus {
  background:url(../img/icon_googleplus.png) no-repeat 0 0;
  background-size:44px;
}
li.instagram {
  background:url(../img/icon_instagram.png) no-repeat 0 0;
  background-size:44px;
}
li.medium {
  background:url(../img/icon_medium.png) no-repeat 0 0;
  background-size:44px;
}
li.note {
  background:url(../img/icon_note.png) no-repeat 0 0;
  background-size:44px;
}
li.youtube {
  background:url(../img/icon_youtube.png) no-repeat 0 0;
  background-size:44px;
}
li.pinterest {
  background:url(../img/icon_pinterest.png) no-repeat 0 0;
  background-size:44px;
}
li.mail {
  background:url(../img/icon_mail.png) no-repeat 0 0;
  background-size:44px;
}
/* content */
.contents {
  background: #F3F3F3;
}
.contentsInner {
  max-width: 960px;
  padding: 100px 30px;
  margin: 0 auto;
  text-align: center;
}
/* button */
.visiteSite {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  width: 200px;
  border: 1px solid #E75304;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  background: #fff;
  color: #E75304;
  font-weight: 200;
  line-height: 3;
  overflow: hidden;
}
.visiteSite::before,
.visiteSite::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.visiteSite,
.visiteSite::before,
.visiteSite::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.visiteSite:hover {
  color: #fff;
  letter-spacing: 5px;
}
.visiteSite::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.visiteSite:hover::after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  background: #E75304;
}
.lead .visiteSite {
  margin-top: 30px;
}
/* menu */
nav.globalMenu {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(65deg, #FFC778, #F13F79);
  background: -webkit-linear-gradient(65deg, #FFC778, #F13F79);
  background: linear-gradient(25deg, #FFC778, #F13F79);
  opacity: 0;
  text-align: right;
  transform: translateY(-100%);
  transition: all 0.4s;
  width: 100%;
  height: 100%;
}
nav.globalMenu ul {
    margin: 80px auto 0 auto;
    padding: 0;
    width: 100%;
}
nav.globalMenu ul li {
    font-size: 1.3em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    list-style-type: none;
    padding: 0;
    width: 100%;
}
nav.globalMenu ul li a {
    display: block;
    color: #fff;
    padding: 1em 30px;
}
nav.globalMenu.active {
  transform: translateY(0);
  opacity: 0.99;
}
nav.globalMenu ul li:hover {
  background: -moz-linear-gradient(65deg, #F98F7F, #FFC778);
  background: -webkit-linear-gradient(65deg, #F98F7F, #FFC778);
  background: linear-gradient(25deg, #F98F7F, #FFC778);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all  0.4s ease;
}
/* humberger Icon */
.navToggle {
  display: block;
  position: fixed;
  right: 30px;
  top: 28px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 3;
  text-align: center;
}
.navToggle span {
  display: block;
  position: absolute;
  width: 24px;
  border-bottom: solid 3.13px #000;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}
.navToggle span:nth-child(1) {
  top: 0px;
}
.navToggle span:nth-child(2) {
  top: 10px;
}
.navToggle span:nth-child(3) {
  top: 20px;
}
.navToggle.active span {
  border-color: #fff;
}
.navToggle.active span:nth-child(1) {
  top: 10px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* == index == */
.wrap {
  padding-top: 80px;
}
/* lead */
.lead {
  text-align: center;
  padding: 100px 30px;
}
#index .lead,
#projects .lead {
  padding-bottom: 150px;
}
.timestampText {
  font-size: 12px;
  font-weight: 300;
  color: #666666;
  margin-bottom: 15px;
}
.leadText {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8em;
  color: #666666;
  margin: 0 auto;
  max-width: 640px;
}
/* indexList */
.displayPC {
  display: block;
}
.displaySP {
  display: none;
}
.contentsInnerPC {
  position: relative;
  top: -100px;
  max-width: 960px;
  padding: 50px 30px 0 30px;
  margin: 0 auto;
}
.imgIndexListPC {
  max-width: 100%;
  padding-bottom: 30px;
}
.listLast {
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .displayPC {
    display: none;
  }
  .displaySP {
    display: block;
  }
  .contentsInnerSP {
    position: relative;
    top: -100px;
    max-width: 480px;
    padding: 50px 30px 0 30px;
    margin: 0 auto;
  }
  .imgIndexListSP {
    max-width: 100%;
    padding-bottom: 30px;
  }
  .listLast {
    padding-bottom: 0;
  }
}
/* == projects == */
/* projectsList */
.projectsInnerPC {
  position: relative;
  top: -100px;
  max-width: 960px;
  padding: 50px 50px 0 50px;
  margin: 0 auto;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}
.imgProjectsList {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .projectsInnerSP {
    position: relative;
    top: -80px;
    max-width: 480px;
    padding: 30px 30px 0 30px;
    margin: 0 auto;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }
}
/* == about == */
/* .coverAbout {
  position: relative;
  top: 80px;
  overflow: hidden;
  height: 50vw;
  min-height: 320px;
  max-height: 600px;
  min-width: 300px;
}
.coverAbout:after {
  content: "";
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(27,32,48,1) 100%);
}
.coverAbout:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    transform: translateZ(0);
  background: #1B2030 url(../img/cover_about@2x.png) top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  animation: grow 60s linear 10ms infinite;
  transition: all 0.2s ease-in-out;
  z-index: -2
}
@keyframes grow{
  0% { transform:scale(1)}
  50% { transform:scale(1.2)}
}
@media only screen and (max-width: 768px) {
  .coverAbout {
    height: 320px;
    max-height: 320px;
  }
  .coverAbout:before {
    max-height: 320px;
    background-attachment: inherit;
  }
} */
/* Profile */
.thProfile {
  text-align: center;
  position: relative;
  top: 30px;
}
.imgProfile {
  width: 100px;
  height: 100px;
}
#about .lead {
  text-align: center;
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
}
.skillsInner {
  padding: 30px 50px 80px 50px;
}
.imgSkills {
  max-width: 380px;
  width: 100%;
}
.tagsInner {
  padding-top: 30px;
}
.imgTags {
  max-width: 100%;
}
/* == projects base == */
main {
  position: relative;
  top: 80px;
}

.projectsThInner {
  max-width: 860px;
  overflow: hidden;
  margin: 0 auto;
}
.projectsTh {
  float: left;
  padding-right: 4%;
  margin-top: 30px;
  max-width: 48%;
}
.projectsTh:nth-child(2n) {
  padding-right: 0;
}
.projectsTh:nth-child(2n+1):last-child {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .projectsThInner {
    max-width: 480px;
  }
  .projectsTh {
    max-width: 100%;
  }
}

/* == cover == */
.cover {
  height: 600px;
}
.coverSet {
  text-align: center;
  padding: 50px 30px;
}
.aboutMe {
  height: 600px;
  background: url(../img/cover_about.png);
  background-size: cover;
  background-position: center center;
  position: relative;
  top: 80px;
}
.coverMixi {
  width: 84px;
  height: 36px;
  margin-bottom: 10px;
}
.coverTitle {
  font-weight: 100;
  font-size: 46px;
  color: #505050;
  font-family: 'Helvetica Neue', 'Roboto',  sans-serif;
}
.coverImg {
  display: block;
  margin: 0 auto;
  padding: 0 30px;
}
.smarthealth {
  background: -moz-linear-gradient(65deg, #47C9BC, #26B4AF);
  background: -webkit-linear-gradient(65deg, #47C9BC, #26B4AF);
  background: linear-gradient(25deg, #47C9BC, #26B4AF);
}
 .smarthealthImg {
  max-width: 500px;
  padding-top: 160px;
}
.coverTripJam {
  height: 600px;
  background: url(../img/cover_TripJam.png);
  background-size: cover;
  background-position: center center;
  position: relative;
  vertical-align: top;
}
.communityRedesign {
  background: -moz-linear-gradient(65deg, #FFB8F8, #FFD388);
  background: -webkit-linear-gradient(65deg, #FFB8F8, #FFD388);
  background: linear-gradient(25deg, #FFB8F8, #FFD388);
}
.communityImg {
  max-width: 678px;
}
.navigationRedesign {
  background: -moz-linear-gradient(65deg, #FFAB5E, #FFD388);
  background: -webkit-linear-gradient(65deg, #FFAB5E, #FFD388);
  background: linear-gradient(25deg, #FFAB5E, #FFD388);
}
.navigationImg {
  max-width: 678px;
}
.educate {
  background: #fafafa;
}
.educateImg {
  max-width: 386px;
  padding-top: 125px;
}
.pdfViewer {
  padding: 0 40px 100px 40px;
}
.pdfViewerLast {
  padding: 0 40px 0 40px;
}
@media screen and (max-width:768px){
  .cover {
    width: 100%;
    height: 438px;
  }
  .coverSet {
    max-width: 315px;
    margin: 0 auto;
  }
  .smarthealthImg {
   max-width: 300px;
   padding-top: 135px;
  }
  .coverTripJam {
    height: 320px;
    background: url(../img/cover_TripJam_sp.png);
    background-size: cover;
    background-position: center center;
    position: relative;
    vertical-align: top;
  }
  .communityImg {
    max-width: 315px;
  }
  .navigationImg {
    max-width: 315px;
  }
  .educateImg {
    max-width: 220px;
    padding-top: 100px;
  }
}
