.section__block--top-page {
  max-width: 1100px;
}

.slider {
  margin-top: 0;
  position: relative;
}
.slider .bx-wrapper {
  margin-bottom: 0;
}
.slider .bx-wrapper .bx-caption {
  text-align: center;
  top: 0;
  bottom: auto;
}

#slider img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.banner__section {
  margin-top: 2px;
}

.news__lists {
  list-style-type: none;
  margin: 0 0 2em;
}

.news__list {
  margin-bottom: .5em;
}

.news__date {
  margin-right: 1em;
}

/* my classes */
/* bar-style */
/*.section__block--top-page:after {
  content: '';
  display: block;
  height: 1px;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  background-color: #707070;
}*/

/* slider-style */
.my-slider-pc {
  display: block;
}
.my-slider-sp {
  display: none;
}
@media (max-width: 768px) {
  /* ~768px */
  .my-slider-pc {
    display: none;
  }
  .my-slider-sp {
    display: block;
    position: relative;
  }
  .bx-wrapper {
    margin-bottom: 1px !important;
  }
}

/* slider-text-style */
.my-concept {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.3%;
}
@media (max-width: 768px) {
  /* ~768px */
  .my-concept {
    width: 9.3%;
  }
}
.my-concept img {
  width: 100%;
}

/* news-style */
.my-news {
  max-width: 700px;
  margin: 0 auto 100px auto;
}
@media (max-width: 768px) {
  /* ~768px */
  .my-news {
    max-width: 80%;
  }
}

/* zoom-style */
.my-zoom {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
}
.my-zoom img {
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.my-zoom img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}

/* topBanner-style */
.my-topBanner {
  height: 260px;
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  /* ~768px */
  .my-topBanner {
    height: 160px;
  }
}
.my-topBanner img {
  display: inline-block;
  width: 700px;
}
@media (max-width: 768px) {
  /* ~768px */
  .my-topBanner img {
    max-width: 80%;
  }
}