@import url("/humanframe/globaltheme/assets/style/font/font.css");
html {
  font-size: 100%;
  overflow: hidden;
}

body {
  font-size: 1rem;
  height: 100%;
  overflow: hidden;
}

body,
div,
main {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: block;
  margin: 0;
  padding: 0;
}
a:focus .media-item, a:focus-within .media-item {
  border: 4px solid #000;
  outline: inset;
}

.media-item {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.media-img-wrap {
  display: block;
  position: relative;
  height: 100%;
  min-height: 100vh;
}
.media-img-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 100%;
}

.media-txt-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0.625rem 1rem;
}
.media-txt-wrap .media-title {
  display: block;
  overflow: hidden;
  width: 100%;
  color: #fff;
  font-family: "Noto Sans";
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}