@charset "UTF-8";

/*--------------------------------
 whole
---------------------------------*/

#container a {
  text-decoration: none;
}

#container > div {
  overflow: hidden;
}

.ownd__wrap {
  max-width: 1300px;
  min-width: 1000px;
  margin: 30px auto;
}

.ownd__wrap a:hover img {
  opacity: 0.6;
}

.titleWrapper {
  display: block;
  margin: 20px 0;
}

.titleWrapper .titleText h1,
.titleText h2 {
  color: #192B5B;
  font-size: 24px;
  font-weight: bold;
  margin-top: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}


/*--------------------------------
 tabMenu
---------------------------------*/

.filter-list {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #192b5b;
}

.filter-list li {
  width: calc(100% / 5);
  padding: 0px 5px;
  box-sizing: border-box;
  cursor: pointer;
  height: 40px;
  box-sizing: border-box;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  background: #eee;
  color: #192b5b;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
}

.filter-list li:hover {
  color: #1445CC;
  text-decoration: none;
  background: #EDF3FF;
}

.filter-list li.is-active {
  position: relative;
  top: 1px;
  height: 41px;
  border-top: 6px solid #192b5b;
  border-left: 1px solid #192b5b;
  border-right: 1px solid #192b5b;
  background: #fff;
  line-height: 33px;
}

.filter-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.filter-list li span {
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
  margin-left: 8px;
}

.filter-list li[data-filter="all"] span {
  margin-left: 0;
}

.top-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.top-banner::after {
  content: "";
  position: absolute;
  border-style: none;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 60px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 100px);
}

.top-banner li {
  border: 5px solid #fff;
  width: calc(100% / 5);
  background: #eee;
  text-align: center;
  padding: 0px 0px;
  box-sizing: border-box;
  text-align: center;
}

.top-banner li a {
  text-align: center;
}

.top-banner li a img {
  vertical-align: top;
  width: 100%;
}

.more {
  margin-top: 0;
  color: #192B5B;
  font-size: 16px;
  position: relative;
  width: 100%;
  border-bottom: solid 1px #192B5B;
  background-color: #fff;
  box-shadow: 0px 3px 4px #cccccc;
  padding: 10px;
  margin-bottom: 40px;
  animation: 0.5s ease-in 1s infinite reverse both running;
}

.more:hover {
  background: #EDF3FF;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  top: 2px;
}

.more::after {
  position: absolute;
}

.more__button {
  position: relative;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-align: center;
  display: block;
}

.more__button-deco {
  font-weight: bold;
}

.is-hidden {
  display: none;
}


/*--------------------------------
 mainView
---------------------------------*/

.ownd__mainView {
  background: repeating-linear-gradient(-45deg, #BC2525, #BC2525 5px, #DF0B0D 5px, #DF0B0D 10px);
  position: relative;
  height: 400px;
  margin-bottom: 120px;
}

.ownd__mainView::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 60px solid transparent;
  border-left: 50vw solid transparent;
  border-right: 50vw solid #FFF;
  border-bottom: 60px solid #FFF;
}

.ownd__mainView img {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 900px;
  z-index: 100;
}

.ownd__section {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.popular-articles-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px
}

.popular-articles-item {
  width: calc(100% / 5);
  background-color: #EEEEEE;
  color: #333;
  margin: 5px;
}

.popular-articles-item:hover {
  color: #1445CC;
  text-decoration: none;
  background: #EDF3FF;
}

.popular-articles-item .item-img {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.popular-articles-item img {
  width: 100%;
}

.popular-articles-item a .item-text {
  padding: 0 10px 10px;
}

.item-text .item-title {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.item-text time {
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.topbutton__wrap {
  margin-top: 32px;
  display: block;
  position: relative;
}

.topbutton {
  position: relative;
  display: block;
  color: #192B5B;
  font-size: 14px;
  font-weight: bold;
  line-height: calc(21/14);
  text-align: center;
  width: 600px;
  padding: calc(27/2*1px) 0;
  margin: 0 auto;
  border: 1px solid #192B5B;
  border-radius: 4px;
  box-shadow: 0px 3px 4px #cccccc;
}

.topbutton::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  margin: 0 20px 0 0;
  border-right: 1px solid #192B5B;
  border-bottom: 1px solid #192B5B;
  transform: translate(0, -50%) rotate(-45deg);
}

.topbutton:hover {
  color: #1445CC;
  text-decoration: none;
  border: 1px solid #1445CC;
  background: #EDF3FF;
}


/*--------------------------------
 movie
---------------------------------*/

.hide-area {
  display: none;
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-video .modaal-inner-wrapper {
  padding: 0;
}


/*--------------------------------
 layout
---------------------------------*/

#movieItem.is-active {
  width: calc(100% / 3 - 20px);
  position: relative;
  margin: 10px;
  text-align: left;
}

.movie_img {
  overflow: hidden;
  border: solid 1px #222;
}

#movieItem.is-active a img {
  transform: scale(1.1, 1.1);
  position: relative;
}

#movieItem.is-active a img:hover {
  transform: scale(1.2, 1.2);
}

.movie_img a::before {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 74.8%;
  pointer-events: none;
  background: #555;
  opacity: 0.3;
  z-index: 1;
}

.movie_title_wrap span {
  pointer-events: none;
  position: absolute;
  top: 30%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.movie_title_url {
  color: aliceblue;
  font-size: 10px;
  margin-top: 30px;
}

.itemlabel {
  background-color: #555;
  color: #fff;
  font-size: 12px;
  padding: 5px;
}

.item-text {
  padding: 10px;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.mainView img {
  z-index: 100;
}

#movieItem .item-text {
  background: #fff;
  box-shadow: 0px 3px 4px #CCCCCC;
}

#movieItem .item-title {
  margin: 18px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie_btn {
  margin: 10px;
  display: block;
  color: #192B5B;
  background-color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: calc(21/14);
  text-align: center;
  padding: calc(27/2*1px) 0;
  border: 1px solid #192B5B;
  border-radius: 4px;
  text-decoration: none !important;
}

a:hover {
  color: #1b2b5b;
  text-decoration: none;
}

.more a {
  text-decoration: none;
}