@charset 'UTF-8';
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

html,
html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
	margin: 0px;
	font-family: aktiv-grotesk,'游ゴシック体','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN',Osaka,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 2em;
  letter-spacing: 0.3px;
  background-color: #f5f5f5;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }


h2 {
  margin: 0px;
  padding: 20px 0 0 0;
  font-family: aktiv-grotesk,'游ゴシック体','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN',Osaka,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 14px;
  color: #adadad;
  line-height: 2em;
  letter-spacing: 0.3px;
  font-weight: normal;
}

h3 {
  margin: 0px;
  padding: 20px 0 0 0;
  font-family: aktiv-grotesk,'游ゴシック体','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN',Osaka,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 2em;
  letter-spacing: 0.3px;
  font-weight: normal;
}

small {
  line-height: 1.8em !important;
  font-size: smaller;
  display: inline-block; /* 親要素からの影響を切り離す */
}

.mail a {
  color: #25559f;
  text-decoration: none;
  padding: 6px;
  border-bottom: 1px solid #25559f;
}

a {
    text-decoration: none;
    color: #333333;
}




.about hr {
  margin: 4px 0 20px 0;
}


/* ヘッダー */
header {
	align-items: center; /*IE用*/
	padding:30px 34px 20px 34px;
	background: #f5f5f5;
	display: flex;
	height: 100px;
}


header .inner {
	margin: auto;
	max-width: 100%;
	width: 100%;
}

header .flexbox {
	align-items: center;
	display: flex;
	justify-content: space-between;	
}

#logo {
	width: 120px;
  position: fixed;
  padding-top: 10px;
}

.arrow {
  position: fixed;
  top: 34px;
  right: 30px;
  width: 61px;
  padding-top: 10px;
  justify-content: center;
  align-items: center;
  z-index: 98;
  cursor: pointer;

}


@media screen and (max-width: 480px) {
  header {
    padding:20px 24px 10px 24px;
    background: #f5f5f5;
    display: flex;
    height: 80px;
  }
  #logo {
    width: 100px;
  }
  .arrow {
  position: fixed;
  top: 30px;
  right: 20px;
  width: 61px;
  padding-top: 0px;
  }
}



/*フッター*/
footer {
  margin-top: 60px;
  font-size: 10px;
  text-align: center;
  align-items: center; /*IE用*/
  padding:10px;
  background: #f5f5f5;
  height: 40px;
}


main #works {
	align-items: center; /*IE用*/
	padding:0px;
	background: green;
	height: 50vh;
}



.vw {
	width: 100%; 
	height: 100%;
  	max-width: 100vw;
	-ms-filter: blur(6px);
  filter: blur(6px);
}

/* Google Chorome BugFix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
 .grid {
  display: block !important;
 }
}
.grid {
  border-radius: 0px;
  background: #f5f5f5;
  padding: 6px;
  margin-bottom: 15px;
}
.grid img {
  max-width: 100%;
  height auto;
}
.grid p {
  font-weight: 200;
  font-size: 14px;
}

/*ワーク*/

.work {
  display: grid;
  width: 620px;
  padding: 30px; 
  margin: 0px auto;
}
.work_img{
  padding: 40px 0 0 0;
}

.web_body img {
   box-shadow: 5px 5px 20px 0px rgb(0 0 0 / 10%);
   margin-bottom: 20px;
}

.mobile_body img {
    box-shadow: 5px 5px 20px 0px rgb(0 0 0 / 10%);
    margin-bottom: 20px;
}

img{
  max-width: 100%;
}

video{
  max-width: 100%;
  margin-bottom: 60px;
}

.work h2 {
  margin: 0px;
  padding: 0px;
  font-family: aktiv-grotesk,'游ゴシック体','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN',Osaka,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 1.1rem; 
  color: #333333;
  line-height: 2em;
  letter-spacing: 0.3px;
  font-weight: normal;
}

.work h3 {
  margin: 0px;
  padding: 10px 0 10px 0;
  font-family: aktiv-grotesk,'游ゴシック体','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN',Osaka,'ＭＳ Ｐゴシック',sans-serif;
  color: #adadad;
  line-height: 2em;
  letter-spacing: 0.3px;
  font-weight: normal;
}

.mobile_body {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .work {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 24px;
    margin: 0px auto;
  }
  .mobile_body {
    width: 80%;
    margin: 0 auto;
}
}

