/* CSS Document */
.dataList .Img img, .dataList .Img::before {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.dataList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 40px;
}
.dataList .dataItem {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .dataList .dataItem {
    width: 100%;
  }
}
.dataList .Img {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.dataList .Img::before {
  content: "";
  position: absolute;
  background-color: #ad2929;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url(../images/search.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 20px) calc(100% - 20px);
  inset: 0;
  margin: auto;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1181px) {
  .dataList .Img:hover::before {
    content: "";
    position: absolute;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .dataList .Img:hover img {
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.dataList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.dataList .Txt {
  overflow: hidden;
}
.dataList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
  color: #3a3332;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
@media (min-width: 1181px) {
  .dataList .Txt .title a:hover {
    color: #ad2929;
  }
}
.dataList .Txt .text {
  margin-top: 10px;
  line-height: 20px;
  font-size: 16px;
  height: 20px;
  color: #808080;
  padding-left: 20px;
  position: relative;
}
.dataList .Txt .text::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 16px;
  background-color: #ad2929;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mainArea {
  padding-top: 30px;
}

.insIntroBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.insIntroBox .albumBox {
  width: 100%;
  max-width: 860px;
  margin-right: 0;
  margin: 0 auto;
  margin-bottom: 20px;
}