/* CSS Document */
.classBox a,
.classBox span, .store .newsList .Img img {
  transition: all 0.5s ease-in-out;
}

.newsInfoBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  background-color: #20466e;
  color: #fff;
}

.store .newsList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
}
.store .newsList .newsItem {
  width: calc(50% - 20px);
  padding: 15px;
  border: 1px solid #231917;
  border-radius: 0 20px 0 20px;
}
@media (max-width: 1280px) {
  .store .newsList .newsItem {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 960px) {
  .store .newsList .newsItem {
    width: 480px;
    margin: 0 auto 25px;
  }
}
@media (min-width: 1181px) {
  .store .newsList .newsItem:hover .Img img {
    scale: 1.05;
    opacity: 0.8;
  }
}
.store .newsList .item {
  display: flex;
}
@media (max-width: 480px) {
  .store .newsList .item {
    flex-direction: column;
    align-items: center;
  }
}
.store .newsList .Img {
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .store .newsList .Img {
    width: 150px;
  }
}
.store .newsList .Img img {
  max-width: 100%;
}
.store .newsList .Img a {
  position: absolute;
}
.store .newsList .Txt {
  overflow: hidden;
  width: calc(100% - 200px);
  padding: 20px 0 20px 20px;
}
@media (max-width: 1180px) {
  .store .newsList .Txt {
    width: calc(100% - 150px);
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .store .newsList .Txt {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.store .newsList .Txt .title {
  margin-bottom: 3px;
  font-size: 19px;
  font-weight: 400;
  color: #231917;
  font-weight: 600;
  padding-bottom: 15px;
}
@media (max-width: 1180px) {
  .store .newsList .Txt .title {
    padding-bottom: 0px;
    font-size: 17px;
  }
}
.store .newsList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
}
.store .newsList .Txt .add,
.store .newsList .Txt .tel,
.store .newsList .Txt .open {
  display: flex;
  padding: 2.5px 0;
}
.store .newsList .Txt .tag {
  display: block;
  color: #231917;
  font-size: 16px;
  font-weight: 600;
  width: 75px;
  flex-shrink: 0;
}
.store .newsList .Txt .text {
  margin-top: 7px;
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  height: 60px;
}

.classBox {
  position: relative;
  z-index: 4;
}
.classBox .classCurrent {
  background-color: #912A2E;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 30px 10px 10px;
  position: relative;
}
.classBox .classCurrent::before {
  content: "\f107";
  color: #fff;
  font-size: 15px;
  font-family: FontAwesome;
  line-height: 1;
  margin-top: -6px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 1;
}
@media (min-width: 1181px) {
  .classBox .classCurrent {
    display: flex;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}
.classBox a,
.classBox span {
  cursor: pointer;
}