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


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

#handball{
	font-family: Noto Sans JP;
}

#handball 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: #F80013;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.main-txt .area{
	color: #FFF;
	font-weight: bold;
	font-size: 3.5rem;
	margin-top: 20px;
}

.main-txt .date{
	color: #FFF;
	font-weight: bold;
	font-size: 3.5rem;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-txt .date span{
	font-size: 50%;
	padding: 10px;
}

.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 #ED7402;
    content: "";
    display: block;
    height: 0;
    margin: 0 auto;
    padding-top: 10px;
    width: 100px;
}

.venue p{
	font-size: 2rem;
	margin-bottom: 10px;
}

.venue .btn-general{
	margin-top: 50px;
}

@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: #ED7402;
	line-height: 24px;
	letter-spacing: 2px;
	color: #fff!important;
	z-index: 100;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-general a::before {
	background: #7C0971;
	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%;
	}
}

/* --------------------------------------------------
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, #EF7800 0%, #B5033D 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;
	}
}