.contact2_title {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px 0;
}
.contact2_tell {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  color: #E8822A;
}

a.btn2_a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 380px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #E8822A;
  color: #E8822A;
  border-radius: 100vh;
  transition: 0.5s;
    font-size: 1.4em;
}
a.btn2_a:hover {
  color: #fff;
  background: #E8822A;
}

#wrapper .myimg2 {
	display: block;
	width: 80%;
    text-align: center;
}
.horizontal-scroll {
    width: 930px;
  overflow-x: auto;
  white-space: nowrap;
    overflow: hidden; /* スクロールバーを非表示にする */
    
}

.horizontal-scroll img {
    margin-left: 10px;
  animation: scroll 90s linear infinite;
    -webkit-overflow-scrolling: touch; /* iOSデバイスのスムーズスクロール対応 */
}
  

/*@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}*/

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-900%);
  }
}

.scroll-container {
  display: flex;
  animation: scroll 90s linear infinite;
}
