@charset "UTF-8";

/* -------------------profile —————————*/

.img-box{
  width: 100%;
  aspect-ratio: 4/1;
  overflow: hidden;
  position: relative;
  /* border: 1px solid #ffffff; */
  
}
.img-box>div{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
  animation-name: fade;
  animation-duration: 42s;
  animation-iteration-count: infinite;
}

@keyframes fade {
  0%{
    opacity: 0;
  }
  7%{
    opacity: 1;
  }
  14%{
    opacity: 1;
  }
  21%{
    opacity: 0;
  }
  100%{
    opacity: 0;
    z-index: 2;
  }
}

.msg0title{
position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:380px;
  height: 80px;
 border: #666 1px solid;

text-align: center;

}
.msg0a{
  margin-top: 15px;
  font-size: 16px;
  color: #666;
  
  font-family: Georgia, 'Times New Roman', Times, serif;
 letter-spacing: 4.6px;
 text-indent: 0 !important;
 text-align: center;
 /* border: #fff 1px solid; */
}
.msg0b{
  margin-top: -15px;
  font-size: 11px;
  
  color: #666;

  font-family: sans-serif;
  text-indent: -4px !important;
  text-align: center;
   /* border: #fff 1px solid; */
}

.msg1{
  width: 100%;
  margin: 0;
  padding: 0 !important;
  line-height: 17px !important;
  font-size: 11px;
  vertical-align: bottom;
  
  color: #fff;
   font-weight: bold; 
  position: absolute;
  bottom: 10px;
  text-align: right;
  background: rgba(0, 0, 0, 0.4);
  
}
/*
.msg2{
  width: 100%;
  margin: 0;
  padding: 0;
  height: 10px;
  font-size: 11px;
  
  color: #333;
  position: absolute;
  bottom: 20px;
  text-align: right;
  
} */

/* 1枚目のスライド */
.img-box>div:first-of-type{
  background-image: url(../images/slideshow0.jpg);
}

/* 2枚目のスライド */
.img-box>div:nth-of-type(2){
  background-image: url(../images/slideshow1.jpg);
  animation-delay: 6s;
}

/* 3枚目のスライド */
.img-box>div:nth-of-type(3){
  background-image: url(../images/slideshow2.jpg);
  animation-delay: 12s;
}
/* 4枚目のスライド */
.img-box>div:nth-of-type(4){
  background-image: url(../images/slideshow3.jpg);
  animation-delay: 18s;
}

/* 5枚目のスライド */
.img-box>div:nth-of-type(5){
  background-image: url(../images/slideshow4.jpg);
  animation-delay: 24s;
}

/* 6枚目のスライド */
.img-box>div:nth-of-type(6){
  background-image: url(../images/slideshow5.jpg);
  animation-delay: 30s;
}

/* 7枚目のスライド */
.img-box>div:last-of-type{
  background-image: url(../images/slideshow6.jpg);
  animation-delay: 36s;
}