@charset "UTF-8";
/* CSS Document */
/* INDEX ****************************************

- Bootstrap Variables Override
- Font Setting
- General Setting
- Header
- Intro
- Contact
- Footer
- Selected Works
- Work Detail
- About
- Preloader
_ Responsive Setting
*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@font-face {
  font-family: "Futura";
  src: url("../font/Futura-Dem.eot");
  src: url("../font/Futura-Dem.woff");
  src: url("../font/Futura-Dem.ttf");
}
.img-responsive {
  width: 100%;
  height: auto;
}

.fill01, .fill02, .fill03, .fill04 {
  fill: #ccb540;
}

.path01, .path02, .path03, .path04, .path05, .path06, .path07, .path08, .path09, .path10, .path11, .path12, .path13, .path14, .path15, .path16, .path17, .path18, .path19 {
  stroke: #dcdfc1;
}

/***************** Font Setting *****************/
h1, h2, h3 {
  font-weight: 200;
}

#detail-description,
#biography,
.chart,
#detail-role li {
  font-family: "MuseoSansRounded300";
  font-style: normal;
  font-weight: 100;
  letter-spacing: 1px;
}

.skill p {
  font-family: "MuseoSansRounded300";
  font-style: normal;
  font-weight: 300;
  letter-spacing: 1px;
}

/***************** General Setting *****************/
body {
  background-color: #dcdfc1;
  color: #dcdfc1;
  font-family: "Futura";
}

.active {
  overflow: hidden;
}

.active.mobile {
  -webkit-overflow-scrolling: touch;
}

h2.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 8px;
  padding: 10px;
  margin-bottom: 50px;
  border-bottom: 2px solid #ccb540;
  border-top: 2px solid #ccb540;
  display: inline-block;
}

/***************** Header *****************/
#header-wrapper {
  z-index: 13;
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin-left: -105px;
}

#header {
  position: relative;
  display: block;
  width: 210px;
  height: 80px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

#logo {
  position: absolute;
  top: 20px;
  left: 85px;
  display: block;
  width: 40px;
  height: 40px;
  background: url("../images/logo-.svg") no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
}

#nav-works {
  position: absolute;
  top: 18px;
  left: 0;
  display: block;
  width: 70px;
  height: 40px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 10px 0 10px 5px;
  background: linear-gradient(to right, transparent 50%, #ccb540 50%);
  background-repeat: no-repeat;
  background-size: 200% 2px;
  background-position: left bottom;
  transition: background-position 0.3s ease-out;
}

#works #nav-works {
  text-decoration: none;
  background-position: right bottom;
}

#nav-works:hover {
  text-decoration: none;
  background-position: right bottom;
}

#nav-about {
  position: absolute;
  top: 18px;
  right: 0;
  display: block;
  width: 70px;
  height: 40px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 10px 0 10px 5px;
  background: linear-gradient(to left, transparent 50%, #ccb540 50%);
  background-repeat: no-repeat;
  background-size: 200% 2px;
  background-position: right bottom;
  transition: background-position 0.3s ease-out;
}

#about #nav-about {
  text-decoration: none;
  background-position: left bottom;
}

#nav-about:hover {
  text-decoration: none;
  background-position: left bottom;
}

/***************** Main *****************/
main {
  padding-bottom: 50px;
  margin-bottom: 50vh;
  position: relative;
  z-index: 10;
  background: #d33037 url("../images/noise.png") repeat top left;
  box-shadow: 0px 90px 90px -80px rgba(0, 0, 0, 0.4);
}

/***************** Intro *****************/
#intro {
  width: 100%;
  height: 100vh;
  text-align: center;
  padding: 0;
  color: #dcdfc1;
  position: relative;
}

#intro {
  background: url("../images/mouse.png") no-repeat center 50%/auto 45%;
  transition: background-size 0.5s ease-out;
}
body.atTop #intro {
  background-size: auto 55%;
  transition: background-size 0.75s cubic-bezier(0.29, 0.63, 0.44, 1);
}

#intro span {
  color: #ccb540;
}

#intro-border {
  position: absolute;
  display: none;
  height: 200vh;
  width: 100%;
  border: solid 0px #dcdfc1;
  box-sizing: border-box;
  transition: border 0.5s cubic-bezier(0.36, 0.23, 0.11, 1.37);
}
body.atTop #intro-border {
  border: solid 15px #dcdfc1;
  transition: border 0.5s cubic-bezier(0.36, 0.23, 0.11, 1.37) 0.5s;
}
#intro-border.invisible {
  display: none;
}

#bg-object {
  position: absolute;
  bottom: -40%;
  margin-left: -50%;
  left: 50%;
  width: 100%;
}

/* Intro Animation */
@keyframes element-animation01 {
  0% {
    transform: translateX(-150px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes element-animation02 {
  0% {
    transform: translateY(-150px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes element-animation03 {
  0% {
    transform: translateX(150px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes element-animation04 {
  0% {
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0px);
  }
}
.fill01, .fill02, .fill03, .fill04 {
  animation-fill-mode: both;
  animation-iteration-count: forward;
  animation-duration: 3s;
  animation-delay: 0.6s;
}

.fill01 {
  animation-name: element-animation01;
}

.fill02 {
  animation-name: element-animation02;
}

.fill03 {
  animation-name: element-animation03;
}

.fill04 {
  animation-name: element-animation04;
}

#arrow {
  position: absolute;
  bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  display: block;
  width: 45px;
  height: 45px;
  background-color: #d33037;
  border-radius: 100px;
  transform: scale(0);
  transition: all 0.75s cubic-bezier(0.36, 0.23, 0.11, 1.37) 0.2s;
}
body.atTop #arrow {
  background-color: #ccb540;
  transform: scale(1);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

#arrow span {
  display: block;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: 0px;
  background: url("../images/arrow.svg") no-repeat;
  background-position: 0px 0px;
  animation: arrow-anim 1s ease infinite;
}

@keyframes arrow-anim {
  from {
    background-position: 0px -10px;
    opacity: 0;
  }
  to {
    background-position: 0px 10px;
    opacity: 1;
  }
}
@-webkit-keyframes arrow-anim {
  from {
    background-position: 0px -10px;
    opacity: 0;
  }
  to {
    background-position: 0px 10px;
    opacity: 1;
  }
}
/***************** Contact *****************/
#contact {
  min-height: 50vh;
  width: 100%;
  position: fixed;
  display: table;
  bottom: 0;
  z-index: 9;
  background-color: #dcdfc1;
}
#contact .container-fluid {
  margin: 0;
  padding: 0;
}

#contact .contact-inner {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 1rem;
}
#contact .contact-inner a {
  font-size: 120%;
  padding: 15px 30px;
  margin: 0 auto;
  line-height: 1;
}

#contact .line-pattern {
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  z-index: -1;
  position: center center;
}
#contact .line-pattern svg {
  width: auto;
  height: 100%;
}
#contact .line-pattern svg .pattern-st {
  stroke: #d33037;
  stroke-width: 0;
  stroke-dasharray: 50;
  stroke-dashoffset: 0;
  stroke-linecap: butt;
  transition: all 0.5s cubic-bezier(0.36, 0.23, 0.11, 1.37);
  animation: dash 10s linear infinite;
}
#contact .line-pattern svg .pattern-st:nth-of-type(odd) {
  stroke-dashoffset: 50;
  animation: dash-odd 10s linear infinite;
}
@media only screen and (min-width: 480px) {
  #contact .line-pattern svg {
    width: 100%;
    height: auto;
  }
}

#contact.atBottom .line-pattern svg .pattern-st {
  stroke: #d33037;
  stroke-width: 10;
}

@keyframes dash {
  to {
    stroke-dashoffset: 200;
  }
}
@keyframes dash-odd {
  to {
    stroke-dashoffset: 250;
  }
}
#contact p {
  display: inline-block;
  padding: 10px;
  color: #d33037;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: #dcdfc1;
}

a.button-mail {
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-decoration: none;
  color: #dcdfc1;
  background-color: #d33037;
  border: #d33037 solid 6px;
  display: block;
  padding: 12px 20px;
  transition: opacity 0.4s ease-out, letter-spacing 0.4s ease-out, color 0.2s ease-out, background-color 0.4s linear;
}

a:hover.button-mail {
  color: #d33037;
  opacity: 1;
  text-decoration: none;
  letter-spacing: 7px;
  background-color: #dcdfc1;
  border: #d33037 solid 6px;
}

/***************** Footer *****************/
footer {
  padding: 50px 0;
}

#copyright {
  color: #666;
}

/***************** Selected Works *****************/
#projects {
  margin-bottom: 20px;
}

.no-gutter > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.project-thumb {
  text-align: center;
  height: auto;
  cursor: pointer;
}

.project-thumb .image-wrapper {
  background-color: #a89d64;
  overflow: hidden;
}

.project-thumb img {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: auto;
}

.project-thumb .info {
  text-align: left;
  position: relative;
  z-index: 11;
  width: 100%;
  background: linear-gradient(to left, #ccb540 50%, #d33037 50%);
  background-repeat: no-repeat;
  background-size: 200% 2px;
  background-position: left top;
  background-color: #d33037;
  padding: 15px 0 0 20px;
  margin: 0 0 30px;
}
.project-thumb .info:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: url("../images/noise.png") repeat top left;
}

.project-thumb .info h3 {
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 1px;
  color: #ccb540;
}

.project-thumb .info p {
  font-family: "MuseoSansRounded300";
  font-size: 85%;
  letter-spacing: 1.5px;
}

#client-list {
  margin-bottom: 100px;
}

#client-list img {
  opacity: 0.8;
  position: relative;
  z-index: 20;
}

/***************** Work Detail *****************/
#work-detail .container-fluid {
  position: fixed;
  top: 100%;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: top 0s 0.6s ease-out, opacity 0.6s ease-out;
}

body.active #work-detail .container-fluid {
  top: 0%;
  opacity: 1;
  transition: top 0.8s cubic-bezier(0.05, 0.53, 0.5, 0.97), opacity 0.8s 0.7s ease-out;
}

#detail-date {
  text-align: center;
}

h2#detail-project-name {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #ccb540;
  padding: 0;
  margin-bottom: 10px;
  border-bottom: none;
  border-top: none;
  display: inline-block;
  text-align: center;
  display: block;
}

#detail-client-name {
  font-size: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background: linear-gradient(to left, #dcdfc1 0%, #dcdfc1 100%);
  background-repeat: no-repeat;
  background-size: 1em 1px;
  background-position: center bottom;
  text-align: center;
}

#detail-position {
  text-align: center;
}

#detail-position span {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 4px 6px;
  margin: 0 5px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: smaller;
  text-align: center;
}

#detail-role-title {
  text-align: center;
  color: #ccb540;
}

#detail-role {
  text-align: center;
  margin-bottom: 30px;
}

#detail-role span {
  display: inline-block;
  margin: 0 5px 0 0;
  letter-spacing: 2px;
  font-size: smaller;
}

#detail-role span::before {
  content: "";
}

#detail-role span::after {
  content: " / ";
}

#detail-role span:last-child::after {
  content: "";
}

.detail-agency-title {
  text-align: center;
  color: #ccb540;
}

.detail-agency {
  text-align: center;
  margin-bottom: 30px;
}

.detail-agency span {
  display: inline-block;
  margin: 0 5px 0 0;
  letter-spacing: 2px;
  font-size: smaller;
}

#detail-description {
  margin-bottom: 20px;
  text-align: center;
}

#closebutton {
  position: fixed;
  top: -100px;
  right: 0;
  z-index: 102;
  display: block;
  width: 50px;
  height: 50px;
  opacity: 0;
  cursor: pointer;
}

body.active #closebutton {
  top: 0;
  opacity: 1;
  transition: top 0.8s cubic-bezier(0.05, 0.53, 0.5, 0.97), opacity 0.8s 0.7s ease-out;
}

#closebutton #x {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  transform: rotate(90deg);
  transition: all 0.3s;
}

#closebutton:hover #x {
  transform: rotate(0deg);
}

.strokes {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.strokes.short {
  stroke: #ccb540;
}

.strokes.long {
  stroke: #ffffff;
}

#closebutton:hover #x .strokes.short {
  stroke: #ffffff;
}

#closebutton:hover #x .strokes.long {
  stroke: #ccb540;
}

#border {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 0;
  top: -20%;
  opacity: 0;
  left: 0;
  background: #d33037 url("../images/noise.png") repeat top left;
  transform: scale(1.2);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out, height 0s 0.8s ease-out, top 0s 0.8s ease-out;
}

body.active #border {
  top: 0;
  height: 100%;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.8s 0.8s ease-out, height 0s ease-out, opacity 0.6s 0.8s ease-out;
}

#description {
  margin-top: 30px;
  margin-bottom: 45px;
}

#capture {
  margin-top: 0px;
  margin-bottom: 30px;
}

#capture img {
  margin-bottom: 30px;
}

/***************** About *****************/
#profile {
  margin-bottom: 40px;
}

h2#myname {
  font-size: 28px;
  letter-spacing: 5px;
  padding: 0;
  margin-bottom: 10px;
  border-bottom: none;
  border-top: none;
  display: inline-block;
  text-align: center;
  display: block;
}

p#occupation {
  font-size: 18px;
  color: #ccb540;
  margin-bottom: 20px;
}

p#biography {
  text-align: left;
  margin-bottom: 30px;
}

h3#title-experience {
  font-size: 18px;
  color: #ccb540;
  margin-bottom: 20px;
}

.chart {
  margin-bottom: 30px;
}

.chart .row {
  border-top: #d8887c solid 1px;
  padding: 10px 0;
}

.chart .row:last-child {
  border-bottom: #d8887c solid 1px;
}

#skills {
  padding: 20px 0;
  background-color: #dcdfc1;
  color: #222;
  margin-bottom: 40px;
}

#skills h3 {
  font-weight: 400;
  padding: 10px 30px;
  margin-bottom: 10px;
  margin-top: 0;
  border-bottom: #000 solid 1px;
}

.skill {
  padding: 10px 0;
}

#illustration {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 60%;
}

#photography {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 60%;
}

#prototyping {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 60%;
}

#tools {
  margin-bottom: 50px;
}

#tools img {
  opacity: 0.8;
}

#tools p {
  text-align: center;
}

/***************** Preloader *****************/
#loading {
  width: 100%;
  height: 100%;
  background-color: #d33037;
  position: absolute;
  top: 0%;
  left: 0%;
  position: fixed;
  z-index: 9999;
  opacity: 1;
}

#loading.loaded {
  opacity: 0;
  top: 100%;
  transition: opacity 0.5s ease-out, top 0s 0.5s ease-out;
}

#ajaxloading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  position: fixed;
  z-index: 9998;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

#ajaxloading.loaded {
  opacity: 0;
  top: 100%;
  transition: opacity 0.5s ease-out, top 0s 0.5s ease-out;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -58px;
  margin-left: -58px;
  text-align: center;
  width: auto;
}

@-webkit-keyframes ball-grid-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ball-grid-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.ball-grid-pulse {
  width: 57px;
  height: 57px;
}

.ball-grid-pulse {
  width: 113px;
  height: 113px;
  padding: 28px;
}

.ball-grid-pulse > div:nth-child(1) {
  animation-delay: 0.73s;
  animation-duration: 1.3s;
}

.ball-grid-pulse > div:nth-child(2) {
  background-color: #ccb540;
  animation-delay: 0.32s;
  animation-duration: 1.3s;
}

.ball-grid-pulse > div:nth-child(3) {
  animation-delay: 0.71s;
  animation-duration: 0.88s;
}

.ball-grid-pulse > div:nth-child(4) {
  background-color: #ccb540;
  animation-delay: 0.62s;
  animation-duration: 1.06s;
}

.ball-grid-pulse > div:nth-child(5) {
  animation-delay: 0.31s;
  animation-duration: 0.62s;
}

.ball-grid-pulse > div:nth-child(6) {
  background-color: #ccb540;
  animation-delay: -0.14s;
  animation-duration: 1.48s;
}

.ball-grid-pulse > div:nth-child(7) {
  animation-delay: -0.1s;
  animation-duration: 1.47s;
}

.ball-grid-pulse > div:nth-child(8) {
  background-color: #ccb540;
  animation-delay: 0.4s;
  animation-duration: 1.49s;
}

.ball-grid-pulse > div:nth-child(9) {
  animation-delay: 0.73s;
  animation-duration: 0.7s;
}

.ball-grid-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  animation-name: ball-grid-pulse;
  animation-iteration-count: infinite;
  animation-delay: 0;
}

#intro-message {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#intro-message h1 {
  width: 100%;
}
#intro-message h1 svg {
  width: 100%;
}

#intro-message p {
  position: absolute;
  top: 85%;
  width: 100%;
  margin-left: -1rem;
}

@media only screen and (min-width: 0) {
  #intro {
    height: 400px;
    margin-bottom: 50px;
  }

  #intro-message p {
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 3px;
  }
}
@media only screen and (min-width: 480px) {
  #intro {
    height: 100vh;
  }

  #intro-border {
    display: none;
  }

  #intro-message p {
    font-size: 20px;
  }
  #intro-message p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #intro {
    margin-bottom: 80px;
  }

  #intro-message p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  #intro-message p {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1200px) {
  #intro-message p {
    font-size: 36px;
  }
}
.profile-img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .profile-img {
    padding: 0 10%;
  }
}
@media only screen and (min-width: 1200px) {
  .profile-img {
    padding: 0 12.5%;
  }
}

/***************** Responsive Setting *****************/
/* XSサイズ : カスタム, iPhone Retinaディスプレイ */
@media only screen and (min-width: 0) {
  #profile h2,
#profile h3,
#profile p {
    text-align: center;
  }

  h3 {
    margin-top: 20px;
  }

  .project-thumb .info h3, .project-thumb .info p {
    transform: translateY(-30px);
  }
  .project-thumb .info h3 {
    color: #dcdfc1;
  }
  .project-thumb .info p {
    color: #ccb540;
  }

  #contact .contact-inner a {
    margin: 0 15px;
  }
}
/* Sサイズ : Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  #closebutton {
    width: 60px;
    height: 60px;
  }

  #closebutton #x {
    width: 30px;
    height: 30px;
  }

  .skill p {
    text-align: left;
  }

  #skills h3 {
    padding-left: 0;
    text-align: left;
  }

  #illustration {
    background-position: 7% center;
    background-size: 80px auto;
  }

  #photography {
    background-position: 7% center;
    background-size: 80px auto;
  }

  #prototyping {
    background-position: 7% center;
    background-size: 80px auto;
  }

  #contact .contact-inner a {
    max-width: 75%;
    margin: 0 auto;
  }
}
/* Mサイズ、タブレット : Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  #intro {
    background-size: auto 55%;
  }
  body.atTop #intro {
    background-size: auto 65%;
  }

  #intro-border {
    height: 100vh;
    display: block;
  }
  body.atTop #intro-border {
    border: solid 25px #dcdfc1;
  }

  #arrow {
    bottom: 15px;
    width: 75px;
    height: 75px;
  }
  body.atTop #arrow {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  }

  #arrow span {
    width: 50px;
    height: 50px;
    margin-top: 8px;
  }

  #header-wrapper {
    margin-left: -135px;
  }

  #header {
    width: 270px;
    height: 100px;
  }

  #logo {
    top: 20px;
    left: 105px;
    width: 60px;
    height: 60px;
  }

  #nav-works {
    top: 28px;
    width: 80px;
    height: 45px;
    font-size: 14px;
    text-align: center;
    padding: 10px 0 10px 5px;
  }

  #nav-about {
    top: 28px;
    width: 80px;
    height: 45px;
    font-size: 14px;
    text-align: center;
  }

  #contact p {
    font-size: 110%;
    margin-bottom: 25px;
  }

  #contact .contact-inner a {
    font-size: 130%;
    max-width: 600px;
    padding: 18px 10px;
  }

  #projects {
    margin-bottom: 50px;
  }

  .project-thumb {
    margin-bottom: 80px;
  }

  .project-thumb img {
    filter: grayscale(1) contrast(1.8);
    opacity: 0.7;
    transform: scale(1.01);
    transition: filter 0.6s cubic-bezier(0.29, 0.63, 0.44, 1) 0.3s, transform 0.4s cubic-bezier(0.29, 0.63, 0.44, 1) 0.3s, opacity 0.3s cubic-bezier(0.29, 0.63, 0.44, 1) 0.3s;
    will-change: filter;
  }

  .project-thumb:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.03);
  }

  .project-thumb .info {
    top: 0px;
    background-position: right top;
    margin-bottom: 0px;
    transition: top 0.2s cubic-bezier(0.29, 0.63, 0.44, 1) 0.1s, background-position 0.4s cubic-bezier(0.29, 0.63, 0.44, 1) 0.1s;
  }

  .project-thumb:hover .info {
    top: -15px;
    background-position: left top;
  }

  .project-thumb .info h3, .project-thumb .info p {
    transform: translateY(0px);
  }

  .project-thumb .info h3 {
    font-size: 35px;
    line-height: 100%;
    transition: all 0.4s cubic-bezier(0.29, 0.63, 0.44, 1) 0.1s;
    transform-origin: left bottom;
  }

  .project-thumb:hover .info h3 {
    transform: translateY(-55px);
    color: #ccb540;
  }

  .project-thumb .info p {
    transition: all 0.4s cubic-bezier(0.29, 0.63, 0.44, 1) 0.15s;
  }

  .project-thumb:hover .info p {
    color: #dcdfc1;
    transform: translateY(-55px);
  }

  #border {
    border: 20px solid #dcdfc1;
  }

  #profile h2,
#profile h3,
#profile p {
    text-align: left;
  }

  #illustration {
    background-size: 90px auto;
  }

  #photography {
    background-size: 90px auto;
  }

  #prototyping {
    background-size: 90px auto;
  }

  #description {
    margin-top: 100px;
    margin-bottom: 60px;
    padding-right: 30px;
  }

  #capture {
    margin-top: 0px;
    margin-bottom: 50px;
  }

  #closebutton {
    width: 80px;
    height: 80px;
  }

  #closebutton #x {
    width: 40px;
    height: 40px;
  }
}
/* Lサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  #skills p {
    text-align: center;
  }

  #skills h3 {
    padding: 10px 30px 15px;
    text-align: center;
  }

  .skill {
    padding: 15px 0 0;
  }

  .skill p {
    padding-top: 0;
  }

  #illustration {
    background-position: center center;
    background-size: auto 70%;
  }

  #photography {
    background-position: center center;
    background-size: auto 70%;
  }

  #prototyping {
    background-position: center center;
    background-size: auto 70%;
  }

  #works #intro h1 span {
    display: inline;
  }

  #about #intro h1 span {
    display: block;
  }

  #description {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  #capture {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  h2#detail-project-name,
#detail-client-name,
#detail-date,
#detail-position,
#detail-description {
    text-align: left;
  }

  #detail-client-name {
    background-image: none;
    padding-bottom: 0;
  }

  #detail-role-title {
    text-align: left;
  }

  #detail-role {
    text-align: left;
  }

  #detail-role span {
    display: block;
    margin: 0;
    padding: 8px 0;
    border-bottom: #d8887c solid 1px;
    letter-spacing: 2px;
    font-size: smaller;
  }

  #detail-role span:first-child {
    border-top: #d8887c solid 1px;
  }

  #detail-role span::before {
    content: "";
  }

  #detail-role span::after {
    content: "";
  }

  .detail-agency-title {
    text-align: left;
  }

  .detail-agency {
    text-align: left;
  }

  .detail-agency span {
    display: block;
    margin: 0;
    padding: 8px 0;
    border-bottom: #d8887c solid 1px;
    letter-spacing: 2px;
    font-size: smaller;
  }

  .detail-agency span:first-child {
    border-top: #d8887c solid 1px;
  }
}
/* XLサイズ、ワイドスクリーン : Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  #illustration {
    background-size: auto 80%;
  }

  #photography {
    background-size: auto 80%;
  }

  #prototyping {
    background-size: auto 80%;
  }
}
