* {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  margin-bottom: 100px;
}
h2 {
  margin-bottom: 50px;
}
/* スライドする要素 */
.content {
  width: 350px;
  height: 200px;
}
.content:nth-child(1) {
  background-color: #ffffff;
}
.content:nth-child(2) {
  background-color: #ffffff;
}
.content:nth-child(3) {
  background-color: #ffffff;
}
.content:nth-child(4) {
  background-color:#ffffff;
}
/* スライドレールの枠 */
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 340px;
  margin-bottom: 100px;
}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 40s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ホバー時に動きを止める（パターン2・3）*/
.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
/* ホバー時の装飾（パターン3） */
.content-hover {
  transition: all 0.2s;
  margin-right: 0px;
}
.content-hover:hover {
  transform: translateY(-20px);
  /*border-radius: 0 10%;*/
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}












/*リーフレットと同じ見出しのデザイン*/
.heading-cam {
  position: relative;
	font-family:Arial, Helvetica, "sans-serif";
  font-size: 40px;
  color: #c9dc63;/*うすい色*/
}
.heading-cam span {
  position: relative;
  z-index: 2;
}
.heading-cam::before {
  content: '';
  position: absolute;
  bottom: 17px;/*ボーダーの位置*/
  left: 0;
  width: 100%;
  height: 5px;
  background-image: repeating-linear-gradient(-45deg, #c9dc63 0px, #c9dc63 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 2px 2px;
  z-index: 1;
}
/*右端のカタカナ部分*/
.heading-cam::after {
  content: attr(data-en);
  position: absolute;
  /*コレ left: 0;*/
  right: 0; /*コレ*/
  /* top: 0;コレ*/
  bottom: 0; /*コレ*/
  margin: auto; /*コレ*/
  padding-bottom: 14px;
  font-size: 25px;
	color: #c9dc63;/*うすい色*/
  z-index: 2;
}
.heading-cam span {
  color: #8fc31f;
}
.big {
  font-size: 55px;
 
}
.big-2 {
  font-size: 55px;
  
}
.small {
  font-size: 50px;
  color: #c9dc63;
}
