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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 1200px;
  letter-spacing: 2px;
font-family: "futura-pt", sans-serif;
font-style: normal;
overflow-x: hidden;

}
.pc{
  display: block;
}
.sp{
  display: none;
}
.list {
  display: flex;
  flex-wrap: wrap;
}
.item {
  position: relative;
  width: 33.33334%;
  text-align: center;
  box-sizing: border-box;
  counter-increment: item;
  z-index: 9999;
}
.item:after {
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  content: counter(item);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  display: none;
}
@media only screen and (max-width: 768px) {
  .list {
    display: block;
  }
  .item {
    width: auto;
  }
}



.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: fixed;
  top: 90px;
  right: 90px;
  width: 60px;
  height: 44px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #707070;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 20px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

#menu11 span:nth-of-type(1) {
  animation: menu11-bar01 .5s forwards;
}
@keyframes menu11-bar01 {
  0% {
    transform: translateY(20px) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu11 span:nth-of-type(2) {
  animation: menu11-bar02 .5s forwards;
}
@keyframes menu11-bar02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#menu11 span:nth-of-type(3) {
  animation: menu11-bar03 .5s forwards;
}
@keyframes menu11-bar03 {
  0% {
    transform: translateY(-20px) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu11::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 1px solid rgba(68, 66, 66, 0.3);
  transition: all .1s;
  opacity: 0;
}
#menu11.active::after {
  animation: circle .5s;
}
@keyframes circle {
  0% {
    transform: scale(.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
#menu11.active span:nth-of-type(1) {
  animation: active-menu11-bar01 .5s .5s forwards;
}
@keyframes active-menu11-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(20px) rotate(-45deg);
  }
}
#menu11.active span:nth-of-type(2) {
  animation: active-menu11-bar02 .5s .5s forwards;
}
@keyframes active-menu11-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#menu11.active span:nth-of-type(3) {
  animation: active-menu11-bar03 .5s .5s forwards;
}
@keyframes active-menu11-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-20px) rotate(45deg);
  }
}
/*header*/
.header-logo{
  position: fixed;
  width: 200px;
  top: 50px;
  left: 100px;
  z-index: 9999;
}
.header-logo img{
  width: 100%;
}
/*nav*/
#nav-wrap{
  height: 100vh;
  width: 100vw;
  background-color: #ffffff;
  z-index: 9998;
  display: none;
  position: fixed;
}
#nav-wrap ul{
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#nav-wrap ul li{
  margin-bottom: 30px;
  text-align: center;
}
#nav-wrap ul li a{
  color: #878181;
  font-size: 30px;
  transition: ease 1s;
}
#nav-wrap ul li a:hover{
  color: #000;
}
/*top-view*/
.kv{
  height: 1000px;
  width: 100vw;
  background-color: #F2EDDD;
  position: relative;
}
.kv-flex{
  display: flex;
}
.kv-l{
  width: 50vw;
  height: 1000px;

  z-index: 1;
}
.kv-l-inner{
  margin-top: 150px;
  margin-left: 100px;
  overflow: hidden;
}
.kv-l h2{
  white-space: nowrap;
  font-size: 120px;
  line-height: 140px;
  color: #878181;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 20px;
}
.kv-l p{
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  white-space: nowrap;
  color: #878181;
  margin-bottom: 100px;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.ani-move{
  animation: loop 50s -25s linear infinite;
  font-size: 40px !important;
  margin-bottom: 0px !important;
  color: #B9B9B9 !important;
}
.kv-r{
  width: 50vw;
  height: 1000px;
  background-color: #F2EDDD;
  z-index: 2;
  border-left: 2px solid #707070;
}
.kv-r-inner{
  margin-top: 150px;
  margin-left: 100px;
  display: flex;
}
.kv-r-logo{
  width: 300px;
}
.kv-r-logo img{
  width: 300px;
}
.kv-r-inner ul{
  font-weight: 700;

}
.kv-r-inner ul li{
  margin-bottom: 20px;
  font-weight: 500;

}
.kv-r-inner ul li a{
  color: #878181;
  font-size: 50px;
  transition: ease 1s;
}
.kv-r-inner ul li a:hover{
  color: #000;
}
.circle1{
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background-color: #878181;
  position: absolute;
  bottom: 10%;
  right: 28%;
  z-index: 3;
}
.circle2{
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: #878181;
  position: absolute;
  bottom: 5%;
  right: 36%;
  z-index: 3;
  border: 2px solid #ffffff;
}
/*news-wrap*/
.news-wrap{
  width: 1000px;
  padding: 20px 0 20px 30px;
  background-color: #878181;
  border-radius: 25px 0 0 25px;
  position: absolute;
  right: 0;
  margin-top: -20px;
  top: 980px;
  z-index: 4;
  box-shadow: 3px 3px 6px #00000093;
  letter-spacing: 1px;
}
.news-wrap h2{
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}
.news-item article{
  display: flex;
  color: #fff;
  margin-bottom: 10px;
}
.news-date{
  width: 15%;
}
.news-content a{
  color: #fff;
}
#movie{
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 100px;
}
#movie video{
  width: 100%;
}
#business h2{
  font-weight: 500;
  text-align: center;
  font-size: 60px;
  letter-spacing: 1px;
  color: #747474;
  font-family: futura-pt, sans-serif;
  margin-bottom: 7px;
}
#business p{
  font-family: "heisei-kaku-gothic-std", sans-serif;
  margin-bottom: 100px;
}
.business-heading{
  text-align: center;
  font-size: 25px;
  color: #747474;
}
.business-flex{
  display: flex;
  min-width: 1350px;
}
.business-flex-inner{
  width: 50%;
  border-radius: 60px 60px 0  0;
  box-shadow: 0px -7px 6px #0000001b;
}
.business-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0 20px;

}
.business-box-img{
  width: 300px;
}
.business-box-img img{
  width: 300px;
}
.business-box-content h3{
  font-weight: 600;
  font-size: 20px;
  white-space: nowrap;
  margin-bottom: 30px;
  color: #878181;
}
.business-box-mission{
  text-align: center;
  color: #fff;
  background-color: #878181;
  padding: 10px 0;
  margin-bottom: 30px !important;
}
.business-box-comment{
  font-family: "heisei-kaku-gothic-std", sans-serif;
  line-height: 30px;
  letter-spacing: 1px;
  white-space: nowrap;
  
}
.business-box-comment span{
  font-size: 21px;
}
.business-flex-r{
  background-color: #F2F0E4;
}
/*service*/
#service{
  padding: 50px 0;
  background-color: #878181;
  background-image: url('../img/service.png');
  background-size: 800px;
  background-position: bottom -60px left ;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}
.service-inner{
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.service-nav{
  color: #fff;
  font-family: "heisei-kaku-gothic-std", sans-serif;
}
.service-nav h4{
  font-weight: 600;
  margin-bottom: 30px;
}
.service-nav li{
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 1px;
}
/*suppliers*/
#suppliers{
  padding: 160px 0 60px;
  background-image: url('../img/supplier.png'), url('../img/bg-noise.jpg');
  background-size: 700px , 100%;
  background-position: top -40px right 0,top;
  background-repeat: no-repeat;
  height: 500px;
  margin-bottom: 100px;
}
@keyframes loop2 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-300%);
  }
}
.suppliers-box{
  display: flex;
  flex-wrap: nowrap;
  animation: loop2 40s -25s linear infinite;
}
.suppliers-img{
  width: 300px;
  margin: 0 20px;
  
}
.suppliers-img img{
  width: 300px;
}
/*works*/
#works{
  padding: 200px 0 50px;
  background-image: url('../img/works.png'),url('../img/bg-works.jpg');
  background-size: 700px, 95% 100%;
  background-position: top -40px left,top left;
  background-repeat: no-repeat;
  height: 700px;
  margin-bottom: 100px;
}
.works-box{
  width: 1100px;
  margin: 0 auto;
}
.works-flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.works-flex article{
  width: 340px;
  padding: 20px 20px;
  background-color: #fff;
}
.works-img{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 250px;
  margin-bottom: 20px;
  transition: 1s ease;
}

.works-category{
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
  background-color: #878181;
  border-radius: 5px;
  padding: 10px 0;
  color: #fff;
  font-weight: 300;
  margin-bottom: 15px;
}
.works-comment{
  text-align: center;
  line-height: 25px;
  letter-spacing: 1px;
}
.works-more a{ 
  color: #fff;
  font-size: 30px;
  float: right;
  font-family: "futura-pt", sans-serif;
}
.works-more a:after{
  display: block;
  content: " ";
  clear: both;
  
}
.circle3{
  height: 170px;
  width: 170px;
  border-radius: 50%;
  background-color: #878181;
  position: absolute;
  bottom: -360%;
  right: -3%;
  z-index: 3;
  border: 2px solid #ffffff;
}
.circle4{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #878181;
  position: absolute;
  bottom: -400%;
  right: 3%;
  z-index: 3;
  border: 2px solid #ffffff;
}
.about{
  width: 100%;
  min-width: 1400px;
}
.about img{
  width: 100%;
}
#contact{
  padding: 100px 0;
  background-color: #EFEFEF;
}
.contact-heading{
  font-weight: 500;
  text-align: center;
  font-size: 60px;
  letter-spacing: 1px;
  color: #ACACAC;
  font-family: futura-pt, sans-serif;
  margin-bottom: 7px;
}
.contact-heading2{
  text-align: center;
  font-size: 25px;
  color: #ACACAC;
}
.contact-box{
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 5px #00000030;
  width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}
.contact-form{
  width: 600px;
  margin: 0 auto;
  margin-top: 50px;
}
.contact-flex{
  display: flex;
  margin-bottom: 70px;
}
.contact-flex p{
  color: #000;
  width: 200px;
}
.contact-text{
  width: 400px;
  padding: 5px 0;
  border-bottom: 1px solid #707070;
}
.contact-text input{
  width: 100%;
  border: initial;
  outline: none;
}
.contact-text select{
  width: 100%;
  border: initial;
  outline: none;
}
.contact-text textarea{
  width: 100%;
  max-width: 400px;
  outline: none;
  border: none;
}
#submit{
  display: block;
  color: #fff;
  text-align: center;
  background-color: #878181;
  padding: 10px 0;
  width: 100%;
  border: none;
  cursor: pointer;
}
footer{
  padding: 30px 0px 100px;
  background-color: #F1EBDD;

  min-width: 1500px;
}
footer h2{
  font-weight: 500;
  text-align: center;
  font-size: 60px;
  letter-spacing: 1px;
  color: #878181;
  font-family: futura-pt, sans-serif;
  margin-bottom: 7px;
}
.footer-heading2{
  text-align: center;
  font-size: 25px;
  color: #878181;
  margin-bottom: 50px;
}
.footer-inner{
  font-family: "heisei-kaku-gothic-std", sans-serif;
  display: flex;
  justify-content: center;

}
.footer-inner p{
  font-family: "heisei-kaku-gothic-std", sans-serif;
  line-height: 50px;
  font-weight: 300;
  margin-top: 50px;
  letter-spacing: 1px;
  color: #878181;
}
footer table{
  font-size: 18px;
  letter-spacing: 1px;
}
footer tr{
  display: block;
  margin-bottom: 20px;
}
footer th{
  text-align: left;
  width: 190px;
}
footer td{
  font-weight: 100;
  line-height: 30px;
}
.footer-bg{
  background-color: #878181;
  height: 30px;
}
@media(max-width: 900px){
  html,
body {
  min-width: initial;
}
.pc{
  display: none;
}
.sp{
  display: block;
}
.menu-trigger {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;

}
.header-logo{
  width: 150px;
  top: 20px;
  left: 10px;
}
  .kv-l{
    width: 100%;
    z-index: 1;
  }
  .kv-r{
    display: none;
    z-index: 1;
  }
  .kv-l-inner{
    margin-top: 100px;
    margin-left: 10px;
    overflow: hidden;
  }
  .kv-l h2{
    white-space: nowrap;
    font-size: 70px;
    line-height: 110px;
  }
  .kv-l p{
    font-family: "heisei-kaku-gothic-std", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    white-space: initial;
    color: #878181;
    margin-bottom: 60px;
    line-height: 30px;
  }
  .ani-move{
    white-space: nowrap !important;
  }
  .circle1{
    height: 150px;
    width: 150px;
    bottom: 7%;
    right: -10%;
  }
  .circle2{
    height: 100px;
    width: 100px;
    bottom: 3%;
    right: 6%;
  }
  /*sp-news-wrap*/
  .news-wrap{
    width: 90%;
    padding: 20px 0 20px 10px;
    background-color: #878181;
    top: 900px;
    z-index: 4;
    box-shadow: 0px 0px 6px #00000093;
    letter-spacing: 1px;
    height: 200px;
    overflow-y: scroll;
  }
  .news-item article{
    flex-direction: column;
    border-bottom: solid 1px #fff;
    padding-bottom: 10px;
  }
  .news-date{
    width: 100%;
    margin-bottom: 10px;
  }
  .news-content a{
    color: #fff;
    line-height: 20px;
    font-size: 15px;
  }
  #movie{
    height: auto;
    margin-bottom: 50px;
  }
  /*sp-business*/
  #business h2{
    font-size: 40px;
  }
  #business p{
    font-size: 20px;
    margin-bottom: 70px;
  }
  .business-flex{
    flex-direction: column;
    min-width: initial;
  }
  .business-flex-inner{
    width: 100%;
    border-radius: 60px 60px 0  0;
    box-shadow: 0px -7px 6px #0000001b;
  }
  .business-flex-inner:nth-child(2n){
    border-radius: 0px 0px 0  0;
    box-shadow: initial;
    padding: 30px 0 20px !important;
  }
  .business-box{
    flex-direction: column;
    width: 95%;
    padding: 0px 0 20px;
  }
  .business-box-img{
    width: 80%;
    margin-bottom: 30px;
  }
  .business-box-img img{
    width: 100%;
  }
  .business-box-content h3{
    font-weight: 600;
    font-size: 20px;
    text-align: center;
  }
  .business-box-mission{
    text-align: center;
    color: #fff;
    background-color: #878181;
    padding: 10px 0;
    margin: 0 auto;
    margin-bottom: 30px !important;
    width: 95%;
  }
  .business-box-comment{
    font-family: "heisei-kaku-gothic-std", sans-serif;
    line-height: 30px;
    letter-spacing: 1px;
    white-space: initial;
    width: 95%;
    margin: 0 auto;
    font-size: 18px !important;
  }
  .pc{
    display: none;
  }
  #service{

    padding: 50px 10px;
    background-size: 300px;
    background-position: bottom -25px left ;
    background-image: url('../img/service.png');
  }
  .service-inner{
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .service-nav{
    margin-bottom: 50px;
    width: 50%;
  }
  .service-nav h4{
    margin-bottom: 10px;
  }
  .circle3{
    display: none;
  }
  .circle4{
    display: none;
  }
  /*sp-spplire*/
  #suppliers{
    padding: 160px 0 60px;
    background-image: url('../img/supplier.png'), url('../img/bg-noise.jpg');
    background-size: 300px , 100% 100%;
    background-position: top -10px right 0,top;
    height: initial;
  }
  .suppliers-box{
    display: flex;
    flex-wrap: nowrap;
    animation: loop2 10s -25s linear infinite;
  }
  .suppliers-img{
    width: 200px;
    margin: 0 10px;
    
  }
  .suppliers-img img{
    width: 200px;
  }
  /*sp-works*/
  #works{
    padding: 150px 0 50px;
    background-image: url('../img/works.png'),url('../img/bg-works.jpg');
    background-size: 100%, 100% 100%;
    background-position: top -40px left,top left;
    height: initial;
    margin-bottom: 100px;
  }
  .works-box{
    width: 90%;
    margin: 0 auto;
  }
  .works-flex{
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
  }
  .works-flex article{
    width: 100%;
    margin-bottom: 50px;
    padding: 20px 20px;
    background-color: #fff;
  }
  .about{
    width: 100%;
    min-width: initial;
  }
  .contact-box{
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
  }
  .contact-heading{
    font-weight: 500;
    text-align: center;
    font-size: 40px;
  }
  .contact-heading2{
    text-align: center;
    font-size: 20px;
    color: #ACACAC;
  }
  .contact-form{
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
  }
  .contact-flex{
    flex-direction: column;
  }
  .contact-flex p{
    color: #000;
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-text{
    width: 100%;
  }
  footer{
    min-width: initial;
  }
  .footer-inner{
    flex-direction: column;
    width: 95%;
    margin: 0 auto;

  }
  footer tr{
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    padding-left: 10px;
  }
  footer th{
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  footer td{
    width: 100%;
    display: block;
    text-align: left;
    line-height: 20px;
  }
  .footer-inner table{
    font-size: 16px;
    width: 100%;
  }
  footer h2{
    font-size: 40px;
  }
  .footer-heading2{
    font-size: 16px;
  }
}
/*ブラーアニメーション*/
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

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

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}
/*extendアニメーション*/
/*全共通*/

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #b0b0b0;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}

/*タイピングアニメーション*/
.TextTyping span {
	display: none;
}

/*文字列後ろの線の設定*/
.TextTyping2::after {
 	content: "|";
  
	animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
	from{opacity:0}
	to{opacity:1}
}
/*ふわっ*/
/* 下から */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  /*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

/* The loader container */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  
  width: 200px;
  height: 200px;
  
  margin-top: -100px;
  margin-left: -100px;
}


/* The dot */
.loader > .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;

  width: 160px;
  height: 100px;
  
  margin-top: -50px;
  margin-left: -80px;

  border-radius: 5px;

  background-color: #e9dfc2;

  transform-type: preserve-3d;

  animation: dot1 3s cubic-bezier(.55,.3,.24,.99) infinite;
}

.loader > .dot:nth-child(2) {
  z-index: 11;
  
  width: 150px;
  height: 90px;
  
  margin-top: -45px;
  margin-left: -75px;
  
  border-radius: 3px;
  
  background-color: #fff;
  
  animation-name: dot2;
}

.loader > .dot:nth-child(3) {
  z-index: 12;
  
  width: 40px;
  height: 20px;
  
  margin-top: 50px;
  margin-left: -20px;
  
  border-radius: 0 0 5px 5px;
  
  background-color: #9c9c9c;
  
  animation-name: dot3;
}

@keyframes dot1 {
  3%, 97% {
    width: 160px;
    height: 100px;

    margin-top: -50px;
    margin-left: -80px;
  }
  30%, 36% {
    width: 80px;
    height: 120px;

    margin-top: -60px;
    margin-left: -40px;
  }
  63%, 69% {
    width: 40px;
    height: 80px;

    margin-top: -40px;
    margin-left: -20px;
  }
}

@keyframes dot2 {
  3%, 97% {
    width: 150px;
    height: 90px;

    margin-top: -45px;
    margin-left: -75px;
  }
  30%, 36% {
    width: 70px;
    height: 96px;

    margin-top: -48px;
    margin-left: -35px;
  }
  63%, 69% {
    width: 32px;
    height: 60px;

    margin-top: -30px;
    margin-left: -16px;
  }
}

@keyframes dot3 {
  3%, 97% {
    width: 40px;
    height: 20px;

    margin-top: 50px;
    margin-left: -20px;
  }
  30%, 36% {
    width: 8px;
    height: 8px;

    margin-top: 49px;
    margin-left: -5px;
    
    border-radius: 8px;
  }
  63%, 69% {
    width: 16px;
    height: 4px;

    margin-top: -37px;
    margin-left: -8px;
    
    border-radius: 10px;
  }
}
/* Loading背景画面設定 */

#splash {
  /*fixedで全面に固定*/
position: fixed;
z-index: 10000;
width: 100%;
height: 100%;
background:#F2EDDD;
text-align:center;
color:#fff;
}

