@charset "UTF-8";
/*
 top.css（ファイル名変更可）
 本サイト各ページ用CSS
*/

/* rugby-modal
========================================== */
#rugby-modal {}
.rugby-modal-bg {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 120%;
	background-color: rgba(0,0,0,0.75);
}
@media screen and (min-width: 993px) {
	.rugby-modal-bg:hover {
		cursor: pointer;
	}
}

.rugby-modal-inner {
	position: fixed;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	display: none;
}
@media screen and (min-width: 376px) {
	.rugby-modal-inner {
		width: 80%;
	}
}
@media screen and (min-width: 993px) {
	.rugby-modal-inner {
		width: 100%;
		padding: 0 30px;
	}
}

.rugby-modal-movie {
	padding-top: 56.25%;
	overflow: hidden;
	position: relative;
}
.rugby-modal-movie iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.rugby-modal-skip {
	text-align: center;
	color: #fff;
	padding: 10px;
	font-size: 18px;
	letter-spacing: 0.25rem;
}
.rugby-modal-skip_btn {
	cursor: pointer;
}

/* rugby-countdown
========================================== */
#rugby-countdown {
	position: relative;
	overflow: hidden;
	background-image: linear-gradient(0deg, #fff 25%, #eb2327 25%, #eb2327 50%, #fff 50%, #fff 75%,#eb2327 75%, #eb2327 );
	background-size: 20px 20px;
	text-align: center;
	font-size: 32.5px;
	font-weight: bold;
}
#rugby-countdown .rugby-countdown-inner {
	position: relative;
	width: 78%;
	margin: 0 auto;
	background: #fff;
	padding: 10px 0;
}
#rugby-countdown .rugby-countdown-inner:before,
#rugby-countdown .rugby-countdown-inner:after {
	position: absolute;
	z-index: 0;
	top: 0;
	left: -15px;
	content: '';
	display: inline-block;
	width: 40px;
	height: 100%;
	background: #fff;
	transform: skewX(15deg);
}
#rugby-countdown .rugby-countdown-inner:after {
	left: auto;
	right: -15px;
	transform: skewX(-15deg);
}
#rugby-countdown .rugby-countdown-inner .rugby-countdown-txt {
	position: relative;
	z-index: 1;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
}
#rugby-countdown-timer {
	position: relative;
	z-index: 1;
	color: #eb2327;
	line-height: 1;
}
#rugby-countdown-timer > p span { font-size: 22.5px; }

@media screen and (min-width: 993px) {
	#rugby-countdown { font-size: 70px; background-size: 40px 40px; }
	#rugby-countdown .rugby-countdown-inner:before,
	#rugby-countdown .rugby-countdown-inner:after {
		left: -30px;
		width: 80px;
		height: 100%;
		transform: skewX(20deg);
	}
	#rugby-countdown .rugby-countdown-inner:after {
		left: auto;
		right: -30px;
		transform: skewX(-20deg);
	}
	#rugby-countdown .rugby-countdown-inner {
		width: 60%;
		min-width: 780px;
		max-width: 900px;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-end;
		justify-content: center;
		padding: 45px 0 35px;
	}
	#rugby-countdown .rugby-countdown-inner .rugby-countdown-txt { font-size: 45px; }
	#rugby-countdown-timer { padding-left: 15px; }
	#rugby-countdown-timer > p span { font-size: 45px; }
}


/* rugby-mainV
========================================== */
#rugby-mainV { position: relative; }
#rugby-mainV .rugby-mainV-txt {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px;
	background: rgba(23,55,86,0.5);
	padding: 2px 15px;
}
#rugby-mainV .rugby-mainV-txt span {
	display: block;
	width: 100%;
	height: 60%;
	background: url('../images/top/mainV_chatch.png') no-repeat;
	background-size: contain;
	background-position: center;
}
@media screen and (min-width: 993px) {
	#rugby-mainV .rugby-mainV-txt { height: 140px; padding: 7px; }
}

/* rugby-slider
========================================== */
.rugby-mainV-item img { width: 100%; }
.rugby-mainV-item .img {
	width: 100%;
	padding-top: 53.3%;
	height: 0;
}
.rugby-mainV-item .img-01 {
	background: url('../images/top/slider/slider_01_sp.jpg') no-repeat;
	background-size: contain;
}
.rugby-mainV-item .img-02 {
	background: url('../images/top/slider/slider_02_sp.jpg') no-repeat;
	background-size: contain;
}
.rugby-mainV-item .img-03 {
	background: url('../images/top/slider/slider_03_sp.jpg') no-repeat;
	background-size: contain;
}
.rugby-mainV-item .img-04 {
	background: url('../images/top/slider/slider_04_sp.jpg') no-repeat;
	background-size: contain;
}
.slick-dotted.slick-slider { margin-bottom: 0; }
.rugby-mainV-slider .slick-dots {
	z-index: 1;
	line-height: 20px;
	bottom: 0;
}
.slick-dots li button:before {
	opacity: 1;
	color: #03172b;
}
@media screen and (min-width: 993px) {
	.rugby-mainV-slider .slick-dots {
		bottom: 10px;
	}
	.slick-dots li button:before {
		font-size: 12px;
	}
}
.slick-dots li.slick-active button:before {
	opacity: 1;
	color: #ffffff;
}

/* 全部読み込んでからスライダー表示 */
.rugby-mainV-slider { display:none; }
.rugby-mainV-slider.slick-initialized { display: block; animation: show .5s linear; }
@keyframes show {
	0%{ opacity: 0; }
	100%{ opacity: 1; }
}

@media screen and (min-width: 993px) {
	.rugby-mainV-item .img { padding-top: 42.63%; }
	.rugby-mainV-item .img-01 {
		background: url('../images/top/slider/slider_01_pc.jpg') no-repeat;
		background-size: contain;
	}
	.rugby-mainV-item .img-02 {
		background: url('../images/top/slider/slider_02_pc.jpg') no-repeat;
		background-size: contain;
	}
	.rugby-mainV-item .img-03 {
		background: url('../images/top/slider/slider_03_pc.jpg') no-repeat;
		background-size: contain;
	}
	.rugby-mainV-item .img-04 {
		background: url('../images/top/slider/slider_04_pc.jpg') no-repeat;
		background-size: contain;
	}
	.rugby-mainV-slider .slick-dots {
		line-height: 40px;
	}
}
/* rugby-box
========================================== */
.rugby-box-inner {
	background: #ffffff;
	padding: 0 15px 25px;
	box-shadow: inset 0px 20px 10px -10px rgba(67,200,231,.3);
	padding: 60px 15px 25px;
}

@media screen and (min-width: 993px) {
	.rugby-box-inner { padding: 140px 80px 60px; }
}


/* top-bnr-area
========================================== */
.top-bnr-area {
	background: #173756;
	text-align: center;
	padding: 15px 15px 0;
}
.top-bnr-area .top-bnr-item { width: 100%; line-height: 1;}
.top-bnr-area .top-bnr-item + .top-bnr-item { margin-top: 25px; }
#top-movie-bnr + .top-bnr-item { margin-top: 15px; }


.top-bnr-area .top-bnr-item a { display: inline-block; line-height: 0; }
.top-bnr-area .top-bnr-item a img { max-width: 100%; width: 100%; }

@media screen and (min-width: 993px) {
	.top-bnr-area { padding: 40px 0 20px; }
	.top-bnr-area .top-bnr-item + .top-bnr-item { margin-top: 50px; }
}


/* top-live
========================================== */
#top-live { padding: 15px 0; }
.top-live-inner { position: relative; box-shadow: none; padding: 10px 15px 15px; }
.top-live-inner:after {
	content: 'LIVE';
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 10px;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	text-align: center;
	line-height: 65px;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	background: #eb0927;
	animation: live-anime 1300ms ease 0s infinite normal;
}
.top-live-inner + .top-live-inner { margin-top: 20px; }
@keyframes live-anime {
	0% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	}
	40% {
	  -webkit-transform: scale(1.15);
	  transform: scale(1.15);
	}
	80% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	}
  }


.live-tit { position: relative; margin-bottom: 7.5px; }
.live-tit .pool {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 80px;
	text-align: center;
	background: #43c8e7;
	color: #ffffff;
	font-size: 14px;
}
.live-tit .pool.poolA { background: #43c8e7; }
.live-tit .pool.poolB { background: #f6416c; }
.live-tit .pool.poolC { background: #32d9c3; }
.live-tit .pool.poolD { background: #9545b1; }
.live-tit .pool.tournament { background: #f4d700; }

.live-tit .card {
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}
.live-tit .card > span { display: block; }
.live-tit .card .card-01:before,
.live-tit .card .card-02:before {
	display: inline-block;
	vertical-align: middle;
	content: '';
	width: 25px;
	height: 25px;
	margin: 0 10px;
}

.live-tit .japan:before, .live-tit .japan:after { background: url(../images/common/mark/japan.png) no-repeat center; background-size: contain; }
.live-tit .america:after, .live-tit .america:before { background: url(../images/common/mark/america.png) no-repeat center; background-size: contain; }
.live-tit .argentina:after, .live-tit .argentina:before { background: url(../images/common/mark/argentina.png) no-repeat center; background-size: contain; }
.live-tit .australia:after, .live-tit .australia:before { background: url(../images/common/mark/australia.png) no-repeat center; background-size: contain; }
.live-tit .england:after, .live-tit .england:before { background: url(../images/common/mark/england.png) no-repeat center; background-size: contain; }
.live-tit .fiji:after, .live-tit .fiji:before { background: url(../images/common/mark/fiji.png) no-repeat center; background-size: contain; }
.live-tit .france:after, .live-tit .france:before { background: url(../images/common/mark/france.png) no-repeat center; background-size: contain; }
.live-tit .georgia:after, .live-tit .georgia:before { background: url(../images/common/mark/georgia.png) no-repeat center; background-size: contain; }
.live-tit .ireland:after, .live-tit .ireland:before { background: url(../images/common/mark/ireland.png) no-repeat center; background-size: contain; }
.live-tit .italy:after, .live-tit .italy:before { background: url(../images/common/mark/italy.png) no-repeat center; background-size: contain; }
.live-tit .japan:after, .live-tit .japan:before { background: url(../images/common/mark/japan.png) no-repeat center; background-size: contain; }
.live-tit .namibia:after, .live-tit .namibia:before { background: url(../images/common/mark/namibia.png) no-repeat center; background-size: contain; }
.live-tit .newzealand:after, .live-tit .newzealand:before { background: url(../images/common/mark/newzealand.png) no-repeat center; background-size: contain; }
.live-tit .russia:after, .live-tit .russia:before { background: url(../images/common/mark/russia.png) no-repeat center; background-size: contain; }
.live-tit .samoa:after, .live-tit .samoa:before { background: url(../images/common/mark/samoa.png) no-repeat center; background-size: contain; }
.live-tit .scotland:after, .live-tit .scotland:before { background: url(../images/common/mark/scotland.png) no-repeat center; background-size: contain; }
.live-tit .southafrica:after, .live-tit .southafrica:before { background: url(../images/common/mark/southafrica.png) no-repeat center; background-size: contain; }
.live-tit .tonga:after, .live-tit .tonga:before { background: url(../images/common/mark/tonga.png) no-repeat center; background-size: contain; }
.live-tit .wales:after, .live-tit .wales:before { background: url(../images/common/mark/wales.png) no-repeat center; background-size: contain; }
.live-tit .uruguay:after, .live-tit .uruguay:before { background: url(../images/common/mark/uruguay.png) no-repeat center; background-size: contain; }
.live-tit .canada:after, .live-tit .canada:before { background: url(../images/common/mark/canada.png) no-repeat center; background-size: contain; }


.live-tit .card .color_red { color: #f6416c; line-height: 1.2; }
.live-frame {
	padding-top: 56.25%;
	overflow: hidden;
	position: relative;
}
.live-frame iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* PC */
@media screen and (min-width: 993px) {
	.top-live-inner { padding: 30px 80px 60px; }
	.top-live-inner + .top-live-inner { margin-top: 80px; }
	.live-tit { margin-bottom: 25px; }
	.top-live-inner:after {
		right: 10px;
		top: 10px;
		width: 90px;
		height: 90px;
		border-radius: 50%;
		line-height: 90px;
		font-size: 24px;
	}
	.live-tit .pool {
		width: 100px;
		font-size: 18px;
		padding: 5px 0;
	}
	.live-tit .card {
		font-size: 28px;
	}
	.live-tit .card > span {
		display: inline-block;
	}
	.live-tit .card .card-01:after,
	.live-tit .card .card-02:before {
		display: inline-block;
		vertical-align: middle;
		content: '';
		width: 50px;
		height: 50px;
		margin: 0 10px;
	}
	.live-tit .card .card-01:before { display: none; }
}
/* PC */
@media screen and (min-width: 1070px) {
	#top-live { padding: 80px 0 25px; }
	.top-live-inner:after {
		right: -30px;
		top: -50px;
		width: 130px;
		height: 130px;
		line-height: 130px;
		font-size: 32px;
	}
}


/* #emergency
========================================== */
#emergency { background: #173756; padding: 15px; }
#emergency .emergency-box { width: 100%; max-width: 1000px; margin: 0 auto; background: #fff; border: 1px solid #eb0927; }
#emergency h2 {
	text-align: center;
	font-size: 16px;
	border-bottom: 1px solid #eb0927;
	padding: 5px;
	color: #fff;
	background: #eb0927;
}
#emergency .emergency-inner { padding: 15px; font-size: 14px; }
#emergency  .emergency-inner + .emergency-inner { border-top: 1px dotted #eb0927; }



/* top-special
========================================== */
#top-special .rugby-tit.top br { display: none; }

/* Tablet（-992px) */
@media only screen and (max-width: 992px) {
	#top-special .rugby-tit.top br { display: block; }
	#top-special .rugby-tit.top .sub { bottom: auto; text-align: center; }
	#top-special .rugby-tit.top .sub:before,
	#top-special .rugby-tit.top .sub:after {
		position: absolute;
		left: 50%;
		top: 3px;
		margin-left: 5.5em;
	}
	#top-special .rugby-tit.top .sub:before { margin-left: -5.5em; }
}

#top-special .rugby-box-inner { padding: 60px 0 25px; }
#top-special .rugby-box-inner .top-special-inner { background: url('../images/common/bg_black.png'); }
#top-special .top-special-list {
	padding: 15px 0;
	margin-right: -10px;
}
#top-special .top-special-item {
	display: block;
	background: #fff;
	margin-right: 10px;
	border: 1px solid #ffffff;
	box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.35);
}
#top-special .top-special-item a { display: block; }
#top-special .top-special-thumb {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
#top-special .top-special-item.new {
	position: relative;
	overflow: hidden;
}
#top-special .top-special-item.new:after {
	position: absolute;
	top: 0;
	right: 0;
	font-family: 'Oswald', "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	content: 'NEW';
	display: inline-block;
	width: 80px;
	padding: 45px 0 0px;
	font-size: 13px;
	text-align: center;
	background: #e60012;
	color: #fff;
	transform: translate(50%, -50%) rotate(45deg);
	box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.35);
}
#top-special .top-special-txt { padding: 10px; }
#top-special .top-special-txt .top-special-txt-date { font-size: 10px; }
#top-special .top-special-txt .top-special-txt-count { font-size: 11px; }
#top-special .top-special-txt .top-special-txt-name { font-weight: bold; }
#top-special .top-special-txt .top-special-txt-count span {
	font-size: 14px;
	color: #e60012;
}
#top-special .top-special-btn { padding: 15px 15px 0; }
#top-special .top-special-btn a {
	position: relative;
	text-align: center;
	display: block;
	background: #e7010e;
	color: #fff;
	font-size: 14px;
	padding: 15px 30px;
	letter-spacing: 2px;
}
#top-special .top-special-btn a:before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 15px;
	left: auto;
	margin: auto;
	transform-origin: 50% 50%;
	transform: rotate(45deg);
}


/* PC */
@media screen and (min-width: 993px) {
	#top-special .rugby-box-inner { width: 100%; padding: 140px 0 60px; }
	#top-special .top-special-list {
		width: 1000px;
		margin: 0 auto;
		padding: 30px 60px;
	}
	#top-special .top-special-list .slick-list { width: 100%; }
	#top-special .top-special-item { margin-right: 15px; }
	#top-special .top-special-item.new:after {
		width: 100px;
		padding: 60px 0 0px;
		font-size: 19px;
	}
	#top-special .top-special-txt { font-size: 16px; min-height: 4.6em; }
	#top-special .slick-prev,
	#top-special .slick-next {
		width: 40px;
		height: 50px;
		background: #282828;
	}
	#top-special .slick-next { right: 50px; }
	#top-special .slick-prev {
		left: 40px;
		z-index: 1;
	}
	#top-special .slick-prev:before,
	#top-special .slick-next:before {
		content: "";
		display: block;
		width: 15px;
		height: 15px;
		border-top: 2px solid #ffffff;
		border-right: 2px solid #ffffff;
		position: absolute;
		top: 0px;
		bottom: 0px;
		right: 0px;
		left: -5px;
		margin: auto;
		transform-origin: 50% 50%;
		transform: rotate(45deg);
	}
	#top-special .slick-prev:before {
		transform: rotate(-135deg);
		left: 5px;
	}
	#top-special .slick-prev.slick-disabled,
	#top-special .slick-next.slick-disabled {
		display: none !important;
	}
	#top-special .top-special-btn { padding: 30px 0 0; }
	#top-special .top-special-btn a {
		width: 480px;
		margin: 0 auto;
		font-size: 18px;
		padding: 20px 30px;
	}
	#top-special .top-special-btn a:before {
		width: 15px;
		height: 15px;
		border-top: 2px solid #ffffff;
		border-right: 2px solid #ffffff;
		right: 20px;
	}
}



/* onair
========================================== */
#onair {
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}
#onair .rugby-box-inner {
	padding: 50px 15px 25px;
}
#onairList .onair-item {
	border-bottom: 1px solid #979797;
	letter-spacing: 2px;
	padding: 5px 0 15px;
}
#onairList .onair-item .date {
	font-size: 12px;
	background-color: #fff9a9;
	padding: 2px 5px;
}
#onairList .onair-item .red {
	color: #e02020;
	font-size: 13px;
	padding: 0 3px;
}
#onairList .onair-item .free-txt {
	padding: 10px 0;
}
#onairList .onair-item .free-txt.logo_one:before,
#onairList .onair-item .free-txt.logo_all:before,
#onairList .onair-item .free-txt.logo_2019:before {
	display: inline-block;
	vertical-align: sub;
	content: '';
	width: 60px;
	height: 25px;
	margin: 0 10px 0 0;
}
#onairList .onair-item .free-txt.logo_one:before {
	background: url(../images/common/logo/logo_one.png) no-repeat right center; background-size: contain;
}
#onairList .onair-item .free-txt.logo_all:before {
	background: url(../images/common/logo/logo_all.png) no-repeat right center; background-size: contain;
}
#onairList .onair-item .free-txt.logo_2019:before {
	background: url(../images/common/logo/logo_2019.png) no-repeat right center; background-size: contain;
}

#onairList .onair-item .card {
	display: flex;
	font-size: 14px;
	text-align: center;
	color: #f6416c;
	padding: 10px 0;
}
#onairList .onair-item .card .card-01,
#onairList .onair-item .card .card-02 {
	display: block;
	flex-grow: 2;
	width: 40%;
	text-align: right;
	color: #173756;
	letter-spacing: 1px;
}
#onairList .onair-item .card .card-02 { text-align: left; }
#onairList .onair-item .card .card-01:before,
#onairList .onair-item .card .card-02:after {
	display: inline-block;
	vertical-align: middle;
	content: '';
	width: 25px;
	height: 25px;
	margin: 0 5px;
}
#onairList .onair-item .tournament .card .card-01:before,
#onairList .onair-item .tournament .card .card-02:after,
#onairList .onair-item .card .card-01.loser:before,
#onairList .onair-item .card .card-02.loser:after {
	display: none;
}
#onairList .onair-item .card .card-01.america:before,
#onairList .onair-item .card .card-02.america:after {
	background: url(../images/common/mark/america.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.argentina:before,
#onairList .onair-item .card .card-02.argentina:after {
	background: url(../images/common/mark/argentina.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.australia:before,
#onairList .onair-item .card .card-02.australia:after {
	background: url(../images/common/mark/australia.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.england:before,
#onairList .onair-item .card .card-02.england:after {
	background: url(../images/common/mark/england.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.fiji:before,
#onairList .onair-item .card .card-02.fiji:after {
	background: url(../images/common/mark/fiji.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.france:before,
#onairList .onair-item .card .card-02.france:after {
	background: url(../images/common/mark/france.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.georgia:before,
#onairList .onair-item .card .card-02.georgia:after {
	background: url(../images/common/mark/georgia.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.ireland:before,
#onairList .onair-item .card .card-02.ireland:after {
	background: url(../images/common/mark/ireland.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.italy:before,
#onairList .onair-item .card .card-02.italy:after {
	background: url(../images/common/mark/italy.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.japan:before,
#onairList .onair-item .card .card-02.japan:after {
	background: url(../images/common/mark/japan.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.namibia:before,
#onairList .onair-item .card .card-02.namibia:after {
	background: url(../images/common/mark/namibia.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.newzealand:before,
#onairList .onair-item .card .card-02.newzealand:after {
	background: url(../images/common/mark/newzealand.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.russia:before,
#onairList .onair-item .card .card-02.russia:after {
	background: url(../images/common/mark/russia.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.samoa:before,
#onairList .onair-item .card .card-02.samoa:after {
	background: url(../images/common/mark/samoa.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.scotland:before,
#onairList .onair-item .card .card-02.scotland:after {
	background: url(../images/common/mark/scotland.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.southafrica:before,
#onairList .onair-item .card .card-02.southafrica:after {
	background: url(../images/common/mark/southafrica.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.tonga:before,
#onairList .onair-item .card .card-02.tonga:after {
	background: url(../images/common/mark/tonga.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.wales:before,
#onairList .onair-item .card .card-02.wales:after {
	background: url(../images/common/mark/wales.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.uruguay:before,
#onairList .onair-item .card .card-02.uruguay:after {
	background: url(../images/common/mark/uruguay.png) no-repeat center; background-size: contain;
}
#onairList .onair-item .card .card-01.canada:before,
#onairList .onair-item .card .card-02.canada:after {
	background: url(../images/common/mark/canada.png) no-repeat center; background-size: contain;
}

@media screen and (min-width: 993px) {
	#onair { font-size: 38px; }
	#onair .rugby-box-inner { padding: 80px 80px 60px; }
	#onairList .onair-item { padding: 20px 0 40px; letter-spacing: 3px; }
	#onairList .onair-item .card { font-size: 38px; }
	#onairList .onair-item .card .card-01:before,
	#onairList .onair-item .card .card-02:after {
		width: 50px; height: 50px;
	}
	#onairList .onair-item .red { font-size: 32px; padding: 0 10px; }
	#onairList .onair-item .date { font-size: 22px; padding: 5px; }
	#onairList .onair-item .free-txt.logo_one:before,
	#onairList .onair-item .free-txt.logo_all:before,
	#onairList .onair-item .free-txt.logo_2019:before {
		width: 120px;
		height: 50px;
	}
}


/* movie
========================================== */
#movie .movie-data { margin-bottom: 20px; }
#movie .movie-frame {
	padding-top: 56.25%;
	overflow: hidden;
	position: relative;
}
#movie .movie-frame iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (min-width: 993px) {
	#movie .movie-data { margin-bottom: 50px; }
}


/* twitter
========================================== */
#twitter .twitter-timeline-box {
	border: 1px solid #d8d8d8;
	line-height: 0;
	text-align: center;
}
@media screen and (min-width: 993px) {
	#twitter-widget-0 { height: 450px !important; }
}


/* program
========================================== */
#program .program-inner { text-align: center; }
#program .program-inner img { max-width: 100%; }
#program .program-inner a { display: block; line-height: 0; }
#program .program-inner a + a { margin-top: 15px; }
@media screen and (min-width: 993px) {
	#program .program-inner a + a { margin-top: 20px; }
}

/* topics
========================================== */
#topics .rugby-box-inner {
	padding: 60px 0 0;
	background-color: #f3f5f6;
}
#topics .topics-list { width: 100%; }
#topics .topics-item {
	background-color: #ffffff;
	line-height: 1.25;
	border-bottom: 1px solid #cccccc;
}
#topics .topics-item a {
	display: block;
	padding: 16px 10px;
}
#topics .topics-item:first-child a {
	position: relative;
	padding: 0;
}
#topics .topics-item a:after {
	content: '';
	display: block;
	clear: both;
}
#topics .topics-item .topics-item-thumb {
	width: 31.25%;
	padding-top: 17.57812%;
	float: left;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #ffffff;
}
#topics .topics-item:first-child .topics-item-thumb {
	width: 100%;
	padding-top: 56.25%;
	float: none;
}
#topics .topics-item:first-child .topics-item-thumb:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.85) 100%);
}
#topics .topics-item .topics-item-txt {
	margin-left: 34.375%;
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 0.5px;
}
#topics .topics-item:first-child .topics-item-tit {
	position: absolute;
	left: 0;
	bottom: 0;
	color: #ffffff;
	line-height: 1.3;
	letter-spacing: 0;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	margin-left: 0;
	padding: 10px;
}
#topics .topics-item .topics-item-data {
	bottom: 0;
	padding-top: 5px;
	font-size: 10px;
	font-size: 1.0rem;
	letter-spacing: 0.4px;
	color: #9b9b9b;
}
#topics .topics-item:first-child .topics-item-data {
	position: absolute;
	top: 0;
	left: 0;
	bottom: auto;
	padding-top: 0;
	letter-spacing: 0;
	color: #222222;
	margin-left: 0;
}
#topics .topics-item .topics-item-data .genre:after {
	content: '|';
	display: inline-block;
	padding: 0 5px;
}
#topics .topics-item:first-child .topics-item-data .genre:after {
	display: none;
}
#topics .topics-item:first-child .topics-item-data .genre {
	display: inline-block;
	background-color: #ebf8ff;
	letter-spacing: 0.4px;
	color: #222222;
	padding: 2px 5px;
}
#topics .topics-item:first-child .topics-item-data .date {
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.4);
	letter-spacing: 0.4px;
	color: #ffffff;
	padding: 2px 5px;
}
#topics .more-btn {
	width: calc(100% - 30px);
	margin: 20px auto 25px;
}

@media screen and (min-width: 993px) {
	#topics .rugby-box-inner {
		width: 100%;
		padding: 140px 0 50px;
	}
	#topics .topics-list {
		max-width: 1000px;
		width: 100%;
		display: flex;
		flex-flow: row wrap;
		align-items: stretch;
		justify-content: flex-start;
		align-content: stretch;
		margin: 0 auto;
	}
	#topics .topics-item {
		width: 32%;
		border: 1px solid #efefef;
		margin-left: 2%;
	}
	#topics .topics-item:nth-child(3n+1) {
		margin-left: 0;
	}
	#topics .topics-item:nth-child(n+4) {
		margin-top: 20px;
	}
	#topics .topics-item a {
		display: block;
		padding: 0;
	}
	#topics .topics-item a:after {
		display: none;
	}
	#topics .topics-item .topics-item-thumb {
		width: 100%;
		padding-top: 56.57894%;
		float: none;
	}
	#topics .topics-item:first-child .topics-item-thumb {
		padding-top: 56.57894%;
	}
	#topics .topics-item:first-child .topics-item-thumb:before {
		display: none;
	}
	#topics .topics-item .topics-item-txt {
		font-size: 18px;
		font-size: 1.8rem;
		line-height: 1.56;
		margin: 15px;
	}
	#topics .topics-item:first-child .topics-item-tit {
		position: relative;
		font-size: 18px;
		font-size: 1.8rem;
		font-weight: normal;
		color: inherit;
		padding: 0;
		line-height: 1.56;
	}
	#topics .topics-item .topics-item-data {
		bottom: 0;
		padding-top: 5px;
		font-size: 10px;
		font-size: 1.0rem;
		letter-spacing: 0.4px;
		color: #9b9b9b;
	}
	#topics .topics-item:first-child .topics-item-data {
		position: relative;
		bottom: 0;
		padding-top: 5px;
		font-size: 10px;
		font-size: 1.0rem;
		letter-spacing: 0.4px;
		color: #9b9b9b;
	}
	#topics .topics-item:first-child .topics-item-data .genre:after {
		content: '|';
		display: inline-block;
		padding: 0 5px;
	}
	#topics .topics-item:first-child .topics-item-data .genre {
		display: inline-block;
		background-color: inherit;
		color: #9b9b9b;
		padding: 0;
	}
	#topics .topics-item:first-child .topics-item-data .date {
		display: inline-block;
		background-color: inherit;
		color: #9b9b9b;
		padding: 0;
	}
	#topics .more-btn {
		width: 400px;
		margin: 40px auto 0;
	}
}