@charset "UTF-8";
ul.eventList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 50px;
}
ul.eventList > li.__item {
  position: relative;
  /*box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);*/
  flex: 1;
  min-width: 350px;
}
ul.eventList > li.__item:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.24), 0 15px 30px 0 rgba(0, 0, 0, 0.19);
  z-index: 1;
}
ul.eventList > li.__item > a {
  display: block;
}
ul.eventList > li.__item section {
  display: flex;
  flex-flow: column;
  padding: 1.5em 1.5em 2em;
  color: #666;
}
ul.eventList > li.__item section > div {
  display: block;
}
ul.eventList > li.__item section > div.ev-date {
  display: flex;
  gap: 10px;
  color: hsl(150deg, 100%, 30%);
  font-family: "Montserrat" !important;
  font-weight: bold;
}
ul.eventList > li.__item section > div.ev-date > div {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}
ul.eventList > li.__item section > div.ev-date span {
  display: block;
}
ul.eventList > li.__item section > div.ev-date .ev-mm {
  font-size: 4rem;
  line-height: 100%;
  text-align: center;
  min-width: 50px;
}
ul.eventList > li.__item section > div.ev-date .ev-dd {
  font-size: 1.5rem;
  white-space: nowrap;
}
ul.eventList > li.__item section > div.ev-date .ev-yy {
  font-size: 1.5rem;
}
ul.eventList > li.__item section > div.ev-summary {
  position: relative;
  padding: 0 0 30px;
  width: 100%;
}
ul.eventList > li.__item section > div.ev-summary > * {
  width: 100%;
}
ul.eventList > li.__item section > div.ev-summary > h2 {
  position: relative;
  display: block;
  min-height: 4em;
  margin: 0 0 0.25em;
  font-size: 1.25em;
  font-weight: bold;
}
ul.eventList > li.__item section > div.ev-summary > h2::before {
  content: attr(data-sub-h);
  display: block;
  min-height: 2em;
  margin: 0.25em 0;
  font-size: 0.9rem;
  color: hsl(150deg, 100%, 30%);
  font-family: "Montserrat" !important;
}
ul.eventList > li.__item section > div.ev-summary > div {
  display: block;
  font-size: 0.9em;
}
ul.eventList > li.__item section > div.ev-summary > div:not([class]) {
  display: inline-block;
}
ul.eventList > li.__item section > div.ev-summary > div.ev-exhibits {
  position: relative;
  padding-top: 0.25em;
  font-size: 0.75em;
  line-height: 125%;
  color: #808b88;
}
ul.eventList > li.__item section > div.ev-summary > div.ev-exhibits::before {
  content: "出展製品";
  font-size: 0.75em;
  display: block;
  color: hsl(150deg, 100%, 30%);
}
ul.eventList > li.__item > div.ev-linkBtn {
  position: absolute;
  left: 1.5em;
  bottom: 1.5em;
  z-index: 2;
}
ul.eventList > li.__item > div.ev-linkBtn > a {
  padding: 0.2em 1em;
  color: hsl(150deg, 100%, 30%);
  border: hsl(150deg, 100%, 30%) 2px solid;
  border-radius: 5px;
  transition: all 0.8s ease;
}
ul.eventList > li.__item > div.ev-linkBtn > a:hover {
  color: white;
  background: hsl(150deg, 100%, 30%);
}
ul.eventList > li.__item > div.ev-linkBtn > a + a {
  margin-left: 5px;
}

@media screen and (max-width: 576px) {
  ul.eventList {
    flex-flow: column;
  }
  ul.eventList li.__item {
    width: 95%;
    min-width: inherit;
    margin: 10px auto;
    border: 2px solid hsl(150deg, 100%, 30%);
  }
  ul.eventList li.__item div.ev-summary {
    min-height: inherit;
  }
  ul.eventList li.__item div.ev-summary::before {
    height: auto;
  }
  ul.eventList li.__item div.ev-linkBtn {
    bottom: 1.5em !important;
    text-align: center;
  }
}
/* --- 個別ページ ------------------------------------------------*/
h1.ev-page-h1 {
  margin: 1em 0;
  font-weight: 600;
  color: hsl(150deg, 100%, 30%);
}

div.ev-editdate {
  width: 100%;
  margin-top: 1rem;
  text-align: end;
  color: #666666;
  font-size: 0.85em;
}

p.ev-text {
  padding: 1.5em 0.25em;
  line-height: 200%;
}

td.ev-exhibits > * {
  display: inline-block;
  margin-top: -0.15em;
  margin-bottom: 0.5em;
  padding: 0.15em 0.75em 0.075em 0.75em;
  background: #eee;
  border: #eee solid 2px;
  border-radius: 5px;
  font-size: 0.85em;
  line-height: 1.6;
}
td.ev-exhibits > a {
  border-color: hsl(150deg, 100%, 30%);
  color: hsl(150deg, 100%, 30%);
  font-weight: bold;
}
td.ev-exhibits > a:hover {
  background: hsl(150deg, 100%, 30%);
  color: white;
}
/*# sourceMappingURL=events.css.map */