@charset "UTF-8";
/* =======================
	Variables
======================= */
/* =======================
	Reset
======================= */
html {
  height: 100%;
  font: normal normal normal 10px/21px "Meiryo", "メイリオ", "ヒラギノ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  height: 100%;
  background-color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

/* =======================
	Header
======================= */
.wg-head {
  height: 4rem;
  margin: 0;
  background: #333333;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

/* =======================
	Navigation Tabs
======================= */
.wg-nav-tabs {
  padding: 1rem 1rem 0;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  column-gap: 0.6rem;
  border-bottom: 0.1rem solid #333333;
  font-weight: bold;
}
.wg-nav-tabs .wg-nav-link {
  list-style: none;
  width: 50%;
  display: block;
  height: 4rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 4rem;
  color: #333333;
  text-decoration: none;
  border: 0.1rem solid #333333;
  border-radius: 0.4rem 0.4rem 0 0;
  border-bottom: none;
  box-sizing: border-box;
  cursor: pointer;
}
.wg-nav-tabs .wg-nav-link.active {
  color: #fff;
  background: #333333;
  cursor: none;
  pointer-events: none;
}

/* =======================
	List
======================= */
.wg-list {
  list-style: none;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0.5rem 0.5rem 0;
}
.wg-list.column-3 li, .wg-list.column-2 li {
  float: left;
  box-sizing: border-box;
  padding: 0.2rem;
  overflow: hidden;
}
.wg-list.column-3 li {
  width: 33.3333%;
}
.wg-list.column-2 li {
  width: 50%;
}
.wg-list.column-2 li .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 21rem;
  height: 21rem;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .wg-list.column-2 li .play-icon {
    width: 3.8rem;
    height: 3.8rem;
  }
}
/* =======================
	Grid support (new browser)
======================= */
@supports (display: grid) {
  .wg-list.column-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  .wg-list.column-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  .wg-list.column-2 li, .wg-list.column-3 li {
    float: none;
    width: 100%;
    padding: 0;
  }
}
/* =======================
	Image
======================= */
.wg-img-wrap {
  position: relative;
  width: 100%;
}
.wg-img-wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.column-2 .wg-img-wrap::before {
  padding-top: 133.3333%;
}

.wg-image {
  position: absolute;
  inset: 0;
  background: center no-repeat;
  background-size: cover;
}

/* =======================
	Empty
======================= */
.wg-empty {
  position: absolute;
  width: 100%;
  margin: 0;
  top: 20%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #d1d1d1;
}

/* =======================
	Container
======================= */
.wg-cont {
  -ms-flex: 1;
  flex: 1;
  position: static;
}

/* =======================
	Pager
======================= */
.wg-pager {
  text-align: center;
  font-size: 1.4rem;
  color: #333333;
  padding: 1rem;
  overflow: hidden;
}

.wg-page-prev,
.wg-item-count,
.wg-page-next {
  float: left;
  width: 33.3333%;
  margin: 0;
}

.wg-page-prev > *,
.wg-item-count,
.wg-page-next > * {
  display: block;
  height: 4rem;
  line-height: 4rem !important;
  background: #fff;
  color: #333333;
}

.wg-page-prev > *,
.wg-page-next > * {
  border: 0.1rem solid #dedede;
  border-radius: 0.4rem;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}

.wg-page-prev > span.disabled,
.wg-page-next > span.disabled {
  background: #f2f2f2;
  border-color: #f2f2f2;
  color: #9D9D9D;
  cursor: none;
  pointer-events: none;
}

.wg-page-prev * {
  margin-right: 0.9rem;
}

.wg-page-next * {
  margin-left: 0.9rem;
}

.wg-item-count {
  font-size: 1.2rem;
}

/* =======================
	Copyright
======================= */
.wg-copy {
  height: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #333333;
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  overflow: hidden;
}