@charset "utf-8";
/* CSS Document */
.pagetop {
	display: none;
	position: fixed;
	bottom: 200px;
	right: 5px;
	width: 50px;
	height: 50px;
	z-index: 50000;
}
.pagetop img {
	transition: 0.5s;
}
.pagetop img:hover {
	transform: rotate(360deg);
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------メインイメージ*/
#mimg {
	position: relative;
	width: 100%;
	height: 250px;
	margin-top: 110px;
	margin-left: auto; 
	margin-right: auto;
	background-color: #19648c;
}
#mimgtxt {
	position: relative;
	width: 1100px;
	padding-top: 90px;
	height: 160px;
	margin-left: auto;
	margin-right: auto;
}
#mimgtxt .p1{
	width: 100%;
	height: auto;
	float: left;
	font-size: 45px;
	line-height: 50px;
	font-weight: 600;
	text-align: center;
	color: #FFF;
	letter-spacing: 3px;
}
#mimgtxt .p2{
	width: 100%;
	height: auto;
	float: left;
	font-size: 13px;
	line-height: 13px;
	font-weight: 600;
	text-align: center;
	color: #FFF;
	letter-spacing: 1px;
	margin-top: 10px;
}
#breadcrumb {
	width: 1100px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
　　list-style: none;
    text-align: left;
}
#breadcrumb li {
  display: inline-block;
  list-style: none;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
}

#breadcrumb li:after {
  content: '>';
  padding: 3px 7px;
  color: #000;
}

#breadcrumb li:last-child:after {
  content: '';
}

#breadcrumb li a {
	width: auto;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  background: #666;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}
#breadcrumb .nl{
	width: auto;
  display: inline-block;
  padding: 0px;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

#breadcrumb li a:hover {
  background: #19648c;
}

/*--------------------------------------------------------------------------コンテンツ*/
#container {
	width: 100%;
	height: auto;
	margin-top: 70px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#section01 {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-top: 0px;
	padding-bottom: 120px;
}
#contents01 {
	position: relative;
	width: 1100px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
#contents01:after{
	content: "";
	clear: both;
	display: block;
}
h2 {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 30px;
  line-height: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  text-align: center;
}
h2::after {
  position: absolute;
  content: '';
  width: 100px;
  height: 4px;
  display: inline-block;
  background-color: #19648c;
  bottom: -25px;
  left: calc(50% - 50px)
}
#service {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}
#Svbox {
	width: 340px;
	height: auto;
	margin-top: 50px;
}
#Svbox .Img{
	position: relative;
	width: 340px;
	height: 240px;
	float: left;
}
#Svbox .Img img{
	width: 340px;
	height: 240px;
}
#Svbox .Img p{
	position: absolute;
	width: auto;
	height: auto;
	z-index: 2;
	right: 7px;
	bottom: 7px;
	font-size: 11px;
	line-height: 11px;
	color: #FFF;
	font-weight: 600;
	text-align: right;
}
#Svbox .bgImg{
	width: 100%;
	height: 240px;
	position: absolute;
	top:0;
	left: 0;
	right:0;
	bottom:0;
	opacity:0;
	animation: bgAnime3 18s infinite;
	background-position: top right;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
}
#Svbox .src1{
	display:block;
	background-image: url(../web/service/img01.jpg); 
}
#Svbox .src2{
	background-image: url(../web/service/img02.jpg);  
	animation-delay: 6s;
}
#Svbox .src3{
	background-image: url(../web/service/img03.jpg); 
	animation-delay: 12s;
}
#Svbox .src4{
	display:block;
	background-image: url(../web/service/img04.jpg); 
}
#Svbox .src5{
	background-image: url(../web/service/img05.jpg);  
	animation-delay: 6s;
}
#Svbox .src6{
	background-image: url(../web/service/img06.jpg); 
	animation-delay: 12s;
}
#Svbox .src7{
	display:block;
	background-image: url(../web/service/img07.jpg); 
}
#Svbox .src8{
	background-image: url(../web/service/img08.jpg);  
	animation-delay: 6s;
}
#Svbox .src9{
	background-image: url(../web/service/img09.jpg); 
	animation-delay: 12s;
}
#Svbox .src10{
	display:block;
	background-image: url(../web/service/img10.jpg); 
}
#Svbox .src11{
	background-image: url(../web/service/img11.jpg);  
	animation-delay: 6s;
}
#Svbox .src12{
	background-image: url(../web/service/img12.jpg); 
	animation-delay: 12s;
}
#Svbox .src13{
	display:block;
	background-image: url(../web/service/img13.jpg); 
}
#Svbox .src14{
	background-image: url(../web/service/img14.jpg);  
	animation-delay: 6s;
}
#Svbox .src15{
	background-image: url(../web/service/img15.jpg); 
	animation-delay: 12s;
}
#Svbox .src16{
	display:block;
	background-image: url(../web/service/img16.jpg); 
}
#Svbox .src17{
	background-image: url(../web/service/img17.jpg);  
	animation-delay: 6s;
}
#Svbox .src18{
	background-image: url(../web/service/img18.jpg); 
	animation-delay: 12s;
}
#Svbox .src19{
	display:block;
	background-image: url(../web/service/img19.jpg); 
}
#Svbox .src20{
	background-image: url(../web/service/img20.jpg);  
	animation-delay: 6s;
}
#Svbox .src21{
	background-image: url(../web/service/img21.jpg); 
	animation-delay: 12s;
}
@keyframes bgAnime3 {
   0% { opacity: 0; }
   5% { opacity: 1; }
   33% { opacity: 1; }
  38% { opacity: 0; }
}

#Svbox .ttl{
	position: relative;
	width: 100%;
	height: auto;
	font-size: 25px;
	line-height: 26px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 1px;
	float: left;
	margin-top: 25px;
	z-index: 3;
}
#Svbox .ttl::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  width: 3px;
  height: 30px;
  margin: auto;
  background-color: #19648c;
  z-index: 3;
}
#Svbox .txt{
	position: relative;
	width: 100%;
	height: auto;
	font-size: 16px;
	line-height: 22px;
	text-align: left;
	float: left;
	margin-top: 15px;
}


#section02 {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-top: 70px;
	padding-bottom: 70px;
	background-color: #f6f6f6;
}
#contents02 {
	position: relative;
	width: 1100px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
#contents02:after{
	content: "";
	clear: both;
	display: block;
}


@media screen and (min-width:768px){

}
