@charset "UTF-8";
@media (max-width: 769px) {
  .sp-none {
    display: none !important;
  }
}
.section-title {
  text-align: center;
  padding: 48px 0;
}
.section-title h2 {
  color: #4D4D4D;
  font-size: 35px;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
.section-title p {
  padding-top: 12px;
  color: #343434;
  font-size: 14px;
}

#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
  mix-blend-mode: difference;
}
#mouse-stalker.is_active {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  transition: 0.2s;
}

.content {
  display: flex;
  height: calc(100vh - 90px);
}

.content_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background: #000;
}
.content_left .link-item {
  display: block;
  padding: 20px;
  margin: 10px 0 0;
  color: #000;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
}
.content_left p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.content_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background: #fff;
}
.content_right .link-item {
  display: block;
  padding: 20px;
  margin: 10px 0 0;
  color: #fff;
  background: #000;
  border-radius: 50px;
  text-decoration: none;
}
.content_right p {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

/*== 波紋がふわっと広がる */
.btnripple3 {
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  display: inline-block;
  margin: 0;
  text-decoration: none;
  color: #333;
  outline: none;
}

/*波形の設定*/
.btnripple3:hover::before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: 30%;
  top: 0;
  /*波形の形状*/
  border: 1px solid #333;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*アニメーションの設定*/
  animation: 1s circleanime2 forwards;
}

/*波形が広がるアニメーション*/
@keyframes circleanime2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*==================================================
じわっ
===================================*/
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

header {
  z-index: 2;
  position: fixed;
  width: 100%;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  min-height: 50px;
  background: transparent;
}

#headerLogo {
  position: fixed;
  z-index: 10000;
  display: table;
  left: 15px !important;
  right: 0;
  top: 10px !important;
  color: #fff;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  mix-blend-mode: exclusion;
}
#headerLogo:hover {
  text-decoration: none;
}

header .btn {
  position: relative;
  right: 70px;
  top: 10px;
  float: right;
}

.headerOne::after {
  content: "";
  clear: both;
  display: block;
}

@media (max-width: 769px) {
  header {
    z-index: 2;
    position: fixed;
    width: 100%;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    min-height: 50px;
    background: transparent;
  }

  #headerLogo {
    position: fixed;
    z-index: 10000;
    display: table;
    left: 15px !important;
    right: 0;
    top: 10px !important;
    color: #fff;
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    mix-blend-mode: exclusion;
  }
  #headerLogo:hover {
    text-decoration: none;
  }

  header .btn {
    position: relative;
    right: 70px;
    top: 10px;
    float: right;
  }

  .headerOne::after {
    content: "";
    clear: both;
    display: block;
  }

  .gNav ul {
    margin: 40px 0 20px;
  }
  .gNav ul a {
    display: block;
    align-items: center;
    color: #fff;
    padding: 20px 10px;
    width: 50%;
    font-size: 15px;
  }
}
@keyframes Logoanime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#contact {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 60vh;
  background-color: #f9f9f9;
}
#contact .boxInner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#contact .boxInner .pitch-intro {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
#contact .brandRegFormBox {
  padding: 4%;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border: transparent;
  max-width: none;
  margin-left: 4%;
  margin-right: 4%;
  box-sizing: border-box;
}
#contact .brandRegFormBox .fieldset {
  margin-bottom: 30px;
}
#contact .brandRegFormBox .formGroup label {
  display: block;
  text-align: left;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 769px) {
  #contact {
    text-align: left;
  }
  #contact h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  #contact p {
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: 0.13rem;
  }
  #contact small {
    font-size: 8px;
  }
}

.pitch-intro-done {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 50px;
  padding: 20vh 0 10vh;
  text-align: center;
}

.donemessage {
  padding-bottom: 10vh;
}
.donemessage p {
  font-size: 18px;
  margin: 10px;
  text-align: center;
}
@media (max-width: 769px) {
  .donemessage p {
    font-size: 10px;
    margin: 10px;
    text-align: center;
  }
}

footer {
  padding: 60px 120px;
  margin: 0 auto;
  background: linear-gradient(45deg, #000, #6C6C6C, #DDDDDD);
  /*グラデーションを定義*/
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  animation: bggradient 15s ease infinite;
}
footer .footer-message {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: solid 2px #fff;
}
footer .footer-message h2 {
  color: #fff;
  font-size: 20px;
}
footer .footer-message img {
  width: 70%;
}
footer .footerl-ink-address {
  color: #FFFFFF;
  font-size: 14px;
  display: grid;
  grid-template-columns: 50% 50%;
  line-height: 2;
}
footer .footerl-ink-address a {
  color: #fff;
}
footer .copyrights {
  font-size: 12px;
  padding-top: 40px;
  color: #fff;
  text-align: center;
}

@media (max-width: 769px) {
  footer {
    padding: 60px 120px;
    margin: 0 auto;
    background: linear-gradient(45deg, #000, #6C6C6C, #DDDDDD);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 15s ease infinite;
  }
  footer .footer-message {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: solid 2px #fff;
  }
  footer .footer-message h2 {
    color: #fff;
    font-size: 15px;
  }
  footer .footer-message img {
    margin: 24px 0;
    width: 150px;
  }
  footer .footerl-ink-address {
    color: #FFFFFF;
    font-size: 12px;
    display: grid;
    grid-template-columns: 50% 50%;
    line-height: 2;
  }
  footer .footerl-ink-address a {
    color: #fff;
  }
  footer .list-unstyled {
    padding-left: 24px;
  }
  footer .copyrights {
    font-size: 12px;
    padding-top: 40px;
    color: #fff;
    text-align: center;
  }
}
.footerContact {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  background-color: #F9F9F9;
}

.contactFormLead p {
  font-size: 16px;
  text-align: center;
  margin: 0 0px 30px 0;
}

.footerContact h2 {
  font-size: 21px;
  line-height: 1.8;
  letter-spacing: 2px;
  margin: 0 0px 30px 0;
  font-weight: bold;
  text-align: center;
}

.footerContact .btn {
  font-size: 18px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  box-sizing: border-box;
  border: #262626 solid 2px;
  background-color: #FFFFFF;
  color: #262626;
}

.form .btn-action.btn-default {
  border: solid #09005c 1px;
  color: #09005c;
  background-color: #FFFFFF;
  font-weight: bold;
}

/*背景色グラデーション*/
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.slideshow {
  position: absolute;
  height: 120vh;
  width: 100%;
  overflow: hidden;
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 120vh;
  background: no-repeat 50% 50%;
  background-size: cover;
  animation-name: kenburns;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 480s;
  opacity: 1;
  transform: scale(1.2);
}
.slideshow-image:nth-child(1) {
  animation-name: kenburns-1;
  z-index: 1;
}
.slideshow-image:nth-child(2) {
  animation-name: kenburns-2;
  z-index: 0;
}

@media (max-width: 769px) {
  .slideshow {
    position: absolute;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .slideshow-image {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: no-repeat 50% 50%;
    background-size: cover;
    animation-name: kenburns;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 480s;
    opacity: 1;
    transform: scale(1.2);
  }
  .slideshow-image:nth-child(1) {
    animation-name: kenburns-1;
    z-index: 1;
  }
  .slideshow-image:nth-child(2) {
    animation-name: kenburns-2;
    z-index: 0;
  }
}
@keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  0.2083333333% {
    opacity: 1;
  }
  49.7916666667% {
    opacity: 1;
  }
  50.2083333333% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
  99.7916666667% {
    opacity: 0;
    transform: scale(1.2008298755);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kenburns-2 {
  49.7916666667% {
    opacity: 1;
    transform: scale(1.2);
  }
  50.2083333333% {
    opacity: 1;
  }
  99.7916666667% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 99;
  text-align: center;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.5);
  padding: 1em 2em;
  line-height: 1.5;
}
h5 small {
  display: block;
  text-transform: lowercase;
  font-size: 0.7em;
}
h5 small:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 0.5em;
}
h5 small:last-child {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 0.5em;
}

.sllide__container {
  position: relative;
}

#work {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
  box-sizing: border-box;
  background-color: #fff;
}
#work ul {
  width: 100%;
}
#work ul li {
  width: 100%;
  margin-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#work ul li .work-box {
  display: flex;
  width: 100%;
}
#work ul li .work-box .fadeLeftTrigger, #work ul li .work-box .fadeRightTrigger {
  width: 50%;
  object-fit: cover;
}
#work ul li .work-box .textBox {
  display: flex;
  flex-direction: column;
  width: 50%;
}
#work ul li .work-box .textBox h3 {
  padding-top: 12px;
  margin-bottom: 24px;
  color: #343434;
  font-size: 20px;
  font-weight: 700;
}
#work ul li .work-box .textBox p {
  margin-bottom: 12px;
  line-height: 2.25;
  color: #343434;
  font-size: 14px;
}
#work ul li .work-box .right {
  padding-left: 48px;
}
#work ul li .work-box .left {
  padding-right: 48px;
}

@media (max-width: 768px) {
  #work {
    width: 100%;
    margin: 0 auto;
    padding: 12px;
  }
  #work ul li {
    margin-bottom: 48px;
  }
  #work ul li .work-box {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  #work ul li .work-box .fadeLeftTrigger, #work ul li .work-box .fadeRightTrigger {
    width: 100%;
    object-fit: cover;
  }
  #work ul li .work-box .textBox {
    display: flex;
    width: 100%;
    opacity: 1;
  }
  #work ul li .work-box .textBox h3 {
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 12px;
    color: #343434;
    font-size: 15px;
    font-weight: 700;
  }
  #work ul li .work-box .textBox p {
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 2;
    color: #343434;
    font-size: 12px;
  }
  #work ul li .work-box .right {
    padding-left: 0;
  }
  #work ul li .work-box .left {
    padding-right: 0;
  }
  #work ul li .reverse {
    flex-direction: column-reverse;
  }
}
/*==================================================
ふわっ
===================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#about {
  background: linear-gradient(10deg, #9a1117, #1d4763, #343434);
  /*グラデーションを定義*/
}
#about .section-title {
  text-align: left;
}
#about .section-title h2 {
  color: #fff;
  font-weight: bold;
}
#about .aboutBox .mvvBox {
  padding-left: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}
#about .aboutBox .mvvBox h2 {
  font-size: 35px;
  letter-spacing: 8px;
  margin-bottom: 60px;
  line-height: 1;
  font-weight: 300;
}
#about .aboutBox .mvvBox .txt {
  display: grid;
  grid-template-columns: 250px 1fr;
  color: #fff;
}
#about .aboutBox .mvvBox .txt p {
  padding-left: 100px;
  position: relative;
  font-size: 20px;
  line-height: 2;
  font-weight: 300;
  font-size: 1.5rem;
  word-break: break-all;
}
#about .aboutBox .mvvBox .txt p::before {
  content: "";
  width: 80px;
  position: absolute;
  height: 1px;
  background-color: #fff;
  left: 0;
  top: 21px;
}
#about .aboutBox .philosphyBox {
  bottom: 0;
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  color: #fff;
  line-height: 2;
  padding-left: 100px;
  padding-bottom: 100px;
  margin-bottom: 0;
  font-weight: 300;
}
#about .aboutBox .philosphyBox h2 {
  font-size: 35px;
  padding-bottom: 30px;
  position: relative;
  letter-spacing: 3px;
}
#about .aboutBox .philosphyBox h2::after {
  width: 80px;
  position: absolute;
  height: 1px;
  background-color: #FFFFFF;
  bottom: 20px;
  left: 0;
  content: "";
}
#about .aboutBox .philosphyBox p {
  font-size: 20px;
  margin: 10px 0;
}

@media (max-width: 769px) {
  #about {
    background: linear-gradient(10deg, #9a1117, #1d4763, #343434);
    /*グラデーションを定義*/
  }
  #about .section-title {
    text-align: left;
  }
  #about .section-title h2 {
    color: #fff;
    font-weight: bold;
  }
  #about .aboutBox .mvvBox {
    padding-left: 24px;
    padding-top: 10px;
    padding-bottom: 48px;
  }
  #about .aboutBox .mvvBox h2 {
    font-size: 24px;
    letter-spacing: 8px;
    margin-bottom: 24px;
    line-height: 1;
    font-weight: 300;
  }
  #about .aboutBox .mvvBox .txt {
    display: flex;
    flex-direction: column;
    color: #fff;
  }
  #about .aboutBox .mvvBox .txt p {
    padding-left: 40px;
    position: relative;
    font-size: 15px;
    line-height: 2;
    font-weight: 300;
    word-break: break-all;
  }
  #about .aboutBox .mvvBox .txt p::before {
    content: "";
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #fff;
    left: 0;
    top: 21px;
  }
  #about .aboutBox .philosphyBox {
    bottom: 0;
    background-size: 200%;
    /*サイズを大きくひきのばす*/
    color: #fff;
    line-height: 2;
    padding-left: 24px;
    padding-bottom: 48px;
    margin-bottom: 0;
    font-weight: 300;
  }
  #about .aboutBox .philosphyBox h2 {
    font-size: 24px;
    padding-bottom: 10px;
    position: relative;
    letter-spacing: 3px;
  }
  #about .aboutBox .philosphyBox h2::after {
    width: 80px;
    position: absolute;
    height: 1px;
    background-color: #FFFFFF;
    bottom: 5px;
    left: 0;
    content: "";
  }
  #about .aboutBox .philosphyBox p {
    font-size: 15px;
    margin: 10px 0;
  }
}
/*========= タイピング ===============*/
.TextTyping span {
  display: none;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#key-v {
  box-sizing: border-box;
  width: 100vw;
  height: 120vh;
  overflow: hidden;
}
#key-v video {
  height: 120vh;
  object-fit: cover;
  box-sizing: border-box;
  overflow: hidden;
}
#key-v .key-msg .scroll-box {
  z-index: 9999;
  position: absolute;
  top: 70vh;
  right: 5%;
  opacity: 1;
  animation: scrolling 3s infinite;
}
#key-v .key-msg .scroll-box img {
  width: 9px;
  height: auto;
}
#key-v .key-msg .scroll-box:after {
  width: 1px;
  height: 120px;
  background-color: #FFFFFF;
  content: "";
  position: absolute;
  left: 4px;
  top: 66px;
}
#key-v .key-msg__box {
  z-index: 1000;
  position: relative;
  top: 50vh;
  left: 5vw;
}
#key-v .key-msg__box h3 {
  color: #fff;
  font-size: 35px;
  font-weight: 800;
  filter: drop-shadow(2px 2px 4px #777777);
}
#key-v .key-msg__box p {
  color: #fff;
  font-size: 20px;
  filter: drop-shadow(2px 2px 4px #777777);
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  color: #343434;
}

/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #343434;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
  height: 2px;
}

#splash h1 {
  position: relative;
  text-align: center;
  top: 40vh;
  color: #343434;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (max-width: 769px) {
  #key-v {
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  #key-v video {
    height: 100vh;
    object-fit: contain;
    box-sizing: border-box;
    overflow: hidden;
  }
  #key-v .key-msg .scroll-box {
    z-index: 9999;
    position: absolute;
    top: 70vh;
    right: 5%;
    opacity: 1;
    animation: scrolling 3s infinite;
  }
  #key-v .key-msg .scroll-box img {
    width: 9px;
    height: auto;
  }
  #key-v .key-msg .scroll-box:after {
    width: 1px;
    height: 120px;
    background-color: #FFFFFF;
    content: "";
    position: absolute;
    left: 4px;
    top: 66px;
  }
  #key-v .key-msg__box {
    z-index: 1000;
    position: relative;
    top: 40vh;
    left: 5vw;
  }
  #key-v .key-msg__box h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    filter: drop-shadow(2px 2px 4px #777777);
  }
  #key-v .key-msg__box p {
    color: #fff;
    font-size: 15px;
    filter: drop-shadow(2px 2px 4px #777777);
  }
}
.scroll-box {
  -webkit-animation: scrolling 3s infinite;
  animation: scrolling 3s infinite;
}

.scroll-box::after {
  -webkit-animation: scrollingBar 3s infinite;
  animation: scrollingBar 3s infinite;
}

@-webkit-keyframes scrolling {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes scrollingBar {
  0% {
    height: 80px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 80px;
  }
}
.randomAnime {
  visibility: hidden;
}

/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
ランダムにテキスト出現する
===================================*/
.TextRandomAnime span {
  opacity: 0;
}

.TextRandomAnime.appearRandomtext span {
  animation: text_randomanime_on 0.5s ease-out forwards;
}

@keyframes text_randomanime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.TextRandomAnime.appearRandomtext span:nth-child(2n) {
  animation-delay: 0.5s;
  /* spanのついた2の倍数の文字列の変化を0.5秒遅らせる*/
}

.TextRandomAnime.appearRandomtext span:nth-child(3n+1) {
  animation-delay: 0.15s;
  /* spanのついた3の倍数＋1の文字列の変化を0.15秒遅らせる*/
}

#clients {
  width: 100%;
  padding-bottom: 72px;
  background-color: #fff;
}
#clients #clients-slick-1 {
  margin-bottom: 24px;
}
#clients #clients-slick-1 .slick-slide img {
  width: 100%;
}
#clients #clients-slick-2 .slick-slide img {
  width: 100%;
}

/*# sourceMappingURL=styles.css.map */
