@charset "utf-8";
/*------------------------------------------
 *	Reset
------------------------------------------*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,icenter,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}img{line-height:1;vertical-align:bottom;}

/*------------------------------------------
 *	html, body
------------------------------------------*/
html {
	background: #fff;
	font-size: 62.5%;
}
body {
	min-width: 1024px;
	color: #111;
	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
_:lang(x)::-ms-backdrop, body {
	font-family: "メイリオ", Meiryo, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media only screen and (max-width: 767px) {
	body {
		min-width: 320px;
		font-size: 14px;
	}
	body.is-fixed-body {
		position: fixed;
		top: auto;
		left: auto;
		width: 100%;
	}
}
a {
	transition: all .05s linear;
	color: #111;
	text-decoration: none;
}
a:hover {
	color: #aaa;
}
@media (min-width: 768px) {
	a[href*='tel:'] {
		pointer-events: none;
		text-decoration: none;
	}
}

img {
	max-width: 100%;
	height: auto;
}
img.img-full {
	max-height: inherit;
	width: 100%;
	height: auto;
}
video {
	max-width: 100%;
	height: auto;
}

sup{
	position: relative;
	bottom: .5em;
	font-size: .5em;
}

/*------------------------------------------
 *	header
------------------------------------------*/
#header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
}
#header .logo{
	width: 344px;
	margin: 4px 0 9px 18px;
}
@media only screen and (max-width: 1366px) {
	#header .logo{
		width: 240px;
	}
}
#header .nav-header ul{
	display: flex;
}
#header .nav-header ul li{
	margin: 0 72px 0 0;
}
#header .nav-header ul li a{
	display: flex;
	align-items: center;
	position: relative;
	height: 107px;
	font-size: 18px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .12em;
}
#header .nav-header ul li a.current,
#header .nav-header ul li a:hover{
	color: #33267c;
}
#header .nav-header ul li a::after{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 4px;
	background-color: #33267c;
	content: '';
	transition: width .15s linear;
}
#header .nav-header ul li a.current::after,
#header .nav-header ul li a:hover::after{
	width: 100%;
}
@media only screen and (max-width: 1366px) {
	#header .nav-header ul li{
		margin: 0 40px 0 0;
	}
}
@media only screen and (max-width: 1280px) {
	#header .nav-header ul li{
		margin: 0 32px 0 0;
	}
}
@media only screen and (max-width: 767px) {
	#header{
		height: 56px;
	}
	#header .logo{
		width: 172px;
		margin: 2px auto 4px;
	}
	#header .nav-header{
		display: block;
		position: absolute;
		top: 56px;
		left: 0;
		z-index: 999;
		width: 100%;
	}
	#header .nav-header .nav-header-in{
		display: block;
		width: 100%;
		height: 0;
		transition: all .2s linear;
		overflow-y: scroll;
		-ms-overflow-style: none;
		margin: 0;
		padding: 0;
		background: #31266c;
		-webkit-overflow-scrolling: touch;
	}
	#header .nav-header.is-show .nav-header-in{
		height: calc(100vh - 56px);
	}
	#header .nav-header ul{
		display: block;
	}
	#header .nav-header ul li{
		margin: 0;
	}
	#header .nav-header ul li:first-child{
		margin: 34px 0 0;
	}
	#header .nav-header ul li a{
		padding: 0 20px;
		width: 100%;
		height: 52px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		letter-spacing: 0.05em;
	}
	#header .nav-header ul li a.current,
	#header .nav-header ul li a:hover{
		color: #fff;
	}
	#header .nav-header ul li a::after,
	#header .nav-header ul li a.current::after,
	#header .nav-header ul li a:hover::after{
		content: '';
		position: absolute;
		top: 50%;
		right: 30px;
		transform: rotate(45deg) translate3d(0, -7px, 0);
		bottom: inherit;
		left: inherit;
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		box-sizing: border-box;
		background-color: transparent;
	}
	#header .nav-header .btnArea-nav-header{
		padding: 38px 5.3% 64px;
	}
	#header .nav-header .btnArea-nav-header .btn{
		position: relative;
		width: 100%;
		height: 48px;
		margin: 0 0 16px 0;
		border: 1px solid #fff;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		font-feature-settings: "palt";
		letter-spacing: .08em;
	}
	#header .nav-header .btnArea-nav-header .btn:last-child{
		margin: 0;
	}
	#header .nav-header .btnArea-nav-header .btn .ico{
		position: absolute;
		top: 17px;
		right: 12px;
		width: 14px;
		height: 14px;
		background-size: 14px 14px;
	}
	#header .nav-header .btnArea-nav-header .btn.btn-img{
		display: flex;
		align-items: center;
		z-index: 0;
		padding: 0 40px 0 0;
		background-color: #dfdfdf;
		box-sizing: border-box;
		color: #31266c;
		line-height: 1.2;
	}
	#header .nav-header .btnArea-nav-header .btn.btn-img img{
		height: 100%;
		margin: 0 12px 0 0;
	}

	#header .btn-nav-header {
		display: block;
		position: absolute;
		z-index: 10;
		top: 0;
		right: 0;
		width: 56px;
		height: 56px;
		background: #31266c;
	}
	#header .btn-nav-header span {
		transition: opacity 0s linear .1s;
		opacity: 1;
		
		position: relative;
		display: block;
		margin: 8px auto 0 auto;
		width: 24px;
		height: 2px;
		background: #fff;
	}
	#header .btn-nav-header::before,
	#header .btn-nav-header::after {
		position: relative;
		top: 0;
		left: 0;
		transform: translate3d(0, 0, 0);
		transition: transform .1s ease, top .15s linear;
	}
	#header .btn-nav-header::before {
		content: '';
		display: block;
		margin: 18px auto 0 auto;
		width: 24px;
		height: 2px;
		background: #fff;
	}
	#header .btn-nav-header::after {
		content: '';
		display: block;
		margin: 8px auto 0 auto;
		width: 24px;
		height: 2px;
		background: #fff;
	}
	#header .btn-nav-header.is-open span {
		opacity: 0;
	}
	#header .btn-nav-header.is-open::before,
	#header .btn-nav-header.is-open::after {
		transition: transform .15s linear;
	}
	#header .btn-nav-header.is-open::before {
		transform: rotate(45deg);
		top: 9px;
	}
	#header .btn-nav-header.is-open::after {
		transform: rotate(-45deg);
		top: -11px;
	}
	#header.is-fixed {
		position: absolute;
	}
}
/*------------------------------------------
 *	footer
------------------------------------------*/
#footer{
	background-color: #000;
}
#footer .footer-in{
	display: flex;
	justify-content: center;
	padding: 80px 0 72px;
}
#footer a{
	position: relative;
	margin: 0 40px 0 0;
}
#footer a:last-child{
	margin: 0;
}
#footer a::after{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.3);
	content: '';
	opacity: 0;
	transition: opacity .1s linear;
}
#footer a:hover::after{
	opacity: 1;
}
#footer .btn{
	width: 424px;
	height: 64px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .08em;
	transition: opacity .1s linear;
}
#footer .btn:hover{
	opacity: .7;
}
#footer .btn.btn-img{
	display: flex;
	align-items: center;
	z-index: 0;
	background-color: #dfdfdf;
	color: #31266c;
	line-height: 1.2;
}
#footer .btn.btn-img img{
	height: 100%;
	margin: 0 12px 0 0;
}
#footer .btn .ico{
	position: absolute;
	top: 25px;
	right: 14px;
}
#footer .btn:hover .ico.ico-open{
	background: url(/group/sbs/wrestling/img/common/ico_open_black.svg) center center no-repeat;
}
#footer .copyright{
	padding: 0 0 40px 0;
	color: #999;
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	#footer .footer-in{
		display: block;
		padding: 38px 5.3% 32px;
	}
	#footer a:not(.is-disp-pc){
		display: block;
		margin: 0 0 16px 0;
	}
	#footer a:last-child{
		margin: 0;
		line-height: 1.2
	}
	#footer .btn{
		width: 100%;
		height: 48px;
		font-size: 14px;
	}
	#footer .btn:hover{
		color: #fff;
		background-color: #000;
	}
	#footer .btn .ico{
		position: absolute;
		top: 17px;
		right: 12px;
		width: 14px;
		height: 14px;
		background-size: 14px 14px;
	}
	#footer .btn:hover .ico.ico-open{
		background: url(/group/sbs/wrestling/img/common/ico_open.svg) center center no-repeat;
	}
	#footer .copyright{
		padding: 0 0 20px 0;
		font-size: 11px;
		line-height: 1.45;
	}
}

/*------------------------------------------
 *	main
------------------------------------------*/
#main{
	overflow: hidden;
}
#main .tit-page{
	position: relative;
	width: 100%;
	height: 340px;
	background-color: #040a08;
}
#main .tit-page::after{
	position: absolute;
	top: 0;
	left: 35%;
	z-index: 1;
	width: 65%;
	height: 340px;
	background-position: top left;
	background-repeat: no-repeat;
	content: '';
}
#main .tit-page .bg-orange{
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 2;
	width: calc(46% - 140px);
	height: 100%;
	padding: 0 0 0 calc(50vw - 512px);
	background-color: #ff840c;
	box-sizing: border-box;
}
#main .tit-page .bg-orange::after{
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	right: -140px;
	z-index: 3;
	border-style: solid;
	border-color: transparent transparent transparent #ff840c;
	border-width: 0px 0 340px 140px;
	content: "";
}
#main .tit-page h2{
	position: absolute;
	top: 50%;
	z-index: 4;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .16em;
	transform: translateY(-50%);
}
#main .tit-page h2 .en{
	display: block;
	margin: 12px 0 0;
	font-family: 'Source Code Pro', monospace;
	font-size: 24px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: .06em;
}
#main .breadcrumbs{
	margin: 10px 0 180px;
}
#main .breadcrumbs .sec-in{
	max-width: 100%;
	margin: 0 32px;
}
#main .breadcrumbs ol{
	display: flex;
	justify-content: flex-end;
}
#main .breadcrumbs ol li{
	display: flex;
	align-items: center;
	margin: 0 0 0 10px;
	font-size: 12px;
	letter-spacing: .05em;
	white-space: nowrap;
}
#main .breadcrumbs ol li:first-child {
	margin: 0;
}
#main .breadcrumbs ol li .ico{
	margin: 0 0 0 10px;
}
#main .breadcrumbs ol li a{
	color: #33267c;
}
#main .breadcrumbs ol li a:hover{
	color: #6b5eb4;
}
#main .sec {
	padding: 80px 0;
}
#main .sec-in {
	margin: 0 auto;
	max-width: 1024px;
}
#main .sec-in-m {
	margin: 0 auto;
	max-width: 848px;
}
#main .sec-in-s {
	margin: 0 auto;
	max-width: 680px;
}
#main .tit-sec{
	margin: 0 0 40px;
	font-size: 34px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .16em;
	text-align: center;
}
#main .tit-sec .en{
	display: inline-block;
	position: relative;
	margin: 0 0 16px;
	color: #ff840c;
	font-family: 'Source Code Pro', monospace;
	font-size: 30px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0;
}
#main .tit-sec .en::before{
	position: absolute;
	width: 0;
	height: 0;
	top: -9px;
	left: -40px;
	border-style: solid;
	border-color: transparent transparent transparent #33296e;
	border-width: 0px 0 18px 41px;
	content: "";
}
#main .tit-sub-sec{
	margin: 0 0 40px;
	font-size: 32px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .12em;
	text-align: center;
}
#main .bg-gray-rotate{
	position: relative;
	padding: 100px 0 135px;
}
#main .bg-gray-rotate .bg-gray-rotate-in{
	background-color: #f3f3f3;
}
#main .bg-gray-rotate .bg-gray-rotate-in::before,
#main .bg-gray-rotate .bg-gray-rotate-in::after{
	position: absolute;
	left: -15%;
	width: 130%;
	height: 100%;
	z-index: -1;
	background-color: #f3f3f3;
	transform: rotate(2.3deg);
	content: '';
}
#main .bg-gray-rotate .bg-gray-rotate-in::before{
	top: 0;
}
#main .bg-gray-rotate .bg-gray-rotate-in::after{
	bottom: 0;
}
#main .bg-gray-rotate::before,
#main .bg-gray-rotate::after{
	position: absolute;
	right: -15%;
	width: 130%;
	height: 50%;
	z-index: -2;
	background-color: #31266c;
	transform: rotate(-2.3deg);
	content: '';
}
#main .bg-gray-rotate::before{
	top: 0;
}
#main .bg-gray-rotate::after{
	bottom: 0;
	background-color: #ff840c;
}
#main .nav-inpage{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 108px;
}
#main .nav-inpage li{
	display: inline-block;
	margin: 0 48px 0 0;
}
#main .nav-inpage li:last-child{
	margin: 0;
}
#main .nav-inpage li a{
	display: block;
	position: relative;
	padding: 0 0 0 20px;
	font-size: 15px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	line-height: 1.3;
}
#main .nav-inpage li a:hover{
	color: #111;
	text-decoration: underline;
}
#main .nav-inpage li a i{
	position: absolute;
	top: 50%;
	left: 0;
	margin: -4px 0 0;
}

#main .btn-backtotop {
	transition: all .1s linear;
	opacity: 0;
	
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 10;
	right: 48px;
	bottom: 48px;
	width: 48px;
	height: 48px;
	background: #31266c;
	cursor: pointer;
}
#main .btn-backtotop.is-show {
	opacity: 1;
}
#main .btn-backtotop .ico {
	transform: translate3d(0, 0, 0);
}
#main .btn-backtotop.is-show:hover {
	opacity: .6;
}

@media (min-width: 1758px) {
	#main .tit-page::after{
		background-size: cover;
	}
}
@media (max-width: 767px) {
	#main .tit-page{
		height: 165px;
	}
	#main .tit-page::after{
		height: 165px;
		background-position: top right;
		background-size: cover;
	}
	#main .tit-page .bg-orange{
		top: 8px;
		width: calc(50% - 63px);
		padding: 0 0 0 5.3%;
	}
	#main .tit-page .bg-orange::after{
		right: -63px;
		border-width: 0px 0 165px 63px;
	}
	#main .tit-page h2{
		width: 89.7vw;
		font-size: 22px;
	}
	#main .tit-page h2 .en{
		margin: 8px 0 0;
		font-size: 13px;
	}
	#main .breadcrumbs{
		margin: 20px 0 64px;
	}
	#main .breadcrumbs .sec-in{
		margin: 0;
	}
	#main .breadcrumbs ol li{
		margin: 0 0 0 9px;
		font-size: 10px;
	}
	#main .breadcrumbs ol li:first-child {
		margin: 0;
	}
	#main .breadcrumbs ol li .ico{
		margin: 0 0 0 9px;
	}
	#main .sec {
		padding: 40px 0;
	}
	#main .sec-in,
	#main .sec-in-m,
	#main .sec-in-s {
		max-width: inherit;
		padding: 0 5.3%;
		box-sizing: border-box;
	}
	#main .tit-sec{
		margin: 0 0 28px;
		font-size: 24px;
		letter-spacing: .1em;
	}
	#main .tit-sec .en{
		margin: 0 0 8px;
		font-size: 17px;
	}
	#main .tit-sec .en::before{
		top: -6px;
		left: -19px;
		border-width: 0px 0 12px 27px;
	}
	#main .tit-sub-sec{
		margin: 0 0 28px;
		font-size: 22px;
		letter-spacing: .16em;
	}
	#main .bg-gray-rotate{
		padding: 48px 0;
	}
	#main .bg-gray-rotate .bg-gray-rotate-in::before,
	#main .bg-gray-rotate .bg-gray-rotate-in::after{
		height: 100px;
	}
	#main .bg-gray-rotate::before,
	#main .bg-gray-rotate::after{
		height: 50px;
	}
	#main .nav-inpage{
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: initial;
		margin: -8px 0 59px;
	}
	#main .nav-inpage li{
		display: inline-flex;
		align-items: center;
		width: calc(50% - 4px);
		margin: 8px 8px 0 0;
		border: 1px solid #ffcb98;
		box-sizing: border-box;
	}
	#main .nav-inpage li:last-child,
	#main .nav-inpage li:nth-child(2n){
		margin: 8px 0 0;
	}
	#main .nav-inpage li a{
		padding: 12px 8px 12px 16px;
		font-size: 13px;
		font-feature-settings: normal;
		letter-spacing: normal;
	}
	#main .nav-inpage li a:hover{
		text-decoration: none;
	}
	#main .nav-inpage li a i{
		left: 5px;
		width: 7px;
		height: 5px;
		margin: -2px 0 0;
		background-size: 7px 5px;
	}
	#main .btn-backtotop {
		display: none;
	}
}
@media (max-width: 374px) {
	#main .tit-page::after{
		left: 0;
		width: 100%;
	}
}

/*------------------------------------------
 *	#page-wrestling
------------------------------------------*/
#page-wrestling #main .mv,
#page-wrestling #main source,
#page-wrestling #main img{
	width: 100%;
}
#page-wrestling #main .btn{
	position: relative;
	height: 100%;
	background-color: #000;
	color: #fff;
	font-weight: bold;
}
#page-wrestling #main .btn .ico{
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -6px 0 0;
	transition: right .15s linear;
}
#page-wrestling #main .btn:hover .ico{
	right: 8px;
}
#page-wrestling #main .mv{
	position: relative;
}
#page-wrestling #main .mv .copy{
	position: absolute;
	top: 48%;
	left: 50%;
	opacity: 0;
	width: 50.56%;
	min-width: 620px;
	max-width: 850px;
	transform: translate(-50%, -50%);
}

#page-wrestling #main .mv.is-start .copy{
	animation: mvCopy .4s linear forwards;
}
@keyframes mvCopy {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
#page-wrestling #main .mv.is-start .copy::before,
#page-wrestling #main .mv.is-start .copy::after{
	animation: mvCopyAfter 1.2s linear forwards;
}
@keyframes mvCopyAfter {
	0%{
		opacity: 0;
	}
	66.66%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

#page-wrestling #main .sec-message{
	padding:132px 0 120px;
	font-size: 17px;
}
#page-wrestling #main .sec-message .sec-in{
	position: relative;
}
#page-wrestling #main .sec-message .sec-in::after{
	position: absolute;
	top: -58px;
	left: -40px;
	z-index: -1;
	width: 511px;
	height: 76px;
	background: url(/group/sbs/wrestling/img/top/message.svg) center center no-repeat;
	background-size: 511px 76px;
	content: '';
}
#page-wrestling #main .sec-message .sec-in .txt{
	font-size: 18px;
	font-weight: bold;
	font-feature-settings: "palt";
	line-height: 1.82;
	letter-spacing: .1em;
	text-align: center;
}
#page-wrestling #main .sec-news{
	margin:0 0 140px;
}
#page-wrestling #main .sec-news .list-news{
	margin: 0 0 40px;
	padding: 16px 0 0;
	border-top: 1px dotted #31266c;
}
#page-wrestling #main .sec-news .list-news li{
	margin: 0 0 16px;
	padding: 0 0 16px;
	border-bottom: 1px dotted #31266c;
}
#page-wrestling #main .sec-news .list-news li:last-child{
	margin: 0;
}
#page-wrestling #main .sec-news .list-news a{
	display: flex;
	align-items: center;
	position: relative;
}
#page-wrestling #main .sec-news .list-news a::after{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .3);
	opacity: 0;
	transition: opcity .1s linear;
	content: '';
}
#page-wrestling #main .sec-news .list-news a:hover{
	color: #111;
}
#page-wrestling #main .sec-news .list-news a:hover::after{
	opacity: 1;
}
#page-wrestling #main .sec-news .list-news li .img{
	width: 168px;
	height: 112px;
	margin: 0 64px 0 0;
	background-color: #000;
	text-align: center;
}
#page-wrestling #main .sec-news .list-news li .img img{
	width: auto;
	height: 100%;
}
#page-wrestling #main .sec-news .list-news li .content{
	width: 792px;
}
#page-wrestling #main .sec-news .list-news li .date{
	display: block;
	margin: 0 0 12px;
	color: #ff840c;
	font-size: 13px;
	font-feature-settings: "palt";
	letter-spacing: .05em;
}
#page-wrestling #main .sec-news .list-news li .txt{
	line-height: 1.57;
}
#page-wrestling #main .sec-news .btn-area{
	width: 240px;
	height: 48px;
	margin: 0 auto;
}
#page-wrestling #main .sec-profile{
	margin: 0 0 135px;
}
#page-wrestling #main .sec-profile .tit-sec{
	margin: 0 0 28px;
}
#page-wrestling #main .sec-profile .profile-in{
	position: relative;
	margin: 0 0 8px;
}
#page-wrestling #main .sec-profile .profile-in a.profile-name{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5%;
	left: 53%;
	z-index: 1;
	width: 27%;
	height: 90%;
	color: #fff;
	font-size: 38px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .08em;
}
#page-wrestling #main .sec-profile .profile-in a.profile-name:hover{
	opacity: 1;
}
#page-wrestling #main .sec-profile .profile-in a.profile-name .profile-name-in .small{
	font-size: 24px;
}
#page-wrestling #main .sec-profile .profile-in a.profile-name .profile-name-in .en{
	display: block;
	margin: 22px 0 24px;
	font-size: 17px;
}
#page-wrestling #main .sec-profile .img{
	position: relative;
}
#page-wrestling #main .sec-profile .profile-in a.profile-name .ico{
	position: relative;
	left: 0;
	transition: left .15s linear;
}
#page-wrestling #main .sec-profile .profile-in a.profile-name:hover .ico{
	left: 40px;
}
#page-wrestling #main .sec-profile .img::before{
	position: absolute;
	top: -3%;
	right: 0;
	z-index: 1;
	width: 60%;
	max-width: 1005px;
	padding-top: 4%;
	background: url(/group/sbs/wrestling/img/top/profileLine_top.svg) top right no-repeat;
	background-size: 100%;
	content: '';
}
#page-wrestling #main .sec-profile .img::after{
	position: absolute;
	bottom: -2.5%;
	left: 0;
	z-index: 1;
	width: 23%;
	max-width: 379px;
	padding-top: 2%;
	background: url(/group/sbs/wrestling/img/top/profileLine_bottom.svg) bottom left no-repeat;
	background-size: 100%;
	content: '';
}
#page-wrestling #main .sec-gallery-rule{
	display: flex;
	justify-content: space-between;
	max-width: 1184px;
	margin: 0 auto 160px;
}
#page-wrestling #main .sec-gallery-rule a{
	display: block;
	position: relative;
	width: calc(50% - 8px);
}
#page-wrestling #main .sec-gallery-rule a::after{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(49,38,108,.35);
	opacity: 0;
	transition: opacity .1s linear;
	content: '';
}
#page-wrestling #main .sec-gallery-rule a:hover{
	color: #111;
}
#page-wrestling #main .sec-gallery-rule a:hover::after{
	opacity: 1;
}
#page-wrestling #main .sec-gallery-rule a .content{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	max-width: 494px;
	width: 90%;
	height: 94px;
	padding: 16px 0 0;
	background-color: #fff;
	box-sizing: border-box;
	box-shadow: 0 0 8px rgba(0,0,0,.35);
	font-size: 34px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .12em;
	text-align: center;
	transform: translate(-50%, -50%);
}
#page-wrestling #main .sec-gallery-rule a .content::before,
#page-wrestling #main .sec-gallery-rule a .content::after{
	position: absolute;
	width: 0;
	height: 0;
	top: -6px;
	left: -10px;
	border-style: solid;
	border-color: transparent transparent transparent #33296e;
	border-width: 0px 0 26px 51px;
	content: "";
}
#page-wrestling #main .sec-gallery-rule a .content::after{
	top: auto;
	left: auto;
	bottom: -6px;
	right: -10px;
	border-color: transparent transparent transparent #ff840c;
	transform: rotate(180deg);
}
#page-wrestling #main .sec-gallery-rule a .content .en{
	display: block;
	margin: 0 0 8px;
	color: #ff840c;
	font-family: 'Source Code Pro', monospace;
	font-size: 22px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0;
}
#page-wrestling #main .sec-gallery-rule a .content .coach{
	position: absolute;
	bottom: -27px;
	right: -6px;
	z-index: 3;
}
#page-wrestling #main .sec-schedule{
	margin: 0 0 132px;
}
#page-wrestling #main .sec-schedule .list-schedule{
	display: flex;
	flex-wrap: wrap;
	font-size: 15px;
	letter-spacing: .05em;
}
#page-wrestling #main .sec-schedule .list-schedule dt{
	width: 354px;
}
#page-wrestling #main .sec-schedule .list-schedule dt .venue{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 24px;
	margin: 0 0 0 72px;
	background-color: #ff840c;
	color: #fff;
}
#page-wrestling #main .sec-schedule .list-schedule dt .venue.world{
	background-color: #31266c;
}
#page-wrestling #main .sec-schedule .list-schedule dd{
	width: 326px;
	margin: 0 0 21px;
}
#page-wrestling #main .sec-schedule .list-schedule dd:last-child{
	margin: 0;
}
#page-wrestling #main .sec-schedule .btn-area{
	width: 380px;
	height: 72px;
	margin: 56px auto 0;
	border: 1px solid #fff;
	font-size: 15px;
	text-align: center;
}
#page-wrestling #main .sec-schedule .btn-area .btn::after{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.35);
	opacity: 0;
	transition: opacity .1s linear;
	content: '';
}
#page-wrestling #main .sec-schedule .btn-area .btn:hover::after{
	opacity: 1;
}
#page-wrestling #main .sec-schedule .btn-area .btn:hover .ico{
	right: 20px;
}
#page-wrestling #main .sec-schedule .btn-area .btn .small{
	display: block;
	margin: 8px 0 0;
	font-size: 13px;
}
#page-wrestling #main .sec-footer-btn .btn-area .btn-message{
	width: 620px;
	height: 96px;
	margin: 0 auto 120px;
	background-color: #31266c;
	font-size: 18px;
	letter-spacing: .05em;
}


@media only screen and (max-width: 1440px) {
	#page-wrestling #main .sec-profile .profile-in a.profile-name{
		font-size: 32px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .profile-name-in .en{
		margin: 16px 0 20px;
		font-size: 14px;
	}
}
@media only screen and (max-width: 767px) {
	#page-wrestling #main .mv .copy{
		width: 86%;
		max-width: 356px;
		min-width: auto;
	}
	#page-wrestling #main .mv .copy::before,
	#page-wrestling #main .mv .copy::after{
		top: -15px;
		left: -5%;
		border-width: 0 0 14px 34px;
	}
	#page-wrestling #main .mv .copy::after{
		top: initial;
		left: initial;
		bottom: -15px;
		right: -5%;
	}
	#page-wrestling #main .sec-message{
		overflow: hidden;
		padding: 88px 0 96px;
		font-size: 15px;
	}
	#page-wrestling #main .sec-message .sec-in::after{
		position: absolute;
		top: -37px;
		left: -25px;
		z-index: -1;
		width: 382px;
		height: 51px;
		background: url(/group/sbs/wrestling/img/top/message.svg) center center no-repeat;
		background-size: 342px 51px;
		content: '';
	}
	#page-wrestling #main .sec-message .sec-in .txt{
		font-size: 15px;
		letter-spacing: .03em;
		text-align: left;
	}
	#page-wrestling #main .sec-news{
		margin: 0;
		padding: 0 0 96px;
	}
	#page-wrestling #main .sec-news .list-news{
		margin: 0 0 32px;
	}
	#page-wrestling #main .sec-news .list-news li{
		align-items: flex-start;
	}
	#page-wrestling #main .sec-news .list-news li .img{
		width: 99px;
		height: 66px;
		margin: 0 8px 0 0;
	}
	#page-wrestling #main .sec-news .list-news li .content{
		width: calc(100% - 107px);
	}
	#page-wrestling #main .sec-news .list-news li .date{
		margin: 0 0 10px;
		font-feature-settings: normal;
	}
	#page-wrestling #main .sec-news .btn-area{
		width: 220px;
		height: 44px;
	}
	#page-wrestling #main .sec-profile{
		margin: 0 0 96px;
	}
	#page-wrestling #main .sec-profile .tit-sec{
		margin: 0 0 32px;
	}
	#page-wrestling #main .sec-profile .profile-in{
		margin: 0 0 18px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name{
		top: 2%;
		width: 47%;
		height: 94%;
		font-size: 28px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .profile-name-in .en{
		margin: 14px 0 16px;
		font-size: 14px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .ico{
		width: 48px;
		height: 11px;
		background-size: 48px 11px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name:hover .ico{
		left: 0;
	}
	#page-wrestling #main .sec-profile .img::before{
		width: 70%;
		background: url(/group/sbs/wrestling/img/top/profileLine_top_sp.svg) top right no-repeat;
		background-size: 100%;
	}
	#page-wrestling #main .sec-profile .img::after{
		bottom: -4.5%;
		width: 36.6%;
		padding-top: 4%;
		background: url(/group/sbs/wrestling/img/top/profileLine_bottom_sp.svg) bottom left no-repeat;
		background-size: 100%;
	}
	#page-wrestling #main .sec-gallery-rule{
		display: block;
		width: 100%;
		margin:0 0 96px;
		padding: 5.3%;
		box-sizing: border-box;
	}
	#page-wrestling #main .sec-gallery-rule a{
		width: 100%;
	}
	#page-wrestling #main .sec-gallery-rule a:last-child{
		margin: 32px 0 0;
	}
	#page-wrestling #main .sec-gallery-rule a .content{
		max-width: 306px;
		height: 58px;
		padding: 8px 0 0;
		font-size: 24px;
		letter-spacing: .075em;
	}
	#page-wrestling #main .sec-gallery-rule a .content .en{
		margin: 0 0 3px;
		font-size: 15px;
	}
	#page-wrestling #main .sec-gallery-rule a .content .coach{
		bottom: -33px;
		right: -13px;
		width: 88px;
	}
	#page-wrestling #main .sec-schedule{
		margin: 0 0 64px;
	}
	#page-wrestling #main .sec-schedule .list-schedule{
		display: block;
		font-size: 14px;
	}
	#page-wrestling #main .sec-schedule .list-schedule dt{
		width: 100%;
		margin: 0 0 12px;
	}
	#page-wrestling #main .sec-schedule .list-schedule dt .date{
		font-size: 13px;
	}
	#page-wrestling #main .sec-schedule .list-schedule dt .venue{
		width: 75px;
		height: 20px;
		margin: 0 0 0 11px;
		font-size: 12px;
	}
	#page-wrestling #main .sec-schedule .list-schedule dd{
		width: 100%;
		margin: 0 0 15px;
		padding: 0 0 15px;
		border-bottom: 1px dotted #aaa;
	}
	#page-wrestling #main .sec-schedule .btn-area{
		width: 100%;
		height: 56px;
		margin: 36px auto 0;
		font-size: 13px;
	}
	#page-wrestling #main .sec-schedule .btn-area .btn::after{
		display: none;
	}
	#page-wrestling #main .sec-schedule .btn-area .btn .small{
		margin: 6px 0 0;
		font-size: 11px;
	}
	#page-wrestling #main .sec-footer-btn .btn-area{
		padding: 0 5.3%;
	}
	#page-wrestling #main .sec-footer-btn .btn-area .btn-message{
		width: 100%;
		height: 65px;
		margin: 0 0 60px;
		font-size: 14px;
		line-height: 1.57;
	}

}
@media only screen and (max-width: 479px) {
	#page-wrestling #main .sec-profile .profile-in a.profile-name{
		font-size: 18px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .profile-name-in .small{
		font-size: 14px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .profile-name-in .en{
		margin: 10px 0 17px;
		font-size: 11px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .ico{
		width: 31px;
		height: 7px;
		background-size: 31px 7px;
	}
}
@media only screen and (max-width: 374px) {
	#page-wrestling #main .sec-profile .profile-in a.profile-name{
		font-size: 18px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .profile-name-in .en{
		margin: 8px 0 12px;
		font-size: 10px;
	}
	#page-wrestling #main .sec-profile .profile-in a.profile-name .ico{
		width: 26px;
		height: 6px;
		background-size: 26px 6px;
	}
}

/*------------------------------------------
 *	#page-wrestling-profile
------------------------------------------*/
#page-wrestling-profile #main .tit-page::after{
	left: auto;
	right: 0;
	width: 100%;
	background-image: url(/group/sbs/wrestling/img/profile/bg_tit_page.jpg);
	background-position: center center;
}
#page-wrestling-profile #main .sec-index{
	margin: 0 0 160px;
}
#page-wrestling-profile #main .sec-index a{
	display: block;
	position: relative;
	margin: 0 0 40px;
}
#page-wrestling-profile #main .sec-index a:hover{
	opacity: 1;
}
#page-wrestling-profile #main .sec-index a .name-index{
	position: absolute;
	top: 53%;
	left: 78%;
	width: 280px;
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .05em;
	line-height: 1.2;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#page-wrestling-profile #main .sec-index a .name-index .small{
	font-size: 24px;
}
#page-wrestling-profile #main .sec-index a .name-index .en{
	display: block;
	margin: 22px 0 16px;
	font-size: 17px;
}
#page-wrestling-profile #main .sec-index a .name-index .ico{
	position: relative;
	left: 0;
	transition: left .15s linear;
}
#page-wrestling-profile #main .sec-index a:hover .name-index .ico{
	left: 40px;
}
@media only screen and (max-width: 767px) {
	#page-wrestling-profile #main .tit-page::after{
		background-image: url(/group/sbs/wrestling/img/profile/bg_tit_page_sp.jpg);
	}
	#page-wrestling-profile #main .sec-index{
		margin: 0 0 80px;
	}
	#page-wrestling-profile #main .sec-index a{
		margin: 0 0 18px;
	}
	#page-wrestling-profile #main .sec-index a .name-index{
		width: 240px;
		font-size: 28px;
	}
	#page-wrestling-profile #main .sec-index a .name-index .small{
		font-size: 20px;
	}
	#page-wrestling-profile #main .sec-index a .name-index .en{
		margin: 14px 0 16px;
		font-size: 14px;
	}
	#page-wrestling-profile #main .sec-index a .name-index .ico{
		width: 48px;
		height: 11px;
		background-size: 48px 11px;
	}
	#page-wrestling-profile #main .sec-index a:hover .name-index .ico{
		left: 0;
	}
}
@media only screen and (max-width: 479px) {
	#page-wrestling-profile #main .sec-index a .name-index{
		width: 160px;
		font-size: 18px;
	}
	#page-wrestling-profile #main .sec-index a .name-index .small{
		font-size: 14px;
	}
	#page-wrestling-profile #main .sec-index a .name-index .en{
		margin: 8px 0 12px;
		font-size: 10px;
	}
	#page-wrestling-profile #main .sec-index a .name-index .ico{
		width: 26px;
		height: 6px;
		background-size: 26px 6px;
	}
}

/*------------------------------------------
 *	#page-wrestling-profile-detail
------------------------------------------*/
#page-wrestling-profile-detail #main .breadcrumbs{
	margin: 10px 0 64px;
}
#page-wrestling-profile-detail #main .tit-profile-detail{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 480px;
	background-color: #31266c;
}
#page-wrestling-profile-detail #main .tit-profile-detail::after{
	position: absolute;
	z-index: 1;
	content: '';
}
#page-wrestling-profile-detail.kawai #main .tit-profile-detail::after{
	top: 160px;
	right: calc(50% - 552px);
	width: 323px;
	height: 270px;
	background: url(/group/sbs/wrestling/img/profile/kawai/img_autograph.png) 0 0 no-repeat;
	background-size: 323px 270px;
}
#page-wrestling-profile-detail.fujinami #main .tit-profile-detail::after{
	top: 41px;
	right: calc(50% - 512px);
	width: 236px;
	height: 397px;
	background: url(/group/sbs/wrestling/img/profile/fujinami/img_autograph.png) 0 0 no-repeat;
	background-size: 236px 397px;
}
#page-wrestling-profile-detail.hamaguchi #main .tit-profile-detail::after{
	top: 37px;
	right: calc(50% - 552px);
	width: 325px;
	height: 392px;
	background: url(/group/sbs/wrestling/img/profile/hamaguchi/img_autograph.png) 0 0 no-repeat;
	background-size: 325px 392px;
}
#page-wrestling-profile-detail.kawaiyukako #main .tit-profile-detail::after{
	top: 112px;
	right: calc(50% - 628px);
	width: 487px;
	height: 329px;
	background: url(/group/sbs/wrestling/img/profile/kawaiyukako/img_autograph.png) 0 0 no-repeat;
	background-size: 487px 329px;
}
#page-wrestling-profile-detail #main .tit-profile-detail picture{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#page-wrestling-profile-detail #main .tit-profile-detail img{
	width: auto;
	max-width: none;
	height: 480px;
}
#page-wrestling-profile-detail #main .tit-profile-detail h2{
	position: absolute;
	top: 50%;
	left: calc(50% + 120px);
	z-index: 2;
	color: #fff;
	font-size: 44px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .08em;
	line-height: 1.2;
	transform: translateY(-50%);
}
#page-wrestling-profile-detail #main .tit-profile-detail h2 .small{
	font-size: 32px;
}
#page-wrestling-profile-detail #main .tit-profile-detail h2 .en{
	display: block;
	margin: 24px 0 0;
	font-size: 18px;
}
#page-wrestling-profile-detail #main .tit-sec-profile-detail{
	margin: 0 0 40px;
	font-size: 34px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .16em;
	text-align: center;
}

#page-wrestling-profile-detail #main .sec-catch{
	margin: 0 0 143px;
	text-align: center;
}
#page-wrestling-profile-detail #main .sec-catch .tit-catch{
	display: inline-block;
	position: relative;
	margin: 0 0 30px;
	color: #ff840c;
	font-family: 'Source Code Pro', monospace;
	font-size: 26px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0;
}
#page-wrestling-profile-detail #main .sec-catch .tit-catch::before{
	position: absolute;
	width: 0;
	height: 0;
	top: -9px;
	left: -40px;
	border-style: solid;
	border-color: transparent transparent transparent #33296e;
	border-width: 0px 0 18px 38px;
	content: "";
}
#page-wrestling-profile-detail #main .sec-catch p.txt span{
	display: inline-block;
	position: relative;
	color: #31266c;
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 42px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .08em;
}
#page-wrestling-profile-detail #main .sec-catch p.txt span::after{
	position: absolute;
	bottom: -7px;
	left: -20px;
	z-index: -1;
	width: calc(100% + 40px);
	height: 17px;
	background-color: #e3deff;
	content: '';
}
#page-wrestling-profile-detail #main .sec-detail{
	margin: 0 0 120px;
}
#page-wrestling-profile-detail #main .sec-detail .sec-detail-in{
	display: flex;
}
#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .img{
	width: 440px;
	margin: 0 54px 0 0;
}
#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content{
	width: 530px;
}
#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content dl{
	display: flex;
	flex-wrap: wrap;
}
#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content dt{
	width: 210px;
	margin: 0 0 17px;
	padding: 0 0 17px;
	border-bottom: 1px dotted #ff840c;
	font-weight: bold;
	line-height: 1.5;
}
#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content dd{
	width: calc(100% - 210px);
	margin: 0 0 17px;
	padding: 0 0 17px;
	border-bottom: 1px dotted #ff840c;
	line-height: 1.5;
}

#page-wrestling-profile-detail #main .sec-result{
	margin: 0 0 120px;
}
#page-wrestling-profile-detail #main .sec-result .table-result{
	width: 100%;
	text-align: center;
	border: 1px solid #31266c;
}
#page-wrestling-profile-detail #main .sec-result .tit-table-result{
	display: flex;
}
#page-wrestling-profile-detail #main .sec-result .tit-table-result span{
	padding: 15px;
	background-color: #31266c;
	border-left: 1px solid #fff;
	box-sizing: border-box;
	color: #fff;
}
#page-wrestling-profile-detail #main .sec-result .tit-table-result span:nth-child(1){
	width: 160px;
	border-left: none;
}
#page-wrestling-profile-detail #main .sec-result .tit-table-result span:nth-child(2){
	width: 429px;
}
#page-wrestling-profile-detail #main .sec-result .tit-table-result span:nth-child(3){
	width: 217px;
}
#page-wrestling-profile-detail #main .sec-result .tit-table-result span:nth-child(4){
	width: 218px;
}
#page-wrestling-profile-detail #main .sec-result .table-result-in{
	display: flex;
	background-color: #fff;
}
#page-wrestling-profile-detail #main .sec-result .table-result-in .year-table-result{
	width: 160px;
	padding: 20px 0;
	border-top: 1px solid #31266c;
}
#page-wrestling-profile-detail #main .sec-result table{
	width: calc(100% - 160px);
}
#page-wrestling-profile-detail #main .sec-result table td{
	padding: 20px;
	border: 1px solid #31266c;
	box-sizing: border-box;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-profile-detail #main .sec-result table td:nth-child(1){
	width: 428px;
}
#page-wrestling-profile-detail #main .sec-result table td:nth-child(2){
	width: 216px;
}
#page-wrestling-profile-detail #main .sec-result table td:nth-child(3){
	width: 216px;
	border-right: none;
}
#page-wrestling-profile-detail #main .sec-result table td a{
	text-decoration: underline;
}
#page-wrestling-profile-detail #main .sec-result table tr:last-child td{
	border-bottom: none;
}
#page-wrestling-profile-detail #main .sec-result .notice-result{
	margin: 8px 0 0;
	font-size: 12px;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: right;
}
#page-wrestling-profile-detail #main .other-profile{
	margin: 0 0 160px;
}
#page-wrestling-profile-detail #main .other-profile .sec-in{
	display: flex;
	justify-content: center;
}
#page-wrestling-profile-detail #main .other-profile a{
	display: block;
	position: relative;
	width: 360px;
	margin: 0 12px;
	background-color: #32266c;
}
#page-wrestling-profile-detail #main .other-profile a .name{
	position: absolute;
	top: 50%;
	left: 75%;
	width: 10em;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .16em;
	text-align: center;
	transform: translate(-50%, -50%);
}
#page-wrestling-profile-detail #main .other-profile a .name .small{
	font-size: 12px;
}
#page-wrestling-profile-detail #main .other-profile a .name .ico{
	display: block;
	width: 39px;
	height: 9px;
	margin: 16px auto 0;
	background-size: 39px 9px;
	transition: transform .1s linear;
}
#page-wrestling-profile-detail #main .other-profile a:hover .name .ico{
	transform: translateX(15px);
}

@media only screen and (max-width: 1480px) {
	#page-wrestling-profile-detail #main .tit-profile-detail picture{
		left: calc(50% - 752px);
	}
}
@media only screen and (max-width: 767px) {
	#page-wrestling-profile-detail #main .tit-profile-detail{
		height: 165px;
	}
	#page-wrestling-profile-detail.kawai #main .tit-profile-detail::after{
		top: 74px;
		right: 13px;
		width: 115px;
		height: 96px;
		background-size: 115px 96px;
	}
	#page-wrestling-profile-detail.fujinami #main .tit-profile-detail::after{
		top: 18px;
		right: 18px;
		width: 85px;
		height: 142px;
		background-size: 85px 142px;
	}
	#page-wrestling-profile-detail.hamaguchi #main .tit-profile-detail::after{
		top: 11px;
		right: 16px;
		width: 103px;
		height: 151px;
		background-size: 103px 151px;
	}
	#page-wrestling-profile-detail.kawaiyukako #main .tit-profile-detail::after{
		top: 70px;
		right: 8px;
		width: 147px;
		height: 99px;
		background-size: 147px 99px;
	}
	#page-wrestling-profile-detail #main .tit-profile-detail picture{
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	#page-wrestling-profile-detail #main .tit-profile-detail img{
		width: 100%;
		min-width: 354px;
		height: auto;
	}
	#page-wrestling-profile-detail #main .tit-profile-detail h2{
		right: initial;
		left: 80%;
		width: 50%;
		font-size: 22px;
		transform: translate(-50%, -50%);
	}
	#page-wrestling-profile-detail #main .tit-profile-detail h2.is-long{
		left: 76%;
		font-size: 20px;
	}
	#page-wrestling-profile-detail #main .tit-profile-detail h2.is-long .small{
		font-size: 14px;
	}
	#page-wrestling-profile-detail #main .tit-profile-detail h2 .en{
		margin: 12px 0 0;
		font-size: 13px;
	}
	#page-wrestling-profile-detail #main .breadcrumbs{
		margin: 10px 0 45px;
	}
	#page-wrestling-profile-detail #main .tit-sec-profile-detail{
		margin: 0 0 20px;
		font-size: 20px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	
	#page-wrestling-profile-detail #main .sec-catch{
		margin: 0 0 48px;
	}
	#page-wrestling-profile-detail #main .sec-catch .tit-catch{
		margin: 0 0 15px;
		font-size: 15px;
	}
	#page-wrestling-profile-detail #main .sec-catch .tit-catch::before{
		top: -5px;
		left: -15px;
		border-width: 0px 0 9px 20px;
	}
	#page-wrestling-profile-detail #main .sec-catch p.txt span{
		margin: 0 0 8px;
		font-size: 21px;
		line-height: 1.3;
	}
	#page-wrestling-profile-detail #main .sec-catch p.txt span::after{
		bottom: -4px;
		left: -10px;
		width: calc(100% + 20px);
		height: 9px;
	}
	#page-wrestling-profile-detail #main .sec-detail{
		margin: 0 0 60px;
	}
	#page-wrestling-profile-detail #main .sec-detail .sec-detail-in{
		display: block;
	}
	#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .img{
		width: 220px;
		margin: 0 auto 24px;
	}
	#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content{
		width: 100%;
	}
	#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content dl{
		display: block;
		border-top: 1px dotted #ff840c;
	}
	#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content dt{
		width: 100%;
		margin: 16px 0 0;
		padding: 0;
		border-bottom: none;
		font-weight: bold;
	}
	#page-wrestling-profile-detail #main .sec-detail .sec-detail-in .content dd{
		width: 100%;
		margin: 0;
		padding: 8px 0;
		line-height: 1.4;
	}
	#page-wrestling-profile-detail #main .sec-result{
		margin: 0 0 60px;
	}
	#page-wrestling-profile-detail #main .sec-result .table-result{
		border: none;
	}
	#page-wrestling-profile-detail #main .sec-result .tit-table-result{
		display: none;
	}
	#page-wrestling-profile-detail #main .sec-result .table-result-in{
		display: block;
		background-color: transparent;
	}
	#page-wrestling-profile-detail #main .sec-result .table-result-in .year-table-result{
		width: auto;
		margin: 0 0 8px;
		padding: 0;
		border-top: none;
		font-size: 16px;
		font-weight: bold;
		text-align: left;
		letter-spacing: .05em;
	}
	#page-wrestling-profile-detail #main .sec-result table{
		width: 100%;
	}
	#page-wrestling-profile-detail #main .sec-result table tr,
	#page-wrestling-profile-detail #main .sec-result table td{
		display: block;
		border-bottom: none;
	}
	#page-wrestling-profile-detail #main .sec-result table tr{
		margin: 0 0 16px;
		border-bottom: 1px solid #31266c;
		background-color: #fff;
	}
	#page-wrestling-profile-detail #main .sec-result table td:nth-child(1),
	#page-wrestling-profile-detail #main .sec-result table td:nth-child(2),
	#page-wrestling-profile-detail #main .sec-result table td:nth-child(3){
		position: relative;
		padding: 10px 10px 10px 95px;
		width: 100%;
		border-right: 1px solid #31266c;
		line-height: 1.4;
	}
	#page-wrestling-profile-detail #main .sec-result table td::before{
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 85px;
		height: 100%;
		padding: 10px 0;
		background-color: #31266c;
		border-bottom: 1px solid #fff;
		box-sizing: border-box;
		color: #fff;
	}
	#page-wrestling-profile-detail #main .sec-result table td:nth-child(1)::before{
		content: '大会';
	}
	#page-wrestling-profile-detail #main .sec-result table td:nth-child(2)::before{
		content: '階級';
	}
	#page-wrestling-profile-detail #main .sec-result table td:nth-child(3)::before{
		content: '順位';
	}
	#page-wrestling-profile-detail #main .sec-result table td:last-child::before{
		border-bottom: 1px solid #31266c;
	}
	#page-wrestling-profile-detail #main .sec-result .notice-result{
		margin: 0;
	}
	#page-wrestling-profile-detail #main .other-profile{
		margin: 0 0 80px;
	}
	#page-wrestling-profile-detail #main .other-profile .sec-in{
		display: block;
	}
	#page-wrestling-profile-detail #main .other-profile a{
		width: 100%;
		max-width: 304px;
		margin: 0 auto;
	}
	#page-wrestling-profile-detail #main .other-profile a + a{
		margin: 12px auto 0;
	}
	#page-wrestling-profile-detail #main .other-profile a .name{
		width: 50%;
		font-size: 14px;
	}
	#page-wrestling-profile-detail #main .other-profile a .name .ico{
		width: 32px;
		height: 7px;
		margin: 10px auto 0;
		background-size: 32px 7px;
	}
}

/*------------------------------------------
 *	#page-wrestling-result
------------------------------------------*/
#page-wrestling-result #main .tit-page{
	background-color: #61696b;
}
#page-wrestling-result #main .tit-page::after{
	background-image: url(/group/sbs/wrestling/img/result/bg_tit_page.jpg);
}
#page-wrestling-result #main .sec-result{
	margin: 0 0 160px;
}
#page-wrestling-result #main .sec-result .tit-result{
	position: relative;
	width: 100%;
	margin: 0 0 24px;
	padding: 18px 36px;
	background-color: #efecff;
	box-sizing: border-box;
	font-size: 20px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-result #main .sec-result .tit-result::before,
#page-wrestling-result #main .sec-result .tit-result::after{
	position: absolute;
	top: 26px;
	right: 24px;
	width: 20px;
	height: 4px;
	background-color: #33267c;
	content: '';
	transition: transform .1s linear;
}
#page-wrestling-result #main .sec-result .tit-result::after{
	transform: rotate(90deg);
}
#page-wrestling-result #main .sec-result .tit-result:nth-last-child(2){
	margin: 0;
}

#page-wrestling-result #main .sec-result .tit-result.is-open::after{
	transform: rotate(0);
}
#page-wrestling-result #main .sec-result .tit-year-table-result{
	margin: 24px 0 8px;
	font-size: 18px;
	font-weight: bold;
	font-feature-settings: "palt";
	text-align: left;
	letter-spacing: .1em;
}
#page-wrestling-result #main .sec-result .table-result{
	display: none;
	width: calc(100% - 2px);
	margin: 16px 0 56px;
	border-bottom: none;
	text-align: center;
}
#page-wrestling-result #main .sec-result .table-result:last-child{
	margin: 16px 0 0;
}
#page-wrestling-result #main .sec-result .tit-table-result{
	display: flex;
}
#page-wrestling-result #main .sec-result .tit-table-result span{
	padding: 15px;
	background-color: #31266c;
	border-left: 1px solid #fff;
	box-sizing: border-box;
	color: #fff;
}
#page-wrestling-result #main .sec-result .tit-table-result span:nth-child(1){
	width: 161px;
	border-left: none;
}
#page-wrestling-result #main .sec-result .tit-table-result span:nth-child(2){
	width: 319px;
}
#page-wrestling-result #main .sec-result .tit-table-result span:nth-child(3){
	width: 202px;
}
#page-wrestling-result #main .sec-result .tit-table-result span:nth-child(4){
	width: 201px;
}
#page-wrestling-result #main .sec-result .tit-table-result span:nth-child(5){
	width: 142px;
}
#page-wrestling-result #main .sec-result table{
	width: 100%;
	border-left: 1px solid #31266c;
	border-right: 1px solid #31266c;
}
#page-wrestling-result #main .sec-result table td{
	padding: 20px 10px;
	border: 1px solid #31266c;
	box-sizing: border-box;
	vertical-align: middle;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	line-height: 1.4;
}
#page-wrestling-result #main .sec-result table td:nth-child(1){
	width: 161px;
	border-left: none;
}
#page-wrestling-result #main .sec-result table td:nth-child(2){
	width: 318px;
}
#page-wrestling-result #main .sec-result table td:nth-child(3){
	width: 200px;
}
#page-wrestling-result #main .sec-result table td:nth-child(4){
	width: 200px;
}
#page-wrestling-result #main .sec-result table td:nth-child(5){
	width: 141px;
	border-right: none;
}
#page-wrestling-result #main .sec-result table td .venue{
	display: block;
	font-size: 12px;
}
#page-wrestling-result #main .sec-result table td a{
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	#page-wrestling-result #main .tit-page::after{
		background-image: url(/group/sbs/wrestling/img/result/bg_tit_page_sp.jpg);
	}
	#page-wrestling-result #main .sec-result{
		margin: 0 0 80px;
	}
	#page-wrestling-result #main .sec-result .tit-result{
		margin: 0 0 8px;
		padding: 15px 12px;
		font-size: 15px;
	}
	#page-wrestling-result #main .sec-result .tit-result::before,
	#page-wrestling-result #main .sec-result .tit-result::after{
		top: 21px;
		right: 8px;
		width: 15px;
		height: 2px;
	}
	#page-wrestling-result #main .sec-result .tit-year-table-result{
		margin: 16px 0 8px;
		font-size: 14px;
	}
	#page-wrestling-result #main .sec-result .table-result{
		margin: 0 0 42px;
	}
	#page-wrestling-result #main .sec-result .tit-table-result{
		display: none;
	}
	#page-wrestling-result #main .sec-result table{
		border: none;
	}
	#page-wrestling-result #main .sec-result table tr,
	#page-wrestling-result #main .sec-result table td{
		display: block;
		border-bottom: none;
	}
	#page-wrestling-result #main .sec-result table tr{
		margin: 0 0 16px;
		border-bottom: 1px solid #31266c;
	}
	#page-wrestling-result #main .sec-result table td:nth-child(1),
	#page-wrestling-result #main .sec-result table td:nth-child(2),
	#page-wrestling-result #main .sec-result table td:nth-child(3),
	#page-wrestling-result #main .sec-result table td:nth-child(4),
	#page-wrestling-result #main .sec-result table td:nth-child(5){
		position: relative;
		padding: 10px 10px 10px 95px;
		width: 100%;
		border-left: 1px solid #31266c;
		border-right: 1px solid #31266c;
		line-height: 1.4;
	}
	#page-wrestling-result #main .sec-result table td::before{
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 85px;
		height: 100%;
		padding: 10px 0;
		background-color: #31266c;
		border-bottom: 1px solid #fff;
		box-sizing: border-box;
		color: #fff;
	}
	#page-wrestling-result #main .sec-result table td:nth-child(1)::before{
		content: '日付';
	}
	#page-wrestling-result #main .sec-result table td:nth-child(2)::before{
		content: '大会';
	}
	#page-wrestling-result #main .sec-result table td:nth-child(3)::before{
		content: '選手';
	}
	#page-wrestling-result #main .sec-result table td:nth-child(4)::before{
		content: '階級';
	}
	#page-wrestling-result #main .sec-result table td:nth-child(5)::before{
		content: '順位';
	}
	#page-wrestling-result #main .sec-result table td:last-child::before{
		border-bottom: 1px solid #31266c;
	}
}
/*------------------------------------------
 *	#page-wrestling-gallery
------------------------------------------*/
#page-wrestling-gallery #main .tit-page{
	background-color: #080612;
}
#page-wrestling-gallery #main .tit-page::after{
	background-image: url(/group/sbs/wrestling/img/gallery/bg_tit_page.jpg);
}

#page-wrestling-gallery #main .sec-gallery{
	margin: 0 0 160px;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 12px 0 64px;
	color: #33267c;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery-in {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 506px;
	padding: 20px 16px;
	background-color: #efeef3;
	box-sizing: border-box;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery-in:first-child {
	margin: 0 16px 0 0;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery-in.comingsoon::after {
	display:flex;
	justify-content:center;
	align-items:center;
	position:absolute;
	top:0;
	left:0;
	z-index:10;
	width:100%;
	height:100%;
	background-color:rgba(239, 238, 243, .8);
	color:#4d4091;
	font-size:15px;
	font-weight:bold;
	letter-spacing: .1em;
	content: "準備中です";
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .tit-select-gallery {
	margin-right: 16px;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: .1em;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery{
	position: relative;
	width: 390px;
	height: 40px;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery ul{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 40px;
	overflow: hidden;
	border: 1px solid #efeef3;
	transition: height .1s linear;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery select,
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery li{
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 390px;
	height: 40px;
	border: 0;
	outline: 0;
	background-color: #fff;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery li span,
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery li a{
	width: 100%;
	padding-left: 30px;
	color: #33267c;
	font-size: 14px;
	cursor: pointer;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery li a:hover{
	opacity: .7;
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery.is-disp-sp::after,
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery li:first-child span::after {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 8px;
	height: 12px;
	background: url(/group/sbs/wrestling/img/common/ico_arrow2_purple.svg) center center no-repeat;
	background-size: 8px 12px;
	content: '';
	transform: rotate(90deg);
}
#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery:hover li:first-child span::after {
	transform: rotate(270deg);
}

#page-wrestling-gallery #main .sec-gallery .tit-gallery{
	margin: 0 0 16px;
	font-size: 28px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-gallery #main .sec-gallery p.txt{
	letter-spacing: .05em;
	line-height: 1.6;
}
#page-wrestling-gallery #main .sec-gallery .list-gallery{
	display: flex;
	flex-wrap: wrap;
	margin: 32px 0 0;
}
#page-wrestling-gallery #main .sec-gallery .list-gallery li{
	width: 250px;
	margin: 8px 8px 0 0;
	overflow: hidden;
}
#page-wrestling-gallery #main .sec-gallery .list-gallery li:nth-child(4n){
	margin: 8px 0 0;
}
#page-wrestling-gallery #main .sec-gallery .list-gallery li a{
	display: block;
	position: relative;
	height: 188px;
	background-color: #000;
	opacity: 0;
}
#page-wrestling-gallery #main .sec-gallery .list-gallery li a::after{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	opacity: 0;
	color: #fff;
	letter-spacing: .1em;
	content: attr(data-hover);
	transition: opacity .1s linear;
	cursor: pointer;
}
#page-wrestling-gallery #main .sec-gallery .list-gallery li a:hover::after{
	opacity: 1;
}
#page-wrestling-gallery #main .sec-gallery .list-gallery li a img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#page-wrestling-gallery #main .sec-gallery .list-gallery li a.vertical img{
	max-width: inherit;
	width: auto;
	height: 188px;
}

/* モーダル設定 */
#page-wrestling-gallery #colorbox,
#page-wrestling-gallery #cboxOverlay,
#page-wrestling-gallery #cboxWrapper,
#page-wrestling-gallery #cboxContent{
	overflow: visible;
}
#page-wrestling-gallery #cboxOverlay{
	background-color: #000;
}
#page-wrestling-gallery #cboxClose{
	top: -30px;
	right: -40px;
	width: 30px;
	height: 30px;
	border: none;
	background: none;
	outline: 0;
	opacity: 0;
	transition: opacity .1s linear;
}
#page-wrestling-gallery #cboxClose::before,
#page-wrestling-gallery #cboxClose::after{
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 1px;
	background-color: #fff;
	content: '';
	transform: rotate(45deg);
}
#page-wrestling-gallery #cboxClose::after{
	transform: rotate(135deg);
}
#page-wrestling-gallery #cboxClose.is-show{
	opacity: 1;
}
#page-wrestling-gallery #cboxTitle{
	margin: 18px 0 0;
	color: #fff;
	letter-spacing: .1em;
	line-height: 1.6;
	opacity: 0;
}
#page-wrestling-gallery #cboxTitle.is-show{
	opacity: 1;
}
#page-wrestling-gallery #cboxPrevious,
#page-wrestling-gallery #cboxNext{
	position: absolute;
	top: 50%;
	right: -61px;
	width: 21px;
	height: 36px;
	margin: -18px 0 0;
	border: none;
	outline: none;
	font-size: 0;
	background: url(/group/sbs/wrestling/img/common/ico_arrow.svg) 0 0 no-repeat;
}
#page-wrestling-gallery #cboxPrevious{
	right: initial;
	left: -61px;
	transform: scale(-1, 1);
}

@media only screen and (max-width: 767px) {
	#page-wrestling-gallery #main .tit-page::after{
		background-image: url(/group/sbs/wrestling/img/gallery/bg_tit_page_sp.jpg);
	}
	#page-wrestling-gallery #main .sec-gallery .select-gallery {
		display: block;
		margin: 8px 0 48px;
	}
	#page-wrestling-gallery #main .sec-gallery .select-gallery-in {
		width: 100%;
		padding: 12px;
	}
	#page-wrestling-gallery #main .sec-gallery .select-gallery-in:first-child {
		margin: 0 0 8px;
	}
	#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery{
		width: calc(100% - 66px);
	}
	#page-wrestling-gallery #main .sec-gallery .select-gallery .tit-select-gallery {
		width: 58px;
		margin: 0 8px 0 0;
		font-size: 13px;
	}
	#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery select{
		width: 100%;
		padding-left: 15px;
		color: #33267c;
		font-size: 16px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	#page-wrestling-gallery #main .sec-gallery .select-gallery .nav-select-gallery select::-ms-expand {
		display: none;
	}
	#page-wrestling-gallery #main .sec-gallery .tit-gallery{
		margin: 0 0 10px;
		font-size: 18px;
		letter-spacing: .03em;
	}
	#page-wrestling-gallery #main .sec-gallery p.txt{
		letter-spacing: .03em;
	}
	#page-wrestling-gallery #main .sec-gallery .list-gallery{
		display: flex;
		flex-wrap: wrap;
		margin: 8px 0 0;
	}
	#page-wrestling-gallery #main .sec-gallery .list-gallery li{
		width: calc(50% - 4px);
	}
	#page-wrestling-gallery #main .sec-gallery .list-gallery li:nth-child(2n){
		margin: 8px 0 0;
	}
	#page-wrestling-gallery #main .sec-gallery .list-gallery li a{
		height: auto;
		padding-top: 75%;
	}
	#page-wrestling-gallery #main .sec-gallery .list-gallery li a::after{
		display: none;
	}
	#page-wrestling-gallery #main .sec-gallery .list-gallery li a.vertical img{
		height: 100%;
	}

	/* モーダル設定 */
	#page-wrestling-gallery #cboxClose{
		top: -40px;
		right: -10px;
		width: 33px;
		height: 33px;
	}
	#page-wrestling-gallery #cboxClose::before,
	#page-wrestling-gallery #cboxClose::after{
		width: 44px;
	}
	#page-wrestling-gallery #cboxTitle{
		margin: 9px 0 0;
	}
	#page-wrestling-gallery #cboxPrevious,
	#page-wrestling-gallery #cboxNext{
		right: -24px;
		width: 11px;
		height: 18px;
		margin: -9px 0 0;
	}
	#page-wrestling-gallery #cboxPrevious{
		right: initial;
		left: -24px;
	}
}
/*------------------------------------------
 *	#page-wrestling-news
------------------------------------------*/
#page-wrestling-news #main {
	overflow: visible;
}
#page-wrestling-news #main .tit-page{
	background-color: #060a08;
}
#page-wrestling-news #main .tit-page::after{
	left: auto;
	right: 0;
	width: 100%;
	background-image: url(/group/sbs/wrestling/img/news/bg_tit_page.jpg);
	background-position: top right;
	background-size: auto 100%;
}
#page-wrestling-news #main .sec-news{
	margin: 0 0 160px;
}
#page-wrestling-news #main .sec-news .sec-in{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
#page-wrestling-news #main .sec-news .sidebar{
	width: 170px;
}
#page-wrestling-news #main .sec-news .sidebar .tit-sidebar{
	margin: 0 0 16px;
	color: #33267c;
	font-size: 16px;
	font-weight: 600;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-news #main .sec-news .sidebar .nav-archive-sidebar{
	position: relative;
	width: 170px;
	height: 40px;
}
#page-wrestling-news #main .sec-news .sidebar .nav-category-sidebar{
	margin: 30px 0 76px;
}
#page-wrestling-news #main .sec-news .sidebar .nav-category-sidebar li{
	margin: 0 0 24px;
}
#page-wrestling-news #main .sec-news .sidebar .nav-category-sidebar li a{
	display: flex;
	align-items: center;
	font-size: 15px;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-news #main .sec-news .sidebar .nav-category-sidebar li a::before{
	display: inline-block;
	width: 5px;
	height: 9px;
	margin: 0 8px 0 0;
	background: url(/group/sbs/wrestling/img/common/ico_arrow2_purple.svg) center center no-repeat;
	background-size: 5px 9px;
	content: '';
}
#page-wrestling-news #main .sec-news .sidebar .nav-archive-sidebar ul{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 40px;
	overflow: hidden;
	border: 1px solid #33267c;
	transition: height .1s linear;
}
#page-wrestling-news #main .sec-news .sidebar select,
#page-wrestling-news #main .sec-news .archive .nav-archive-sidebar li{
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 170px;
	height: 40px;
	border: 0;
	outline: 0;
	background-color: #fff;
}
#page-wrestling-news #main .sec-news .sidebar .nav-archive-sidebar li span,
#page-wrestling-news #main .sec-news .sidebar .nav-archive-sidebar li a{
	width: 100%;
	padding-left: 10px;
	color: #33267c;
	font-size: 14px;
	cursor: pointer;
}
#page-wrestling-news #main .sec-news .sidebar .nav-archive-sidebar li a:hover{
	opacity: .7;
}
#page-wrestling-news #main .sec-news .sidebar .is-disp-sp::after,
#page-wrestling-news #main .sec-news .sidebar .nav-archive-sidebar li:first-child span::after {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 8px;
	height: 12px;
	background: url(/group/sbs/wrestling/img/common/ico_arrow2_purple.svg) center center no-repeat;
	background-size: 8px 12px;
	content: '';
	transform: rotate(90deg);
}
#page-wrestling-news #main .sec-news .sec-news-in{
	width: 814px;
}
#page-wrestling-news #main .sec-news .tit-news{
	margin: 0 0 32px;
	padding: 18px 24px;
	background-color: #efecff;
	font-size: 20px;
	font-weight: 600;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-news #main .sec-news .pagenav{
	display: flex;
	justify-content: space-between;
}
#page-wrestling-news #main .sec-news .pagenav a{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 140px;
	height: 40px;
	background-color: #33267c;
	color: #fff;
	letter-spacing: .05em;
}
#page-wrestling-news #main .sec-news .pagenav a:hover{
	color: #fff;
}
#page-wrestling-news #main .sec-news .pagenav a i{
	position: absolute;
	top: 50%;
	margin: -6px 0 0;
	transition: .1s linear;
}
#page-wrestling-news #main .sec-news .pagenav a:first-child i{
	left: 16px;
	transform: rotate(180deg);
}
#page-wrestling-news #main .sec-news .pagenav a:last-child i{
	right: 16px;
}
#page-wrestling-news #main .sec-news .pagenav a:hover:first-child i {
	left: 10px;
}
#page-wrestling-news #main .sec-news .pagenav a:hover:last-child i {
	right: 10px;
}
#page-wrestling-news #main .sec-news article{
	margin: 0 0 88px;
}
#page-wrestling-news #main .sec-news article:last-child{
	margin: 0;
}
#page-wrestling-news #main .sec-news article .tit-article .date{
	margin: 0 0 16px;
	font-feature-settings: "palt";
	letter-spacing: .05em;
}
#page-wrestling-news #main .sec-news article .tit-article h3{
	margin: 0 0 10px;
	padding: 0 0 12px;
	border-bottom: 1px solid #33267c;
	font-size: 18px;
	letter-spacing: .05em;
	line-height: 1.3;
}
#page-wrestling-news #main .sec-news article .tag-article{
	display: flex;
	margin: 0 0 38px;
}
#page-wrestling-news #main .sec-news article .tag-article a,
#page-wrestling-news #main .sec-news article .tag-article span{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 20px;
	margin: 0 8px 0 0;
	border: 1px solid #ff840c;
	color: #ff840c;
	font-size: 12px;
	font-feature-settings: "palt";
	letter-spacing: .05em;
}
#page-wrestling-news #main .sec-news article .tag-article a:hover{
	opacity: .7;
}
#page-wrestling-news #main .sec-news article .content p{
	margin: 0 0 24px;
	line-height: 1.43;
	letter-spacing: .05em;
}
#page-wrestling-news #main .sec-news article .content p:last-child{
	margin: 0;
}
#page-wrestling-news #main .sec-news article .content .tit-img{
	margin: 0 0 8px;
	font-weight: bold;
	letter-spacing: .05em;
}
#page-wrestling-news #main .sec-news article .content .img-area{
	display: flex;
	flex-wrap: wrap;
	margin: -4px 0 0;
}
#page-wrestling-news #main .sec-news article .content .img-area .img{
	display: block;
	max-width: 200px;
	margin: 4px 4px 0 0;
}
#page-wrestling-news #main .sec-news article .content .img-area .img:nth-child(4n){
	margin: 4px 0 0 0;
}
#page-wrestling-news #main .sec-news article .content .img-area .img img{
	width: 100%;
}
#page-wrestling-news #main .sec-news article .content a{
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	#page-wrestling-news #main .tit-page::after{
		background-image: url(/group/sbs/wrestling/img/news/bg_tit_page_sp.jpg);
	}
	#page-wrestling-news #main .sec-news{
		margin: 0 0 80px;
	}
	#page-wrestling-news #main .sec-news .sec-in{
		display: block;
	}
	#page-wrestling-news #main .sec-news .sidebar{
		width: 100%;
		margin: 60px 0 0;
		padding: 20px 16px;
		background-color: #efeef3;
		box-sizing: border-box;
	}
	#page-wrestling-news #main .sec-news .sidebar .tit-sidebar{
		margin: 0 0 7px;
		font-size: 14px;
	}
	#page-wrestling-news #main .sec-news .sidebar .nav-category-sidebar,
	#page-wrestling-news #main .sec-news .sidebar .nav-archive-sidebar{
		width: 100%;
	}
	#page-wrestling-news #main .sec-news .sidebar .nav-category-sidebar{
		position: relative;
		height: 40px;
		margin: 0 0 15px;
	}
	#page-wrestling-news #main .sec-news .sidebar select{
		width: 100%;
		padding: 0 0 0 21px;
		color: #33267c;
		font-size: 16px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	#page-wrestling-news #main .sec-news .sidebar select::-ms-expand {
		display: none;
	}
	#page-wrestling-news #main .sec-news .sec-news-in{
		width: 100%;
	}
	#page-wrestling-news #main .sec-news .tit-news{
		margin: 0 0 16px;
		padding: 15px 12px;
		font-size: 15px;
	}
	#page-wrestling-news #main .sec-news .pagenav a{
		width: 110px;
		height: 32px;
		font-size: 13px;
	}
	#page-wrestling-news #main .sec-news .pagenav a i{
		width: 4px;
		height: 7px;
		margin: -3px 0 0;
		background-size: 4px 7px;
	}
	#page-wrestling-news #main .sec-news .pagenav a:first-child i{
		left: 8px;
	}
	#page-wrestling-news #main .sec-news .pagenav a:last-child i{
		right: 8px;
	}
	#page-wrestling-news #main .sec-news .pagenav a:hover:first-child i {
		left: 8px;
	}
	#page-wrestling-news #main .sec-news .pagenav a:hover:last-child i {
		right: 8px;
	}
	#page-wrestling-news #main .sec-news article{
		margin: 0 0 59px;
	}
	#page-wrestling-news #main .sec-news article .tit-article .date{
		margin: 0 0 13px;
		font-size: 11px;
		letter-spacing: .03em;
	}
	#page-wrestling-news #main .sec-news article .tit-article h3{
		margin: 0 0 8px;
		padding: 0 0 8px;
		font-size: 17px;
		letter-spacing: .03em;
	}
	#page-wrestling-news #main .sec-news article .tag-article{
		margin: 0 0 21px;
	}
	#page-wrestling-news #main .sec-news article .tag-article a,
	#page-wrestling-news #main .sec-news article .tag-article span{
		width: 100px;
	}
	#page-wrestling-news #main .sec-news article .content p{
		margin: 0 0 15px;
		letter-spacing: .03em;
	}
	#page-wrestling-news #main .sec-news article .content .img-area .img{
		max-width: none;
		width: calc(50% - 2px);
	}
	#page-wrestling-news #main .sec-news article .content .img-area .img img{
		width: 100%;
	}
	#page-wrestling-news #main .sec-news article .content .img:nth-child(2n){
		margin: 4px 0 0 0;
	}
}

/*------------------------------------------
 *	#page-wrestling-rule
------------------------------------------*/
#page-wrestling-rule #main .tit-page{
	background-color: #2f302a;
}
#page-wrestling-rule #main .tit-page::after{
	background-image: url(/group/sbs/wrestling/img/rule/bg_tit_page.jpg);
}
#page-wrestling-rule #main .tit-page h2{
	width: 380px;
}
#page-wrestling-rule #main .tit-rule{
	margin: 0 0 32px;
	font-size: 28px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: center;
}
#page-wrestling-rule #main .coach{
	position: relative;
}
#page-wrestling-rule #main .coach p{
	position: absolute;
	font-feature-settings: "palt";
	letter-spacing: .08em;
	line-height: 1.57;
}
#page-wrestling-rule #main .coach p .midokoro{
	position: absolute;
	top: -40px;
	left: 0;
	padding: 5px 10px 5px 15px;
	background-color: #ff840c;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
}
#page-wrestling-rule #main .coach p .midokoro::after{
	position: absolute;
	width: 0;
	height: 0;
	top: 100%;
	left: 7px;
	z-index: 3;
	border-style: solid;
	border-color: #ff840c transparent transparent transparent ;
	border-width: 7px 0 0 7px;
	content: '';
}



#page-wrestling-rule #main .sec-about{
	padding: 0 0 120px;
}
#page-wrestling-rule #main .sec-about .sec-about-in{
	display: flex;
}
#page-wrestling-rule #main .sec-about .sec-about-in .img{
	width: 340px;
	margin: 0 40px 0 0;
}
#page-wrestling-rule #main .sec-about .sec-about-in .content{
	width: 644px;
}
#page-wrestling-rule #main .sec-about .sec-about-in .content .txt{
	margin: 0 0 36px;
	font-size: 15px;
}
#page-wrestling-rule #main .sec-about .sec-about-in .content .txt .strong{
	font-weight: bold;
}
#page-wrestling-rule #main .sec-about .sec-about-in .content .coach p{
	top: 64px;
	left: 28px;
	width: 364px;
}
#page-wrestling-rule #main .sec-style{
	padding: 80px 0 180px;
	background-color: #f3f3f3;
}
#page-wrestling-rule #main .sec-style .sec-style-in{
	display: flex;
	justify-content: space-between;
	position: relative;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child{
	width: 504px;
	padding: 24px;
	background-color: #fff;
	box-sizing: border-box;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .tit-style{
	padding: 8px 0;
	border-radius: 16px;
	background-color: #33267c;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: center;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .txt{
	padding: 32px 0 24px;
	border-bottom: 1px dotted #33267c;
	font-size: 16px;
	font-feature-settings: "palt";
	letter-spacing: .08em;
	line-height: 1.8;
	text-align: center;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style .tit-class-style{
	margin: 16px 0 8px;
	color: #33267c;
	font-size: 16px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: center;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style .tit-gender-class-style{
	display: flex;
	align-items: center;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style .tit-gender-class-style::before{
	display: inline-block;
	width: 8px;
	margin: 0 5px 0 0;
	height: 8px;
	border-radius: 4px;
	background-color: #33267c;
	content: '';
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dl{
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 12px;
	font-feature-settings: "palt";
	letter-spacing: .08em;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dl + .tit-gender-class-style{
	margin: 32px 0 0;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dt{
	width: 140px;
	margin: 8px 8px 0 0;
}
#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dd{
	width: 308px;
	margin: 8px 0 0;
}
#page-wrestling-rule #main .sec-style .sec-style-in .coach{
	position: absolute;
	right: 18px;
	bottom: -118px;
}
#page-wrestling-rule #main .sec-style .sec-style-in .coach p{
	top: 73px;
	left: 30px;
	width: 167px;
}
#page-wrestling-rule #main .sec-judgment{
	padding: 111px 0 0;
}
#page-wrestling-rule #main .sec-judgment .sec-judgment-in dl + dl{
	margin: 20px 0 0;
	padding: 24px 0 0;
	border-top: 1px dotted #33267c;
}
#page-wrestling-rule #main .sec-judgment .sec-judgment-in dt{
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-rule #main .sec-judgment .sec-judgment-in dd{
	font-size: 15px;
	font-feature-settings: "palt";
	letter-spacing: .08em;
	line-height: 1.57;
}
#page-wrestling-rule #main .sec-judgment .sec-judgment-in .coach-judgment01{
	width: 1028px;
	left: -4px;
	margin: 24px 0 0;
}
#page-wrestling-rule #main .sec-judgment .sec-judgment-in .coach-judgment01 p{
	top: 66px;
	right: 156px;
	font-size: 16px;
	font-weight: bold;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment{
	margin: 44px 0 0;
	padding: 40px 48px 50px;
	border: 2px solid #675ca0;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .tit-point-judgment{
	margin: 0 0 36px;
	color: #33267c;
	font-size: 20px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: center;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol{
	margin: 0 30px 36px;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li{
	display: flex;
	align-items: center;
	position: relative;
	margin: 0 0 16px;
	font-size: 16px;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li:nth-child(2){
	margin: 0 0 32px;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li .num{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin: 0 8px 0 0;
	border-radius: 12px;
	background-color: #33267c;
	color: #fff;
	font-family: 'Lato', sans-serif;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li .strong{
	font-weight: bold;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li .notice{
	position: absolute;
	top: 28px;
	left: 32px;
	font-size: 13px;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .coach-judgment02{
	margin: 0 30px;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .coach-judgment02 p{
	top: 64px;
	left: 94px;
	width: 525px;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in{
	margin: 44px 0 0;
	padding: 32px 32px 48px;
	background-color: #f0eefd;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .tit-point-judgment-in{
	margin: 0 0 24px;
	color: #33267c;
	font-size: 18px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: center;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list{
	display: flex;
	justify-content: space-between;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li{
	width: 272px;
	padding: 24px 18px;
	border-radius: 8px;
	background-color: #fff;
	box-sizing: border-box;
	box-shadow: 0 3px 8px #e8e5f5;
	line-height: 1.57;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li .tit-point-judgment-list{
	margin: 0 0 24px;
	padding: 6px;
	border-radius: 13px;
	background-color: #33267c;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: center;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li li{
	position: relative;
	margin: 0 0 8px;
	padding-left: .7em;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li li::before{
	position: absolute;
	top: 7px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 2px;
	background-color: #33267c;
	content: '';
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li li .txt-point-judgment-list{
	margin: 16px 0 0;
	font-size: 13px;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li li .txt-point-judgment-list .strong{
	margin: 0 0 8px;
	font-weight: bold;
}
#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li li .txt-point-judgment-list dl + dl{
	margin: 8px 0 0;
}
#page-wrestling-rule #main .sec-judgment .notice-judgment{
	margin: 8px 0 0;
	font-size: 12px;
	letter-spacing: .08em;
}

#page-wrestling-rule #main .sec-other{
	padding: 120px 0;
}
#page-wrestling-rule #main .sec-other-list{
	position: relative;
}
#page-wrestling-rule #main .sec-other-list .coach-other01{
	position: absolute;
	top: -38px;
	right: 0;
	padding: 0 22px 0 35px;
	background-color: #fff;
}
#page-wrestling-rule #main .sec-other-list .coach-other01 p{
	top: 90px;
	left: 64px;
	width: 176px;
	letter-spacing: .03em;
}
#page-wrestling-rule #main .sec-other-list .coach-other02{
	width: 859px;
	margin: 40px auto 0;
}
#page-wrestling-rule #main .sec-other-list .coach-other02 p{
	top: 28px;
	left: 182px;
	width: 640px;
	letter-spacing: .1em;
}
#page-wrestling-rule #main .sec-other-list ul li{
	display: flex;
	padding: 24px 0 16px;
	border-bottom: 1px dotted #33267c;
}
#page-wrestling-rule #main .sec-other-list ul li .tit-other-list{
	position: relative;
	margin: 0 0 16px;
	padding: 0 0 0 16px;
	font-size: 16px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-rule #main .sec-other-list ul li .tit-other-list::before{
	position: absolute;
	top: 3px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background-color: #33267c;
	content: '';
}
#page-wrestling-rule #main .sec-other-list ul li .txt{
	width: 692px;
	margin: 0 0 0 16px;
	line-height: 1.57;
}
#page-wrestling-rule #main .sec-other-list ul li .txt .strong{
	font-weight: bold;
}
#page-wrestling-rule #main .sec-other-list ul li .img{
	margin: 0 0 0 74px;
}
#page-wrestling-rule #main .sec-other-list ul li.shoelace .img{
	margin: 0 0 0 98px;
}


#page-wrestling-rule #main .sec-history{
	padding: 0 0 160px;
}
#page-wrestling-rule #main .sec-history .sec-history-table{
	margin: 0 0 64px;
}
#page-wrestling-rule #main .sec-history .sec-history-table .tit-history-table{
	margin: 64px 0 16px;
	font-size: 18px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in{
	display: flex;
	border: 1px solid #33267c;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in .tit-history-table-in{
	width: 158px;
	background-color: #c9c2f7;
	box-sizing: border-box;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in .tit-history-table-in .cell{
	min-height: 44px;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.japan .tit-history-table-in .cell{
	display: flex;
	justify-content: center;
	align-items: center;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in .tit-history-table-in .cell + .cell{
	padding: 32px 0;
	border-top: 1px solid #33267c;
	box-sizing: border-box;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.japan .tit-history-table-in .cell span{
	display: block;
	text-align: center;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.japan .tit-history-table-in .cell span + span{
	margin: 8px 0 0;
	padding: 8px 0 0;
	border-top: 1px solid #111111;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb .tit-history-table-in .cell + .cell{
	padding: 40px 0;
	text-align: center;
	line-height: 1.42;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb .tit-history-table-in .cell:last-child{
	padding: 62px 0;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb .tit-history-table-in .cell .small{
	font-size: 12px;
}

#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dl{
	width: 217px;
	border-left: 1px solid #33267c;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb dl{
	width: 96px;
	box-sizing: border-box;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dt{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 44px;
	border-bottom: 1px solid #33267c;
	background-color: #f0eefd;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 110px;
	font-size: 16px;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb dd{
	height: 118px;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb dd + dd{
	height: 162px;
	border-top: 1px solid #33267c;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .img{
	margin: 0 8px 0 0;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .num{
	text-align: center;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .num .all{
	display: block;
	margin: 8px 0 0;
	padding: 8px 0 0;
	border-top: 1px solid #111111;
	font-size: 14px;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .history-table-child{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 8px 0;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .history-table-child + .history-table-child{
	border-top: 1px dotted #33267c;
}
#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd.row2 .history-table-child{
	height: 80px;
	box-sizing: border-box;
}
#page-wrestling-rule #main .sec-history .sec-history-table .notice-history-table{
	margin: 8px 0 0;
	font-size: 12px;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	text-align: right;
}
#page-wrestling-rule #main .sec-history .coach{
	width: 873px;
}
#page-wrestling-rule #main .sec-history .sec-history-table .coach-history01{
	margin: 24px auto 0;
}
#page-wrestling-rule #main .sec-history .sec-history-table .coach-history01 p{
	top: 40px;
	left: 126px;
	letter-spacing: .03em;
}
#page-wrestling-rule #main .sec-history .sec-history-list .tit-rule{
	margin: 0 0 40px;
}
#page-wrestling-rule #main .sec-history .sec-history-list dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px dotted #33267c;
}
#page-wrestling-rule #main .sec-history .sec-history-list .tit-rule + dl{
	border-top: 1px dotted #33267c;
}
#page-wrestling-rule #main .sec-history .sec-history-list dl dt{
	position: relative;
	width: 120px;
}
#page-wrestling-rule #main .sec-history .sec-history-list dl dd{
	width: 903px;
	line-height: 1.42;
}
#page-wrestling-rule #main .sec-history .sec-history-list .fw-b.color-purple{
	color: #33267c;
	font-size: 16px;
}
#page-wrestling-rule #main .sec-history .sec-history-list .indent{
	display: inline-block;
	margin: 0 0 0 1em;
}
#page-wrestling-rule #main .sec-history .sec-history-list .coach-history02{
	margin: 32px auto 0;
}
#page-wrestling-rule #main .sec-history .sec-history-list .coach-history02 p{
	top: 28px;
	left: 71px;
	width: 585px;
	letter-spacing: .1em;
}

@media only screen and (max-width: 767px) {
	#page-wrestling-rule #main .tit-page::after{
		background-image: url(/group/sbs/wrestling/img/rule/bg_tit_page_sp.jpg);
	}
	#page-wrestling-rule #main .tit-page h2{
		width: 89.7vw;
	}
	#page-wrestling-rule #main .tit-rule{
		margin: 0 0 20px;
		font-size: 20px;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .coach{
		max-width: 426px;
		margin: 0 auto;
	}
	#page-wrestling-rule #main .coach p{
		position: relative;
		padding: 20px 5.3vw 0;
		box-sizing: border-box;
		font-feature-settings: normal;
		letter-spacing: .05em;
		background: url(/group/sbs/wrestling/img/rule/img_coach_sp_top.jpg) 0 0 no-repeat,
					url(/group/sbs/wrestling/img/rule/img_coach_sp_middle.jpg) 0 0 repeat-y;
		background-size: 100%;
	}
	#page-wrestling-rule #main .coach p .midokoro{
		top: 20px;
		left: 5.3vw;
	}
	
	#page-wrestling-rule #main .sec-about{
		padding: 0 0 60px;
	}
	#page-wrestling-rule #main .sec-about .sec-about-in{
		display: block;
	}
	#page-wrestling-rule #main .sec-about .sec-about-in .img{
		width: 275px;
		margin: 0 auto 16px;
	}
	#page-wrestling-rule #main .sec-about .sec-about-in .content{
		width: 100%;
	}
	#page-wrestling-rule #main .sec-about .sec-about-in .content .txt{
		margin: 0 0 14px;
		font-size: 14px;
		line-height: 1.57;
	}
	#page-wrestling-rule #main .sec-about .sec-about-in .content .coach p{
		top: 0;
		left: 0;
		width: 100%;
	}
	
	#page-wrestling-rule #main .sec-style{
		padding: 40px 0 28px;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in{
		display: block;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child{
		width: 100%;
		padding: 20px 5.3vw;
		box-shadow: 0 3px 8px #eaeaeb;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child:first-child{
		margin: 0 0 16px;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .tit-style{
		padding: 6px 0;
		border-radius: 13px;
		font-size: 14px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .txt{
		padding: 12px 0;
		font-size: 16px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style .tit-class-style{
		margin: 20px 0 8px;
		font-size: 14px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style .tit-gender-class-style{
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style .tit-gender-class-style::before{
		width: 6px;
		height: 6px;
		border-radius: 3px;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dl{
		display: block;
		margin: 0;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dl + .tit-gender-class-style{
		margin: 16px 0 0;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dt{
		width: 100%;
		margin: 6px 0 0;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .sec-style-child .class-style dd{
		width: 100%;
		margin: 0 0 12px;
		line-height: 1.57;
	
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .coach{
		position: static;
		margin: 15px auto 0;
	}
	#page-wrestling-rule #main .sec-style .sec-style-in .coach p{
		top: 0;
		left: 0;
		width: 100%;
		background: url(/group/sbs/wrestling/img/rule/img_coach_sp_top_gray.jpg) 0 0 no-repeat,
					url(/group/sbs/wrestling/img/rule/img_coach_sp_middle.jpg) 0 0 repeat-y;
		background-size: 100%;
	}
	#page-wrestling-rule #main .sec-judgment{
		padding: 79px 0 0;
	}
	#page-wrestling-rule #main .sec-judgment .sec-judgment-in dt{
		margin: 0 0 12px;
		font-size: 15px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-judgment .sec-judgment-in dd{
		font-size: 14px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-judgment .sec-judgment-in .coach-judgment01{
		width: 100%;
		margin: 12px auto 0;
	}
	#page-wrestling-rule #main .sec-judgment .sec-judgment-in .coach-judgment01 p{
		top: 0;
		right: 0;
		width: 100%;
		font-size: 14px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment{
		margin: 7px 0 0;
		padding: 25px 5.3vw 27px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .tit-point-judgment{
		margin: 0 0 14px;
		font-size: 16px;
		font-feature-settings: normal;
		letter-spacing: .05em;
		line-height: 1.57;
		text-align: left;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol{
		margin: 0 0 14px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li{
		display: block;
		position: relative;
		margin: 0 0 10px;
		padding: 1px 0 0 25px;
		font-size: 14px;
		line-height: 1.57;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li:nth-child(2){
		margin: 0 0 10px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li .strong{
		font-size: 15px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li .num{
		position: absolute;
		top: 2px;
		left: 0;
		width: 20px;
		height: 20px;
		margin: 0;
		border-radius: 10px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment ol li .notice{
		display: block;
		position: static;
		font-size: 12px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .coach-judgment02{
		max-width: 414px;
		margin: 0 auto;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .coach-judgment02 p{
		top: 0;
		left: 0;
		width: 100%;
		padding: 60px 5.3vw 0;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in{
		margin: 7px 0 0;
		padding: 20px 5.3vw;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .tit-point-judgment-in{
		margin: 0 0 12px;
		font-size: 15px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list{
		display: block;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li{
		width: 100%;
		margin: 0 0 8px;
		padding: 12px 2.5vw;
		border-radius: 4px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li .tit-point-judgment-list{
		margin: 0 0 12px;
		padding: 6px;
		border-radius: 12px;
		font-size: 14px;
		font-feature-settings: normal;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li li::before{
		top: 6px;
		width: 6px;
		height: 6px;
		border-radius: 3px;
	}
	#page-wrestling-rule #main .sec-judgment .sec-point-judgment .sec-point-judgment-in .point-judgment-list > li li .txt-point-judgment-list dl + dl{
		margin: 4px 0 0;
	}
	#page-wrestling-rule #main .sec-judgment .notice-judgment{
		margin: 6px 0 0;
		font-size: 11px;
		letter-spacing: .05em;
	}
	
	#page-wrestling-rule #main .sec-other{
		padding: 60px 0;
	}
	#page-wrestling-rule #main .sec-other-list .coach-other01{
		position: static;
		margin: 16px auto 0;
		padding: 0;
	}
	#page-wrestling-rule #main .sec-other-list .coach-other01 p{
		top: 0;
		left: 0;
		width: 100%;
		padding: 60px 5.3vw 0;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-other-list .coach-other02{
		width: 100%;
		margin: 20px auto 0;
	}
	#page-wrestling-rule #main .sec-other-list .coach-other02 p{
		top: 0;
		left: 0;
		width: 100%;
		letter-spacing: .05em;
	}
	#page-wrestling-rule #main .sec-other-list ul li{
		padding: 16px 0 12px;
	}
	#page-wrestling-rule #main .sec-other-list ul li:last-child{
		border-bottom: none;
	}
	#page-wrestling-rule #main .sec-other-list ul li.singlet{
		display: block;
	}
	#page-wrestling-rule #main .sec-other-list ul li .tit-other-list{
		position: relative;
		margin: 0 0 12px;
		padding: 0 0 0 12px;
		font-size: 14px;
		letter-spacing: .08em;
	}
	#page-wrestling-rule #main .sec-other-list ul li .tit-other-list::before{
		top: 2px;
		width: 6px;
		height: 6px;
		border-radius: 3px;
	}
	#page-wrestling-rule #main .sec-other-list ul li .txt{
		width: 100%;
		margin: 0 0 0 12px;
	}
	#page-wrestling-rule #main .sec-other-list ul li.towel .content,
	#page-wrestling-rule #main .sec-other-list ul li.shoelace .content{
		width: calc(100% - 113px);
	}
	#page-wrestling-rule #main .sec-other-list ul li .img{
		width: 85px;
		margin: 26px 0 0 28px;
	}
	#page-wrestling-rule #main .sec-other-list ul li.singlet .img{
		width: 189px;
		margin: 11px auto 0;
	}
	#page-wrestling-rule #main .sec-other-list ul li.shoelace .img{
		margin: 26px 0 0 28px;
	}
	#page-wrestling-rule #main .sec-history{
		padding: 0 0 80px;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .tit-history-table{
		margin: 24px 0 12px;
		font-size: 14px;
		font-feature-settings: normal;
		letter-spacing: 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in{
		display: block;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in .tit-history-table-in{
		display: flex;
		width: 100%;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in .tit-history-table-in .cell{
		width: 84px;
		min-height: initial;
		padding: 12px 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in .tit-history-table-in .cell + .cell{
		width: calc(100% - 84px);
		padding: 12px 0;
		border-top: none;
		border-left: 1px solid #33267c;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb .tit-history-table-in .cell{
		width: 83px;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb .tit-history-table-in .cell + .cell{
		width: calc(50% - 42px);
		padding: 12px 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb .tit-history-table-in .cell:last-child{
		padding: 12px 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb .tit-history-table-in .cell .small{
		font-size: 11px;
	}
	
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dl{
		display: flex;
		width: 100%;
		border-top: 1px solid #33267c;
		border-left: none;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb dl{
		width: 100%;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dt{
		width: 84px;
		height: auto;
		border-bottom: none;
		border-right: 1px solid #33267c;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd{
		width: calc(100% - 84px);
		height: auto;
		padding: 12px 0;
		font-size: 15px;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb dd{
		width: calc(50% - 42px);
		height: auto;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb dd + dd{
		height: auto;
		border-top: none;
		border-left: 1px solid #33267c;
	
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .img{
		margin: 0 10px 0 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in.jb dd .img{
		margin: 0 8px 0 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .history-table-child{
		padding: 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd .history-table-child + .history-table-child{
		margin: 12px 0 0;
		padding: 12px 0 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .sec-history-table-in dd.row2 .history-table-child{
		height: auto;
	}
	#page-wrestling-rule #main .sec-history .coach{
		width: auto;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .coach-history01{
		max-width: 393px;
		margin: 20px auto 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-table .coach-history01 p{
		top: 0;
		left: 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-list .tit-rule{
		margin: 0 0 20px;
		line-height: 1.42;
	}
	#page-wrestling-rule #main .sec-history .sec-history-list dl dt{
		width: 66px;
	}
	#page-wrestling-rule #main .sec-history .sec-history-list dl dd{
		width: calc(100% - 78px);
	}
	#page-wrestling-rule #main .sec-history .sec-history-list .txt{
		font-size: 10px;
		font-feature-settings: normal;
		line-height: 1.42;
	}
	#page-wrestling-rule #main .sec-history .sec-history-list .coach-history02{
		margin: 16px auto 0;
	}
	#page-wrestling-rule #main .sec-history .sec-history-list .coach-history02 p{
		top: 0;
		left: 0;
		width: auto;
	}
}


/*
 *	Common
------------------------------------------*/
.clearfix::after {
	content: '';
	clear: both;
	display: block;
}
.is-disp-pc {
	display: block;
}
.is-disp-sp {
	display: none;
}

.btn-flex {
	display: flex;
	align-items: center;
	justify-content: center;
}

.color-orange {
	color: #eb821a;
}
.color-purple {
	color: #31266c;
}
.color-red{
	color: #ee2d2d;
}
.color-green{
	color: #45912d;
}

.ff-notosans {
	font-family: 'Noto Sans JP', sans-serif;
}
.ff-robot {
	font-family: 'Roboto', sans-serif;
}
.ff-abel {
	font-family: 'Abel', sans-serif;
}
.ffs-palt {
	font-feature-settings : "palt";
}

.fw-b{
	font-weight: bold;
}

.ta-c {
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.is-disp-pc {
		display: none;
	}
	.is-disp-sp {
		display: block;
	}
}

/*------------------------------------------
 *	Ico
------------------------------------------*/
.ico {
	display: inline-block;
}
.ico-arrow {
	width: 7px;
	height: 12px;
	background: url(/group/sbs/wrestling/img/common/ico_arrow.svg) center center no-repeat;
	background-size: 7px 12px;
}
.ico-arrow-black {
	width: 7px;
	height: 12px;
	background: url(/group/sbs/wrestling/img/common/ico_arrow_black.svg) center center no-repeat;
	background-size: 7px 12px;
}
.ico-arrow2 {
	width: 62px;
	height: 15px;
	background: url(/group/sbs/wrestling/img/common/ico_arrow2.svg) center center no-repeat;
	background-size: 62px 15px;
}
.ico-arrow-orange {
	width: 12px;
	height: 8px;
	background: url(/group/sbs/wrestling/img/common/ico_arrow_orange.svg) center center no-repeat;
	background-size: 12px 8px;
}
.ico-open {
	width: 13px;
	height: 13px;
	background: url(/group/sbs/wrestling/img/common/ico_open.svg) center center no-repeat;
	background-size: 13px 13px;
}
.ico-open-purple {
	width: 13px;
	height: 13px;
	background: url(/group/sbs/wrestling/img/common/ico_open_purple.svg) center center no-repeat;
	background-size: 13px 13px;
}
.ico-breadcrumbs {
	width: 4px;
	height: 7px;
	background: url(/group/sbs/wrestling/img/common/ico_breadcrumbs.svg) center center no-repeat;
	background-size: 4px 7px;
}
.ico-backtotop {
	width: 16px;
	height: 10px;
	background: url(/group/sbs/wrestling/img/common/ico_backtotop.svg) center center no-repeat;
	background-size: 16px 10px;
}






