@charset "UTF-8";
.appear.up .item {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.appear.down .item {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.appear.left .item {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

.appear.right .item {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.appear .item {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}

.appear.inview .item {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.appear.inview .item:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.appear.inview .item:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.appear.inview .item:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.appear.inview .item:nth-child(4) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.appear.inview .item:nth-child(5) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.appear.inview .item:nth-child(6) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.appear.inview .item:nth-child(7) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

.appear.inview .item:nth-child(8) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.appear.inview .item:nth-child(9) {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}

.appear.inview .item:nth-child(10) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: #8f8f8f;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 10px 40px;
  margin: 10px auto;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #e6e6e3;
  text-decoration: none !important;
  border-radius: 9999px;
}

.btn.float:hover {
  background-color: black;
  color: white;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.btn.filled {
  background-color: black;
  color: white;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.btn.filled:hover {
  background-color: white;
  color: black;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}

.btn.shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: black;
}

.btn.shadow:hover {
  background-color: #f8f8f4;
  color: #343434;
  -webkit-transform: translate(-2.5px, -2.5px);
          transform: translate(-2.5px, -2.5px);
  -webkit-box-shadow: 5px 5px 0 0 #8383808f;
          box-shadow: 5px 5px 0 0 #8383808f;
}

.btn.solid {
  -webkit-box-shadow: 2px 2px 0 0 black;
          box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}

.btn.solid:hover {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: -1;
}

.btn.slide-bg:hover {
  color: white;
}

.btn.slide-bg:hover::before {
  -webkit-transform: none;
          transform: none;
}

.btn.cover-3d {
  position: relative;
  z-index: 1;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 300px;
          perspective: 300px;
}

.btn.cover-3d span {
  display: inline-block;
  -webkit-transform: translateZ(20px);
          transform: translateZ(20px);
}

.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #f8f8f4;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  opacity: 0;
  border-radius: 9999px;
}

.btn.cover-3d:hover {
  color: black;
  border: 2px;
  border-color: #f8f8f4;
  -webkit-box-shadow: 3px 3px 0 0 #8383808f;
          box-shadow: 3px 3px 0 0 #8383808f;
}

.btn.cover-3d:hover::before {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 300px;
          perspective: 300px;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}

.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  line-height: 48px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: center center -25px;
          transform-origin: center center -25px;
  color: black;
}

.btn-cubic .hovering {
  background-color: black;
  color: white;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

.btn-cubic .default {
  background-color: white;
  color: black;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.btn-cubic:hover .hovering {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.btn-cubic:hover .default {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

.swiper-container {
  overflow: visible !important;
}

.swiper-slide {
  height: 250px;
  overflow: hidden;
}

.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: -webkit-transform 1.9s ease;
  transition: -webkit-transform 1.9s ease;
  transition: transform 1.9s ease;
  transition: transform 1.9s ease, -webkit-transform 1.9s ease;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}

.swiper-slide-active > img {
  -webkit-transform: none;
          transform: none;
}

.swiper-slide-active .hero__title {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero {
  overflow: hidden;
  padding: 50px 30px;
}

.hero__title {
  position: absolute;
  top: 85%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% + 20px));
          transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
  transition: opacity 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
}

.hero__footer {
  position: absolute;
  left: 20%;
  top: 590px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  height: 100px;
  width: 40px;
  overflow: hidden;
}

.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  -webkit-animation-name: kf-arrow-anime;
          animation-name: kf-arrow-anime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero__scrolltext {
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: rgba(81, 81, 78, 0.7);
  left: -8px;
  top: 50px;
  font-size: 1.2em;
}

@-webkit-keyframes kf-arrow-anime {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  30% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes kf-arrow-anime {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  30% {
    -webkit-transform: none;
            transform: none;
  }
}

.animate-title,
.tween-animate-title {
  opacity: 0;
}

.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}

.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}

.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  -webkit-animation-name: kf-animate-chars;
          animation-name: kf-animate-chars;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
          animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animate-title.inview .char:nth-child(1) {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}

.animate-title.inview .char:nth-child(2) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}

.animate-title.inview .char:nth-child(3) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}

.animate-title.inview .char:nth-child(4) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}

.animate-title.inview .char:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.animate-title.inview .char:nth-child(6) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}

.animate-title.inview .char:nth-child(7) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}

.animate-title.inview .char:nth-child(8) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}

.animate-title.inview .char:nth-child(9) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}

.animate-title.inview .char:nth-child(10) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.animate-title.inview .char:nth-child(11) {
  -webkit-animation-delay: 0.44s;
          animation-delay: 0.44s;
}

.animate-title.inview .char:nth-child(12) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}

.animate-title.inview .char:nth-child(13) {
  -webkit-animation-delay: 0.52s;
          animation-delay: 0.52s;
}

.animate-title.inview .char:nth-child(14) {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}

.animate-title.inview .char:nth-child(15) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.animate-title.inview .char:nth-child(16) {
  -webkit-animation-delay: 0.64s;
          animation-delay: 0.64s;
}

.animate-title.inview .char:nth-child(17) {
  -webkit-animation-delay: 0.68s;
          animation-delay: 0.68s;
}

.animate-title.inview .char:nth-child(18) {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}

.animate-title.inview .char:nth-child(19) {
  -webkit-animation-delay: 0.76s;
          animation-delay: 0.76s;
}

.animate-title.inview .char:nth-child(20) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.animate-title.inview .char:nth-child(21) {
  -webkit-animation-delay: 0.84s;
          animation-delay: 0.84s;
}

.animate-title.inview .char:nth-child(22) {
  -webkit-animation-delay: 0.88s;
          animation-delay: 0.88s;
}

.animate-title.inview .char:nth-child(23) {
  -webkit-animation-delay: 0.92s;
          animation-delay: 0.92s;
}

.animate-title.inview .char:nth-child(24) {
  -webkit-animation-delay: 0.96s;
          animation-delay: 0.96s;
}

.animate-title.inview .char:nth-child(25) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.animate-title.inview .char:nth-child(26) {
  -webkit-animation-delay: 1.04s;
          animation-delay: 1.04s;
}

.animate-title.inview .char:nth-child(27) {
  -webkit-animation-delay: 1.08s;
          animation-delay: 1.08s;
}

.animate-title.inview .char:nth-child(28) {
  -webkit-animation-delay: 1.12s;
          animation-delay: 1.12s;
}

.animate-title.inview .char:nth-child(29) {
  -webkit-animation-delay: 1.16s;
          animation-delay: 1.16s;
}

.animate-title.inview .char:nth-child(30) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes kf-animate-chars {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.cover-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8f8f8f;
  opacity: 0;
}

.cover-slide.inview::after {
  opacity: 1;
  -webkit-animation-name: kf-cover-slide;
          animation-name: kf-cover-slide;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes kf-cover-slide {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes kf-cover-slide {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.img-zoom, .bg-img-zoom {
  opacity: 0;
}

.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-animation-name: kf-img-show;
          animation-name: kf-img-show;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}

.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@-webkit-keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}

.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: none;
  -webkit-animation-name: kf-img-show;
          animation-name: kf-img-show;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}

.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(http://localhost:8888/blog/wp-content/uploads/2022/02/土星1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}

.img-bg50::before {
  display: block;
  content: '';
  padding-top: 50%;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
  color: #151515;
}

.mobile-menu .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 38px;
  height: 100px;
  width: 100%;
}

.mobile-menu .logo__img {
  height: 80px;
  width: 30%;
}

.mobile-menu .logo__title {
  width: 60%;
  font-size: 28px;
}

.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}

.mobile-menu__btn > span {
  background-color: #8f8f8f;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}

.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}

.mobile-menu__main {
  padding: 0;
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.mobile-menu__item {
  list-style: none;
  display: block;
  -webkit-transform: translate3d(0, 0, -1000px);
          transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
  opacity: 0;
}

.mobile-menu__link {
  display: block;
  margin-top: 50px;
  color: #151515;
  text-decoration: none !important;
  border-bottom: solid #b7b7b7 1px;
}

.mobile-menu__link .sub-title {
  color: #8f8f8f;
}

.menu-open #container {
  -webkit-transform: translate(-300px, 100px);
          transform: translate(-300px, 100px);
  -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
          box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}

.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}

.menu-open .mobile-menu__item {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.menu-open .mobile-menu__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.menu-open .mobile-menu__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.menu-open .mobile-menu__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.menu-open .mobile-menu__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.menu-open .mobile-menu__item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.menu-open .mobile-menu__btn > span {
  background-color: #8f8f8f;
}

.menu-open .mobile-menu__btn > span:nth-child(1) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
  -webkit-transform: translateY(11px) rotate(135deg);
          transform: translateY(11px) rotate(135deg);
}

.menu-open .mobile-menu__btn > span:nth-child(2) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateX(-18px) scaleX(0);
          transform: translateX(-18px) scaleX(0);
}

.menu-open .mobile-menu__btn > span:nth-child(3) {
  -webkit-transition-delay: 140ms;
          transition-delay: 140ms;
  -webkit-transform: translateY(-11px) rotate(-135deg);
          transform: translateY(-11px) rotate(-135deg);
}

.page__inner {
  width: 80%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 30px;
}

.page__inner__title {
  width: 90%;
  font-size: 20px;
  padding-top: 30px;
  margin: 0 auto;
}

.page__inner__title__h2 {
  padding: 20px 0;
}

.page__inner__box {
  width: 90%;
  margin: 0 auto;
}

.page__inner__box__essay {
  padding: 20px 0;
}

.page__inner__box__back {
  padding-top: 50px;
}

.page__inner__box__back > a {
  font-size: 20px;
  color: #8f8f8f;
}

.page__inner__box__back > a:hover {
  color: #ababab;
  text-decoration: underline;
}

.single__inner {
  width: 80%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 30px;
}

.single__inner__title {
  width: 90%;
  font-size: 20px;
  padding-top: 30px;
  margin: 0 auto;
}

.single__inner__title__h2 {
  padding: 20px 0;
}

.single__inner__title__p {
  margin: 0;
}

.single__inner__box {
  width: 90%;
  margin: 0 auto;
}

.single__inner__box__essay {
  width: 80%;
  padding: 20px 0;
}

.single__inner__box__back {
  padding-top: 50px;
}

.single__inner__box__back > a {
  font-size: 20px;
  color: #8f8f8f;
}

.single__inner__box__back > a:hover {
  color: #ababab;
  text-decoration: underline;
}

.works {
  padding: 50px 0;
}

.works__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  z-index: 0;
}

.works__inner__title {
  width: 90%;
  font-size: 20px;
  padding: 30px 0;
  margin: 0 auto;
}

.works__inner__box {
  width: 90%;
  margin: 0 auto;
}

.works__inner__box__contents {
  padding: 30px 0;
}

.works__inner__box__contents__a {
  display: block;
  color: #8f8f8f;
}

.works__inner__box__contents__a__title {
  font-size: 20px;
  line-height: 25px;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.works__inner__box__contents__a__date {
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 50px;
  padding-left: 10px;
}

.works__inner__box__contents__a:hover {
  color: #ababab;
  text-decoration: underline;
}

body {
  font-family: "Letter Gothic Std", "ヒラギノ角ゴ Pro W3", sans-serif;
  min-width: 100%;
  letter-spacing: 0.2em;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.bg-img-zoom {
  height: 100%;
}

.triggered {
  height: 70px;
  width: 100%;
  background-color: rgba(205, 205, 205, 0.264);
  -webkit-box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}

.font-sm {
  font-size: 14px;
}

.font-md {
  font-size: 17px;
}

.font-lr {
  font-size: 17px;
}

.font-lg {
  font-size: 25px;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mb-lg {
  margin-bottom: 80px !important;
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}

.content-width {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

.br::after {
  content: "\A";
  white-space: pre;
}

#container {
  background-color: #f8f8f4;
  position: relative;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
  transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
  transition: transform 0.5s, box-shadow 0.5s;
  transition: transform 0.5s, box-shadow 0.5s, -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
  color: #8f8f8f;
}

.header {
  position: fixed;
  height: 50px;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  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;
}

.header__inner__logo {
  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;
}

.header__inner__logo .logo__img {
  height: 50px;
  width: 50px;
}

.header__inner__logo .name-1 {
  padding-left: 10px;
}

.header__inner__logo .name-2 {
  padding-left: 10px;
}

.header__inner__nav {
  display: none;
}

.home__inner {
  height: 650px;
  width: 90%;
  margin: 0 auto;
}

.home__inner__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 650px;
}

.home__inner__title__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  color: #636363;
}

.concept {
  background-color: #e6e6e3;
}

.concept__inner {
  width: 80%;
  padding: 30px 0;
  margin: 0 auto;
}

.concept__inner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.concept__inner__text__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.concept__inner__text__box__title {
  font-size: 22px;
  text-align: center;
  padding: 30px 0;
}

.concept__inner__text__box__p {
  padding-bottom: 30px;
}

#content {
  position: relative;
  z-index: -10;
  padding: 30px 0;
}

#content .content__box {
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
}

#content .content-btn {
  text-align: center;
  margin: 30px 0;
}

.profile {
  background-color: #f8f8f4;
}

.profile__box {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}

.profile__box__title {
  padding: 30px 0;
}

.profile__box__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.profile__box__profile__img {
  height: 150px;
  width: 150px;
  background-color: #8383808f;
  border-radius: 50%;
}

.profile__box__profile__contents {
  width: 90%;
}

.profile__box__profile__contents__text {
  padding: 30px 0;
}

.profile__box__profile__contents__text__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
  padding: 10px 0;
  white-space: nowrap;
}

.profile__box__profile__contents__text__name > p {
  width: 45%;
  padding-left: 0px;
}

.footer .about {
  background-color: #e6e6e3;
}

.footer .about__box {
  width: 80%;
  padding: 30px 0;
  margin: 0 auto;
}

.footer .about__box__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .about__box__item__p {
  padding: 10px 0;
}

.footer .about__box__item .sns-icon {
  margin: 30px auto;
}

.footer .about__box__item .sns-icon .twitter {
  color: #8f8f8f;
  padding: 30px;
}

.footer .about__box__item .sns-icon .twitter i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 50px;
}

.footer .about__box__item .sns-icon .twitter i:hover {
  color: #b7b7b7;
  -webkit-transform: translate(-2.5px, -2.5px);
          transform: translate(-2.5px, -2.5px);
  -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
          box-shadow: 5px 5px 0 0 #8f8f8f;
  border-radius: 5px;
}

.footer .about__box__item .sns-icon .instagram {
  color: #8f8f8f;
  padding: 30px;
}

.footer .about__box__item .sns-icon .instagram i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 50px;
}

.footer .about__box__item .sns-icon .instagram i:hover {
  color: #b7b7b7;
  -webkit-transform: translate(-2.5px, -2.5px);
          transform: translate(-2.5px, -2.5px);
  -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
          box-shadow: 5px 5px 0 0 #8f8f8f;
  border-radius: 5px;
}

.footer .about__foot > p {
  position: absolute;
  left: 20px;
  bottom: 5px;
  font-size: 8px;
  letter-spacing: 0.2em;
  margin: 0;
}

.footer .about__foot > p .copy {
  position: absolute;
  left: -12px;
  top: -3px;
  font-size: 15px;
  font-family: sans-serif;
}

@media (min-width: 480px) {
  .swiper-slide {
    height: 300px;
    overflow: hidden;
  }
  .hero {
    padding: 50px 50px;
  }
  .hero__title {
    position: absolute;
    top: 85%;
    left: 50%;
    -webkit-transform: translate(-50%, calc(-50% + 20px));
            transform: translate(-50%, calc(-50% + 20px));
    color: white;
    font-size: 25px;
    z-index: 2;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
    transition: opacity 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
    transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
    transition: opacity 0.3s ease 1s, transform 0.3s ease 1s, -webkit-transform 0.3s ease 1s;
  }
  #content {
    padding: 30px 0;
  }
  #content .content__box {
    width: 80%;
    margin: 0 auto;
    padding-top: 30px;
  }
  #content .content-btn {
    text-align: center;
    margin: 50px 0;
  }
}

@media (min-width: 600px) {
  body {
    font-size: 20px;
  }
  .menu-open #container {
    -webkit-transform: translate(-400px, 100px);
            transform: translate(-400px, 100px);
    -webkit-box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
            box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
  .mobile-menu {
    width: 400px;
  }
  .mobile-menu .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 38px;
    height: 100px;
    width: 100%;
  }
  .mobile-menu .logo__img {
    height: 100px;
    width: 30%;
  }
  .mobile-menu .logo__title {
    width: 60%;
    font-size: 30px;
  }
  .home__inner {
    height: 800px;
  }
  .home__inner__title {
    height: 800px;
  }
  .hero__footer {
    top: 740px;
  }
  .concept__inner {
    width: 80%;
    padding: 50px 0;
  }
  .concept__inner__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .concept__inner__text__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .concept__inner__text__box__title {
    font-size: 26px;
    text-align: center;
    padding: 50px 0;
  }
  .concept__inner__text__box__p {
    padding-bottom: 50px;
    line-height: 40px;
  }
  .swiper-slide {
    height: 450px;
    overflow: hidden;
  }
  .hero {
    padding: 70px 60px;
  }
  .hero__title {
    font-size: 28px;
  }
  #content {
    padding: 50px 0;
  }
  #content .content-btn {
    margin: 50px 0;
  }
  #content .content-btn .btn-cubic {
    padding: 25px 120px;
  }
  .profile__box {
    padding: 50px 0;
  }
  .profile__box__title {
    padding: 50px 0;
  }
  .profile__box__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .profile__box__profile__img {
    height: 200px;
    width: 200px;
    background-color: #8383808f;
    border-radius: 50%;
  }
  .profile__box__profile__contents {
    width: 90%;
  }
  .profile__box__profile__contents__text {
    padding: 50px 0;
    margin-bottom: 20px;
  }
  .profile__box__profile__contents__text__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: nowrap;
        flex-flow: nowrap;
    padding: 10px 0;
    white-space: nowrap;
  }
  .profile__box__profile__contents__text__name > p {
    width: 45%;
    padding-left: 30px;
  }
  .footer .about__box {
    padding: 50px 0;
  }
  .footer .about__box__item__p {
    padding: 30px 0;
  }
  .footer .about__box__item .btn {
    padding: 15px 30px;
  }
  .footer .about__box__item .sns-icon {
    margin: 50px auto;
  }
  .footer .about__box__item .sns-icon .twitter {
    color: #8f8f8f;
    padding: 50px;
  }
  .footer .about__box__item .sns-icon .twitter i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 70px;
  }
  .footer .about__box__item .sns-icon .twitter i:hover {
    color: #b7b7b7;
    -webkit-transform: translate(-2.5px, -2.5px);
            transform: translate(-2.5px, -2.5px);
    -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
            box-shadow: 5px 5px 0 0 #8f8f8f;
    border-radius: 5px;
  }
  .footer .about__box__item .sns-icon .instagram {
    color: #8f8f8f;
    padding: 50px;
  }
  .footer .about__box__item .sns-icon .instagram i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 70px;
  }
  .footer .about__box__item .sns-icon .instagram i:hover {
    color: #b7b7b7;
    -webkit-transform: translate(-2.5px, -2.5px);
            transform: translate(-2.5px, -2.5px);
    -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
            box-shadow: 5px 5px 0 0 #8f8f8f;
    border-radius: 5px;
  }
  .footer .about__foot {
    padding-top: 30px;
  }
  .footer .about__foot > p {
    left: 25px;
    bottom: 5px;
    font-size: 15px;
  }
  .footer .about__foot > p .copy {
    left: -15px;
    top: -5.5px;
    font-size: 22px;
  }
  .works__inner__title {
    font-size: 30px;
  }
  .works__inner__box__contents {
    padding: 80px 0;
  }
  .works__inner__box__contents__a__title {
    font-size: 30px;
    line-height: 35px;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  .works__inner__box__contents__a__date {
    font-size: 30px;
    line-height: 35px;
    padding-bottom: 50px;
    padding-left: 20px;
  }
  .works__inner__box__contents__a:hover {
    color: #ababab;
    text-decoration: underline;
  }
}

@media (min-width: 960px) {
  .mobile-menu__btn {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
  .header {
    position: fixed;
    height: 70px;
    width: 100%;
  }
  .header__inner {
    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;
  }
  .header__inner__logo {
    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;
  }
  .header__inner__logo .logo__img {
    height: 50px;
    width: 50px;
  }
  .header__inner__nav {
    display: block;
    height: 70px;
    width: 65%;
    padding-right: 30px;
  }
  .header__inner__nav__ul {
    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;
    text-align: center;
  }
  .header__inner__nav__ul__li {
    list-style: none;
    width: 30%;
  }
  .header__inner__nav__ul__li__a {
    color: #8f8f8f;
  }
  .header__inner__nav__ul__li__a:hover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translate(-2.5px, -2.5px) !important;
            transform: translate(-2.5px, -2.5px) !important;
    -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
            box-shadow: 5px 5px 0 0 #8f8f8f;
    border-radius: 5px;
    text-decoration: none;
    background-color: #f8f8f4;
    color: #ababab;
    font-size: 1.2em;
  }
  .home__inner {
    height: 900px;
  }
  .home__inner__title {
    height: 900px;
  }
  .home__inner__title__name {
    letter-spacing: 0.4em;
    font-size: 1.1em;
    padding-bottom: 10px;
  }
  .hero__footer {
    top: 840px;
  }
  .concept__inner__text__box__p {
    line-height: 45px;
  }
  #content {
    padding: 50px 0;
  }
  #content .content__box > h2 {
    font-size: 2em;
  }
  #content .content-btn {
    margin: 50px 0;
  }
  .profile__box__title > h2 {
    font-size: 2em;
  }
  .profile__box__profile__img {
    height: 250px;
    width: 250px;
  }
  .profile__box__profile__contents__text {
    font-size: 1.3em;
    padding: 100px 0;
  }
  .profile__box__profile__contents__text__name {
    padding: 15px 0;
  }
  .profile__box__profile__contents__text__name > p {
    width: 45%;
    padding-left: 70px;
    font-size: 1.2em;
  }
  .footer .about__box__title > h2 {
    font-size: 2em;
  }
  .footer .about__box__item__p {
    font-size: 1.3em;
    margin-left: 10%;
  }
  .footer .about__box__item .btn {
    padding: 15px 50px;
  }
  .footer .about__box__item .sns-icon {
    margin: 100px auto;
  }
  .footer .about__box__item .sns-icon .twitter {
    color: #8f8f8f;
    padding: 50px;
  }
  .footer .about__box__item .sns-icon .twitter i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 70px;
  }
  .footer .about__box__item .sns-icon .twitter i:hover {
    color: #b7b7b7;
    -webkit-transform: translate(-2.5px, -2.5px);
            transform: translate(-2.5px, -2.5px);
    -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
            box-shadow: 5px 5px 0 0 #8f8f8f;
    border-radius: 5px;
  }
  .footer .about__box__item .sns-icon .instagram {
    color: #8f8f8f;
    padding: 50px;
  }
  .footer .about__box__item .sns-icon .instagram i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 70px;
  }
  .footer .about__box__item .sns-icon .instagram i:hover {
    color: #b7b7b7;
    -webkit-transform: translate(-2.5px, -2.5px);
            transform: translate(-2.5px, -2.5px);
    -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
            box-shadow: 5px 5px 0 0 #8f8f8f;
    border-radius: 5px;
  }
  .footer .about__foot {
    padding-top: 30px;
  }
  .footer .about__foot > p {
    left: 25px;
    bottom: 5px;
    font-size: 15px;
  }
  .footer .about__foot > p .copy {
    left: -15px;
    top: -5.5px;
    font-size: 22px;
  }
  .works__inner__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .works__inner__box__contents {
    width: 45%;
  }
  .works__inner__box__contents__a__title {
    font-size: 30px;
    line-height: 35px;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  .works__inner__box__contents__a__date {
    font-size: 30px;
    line-height: 35px;
    padding-bottom: 50px;
    padding-left: 20px;
  }
  .works__inner__box__contents__a:hover {
    color: #ababab;
    text-decoration: underline;
  }
}

@media (min-width: 1280px) {
  .home__inner {
    height: 1000px;
  }
  .home__inner__title {
    height: 1000px;
  }
  .home__inner__title__name {
    letter-spacing: 0.4em;
    font-size: 1.3em;
    padding-bottom: 10px;
  }
  .home__inner__title__h3 {
    font-size: 1.5em;
  }
  .hero__footer {
    top: 940px;
  }
  .concept__inner__text__box__title {
    font-size: 1.7em;
  }
  .concept__inner__text__box__p {
    line-height: 60px;
    font-size: 1.4em;
  }
  #content {
    padding: 50px 0;
  }
  #content .content__box > h2 {
    font-size: 2.5em;
  }
  #content .content-btn {
    margin: 50px 0;
  }
  .profile__box__title > h2 {
    font-size: 2.5em;
  }
  .profile__box__profile__img {
    height: 250px;
    width: 250px;
  }
  .profile__box__profile__contents__text {
    font-size: 1.5em;
    padding: 100px 0;
  }
  .footer .about__box__title > h2 {
    font-size: 2.5em;
  }
  .footer .about__box__item__p {
    font-size: 1.5em;
    margin-left: 10%;
  }
  .footer .about__box__item .btn {
    padding: 20px 70px;
  }
  .footer .about__box__item .sns-icon {
    margin: 100px auto;
  }
  .footer .about__box__item .sns-icon .twitter {
    color: #8f8f8f;
    padding: 50px;
  }
  .footer .about__box__item .sns-icon .twitter i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 85px;
  }
  .footer .about__box__item .sns-icon .twitter i:hover {
    color: #b7b7b7;
    -webkit-transform: translate(-2.5px, -2.5px);
            transform: translate(-2.5px, -2.5px);
    -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
            box-shadow: 5px 5px 0 0 #8f8f8f;
    border-radius: 5px;
  }
  .footer .about__box__item .sns-icon .instagram {
    color: #8f8f8f;
    padding: 50px;
  }
  .footer .about__box__item .sns-icon .instagram i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 85px;
  }
  .footer .about__box__item .sns-icon .instagram i:hover {
    color: #b7b7b7;
    -webkit-transform: translate(-2.5px, -2.5px);
            transform: translate(-2.5px, -2.5px);
    -webkit-box-shadow: 5px 5px 0 0 #8f8f8f;
            box-shadow: 5px 5px 0 0 #8f8f8f;
    border-radius: 5px;
  }
  .footer .about__foot {
    padding-top: 30px;
  }
  .footer .about__foot > p {
    left: 25px;
    bottom: 5px;
    font-size: 15px;
  }
  .footer .about__foot > p .copy {
    left: -15px;
    top: -5.5px;
    font-size: 22px;
  }
  .works__inner {
    padding: 80px 0;
  }
  .works__inner__title {
    font-size: 35px;
  }
  .works__inner__box__contents__a__title {
    font-size: 30px;
    line-height: 35px;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  .works__inner__box__contents__a__date {
    font-size: 30px;
    line-height: 35px;
    padding-bottom: 50px;
    padding-left: 20px;
  }
  .works__inner__box__contents__a:hover {
    color: #ababab;
    text-decoration: underline;
  }
  .single__inner__title__h2 {
    font-size: 1.5em;
    margin: 30px 0;
  }
  .single__inner__title__p {
    font-size: 1.2em;
  }
  .single__inner__box {
    font-size: 1.2em;
  }
  .single__inner__essay {
    padding: 50px 0;
  }
  .single__inner__back {
    padding-top: 100px;
  }
  .single__inner__back > a {
    font-size: 30px;
    color: #8f8f8f;
  }
  .single__inner__back > a:hover {
    color: #ababab;
    text-decoration: underline;
  }
}
/*# sourceMappingURL=style.css.map */