@charset "UTF-8";
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none;
}

#filter-btn-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
#filter-btn-list li {
  position: relative;
  text-align: center;
}
#filter-btn-list li label {
  display: block;
  background: #fff;
  border: solid 1px #DEDEDE;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  padding: 10px;
}
#filter-btn-list li label:hover {
  background: #F0F4F7;
}
#filter-btn-list li label input[type=radio] {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  appearance: radio !important;
}
#filter-btn-list li label input[type=radio]:focus {
  outline: 1px solid #cc0000;
}
#filter-btn-list li.active label {
  background: #F0F4F7;
}

/*コンテンツのリスト*/
.filter-menu {
  background: #F8F8F8;
  padding: 24px 30px;
  margin-top: 32px;
}
.filter-menu dt {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.filter-menu dd {
  margin-top: 8px;
}

.event-list {
  display: grid;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .event-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.event-list a {
  position: relative;
  color: #333;
  text-decoration: none;
}
.event-list a::after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  content: "";
  width: 8px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(/content/dam/sites/global/Y18/img/icons_utility.svg);
  background-repeat: no-repeat;
  background-size: 100px auto;
  background-position: 0 0;
}
.event-list .no-event {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .event-list .no-event {
    grid-column: span 3;
  }
}

.event-item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  row-gap: 7px;
  padding-bottom: 15px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  transition: 0.2s;
}
.event-item:hover {
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
}
.event-item .application-label {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 12px;
}
.event-item.is-open .application-label {
  background-color: #CC0000;
  padding: 5px;
}
.event-item.is-closed .application-label {
  background-color: #666;
  padding: 5px;
}
.event-item .event-image {
  margin-bottom: -7px;
}
.event-item .event-info {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #F4F5F6;
}
.event-item .event-date {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
.event-item .event-venue {
  font-size: 14px;
}
.event-item .event-venue span {
  display: inline-block;
  background: #6A7181;
  color: #fff;
  padding: 5px;
  font-weight: bold;
}
.event-item .event-title, .event-item .event-text, .event-item .event-period, .event-item .event-labels {
  padding: 0 15px;
}
.event-item .event-title {
  font-size: 18px;
  font-weight: bold;
}
.event-item .event-text {
  font-size: 14px;
}
.event-item .event-period {
  font-weight: bold;
}
.event-item .event-label {
  padding: 5px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  background: #003366;
  line-height: 1;
}/*# sourceMappingURL=event.css.map */