@charset "UTF-8";
.btn-more-view span {
  color: #2e2a26;
  font-size: 1.4rem;
}
.btn-more-view span::after {
  content: "";
  display: inline-block;
  margin-left: 2px;
  width: 12px;
  height: 12px;
  background-image: url(../images/common/more_view_arrow.png);
}

.paging {
  margin-top: 40px;
  text-align: center;
}

/*.paging > a{display: inline-block; width:25px; height:25px; background:url(../images/common/paging_btn_spr.png) no-repeat; background-size: 80px 25px;}
.paging > a.first{background-position:0 0;}
.paging > a.prev{background-position:-17px 0;}
.paging > a.next{background-position:-37px 0;}
.paging > a.last{background-position:-58px 0;}*/
.paging > a {
  display: inline-block;
  width: 25px;
  height: 25px;
}

.paging > a.prev {
  background: url(../images/common/slide_left_arrow.png) no-repeat;
}

.paging > a.next {
  background: url(../images/common/slide_right_arrow.png) no-repeat;
}

.paging ol {
  overflow: hidden;
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
  vertical-align: top;
}

.paging ol li {
  float: left;
  margin-top: 6px;
  margin-left: 10px;
  vertical-align: top;
}

.paging ol li:first-child {
  margin-left: 0;
}

.paging ol li a {
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
}

.paging ol li a:hover em {
  text-decoration: underline;
}

.paging ol li a em {
  display: block;
  color: #2e2a26;
  font-size: 1.4rem;
  vertical-align: top;
}

.paging ol li.active {
  margin-top: 0;
}

.paging ol li.active a {
  width: 25px;
  height: 25px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 50%;
}

.paging ol li.active a em {
  margin-top: 5px;
  color: #b2063e;
}

.form-text {
  display: inline-block;
  width: 100%;
  height: 30px;
}

.form-text input {
  padding: 0 15px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  font-size: 1em;
  box-sizing: border-box;
  outline: none;
}

.form-text input:focus {
  border-color: #000;
}

.form-text label {
  color: #333;
}

/* input : checkbox */
.form-checkbox {
  position: relative;
  display: inline-block;
  text-align: left;
  cursor: pointer;
}

.form-checkbox label {
  display: inline-block;
  padding-right: 26px;
  height: 26px;
  color: #787878;
  line-height: 26px;
  cursor: pointer;
  letter-spacing: -1px;
}

.form-checkbox label:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #999;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #fff;
}

.form-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
}

.form-checkbox input:checked + label:before {
  border-color: #000;
  background-image: url("../images/common/check.png");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

.form-checkbox input {
  vertical-align: top;
}

.form-checkbox em {
  color: #333;
}

.form-radio {
  position: relative;
  display: inline-block;
  text-align: left;
  cursor: pointer;
}

.form-radio label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  color: #787878;
  line-height: 20px;
  cursor: pointer;
  letter-spacing: -1px;
}

.form-radio label:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ffe10d;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  box-sizing: border-box;
}

.form-radio label:after {
  content: "";
  position: absolute;
  z-index: 4;
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffe10d;
}

.form-radio input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
}

.form-radio input:checked + label:after {
  display: block;
}

.form-radio input {
  vertical-align: top;
}

.form-radio em {
  color: #333;
}

.form-file {
  display: inline-block;
  /*position: relative;*/
  width: 100%;
  height: 30px;
}

/*.form-file .form-text input{
    padding-right: 40px;
    box-sizing: border-box;
}*/
.form-file input[type=file] {
  padding: 4px 6px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  font-size: 1em;
  box-sizing: border-box;
  outline: none;
}

.form-select {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 30px;
}

.form-select select {
  padding: 0 15px;
  width: 100%;
  height: 100%;
  color: #111;
  border: 1px solid #d9d9d9;
  font-size: 1em;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #fff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-select:before,
.form-select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: #a5a5a5;
}

.form-select:before {
  transform: rotate(-45deg) translate(4px, 4px);
}

.form-select:after {
  transform: rotate(45deg);
}

.form_label_wrap label + [class^=form-] {
  margin-top: 4px;
}

.thumb-list--row {
  display: flex;
}
.thumb-list--row > div {
  margin-left: 30px;
}
.thumb-list--row > div:first-child {
  margin-left: 0;
}
.thumb-list--col > div {
  margin-top: 30px;
}
.thumb-list--col > div:first-child {
  margin-top: 0;
}
.thumb-list--grid {
  display: flex;
  flex-wrap: wrap;
}
.thumb-list--grid.grid_2x2 > div {
  margin-left: 30px;
}
.thumb-list--grid.grid_2x2 > div:nth-child(2n-1) {
  margin-left: 0;
}
.thumb-list--grid.grid_2x2 > div:nth-child(n+3) {
  margin-top: 40px;
}
.thumb-list--grid.grid_3x2 > div {
  margin-left: 30px;
}
.thumb-list--grid.grid_3x2 > div:nth-child(3n-2) {
  margin-left: 0;
}
.thumb-list--grid.grid_3x2 > div:nth-child(n+4) {
  margin-top: 30px;
}

.news-list {
  width: 585px;
}
.news-list__item {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}
.news-list__item:first-child {
  border-top: 1px solid #e5e5e5;
}
.news-list__txt {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  word-break: break-all;
}

.thumb-news-list {
  width: 870px;
}
.thumb-news-list__item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}
.thumb-news-list__img {
  flex: none;
  width: 150px;
  height: 90px;
  margin-right: 20px;
}
.thumb-news-list__img a {
  display: block;
  width: 100%;
  height: 100%;
}
.thumb-news-list__img a img {
  width: 100%;
}
.thumb-news-list__info a {
  display: block;
}
.thumb-news-list__info strong {
  width: 650px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.thumb-news-list__info p {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  margin-top: 1.6rem;
  color: #2e2a26;
  font-size: 1.4rem;
  line-height: 1.5;
}
.thumb-news-list__info .date {
  display: block;
  margin-top: 17px;
  color: #7d807d;
  font-size: 1.2rem;
}

.popular-news-list {
  width: 300px;
}
.popular-news-list__rank {
  margin-right: 15px;
}
.popular-news-list__item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}
.popular-news-list__img {
  width: 72px;
  height: 72px;
}
.popular-news-list__img a {
  display: block;
  width: 100%;
  height: 100%;
}
.popular-news-list__img a img {
  width: 100%;
}
.popular-news-list__info {
  margin-left: 15px;
}
.popular-news-list__info a {
  display: block;
}
.popular-news-list__info strong {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  width: 174px;
  font-size: 1.6rem;
}
.popular-news-list__info .date {
  display: block;
  margin-top: 14px;
  color: #7d807d;
  font-size: 1.2rem;
}

.photo-slide-list,
.video-slide-list {
  position: relative;
  width: 300px;
}
.photo-slide-list .btn-more-view,
.video-slide-list .btn-more-view {
  position: absolute;
  top: 0;
  right: 0;
}
.photo-slide-list .thumb_gallery .btn-txt,
.video-slide-list .thumb_gallery .btn-txt {
  margin-top: 15px;
}
.photo-slide-list .thumb_gallery .btn-txt .txt,
.video-slide-list .thumb_gallery .btn-txt .txt {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}

.video-slide-list .btn-thumb::after {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  right: auto !important;
  bottom: auto !important;
}

[class^=table-] td.t_c {
  text-align: center;
}

[class^=table-] td.t_l {
  text-align: left;
}

[class^=table-] td.t_r {
  text-align: right;
}

.table-type01 {
  border-top: 1px solid #7d7d7d;
}

.table-type01 .t_b {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
}

.table-type01 tr:nth-child(even) {
  background-color: #eee;
}

.table-type01 td {
  padding: 8px 10px;
}

.table-type01 td img {
  width: 60px;
}

.table-type01 .t_s {
  display: block;
  color: #999;
  font-size: 1.3rem;
}

.table-type02 dl {
  overflow: hidden;
  width: 100%;
}

.table-type02 dl dt,
.table-type02 dl dd {
  padding: 3px 0;
  color: #333;
}

.table-type02 dl dt {
  float: left;
}

.table-type02 dl dd {
  float: right;
}

.table-type02 th,
.table-type02 td {
  padding: 4px 0;
  color: #333;
  text-align: center;
  font-weight: normal;
  font-size: 1.5rem;
}

.table-type02 tr th:first-child,
.table-type02 tr td:first-child {
  text-align: left;
}

.table-type02 thead th {
  padding: 15px 0;
}

.table-type02 tbody {
  border-top: 2px dashed blue;
  border-bottom: 2px dashed blue;
}

.table-type02 tbody tr:first-child td {
  padding-top: 15px;
}

.table-type02 tbody tr:last-child td {
  padding-bottom: 15px;
}

.table-type02 tfoot th {
  padding: 15px 0;
  font-weight: bold;
  font-size: 1.8rem;
}

.table-type03 table th {
  padding: 8px 10px;
  color: #333;
  border: 1px solid #ddd;
  background-color: #F5F5F5;
  text-align: left;
}

/**/
.table-type03 table td {
  padding: 8px 10px;
  color: #333;
  border: 1px solid #ddd;
}

.table-type03 table td .color_view {
  display: inline-block;
  margin-right: 5px;
  width: 19px;
  height: 19px;
  border-radius: 2px;
  vertical-align: middle;
}

.table_total {
  overflow: hidden;
}

.table_total em {
  font-weight: bold;
  font-size: 1.3rem;
}

.table_total .total_amount {
  float: left;
  padding: 8px 10px;
}

.table_total .total_price {
  float: right;
  padding: 8px 10px;
  color: #b94a48;
}

.type-video.thumb_gallery, .type-video.thumb_278x156, .type-video.thumb_277x160, .type-video.thumb_278x278, .type-video.thumb_585x508, .type-video.thumb_380x223, .type-video.thumb_870x530 {
  width: 200px;
}
.type-video.thumb_gallery .btn-thumb::before, .type-video.thumb_278x156 .btn-thumb::before, .type-video.thumb_277x160 .btn-thumb::before, .type-video.thumb_278x278 .btn-thumb::before, .type-video.thumb_585x508 .btn-thumb::before, .type-video.thumb_380x223 .btn-thumb::before, .type-video.thumb_870x530 .btn-thumb::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.type-video.thumb_gallery .btn-thumb::after, .type-video.thumb_278x156 .btn-thumb::after, .type-video.thumb_277x160 .btn-thumb::after, .type-video.thumb_278x278 .btn-thumb::after, .type-video.thumb_585x508 .btn-thumb::after, .type-video.thumb_380x223 .btn-thumb::after, .type-video.thumb_870x530 .btn-thumb::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../images/common/btn_thumb_play.png);
  background-size: 100%;
}
.type-photo_slide.thumb_gallery, .type-photo_slide.thumb_278x156, .type-photo_slide.thumb_277x160, .type-photo_slide.thumb_278x278, .type-photo_slide.thumb_585x508, .type-photo_slide.thumb_380x223, .type-photo_slide.thumb_870x530 {
  width: 200px;
}
.type-photo_slide.thumb_gallery .btn-thumb::after, .type-photo_slide.thumb_278x156 .btn-thumb::after, .type-photo_slide.thumb_277x160 .btn-thumb::after, .type-photo_slide.thumb_278x278 .btn-thumb::after, .type-photo_slide.thumb_585x508 .btn-thumb::after, .type-photo_slide.thumb_380x223 .btn-thumb::after, .type-photo_slide.thumb_870x530 .btn-thumb::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/common/icon_photo_slide.png);
  background-size: 100%;
}
.type-photo.thumb_gallery, .type-photo.thumb_278x156, .type-photo.thumb_277x160, .type-photo.thumb_278x278, .type-photo.thumb_585x508, .type-photo.thumb_380x223, .type-photo.thumb_870x530 {
  width: 200px;
}
.type-photo.thumb_gallery .btn-thumb::after, .type-photo.thumb_278x156 .btn-thumb::after, .type-photo.thumb_277x160 .btn-thumb::after, .type-photo.thumb_278x278 .btn-thumb::after, .type-photo.thumb_585x508 .btn-thumb::after, .type-photo.thumb_380x223 .btn-thumb::after, .type-photo.thumb_870x530 .btn-thumb::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(../images/common/icon_photo_type.png);
  background-size: 100%;
}
.type-shorts.thumb_gallery, .type-shorts.thumb_278x156, .type-shorts.thumb_277x160, .type-shorts.thumb_278x278, .type-shorts.thumb_585x508, .type-shorts.thumb_380x223, .type-shorts.thumb_870x530 {
  width: 200px;
}
.type-shorts.thumb_gallery .btn-thumb::before, .type-shorts.thumb_278x156 .btn-thumb::before, .type-shorts.thumb_277x160 .btn-thumb::before, .type-shorts.thumb_278x278 .btn-thumb::before, .type-shorts.thumb_585x508 .btn-thumb::before, .type-shorts.thumb_380x223 .btn-thumb::before, .type-shorts.thumb_870x530 .btn-thumb::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.type-shorts.thumb_gallery .btn-thumb::after, .type-shorts.thumb_278x156 .btn-thumb::after, .type-shorts.thumb_277x160 .btn-thumb::after, .type-shorts.thumb_278x278 .btn-thumb::after, .type-shorts.thumb_585x508 .btn-thumb::after, .type-shorts.thumb_380x223 .btn-thumb::after, .type-shorts.thumb_870x530 .btn-thumb::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  width: 37px;
  height: 50px;
  background-image: url(../images/common/icon_shorts_type.png);
  background-size: 100%;
}

.thumb_278x278, .thumb_585x508, .thumb_380x223, .thumb_870x530 {
  position: relative;
}
.thumb_278x278 a, .thumb_585x508 a, .thumb_380x223 a, .thumb_870x530 a,
.thumb_278x278 .btn-thumb,
.thumb_585x508 .btn-thumb,
.thumb_380x223 .btn-thumb,
.thumb_870x530 .btn-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.thumb_278x278 .txt, .thumb_585x508 .txt, .thumb_380x223 .txt, .thumb_870x530 .txt {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
}
.thumb_278x278 .txt__main, .thumb_585x508 .txt__main, .thumb_380x223 .txt__main, .thumb_870x530 .txt__main {
  color: #fff;
}
.thumb_278x278 .txt__main strong:nth-child(2), .thumb_585x508 .txt__main strong:nth-child(2), .thumb_380x223 .txt__main strong:nth-child(2), .thumb_870x530 .txt__main strong:nth-child(2) {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  word-break: break-all;
  display: inline-block !important;
  margin-top: 4px;
  max-width: 750px;
  width: auto;
}
.thumb_278x278 .txt__sub, .thumb_585x508 .txt__sub, .thumb_380x223 .txt__sub, .thumb_870x530 .txt__sub {
  color: #c7c7c7;
}
.thumb_278x278 .txt__sub p, .thumb_585x508 .txt__sub p, .thumb_380x223 .txt__sub p, .thumb_870x530 .txt__sub p,
.thumb_278x278 .txt__sub span,
.thumb_585x508 .txt__sub span,
.thumb_380x223 .txt__sub span,
.thumb_870x530 .txt__sub span {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.thumb_gallery a, .thumb_278x156 a, .thumb_277x160 a,
.thumb_gallery .btn-thumb,
.thumb_278x156 .btn-thumb,
.thumb_277x160 .btn-thumb {
  position: relative;
  display: block;
}
.thumb_gallery .txt, .thumb_278x156 .txt, .thumb_277x160 .txt {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.thumb_870x530 {
  width: 870px !important;
  height: 530px;
}
.thumb_870x530 a {
  position: relative;
}
.thumb_870x530 a::before {
  content: "";
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.8057598039) 90%);
}
.thumb_870x530 .txt {
  padding: 0 50px;
  bottom: 50px;
  text-align: center;
}
.thumb_870x530 .txt__main {
  font-weight: bold;
  font-size: 3.5rem;
}
.thumb_870x530 .txt__main .imp-txt {
  margin: 0 20px;
  visibility: hidden;
  font-size: 3.5rem;
}
.thumb_870x530 .txt__main strong {
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  line-height: 1.1;
}
.thumb_870x530 .txt__main strong::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  display: inline-block;
  height: 4px;
  background-color: #e5654b;
}
.thumb_870x530 .txt__main strong:last-child::after {
  right: 18px;
  left: 18px;
}
.thumb_870x530 .txt__sub {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.thumb_380x223 {
  width: 380px;
  height: 223px;
}
.thumb_380x223 a {
  position: relative;
}
.thumb_380x223 a::before {
  content: "";
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.6965161064) 100%);
}
.thumb_380x223 .txt {
  bottom: 25px;
  padding-left: 25px;
  padding-right: 30px;
  text-align: left;
}
.thumb_380x223 .txt__main {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6;
}
.thumb_585x508 {
  width: 585px !important;
  height: 508px !important;
}
.thumb_585x508 .btn-thumb {
  position: relative;
}
.thumb_585x508 .btn-thumb::before {
  content: "";
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.6965161064) 100%);
}
.thumb_585x508.type-photo_slide::after .btn-thumb::after {
  width: 30px !important;
  height: 30px !important;
}
.thumb_585x508.type-video .btn-thumb::after {
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 70px !important;
  height: 70px !important;
  transform: translateX(-50%) translateY(-50%);
}
.thumb_585x508 .txt {
  bottom: 40px;
  padding: 0 50px;
  text-align: center;
}
.thumb_585x508 .txt__main {
  font-weight: bold;
  font-size: 3rem;
}
.thumb_585x508 .txt__sub {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.thumb_277x160 {
  width: 277px !important;
}
.thumb_277x160 .btn-thumb {
  width: 277px;
  height: 160px;
}
.thumb_277x160 .btn-thumb img {
  width: 100%;
  height: 100%;
}
.thumb_277x160.type-photo_slide .btn-thumb::after {
  width: 20px !important;
  height: 20px !important;
}
.thumb_277x160 .btn-txt {
  margin-top: 15px;
}
.thumb_277x160 .btn-txt .txt {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
.thumb_278x278 {
  width: 278px !important;
  height: 278px !important;
}
.thumb_278x278 a {
  position: relative;
}
.thumb_278x278 a::before {
  content: "";
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.6965161064) 100%);
}
.thumb_278x278 .txt {
  bottom: 25px;
  text-align: left;
  padding-left: 25px;
  padding-right: 25px;
}
.thumb_278x278 .txt__main {
  font-weight: bold;
  font-size: 1.8rem;
}
.thumb_278x278 .txt__sub {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.4rem;
}
.thumb_278x156 {
  width: 278px !important;
}
.thumb_278x156 .btn-thumb {
  position: relative;
  width: 278px;
  height: 156px;
}
.thumb_278x156 .btn-thumb::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.thumb_278x156 .btn-thumb img {
  width: 100%;
  height: 100%;
}
.thumb_278x156 .btn-txt {
  margin-top: 20px;
}
.thumb_278x156 .btn-txt .txt {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
.thumb_gallery .btn-thumb {
  position: relative;
}
.thumb_gallery.type-photo_slide .btn-thumb::after {
  width: 20px !important;
  height: 20px !important;
}
.thumb_gallery .btn-txt {
  margin-top: 21px;
}
.thumb_gallery .btn-txt .txt {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
.thumb_gallery .date {
  display: block;
  margin-top: 20px;
  color: #7d807d;
  font-size: 1.2rem;
}

.ad-banner_300x250 {
  width: 300px;
  height: 250px;
}
.ad-banner_300x250 a {
  display: block;
  width: 100%;
  height: 100%;
}
.ad-banner_full {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  width: 100%;
  background-color: #f3f3f3;
  box-sizing: border-box;
}
.ad-banner_full a {
  display: block;
}
.ad-banner_full a + a {
  margin-left: 30px;
}
.ad-banner_full img {
  width: 100%;
}

/* Reset
   ========================================================================== */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  border: 0 none;
  vertical-align: top;
}

dl, ul, ol, li {
  list-style: none;
}

input, select, textarea, button {
  font: inherit;
  color: inherit;
  vertical-align: middle;
}

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=text], input[type=password], input[type=submit], input[type=search], input[type=time] {
  -webkit-appearance: none;
  border-radius: 0;
}

input:disabled[type=text], input:read-only[type=text] {
  opacity: 1;
  -webkit-text-fill-color: inherit;
}

button, input[type=button], input[type=submit], input[type=reset], input[type=file] {
  -webkit-appearance: button;
  border-radius: 0;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select::-ms-expand {
  display: none;
}

a {
  vertical-align: middle;
  color: inherit;
}

a, a:active, a:hover, a:focus {
  text-decoration: none;
}

address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal;
}

caption {
  z-index: -1;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}

legend {
  position: absolute;
  z-index: -1;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}

a, input, div {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

* {
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

textarea {
  resize: unset;
}

/**
 * 1. 기본 글꼴을 sans-serif로 설정.
 * 2. iOS와 IE에서 기기 회전시에 사용자가 확대하지 않아도 글씨 크기가 재조정되는 것을 예방.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * 기본 마진값을 제거.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * IE8/9에서 정의되지 않은 HTML5 요소를 'block'으로 지정.
 * IE10/11, Firefox에서 정의되지 않은 `detail` 혹은 `summary` 를 `block`으로 지정.
 * IE11에서 정의되지 않은 `main`을 `block`으로 지정
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. IE8/9에서 `inline-block`으로 정의되지 않은 것을 올바르게 지정.
 * 2. Chrome, Firefox, Opera에서 `progress`의 세로 정렬을 표준화.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * 모던 브라우저들에서 controls 속성없이 audio 요소가 렌더링 되는 것을 예방
 * iOS 5 기기에서 높이를 초과하는 것을 제거
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * `[hidden]` 속성의 스타일이 IE 8/9/10에서 존재하지 않는 것을 해결.
 * IE 8/9/10/11, Safari, Firefox < 22 에서 `template` 요소를 숨김.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * IE10에서 활성화(active)된 링크의 회색 배경을 제거.
 */
a {
  background-color: transparent;
}

/**
 * active/hover 상태일때에도 포커스된 요소의 가독성을 향상.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * IE 8/9/10/11, Safari, Chrome에서 존재하지 않는 스타일을 부여.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Firefox 4+, Safari, Chrome에서 `bolder`로 설정되어 있는 것을 `bold`로 수정.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Safari,Chrome에서 존재하지 않는 스타일을 부여.
 */
dfn {
  font-style: italic;
}

/**
 * Firefox 4+, Safari, Chrome에서 `section`과 `article` 내부의 `h1` 요소의 글꼴 크기와 마진값이 서로 다른 것을 통일시킴.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * IE 8/9에서 존재하지 않는 스타일을 부여.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * 브라우저마다 다른 글꼴 크기를 통일시킴.
 */
small {
  font-size: 80%;
}

/**
 * `sub`과 `sup`요소가 모든 브라우저에서 `line-height`에 영향을 미치는 것을 예방.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * IE 8/9/10에서 `a` 요소안에 이미지가 위치할 경우 생기는 테두리 제거.
 */
img {
  border: 0;
}

/**
 * IE 9/10/11에서 `svg` 요소가 영역의 크기를 벗어나지 않도록 수정.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * IE 8/9, Safari에서 존재하지 않는 `margin` 값을 부여.
 */
figure {
  margin: 1em 40px;
}

/**
 * Firefox와 다른 브라우저들 사이의 차이점 해결.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 모든 브라우저에서 `pre` 요소의 `overfolow` 값을 통일.
 */
pre {
  overflow: auto;
}

/**
 * 모든 브라우저에서 글꼴과 글꼴 크기가 다른 것을 해결.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * 알려진 한계: 기본적으로 OS X의  Chrome과 Safari는 `border` 속성을 지정하지 않는 한
 * `select` 요소의 스타일링에 매우 제한적이다.
 */
/**
 * 1. color 속성이 상속되지 않는 것을 수정.
 *    알려진 문제: disabled 된 요소의 color 속성에도 영향을 미친다.
 * 2. font 속성이 상속되지 않는 것을 수정.
 * 3. Firefox 4+, Safari, Chrome에서 마진이 서로 다른 것을 해결.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * IE 8/9/10/11에서 `overflow` 속성값이 `hidden`으로 설정되어 있는 것을 수정
 */
button {
  overflow: visible;
}

/**
 * `button`과 `select` 요소에 `text-transform` 상속이 일치하지 않는 것을 해결
 * 모든 다른 폼 컨트롤 요소는 `text-transform` 값을 상속하지 않는다.
 * IE 8/9/10/11, Firefox, Opera에서 `button` 요소의 스타일 상속 수정.
 * Firefox에서 `select` 요소의 스타일 상속 수정.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Android 4.0.*에서 `audio`와 `video` 컨트롤을 파괴하는 웹킷 버그를 방지.
 * 2. iOS에서 클릭가능한 `input` 유형에 스타일링을 할 수 없는 것을 수정.
 * 3. `input` 요소와 다른 요소들의 image-type의 커서 모양을 일치시켜 가용성을 향상.
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * disabled된 요소의 기본 커서를 재설정
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Firefox 4+에서 내부 `padding`과 `border`를 제거
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Firefox 4+에서 UA(User Agent) 스타일시트에 `!important`를 사용한 `input` 요소의
 * `line-height` 설정값을 해결.
 */
input {
  line-height: normal;
}

/**
 * 이러한 요소의 스타일을 설정하려고하지 않는 것이 좋다.
 * Firefox에서 아래의 요소에서 box-sizing, padding, width가 구현될꺼라 기대하지 말자.
 *
 * 1. IE 8/9/10에서 box sizing 속성값을 `content-box`에서 `border-box`로 변경
 * 2. IE 8/9/10에서 영역을 벗어나지 않도록 `padding`을 제거
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Chrome의 증가/감소 버튼의 커서 모양을 수정.
 * `input` 요소의 특정 `font-size` 값에 대해 감소 버튼의 커서 모양이 `default`에서 `text`로 변한다.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * OS X의 Safari, Chrome에서 내부(inner) `padding`과 검색 취소 버튼을 제거.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * `border`, `margin`, `padding`을 일치.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. IE 8/9/10/11에서 `color`는 상속되지 않는다.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * IE 8/9/10/11에서 기본 세로 스크롤바를 제거
 */
textarea {
  overflow: auto;
}

/**
 * `font-weight`는 상속되지 않는다.(applied by a rule above).
 * 주의: OS X의 Chrome과 Safari에서 기본값을 변경하는 것은 안전하지 않다.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * 테이블 요소 사이의 간격을 제거
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ========================================================================== */
/* ===================================== Reset ================================= */
/* ========================================================================== */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, textarea, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  width: 100%;
}

ul, li, ol {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

* {
  background-repeat: no-repeat;
}

@font-face {
  font-family: NotoSans;
  font-weight: 900;
  src: local(※), url(../font/NotoSans-Black.woff) format("woff");
}
@font-face {
  font-family: NotoSans;
  font-weight: bold;
  src: local(※), url(../font/NotoSans-Bold.woff) format("woff");
}
@font-face {
  font-family: NotoSans;
  font-weight: 500;
  src: local(※), url(../font/NotoSans-Medium.woff) format("woff");
}
@font-face {
  font-family: NotoSans;
  font-weight: normal;
  src: local(※), url(../font/NotoSans-Regular.woff) format("woff");
}
@font-face {
  font-family: NotoSans;
  font-weight: 200;
  src: local(※), url(../font/NotoSans-Light.woff) format("woff");
}
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  -webkit-text-size-adjust: none;
}

/*
input, select, textarea, button {
  font-size: 1.7rem;
}*/
label, input {
  color: #111;
}

body, th, td, input, select, textarea, button {
  font-family: "NotoSans", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #111;
}

input {
  line-height: normal;
}

option {
  color: initial !important;
}

.blind {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  text-indent: -9999px;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: 1200px;
}

/* Guide
   ========================================================================== */
html {
  height: 100%;
}

body {
  height: 100%;
}

#app {
  height: 100%;
}

#wrap {
  position: relative;
  min-height: 100%;
  min-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
#wrap.status-banner-top #ui-header {
  top: 110px;
}
#wrap.status-banner-top #container {
  padding-top: 173px;
}

#container {
  box-sizing: border-box;
  padding-top: 63px;
  padding-bottom: 222px;
}

#main_section {
  height: 100%;
}

.content {
  padding-top: 30px;
  padding-bottom: 100px;
}

#banner-top {
  position: fixed;
  z-index: 2147483647;
  overflow: hidden;
  width: 100%;
  background-color: #f3f3f3;
}
#banner-top.inactive {
  padding: 10px 0;
}
#banner-top .inner {
  position: relative;
  padding: 10px 0;
  text-align: center;
}
#banner-top .banner-top__btn {
  display: inline-block;
  margin: 0 auto;
}
#banner-top .btn-close {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 25px;
  height: 25px;
  background-image: url(../images/common/close_circle.png);
}

.title-sub-page {
  padding-top: 22px;
  padding-bottom: 28px;
}
.title-sub-page h2 {
  display: inline-block;
  font-size: 4rem;
}
.title-sub-page p {
  font-weight: bold;
  font-size: 3rem;
}
.title-sub-page p span {
  color: #e5654b;
}
.title-sub-page .list-view-btn {
  display: inline-block;
  margin-left: 33px;
  vertical-align: text-bottom;
}
.title-sub-page .list-view-btn li {
  display: inline-block;
}
.title-sub-page .list-view-btn li.active span {
  color: #e5654b;
}
.title-sub-page .list-view-btn li + li {
  margin-left: 30px;
}
.title-sub-page .btn-view-type span {
  color: #7d807d;
  font-weight: bold;
  font-size: 2rem;
}

.title-content {
  position: relative;
  display: flex;
  justify-content: center;
}
.title-content::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #e5654b;
  transform: translateY(-50%);
}
.title-content strong {
  display: inline-flex;
  padding: 0 10px;
  align-items: center;
  background-color: #fff;
  font-weight: bolder;
  font-size: 2.5rem;
}
.title-content strong::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 34px;
  height: 24px;
  background-image: url(../images/common/title_logo.png);
}

.title-content--sm {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.title-content--sm strong {
  display: inline-flex;
  align-items: left;
  font-weight: bold;
  font-size: 1.8rem;
}
.title-content--sm strong::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 27px;
  height: 19px;
  background-image: url(../images/common/title_logo.png);
  background-size: 100%;
}

.content-layout--col {
  position: relative;
}
.content-layout--col > div {
  margin-top: 60px;
}
.content-layout--col > div:first-child {
  margin-top: 0;
}

.content-layout--row {
  position: relative;
  display: flex;
}
.content-layout--row > div {
  margin-left: 30px;
}
.content-layout--row > div:first-child {
  margin-left: 0;
}

.swiper-container .controller {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.swiper-container .pagination {
  margin: 5px 20px 0;
  width: auto;
  font-size: 1.4rem;
  color: #e5e5e5;
}
.swiper-container .pagination .swiper-pagination-current {
  display: inline-block;
  color: #b2063e;
}
.swiper-container .pagination .swiper-pagination-total {
  display: inline-block;
  color: #2e2a26;
}

.btn-slide-prev,
.btn-slide-next {
  width: 26px;
  height: 26px;
}

.btn-slide-prev {
  background-image: url(../images/common/slide_left_arrow.png);
}

.btn-slide-next {
  background-image: url(../images/common/slide_right_arrow.png);
}

.part-line {
  display: block;
  margin-top: 30px;
  width: 100%;
  height: 4px;
  background-color: #111;
}

.sub-content {
  padding-top: 30px;
  border-top: 4px solid #111;
}
.sub-content > .result_category {
  margin-top: -10px;
}

.side-news {
  width: 300px;
}
.side-news > div {
  margin-top: 30px !important;
}
.side-news > div:first-child {
  margin-top: 0 !important;
}
.side-news .side-content {
  padding-top: 0;
  border-top: none;
}
.side-news .part-line:first-child {
  margin-top: 0;
}
.side-news .btn-thumb {
  overflow: hidden;
}
.side-news .swiper-slide .thumb {
  width: auto !important;
}

.news-date-list {
  margin-top: 30px;
}
.news-date-list ol {
  text-align: center;
}
.news-date-list ol li {
  display: inline-block;
  margin-left: 30px;
}
.news-date-list ol li:first-child {
  margin-left: 0;
}
.news-date-list ol li.active span {
  color: #b2063e;
}
.news-date-list ol li a {
  display: block;
}
.news-date-list ol li span {
  color: #2e2a26;
  font-size: 1.4rem;
}

.result_category {
  overflow: hidden;
}
.result_category li {
  float: left;
  margin-left: 10px;
}
.result_category li::before {
  content: "ㅣ";
  display: inline-block;
  margin-right: 10px;
  color: #e5e5e5;
  font-size: 1.8rem;
  vertical-align: top;
}
.result_category li:first-child {
  margin-left: 0;
}
.result_category li:first-child::before {
  content: none;
}
.result_category li a {
  display: inline-block;
}
.result_category li a span {
  display: inline-block;
  font-size: 1.8rem;
}
.result_category li.active a span {
  color: #e5654b;
  font-weight: bold;
}

.result-type--photo,
.result-type--video,
.result-type--shorts {
  margin-top: 20px;
}
.result-type--photo .content-layout--row,
.result-type--video .content-layout--row,
.result-type--shorts .content-layout--row {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.result-type--photo .content-layout--row > div,
.result-type--video .content-layout--row > div,
.result-type--shorts .content-layout--row > div {
  margin-left: 24px;
}
.result-type--photo .content-layout--row > div:first-child,
.result-type--video .content-layout--row > div:first-child,
.result-type--shorts .content-layout--row > div:first-child {
  margin-left: 0;
}

.result-type--news {
  margin-top: 5px;
}

.total-news .news-date-list {
  margin-top: 30px;
}
.total-news .news-date-list ol {
  text-align: center;
}
.total-news .news-date-list ol li {
  display: inline-block;
  margin-left: 30px;
}
.total-news .news-date-list ol li:first-child {
  margin-left: 0;
}
.total-news .news-date-list ol li.active span {
  color: #b2063e;
}
.total-news .news-date-list ol li a {
  display: block;
}
.total-news .news-date-list ol li span {
  color: #2e2a26;
  font-size: 1.4rem;
}

#ui-header {
  position: fixed;
  z-index: 2147483647;
  display: flex;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 63px;
  background-color: #000;
}
#ui-header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 1200px;
}

.header__logo {
  position: relative;
  width: 218px;
  height: 63px;
  background-image: url(../images/common/header_logo.png);
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header__date {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  text-align: center;
  font-size: 1.2rem;
}
.header__gnb {
  display: flex;
  flex: auto;
  padding: 0 154px 0 90px;
  justify-content: space-between;
}
.header__gnb-btn {
  display: inline-block;
}
.header__gnb-btn.active span {
  color: #FF6600;
}
.header__gnb-txt {
  color: #fff;
  font-size: 1.7rem;
}
.header__util {
  margin-left: 90px;
}
.header__util-btn {
  margin-left: 40px;
  width: 24px;
  height: 24px;
}
.header__util-btn:first-child {
  margin-left: 0;
}
.header__util-btn--search {
  opacity: 0.5;
  background-image: url(../images/common/icon_search.png);
}
.header__util-btn--menu {
  background-image: url(../images/common/icon_menu.png);
}

.search-wrap {
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  background-color: #000;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
}
.search-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: rgb(229, 101, 75);
  background: linear-gradient(180deg, rgb(229, 101, 75) 0%, rgb(179, 8, 63) 100%);
}
.search-wrap.active {
  height: 194px;
}
.search-wrap .search__input-wrap {
  position: relative;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.search-wrap .search__input-wrap .search-input {
  position: absolute;
  right: 0;
  bottom: 62px;
  left: 0;
  margin: 0 auto;
  width: 770px;
}
.search-wrap .search__input-wrap .search-input input {
  padding-bottom: 25px;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  border-bottom: 4px solid #a1a1a1;
  background-color: transparent;
}
.search-wrap .search__input-wrap .search-input__btn {
  position: absolute;
  right: 0;
  background-image: url(../images/common/icon_search.png);
  width: 24px;
  height: 24px;
}
.search-wrap .search__input-wrap .search-close-btn {
  position: absolute;
  top: 19px;
  right: 0;
  width: 24px;
  height: 19px;
  background-image: url(../images/common/search_close.png);
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #c7c7c7;
}
footer .footer-gnb {
  padding: 21px 0;
  text-align: center;
  background-color: #fff;
}
footer .footer-gnb__btn {
  display: inline-block;
  margin-left: 35px;
}
footer .footer-gnb__btn:first-child {
  margin-left: 0;
}
footer .footer-gnb__btn em {
  font-weight: bold;
  font-size: 1.8rem;
}
footer .footer-info-wrap {
  padding: 40px 0;
  background-color: #111;
}
footer .footer-info-wrap .inner {
  display: flex;
}
footer .footer-logo {
  width: 129px;
  height: 23px;
  background-image: url(../images/common/footer_logo.png);
}
footer .footer-info {
  margin-left: 37px;
}
footer .footer-info__list {
  font-size: 1.6rem;
}
footer .footer-info__area {
  display: flex;
  margin-top: 8px;
}
footer .footer-info__area:first-child {
  margin-top: 0;
}
footer .footer-info__area dl {
  display: flex;
}
footer .footer-info__area dl::before {
  content: "ㅣ";
  margin: 0 3px;
  color: #4d4d4d;
}
footer .footer-info__area dl:first-child::before {
  content: none;
}
footer .footer-info__area dl dt {
  color: #7d807d;
  letter-spacing: -0.5px;
}
footer .footer-info__area dl dt::after {
  content: ":";
  margin: 0 3px;
}
footer .footer-info__area dl dd {
  color: #7d807d;
  letter-spacing: -0.5px;
}
footer .footer-info__copyright {
  display: block;
  margin-top: 15px;
  color: #a1a1a1;
  font-size: 1.4rem;
}

.index .title-content {
  margin-top: 82px;
  margin-bottom: 40px;
}
.index .ad-banner_full {
  margin-top: 60px;
}

.company .sub-content {
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
}
.company .company-info {
  margin-left: 41px;
}
.company .company-info__txt strong {
  display: block;
  color: #2e2a26;
  font-weight: 900;
  font-size: 3rem;
}
.company .company-info__txt em {
  display: block;
  margin-top: 14px;
  color: #2e2a26;
  font-size: 4rem;
}
.company .company-info__txt p {
  margin-top: 42px;
  color: #2e2a26;
  font-size: 1.8rem;
  line-height: 1.5;
}
.company .company-info__location {
  margin-top: 108px;
}
.company .company-info__location strong {
  display: block;
  margin-bottom: 25px;
  font-size: 3rem;
  color: #2e2a26;
}
.company .company-info__location-info {
  margin-top: 25px;
  padding: 25px;
  width: 100%;
  background-color: #f3f3f3;
  box-sizing: border-box;
}
.company .company-info__location-info dl {
  display: flex;
}
.company .company-info__location-info dl + dl {
  margin-top: 10px;
}
.company .company-info__location-info dl dt {
  margin-right: 25px;
  font-weight: bold;
  font-size: 1.8rem;
}
.company .company-info__location-info dl dd {
  color: #2e2a26;
  font-size: 1.8rem;
}

.copyright .sub-content,
.alliance .sub-content,
.advertising .sub-content {
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
}
.copyright .info-cont,
.alliance .info-cont,
.advertising .info-cont {
  margin-left: 41px;
}
.copyright .info-cont__txt strong,
.alliance .info-cont__txt strong,
.advertising .info-cont__txt strong {
  display: block;
  margin-bottom: 40px;
  color: #2e2a26;
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -0.5px;
}
.copyright .info-cont__txt p,
.alliance .info-cont__txt p,
.advertising .info-cont__txt p {
  color: #2e2a26;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -1px;
}
.copyright .info-cont .info-list ul,
.alliance .info-cont .info-list ul,
.advertising .info-cont .info-list ul {
  margin-top: 30px;
}
.copyright .info-cont .info-list ul li,
.alliance .info-cont .info-list ul li,
.advertising .info-cont .info-list ul li {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 120px;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
}
.copyright .info-cont .info-list ul li:first-child,
.alliance .info-cont .info-list ul li:first-child,
.advertising .info-cont .info-list ul li:first-child {
  border-top: 1px solid #e5e5e5;
}
.copyright .info-cont .info-list ul li em,
.alliance .info-cont .info-list ul li em,
.advertising .info-cont .info-list ul li em {
  display: inline-block;
  width: 30px;
  font-size: 5rem;
}
.copyright .info-cont .info-list ul li p,
.alliance .info-cont .info-list ul li p,
.advertising .info-cont .info-list ul li p {
  margin-left: 37px;
}
.copyright .info-cont .info-list ul li p span,
.alliance .info-cont .info-list ul li p span,
.advertising .info-cont .info-list ul li p span {
  display: block;
  color: #2e2a26;
  font-weight: bold;
  font-size: 1.8rem;
}
.copyright .info-cont .info-list > p,
.alliance .info-cont .info-list > p,
.advertising .info-cont .info-list > p {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
}
.copyright .info-cont .info-qna,
.alliance .info-cont .info-qna,
.advertising .info-cont .info-qna {
  margin-top: 40px;
  padding: 25px;
  background-color: #f3f3f3;
}
.copyright .info-cont .info-qna strong,
.alliance .info-cont .info-qna strong,
.advertising .info-cont .info-qna strong {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 4px solid #111;
  font-size: 1.8rem;
}
.copyright .info-cont .info-qna dl,
.alliance .info-cont .info-qna dl,
.advertising .info-cont .info-qna dl {
  display: flex;
}
.copyright .info-cont .info-qna dl + dl,
.alliance .info-cont .info-qna dl + dl,
.advertising .info-cont .info-qna dl + dl {
  margin-top: 20px;
}
.copyright .info-cont .info-qna dl dt,
.alliance .info-cont .info-qna dl dt,
.advertising .info-cont .info-qna dl dt {
  margin-right: 25px;
  min-width: 67px;
  font-weight: bold;
  font-size: 1.8rem;
}
.copyright .info-cont .info-qna dl dd,
.alliance .info-cont .info-qna dl dd,
.advertising .info-cont .info-qna dl dd {
  color: #2e2a26;
  font-size: 1.8rem;
}

.alliance .info-qna {
  margin-top: 20px !important;
}
.alliance .info-list {
  margin-bottom: 20px;
}

.detail_view * {
  font-family: HelveticaNeue, AppleSDGothicNeo-Regular, Arial, sans-serif;
}
.detail_view .page-location {
  display: flex;
  align-items: center;
}
.detail_view .page-location a {
  font-size: 1.6rem;
}
.detail_view .page-location .location_arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/location_arrow.png);
}
.detail_view .page-location em {
  color: #e5654b;
  font-weight: bold;
  font-size: 1.6rem;
}
.detail_view .view-info {
  position: relative;
}
.detail_view .view-info .view-info_title {
  display: block;
  margin-top: 10px;
  font-size: 3.2rem;
}
.detail_view .view-info .view-info-wrap {
  margin-top: 25px;
}
.detail_view .view-info__journalist > span {
  font-size: 1.4rem;
}
.detail_view .view-info__journalist > span::after {
  content: "|";
  margin: 0 5px 0 10px;
  display: inline-block;
  color: #e5e5e5;
}
.detail_view .view-info__journalist em {
  font-weight: bold;
  font-size: 1.4rem;
}
.detail_view .view-info__date {
  margin-top: 10px;
  color: #7d807d;
  font-size: 1.2rem;
}
.detail_view.view .view-info, .detail_view.view_photo_news .view-info {
  margin-bottom: 30px;
  padding-bottom: 24px;
}
.detail_view.view .view-info::after, .detail_view.view_photo_news .view-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 4px;
  background-color: rgb(229, 101, 75);
  background-color: linear-gradient(180deg, rgb(229, 101, 75) 0%, rgb(179, 8, 63) 100%);
}
.detail_view.view .sub-content, .detail_view.view_photo_news .sub-content {
  border-top: none;
  width: 670px;
  padding-right: 57px;
  padding-left: 57px;
  border-right: 1px solid #e5e5e5;
}
.detail_view.view .view-cont, .detail_view.view_photo_news .view-cont {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
  /*.copyright {
    display: block;
    text-align: right;
    margin-top: 40px;
    color: #7d807d;
    font: {
      size: 1.4rem;
    }
  }*/
}
.detail_view.view .view-cont > *:first-child, .detail_view.view_photo_news .view-cont > *:first-child {
  margin-top: 0;
}
.detail_view.view .view-cont p, .detail_view.view_photo_news .view-cont p {
  margin-top: 40px;
  color: #2e2a26;
  font-size: 1.8rem;
  line-height: 1.6;
}
.detail_view.view .view-cont .ad-banner_full, .detail_view.view_photo_news .view-cont .ad-banner_full {
  margin-top: 40px;
  padding: 30px 27px;
}
.detail_view.view .view-cont > img, .detail_view.view_photo_news .view-cont > img {
  margin-top: 40px;
  width: 100%;
}
.detail_view.view .side-news, .detail_view.view_photo_news .side-news {
  margin-left: 56px !important;
}
.detail_view.view_video .view-info, .detail_view.view_shorts .view-info {
  margin-bottom: 30px;
}
.detail_view.view_video .sub-content, .detail_view.view_shorts .sub-content {
  border-top: none;
}
.detail_view.view_video .view-cont, .detail_view.view_shorts .view-cont {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 4px solid #111;
}
.detail_view.view_video .view-shorts-player, .detail_view.view_shorts .view-shorts-player {
  text-align: center;
}
.detail_view.view_photo_slide .content-layout--row {
  margin-top: 40px;
}
.view-cont .copyright {
  display: block;
  text-align: right;
  margin-top: 20px;
  color: #7d807d;
  font-size: 1.4rem;
  line-height: 1.5;
}

.slide-info-area .top-area {
  position: relative;
  display: flex;
  height: 700px;
}
.slide-info-area .slide-gallery {
  position: absolute;
  left: 0;
  width: 804px;
  height: 700px;
  background-color: #000;
}
.slide-info-area .slide-gallery .img-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
}
.slide-info-area .slide-gallery .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slide-info-area .slide-gallery .btn-slide-prev,
.slide-info-area .slide-gallery .btn-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  z-index: 10;
}
.slide-info-area .slide-gallery .btn-slide-prev {
  left: 20px;
  background-image: url(../images/common/slide_arrow_prev.png);
}
.slide-info-area .slide-gallery .btn-slide-next {
  right: 20px;
  background-image: url(../images/common/slide_arrow_next.png);
}
.slide-info-area .slide-gallery .control-bottom-wrap {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-info-area .slide-gallery .btn-video-control {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.slide-info-area .slide-gallery .btn-video-control.status--play .stop {
  display: none;
}
.slide-info-area .slide-gallery .btn-video-control.status--play .play {
  display: flex;
}
.slide-info-area .slide-gallery .btn-video-control.status--stop .stop {
  display: flex;
}
.slide-info-area .slide-gallery .btn-video-control.status--stop .play {
  display: none;
}
.slide-info-area .slide-gallery .btn-video-control span {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
}
.slide-info-area .slide-gallery .btn-video-control .play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.slide-info-area .slide-gallery .btn-video-control .stop::before {
  content: "";
  display: block;
  width: 2px;
  height: 9px;
  background-color: #fff;
}
.slide-info-area .slide-gallery .btn-video-control .stop::after {
  content: "";
  display: block;
  margin-left: 3px;
  width: 2px;
  height: 9px;
  background-color: #fff;
}
.slide-info-area .slide-gallery .gallery-pagination {
  position: initial;
  width: initial;
  display: inline-block;
  margin-left: 5px;
  padding: 7px 16px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  color: #e5e5e5;
  font-size: 1.4rem;
}
.slide-info-area .slide-gallery .gallery-pagination span,
.slide-info-area .slide-gallery .gallery-pagination em {
  color: #fff;
  font-size: 1.4rem;
}
.slide-info-area .right-area {
  padding-left: 834px;
  width: 366px;
}
.slide-info-area .right-area .view-info {
  margin-bottom: 30px;
  padding-bottom: 24px;
}
.slide-info-area .right-area .view-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 4px;
  background-color: rgb(229, 101, 75);
  background-color: linear-gradient(180deg, rgb(229, 101, 75) 0%, rgb(179, 8, 63) 100%);
}
.slide-info-area .right-area .view-cont p {
  color: #2e2a26;
  font-size: 1.8rem;
  line-height: 1.6;
}
.slide-info-area .right-area .view-cont .btn-news-total-view {
  display: block;
  margin-top: 10px;
  color: #e5654b;
  text-decoration: underline;
}
.slide-info-area .bottom-area {
  position: relative;
  margin-top: 25px;
  padding: 25px 0;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.slide-info-area .bottom-area .slide-gallery-thumb {
  position: relative;
  width: 1090px;
  box-sizing: border-box;
}
.slide-info-area .bottom-area .slide-gallery-thumb .swiper-slide {
  width: 160px;
  height: 90px;
  /*&.swiper-slide-thumb-active {
    button {
      border: 4px solid #e5654b;
      box-sizing: border-box;
    }
  }*/
}
.slide-info-area .bottom-area .slide-gallery-thumb .swiper-slide button {
  width: 160px;
  height: 90px;
}
.slide-info-area .bottom-area .slide-gallery-thumb .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-info-area .bottom-area .slide-gallery-thumb .swiper-slide.swiper-slide-active button {
  border: 4px solid #e5654b;
  box-sizing: border-box;
}
.slide-info-area .bottom-area .btn-slide-prev,
.slide-info-area .bottom-area .btn-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slide-info-area .bottom-area .btn-slide-prev {
  left: 15px;
}
.slide-info-area .bottom-area .btn-slide-next {
  right: 15px;
}
.slide-info-area--sub {
  width: 100%;
  height: 620px;
}
.slide-info-area--sub .slide-gallery {
  position: relative;
  width: 100%;
  height: 502px;
}
.slide-info-area--sub .img-wrap {
  padding: 15px 0;
  box-sizing: border-box;
}
.slide-info-area--sub .bottom-area {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -999999;
  overflow: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}
.slide-info-area--sub .page-control {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.slide-info-area--sub .page-control .btn-arrow-nav {
  width: 17px;
  height: 17px;
}
.slide-info-area--sub .page-control .btn-arrow-nav--prev {
  background-image: url(../images/common/slide_left_arrow.png);
  background-size: 100%;
}
.slide-info-area--sub .page-control .btn-arrow-nav--next {
  background-image: url(../images/common/slide_right_arrow.png);
  background-size: 100%;
}
.slide-info-area--sub .page-control .num-page {
  margin: 0 8px;
}
.slide-info-area--sub .page-control .num-page em {
  color: #fff;
  font-size: 1rem;
}
.slide-info-area--sub .page-control .num-page span {
  color: #fff;
  font-size: 1rem;
}
.slide-info-area--sub .slide-wrap {
  display: flex;
  justify-content: center;
  background-color: #000;
}
.slide-info-area--sub .slide-wrap .thumb-link-area {
  padding: 15px;
}
.slide-info-area--sub .slide-wrap .thumb-link-area .thumb-link__item {
  margin-top: 10px;
  width: 80px;
}
.slide-info-area--sub .slide-wrap .thumb-link-area .thumb-link__item:first-child {
  margin-top: 0;
}
.slide-info-area--sub .slide-wrap .thumb-link-area .thumb-link__item .thumb-link__btn .thumb-img {
  display: inline-block;
  width: 80px;
  height: 66px;
}
.slide-info-area--sub .slide-wrap .thumb-link-area .thumb-link__item .thumb-link__btn .thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-info-area--sub .slide-wrap .thumb-link-area .thumb-link__item .thumb-link__content {
  margin-top: 10px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  color: #ddd;
  font-size: 1.2rem;
}
.slide-info-area--sub .slide-wrap .slide-gallery-area {
  margin-left: 10px;
  width: 478px;
}
.slide-info-area--sub .slide-wrap .slide-gallery-area .cont-article__title {
  color: #fff;
}
.slide-info-area--sub .slide-wrap .slide-gallery-area .cont-article__btn {
  display: inline-block;
  margin-left: 10px;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: underline;
}
.slide-info-area--sub .slide-wrap .slide-gallery-area .cont-article__content {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  margin-top: 10px;
  color: #888;
}

/*# sourceMappingURL=style.css.map */
