
html{
  font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','メイリオ', Meiryo,'Meiryo UI','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  height:100%;
}

body{
    width: 100%;
    font-size: 18px;
    background: #8AD2F5;
    color: #fff;
	height: 100%;
    
  }

  #wrap{
    background: url(../img/bg_main.png);
    background-size: 80%;
    background-repeat: repeat;
    overflow: hidden;
  }



#mainVisual{
    text-align: center;
}

#bg_head{
    background: url(../img/bg_head.png);
    background-repeat: repeat-x;
    background-size: cover;
}

#headTxt{
    background: #2D8ACE;
    padding: 10px 0;
}

#mainImg img{
    padding: 25px 0;
}

.bg01{
    background: #84C8EA;

}

#topTxt{
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    color: #fff;
}
#topTxt figure img{
    margin-right: 20px;
}
#topTxt h1{
  font-size: 1.5rem;
  border-bottom:1px solid #fff;
  margin-bottom: 25px;
  padding-bottom: 5px;
}

#pointArea{
  margin: 50px 0;
}

#pointArea figure{
  text-align: center;
}

#pointBox{
  justify-content: center;
  margin-bottom: 40px;
}

#pointBox div figure{
  margin-top: 70px;

}
#pointBox div:first-child{
  padding-right: 80px;
  padding: 0 80px 0 0;
}
#pointBox div:last-child{
  margin-top: 80px;
  padding: 0 0 50px 80px;
}



#machineArea{
  text-align: center;
}

#machineh2 figure{
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}

#machineBox{
  height: 950px;
  justify-content: center;
  color: #fff;
}

#machineBox h3{
  font-size: 1.2rem;
  margin: 15px auto 10px;
}

#machineBox p{
  font-size:0.9rem;
}

#machineBox dl{
  width: 350px;
  margin: auto;
}

#washBox{
  background: #4294D3;
  width: 100%;
}

#dryBox{
  background: #FFC75D;
  width: 100%;
}

.posi_badge{
  position: absolute;
  right: -20px;
  top: -20px;
}

.bg_wash{
  width: 450px;
  background: #387EB4;
  padding: 40px 0;
  margin: 180px auto 0;
}
.bg_dry{
  width: 450px;
  background: #E5B354;
  padding: 40px 0;
  margin: 180px auto 0;
}

.machineList{
  justify-content: space-between;
  margin: 10px;
}

#dryArea{
  width: 100%;
  background: url(../img/bg_dry.png);
  background-size: cover;
  padding: 50px 0 10px;
  justify-content: space-around;
}


.dryBox{
  max-width: 1300px;
  margin: auto;
  justify-content: space-around;
  align-items: center;
}

#boothArea p{
  width: 70%;
  background: #ef95b8;
  border-radius: 30px;
  padding: 30px 10px;
  margin: auto;
}

#boothArea{
  background: #fcb9d2;
  padding: 50px 0;
}
#boothArea img{
	width:95%;
	text-align: center;
}

#boothArea h3{
  text-align: center;
}

#boothArea h3 img{
  width:120px;
}
#boothArea span{
	font-weight: 700;
	color:#f71460;
}



#challengeArea{
  max-width: 1110px;
  justify-content: space-around;
  color: #1D6AA7;
  margin: 40px auto 0;
}

#challengeArea h3{
  position: absolute;
  top: -21%;
  right: 0;
}



#challenge_suc{
  background: #4294D3;
}
#challenge_failure{
  background: #FDC75D;
}

#challenge_suc , #challenge_failure{
  padding: 125px 50px 40px;
  border-radius: 20px;
}
.challenge_innerbox{
  background: #fff;
  border-radius: 20px;
  height: 100%;
  padding: 30px;
}

.challenge_innerbox p{
  margin-bottom: 15px;
}

#covidArea{
  text-align: center;
  margin: 60px auto;
}

#covidArea h2{
  margin-bottom: 50px;
}

.covid_box{
  margin: auto;
  max-width: 700px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.covid_box figure{
  margin: 0 0 30px 0;
}

.covidTxt{
  margin: auto;
}

.covidTxt p{
  color: #1D6AA7;
  background: #FFF9E5;
  border-radius: 15px;
  padding: 15px;
}

footer{
  background: #84C8EA;
  text-align: center;
}

footer h2{
  font-size: 1.2rem;
  max-width: 300px;
  margin: 0 auto 20px;
}

.footerBox{
  padding: 50px 0;
}

#map{
 border-radius: 20px;
 margin-bottom: 20px;
}

#copy{
  width: 100%;
  background: #fff;
  color: #1D6AA7;
  text-align: center;
  font-size: 0.8rem;
}


/* 便利系 */

.flex{
  display: flex;
}


.underLine{
border-bottom: 1px solid #fff;
}


.posi_rltv{
position: relative;
}


#videoArea{
	background-color: #E50012;
	padding:20px 20px 50px;

}



@media screen and (min-width:750px){
.pcNone{
  display: none;
}
}


/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(100px);}
.slide-left {transform: translateX(-100px);}



/* スマートフォン */

@media screen and (max-width:749px){
  .spNone{
    display: none;
  }

  #wrap{
    background: none;
  }
  img{
    width: 100%;
  }
  .flex{
    display: block;
  }
  #map{
    width: 95%;
  }

  #topTxt{
    padding: 0;
  }
  #topTxt div{
    width: 95%;
    margin: auto;
    padding: 20px 0;
  }
  #topTxt figure img{
    margin-right: 0;
  }

  #headTxt figure img{
    width: 90%;
  }
  #pointBox div:first-child ,  #pointBox div:last-child{
    padding: 0 20px;
  }
  #machineBox{
    height: auto;
  }
  .bg_dry{
    margin: auto;
  }
  .bg_wash{
    padding: 100px 0 40px 0;
    margin: 80px auto 0;
  }
  .posi_badge img{
    width: 50%;
  }
  .bg_wash , .bg_dry{
    width: 100%;
    background: none;
  }
  #dryArea{
    background-position: top;
    background-size: auto;
    background-repeat: no-repeat;
    text-align: center;
  }
  #bg_dry_sp{
    background: #E50012;
  }
  #dryArea figure{
    padding-bottom: 40px;
  }
  #dryArea figure img{
    width: 90%;
  }
  #boothArea img{
    width: 90%;
  }
  #boothArea p{
    width: 90%;
  }
  #challengeArea{
    width: 95%;
  }
  #challenge_suc, #challenge_failure{
    padding: 145px 15px 30px;
  }
  .challenge_innerbox{
    padding: 10px;
  }
  #challenge_suc{
    margin-bottom: 15px;
  }
  #covidArea{
    width: 90%;
  }
  .covid_box{
    display: flex;
  }
  .covid_box figure{
    width: 45%;
  }
  #pointBox div figure{
    margin-top: 30px;
  }
  #pointBox div:last-child{
    margin-top: 30px;
  }
  .machineList{
    display: flex;
    justify-content: space-between;
  }
	
	#videoArea{
	margin-top:-15px;
}	
	#videoArea video{
	width:95%;
}

	
}

/* ウェルカムページ */


#well_wrap{
  width: 100%;
  height: 100%;

}
.well_main{
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

#well_fukuike{
  background: url(../img/bg_head.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: repeat-y;
  justify-content: center;
  align-items: center;
}
#well_fukuike div{
  text-align: center;
}
#well_fuku{
  background: url(../img/bg_fuku.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: repeat-y;
  justify-content: center;
  align-items: center;
  color: #404040;
}
#well_fuku div{
  text-align: center;
}

.well_btn{
  border: 1px solid #fff;
  border-radius: 15px;
  padding: 5px 10px;
}
.well_btn_fuku{
  border: 1px solid #404040;
  border-radius: 15px;
  padding: 5px 10px;
}

.well_btn_area{
  margin: 30px auto;
}


@media screen and (max-width:749px){

  #well_fukuike , #well_fuku{
    height: auto;
  }

  .well_fukuike_inner , .well_fuku_inner{
    padding: 30px 10px;
  }
}