@charset "UTF-8";

/* カルーセル 全体 */
.carousel {
    display: -webkit-flex;
  display: flex;
    -webkit-flex-direction: column;
  flex-direction: column;
  margin-bottom: 5px;/* 50px */
}
@media (max-width:991px) {
  .carousel {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width:992px) {
  .carousel {
      -webkit-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
  }
}

/* カルーセル パネル選択ボタン */
.carousel-indicators {}
@media (max-width:991px) {
  .carousel-indicators {
    bottom: auto;
    top: 100%;
    left: 0;
    right: 0;
    margin: 10px 0 0;
    width: 100%;
    text-align: center;
  }
  .carousel-indicators li,
  .carousel-indicators li.active {
    overflow: hidden;
    display: inline-block;
    margin: 0 15px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    clip: rect(0,0,0,0);
  }
  .carousel-indicators li {
    border: 1px solid #404040;
    text-shadow: 1px 1px 1px #404040;
  }
  .carousel-indicators li.active {
    background-color: #404040;
    text-shadow: 1px 1px 1px #fff;
  }
}
@media (min-width:768px) {
  .carousel-indicators {
      -webkit-order: 1;
    order: 1;
    margin: 0;
    width: 100%;
    border: 1px solid #fff;
  }
  .carousel-indicators li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #000;
    font-weight: bold;
  }
}
@media (min-width:992px) {
  .carousel-indicators {
    left: 0;
    bottom: 0;
    border: none;
  }
  .carousel-indicators li {
    font-size: 20px;
    background-color: #fff;
    border: 1px solid #404040;
    box-shadow: 1px 1px 1px #404040;
  }
  .carousel-indicators li.active {
    background-color: #404040;
    border: 1px solid #fff;
    box-shadow: 1px 1px 1px #fff;
 }
}
/* カルーセル コントロールボタン */
.carousel-control {
  opacity: 1.0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 1);
}
.carousel-control.left {
  background-image: none;
}
.carousel-control.right {
  background-image: none;
}
.carousel-control .glyphicon {
  color: #fff;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 30%;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  left: auto;
  right: 30%;
}
@media (min-width:992px) {
  .carousel-control.right {
  }
}


/* カルーセル スライド領域 */
.carousel-inner {}
@media (min-width:992px) {
  .carousel-inner {
  }
}
@media (min-width:768px) {
  .carousel-inner {
    min-height: 240px;
  }
}
.carousel .item {
}
.carousel .item > img {
  width: 100%;
}

/* カルーセル キャプション */
.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 5% 10px 10% ;
  text-align: right;
  color: #404040;
  font-weight: bold;
  background-color: rgba(255,255,255,0.3);
}
@media (min-width:480px) {
  .carousel-caption {
    padding: 20px 5% 20px 20% ;
  }
}
@media (min-width:768px) {
  .carousel-caption {
    padding: 20px 2.5% 20px 35% ;
  }
  .carousel-inner > .item3 > img {
    width: 72%;
    margin-bottom: 5%;
    padding-top: 3%
  }
}
@media (min-width:992px) {
  .carousel-caption {
    padding: 20px 2.5% 20px 30% ;
  }
}
@media (max-width:767px) {
  .carousel-caption {
    position: static;
    text-align: center;
  }
  .carousel-inner > .item > img {
    max-width: initial;
  }
/*  .carousel-inner > .item1 > img {
    width: 200%;
  }
  .carousel-inner > .item2 > img {
    width: 200%;
  }
  .carousel-inner > .item3 > img {
    width: 120%;
    margin-top: 11.25%;
    margin-bottom: 11.25%;
  }
  .carousel-inner > .item4 > img {
    width: 150%;
    margin-top: 7%;
    margin-bottom: 7%;
  }*/
}
@media (max-width:767px) and (min-width:480px) {
  .carousel-caption {
    padding: 20px 5% 20px 5%;
  }
}
.carousel-caption h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.2;
}
.carousel-caption p {
  margin: 0;
  font-size: 12px;
  text-shadow: 1px 1px 3px rgba(255,255,255,0.8), -1px -1px 3px rgba(255,255,255,0.8);
  line-height: 1.2;
}
.carousel-caption .btn-xs {
  font-size: 12px;
  text-shadow: none;
}
@media (min-width:480px) {
  .carousel-caption h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
  }
  .carousel-caption p {
    margin: 0 0 10px;
    font-size: 1rem;
  }
  .carousel-caption .btn-xs {
    font-size: 16px;
  }
}
@media (min-width:768px) {
  .carousel-caption h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .carousel-caption p {
    margin: 0 0 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .carousel-caption .btn-xs {
    padding: 10px 1rem;
    width: 50%;
    font-weight: bold;
  }
}
@media (min-width:992px) {
  .carousel-caption h2 {
    font-size: 1.75rem;
  }
  .carousel-caption p {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.slide-img-add {
  display: none;
}
@media (min-width:1200px) {
  .slide-img-add {
    display: block;
    margin-bottom: 20px;
    padding-right: 50px;
  }
  .slide-img-add img {
    height: 90px;
    width: auto;
  }
}