@charset "UTF-8";
/* Scss Document */
/* --------------------------------
 * BASE
 * -------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF;
  color: #0C0C0C;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1, h2, h3,
ul, li, p {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

a.button {
  display: inline-block;
  line-height: 2.5rem;
  padding: 0 1.5rem;
  margin-top: 1rem;
  color: white;
  background: #3c3c3c;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

/* Font Size ----------------- */
body {
  font-size: calc(1rem + ((1vw - 4px) * 0.2273));
}

.c-text--xl {
  font-size: calc(1.375rem + ((1vw - 4px) * 1.1364));
}

.c-text--l {
  font-size: calc(1.125rem + ((1vw - 4px) * 0.6818));
}

.c-text--s {
  font-size: 14px;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 18px;
  }
  .c-text--xl {
    font-size: 32px;
  }
  .c-text--l {
    font-size: 24px;
  }
  .c-text--s {
    font-size: 15px;
  }
}

@media screen and (max-width: 400px) {
  body {
    font-size: 14px;
  }
  .c-text--xl {
    font-size: 22px;
  }
  .c-text--l {
    font-size: 16px;
  }
  .c-text--s {
    font-size: 12px;
  }
}

/* Window Size ----------------- */
.w-base {
  margin: 0 auto;
  max-width: 1280px;
}

@media screen and (max-width: 768px) {
  .w-base {
    max-width: 768px;
  }
}

@media screen and (min-width: 1280px) {
  .w-base {
    max-width: 1280px;
  }
}

/* --------------------------------
 * Style
 * -------------------------------- */
.tmb {
  overflow: hidden;
}

.tmb img {
  -webkit-transition: .3s;
  transition: .3s;
  vertical-align: middle;
}

.tmb img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* --------------------------------
 * JS
 * -------------------------------- */
/* basicScroll -------------------- */
.scene {
  position: absolute;
  -webkit-transform: translate(-50%, var(--translateY));
          transform: translate(-50%, var(--translateY));
  will-change: transform;
}

/* Scrollanimation -------------------- */
.about__body .animation,
.works__movie .animation,
.works__site .animation,
.works__banner .animation {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1s ease-in-out .2s;
  transition: all 1s ease-in-out .2s;
}

.about__body .animation.show,
.works__movie .animation.show,
.works__site .animation.show,
.works__banner .animation.show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.about__body {
  overflow: hidden;
}

.about__body .animation {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all .5s ease-in .5s;
  transition: all .5s ease-in .5s;
}

.about__body .animation.show {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.works__title, .works__subtitle {
  overflow: hidden;
}

.works__title .animation, .works__subtitle .animation {
  -webkit-transform: translate(0, 1em);
          transform: translate(0, 1em);
  -webkit-transition: all .8s;
  transition: all .8s;
  display: inline-block;
}

.works__title .animation.show, .works__subtitle .animation.show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* --------------------------------
 * CONTENT
 * -------------------------------- */
/* Header -------------------- */
header {
  text-align: center;
  padding: 0;
  height: 70vw;
  position: relative;
  background: url("../images/top-bg.png"), linear-gradient(117deg, #ffd6d6 19%, #fed5d6 19%, #c7b8ff 84%);
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  header {
    min-height: 590px;
    height: 40vw;
  }
}

@media screen and (min-width: 1280px) {
  header {
    max-height: 560px;
  }
}

.header__body,
.header__figure {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.header__body {
  top: 40%;
  left: 50%;
  color: #fffd22;
}

@media screen and (min-width: 768px) {
  .header__body {
    top: 180px;
  }
}

.header__body h1 {
  line-height: 1;
  font-family: "Alex Brush", cursive;
  font-size: calc(100vw / 6);
}

@media screen and (min-width: 768px) {
  .header__body h1 {
    font-size: 9rem;
  }
}

@media screen and (min-width: 1280px) {
  .header__body h1 {
    font-size: calc(100vw / 12);
  }
}

.header__body span {
  display: block;
  text-indent: -1rem;
}

.header__body .header__subtitle {
  font-family: "Roboto", sans-serif;
  letter-spacing: 4px;
  font-size: calc(100vw / 50);
}

@media screen and (min-width: 1280px) {
  .header__body .header__subtitle {
    font-size: 1.6rem;
  }
}

.header__figure {
  top: 15%;
  left: 0;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .header__figure {
    top: 80px;
  }
}

.header__figure .top-chara {
  width: 60vw;
  max-width: 400px;
  min-width: 100px;
}

@media screen and (min-width: 768px) {
  .header__figure .top-chara {
    max-width: 500px;
  }
}

@media screen and (min-width: 1280px) {
  .header__figure .top-chara {
    max-width: 450px;
  }
}

.header__figure .top-bg {
  width: 96vw;
  max-width: 600px;
  min-width: 150px;
  opacity: .7;
}

.inner-header {
  height: 15vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 400px) {
  .inner-header {
    height: 32vh;
  }
}

@media screen and (min-width: 1280px) {
  .inner-header {
    height: 20vh;
  }
}

.flex {
  /*Flexbox for containers*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.header-wave {
  z-index: -10;
}

/* Animation */
.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

section {
  padding: 0 6%;
}

/* About -------------------- */
.about__body {
  padding: 0 5% 5% 5%;
}

@media screen and (min-width: 768px) {
  .about__body {
    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;
  }
}

.about__card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 2px 2px rgba(0, 0, 0, 0.02), 0 4px 6px rgba(0, 0, 0, 0.02), 0 6px 8px rgba(0, 0, 0, 0.04), 0 8px 10px rgba(0, 0, 0, 0.04), 0 8px 12px rgba(0, 0, 0, 0.04);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 2px 2px rgba(0, 0, 0, 0.02), 0 4px 6px rgba(0, 0, 0, 0.02), 0 6px 8px rgba(0, 0, 0, 0.04), 0 8px 10px rgba(0, 0, 0, 0.04), 0 8px 12px rgba(0, 0, 0, 0.04);
  padding: 6% 2%;
  margin: 24px 0 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about__card {
    width: 48%;
  }
}

@media screen and (min-width: 1280px) {
  .about__card {
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.02), 0 4px 4px rgba(0, 0, 0, 0.02), 0 10px 8px rgba(0, 0, 0, 0.02), 0 10px 10px rgba(0, 0, 0, 0.04), 0 15px 15px rgba(0, 0, 0, 0.04), 0 15px 15px rgba(0, 0, 0, 0.04);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.02), 0 4px 4px rgba(0, 0, 0, 0.02), 0 10px 8px rgba(0, 0, 0, 0.02), 0 10px 10px rgba(0, 0, 0, 0.04), 0 15px 15px rgba(0, 0, 0, 0.04), 0 15px 15px rgba(0, 0, 0, 0.04);
  }
}

.about__title {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about__title {
    font-size: 1.8rem;
  }
}

.card,
.banner__item {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.01), 0 4px 4px rgba(0, 0, 0, 0.01), 0 10px 8px rgba(0, 0, 0, 0.02), 0 8px 8px rgba(0, 0, 0, 0.02), 0 20px 20px rgba(0, 0, 0, 0.04), 0 20px 25px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.01), 0 4px 4px rgba(0, 0, 0, 0.01), 0 10px 8px rgba(0, 0, 0, 0.02), 0 8px 8px rgba(0, 0, 0, 0.02), 0 20px 20px rgba(0, 0, 0, 0.04), 0 20px 25px rgba(0, 0, 0, 0.04);
}

.about__item {
  margin-top: .5rem;
}

.about__item .item__title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.about__item .item__text {
  font-size: 13px;
}

.about__item span {
  position: relative;
  padding-left: 2rem;
  display: inline-block;
}

.about__item span::before {
  content: "";
  display: inline-block;
  background-color: #0C0C0C;
  height: 1px;
  width: 1.5rem;
  position: absolute;
  left: 5%;
  bottom: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about__icon img {
  width: 32px;
}

/* Works  -------------------- */
.importer {
  background-color: #F3F3F3;
}

.works .card {
  border-radius: 4px;
  background-color: #FFF;
  padding: 16px;
  margin: 0 auto 16px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .works .card {
    width: 48%;
    font-size: 16px;
  }
}

.works .card__figure {
  line-height: 0;
  margin-bottom: .5rem;
}

.works .card__figure video {
  width: 100%;
}

.works__site .card__figure {
  overflow: hidden;
  height: 40vw;
}

@media screen and (min-width: 768px) {
  .works__site .card__figure {
    height: 20vw;
    max-height: 280px;
  }
}

.works__site .card__figure img {
  -o-object-fit: cover;
     object-fit: cover;
}

.works__title {
  font-size: 3rem;
  font-family: "Alex Brush", cursive;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .works__title {
    font-size: 4rem;
  }
}

.works__subtitle {
  text-align: center;
  position: relative;
  padding-top: 1em;
  margin: 32px 0 8px;
}

@media screen and (min-width: 768px) {
  .works__subtitle {
    padding-top: 1.5em;
    margin: 32px 0 16px;
  }
}

.works__number {
  color: #D7B8FF;
  font-size: 48px;
  font-family: "Alex Brush", cursive;
  margin: 0 auto;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .works__number {
    font-size: 4rem;
  }
}

.works__letter {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .works__letter {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .works__movie,
  .works__site {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
  }
  .works .card__text {
    color: #535353;
    font-size: 14px;
  }
}

/* Banner  -------------------- */
.banner__list {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner__list .banner__item {
  background-color: #fff;
  border: 8px solid #fff;
  border-radius: 4px;
  text-align: center;
  line-height: 0;
  margin: 0 0 8px 0;
  width: 49%;
  overflow: hidden;
  max-height: 30vw;
}

@media screen and (min-width: 768px) {
  .banner__list .banner__item {
    width: 24%;
    max-height: 250px;
  }
}

.banner__list img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* Footer -------------------- */
footer {
  background-color: #262626;
  text-align: center;
}

footer .profile {
  padding: 64px;
}

/* Loading -------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #f5ea54;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  position: fixed;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
          animation: sk-scaleout 1.0s infinite ease-in-out;
}

.loaded {
  top: -100vh !important;
}

.loaded .spinner {
  opacity: 0;
}

/* animation */
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

/* Nav -------------------- */
.inner:after {
  content: "";
  clear: both;
  display: block;
}

/* header */
#top-head {
  top: -100px;
  position: absolute;
  width: 100%;
  margin: 100px auto 0;
  padding: 50px 0 0;
  line-height: 1;
  z-index: 999;
}

#top-head a,
#top-head {
  color: #fff;
  text-decoration: none;
}

#top-head .inner {
  position: relative;
}

#top-head .logo {
  float: left;
  font-size: 36px;
}

#global-nav ul {
  list-style: none;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
}

#global-nav ul li {
  float: left;
}

#global-nav ul li a {
  margin: 0 2rem;
}

/* Fixed */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  padding-top: 35px;
  height: 55px;
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}

#top-head.fixed #global-nav ul li a {
  color: #333;
  margin: 1rem 2rem;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #8e7fb0;
  border-radius: 10px;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

@media screen and (max-width: 640px) {
  #top-head,
  .inner {
    width: 100%;
    padding: 0;
  }
  #top-head {
    top: 0;
    position: fixed;
    margin-top: 0;
  }
  /* Fixed reset */
  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    height: 56px;
    z-index: 999;
    position: relative;
    width: 80px;
    margin: 0 0 0 auto;
  }
  #top-head.fixed .logo,
  #top-head .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    color: #333;
    font-size: 26px;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -560px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #top-head #global-nav ul li a,
  #top-head.fixed #global-nav ul li a {
    width: 100%;
    color: #0C0C0C;
    display: block;
    margin: 2rem 0;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }
}
/*# sourceMappingURL=style.css.map */