.itg_feedlist {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 auto 20px;
}
.itg_feedlist > div {
	margin-right: 8px;
	margin-bottom: 8px;
	width: calc((100% - 24px) / 4 - 0.1px);
	background-color: #000;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	font-size: 14pt;
}
.itg_feedlist > div:nth-child(n + 13) {
	display: none;
}
.itg_feedlist.ver3 > div:nth-child(n + 10) {
	display: none;
}
.itg_feedlist .loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	padding: 30px;
}
.itg_feedlist .loading .inr {
	position: relative;
	width: 52px;
}
.itg_feedlist .loading svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform-origin: center;
	animation: 0.8s linear infinite rotation;
}
@keyframes rotation {
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}
.itg_feedlist .loading svg:first-child {
	opacity: 0.55;
	animation-duration: 1.6s;
}
.itg_feedlist a {
	position: relative;
	display: block;
	padding-top: 100%;
	overflow: hidden;
}
.itg_feedlist a > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.itg_feedlist a .thumb {
	height: 100%;
	background-size: cover;
}
.itg_feedlist a video {
	width: 100%;
	height: 100%;
}
.itg_feedlist a .hoverinfo {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.66);
	color: #fff;
	opacity: 0;
	transition: opacity 0.5s;
}
.itg_feedlist a .hoverinfo span:first-child {
	margin-right: 18px;
}
.itg_feedlist a .hoverinfo span svg {
	margin-right: 0.2em;
	width: 1em;
	vertical-align: text-bottom;
}

.itg_feedlist a .category {
	color: #fff;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.5s;
}
.itg_feedlist a:hover .hoverinfo,
.itg_feedlist a:hover .category {
	opacity: 1;
}

@media screen and (max-width: 840px) {
	.itg_feedlist > div {
		margin-right: 15px;
		margin-bottom: 15px;
		width: calc((100% - 30px) / 3 - 0.5px);
	}
}
@media screen and (max-width: 740px) {
	.itg_feedlist a .hoverinfo span:first-child {
		margin-right: 9px;
	}
}
@media screen and (max-width: 680px) {
	.itg_feedlist > div {
		margin-right: 10px;
		margin-bottom: 10px;
		width: calc((100% - 20px) / 3);
		font-size: 11pt;
	}
}
@media screen and (min-width: 841px) {
	.itg_feedlist:not(.ver3) div:nth-child(4n) {
		margin-right: 0;
	}
	.itg_feedlist:not(.ver3) div:nth-last-child(-n + 4) {
		margin-bottom: 0;
	}
	
	.itg_feedlist.ver3 > div {
		width: calc((100% - 16px) / 3 - 0.1px);
	}
	.itg_feedlist.ver3 div:nth-child(3n) {
		margin-right: 0;
	}
	.itg_feedlist.ver3 div:nth-last-child(-n + 3) {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 840px) and (min-width: 541px) {
	.itg_feedlist div:nth-child(3n) {
		margin-right: 0;
	}
	.itg_feedlist div:nth-last-child(-n + 3) {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 540px) {
	.itg_feedlist > div {
		margin-right: 8px;
		margin-bottom: 8px;
		width: calc((100% - 8px) / 2);
	}
	.itg_feedlist div:nth-child(even) {
		margin-right: 0;
	}
	.itg_feedlist div:nth-last-child(-n + 2) {
		margin-bottom: 0;
	}
}

#itg_popup {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	color: #262626;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	overflow: hidden;
	opacity: 0;
	z-index: 999;
	transition: opacity 0.5s ease;
}
#itg_popup .inner {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	border-radius: 0 4px 4px 0;
	/*width: calc(100% - 160px);*/
	max-width: 1400px;
	height: 100%;
	max-height: calc(100% - 160px);
	background-color: #fff;
	overflow: hidden;
	transform: scale(0.8);
	transition: transform 0.5s ease;
}
#itg_popup.active {
	opacity: 1;
	transition: opacity 0.5s ease;
}
#itg_popup.active .inner {
	transform: scale(1);
	transition: transform 0.5s ease;
}
@media screen and (max-width: 1540px) {
	#itg_popup .inner {
		max-width: calc(100% - 160px);;
	}
}
@media screen and (max-width: 1400px) {
	#itg_popup .inner {
		height: auto;
		min-height: 375px;
	}
}

#itg_popup .inner .cl {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: calc(100% - 491px);
	background-color: #000;
	overflow: hidden;
}
#itg_popup .inner .cl img, #itg_popup .inner .cl video,
#itg_popup .inner .cl > .vidwrap {
	flex-shrink: 0;
	width: 100%;
}
#itg_popup .inner .cl img, #itg_popup .inner .cl video {
	display: block;
}
#itg_popup .inner .cl > img, #itg_popup .inner .cl > .vidwrap {
	margin: 10% 0;
}
#itg_popup .inner .cl .btn {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	text-decoration: none;
	color: #262626;
	line-height: 100%;
	color: #fff;
}
#itg_popup .inner .cl .vidwrap {
	position: relative;
}
#itg_popup .inner .cl .vidwrap .btn.mutetoggle {
	top: 15px;
	right: 15px;
}
#itg_popup .inner .cl .vidwrap .btn.mutetoggle.toggled {
	color: #fff;
}
#itg_popup .inner .cl .vidwrap .btn.mutetoggle svg {
	width: 40px;
	height: 40px;
}
#itg_popup .inner .cl .carousel {
	flex-shrink: 0;
	margin: 10% 0;
	transition: transform 0.5s ease;
	will-change: transform;
}
#itg_popup .inner .cl .carousel img, #itg_popup .inner .cl .carousel .vidwrap {
	float: left;
}

#itg_popup .inner .cl .carousel:after {
	content: "";
	display: table;
	clear: left;
}
#itg_popup .inner .cl .btn.slider_next,
#itg_popup .inner .cl .btn.slider_prev {
	top: 50%;
	border: none;
	width: 40px;
	height: 40px;
	background-color: transparent;
	color: #fff;
	transform: translateY(-50%);
	opacity: 0.4;
}
#itg_popup .inner .cl .btn.slider_next {
	right: 15px;
}
#itg_popup .inner .cl .btn.slider_prev {
	left: 15px;
}
#itg_popup .inner .cl .btn.slider_next:hover,
#itg_popup .inner .cl .btn.slider_prev:hover {
	opacity: 1;
}

#itg_popup .inner .cr {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	width: 491px;
	/*height: 100%;*/
	padding: 16px 0 3px;
}
#itg_popup .inner .cr .box {
	flex: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
}
#itg_popup .inner .cr .closer {
	position: absolute;
	top: 2px;
	right: 4px;
	display: inline-block;
	padding: 7px 7px;
	color: #6c6c6c;
}
#itg_popup .inner .cr .closer:hover {
	opacity: 0.7;
}
#itg_popup .inner .cr .closer svg {
	display: block;
	margin: 0;
	width: 18px;
	height: 18px;
}

#itg_popup .inner .cr h3 {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0 17px;
	border-bottom: 1px solid #efefef;
	padding: 0 16px 14px;
	font-size: 10pt;
	font-weight: normal;
}
#itg_popup .inner .cr h3 a {
	display: inline-block;
	max-width: calc(100% - 70px);
	color: #262626;
	font-weight: 600;
	text-decoration: none;
}
#itg_popup .inner .cr h3 a:hover {
	text-decoration: underline;
}
#itg_popup .inner .cr h3 figure {
	display: inline-block;
	margin: 0;
	margin-right: 15px;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	background-size: cover;
	vertical-align: middle;
}
#itg_popup .inner .cr h3 a:hover figure {
	box-shadow: 0px 0px 0px 1px #ccc;
}
#itg_popup .inner .cr h3 .infomation {
	position: absolute;
	right: 0;
	bottom: 3px;
	padding-right: 13px;
	color: #b4b4b4;
	font-size: 10pt;
	letter-spacing: 0;
	line-height: 120%;
}
#itg_popup .inner .cr .infomation span {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
#itg_popup .inner .cr .infomation span:not(:last-child) {
	margin-right: 8px;
}

#itg_popup .inner .cr .pwrap {
	flex-grow: 1;
	position: relative;
}
#itg_popup .inner .cr p.caption {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: calc(100% - 3px);
	height: 100%;
	padding: 0 30px 2em;
	font-size: 10pt;
	letter-spacing: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #b8b8b8 #fff;
}
#itg_popup .inner .cr p.caption::-webkit-scrollbar {
	width: 3px;
}
#itg_popup .inner .cr p.caption::-webkit-scrollbar-track {
	background-color: #fff;
}
#itg_popup .inner .cr p.caption::-webkit-scrollbar-thumb {
	background-color: #b8b8b8;
}
#itg_popup .inner .cr p.caption a {
	color: #00376B;
	text-decoration: none;
}
#itg_popup .inner .cr p.caption a:hover {
	text-decoration: underline;
}
#itg_popup .inner .cr svg {
	margin-right: 0.1em;
	width: 1.1em;
	vertical-align: text-top;
}
#itg_popup .inner .cr .keywordCampaign {
	border-top: 1px solid #efefef;
	padding: 20px 30px;
	text-align: center;
}
#itg_popup .inner .cr .keywordCampaign a {
	display: inline-block;
	border-radius: 3px;
	padding: 12px 36px 13px;
	background-color: #000;
	color: #fff;
	font-size: 10.5pt;
	font-weight: 600;
	text-decoration: none;
	text-indent: 1px;
	line-height: 100%;
}
#itg_popup .inner .cr .keywordCampaign a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 940px) and (min-width: 768px) and (orientation: portrait){
	#itg_popup .inner .cl {
		width: 40%;
	}
	#itg_popup .inner .cr {
		width: 60%;
	}
}
@media screen and (max-width: 767px) and (orientation: portrait){
	#itg_popup .inner {
		flex-direction: column;
		border-radius: 8px;
		width: calc(100% - 40px);
		max-width: 480px;
		height: 100%;
		max-height: calc(100% - 40px);
	}
	#itg_popup .inner .cl, #itg_popup .inner .cr {
		width: 100%;
	}
	#itg_popup .inner .cl {
		flex-shrink: 0;
		max-height: 60%;
	}
	#itg_popup .inner .cr {
		flex-grow: 1;
	}
	#itg_popup .inner .cr .keywordCampaign {
		margin-top: 12px;
	}
	#itg_popup .inner .cl > img, #itg_popup .inner .cl > .vidwrap, #itg_popup .inner .cl .carousel {
		margin: 0;
	}
}
@media screen and (max-width: 480px) and (orientation: portrait) {
	#itg_popup .inner {
		max-height: calc(100% - 80px);
	}
	#itg_popup .inner .cr h3 figure {
		margin-right: 10px;
		width: 36px;
		height: 36px;
	}
	#itg_popup .inner .cr .keywordCampaign {
		padding: 14px 0 10px;
	}
	#itg_popup .inner .cr .keywordCampaign a {
		padding: 8px 24px 9px;
		font-size: 10pt;
	}
}
@media screen and (max-width: 340px) and (orientation: portrait) {
	#itg_popup .inner {
		max-height: calc(100% - 40px);
	}
	#itg_popup .inner .cl {
		height: 50%;
	}
	#itg_popup .inner .cr h3 {
		margin-bottom: 10px;
	}
	#itg_popup .inner .cr .pwrap {
		min-height: 80px;
	}
	
	#itg_popup .inner .cl .vidwrap .btn.mutetoggle {
		top: auto;
		bottom: 18%;
	}
}
@media screen and (orientation: landscape) {
	#itg_popup .inner {
		max-height: calc(100% - 50px);
		min-height: auto;
	}
	#itg_popup .inner .cl {
		max-width: calc(100vh - 20px);
	}
	#itg_popup .inner .cr {
		/*height: auto;*/
	}
}
@media screen and (max-width: 940px) and (orientation: landscape) {
	#itg_popup .inner {
		height: 100%;
	}
	#itg_popup .inner .cl {
		width: 40%;
	}
	#itg_popup .inner .cr {
		width: 60%;
	}
}
