@charset "UTF-8";
header{
position: fixed; /* ヘッダーを固定する */
z-index:100;
}
header{
    width:95%;
    display:flex;
    justify-content:space-between; /*メニューを右端に置く方法その１*/
    padding:0 2%;
    align-items:center;
　　　position:fixed;  /*ヘッダーの位置を固定*/
    top:0;  /*ヘッダーの位置を固定（上0）*/
    left:0; /*ヘッダーの位置を左固定（左０）*/
	transition: all 1s;
}
header:hover {
    background-color: black;
    color: #FFFFFF;
    cursor: pointer;
	opacity: 60%;
}
ul{
    display:flex;
    list-style:none;
}
li{
    margin-left:40px;
}
a{
    text-decoration:none;
    color:#FFFFFF;
}
nav{
    margin-left:auto; /*メニューを右端に置く方法その２*/
}
a:hover{
    opacity: 0.5;
}
.slider {
  height: 53vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%;
  margin:0px;
	position: relative;
}

.slick-img img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 20s linear 0s normal both;
}

.pic1 img{
	width:100%;
	
}
.pic1{
	background-image: url("http://www.kandk-consulting.com/images/back1.jpg");
	background-attachment: fixed;
  background-size: cover;
  background-position: center;

}

.appear {
	background-image: url("http://www.kandk-consulting.com/images/back2.jpg");
	background-attachment: fixed;
  background-size: cover;
  background-position: center;
	transform-origin:center top;
	animation:show 1s both;
	height:100%;
}
img .appear {display:inline-block;}
.d1 {animation-delay:4s;}
.d2 {animation-delay:5s;}
.d3 {animation-delay:7s;}
.d4 {animation-delay:8s;}
.d5 {animation-delay:10s;}
.d6 {animation-delay:11s;}
.d7 {animation-delay:13s;}
.d8 {animation-delay:14s;}
.d9 {animation-delay:16s;}
.d10 {animation-delay:17s;}

.appear img{
	width:100%;
	background:none;
	margin:0px;
	
}

.pic3 img{
	width:100%;
	
}
.pic3{
	background-image: url("http://www.kandk-consulting.com/images/back3.jpg");
	background-attachment: fixed;
  background-size: cover;
  background-position: center;

}

.pic4 img{
	width:100%;
	
}

.pic5 img{
	width:100%;
	
}

.pic6 {
border-top: 1px solid #B3B3B3;
padding:15px;
background-image: url("http://www.kandk-consulting.com/images/pic6.jpg");
color:white;
margin: 0px;
}
.pic6 a{
font-size:15px;
color:white;
font-weight:bold;
text-decoration: none;
}
.pic6 p{
padding:5px;
font-size:15px;
color:white;
font-weight:bold;
}
@keyframes show {
	0% {
		transform:translate(0,2em);
		opacity:0;
		text-shadow:0 0 0 #0f0;
	}
	50% {
		text-shadow:0 0 0.5em #0f0;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
		text-shadow:none;
	}
}
