@charset "UTF-8";
/*===============================
Foundation
================================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  /*	border: 0.1px solid #DDD;*/
}

body {
  font-size: 16px;
  color: #444;
  position: relative;
  background: #fafafa;
}

ul {
  list-style-type: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: #444;
  text-decoration: none;
}

a img {
  border-width: 0px;
  border-style: none;
  border-color: #fff;
  background: transparent;
}

button {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.25);
}

button:hover {
  -webkit-box-shadow: 0px 9px 15px -7px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 9px 15px -7px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

button:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

/*===============================
Layout
================================*/
[id="header"] {
  width: 100%;
  background: rgba(255, 255, 255, 0);
  position: fixed;
  color: #fff;
  z-index: 3;
}

.wrapper {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.main-content {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

/*===============================
Object
================================*/
/*-------------------------------
Object - Component
--------------------------------*/
.content-title {
  font-family: 'Philosopher', sans-serif;
  text-align: center;
  padding-bottom: 4rem;
  font-size: 3rem;
}

/*-------------------------------
Object - Project
--------------------------------*/
/* animation
--------------------------------*/
#screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  -webkit-animation: autoRelease 0s step-start 10s forwards;
          animation: autoRelease 0s step-start 10s forwards;
}

@-webkit-keyframes autoRelease {
  100% {
    visibility: hidden;
  }
}

@keyframes autoRelease {
  100% {
    visibility: hidden;
  }
}

#mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 1s;
  transition: 1s;
}

.book {
  width: 100px;
  height: 100px;
  position: relative;
}

.loading {
  padding-top: 0.5rem;
  color: #ccc;
  animation: loading-flash 0.75s linear 0.2s infinite alternate-reverse;
}

@-webkit-keyframes loading-flash {
  100% {
    opacity: 0.5;
  }
}

@keyframes loading-flash {
  100% {
    opacity: 0.5;
  }
}

#send-message {
  padding-top: 1rem;
  font-size: 1.1rem;
  line-height: 2;
  color: #fff;
}

.cover {
  position: absolute;
  width: 110px;
  height: 140px;
  z-index: 1;
}

.cover--left {
  background: -webkit-gradient(linear, left top, right top, from(#a33), color-stop(50%, #a33), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #a33, #a33 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0));
  -webkit-transform: rotateX(70deg) rotateY(10deg) translateY(17px) translateX(-3px) translateZ(-1px);
          transform: rotateX(70deg) rotateY(10deg) translateY(17px) translateX(-3px) translateZ(-1px);
}

.cover--right {
  background: -webkit-gradient(linear, right top, left top, from(#a33), color-stop(50%, #a33), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to left, #a33, #a33 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0));
  -webkit-transform: rotateX(70deg) rotateY(-10deg) translateY(12px) translateX(-7px) translateZ(-1px);
          transform: rotateX(70deg) rotateY(-10deg) translateY(12px) translateX(-7px) translateZ(-1px);
}

.side {
  position: absolute;
  width: 100px;
  height: 140px;
  z-index: 2;
}

.side--left {
  background: -webkit-gradient(linear, left top, right top, from(#ffa), color-stop(50%, #FFF), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #ffa, #FFF 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0));
  -webkit-transform: rotateX(70deg) rotateY(10deg);
          transform: rotateX(70deg) rotateY(10deg);
}

.side--right {
  background: -webkit-gradient(linear, right top, left top, from(#ffa), color-stop(50%, #FFF), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to left, #ffa, #FFF 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0));
  -webkit-transform: rotateX(70deg) rotateY(-10deg);
          transform: rotateX(70deg) rotateY(-10deg);
}

.page {
  width: 100px;
  height: 140px;
  position: absolute;
  border-left: 1px solid #666;
  background: -webkit-gradient(linear, left top, right top, from(#ffa), color-stop(50%, #FFF), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #ffa, #FFF 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0));
  -webkit-transform: rotateX(70deg) rotateY(10deg);
          transform: rotateX(70deg) rotateY(10deg);
  -webkit-animation: rotate 1.5s ease 0.2s infinite;
          animation: rotate 1.5s ease 0.2s infinite;
  z-index: 3;
}

.page::after {
  content: "";
  display: block;
  margin-top: 140px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#666), color-stop(50%, #666), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #666, #666 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0));
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateX(70deg) rotateY(10deg);
            transform: rotateX(70deg) rotateY(10deg);
  }
  70% {
    -webkit-transform: rotateX(70deg) rotateY(170deg);
            transform: rotateX(70deg) rotateY(170deg);
  }
  100% {
    -webkit-transform: rotateX(70deg) rotateY(170deg);
            transform: rotateX(70deg) rotateY(170deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateX(70deg) rotateY(10deg);
            transform: rotateX(70deg) rotateY(10deg);
  }
  70% {
    -webkit-transform: rotateX(70deg) rotateY(170deg);
            transform: rotateX(70deg) rotateY(170deg);
  }
  100% {
    -webkit-transform: rotateX(70deg) rotateY(170deg);
            transform: rotateX(70deg) rotateY(170deg);
  }
}

/* メインコピー出現演出 */
.fadeOut {
  opacity: 0;
  -webkit-transition: 2s ease;
  transition: 2s ease;
}

.hidden {
  opacity: 0;
}

.apper {
  opacity: 1;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.delete {
  display: none;
}

.flip-out {
  display: inline-block;
  -webkit-transform: translateX(-0.2em) rotateY(90deg);
          transform: translateX(-0.2em) rotateY(90deg);
  opacity: 0;
}

.flip-in {
  -webkit-transform: translateX(0) rotateY(0deg);
          transform: translateX(0) rotateY(0deg);
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.char:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.fadeUp {
  opacity: 1;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  -webkit-transition: 2s;
  transition: 2s;
}

.view-acc {
  width: 1.5rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 1s;
  transition: 1s;
}

.floatup {
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.floatup--hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.floatup--show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

/* navi
--------------------------------*/
.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}

.gnav a {
  display: block;
  line-height: 5rem;
  color: inherit;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  text-align: right;
}

.gnav a:hover {
  color: #aaa;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.logo {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 2rem 0 0 0.2rem;
  width: 36px;
  height: 58px;
}

.logo:hover {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  height: 100%;
}

.gnav__item {
  height: 100%;
  width: 5rem;
  font-family: 'Philosopher', sans-serif;
  font-size: 1.3rem;
  margin-left: 1rem;
}

/* ヘッダーカラー変更 */
.black-header {
  background: rgba(0, 0, 0, 0.8);
  height: 3rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.black-header .logo {
  padding-top: 0;
  padding-bottom: 0.7rem;
}

.black-header a {
  line-height: 3rem;
}

/* ハンバーガー位置調整 */
.hum__button--up {
  top: 0.2rem !important;
}

/* humberger
--------------------------------*/
#hum__button {
  position: fixed;
  top: 1.2rem;
  right: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  font-size: 3rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: none;
}

#hum__line {
  display: block;
  position: relative;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 2px;
  background: white;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

#hum__line::before, #hum__line::after {
  content: "";
  position: absolute;
  background: white;
  width: 100%;
  height: 2px;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

#hum__line::before {
  bottom: 10px;
}

#hum__line::after {
  top: 10px;
}

#hum__line.cross {
  background: transparent;
  -webkit-transform: rotate(-585deg);
          transform: rotate(-585deg);
}

#hum__line.cross::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #333;
  bottom: 0;
}

#hum__line.cross::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background: #333;
  top: 0;
}

#hum__list {
  background: white;
  text-align: center;
  height: 100vh;
  width: 200px;
  position: fixed;
  padding-top: 5rem;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  z-index: 4;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.25);
}

.hum__item {
  margin-top: 2.5rem;
  color: #666;
  font-size: 1.6rem;
  position: relative;
  font-family: 'Philosopher', sans-serif;
}

.closed {
  right: -200px;
}

.open {
  right: 0px;
}

#hum__mask {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 1s;
  transition: 1s;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}

/* hero
--------------------------------*/
[id="hero"] {
  height: 100vh;
  position: relative;
  background: url(../images/desk.jpg) top center/cover;
}

#hero .wrapper {
  position: relative;
  height: 100%;
}

#hero__word {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
  font-size: 9.6vw;
  color: #ddd;
  font-family: 'Philosopher', sans-serif;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
}

#hero__welcome {
  position: absolute;
  top: 25%;
  left: 1.4rem;
  color: #ddd;
  font-size: 2rem;
  font-family: 'Philosopher', sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7), 2px 2px 3px rgba(0, 0, 0, 0.7);
}

#hero__welcome:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(50, 50, 50, 0.25);
  -webkit-box-shadow: inset 0 0 100px 150px rgba(0, 0, 0, 0.25), inset 0 -20vw 100px 150px rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 0 100px 150px rgba(0, 0, 0, 0.25), inset 0 -20vw 100px 150px rgba(0, 0, 0, 0.25);
}

.hero__message {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
  color: #ddd;
  font-size: 1.2rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#message1 {
  top: 75%;
}

#message2 {
  top: 82%;
}

.arrowBox {
  position: absolute;
  left: 50%;
  bottom: 0%;
  width: 20px;
  height: 70px;
  overflow: hidden;
}

#downArrow {
  position: absolute;
  left: 0;
  top: -50px;
  width: 1px;
  height: 30px;
  background: #ccc;
  -webkit-animation: downArrow 3s ease infinite;
          animation: downArrow 3s ease infinite;
}

#downArrow::after {
  position: absolute;
  content: "";
  width: 10px;
  border-bottom: 1px solid #ddd;
  bottom: 0;
  -webkit-transform: rotate(-45deg) translateX(1.5px) translateY(-3px);
          transform: rotate(-45deg) translateX(1.5px) translateY(-3px);
}

@-webkit-keyframes downArrow {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(140px);
            transform: translateY(140px);
  }
}

@keyframes downArrow {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(140px);
            transform: translateY(140px);
  }
}

/* about
--------------------------------*/
.about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  margin: 0 auto;
}

.about__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 45%;
  margin-right: 2rem;
}

.about__face {
  display: block;
  max-width: 100%;
  height: auto;
}

.about__name {
  font-size: 1.6rem;
  padding-bottom: 1.6rem;
  line-height: 1;
}

.about__detail {
  width: 45%;
  padding-left: 2rem;
  line-height: 2;
}

.about__text {
  font-size: 1.1rem;
  padding-bottom: 0.8em;
}

.about__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.5rem;
}

.twitter {
  height: 2rem;
  width: 2rem;
  background: #666;
  padding: 0.5rem 0.2rem 0.2rem 0.2rem;
  border-radius: 50%;
  position: relative;
}

.twitter img {
  position: absolute;
  width: 1.5rem;
}

.github {
  height: 2.1rem;
  width: 2.1rem;
  margin-left: 1rem;
  position: relative;
}

.github img {
  position: absolute;
  width: 2rem;
}

.github::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1.95rem;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

/* skill
--------------------------------*/
#skill {
  background: #ccc;
}

.skill__wrap {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: (minmax(400px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 1.5rem 1rem;
}

.skill__unit {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.25);
  background: #fff;
}

.skill__unit:hover {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-shadow: 0px 9px 15px -7px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 9px 15px -7px rgba(0, 0, 0, 0.5);
}

.skill__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem;
  position: relative;
}

.skill__header .view-acc {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
}

.skill__inner {
  max-height: 0;
  overflow: hidden;
  padding: 0.5rem 0.5rem 0;
  font-size: 0.9rem;
  -webkit-transition: 1s;
  transition: 1s;
}

.skill__inner dd {
  padding: 0.5rem 0.5rem 1rem;
}

.skill__inner li {
  margin-left: 1rem;
  line-height: 1.6;
  list-style-type: circle;
  font-size: 0.8rem;
}

.skill__unit.acc-open .skill__inner {
  max-height: 400px;
}

.skill__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 1rem;
}

.skill__name {
  font-size: 1rem;
  margin: 0;
  padding-bottom: 0.5em;
}

.skill__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.skill__detail {
  font-size: 0.9em;
}

.star {
  color: #ff7700;
  font-size: 1.2rem;
}

.star--full,
.star--brank {
  color: #bbb;
}

.star--bounce {
  -webkit-animation: bounceStar 1s linear forwards;
          animation: bounceStar 1s linear forwards;
  display: inline-block;
  position: relative;
}

.star--bounce::before {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  background: #ffb400;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-55%);
          transform: translateX(-50%) translateY(-55%);
  -webkit-animation: popStar 1s ease forwards;
          animation: popStar 1s ease forwards;
}

@-webkit-keyframes bounceStar {
  50% {
    -webkit-transform: translateY(-0.5rem) rotateY(180deg) scale(1.5);
            transform: translateY(-0.5rem) rotateY(180deg) scale(1.5);
    color: #ff7700;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
    color: #ffb400;
  }
}

@keyframes bounceStar {
  50% {
    -webkit-transform: translateY(-0.5rem) rotateY(180deg) scale(1.5);
            transform: translateY(-0.5rem) rotateY(180deg) scale(1.5);
    color: #ff7700;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
    color: #ffb400;
  }
}

@-webkit-keyframes popStar {
  0% {
    top: 50%;
  }
  50% {
    top: 10%;
    width: 0.15rem;
    height: 0.15rem;
    opacity: 0.8;
  }
  100% {
    top: -10%;
    width: 0.3rem;
    height: 0.3rem;
    opacity: 0;
  }
}

@keyframes popStar {
  0% {
    top: 50%;
  }
  50% {
    top: 10%;
    width: 0.15rem;
    height: 0.15rem;
    opacity: 0.8;
  }
  100% {
    top: -10%;
    width: 0.3rem;
    height: 0.3rem;
    opacity: 0;
  }
}

.skill__unit.acc-open .view-acc {
  -webkit-transform: rotate(-90deg) rotateY(180deg);
          transform: rotate(-90deg) rotateY(180deg);
}

/* work
--------------------------------*/
#work {
  background: #fafafa;
}

.work__wrap {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: (330px)[auto-fill];
      grid-template-columns: repeat(auto-fill, 330px);
  grid-gap: 3rem 2rem;
}

.work__card {
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.25);
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  cursor: pointer;
  background: #fff;
}

.work__card:hover {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-shadow: 0px 9px 15px -7px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 9px 15px -7px rgba(0, 0, 0, 0.5);
}

.work__visual {
  height: 203px;
  max-width: 100%;
  overflow: hidden;
}

.work__img {
  height: auto;
  width: 100%;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.work__info {
  width: 100%;
  text-align: center;
  position: relative;
}

.work__info .view-acc {
  position: absolute;
  width: 1.5rem;
  right: 1rem;
  bottom: 0.8rem;
}

.work__title {
  border-top: 1px solid #bbb;
  font-size: 1.2rem;
  padding: 0.7rem 0 0.5rem;
}

.work__description {
  max-height: 0;
  padding-rignt: 0.5rem;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  font-size: 0.9rem;
  -webkit-transition: 1s;
  transition: 1s;
  position: relative;
}

.work__description dd {
  padding: 0.5rem 0.5rem 1rem;
}

.work__description li {
  margin-left: 1rem;
  line-height: 1.6;
  list-style-type: circle;
  font-size: 0.8rem;
}

.work__description a {
  display: block;
  width: 10rem;
  margin: 0.5rem auto 1rem;
}

.work__description button {
  display: inline-block;
  min-width: 10rem;
  font-size: 1rem;
  border: none;
  padding: 0.5rem 1rem 0.5rem 1.2rem;
  background: #2d59b4;
  border-radius: 0.2rem;
  color: #FFF;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.work__description button img {
  display: inline-block;
  width: 1.3rem;
  padding-left: 0.5rem;
}

.work__description .view-acc {
  position: absolute;
  width: 1.5rem;
  right: 1rem;
  bottom: 0.3rem;
}

.work__card.acc-open .work__description {
  padding-top: 1rem;
  max-height: 500px;
}

.work__card.acc-open .view-acc {
  -webkit-transform: rotate(-90deg) rotateY(180deg);
          transform: rotate(-90deg) rotateY(180deg);
}

[id="more-work"] {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  margin-top: 3rem;
}

[id="more-work"].acc-open {
  max-height: 1500px;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  -webkit-transition: 1s ease-in;
  transition: 1s ease-in;
}

[id="more-work__button"] {
  display: block;
  font-size: 1.1rem;
  margin: 3rem auto 0;
  padding: 0.8rem 1.5rem 0.8rem 2.5rem;
  background: #fff;
  border: 2px solid #999;
  border-radius: 0.2rem;
}

[id="more-work__button"] .view-acc {
  width: 1.5rem;
  margin-left: 1rem;
}

[id="more-work__button"].acc-open > .view-acc {
  -webkit-transform: translateY(0.6em) rotate(-90deg) rotateY(180deg);
          transform: translateY(0.6em) rotate(-90deg) rotateY(180deg);
}

/* contact
--------------------------------*/
#contact {
  background: #ccc;
}

.form {
  margin: 0 auto;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__list {
  width: 48%;
}

.form__term {
  padding-bottom: 0.5rem;
}

.form__data {
  margin: 0.2rem 0 1.5rem;
}

.form__data input {
  width: 100%;
  height: 2.5rem;
  padding: 0.4em;
}

.form__data textarea {
  width: 100%;
  padding: 0.4em;
  height: 8.7rem;
}

.form__list button[type="submit"] {
  float: right;
  font-size: 1.1rem;
  border: none;
  padding: 0.3rem 0.8rem;
  background: #2d59b4;
  border-radius: 0.2rem;
  color: #FFF;
}

.required::after {
  content: "（必須）";
  color: red;
  font-size: 0.8em;
  padding-left: 0.5em;
}

#totop {
  background: #ccc;
  overflow: hidden;
}

#totop img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 4.5rem;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  float: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#totop img:hover {
  -webkit-transform: rotate(180deg) translateY(0.4rem);
          transform: rotate(180deg) translateY(0.4rem);
}

/* footer
--------------------------------*/
#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2rem;
  background: #333;
  color: #ddd;
}

/*===============================
Responsive
================================*/
@media screen and (max-width: 600px) {
  #hum__button {
    display: block;
  }
  .gnav__list {
    display: none;
  }
  [id="hero"] {
    height: calc(100vw * 16 / 9);
    background: url(../images/desk_SP.jpg) top left/cover no-repeat;
    -webkit-animation: heroSlide 30s linear infinite alternate;
            animation: heroSlide 30s linear infinite alternate;
  }
  #hero__word {
    font-size: 12vw;
    top: 45%;
  }
  #hero::before {
    background-color: rgba(50, 50, 50, 0.2);
    -webkit-box-shadow: inset 0 0 50px 50px rgba(0, 0, 0, 0.3), inset 0 -100px 50px 100px rgba(0, 0, 0, 0.4);
            box-shadow: inset 0 0 50px 50px rgba(0, 0, 0, 0.3), inset 0 -100px 50px 100px rgba(0, 0, 0, 0.4);
  }
  .hero--SP-loaded {
    background: url(../images/desk_SP.jpg) top left/cover no-repeat;
    -webkit-animation: heroSlide 30s linear infinite alternate;
            animation: heroSlide 30s linear infinite alternate;
  }
  @-webkit-keyframes heroSlide {
    100% {
      background-position: right;
    }
  }
  @keyframes heroSlide {
    100% {
      background-position: right;
    }
  }
  .hero__message {
    font-size: 1.2rem;
  }
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__visual {
    width: 80%;
    margin-right: 0;
  }
  .about__name {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }
  .about__detail {
    width: 100%;
    padding-left: 0;
  }
  .about__text {
    font-size: 4.2vw;
    line-height: 2.5;
  }
  .skill__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skill__unit {
    width: 100%;
  }
  .skill__header .view-acc {
    position: absolute;
    right: 2rem;
    top: 1.2rem;
  }
  .work__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .work__visual {
    height: auto;
  }
  .work__link {
    width: 95%;
    padding-bottom: 1.5rem;
  }
  [id="more-work"].acc-open {
    max-height: 3000px;
  }
  .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .form__list {
    width: 100%;
  }
  .form__list button[type="submit"] {
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.3rem;
    width: 10rem;
    margin-top: 2.5rem;
    padding: 0.5rem 0.8rem;
  }
}

/* IE11に適応されるCSS
--------------------------------*/
@media screen and (-ms-high-contrast: none) {
  #screen {
    display: none;
  }
  .skill__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .skill__unit {
    width: calc(50% - 0.5rem);
    margin-bottom: 1.5rem;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
  .work__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .work__card {
    width: calc(33% - 1rem);
    margin-bottom: 3rem;
  }
  .about__face {
    width: 480px;
    height: 384px;
  }
}

@media screen and (-ms-high-contrast: none) and (max-width: 1000px) {
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__visual {
    width: 100%;
    margin-right: 0;
  }
  .about__name {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }
  .about__detail {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .about__text {
    font-size: 1.2rem;
  }
  .about__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .skill__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skill__unit {
    width: 100%;
  }
  .work__card {
    width: 275px;
  }
  .work__visual {
    height: auto;
  }
}

@media screen and (-ms-high-contrast: none) and (max-width: 600px) {
  [id="hero"] {
    height: calc(100vw * 16 / 9);
    background: url(../images/desk_SP.jpg) top center/cover no-repeat;
    -webkit-animation: heroSlide 30s linear infinite alternate;
            animation: heroSlide 30s linear infinite alternate;
  }
  @-webkit-keyframes heroSlide {
    100% {
      background-position: right;
    }
  }
  @keyframes heroSlide {
    100% {
      background-position: right;
    }
  }
  #hum__button {
    display: none;
  }
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__visual {
    width: 100%;
    margin-right: 0;
  }
  .about__detail {
    font-size: 0.9em;
    width: 100%;
    padding-left: 0;
  }
  .about__face {
    width: 340px;
    height: 272px;
  }
  .work__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work__card {
    width: 100%;
    margin-bottom: 3rem;
  }
}
/*# sourceMappingURL=main.css.map */