@charset "UTF-8";

.event-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.event-list > li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-self: stretch;
  align-content: flex-start;
  width: calc((100% - 30px) / 2);
  padding: 0 !important;
  background: none !important;
  margin-bottom: 0 !important;
}
.event-list > li:nth-child(n + 3) {
  margin-top: 30px;
}

.event-list .item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 1;

  display: none;
}

.event-list .item .category {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.event-list .item .category span {
  line-height: 1;
  display: inline-block;
  min-width: 50px;
  padding: 4px 10px;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  margin-right: 5px;
  background: #fff;
  font-weight: bold;
}
.event-list .item .category span.-cate01 {
  border: 1px solid #8bc53f;
  color: #8bc53f;
}
.event-list .item .category span.-cate02 {
  border: 1px solid #f2760f;
  color: #f2760f;
}
.event-list .item .category span.-cate03 {
  border: 1px solid #999;
  color: #999;
}
.pickup{
  margin-right: 10px;
}
.pickup span{
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  background: #fd9c22;
  line-height: 1;
  border-radius: 5px 0px 5px 0px;
  display: inline-block;
}
.pickup.-status01 span{
  background: #486d21;
}
.pickup.-status02 span{
  background: #f20f0f;
}
.pickup.-status03 span{
  background: #999;
}
.pickup.-status04 span{
  background: #000;
}

.second.pickup {
  margin-right: 0px;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
}
.event-list .image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  border: 1px solid #f2f2f2;
}

.event-list .image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  display: block;
}

.event-list .text {
  width: 100%;
  margin-top: 10px;
}
.event-list .text .title {
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: 2px solid #999999;
  position: relative;
}
.event-list .text .title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 150px;
  border-bottom: 2px solid #1b3f7f;
}
.event-list .text .date {
  line-height: 1;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.event-list .text .event-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-list .text .event-btn li {
  width: 40%;
  padding: 0 !important;
  margin-bottom: 0 !important;
  background: none !important;
}
.event-list .text .event-btn li:nth-child(2) {
  margin-left: 15px;
}
.event-list .text .event-btn a {
  font-size: 14px;
  display: block;
  border: 1px solid #1b3f7f;
  color: #1b3f7f;
  background: #fff;
  line-height: 1;
  border-radius: 50px;
  padding: 10px 0;
  text-align: center;
}
.event-list .text .event-btn li.e-form a {
  background: #1b3f7f;
  color: #fff;
}
.event-list .text .event-btn a:hover {
  background: rgba(27, 63, 127, 0.1);
  opacity: 1;
}

@media screen and (max-width: 480px) {


  

.event-list > li {
  width: 100%;
  margin-bottom: 30px!important;
}
.event-list > li:nth-child(n + 3) {
  margin-top: 0px;
}

.event-list .image {
  border: none;
  height: auto;
}

.event-list .image img {
  position: static;
  transform: translate(0, 0);
  width: auto;
  max-height: 200px;
  max-width: 100%;
}

.event-list .text .event-btn li {
  width: 45%;
}

}