@charset "UTF-8";

/* -------------------------------------------------------------------------------
|  Created:     20xx-xx-xx
|  Updated:     N/A
|------------------------------------------------------------------------------- */

/*---------------------------------------------------------
  最新一覧
---------------------------------------------------------*/
.meswp-event {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.meswp-event__title {
  min-height: calc(2em * 1.8);
}

.meswp-event__text {
  display: flex;
  flex-wrap: wrap;
  > * {
    margin-top: 10px;
    display: block;
  }
  > dt {
    padding: 5px;
    width: 5em;
    background-color: var(--grey200);
    text-align: center;
    align-self: flex-start;
  }
  > dd {
    padding-left: 5px;
    padding-top: 5px;
    flex-grow: 1;
    width: calc(100% - (10px * 2) - 5em);
    + dd {
      margin-top: 0;
      margin-left: 5em;
    }
  }
}

.meswp-event__image {
  margin-top: auto;
  padding-top: 10px;
}

.meswp-event__link {
  margin-top: 20px;
}

/*! Small only (Smallのみ) */
@media only screen and (max-width: 767px) {
  .meswp-event__title {
    min-height: auto;
  }
}


/*---------------------------------------------------------
  過去一覧
---------------------------------------------------------*/

.meswp-contents {
  margin-top: 10px;
  > * {
    display: inline-block;
  }
  > dt {
    width: 5em;
    vertical-align: top;
  }
  > dd {
    width: calc(100% - 5.5em);
    &::before {
      content: " : ";
    }
  }
}