@charset "UTF-8";


/*  case
-----------------------------------------------------------------------------*/
.section_case_info {
  margin: 50px 0px 80px;
  text-align: center;
}

.section_case_info .btn_common_list {
  min-width: 250px;
  margin-bottom: 15px;
}

.section_case_info .txt {
  font-size: 1.4rem;
}

.scroll_down_case {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 1px;
  height: 30px;
}

.scroll_down_case::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #0272BD;
  -webkit-animation: animations_scroll_move 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: animations_scroll_move 2s cubic-bezier(1, 0, 0, 1) infinite;
  content: '';
}

.container_case-int {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: auto;
  margin: auto;
  vertical-align: top;
  padding: 0 15px;
}

.container_case-int a {
  color: #262626;
  text-decoration: none;
}

@media screen and (max-width: 799px) {
  .container_case-int {
    width: 100%;
    max-width: auto;
  }
}

.item_case-int {
  background: #fff;
  width: calc((100% - 100px) / 3);
  max-width: auto;
  margin: auto;
  padding: 25px;
}

@media screen and (max-width: 799px) {
  .item_case-int {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: center;
  }
}

.item_case-int_link {
  color: #ffffff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 0.9em;
}

.item_case-int_link a {
  display: inline-block;
  padding: 3px 10px 4px 13px;
  background:#0071C0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}

.item_case-int_link a:hover {
  opacity: 0.7;
  transition: .1s;
}

@media screen and (max-width: 799px) {
  .item_case-int_link {
   font-size: 1em;
  }
}

.img_case-int {
  cursor: pointer;
  overflow: hidden!important;
  width: 100%;
}

.img_case-int img {
  max-width: 100%;
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}

.img_case-int  a:hover {
  opacity: 0.7;
  transition: .1s;
}

.img_case-int:hover img {
  transform: scale(1.05); /* 拡大 */
}

.ttl_case-int {
  font-size: 1.6rem;
  text-align: center;
}

