@charset "utf-8";
/* CSS Document */


/*@import url("../../../webroot/en/rugby/rugby.css");
*/

#ruby{
	font-family: Arial;
}

#ruby img{
	width: 100%;
}

/* --------------------------------------------------
main-img
-------------------------------------------------- */
.main-img{
	position: relative;
}

.main-txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}

.main-txt h2{
	font-size: 5rem;
	font-weight: bold;
	color: #C0B32C;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.main-txt h2 span{
	display: block;
	color: #FFF;
}

.main-txt h2 sup{
	font-size: 50%;
}
.main-txt .date{
	color: #FFF;
	font-weight: bold;
	font-size: 3.5rem;
	margin-top: 20px;
}

.main-img .main-copy{
	position: absolute;
	right: 2%;
	bottom: 2%;
	color: #FFF;
	font-size: 80%;
	font-weight: bold;
}

@media screen and (max-width: 600px) {
	.main-txt h2{
		font-size: 2rem;
	}
	.main-txt .date{
		color: #FFF;
		font-weight: bold;
		font-size: 1.5rem;
		margin-top: 10px;
	}
}

/* --------------------------------------------------
venue
-------------------------------------------------- */
.venue{
	width: 100%;
	background: #F0F0F0;
	padding: 4%;
}

.venue .wrapper{
	background: #FFF;
	padding: 5%;
	text-align: center;
}

.venue h3,
.match-info h3{
	text-align: center;
	font-size: 2rem;
	margin-bottom: 50px;
	font-weight: bold;
}
.venue h3::after,
.match-info h3::after{
    border-bottom: 3px solid #06067B;
    content: "";
    display: block;
    height: 0;
    margin: 0 auto;
    padding-top: 10px;
    width: 100px;
}

.venue p{
	font-size: 3.5rem;
	margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
	.venue h3,
	.match-info h3{
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
	.venue p{
		font-size: 1.8rem;
		margin-bottom: 30px;
	}
}

/* --------------------------------------------------
btn-general
-------------------------------------------------- */
/* btn-general */
.btn-general{
	min-width: 250px;
	text-align: center;
	margin: 20px auto;
}

.btn-general a{
	display: inline-block;
	position: relative;
	padding: 18px 60px 18px 60px;
	background: #06067B;
	line-height: 24px;
	letter-spacing: 2px;
	color: #fff!important;
	z-index: 100;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-general a::before {
	background: #8C0000;
	content: '';
	position: absolute;
	z-index: -1;
	transition: all 0.3s;
	height: 100%;
	left: 0;
	top: 0;
	width: 0;
}

.btn-general a:hover:before {
  width: 100%;
}
@media screen and (max-width: 600px) {
	.btn-general{
		min-width: 100%;
	}
}
/* --------------------------------------------------
match-info
-------------------------------------------------- */
.match-info{
	margin: 5% auto 10%;
	text-align: center;
}

.match-info .date{
	font-size: 2.3rem;
	font-weight: bold;
}

.match-country{
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 15px auto 50px;
	width: 60%;
}

.each-country{
	display: flex;
	justify-content: space-between;
	font-size: 2.3rem;
}

.each-country br{
	display: none;
}

.each-country figure{
	margin: 0 20px;
	
}

.each-country:nth-of-type(2n){
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.match-country::before {
    content: "V";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5em;
    font-size: 2.0rem;
}

@media screen and (max-width: 960px) {
	.match-country{
		width: 90%;
	}
}



@media screen and (max-width: 600px) {
	.each-country{
		font-size: 1.7rem;
		justify-content: flex-start;
	}
	.each-country br{
		display: block;
	}
	.each-country:nth-of-type(2n){
		justify-content: end;
	}

	.each-country figure {
		width: 30%;
		margin: 0 5px;
	}
	.match-country::before {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 500px) {
	.match-country{
		margin: 15px auto 20px;
		width: 100%;
	}
}
/* --------------------------------------------------
bottom-info
-------------------------------------------------- */
.bottom-info{
	position: relative;
	overflow: hidden;
	padding: 30px 0;
	margin-bottom: 60px;
}

.bottom-info .wrapper{
	display:flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.bottom-info .pht-list{
	display:flex;
	width: 60%;
}

.bottom-info .pht-list li{
	padding: 20px;
}

.bottom-info::before {
    position: absolute;
    top: -10px;
    left: -150px;
    transform: skewX(-25deg);
    height: 500px;
    width: 60%;
    background: #489be9;
    background: linear-gradient(135deg, #8C0000 0%, #040554 100%);
    content: "";
}

.link-area{
	width: 35%;
}

.link-area p{
	margin-bottom: 50px;
	font-size: 1.8rem;
	text-align: center;
}

@media screen and (max-width: 800px) {
		.bottom-info .pht-list li{
		padding: 10px;
	}
	
}
@media screen and (max-width: 600px) {
	.bottom-info::before {
		left: -18%;
		top: 10px;
		height: 35%;
		width: 80%;
	}
	.bottom-info .pht-list{
		display:flex;
		width: 100%;
	}
	.link-area{
		width: 100%;
	}

	.link-area p{
		margin-top: 50px;
		font-size: 1.5rem;
	}
}