@charset "UTF-8";
/* CSS company */
#philosophy .logo1, #philosophy .logo2, #philosophy .color {
  width: 350px;
  padding: 1em 1em 3em 1em
}
#philosophy .slqdc {
  width: 400px;
  padding-bottom: 1em
}
.iso img {
  width: 340px;
  padding: 1em
}
/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
  padding: 3% 0;
  margin: 0
}
/* スライドのグループ */
.slider {
  animation: scroll-left 60s infinite linear .5s both;
  display: flex; /* スライドを横並び */
}
/* スライド */
.slide {
  width: calc(100vw / 5); /* スライドの枚数 */
  min-width: 300px;
  margin: 0 10px
}
/* スライドの画像 */
.slide img {
  display: block;
  width: 100%;
  border-radius: 15px
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*歩み*/
.timeline div {
  display: flex;
  flex-wrap: wrap
}
.timeline dt {
  position: relative;
  width: 40%;
  padding: 3%;
  border-right: 1px solid #ccc;
  border-bottom: 1px dotted #ccc;
  font-weight: normal;
  color: var(--blue);
  line-height: 1.4
}
.timeline dt span {
  font-family: var(--mont);
  font-size: 50px;
  font-weight: 600;
  color: rgba(1, 51, 90, .2)
}
.timeline dt span span {
  font-family: var(--note);
  font-size: 20px;
  font-weight: 500;
}
.timeline dd {
  width: 60%;
  padding: 3%;
  border-bottom: 1px dotted #ccc;
}
.timeline dd p {
  padding-top: 1em
}
.timeline dd img {
  width: 45%;
	padding: 1%;
	border-radius: 15px
}
.timeline dt::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--blue);
  position: absolute;
  right: -6px;
  top: 3.5em;
  border-radius: 100%;
}
@media screen and (max-width:991px) {
  .timeline div {
    display: block;
    border-left: 1px solid #ccc;
    padding-left: 20px
  }
  .timeline dt {
    position: relative;
    width: 100%;
    padding: 3%;
    border-right: 0;
    border-bottom: 0;
  }
  .timeline dd {
    width: 100%;
    padding: 3%;
    border-bottom: 1px dotted #ccc;
  }
  .timeline dt::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--blue);
    position: absolute;
    left: -26px;
    top: 2.8em;
    border-radius: 100%;
  }
}
@media screen and (max-width: 576px) {
/* スライド */
.slide {
  width: calc(100vw / 3); /* スライドの枚数 */
  min-width: 200px;
  margin: 0
}
.slide img {
  border-radius: 0
}
#philosophy .logo1, #philosophy .logo2, #philosophy .color {
  width: 260px;
  padding: 1em 1em 3em 1em
}
#philosophy .slqdc {
  width: 260px;
  padding-bottom: 1em
}
}
/*equipment*/
#equipment .col-lg-6 img{
	width: auto;
	max-width: 350px;
	height: 300px

}