@charset "utf-8";

body{
  font-family: 'Eczar', serif;
 }

.contain{
  position: relative;
  width:100%;
 }
.img{
  width: auto;
}
.ikm{
  width: 100%;
  object-fit: cover;
  height: 600px;
}
@media screen and (max-width: 767px) {
 .ikm{
  object-fit: cover;
  height: 450px;
  max-width:100%;
 }
}



.title{
  text-align: center;
  color: rgb(255, 255, 255);
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
 
.title h3{
  font-size:2.5rem;
}
.title p{
  font-size: 1.8rem;
}

.fas{
  text-align: center;
  margin:0 1em 3em;
  width:100%;
  overflow: hidden;
  font-family: inherit;
}

.fas {
   color: #616161;
   animation: fadein 5s  forwards;
   transform:translateX(100%);      /*開始位置*/
   line-height: 180%;
   letter-spacing: 1px;
   font-size: 1.3rem;
}

@keyframes fadein {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(30px);
  }
}


#service{
  background: url(img/sample2.jpg) no-repeat;
  
  color: #e1e1e1;
  animation: fade 10s forwards;
  background-size: cover;
  height: 300px;
}
@keyframes fade {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
.text{
  position: absolute;
  bottom: 3%;
  left:10%;
  z-index: 99;
}

.text h5{
  font-size: 1.5rem;
}

#service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}





#inline{
  background: url(img/image2.jpg) no-repeat;
  
  color: #dfdfdf;
  animation: fall 10s forwards;
  background-size: cover;
  height: 300px;
}
@keyframes fall {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
.texts{
  position: absolute;
  bottom: 3%;
  left:10%;
  z-index: 99;
}
.texts h5{
  font-size: 1.5rem;
}
#inline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}



.tables{
  background-color: #e1e1e1;
}

 /* table01 */
.table{
  display: flex;
  width: 100%;
  color: #616161;
  padding-left: 20%;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}


/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}


a{
  color: inherit;
  text-decoration: none;
}
.copyright{
  text-align: center;
}