*:link, *:visited, *:hover, *:active, *:focus {
  transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}
* {
  transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}

.component-wapper-div {
  padding-top: 0px;
}
@media all and (min-width: 769px) {
  .component-wapper-div {
    padding-top: 0px;
  }
}

.component-box:first-child .max-wid-div {
  padding: 0 0;
}

.component-box {
  margin-bottom: 24px;
}

a img {
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
}

a:hover img {
  transition: all 0.5s linear;
  transform: scale3d(1.02, 1.02, 1);
}

.eventPage {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto 0;
  padding-bottom: 24px;
}
.eventPage picture,
.eventPage img {
  width: 100%;
}
.eventPage picture.img_m,
.eventPage img.img_m {
  display: block;
}
@media all and (min-width: 769px) {
  .eventPage picture.img_m,
  .eventPage img.img_m {
    display: none;
  }
}
.eventPage picture.img_pc,
.eventPage img.img_pc {
  display: none;
}
@media all and (min-width: 769px) {
  .eventPage picture.img_pc,
  .eventPage img.img_pc {
    display: block;
  }
}
.eventPage .eventbtn_bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0 auto;
}
.eventPage .eventbtn_bar a {
  position: relative;
  flex: 1 auto 1;
  text-align: center;
  overflow: hidden;
  display: block;
}
.eventPage .eventbtn_bar a img {
  width: 100%;
  height: auto;
  display: block;
}
.eventPage .eventbtn_bar a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -100%;
  width: 250%;
  height: 250%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
  filter: blur(18px);
  opacity: 0;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 2;
}
.eventPage .eventbtn_bar a:hover::after {
  animation: glowSweepBlur 1.2s ease forwards;
}
@keyframes glowSweepBlur {
  0% {
    top: 100%;
    left: -100%;
    opacity: 0.2;
  }
  25% {
    opacity: 0.4;
  }
  100% {
    top: -100%;
    left: 100%;
    opacity: 0;
  }
}
.eventPage .eventproducts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 16px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
}
.eventPage .eventproducts a {
  flex: 0 0 calc(50% - 8px);
  display: block;
  margin-bottom: 16px;
}
.eventPage .eventproducts a img {
  width: 100%;
  height: auto;
  display: block;
}
@media all and (min-width: 769px) {
  .eventPage .eventproducts a {
    flex: 0 0 calc(25% - 8px);
    margin-bottom: 8px;
  }
}

.cate-bar {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 10px auto;
  font-weight: 900;
  padding: 16px 0px;
  background-color: #000;
}
@media all and (min-width: 769px) {
  .cate-bar {
    width: 100%;
    max-width: 1200px;
  }
}
.cate-bar .tit {
  display: block;
  white-space: normal;
  text-align: center;
  margin: 0 auto;
  width: auto;
  border-radius: 50px;
  background-color: #fff;
  gap: 12px;
  font-size: 26px;
  color: #000;
  padding: 4px 30px;
  line-height: 1.4;
  margin: 0 3%;
}
@media all and (min-width: 769px) {
  .cate-bar .tit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    white-space: nowrap;
    margin: 0 10%;
  }
}
.cate-bar .tit .titcol {
  color: #f401e8;
  padding: 0 8px;
}
.cate-bar .tit .titsm {
  font-size: 18px;
}
.cate-bar .tit a {
  position: relative;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.cate-bar .tit a:hover {
  transform: scale(0.9);
  filter: brightness(120%);
}
.cate-bar .tit a img {
  height: 36px;
  vertical-align: middle;
}
.cate-bar .tit .btn-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 50%;
  padding: 4px 12px;
  background: linear-gradient(to right, #f401e8, #f401e8);
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cate-bar .tit .btn-more-icon::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #000;
  transition: margin-left 0.2s ease;
}
.cate-bar .tit .btn-more-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(255, 138, 0, 0.4);
}
.cate-bar .tit .btn-more-icon:hover::after {
  margin-left: 8px;
}