@charset "utf-8";

/*************共通項目など*************/
.fontshare {
	font-family: 'Share', cursive;
}
/* Windows 用 Medium 指定の游ゴシック */
@font-face {
	font-family: "Yu Gothic M";
	src: local("Yu Gothic Medium");
}
/* font-weight: bold の時は通常どおり Bold 書体を使わせる */
@font-face {
	font-family: "Yu Gothic M";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}
body {
	/* ゴシック体指定 */
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #000;
}
@media all and (-ms-high-contrast:none) {
	body {
		font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	}
}
.wrapper {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.wrapper {
		width: 90%;
	}
}
a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
	text-decoration: none;
    word-break: break-all;
}
a:hover {
	opacity: .7;
}
p {
	text-align: justify;
	text-justify: inter-ideograph;
    word-break: break-all;
}

.pconly {
	display: inline;
}
.sponly {
	display: none;
}
@media screen and (max-width: 768px) {
	.sponly {
		display: block;
	}
	.pconly {
		display: none;
	}
}


/*************グロナビ**************/
header {
	display: flex;
	position: fixed;
	background-color: #fff;
	z-index: 1000;
	width: 100%;
	height: 95px;
	padding: 0 30px;
	color: #222222;
	border-top: 1px solid #d6000f;
}
h1 {
	display: flex;
	align-items: center;
	margin-right: auto;
}
nav ul {
	display: flex;
	align-items: center;
	flex-flow: row;
	justify-content: flex-end;
	margin-right: 45px;
	list-style-type: none;
}
nav a {
	position: relative;
	display: block;
	padding: 10px 0;
	margin: 30px 15px;
	font-weight: bold;
	color: #222222;
	text-decoration: none;
}
nav li a:after {
	content: '';
	position: absolute;
	display: block;
	top: 20px;
    left: 45px;
	-webkit-transform: translate(-50%, 0);
		 -moz-transform: translate(-50%, 0);
			-ms-transform: translate(-50%, 0);
			 -o-transform: translate(-50%, 0);
					transform: translate(-50%, 0);
	margin: 0 auto;
	width: 0px;
	height: 2px;
	background-color: #d6000f;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
nav li a:hover:after {
	width: 10px;
}
@media screen and (max-width: 1024px) {
	header {
		height: 55px;
		padding: 0 20px;
	}
	nav ul {
		display: none;
	}
}
nav li .active {
	position: relative;
	pointer-events: none;
}
nav li .active:after {
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
		 -moz-transform: translate(-50%, 0);
			-ms-transform: translate(-50%, 0);
			 -o-transform: translate(-50%, 0);
					transform: translate(-50%, 0);
	margin: 0 auto;
	width: 10px;
	height: 2px;
	background-color: #d6000f;
}

/* ▽▽ハンバーガーメニュー▽▽
------------------------------------------------------- */
.hm_menu_check {/* チェックボックスを隠す */
	display: none;
}
.hm_wrap {
	display: none;
}
@media screen and (max-width: 1024px) {
	.hm_wrap {
		display: inline-block;
		position :fixed;
		top: 0;
		right: 0;
		width: 100%;
		padding: 15px;
	}
}


.hm_title {/* ハンバーガーメニューオープン時の見出し */
	position: relative;
	color: #999;
	display: inline-block;
	float: left;
	font-weight: 100;
	line-height: 30px;
	margin: 0 0 0 15px;
	opacity: 0;
	-webkit-transform: translate3d(0, -15px, 0);
	transform: translate3d(0, -15px, 0);
	-webkit-transition: -webkit-transform 0.6s, opacity 0.5s;
	transition: transform 0.6s, opacity 0.5s;
	z-index: 2;
}

/* ▽▽メニューボタン▽▽ */
.hm_btn {
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: block;
	float: right;
	z-index: 2;
}
.hm_btn::before {
	-webkit-box-shadow: #d6000f 0 10px 0;
	box-shadow: #d6000f 0 10px 0;
}
.hm_btn::after {
	bottom: 6px;
}
.hm_btn::before,
.hm_btn::after {
	width: 30px;
	height: 4px;
	background: #d6000f;
	display: block;
	content: '';
	position: absolute;
	-webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
	transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
}
/* △△メニューボタン△△ */

.hm_menu_wrap {
	width :100%;
	height : 100vh;
	background: #d6000f;
	position: absolute;
	right: -100%;
	top: 0;
	-webkit-transition: right 0.4s;
	transition: right 0.4s;
}

/* ▽▽開閉時のアニメーション▽▽ */
.hm_menu_check:checked ~ .hm_title {
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.hm_menu_check:checked ~ .hm_btn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(6px, 8px, 0);
	transform: rotate(45deg) translate3d(6px, 8px, 0);
	background-color: #fff;
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(6px, -8px, 0);
	transform: rotate(-45deg) translate3d(6px, -8px, 0);
	background-color: #fff;
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	right: 0;
}

/* △△開閉時のアニメーション△△ */

/* ▽▽メニュー内のリストスタイル▽▽ */
.hm_list {
	display: block;
	list-style-type: none;
	margin: 50px 0 0 40px;
	padding: 0;
    overflow-y: scroll;
	width: calc(100% - 44px);
    height:calc(100vh - 90px);
	font-size: 16px;
}
nav .hm_list a {
	margin: 10px 15px;
}
.hm_list li a {
	color: #fff;
	display: block;
	overflow: hidden;
	padding: 8px 22px;
	position: relative;
	text-decoration: none;
	z-index: 1;
}
.hm_list li:last-child{
    padding-bottom:40px;
}
/* .hm_list li a:hover{
	background: #d6000f;
} */
/* .hm_list li a::before {
	background: #d6000f;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 100%;
	left: 0;
	-webkit-transition: bottom 0.4s;
	transition: bottom 0.4s;
	z-index: -1;
} */

/* .hm_list li a:hover::before {
	bottom: 0;
} */
/* .hm_list li a:hover::after {
	opacity: 0.5;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
} */
.hm_list li a.active {
	opacity: .8;
}


/*************ヘッダーfixed分*************/
.main_cont {
	padding-top: 95px;
}
@media screen and (max-width: 1024px) {
	.main_cont {
		padding-top: 55px;
	}
}
/*************フッター*************/
footer {
	margin: 123px auto 0;
	background-color: #d6000f;
	text-align: center;
}
.footer_logo img {
	margin: 64px 0 50px;
}
.footer_logo {
	width: 100%;
	margin-bottom: 36px;
	border-bottom: 1px solid #de333f;
}
footer .copy {
	color: #fff;
	line-height: 1.7;
	padding-bottom: 36px;
}
footer .copy dt {
	font-size: 11px
}
footer .copy dd {
	font-size: 13px
}
.company_list {
	background-color: #ededed;
}
.company_list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 40px 0 20px;
}
.company_list li {
	width: 15.3%;
	padding-bottom: 20px;
}
.company_list li img {
	width: 100%;
}
.company_list + footer {
	margin: 0 auto 0;
}
@media screen and (max-width: 1024px) {
	.copy {
		width: 96%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px) {
	footer {
		margin: 60px auto 0;
	}
	.company_list li {
		width: 30%;
	}
}
@media screen and (max-width: 480px) {
	.company_list li {
		width: 46%;
	}
}





/*************タイトル*************/
.ttl_img {
	width: 100%;
	height: 460px;
}
.ttl_area .news_detail {
	background: url('../img/ttl_img_news_detail@2x.png') center;
	background-size: cover;
}
.ttl_area .event_detail {
	background: url('../img/ttl_img_event_detail@2x.png') center;
	background-size: cover;
}
.ttl_area .contact {
	background: url('../img/ttl_img_contact@2x.png') center;
	background-size: cover;
}
.ttl_area .about {
	background: url('../img/ttl_img_about@2x.png') center;
	background-size: cover;
}
.ttl_area .license {
	background: url('../img/ttl_img_license@2x.png') center;
	background-size: cover;
}
.ttl_area .sponsors {
	background: url('../img/ttl_img_sponsors.png') center;
	background-size: cover;
}
.ttl_area .union {
    background: url('../img/ttl_img_union-2023@2x.jpg') center;
	background-size: cover;
}
.ttl_area .discussion {
	background: url('../img/ttl_img_union@2x.png') center;
	background-size: cover;
}
.ttl_area .general {
	background: url('../img/ttl_img_titles.png?2022') center;
	background-size: cover;
}

#discussion .ttl_area .eschool {
	background: url('../img/bg_ieeducation.png') center;
	background-size: cover;
}

.ttl_area .results {
	background: url('../img/ttl_img_results@2x.png?230329') center;
	background-size: cover;
}
.ttl_area .terms {
	background: url('../img/ttl_img_terms@2x.png?230329') center;
	background-size: cover;
}

@media screen and (max-width: 768px) {
	.ttl_area .union {
		background: url('../img/sp_union_summary-2023.jpg') center;
		background-size: cover;
	}
}
.ttl_area .player {
	background: url('../img/ttl_img_player@2x.png') center;
	background-size: cover;
}
.ttl_txt_area {
	display: flex;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	color: #fff;
	text-align: left;
}
.ttl_txt {
	display: block;
	margin-top: -180px;
	margin-bottom: 110px;
	padding: 70px 90px;
	background-color: #d6000f;
	-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d6000f+0,b7000d+100 */
	background: rgb(214,0,15); /* Old browsers */
	background: -moz-linear-gradient(-45deg, rgba(214,0,15,1) 0%, rgba(183,0,13,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(214,0,15,1) 0%,rgba(183,0,13,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(214,0,15,1) 0%,rgba(183,0,13,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6000f', endColorstr='#b7000d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.ttl_txt h2 {
	font-size: 76px;
	padding-bottom: 12px;
}
.ttl_txt p {
	font-size: 18px;
}
@media screen and (max-width: 1300px) {
	.ttl_txt {
		margin-left: 20px;
	}
}
@media screen and (max-width: 768px) {
	.ttl_img {
		width: 100%;
		height: 50vw;
	}
	.ttl_txt {
		width: 100%;
		margin: 0;
		margin-bottom: 10vw;
		padding: 4vw 4vw;
		background-color: #d6000f;
		-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
		-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
		box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
		}
	.ttl_txt h2 {
		font-size: 48px;
	}
	.ttl_txt p {
		font-size: 14px;
	}
}

#acMenu {
	border: #d6000f 1px solid;
	margin-bottom: 14px;
}
#acMenu dt {
	display:block;
	cursor:pointer;
	}
#acMenu dd{
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
	margin: 0 68px;
	display:none;
	padding-top: 20px;
	padding-bottom: 40px;
	}
#acMenu .question_cont {
	display: flex;
	align-items: center;
	position: relative;
	padding: 18px 20px;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.6;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.question_cont:after{
	content: '';
	width: 14px;
	height: 14px;
	border: 0px;
	border-top: solid 1px #d6000f;
	border-right: solid 1px #d6000f;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top: calc(50% - 7px);
	right: 40px;
	margin-top: -4px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}

.q_icon {
	display: inline-block;
	padding-right: 28px;
	font-size: 30px;
	font-weight: bold;
	color: #d6000f;
	font-family: 'Share', cursive;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
#acMenu:hover .question_cont {
	color: #fff;
	background-color: #d6000f;
	opacity: 1;
}
#acMenu:hover .question_cont:after{
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
}
#acMenu:hover .q_icon {
	color: #fff;
}
.q_txt {
	display: inline-block;
	margin-right: 40px;
}
#acMenu:hover .rotate {
	color: #d6000f;
	opacity: 1;
	background-color: #fff;
}
#acMenu:hover .rotate .q_icon {
	color: #d6000f;
	opacity: 1;
}
.rotate {
	background-color: #fff;
	color: #d6000f;
}
.rotate:after {
	content: '';
	width: 14px;
	height: 14px;
	border: 0px;
	border-top: solid 1px #d6000f;
	border-right: solid 1px #d6000f;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: calc(50% - 7px);
	right: 40px;
	margin-top: -4px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
#acMenu:hover .rotate:after {
	border-top: solid 1px #d6000f;
	border-right: solid 1px #d6000f;
}

@media screen and (max-width: 768px) {
	.question_cont:after {
		right: 20px;
	}
	.rotate:after {
		right: 20px;
	}
	.q_icon {
		padding-right: 20px;
	}
	.q_txt {
		margin-right: 30px;
	}
	#acMenu dd {
		margin: 0 20px;
	}
}


/*************ニュース、イベント一覧*************/
.news_list_ttl h3 {
	padding-bottom: 52px;
	border-bottom: 1px solid #dadada;
	font-size: 54px;
	color: #d6000f;
	letter-spacing: -2px;
}
.news_list {
	display: flex;
	flex-flow: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 50px 0 0;
	border-bottom: 1px solid #dadada;
}
.news_list:last-child {
	margin-bottom: 100px;
}
.list_date {
	color: #aaaaaa;
}
.list_date {
	width: 20%;
}
.list_date dl {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
}
.list_date dt {
	font-size: 50px;
	padding-right: 15px;
}
.list_date dd {
	font-size: 16px;
}
.list_article-cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 80%;
	height: 100%;
}
.list_article {
	width: 100%;
	margin-bottom: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid #dadada;
}
.list_article:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}
.list_article a {
	color: #000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
	text-decoration: none;
}
.list_article a:hover {
	color: #d6000f;
}
.list_article a {
	display: flex;
	position: relative;
	align-items: flex-start;
	margin-left: 30px;
	color: #000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.list_article a:before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
		 -moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			 -o-transform: translate(0, -50%);
					transform: translate(0, -50%);
	right: 0;
	width: 20px;
	height: 1px;
	background: #d6000f;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.list_article a:after {
	content: '';
	position: absolute;
	top: calc(50% - 3px);
/*	-webkit-transform: translate(0, -6px);
		 -moz-transform: translate(0, -20px);
			-ms-transform: translate(0, -20px);
			 -o-transform: translate(0, -20px);
					transform: translate(0, -20px);*/
	right: 0;
	width: 6px;
	height: 6px;
	border-top: 1px solid #d6000f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.list_article a:hover:before {
	width: 30px;
}
.list_article object a{
	margin-left: 0;
	text-decoration: underline;
}
.list_article object a:before{
	content: none;
}
.list_article object a:after{
	content: none;
}
.list_article dl {
	margin-right: 5%;
	overflow: hidden;
}
.list_article dt {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 16px;
	line-height: 1.7;
}
.list_article dt span{
	text-decoration: underline;
}
.list_article dd {
	line-height: 1.7;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.list_img {
	display: flex;
	align-items: center;
	flex-flow: row;
	justify-content: flex-start;
}
.list_img img {
	width: 200px;
	padding-right: 30px;
}
.list_tag {
	padding: 4px 6px;
	margin-right: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #fff;
	background-color: #d6000f;
	letter-spacing: 1px;
}
.list_tag_img_event:before {
	position: absolute;
	display: block;
	content: "EVENT";
	left: 0;
	top: 0;
	padding: 4px 6px;
	font-size: 13px;
	color: #fff;
	background-color: #d6000f;
	letter-spacing: 1px;
	font-family: 'Share', cursive;
}
.list_tag_img_report:before {
	position: absolute;
	display: block;
	content: "REPORT";
	left: 0;
	top: 0;
	padding: 4px 6px;
	font-size: 13px;
	color: #fff;
	background-color: #d6000f;
	letter-spacing: 1px;
	font-family: 'Share', cursive;
}

@media screen and (max-width: 768px) {
	.news_list_ttl h3 {
		padding-bottom: 20px;
		font-size: 48px;
	}
	.news_list {
		padding: 25px 0 0;
	}
	.news_list:last-child {
		margin-bottom: 40px;
	}
	.list_date {
		width: 100%;
	}
	.list_date dl {
		display: flex;
		align-items: baseline;
		justify-content: flex-start;
		padding-bottom: 20px;
	}
	.list_date dt {
		font-size: 36px;
		padding-right: 15px;
	}
	.list_date dd {
		font-size: 16px;
	}
	.list_article-cont {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
	}
	.list_article {
		width: 100%;
		margin-bottom: 40px;
		padding-bottom: 50px;
		border-bottom: 1px solid #dadada;
	}
	.list_article:last-child {
		border-bottom: none;
		margin-bottom: 0px;
	}
	.list_article a {
		color: #000;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all	0.3s ease;
		text-decoration: none;
	}
	.list_article a:hover {
		color: #d6000f;
	}
	.list_article a {
		margin-left: 0;
		color: #000;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all	0.3s ease;
	}
	.list_article a:hover:before {
		width: 30px;
	}
	.list_article dl {
		width: 100%;
		margin-right: 35px;
	}
	.list_img {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
	}
	.list_img img {
		padding-right: 0;
		margin-bottom: 20px;
	}
}

/*************ニュース、イベント詳細*************/
.news_detail_ttl {
	position: relative;
	padding-bottom: 50px;
	border-bottom: 1px solid #dadada;
}
.news_detail_ttl dt {
	padding-bottom: 20px;
	font-size: 16px;
	color: #aaaaaa;
}
.news_detail_ttl .new {
	padding-right: 10px;
	color: #d6000f;
}
.news_detail_ttl .tag {
	position: absolute;
	right: 0;
	top: 0;
	padding: 4px 6px;
	font-size: 13px;
	color: #fff;
	background-color: #d6000f;
	letter-spacing: 1px;
}
.news_detail_ttl dd {
	padding-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
	color: #d6000f;
}
.news_detail_ttl dd a {
	color: #d6000f;
	text-decoration: underline;
}
.share_btn {
	display: flex;
	align-items: center;
	flex-flow: row;
	justify-content: flex-end;
	margin: 12px 0 30px;
}
.share_btn p {
	font-size: 12px;
}
.share_btn ul {
	display: flex;
	align-items: center;
	flex-flow: row;
	justify-content: flex-end;
}
.share_btn ul li {
	margin-left: 15px;
}

.article_cont h3 {
	position: relative;
	font-size: 17px;
	line-height: 1.6;
	font-weight: bold;
	padding-bottom: 26px;
	margin-bottom: 40px;
}
.article_cont h3:after {
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 26px;
	height: 2px;
	background-color: #d6000f;
}
.article_cont h4 {
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
	color: #d6000f;
	text-align: center;
}


.article_cont h5 {
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: bold;
	color: #d6000f;
	text-align: left;
    line-height: 1.4;
}

.article_cont .article_ttl {
	text-align: center;
    padding-bottom: 50px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    color: #d6000f;

}
.article_cont .cont_area + .cont_area {
	margin-top: 80px;
}
.article_cont .cont_area .cont_box + .cont_box {
	margin-top: 60px;
}
.article_cont .cont_area .cont_box .txt_box:nth-child(n+3),
.article_cont .cont_area .cont_box .img_box:nth-child(n+3) {
	margin-top: 40px;
}
.article_cont .cont_area .cont_box .ttl:nth-child(n+3) {
	margin-top: 40px;
}

.article_cont .cont_area .cont_box .ttl {
	color: #d6000f;
	font-size: 16px;
	margin-bottom: 20px;
}

.article_cont .cont_area .cont_box ul {
	line-height: 1.5;
    list-style: disc;
    padding-left: 20px;
}
.article_cont .txt_box b{
	font-weight: bold;
	color: #d6000f;
	margin: 20px 0 10px;
}

.article_cont p {
	line-height: 1.7;
	margin-bottom: 20px;
}
.article_img img,
.article_cont img {
	max-width: 100%;
	width: auto;
	height: auto;
	margin-bottom: 35px;
}

.article_cont .cont_area .cont_box th {
	font-size: 16px;
	color: #fff;
	background-color: #d6000f;
	line-height: 150%;
}

.article_cont .cont_area .cont_box th.fonts14 {
	font-size: 14px;
	line-height: inherit;
}


.article_cont .cont_area .cont_box table tr + tr th {
	border-top: 1px solid rgba(255,255,255,0.5);
}
.comment_area ul li{
	margin-bottom: 10px;
	line-height: 1.4;
}
.comment_area ul li a{
	color: #000;
    border-bottom: none;
}

.b_border {
	padding-bottom: 80px;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 72px;
}
.member-list-section .b_border {border-bottom:1px solid #666;}
/* .member-list-section .b_border:first-child,.member-list-section .b_border:nth-child(9){
	border-bottom: 1px solid #e5e5e5;
} */

.b_border_union {
	padding-bottom: 60px;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 72px;
}
.ctxt {
	text-align: center;
}
.mt50 {
	margin-top: 50px;
}
.article_cont .red {
	color: #d6000f;
}
.article_cont .bold {
	font-weight: bold;
}
.article_cont a {
	color: #d6000f;
	border-bottom: 1px #d6000f solid;
}

.official-items-wrapper .article_cont a {
    display: inline-block;
    word-break: break-all;
}

@media screen and (max-width: 480px) {
    .official-items-wrapper .article_cont a {
    letter-spacing: -0.05em;
    font-size: 90%;
}
}

.article_cont a.col_b{
	color: #000;
	border-bottom: none;
}
.download_btn {
	width: 200px;
	font-size: 16px;
	display: block;
	padding: 12px 0;
	color: #fff !important;
	background-color: #d6000f;
	text-align: center;
	margin: 0 auto;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.article_cont table {
	width: 450px;
	border: 1px #d6000f solid;
	margin-bottom: 10px;
}
.article_cont table tr {
	border-bottom: 1px #d6000f solid;
}
.article_cont table tr:first-child th {
	font-size: 16px;
	color: #fff;
	background-color: #d6000f;
	line-height: 150%;
}
.article_cont table tr th {
	width: 100px;
	border-right: 1px #d6000f solid;
	padding: 10px;
	box-sizing: border-box;
	vertical-align: middle;
	line-height: 130%;
}
.article_cont table tr td {
	padding: 10px;
	vertical-align: middle;
}
@media screen and (max-width: 480px) {
	.article_cont table {
		width: 100%;
	}
}
@media screen and (max-width: 980px) {
	.b_border {
		padding-bottom: 40px;
		border-bottom: 1px solid #e5e5e5;
		margin-bottom: 40px;
	}
	.b_border_union {
		padding-bottom: 40px;
		border-bottom: 1px solid #e5e5e5;
		margin-bottom: 40px;
	}
}
.article_cont .release{
	text-align: right;
}
.article_cont table.competition_table{
	width: 100%;
	border: none;

}
.article_cont table.competition_table caption{
	margin-bottom: 20px;
	line-height: 1.4;
}
.article_cont table.competition_table tr:first-of-type{
	border: none;
}
.article_cont table.competition_table th,
.article_cont table.competition_table td{
	padding: 10px;
	text-align:  center; 
    border: 1px #d6000f solid;
}
.article_cont table.competition_table .table_title{
	background: #d6000f;
	color: #fff;
	font-size: 14px;
}
.article_cont table.competition_table .table_sub{
	background: #f5f5f5;
}
.article_cont table.competition_table .emphasis{
	background: #fcd8dc;
}
.article_cont table.competition_table .table_nb{
	background: none;
	border: none;
}
.article_cont .tar{
	text-align: right;
}
.article_cont .img_competition{
	width: 41%;
	margin: auto;
}
@media screen and (max-width: 980px) {
	.article_cont .img_competition{
		width: 50%;
	}
}
@media screen and (max-width: 819px) {
	.article_cont .img_competition{
		width: 55%;
	}
}
@media screen and (max-width: 690px) {
	.article_cont .img_competition{
		width: 62%;
	}
}
@media screen and (max-width: 613px) {
	.article_cont .img_competition{
		width: 72%;
	}
}
@media screen and (max-width: 480px) {
	.article_cont .img_competition{
		width: 100%;
	}
}
.article_cont table.titles_table {
    width:100%;
}
.article_cont table.titles_table th,
.article_cont table.titles_table td{
	padding: 10px;
	text-align: center; 
    border: 1px #d6000f solid;
}
.article_cont table.titles_table th:first-child{
    margin-right:1px #fff solid;
    width:30%;
}
.article_cont table.titles_table td{
    text-align: left;
}
/*************prev,back,nextボタン*************/
.page_btn {
	display: flex;
	margin-top: 100px;
	justify-content: space-between;
}
.page_btn a {
	width: 120px;
	font-size: 18px;
	display: block;
	padding: 14px;
	color: #fff;
	background-color: #d6000f;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.page_btn .prev {
	position: relative;
	text-align: right;
}
.page_btn .back {
	text-align: center;
}
.page_btn .next {
	position: relative;
	text-align: left;
}
.page_btn .prev a:before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
		 -moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			 -o-transform: translate(0, -50%);
					transform: translate(0, -50%);
	left: 14px;
	width: 20px;
	height: 1px;
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.page_btn .prev a:after {
	content: '';
	position: absolute;
	top: 45%;
	-webkit-transform: translate(0, -45%);
		 -moz-transform: translate(0, -45%);
			-ms-transform: translate(0, -45%);
			 -o-transform: translate(0, -45%);
					transform: translate(0, -45%);
	left: 14px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;

}
.page_btn .prev a:hover:before {
	top: 50%;
	left: 10px;
}
.page_btn .prev a:hover:after {
	top: 45%;
	left: 10px;
}
.page_btn .next a:before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
		 -moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			 -o-transform: translate(0, -50%);
					transform: translate(0, -50%);
	right: 14px;
	width: 20px;
	height: 1px;
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.page_btn .next a:after {
	content: '';
	position: absolute;
	top: 45%;
	-webkit-transform: translate(0, -45%);
		 -moz-transform: translate(0, -45%);
			-ms-transform: translate(0, -45%);
			 -o-transform: translate(0, -45%);
					transform: translate(0, -45%);
	right: 14px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;

}
.page_btn .next a:hover:before {
	top: 50%;
	right: 10px;
}
.page_btn .next a:hover:after {
	top: 45%;
	right: 10px;
}
@media screen and (max-width: 980px) {
	.page_btn a {
		width: 84px;
		margin: 0 auto;
	}
}


/*************お問い合わせ 独自*************/
.form_btn {
	display: flex;
	align-items: center;
	flex-flow: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form_btn li {
	width: 47%;
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #d6000f;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.form_btn li img {
	display: inline-block;
	align-self: center;
	padding-right: 25px;
}
.form_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row;
	position: relative;
	width: 100%;
	color: #d6000f;
	padding: 24px 0;
}
.form_btn a:hover {
	opacity: 1;
	color: #fff;
	background-color: #d6000f;
}
.form_btn a:before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, 50%);
		 -moz-transform: translate(0, 50%);
			-ms-transform: translate(0, 50%);
			 -o-transform: translate(0, 50%);
					transform: translate(0, 50%);
	right: 30px;
	width: 20px;
	height: 1px;
	background: #d6000f;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.form_btn a:after {
	content: '';
	position: absolute;
	top: 48%;
	-webkit-transform: translate(0, -48%);
		 -moz-transform: translate(0, -48%);
			-ms-transform: translate(0, -48%);
			 -o-transform: translate(0, -48%);
					transform: translate(0, -48%);
	right: 30px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #d6000f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.form_btn a:hover:before {
	background: #fff;
	right: 26px;
}
.form_btn a:hover:after {
	border-top: 1px solid #fff;
	right: 26px;
}
.form_btn_subtxt {
	width: 47%;
	text-align: center;
}
.form_btn_subtxt_3 {
	width: 31%;
}
.form_btn_subtxt p {
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #d6000f;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.form_btn_subtxt .subtxt {
	display: inline-block;
	padding-bottom: 16px;
	font-size: 16px;
}

.jc_center {
	justify-content: center;
}
.form_icon {
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 21px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
	padding-right: 25px;
}
.form_icon_personal {
	background-image: url('/contents/img/personal_icon@3x.png');
}
.form_btn a:hover .form_icon_personal {
	background-image: url('/contents/img/personal_icon_hover@3x.png');
}
.form_icon_company {
	background-image: url('/contents/img/company_icon@3x.png');
}
.form_btn a:hover .form_icon_company {
	background-image: url('/contents/img/company_icon_hover@3x.png');
}
.form_icon_pdf {
	background-image: url('/contents/img/pdf_icon@3x.png');
}
.form_btn a:hover .form_icon_pdf {
	background-image: url('/contents/img/pdf_icon_hover@3x.png');
}
.form_icon_license {
	background-image: url('/contents/img/license_icon@3x.png');
}
.form_btn a:hover .form_icon_license {
	background-image: url('/contents/img/license_icon_hover@3x.png');
}
/* モーダル */
.remodal {
	height: 60vh;
	text-align: center;
	font-size: 0;
}
.remodal h2 {
	background-color: #fff;
	color: #d7000f;
	padding: 20px 0;
	line-height: 150%;
	font-size: 20px;
	font-weight: bold;
}
.remodal_contents {
	width: 45%;
	color: #fff;
	display: inline-block;
	vertical-align: top;
	margin: 60px 0;
}
.remodal_contents h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 30px;
}
.remodal_contents h3:before {
	content: "";
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.remodal_contents.tel h3:before {
	background: url(../img/mailform_icon_tel.png) no-repeat;
	background-size: contain;
}
.remodal_contents.mail h3:before {
	background: url(../img/mailform_icon_mail.png) no-repeat;
	background-size: contain;
}
.remodal_contents.tel a {
	display: none;
}
.remodal_contents p {
	font-size: 14px;
	text-align: center;
}
.remodal_contents a {
	font-size: 14px;
	color: #fff;
	text-decoration: underline !important;
}
.remodal_contents span {
	font-size: 10px;
	margin-top: 15px;
	display: inline-block;
}
.close_btn {
	position: absolute;
	top: -35px;
	right: 5px;
}
.close_btn_wrapper {
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 2;
}
.close_btn_wrapper span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
}
.close_btn_wrapper span:nth-of-type(1) {
	-webkit-transform: translateY(14px) rotate(-45deg);
	transform: translateY(14px) rotate(-45deg);
	top: 0;
}
.close_btn_wrapper span:nth-of-type(2) {
	-webkit-transform: translateY(-14px) rotate(45deg);
	transform: translateY(-14px) rotate(45deg);
	bottom: 0;
}
@media screen and (max-width: 980px) {
	.form_btn li {
		width: 100%;
		margin-bottom: 20px;
	}
	.form_btn_subtxt {
		width: 100%;
	}
}
@media screen and (max-width: 769px) {
	.remodal {
		height: auto;
	}
	.remodal_contents {
		width: 100%;
		display: block;
	}
}
@media screen and (max-width: 480px) {
	.form_btn a:before {
		display: none;
	}
	.form_btn a:after {
		display: none;
	}
	.remodal_contents.tel p {
		display: none;
	}
	.remodal_contents.tel a {
		display: inline-block;
	}
}
/*************ライセンス、連合アンカー箇所*************/
.anchor_cont {
	margin-bottom: 80px;
	border-bottom: 1px solid #dadada;
}
.anchor_cont ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row;
	margin-bottom: 30px;
}
#terms .anchor_cont ul{
	justify-content: center;
}
.anchor_cont ul li {
	width: 32%;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}
.anchor_cont_union ul li {
	width: 19%;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}
.anchor_cont a {
	width: 100%;
	position: relative;
	border-top: 2px solid #dadada;
	padding: 28px 10px 14px;
	display: block;
	line-height: 1.6;
	color: #000;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.anchor_cont a:hover {
	opacity: 1;
	border-top: 2px solid #d6000f;
	color: #d6000f;
}
.anchor_cont a:after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #d6000f;
	border-right: solid 2px #d6000f;
	position: absolute;
	left: calc(50% - 3px);
	-webkit-transform: translate(-6px, 0);
		 -moz-transform: translate(-6px, 0);
			-ms-transform: translate(-6px, 0);
			 -o-transform: translate(-6px, 0);
					transform: translate(-6px, 0);
	bottom: 0;
	margin: 0 auto;
	margin-top: -4px;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all	0.3s ease;
}
.anchor_cont a:hover:after {
	bottom: -4px;
}
#union_about,
#union_istablish,
#union_chairman,
#union_list,
#union_list2,
#about_license,
#license,
#license_ttl, 
#comment1,
#comment2,
#comment3,
#certified,
#recommended{
	margin-top: -100px;
	padding-top: 100px;
}

@media screen and (max-width: 768px) {
	.anchor_cont {
		margin-bottom: 40px;
		border-bottom: 1px solid #dadada;
	}
	.anchor_cont ul li {
		font-size: 15px;
	}
	.anchor_cont a {
		padding: 14px 0 14px;
	}
}
@media screen and (max-width: 1024px) {
	#union_about,
	#union_istablish,
	#union_chairman,
	#union_list,
	#union_list2,
	#license,
	#license_ttl,
    #certified,
    #recommended{
		margin-top: -55px;
		padding-top: 55px;
	}
}
/*************ライセンス、連合見出し箇所*************/
.about_ttl_cont {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
}
.about_ttl {
	padding-right: 100px;
}
.about_ttl h3 {
	padding-bottom: 8px;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
	color: #d6000f;
}
.about_ttl p {
	padding-bottom: 40px;
	font-size: 16px;
	color: #aaaaaa;
}
.about_ttl_union {
	width: 20%;
	padding-right: 0px;
}
.about_txt_union {
	width: 80%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.about_txt_union table {
	width: 100%;
}
.about_txt_union tr {
	width: 100%;
	text-align: left;
}
.about_txt_union th {
	width: 19%;
	padding: 2%;
	font-weight: bold;
	color: #fff;
	background-color: #d6000f;
	border: 1px solid #e5e5e5;
	line-height: 130%;
    word-break: break-all;
    vertical-align: middle;
    text-align: center;
}
.about_txt_union td {
	width: 81%;
	padding: 4%;
	font-size: 15px;
	line-height: 1.6;
	border: 1px solid #e5e5e5;
}

.about_txt_union td a{
	color:#d6000f;
}

.about_txt_union td a:hover{
	border-bottom:solid 1px #d6000f;
}

.belong {
	font-size: 13px;
}
.about_txt h3 {
	position: relative;
	font-size: 17px;
	line-height: 1.6;
	font-weight: bold;
	padding-bottom: 26px;
	margin-bottom: 40px;
}
.about_txt h3:after {
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 26px;
	height: 2px;
	background-color: #d6000f;
}
.about_txt p {
	line-height: 2;
}
.about_txt .graybox {
	margin-top: 40px;
}

.about_detail_cont {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about_detail_halfbox {
	width: 46%;
}
.about_detail_cont h4 {
	padding-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
	color: #d6000f;
}
.chairman_img {
	padding-bottom: 40px;
}
.chairman_img img {
	width: 100%;
}
#union_about .about_txt_union {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
#union_about .about_txt_union dl {
	display: flex;
	align-items: center;
	margin-right: 50px;
	margin-bottom: 20px;
}
#union_about .about_txt_union dt {
	display: flex;
	margin-right: 25px;
	padding: 12px 16px;
	font-weight: bold;
	color: #fff;
	background-color: #d6000f;
}
#union_about .about_txt_union dd {
	line-height: 1.6;
}
@media screen and (max-width: 768px) {
	.about_ttl_union {
		width: 100%;
	}
	.about_txt_union {
		width: 100%;
	}
	#union_about .about_txt_union dl {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		margin-right: 20px;
		margin-bottom: 20px;
	}
	#union_about .about_txt_union dt {
		margin-bottom: 10px;
	}
	.chairman_img {
		padding-bottom: 20px;
	}
}
@media screen and (max-width: 400px) {
	 #union_about .about_txt_union dl {
			margin-right: 0;
	 }
}

.graybox {
	display: flex;
	flex-direction: column;
	padding: 36px 28px;;
	background-color: #f5f5f5;
	line-height: 2;
}
.graybox span.bold {
	font-weight: bold;
}
.graybox ol li ul {
	list-style-type: disc;
	margin-left: 50px;
}
.purpose {
	align-items: center;
}
.about_detail_halfbox h5 {
	padding-bottom: 20px;
	font-weight: bold;
}
.about_detail_halfbox ol,
.about_detail_halfbox p {
	line-height: 2;
	counter-reset: number 0;
}
.number {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
}
.history_chart_l .number {
	display: flex;
	flex-direction: row-reverse;
}
.num_num {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	min-width: 20px;
	height: 20px;
	min-height: 20px;
	background-color: #d6000f;
	border-radius: 100px;
	color: #fff;
	font-family: 'Share', cursive;
	margin-right: 13px;
}
.num_txt {
	display: inline-block;
}

.history_chart_l .years_cont .month {
	color: #d6000f;
	font-weight: bold;
	align-items: center;
	width: 36px;
	min-width: 36px;
}
.history_chart_r .years_cont .month {
	color: #d6000f;
	font-weight: bold;
	width: 36px;
	min-width: 36px;
}
@media screen and (max-width: 768px) {
	.history_chart_l .number {
		display: flex;
		justify-content: flex-start;
		align-items: baseline;
		flex-direction: row;
	}
}






/* ---------------------------------------- 
				プレイヤー

				#player
----------------------------------------  */

.about_detail_category h4 {
	padding-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
	color: #d6000f;
	text-align: center;
}
.about_detail_category .about_detail_cont {
	display: flex;
	justify-content: space-between;
}
.about_detail_3column {
	width: 28%;
	padding: 0 2%;
	line-height: 1.6;
	border-right: 1px solid #dadada;
}
.about_detail_3column:first-child {
	padding: 0 2% 0 0;
}
.about_detail_3column:last-child {
	padding: 0 0 0 2%;
	border-right: none;
}
.about_detail_3column:nth-child(2) {
	width: 34%;
}
.about_detail_3column p {
	text-align: center;
}
.about_detail_3column dt {
	margin-bottom: 32px;
	padding-bottom: 24px;
	position: relative;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.about_detail_3column dt:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
		 -moz-transform: translate(-50%, 0);
			-ms-transform: translate(-50%, 0);
			 -o-transform: translate(-50%, 0);
					transform: translate(-50%, 0);
	content: '';
	width: 25px;
	height: 2px;
	background-color: #d6000f;
}
@media screen and (max-width: 768px) {
	.about_ttl {
		padding-right: 0;
	}
	.about_ttl h3 {
		padding-bottom: 8px;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.6;
		color: #d6000f;
	}
	.about_detail_3column {
		width: 100%;
		padding: 20px 0 20px;
		line-height: 1.6;
		text-align: center;
		border-right: none;
		border-bottom: 1px solid #dadada;
	}
	.about_detail_3column:first-child {
		padding: 0 0 20px;
	}
	.about_detail_3column:last-child {
		padding: 20px 0 20px;
		border-right: none;
		border-bottom: none;
	}
	.about_detail_3column:nth-child(2) {
		width: 100%;
	}
	.about_detail_3column p {
		text-align: center;
	}
	.about_detail_3column dt {
		margin-bottom: 10px;
		padding-bottom: 14px;
		position: relative;
		font-size: 16px;
		font-weight: bold;
	}
	.about_detail_cont h4 {
		padding-bottom: 20px;
	}
	.about_detail_halfbox {
		width: 100%;
		padding: 0 0 40px;
	}
	.graybox {
		padding: 20px;
	}
}

.capasity .fontshare {
	padding-right: 5px;
	font-size: 36px;
	color: #d6000f;
}
.capasity .capasity_code {
	font-weight: bold;
}
.annotation {
	padding-top:40px;
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
}
.annotation-r {
	padding-top:40px;
	font-size: 12px;
	line-height: 1.6;
	text-align: right;
}
.annotation-r .name {
	font-size: 13px;
}
@media screen and (max-width: 768px) {
	.annotation {
		padding-top:20px;
		font-size: 12px;
		line-height: 1.6;
		text-align: center;
	}
	.annotation-r {
		padding-top:20px;
		font-size: 12px;
		line-height: 1.6;
		text-align: right;
	}
}


.about_detail_duedate h4 {
	padding-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
	color: #d6000f;
	text-align: center;
}
.about_detail_duedate p {
	line-height: 1.6;
	text-align: center;
}


.about_team_intro h4 {
	padding-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
	color: #d6000f;
	text-align: center;
}
.about_team_intro_cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.about_team_intro_cont.pl_pypy{
    display: inherit;
}
.reverse {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.about_team_img {
	width: 46%;
}

.about_team_intro_cont.pl_monst .about_team_img
{
	float:left;
}

.about_team_intro_cont.pl_pypy .about_team_img
{
	float:right;
}

.about_team_detail {
	width: 50%;
}
.about_team_intro_cont.pl_pypy
.about_team_detail{
	width: inherit;
}

@media screen and (max-width: 768px) {
.about_team_intro_cont.pl_pypy
.about_team_detail,
.about_team_intro_cont.pl_monst
.about_team_detail{
    display: inline-block;
}
}

.about_team_detail_center {
	width: 80%;
	margin: 0 auto;
}
.about_team_img img {
	width: 100%;
}
.about_team_detail_ttl {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about_team_detail_ttl h5 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.about_team_img,
	.about_team_detail {
		width: 100%;
	}
	.about_team_detail_center {
		width: 100%;
	}
	.about_team_img img {
		width: 100%;
		margin-bottom: 20px;
	}
	.about_team_intro h4 {
		padding-bottom: 20px;
	}
}

.about_team_detail_ttl p {
	padding-right: 20px;
}
.about_team_detail_txt dl {
	margin-bottom: 20px;
    clear:both;
}
.about_team_detail_txt dt {
	display: inline-block;
	padding: 5px;
	font-size: 18px;
	color: #fff;
	background-color: #d6000f;
}
.about_team_detail_txt ul {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: flex-start;
}
@media screen and (max-width: 768px) {
	.about_team_detail_txt ul {
		flex-direction: row;
	}
}

/* ウイイレ */
.pl_eft .about_team_detail_txt ul {
	height: 300px;
}

/* GUILTY GEAR Xrd REV 2 */
.pl_ggxr .about_team_detail_txt ul {
	height: 205px;
}

/* グランブルーファンタジー ヴァーサス */
.pl_gbvs .about_team_detail_txt ul {
	height: 400px;
}

/* グランブルーファンタジー ヴァーサス -ライジング- */
.pl_gbvs_r .about_team_detail_txt ul {
	height: 168px;
}

/* コールオブデューティ */
.pl_codbo .about_team_detail_txt ul {
	height: 205px;
}
.pl_codbo .about_team_detail_txt ul li {
	width: 45%;
	padding-right: 5%;
}

/* ストリートファイター */
.pl_sf .about_team_detail_txt ul {
	height: 960px;
}

/* DNF Duel */
.pl_dnf .about_team_detail_txt ul {
	height: 168px;
}

/* 鉄拳7 */
.pl_tkn .about_team_detail_txt ul {
	height: 300px;
}

/* TEPPEN */
.pl_teppen .about_team_detail_txt ul {
	height: 400px;
}

/* Virtua Fighter esports */
.pl_vf .about_team_detail_txt ul {
	height: 205px;
}

/* パズドラ */
.pl_puzdora .about_team_detail_txt ul {
	height: 300px;
}

/* BLAZBLUE　CENTRALFICTION */
.pl_bbcf .about_team_detail_txt ul {
	height: 205px;
}

/* BLAZBLUE CROSS TAG BATTLE */
.pl_bbctb .about_team_detail_txt ul {
	height: 205px;
}

/* ぷよぷよ */
.pl_pypy .about_team_detail_txt ul {
	height: 460px;
}

/* モンスト */
.pl_monst .about_team_detail_txt ul {
	height: 540px;
}

/* レインボーシックスシージ */
.pl_rss .about_team_detail_txt ul {
	height: 205px;
}

/* DOA6 */
.pl_doa .about_team_detail_txt ul {
	height: 205px;
}

/* リアルタイムバトル将棋 */
.pl_rtbs .about_team_detail_txt ul {
	height: 205px;
}

.pl_ggxr .about_team_detail_txt ul li,
.pl_vf .about_team_detail_txt ul li,
.pl_bbcf .about_team_detail_txt ul li,
.pl_bbctb .about_team_detail_txt ul li,
.pl_doa .about_team_detail_txt ul li,
.pl_rtbs .about_team_detail_txt ul li,
.pl_dnf .about_team_detail_txt ul li,
.pl_gbvs_r .about_team_detail_txt ul li,
.pl_rss .about_team_detail_txt ul li{
	width: 45%;
	padding-right: 5%;
}
.pl_sf .about_team_detail_txt ul li,
.pl_pypy .about_team_detail_txt ul li,
.pl_monst .about_team_detail_txt ul li{
	width: 24%;
	padding-right: 1%;
}
.pl_tkn .about_team_detail_txt ul li,
.pl_gbvs .about_team_detail_txt ul li,
.pl_eft .about_team_detail_txt ul li,
.pl_teppen .about_team_detail_txt ul li,
.pl_puzdora .about_team_detail_txt ul li {
	width: 31%;
	padding-right: 3%;
}

@media screen and (max-width: 768px) {
.pl_sf .about_team_detail_txt ul li,
.pl_eft .about_team_detail_txt ul li,
.pl_tkn .about_team_detail_txt ul li,
.pl_gbvs .about_team_detail_txt ul li,
.pl_teppen .about_team_detail_txt ul li,
.pl_pypy .about_team_detail_txt ul li,
.pl_puzdora .about_team_detail_txt ul li,
.pl_monst .about_team_detail_txt ul li {
	width: 45%;
	padding-right: 5%;
}
}

@media screen and (max-width: 768px) {
	.about_team_detail_txt ul{
		height: auto !important;
		max-height: auto;
	}

	.about_team_detail_txt ul li {
		width: 45% !important;
		padding-right: 5%;
	}
}
.about_team_detail_txt ul li {
	margin-bottom: 20px;
}





/* ---------------------------------------- 
				スポンサー

				#sponsors
----------------------------------------  */

.sponsors_cont {
	display: flex;
	flex-wrap: wrap;
}
.sponsors_cont .sponsors_logo {
	width: 32%;
	padding: 0 2% 2% 0;
}

.sponsors_cont .sponsors_logo a {
	border: none;
	display: block;
}
.sponsors_cont .sponsors_logo img {
	width: 100%;
	margin-bottom: 0;
}
.sponsors_cont .sponsors_logo p { text-align: center; font-weight: bold;}
.sponsors_cont .sponsors_logo:nth-child(3n) {
	padding: 0 0 2% 0;
}

.wrapper-sponsors{
	margin-top:3rem;
}

.form_btn--sponsors{
	width: 300px;
    margin: 2rem auto 0;
    font-size: 16px;
	line-height:1.2;
    font-weight: bold;
    text-align: center;
    border: 1px solid #d6000f;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


@media screen and (max-width: 768px) {
	.sponsors_cont .sponsors_logo {
		width: 49%;
		padding: 0 2% 2% 0;
	}
	.sponsors_cont .sponsors_logo:nth-child(3n) {
		padding: 0 2% 2% 0;
	}
	.sponsors_cont .sponsors_logo:nth-child(2n) {
		padding: 0 0 2% 0;
	}
	
	.form_btn--sponsors{
		width: 280px;
	}
}

/*  */





.one_box {
		width: 420px;
		margin: 40px auto 0;
		padding: 40px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.license_ttl_cont {
	display: flex;
	flex-wrap: wrap;
}
.license_ttl_cont .game_logo {
	width: 32%;
	padding: 0 2% 2% 0;
}
.license_ttl_cont .game_logo img {
	width: 100%;
}
.license_ttl_cont .game_logo:nth-child(3n) {
	padding: 0 0 2% 0;
}
.license_ttl .annotation {
	padding-top: 20px;
	text-align: left;
}
.license_ttl .annotation_inline {
	display: inline-block;
	padding: 20px 20px 0 0;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.one_box {
			width: 100%;
		padding: 20px;
	}
	.license_ttl_cont .game_logo {
		width: 49%;
		padding: 0 2% 2% 0;
	}
	.license_ttl_cont .game_logo:nth-child(3n) {
		padding: 0 2% 2% 0;
	}
	.license_ttl_cont .game_logo:nth-child(2n) {
		padding: 0 0 2% 0;
	}
}



.history_chart {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	width: 100%;
	background: linear-gradient(to top, #d6000f, #d6000f) repeat-y center/4px;
	background: -webkit-gradient(to top, #d6000f, #d6000f) repeat-y center/4px;
	background: -webkit-linear-gradient(to top, #d6000f, #d6000f) repeat-y center/4px;
}
.history_chart_l {
	display: flex;
	flex-direction: column;
	width: 50%;
	text-align: right;
	margin: 15px 0;
}
.history_chart_r {
	display: flex;
	flex-direction: column;
	width: 50%;
	text-align: left;
	margin: 15px 0;
}


.years_cont .years_s {
	font-size: 29px;
	color: #d6000f;
	position: absolute;
	top: -10px;
	right: 17px;
}
.years_cont .years_l {
	font-size: 60px;
	line-height:60px;
	color: #d6000f;
	position: absolute;
	top: -30px;
	right: 17px;
}


.history_chart_l .years_cont dl {
	position: relative;
	margin-right: 60px;
}

.history_chart_l .years_cont dd {
	display: inline-block;
	padding: 32px 17px 20px;
	background-color: #f5f5f5;
	line-height: 1.7;
}
.history_chart_l .years_cont dl:before {
	content: "";
	border-top: 2px solid #d6000f;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
		 -moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			 -o-transform: translate(0, -50%);
					transform: translate(0, -50%);
	right: -60px;
	width: 40px;
}
.history_chart_l .years_cont dl:after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
		 -moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			 -o-transform: translate(0, -50%);
					transform: translate(0, -50%);
	background-color: #d6000f;
	right: -64px;
	width: 10px;
	height: 10px;
	border-radius: 100px;
}


.history_chart_r .years_cont dl {
	position: relative;
	margin-left: 60px;
}
.history_chart_r .years_cont dt {
	position: absolute;
	top: -10px;
	left: 17px;
}
.history_chart_r .years_cont .years_l {
	position: absolute;
	top: -30px;
	left: 17px;
}
.history_chart_r .years_cont dd {
	display: inline-block;
	padding: 32px 17px 20px;
	background-color: #f5f5f5;
	line-height: 1.7;
	font-size: 13px;
}
.history_chart_r .years_cont dl:before {
	content: "";
	border-top: 2px solid #d6000f;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
		 -moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			 -o-transform: translate(0, -50%);
					transform: translate(0, -50%);
	left: -60px;
	width: 40px;
}
.history_chart_r .years_cont dl:after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
		 -moz-transform: translate(0, -50%);
			-ms-transform: translate(0, -50%);
			 -o-transform: translate(0, -50%);
					transform: translate(0, -50%);
	background-color: #d6000f;
	left: -64px;
	width: 10px;
	height: 10px;
	border-radius: 100px;
}


.y1980 {}
.y1990 {margin-top: 60px;}
.y2000 {margin-top: -60px;}
.y2004 {margin-top: -60px;}
.y2007 {margin-top: -70px;}
.y2011 {margin-top: 30px;}
.y2013 {margin-top: -30px;}
.y2014 {margin-top: 20px;}
.y2015 {margin-top: -40px;}
.y2016 {margin-top: 60px;}
.y2018 {}



/* 20210115追記 */
.history_ttl_cont {
	margin-top:80px;
}

.history_ttl_cont h3{
	position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    padding-bottom: 26px;
    margin-bottom: 40px;
}


.history_ttl_union {
    padding-right: 0px;
}

.history_area_ttl {
    padding-bottom: 8px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    color: #d6000f;
	position:relative;
	margin:100px 0 80px;
}

.history_area_ttl:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background-color: #d6000f;
}

.history_ttl p {
    padding-bottom: 40px;
    font-size: 16px;
    color: #aaaaaa;
}

.history_txt_union {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

.history_txt p {
    line-height: 2;
}

.history_link_list li{
	margin-bottom:20px;
	font-size: 16px;
    font-weight: bold;
}

.all_name{
	font-size: 14px;
    font-weight: normal;
    padding-left: 5px;
}


@media screen and (max-width: 768px) {
	.history_chart {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: space-between;
		position: relative;
		width: 100%;
		background: linear-gradient(to top, #d6000f, #d6000f) repeat-y left/4px;
		background: -webkit-gradient(to top, #d6000f, #d6000f) repeat-y left/4px;
		background: -webkit-linear-gradient(to top, #d6000f, #d6000f) repeat-y left/4px;
	}
	.history_chart_l,
	.history_chart_r {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		text-align: left;
		margin: 15px 0;
	}

	.years_cont .years_s {
		font-size: 29px;
		color: #d6000f;
		position: absolute;
		top: -10px;
		left: 17px;
	}
	.years_cont .years_l {
		color: #d6000f;
		position: absolute;
		top: -30px;
		left: 17px;
	}
	.history_chart_l .years_cont dl {
		position: relative;
		margin-left: 60px;
	}
	.history_chart_l .years_cont dl,
	.history_chart_r .years_cont dl {
		position: relative;
		margin-right: 0;
	}
	.history_chart_l .years_cont dd {
		display: inline-block;
		padding: 32px 17px 20px;
		background-color: #f5f5f5;
		line-height: 1.7;
	}
	.history_chart_l .years_cont dl:before {
		content: "";
		border-top: 2px solid #d6000f;
		position: absolute;
		top: 50%;
		-webkit-transform: translate(0, -50%);
			 -moz-transform: translate(0, -50%);
				-ms-transform: translate(0, -50%);
				 -o-transform: translate(0, -50%);
						transform: translate(0, -50%);
		left: -60px;
		width: 40px;
	}
	.history_chart_l .years_cont dl:after {
		content: "";
		position: absolute;
		top: 50%;
		-webkit-transform: translate(0, -50%);
			 -moz-transform: translate(0, -50%);
				-ms-transform: translate(0, -50%);
				 -o-transform: translate(0, -50%);
						transform: translate(0, -50%);
		background-color: #d6000f;
		left: -64px;
		width: 10px;
		height: 10px;
		border-radius: 100px;
	}
	.history_chart_l .years_cont .month {
		color: #d6000f;
		font-weight: bold;
	}
	.y1980 {}
	.y1990 {margin-top: 0;}
	.y2000 {margin-top: 30px;}
	.y2004 {margin-top: 0;}
	.y2007 {margin-top: 0;}
	.y2011 {margin-top: 30px;}
	.y2013 {margin-top: 0;}
	.y2014 {margin-top: 0;}
	.y2015 {margin-top: 30px;}
	.y2016 {margin-top: 30px;}
	.y2018 {margin-top: 30px;}


.history_area_ttl {
    padding-bottom: 8px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    color: #d6000f;
	position:relative;
	margin:100px 0 80px;
	
	padding-bottom: 8px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #d6000f;
}



}

.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
width: 784px;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


/* 0427追加 */
.license-coming-soon{
	margin: 50px auto 0;
	text-align: center;
}

/* 20210115追加 */
.about_txt_union .about_link{
	margin-top:40px;
}

.about_txt_union .about_link a {
    color: #d6000f;
    border-bottom: 1px #d6000f solid;
	word-break: break-all;
}

.about_txt_union .about_link td{
		width:800px;
	}

@media screen and (max-width: 768px) {
	.license-comming-soon{
		margin: 50px auto 0;
	}
	
/* 20210115追加 */	
	.about_txt_union .about_link th{
		font-size:12px;
	}
}

/* 0509追加 */
.license-ttl{
	margin:40px 0;
	font-size: 20px;
	font-weight: bold;
	color: #d6000f;
	text-align: center;
}
.lisence-pdf-link{
	display: flex;
	align-items: center;
	flex-flow: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.lisence-pdf-link li{
		width: 30%;
		margin-bottom: 40px;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
}

.lisence-pdf-link li a{
		border: 1px solid #d6000f;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: row;
		position: relative;
		width: 100%;
		color: #d6000f;
		padding: 24px 0;
}
.lisence-pdf-link li a:hover{
		opacity: 1;
		color: #fff;
		background-color: #d6000f;
}
.lisence-pdf-link li a:hover .form_icon_pdf {
		background-image: url(/contents/img/pdf_icon_hover@3x.png);
}
.lisence-pdf-link li .lisence-pdf-link-ttl{
	display: inline-block;
	margin: 0 0 7px;
}

@media screen and (max-width: 980px){
	.lisence-pdf-link li{
		width: 100%;
		margin-bottom: 20px;
	}
}

/* 0525追加 */

.f16{
	font-size: 16px;
	border-bottom: solid 1px;
	display: inline-block;
	font-weight: bold;
}

.f12{
	 font-size: 12px;
}

/* form */

label {
	font-weight: bold;
}
.contact form{
	width: 450px;
	margin: 0 auto;
	padding-bottom: 100px;
}
@media screen and (max-width: 768px){
	.contact form{
		width: 90%;
	}
}
.contact form p{
	font-size: 16px;
	line-height: 200%;
	margin-bottom: 30px;
}
.contact form label{
	margin: 0 0 5px;
}
.formtext{
	position: relative;
}
.contact form input{
	width: 100%;
	height: 40px;
	padding: 0 10px;
	border: 2px solid #d6000f;
	font-size: 18px;
}
.contact form textarea{
	width: 100%;
	padding: 5px 10px;
	border: 2px solid #d6000f;
	font-size: 18px;
}
@media screen and (max-width: 768px){
	.contact form input,.contact form textarea{
		width: 90%;
	}
}
@media screen and (max-width: 768px){
	.formtextarea_input{
		width: 90%;
	}
}
.contact form input[type=submit]{
	display: block;
		width: 200px;
		padding: 5px;
		font-size: 20px;
		font-weight: bold;
		margin: 0 auto;
		border: 1px solid #d6000f;
		background-color: #fff;
		color: #d6000f;
		box-shadow: 2px 2px 0 #d6000f;
		cursor: pointer;
		border-radius: 0;
}
@media screen and (max-width: 1024px) {
}
.screen-reader-response{display:none;}
.wpcf7-validation-errors,.wpcf7-not-valid-tip{color:#F00;}

/*********************
 お問い合わせ用追記箇所
**********************/
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.ttl_txt.two_line {
	padding: 46px 90px;
}
@media screen and (max-width: 1300px) {
	.ttl_txt.two_line {
		margin-left: 20px;
	}
}
@media screen and (max-width: 768px) {
	.ttl_txt.two_line {
		width: 100%;
		margin: 0;
		margin-bottom: 10vw;
		padding: 4vw 4vw;
		background-color: #d6000f;
		-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
		-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
		box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.05);
		}
}
.flow_chart_cont {
	display: flex;
	align-items: center;
	margin-bottom: 48px;
}
.flow_chart {
	position: relative;
	display: flex;
	width: 100%;
}
.last_arrow {
	display: block;
	z-index: 2;
	border-style: solid;
	border-width: 32px 0 32px 20px;
	border-color: transparent transparent transparent #f5f5f5;
	margin-left: -1px;
}
.all_comp .last_arrow {
	border-color: transparent transparent transparent #d6000f;
	margin-left: -1px;
}
.flow_chart li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 31.4%;
	height: 64px;
	padding-left: 20px;
	font-size: 17px;
	background-color: #f5f5f5;
	overflow: hidden;
}
.flow_chart li.comp {
	color: #fff;
	background-color: #d6000f;
	border-right: 2px solid #d6000f;
}
.flow_chart li:after {
	content: '';
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 2px;
	border-style: solid;
	border-width: 34px 0 34px 20px;
	border-color: transparent transparent transparent #fff;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.flow_chart li:before {
	content: '';
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 0;
	border-style: solid;
	border-width: 34px 0 34px 20px;
	border-color: transparent transparent transparent #d6000e;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.flow_chart li.imcomp:before {
	border-color: transparent transparent transparent #f5f5f5;
}
.flow_chart li:first-child:after,
.flow_chart li:first-child:before {
	display: none;
}


.lead_txt p {
	line-height: 1.9;
	margin-bottom: 45px;
}
.input_area_cont {
	border-top: 1px solid #e5e5e5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.input_line_cont {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #e5e5e5;
}
.input_line_cont dt {
	position: relative;
	width: 30%;
	padding: 43px 56px;
	font-weight: bold;
	line-height: 1.45;
	background-color: #f5f5f5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.input_line_cont dt.must:before {
	content: '必須';
	font-size: 12px;
	font-weight: normal;
	color: #fff;
	background-color: #d6000f;
	padding: 4px 6px;
	position: absolute;
	top: 39px;
	left: 3px;
}
.input_line_cont dd {
	width: 70%;
	padding: 30px 2%;
	line-height: 1.45;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.input_line_cont .input_txt {
	width: 100%;
}
.input_line_cont .input_txt:last-child {
	line-height: 1.92;
}

.input_line_cont .input_txt textarea,
.input_line_cont .input_txt input,
.select_box01 {
	resize: vertical;
	width: 100%;
	height: 38px;
	min-height: 38px;
	padding: 8px;
	border: 1px solid #b7b7b7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.input_line_cont .input_txt input[name="upload_file"]{
	border: none;
	max-width: 60%;
}
@media screen and (max-width: 768px) {
	.input_line_cont .input_txt input[name="upload_file"]{
		max-width: 100%;
	}
}
.input_line_cont .input_txt textarea {
	height: 200px;
	min-height: 200px;
}
.input_line_cont .input_txt textarea:focus,
.input_line_cont .input_txt input:focus,
.select_box01:focus {
	border: 1px solid #d6000f;
}
.input_line_cont .input_txt input[name="upload_file"]:focus{
	border: none;
}
@media all and (-ms-high-contrast:none) {
	.input_line_cont .input_txt textarea,
	.input_line_cont .input_txt input,
	.select_box01 {
		font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	}
}
.supple {
	margin-top: 14px;
	color: #999999;
}
.select_box_cont {
	position: relative;
}
.select_box_cont:after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #d6000f;
	border-right: solid 2px #d6000f;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top: 8px;
	right: 20px;
	margin-top: -4px;
}
#confirm .must:before{
	display: none;
}
#confirm .supple{
	display: none;
}
#confirm .input_line_cont dd {
	padding: 43px 2%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.gh_btn_area {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 60px;
}
.gh_btn_area.btn_double {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 60px;
}
.gh_btn_area .gh_btn {
	position: relative;
	width: 300px;
	margin-bottom: 30px;
	padding: 25px 0;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #d6000f;
	border: 1px solid #d6000f;
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}
.gh_btn_area .gh_btn.disabled {
	background-color: #f5f5f5;
	color: #cccccc;
	border: 1px solid #cccccc;
	pointer-events: none;
}
.gh_btn_area .gh_btn:hover {
	opacity: 1;
	color: #fff;
	background-color: #d6000f;
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}
.gh_btn_area .gh_btn:before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	right: 30px;
	width: 20px;
	height: 1px;
	background: #d6000f;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.gh_btn_area .gh_btn:after {
	content: '';
	position: absolute;
	top: calc(50% - 3px);
	right: 30px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #d6000f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.gh_btn_area .gh_btn.disabled:before {
	background: #ccc;
}
.gh_btn_area .gh_btn.disabled:after {
	border-top: 1px solid #ccc;
}
.gh_btn_area.btn_double .gh_btn:first-child:before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	left: 30px;
	width: 20px;
	height: 1px;
	background: #d6000f;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.gh_btn_area.btn_double .gh_btn:first-child:after {
	content: '';
	position: absolute;
	top: calc(50% - 3px);
	left: 30px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #d6000f;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.gh_btn_area.btn_double .gh_btn:first-child:hover:before {
	left: 26px;
	background: #fff;
}
.gh_btn_area.btn_double .gh_btn:first-child:hover:after {
	left: 26px;
	border-top: 1px solid #fff;
}

.gh_btn_area .gh_btn:hover:before {
	right: 26px;
	background: #fff;
}
.gh_btn_area .gh_btn:hover:after {
	right: 26px;
	border-top: 1px solid #fff;
}

.gh_btn_area_cont .att {
	text-align: center;
	color: #d6000f;
	line-height: 1.45;
}
.gh_btn_area_cont .att.disabled {
	display: none;
}

@media screen and (max-width: 768px) {
	.input_line_cont dt {
		width: 30%;
		padding-right: 23px;
	}
	.input_line_cont dd {
		width: 70%;
	}
}
@media screen and (max-width: 767px) {
	.gh_btn_area.btn_double {
		flex-direction: column;
		align-items: center;
	}
	.input_line_cont dt {
		width: 100%;
		padding: 16px 23px 16px 52px;
	}
	.input_line_cont dt.must:before {
		top: 13px;
	}
	.input_line_cont dd {
		width: 100%;
		padding: 16px 2%;
	}
	#confirm .input_line_cont dd {
		padding: 16px 2%;
	}
	.flow_chart li {
		font-size: 15px;
	}
	.flow_chart li:nth-child(1) {
		width: 18.4%;
	}
	.flow_chart li:nth-child(2) {
		width: 43.4%;
	}
	.flow_chart li:nth-child(3) {
		width: 32.4%;
	}
}

/* 20180618 お問い合わせ法人 電話番号追加 */
.contact_tel_cont dt {
	font-size: 17px;
	line-height: 1.35;
}
.contact_tel_cont dd {
	font-size: 50px;
	color: #d6000f;
	margin: 20px 0 48px;
}
.contact_tel_cont dd a {
	color: #d6000f;
}
.contact_tel_cont dd a[href^="tel:"] {
	cursor: default;
}
.contact_tel_cont dd a[href^="tel:"]:hover {
	opacity: 1;
}
@media screen and (max-width: 425px) {
	.contact_tel_cont dl {
		text-align: center;
	}
	.contact_tel_cont dt {
		font-size: 14px;
	}
	.contact_tel_cont dd {
		font-size: 42px;
	}
}

/*************お問い合わせ追加など*************/

#mailform .ttl_txt,#page-thanks .ttl_txt{
	margin-bottom:0;
}

#mailform form,#thanks-link{
	padding-top: 110px;
}

@media screen and (max-width: 768px){
	#mailform form,#thanks-link{
		padding-top: 70px;
	}
}

.wpcf7-mail-sent-ok {
display: none !important;
}

.wpcf7 .gh_btn_area .gh_btn {
	padding: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}



.wpcf7 .gh_btn_area .gh_btn input[type="submit"],.wpcf7 .gh_btn_area .gh_btn input[type="button"]{
	width:300px;
	padding:25px 0;
	font-size: 16px;
	font-weight: bold;
	color: #d6000f;
	text-align:center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.wpcf7 .gh_btn_area .gh_btn:hover input[type="submit"],.wpcf7 .gh_btn_area .gh_btn:hover input[type="button"]{
	color: #ffffff;
}

.wpcf7 .gh_btn_area.btn_double p{
	display: none;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
	background-color:#ffffff;
}

input:-webkit-autofill {
		-webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

.wpcf7 .input_line_cont .input_txt textarea,.wpcf7 .input_line_cont .input_txt input,.wpcf7 .select_box01{
	background-color:#ffffff;
}

div.wpcf7 .ajax-loader {
	display: none !important;
}

.wpcf7 .input_line_cont .input_txt textarea.wpcf7c-conf,.wpcf7 .input_line_cont .input_txt input.wpcf7c-conf,.wpcf7 .wpcf7c-conf.select_box01{
	border:0;
}

.custom-wpcf7c-confirmed .select_box_cont:after,.custom-wpcf7c-confirmed .input_line_cont dt.must:before,.custom-wpcf7c-confirmed .confirm_btn{display:none;}


/* modal */
.about_team_detail_txt ul li {	line-height: 1.3;}
.member_modal_btn {	
	display: block;
	width: 100%;
	color: #000000;
	position: relative;
}

.member_modal_btn::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	right: 0;
	background-color: #d90e0f;
	box-shadow: 0 0 0;
	transition: box-shadow 0.3s ease;
}

.member_modal_btn:hover { opacity: 1;}
.member_modal_btn:hover:after { box-shadow: 0 1px 0 #d90e0f;}

.about_team_intro .modal_txt {	display: none;}

#modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
}
#modal .modal_mask {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.7);
}
#modal .modal_wrap {
	position: absolute;
	top: 0;
	left: 30px;
	right: 30px;
	bottom: 0;
	height: 85%;
	z-index: 20;
	margin: auto;
	width: 95%;
	max-width: 420px;
	max-height: 880px;
	box-sizing: border-box;
	background: #d2000f;
}
#modal .modal_cont{
	position: relative;
	overflow-y: auto;
    width: 100%;
	height: 100%;
	-ms-overflow-style:none;
}
#modal .modal_cont::-webkit-scrollbar {
	display: none;
}
#modal h2,
#modal .modal_box {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}
#modal .modal_box {
	position: relative;
	height: 350px;
}
#modal .modal_info {
    padding: 0 0 20px;
}
#modal .state_area{
	color: #fff;
	margin: 20px;
}
#modal .state_area::before{
	content: '';
	background: url(../img/homeTown.png);
	width: 70px;
	height: 11px;
	display: inline-block;
	margin-right: 1em;
}

#modal h2 .name_area {
	word-break: break-all;
    line-height: 1.3;
    font-size: 1.1rem;
    color: #d90e0f;
    background: #fff;
    display: inline-block;
    padding: 15px 25px;
    font-weight: bold;
}
#modal .award{
	margin: 30px auto;
    padding: 20px;
    width: calc(100% - 80px);
    background: #b9000e;
    color: #fff;
    line-height: 1.5em;
}
@media screen and (max-width: 450px) {
    #modal .award{
    margin: 20px auto;
    width: calc(100% - 60px);
}
}
#modal .award .aw2017_area, #modal .award .aw2018_area, #modal .award .aw2019_area, #modal .award .aw2020_area, #modal .award .aw2021_area, #modal .award .aw2022_area, #modal .award .aw2023_area, #modal .award .aw2024_area{
	display: flex;
	clear: both;
}
#modal .award .year{
	font-family: 'Share', cursive;
    opacity: 0.5;
	float: left;
	margin-top: 1px;
}
#modal .award .aw_cont{
	padding-left: 1em;
    overflow: hidden;
    display: block;
}
@media screen and (max-width: 450px) {
    #modal .award .year{
    font-size:100%;
    }
    #modal .award .aw_cont{
    font-size:80%;
    }
}
#modal .profile_area{
	margin: auto;
    padding: 0px 20px 50px;
    color: #fff;
		line-height: 1.5em;
		word-break:break-all;
}
#modal h2 .team_name_tag {
	position: absolute;
    top: 10px;
    left: 0px;
}
#modal h2 .modal_sns {
	position: absolute;
    right: 15px;
    top: 300px;
}
#modal h2 .modal_sns a.none{
	display: none;
}
#modal h2 .team_area {
	display: inline-block;color: #ffffff;
	background-color: #d90e0f;
	line-height: 1.5;
	padding: 3px 10px;
	position: absolute;
    top: 25px;
    left: 10px;
}
#modal h2 .team_area.none {	display: none;}


#modal .img_area {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#modal .img_area img {	width: 100%;}

#modal .modal_box .profile_area {	display: none;}


#modal .close_btn {
	display: block;
	position: absolute;
	z-index: 100;
	top: -30px;
	right: 0;
	width: 26px;
	height: 26px;
}

#modal .close_btn::before,#modal .close_btn::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	background-color: #fff;
	width: 100%;
	height: 2px;
}

#modal .close_btn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#modal .close_btn::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


@media screen and (max-width: 768px){

	#modal .modal_wrap {
		left: 15px;
		right: 15px;
		max-height: 80vh;
		width: 90vw;
		max-height: 85vh;
	}

	.modal_cont {
		height: 100%;
		overflow: auto;
	}

	#modal h2,
	#modal .modal_box {
		display: block;
		width: 100%;
        height: calc(75vw + 45px);
	}
	#modal h2 .modal_sns {
		bottom: 50px;
		top: auto;
	}
	#modal h2 .name_area {	font-size: 1.3rem;}
	#modal h2 .team_area {
		padding: 3px 8px;
	}
	#modal h2 .team_area.none {	display: none;}
	#modal .close_btn {
		top: -30px;
		right: 0px;
		width: 30px;
		height: 30px;
	}

	#modal .close_btn::before,#modal .close_btn::after {
		height: 3px;
	}
 
}






/* ===========================================================================
			
					utility

=========================================================================== */



/* ========= margin ========== */

.m5 {  margin: 5px !important;}
.m10 {  margin: 10px !important;}
.m15 {  margin: 15px !important;}
.m20 {  margin: 20px !important;}
.m25 {  margin: 25px !important;}
.m30 {  margin: 30px !important;}
.m35 {  margin: 35px !important;}
.m40 {  margin: 40px !important;}
.m45 {  margin: 45px !important;}
.m50 {  margin: 50px !important;}
.m55 {  margin: 55px !important;}
.m60 {  margin: 60px !important;}



.mt5 {  margin-top: 5px !important;}
.mt10 {  margin-top: 10px !important;}
.mt15 {  margin-top: 15px !important;}
.mt20 {  margin-top: 20px !important;}
.mt25 {  margin-top: 25px !important;}
.mt30 {  margin-top: 30px !important;}
.mt35 {  margin-top: 35px !important;}
.mt40 {  margin-top: 40px !important;}
.mt45 {  margin-top: 45px !important;}
.mt50 {  margin-top: 50px !important;}
.mt55 {  margin-top: 55px !important;}
.mt60 {  margin-top: 60px !important;}


.mb5 {  margin-bottom: 5px !important;}
.mb10 {  margin-bottom: 10px !important;}
.mb15 {  margin-bottom: 15px !important;}
.mb20 {  margin-bottom: 20px !important;}
.mb25 {  margin-bottom: 25px !important;}
.mb30 {  margin-bottom: 30px !important;}
.mb35 {  margin-bottom: 35px !important;}
.mb40 {  margin-bottom: 40px !important;}
.mb45 {  margin-bottom: 45px !important;}
.mb50 {  margin-bottom: 50px !important;}
.mb55 {  margin-bottom: 55px !important;}
.mb60 {  margin-bottom: 60px !important;}

.mr5 {  margin-right: 5px !important;}
.mr10 {  margin-right: 10px !important;}
.mr15 {  margin-right: 15px !important;}
.mr20 {  margin-right: 20px !important;}
.mr25 {  margin-right: 25px !important;}
.mr30 {  margin-right: 30px !important;}
.mr35 {  margin-right: 35px !important;}
.mr40 {  margin-right: 40px !important;}
.mr45 {  margin-right: 45px !important;}
.mr50 {  margin-right: 50px !important;}
.mr55 {  margin-right: 55px !important;}
.mr60 {  margin-right: 60px !important;}


.ml5 {  margin-left: 5px !important;}
.ml10 {  margin-left: 10px !important;}
.ml15 {  margin-left: 15px !important;}
.ml20 {  margin-left: 20px !important;}
.ml25 {  margin-left: 25px !important;}
.ml30 {  margin-left: 30px !important;}
.ml35 {  margin-left: 35px !important;}
.ml40 {  margin-left: 40px !important;}
.ml45 {  margin-left: 45px !important;}
.ml50 {  margin-left: 50px !important;}
.ml55 {  margin-left: 55px !important;}
.ml60 {  margin-left: 60px !important;}


.mtb5 { margin: 5px auto !important;}
.mtb10 { margin: 10px auto !important;}
.mtb15 { margin: 15px auto !important;}
.mtb20 { margin: 20px auto !important;}
.mtb25 { margin: 25px auto !important;}
.mtb30 { margin: 30px auto !important;}
.mtb35 { margin: 35px auto !important;}
.mtb40 { margin: 40px auto !important;}
.mtb45 { margin: 45px auto !important;}
.mtb50 { margin: 50px auto !important;}
.mtb55 { margin: 55px auto !important;}
.mtb60 { margin: 60px auto !important;}


.mtb5 { margin: 5px auto !important;}
.mtb10 { margin: 10px auto !important;}
.mtb15 { margin: 15px auto !important;}
.mtb20 { margin: 20px auto !important;}
.mtb25 { margin: 25px auto !important;}
.mtb30 { margin: 30px auto !important;}
.mtb35 { margin: 35px auto !important;}
.mtb40 { margin: 40px auto !important;}
.mtb45 { margin: 45px auto !important;}
.mtb50 { margin: 50px auto !important;}
.mtb55 { margin: 55px auto !important;}
.mtb60 { margin: 60px auto !important;}



/* ========= padding ========== */
.p5 {  padding: 5px !important;}
.p10 {  padding: 10px !important;}
.p15 {  padding: 15px !important;}
.p20 {  padding: 20px !important;}
.p25 {  padding: 25px !important;}
.p30 {  padding: 30px !important;}
.p35 {  padding: 35px !important;}
.p40 {  padding: 40px !important;}
.p45 {  padding: 45px !important;}
.p50 {  padding: 50px !important;}
.p55 {  padding: 55px !important;}
.p60 {  padding: 60px !important;}


.pt5 {  padding-top: 5px !important;}
.pt10 {  padding-top: 10px !important;}
.pt15 {  padding-top: 15px !important;}
.pt20 {  padding-top: 20px !important;}
.pt25 {  padding-top: 25px !important;}
.pt30 {  padding-top: 30px !important;}
.pt35 {  padding-top: 35px !important;}
.pt40 {  padding-top: 40px !important;}
.pt45 {  padding-top: 45px !important;}
.pt50 {  padding-top: 50px !important;}
.pt55 {  padding-top: 55px !important;}
.pt60 {  padding-top: 60px !important;}


.pb5 {  padding-bottom: 5px !important;}
.pb10 {  padding-bottom: 10px !important;}
.pb15 {  padding-bottom: 15px !important;}
.pb20 {  padding-bottom: 20px !important;}
.pb25 {  padding-bottom: 25px !important;}
.pb30 {  padding-bottom: 30px !important;}
.pb35 {  padding-bottom: 35px !important;}
.pb40 {  padding-bottom: 40px !important;}
.pb45 {  padding-bottom: 45px !important;}
.pb50 {  padding-bottom: 50px !important;}
.pb55 {  padding-bottom: 55px !important;}
.pb60 {  padding-bottom: 60px !important;}

.pr5 {  padding-right: 5px !important;}
.pr10 {  padding-right: 10px !important;}
.pr15 {  padding-right: 15px !important;}
.pr20 {  padding-right: 20px !important;}
.pr25 {  padding-right: 25px !important;}
.pr30 {  padding-right: 30px !important;}
.pr35 {  padding-right: 35px !important;}
.pr40 {  padding-right: 40px !important;}
.pr45 {  padding-right: 45px !important;}
.pr50 {  padding-right: 50px !important;}
.pr55 {  padding-right: 55px !important;}
.pr60 {  padding-right: 60px !important;}


.pl5 {  padding-left: 5px !important;}
.pl10 {  padding-left: 10px !important;}
.pl15 {  padding-left: 15px !important;}
.pl20 {  padding-left: 20px !important;}
.pl25 {  padding-left: 25px !important;}
.pl30 {  padding-left: 30px !important;}
.pl35 {  padding-left: 35px !important;}
.pl40 {  padding-left: 40px !important;}
.pl45 {  padding-left: 45px !important;}
.pl50 {  padding-left: 50px !important;}
.pl55 {  padding-left: 55px !important;}
.pl60 {  padding-left: 60px !important;}


.ptb5 { padding: 5px 0 !important;}
.ptb10 { padding: 10px 0 !important;}
.ptb15 { padding: 15px 0 !important;}
.ptb20 { padding: 20px 0 !important;}
.ptb25 { padding: 25px 0 !important;}
.ptb30 { padding: 30px 0 !important;}
.ptb35 { padding: 35px 0 !important;}
.ptb40 { padding: 40px 0 !important;}
.ptb45 { padding: 45px 0 !important;}
.ptb50 { padding: 50px 0 !important;}
.ptb55 { padding: 55px 0 !important;}
.ptb60 { padding: 60px 0 !important;}


.prl5 { padding: 0 5px !important;}
.prl10 { padding: 0 10px !important;}
.prl15 { padding: 0 15px !important;}
.prl20 { padding: 0 20px !important;}
.prl25 { padding: 0 25px !important;}
.prl30 { padding: 0 30px !important;}
.prl35 { padding: 0 35px !important;}
.prl40 { padding: 0 40px !important;}
.prl45 { padding: 0 45px !important;}
.prl50 { padding: 0 50px !important;}
.prl55 { padding: 0 55px !important;}
.prl60 { padding: 0 60px !important;}



/* ========= Width ========== */
.w25 { width: 25%;}
.w33 { width: 33.33%;}
.w50 { width: 50%;}
.w75 { width: 75%;}
.w100 { width: 100%;}



/* ========= border ========== */
.border {	border: 1px solid #cccccc;}
.bor_t {	border-top: 1px solid #cccccc;}
.bor_b {	border-bottom: 1px solid #cccccc;}
.bor_r {	border-right: 1px solid #cccccc;}
.bor_l {	border-left: 1px solid #cccccc;}




/* ========= text ========== */
.txt_center {	text-align: center;}
.txt_left {	text-align: left;}
.txt_right {	text-align: right;}



/* ========= layout ========== */
.cf:after {
	display: block;
	content: '';
	height: 0;
	clear: both;
}

.left_box {
	float: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.right_box {
	float: right;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.bl {	display: block;}
.ib {	display: inline-block;}
.il {	display: inline;}

.fs_small {	font-size: 12px;}
.fs_big {	font-size: 16px;}
.fw_bold {	font-weight: bold;}

.txt_color {	color: #d6000f;}

.note {
	padding-left: 1em;
	text-indent: -1em;
}

.note::before {
	content: "※";
}


.article_cont table.type01 {
	width: 100%;
	border: none;
}
.article_cont table.type01 tr {	border: none;}
.article_cont table.type01 td {
	vertical-align: top;
	padding: 10px 0;
	line-height: 1.7;
}
.article_cont table.type01 td p {	margin-bottom: 0;}
.article_cont table.type01 td:first-of-type {	width: 10em;}



@media screen and (max-width: 750px) {

	.left_box,
	.right_box {
		float: none;
		width: 100%!important;
	}
}

.article_cont table tr td, .article_cont table tr td a{
	line-height: 1.6;
}


/* gnav 改修 */
.gnav {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(17, 17, 17, 0.9);
  top: 96px;
  left: 0;
  transform: translateX(100%);
  transition: all 0.3s;
  z-index: 99;
  display: flex;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  justify-content: center; }
  .gnav > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    display: flex;
    justify-content: center; }
  .gnav ul {
    display: flex;
    flex-direction: column;
    font-size: 140%;
    margin: 0 3%;
	justify-content:flex-start;
}
    .gnav ul li {
			display: flex;
			width: 100%;
			min-width:250px;
			margin-bottom: 40px; }
      .gnav ul li.active dt:before {
        width: 20px; }
      .gnav ul li.active dt, .gnav ul li.active em, .gnav ul li:hover dt, .gnav ul li:hover em {
        color: #d7000f; }
      .gnav ul li.active dd, .gnav ul li:hover dd {
        color: #bd999b; }
      .gnav ul li a {
        display: flex; }
      .gnav ul li dt, .gnav ul li em {
        transition: 0.3s; }
      .gnav ul li dd {
        transition: 0.3s; }
      .gnav ul li dt {
				position: relative;
				color: #fff; }
        .gnav ul li dt:before {
          position: absolute;
          content: '';
          left: -35px;
          top: 50%;
          transform: translateY(-50%);
          height: 1px;
          width: 0;
          background: #d7000f;
          transition: 0.3s; }
      .gnav ul li dl {
        margin-left: 50px; }
      .gnav ul li dd {
        font-size: 60%;
        margin-top: 10px;
        color: #ccc;
        font-family: "Economica", sans-serif;
        font-weight: 100; }
      .gnav ul li em {
        font-style: normal;
        font-size: 100%;
        font-family: "Economica", sans-serif;
        font-weight: 100; }

.gnav.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible; }

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box; }

.menu-trigger {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 2; }

.menu-trigger + p {
  margin-top: 10px; }

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px; }

.menu-trigger span:nth-of-type(1) {
  top: 0; }

.menu-trigger span:nth-of-type(2) {
  top: 11px; }

.menu-trigger span:nth-of-type(3) {
  bottom: 0; }

.menu-trigger {
  -webkit-animation: menu-close 0.6s;
  animation: menu-close 0.6s; }

.menu-trigger.active {
  -webkit-animation: menu-open 0.6s;
  animation: menu-open 0.6s; }

	#nav_btn {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  right: 60px;
  font-family: "Economica", sans-serif;
  top: 30px;
  cursor: pointer;
}
@media screen and (max-width: 1024px){
	#nav_btn, .gnav{
		display: none;
	}
}
.menu-trigger {
	position: relative;
	width: 100%;
	height: 25px;
	cursor: pointer;
	z-index: 2;
}
.menu-trigger span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #d7000f;
	border-radius: 4px;
}
.menu-trigger + p{
	margin-top: 10px;
	color: #d7000f;
}
.gnav ul li a{
    margin:0
}
.gnav ul li em{
	color: #fff;
    width: 22px;
}
.gnav ul li dt {
	font-family: "Yu Gothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 100;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 2;
}

.menu-trigger + p {
	margin-top: 10px;
	text-align: center;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d6000f;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 11px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger {
  -webkit-animation: menu-close 0.6s;
  animation: menu-close 0.6s;
}

.menu-trigger.active {
  -webkit-animation: menu-open 0.6s;
  animation: menu-open 0.6s;
}

@-webkit-keyframes menu-close {
  30% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@keyframes menu-close {
  30% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes menu-open {
  30% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@keyframes menu-open {
  30% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  -ms-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

@media screen and (max-width: 768px){
	#nav_btn{
		display: none;
	}
}


/*
results
*/
#results .results_list{
	display: flex;
	flex-wrap: wrap;
}
#results .results_list .list_content{
	width:31.3%;
	padding: 0 2% 2% 0;
}
#results .results_list .list_content img{
	margin-bottom: 20px;
}
#results .results_list .list_content a{
	border-bottom: none;
	color: #000;
}

#results .results_list .list_content p{
        text-align: center;
}

/*
resutls sp
*/
@media screen and (max-width: 768px){
	#results .results_list{
		display: block;
	}
	#results .results_list .list_content{
		text-align: center;
		width: 100%;
	}
	#results .results_list .list_content a{
		display: inline-block;
	}
}

/*
terms
*/
#terms .anchor_cont_union ul li{
	width: calc(33.333% - 13px);
	margin: 5px;
}
#terms .anchor_cont_union ul li a{
	border-bottom: none;
}
#terms .about_ttl_cont{
	padding-top: 100px;
	margin-top: -100px;
	margin-bottom: 160px;
}
#terms .terms_link{
	display: flex;
	align-items: flex-start;
	flex-flow: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#terms .terms_link li{
	width: 30%;
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	margin-right: 5%;
}
#terms .terms_link li:nth-child(3n){
	margin-right: 0;
}
#terms .terms_link li .lisence-pdf-link-ttl{
	display: flex;
	margin: 0 0 7px;
	width: 100%;
	text-align: center;
	height: 2em;
	justify-content: center;
	align-items: flex-end;
}
#terms .terms_link li a{
	display: table;
	margin-bottom: 10px;
}
#terms .terms_link li .terms_btn{
	border: 1px solid #d6000f;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row;
	position: relative;
	width: 100%;
	color: #d6000f;
	padding: 24px 0;
	text-align: center;
	margin-bottom: 20px;
}
#terms .terms_link li .terms_btn .form_icon_pdf{
	background-image: url(../img/pdf_icon@3x.png);
}
#terms .terms_link li .terms_btn:hover{
	opacity: 1;
	color: #fff;
	background-color: #d6000f;
}
#terms .terms_link li .terms_btn:hover .form_icon_pdf{
	background-image: url(../img/pdf_icon_hover@3x.png);
}

/*
terms sp
*/
@media screen and (max-width: 768px) {
	#terms .anchor_cont_union ul li a{
		font-size: 12px;
		margin: auto;
	}
	#terms .about_ttl_cont{
		margin-bottom: 80px;
	}
	#terms .terms_link{
		display: block;
		width: 100%;
	}
	#terms .terms_link li{
		width: 100%;
	}
}

/* 20200522追記 youtubeのレスポンシブ */
.wp-block-group__inner-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-group__inner-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* 20200528追記  JeSU公認プロライセンスの概要について　ページ*/
.summary-list{
	margin-bottom:30px;
}
.summary-list li{
	line-height:1.5;
	padding-top:8px;
}

.summary-note{
	color: #d6000f;
}

/* 20200713追記　 経済産業省との取り組みについて*/
#discussion .sub_ttl{
	font-weight:normal;
}

/* 20200722追記　 経済産業省との取り組みについて*/
.well-known table{
	width: 600px;
}

.article_cont .well-known .cont_box .ttl{
	color: #000;
	font-weight: bold;
}

@media screen and (max-width: 768px){
	.well-known table{
		width: 100%;
	}
}

/* 20210202追記　選手検索結果　ポップアップページ修正 */

.gametitle_area{
	position: absolute;
    left: 3%;
    bottom: 10px;
    background: #d90e0f;
    color: #fff;
    padding: .3em .5em;
    line-height:1.4;
}

/* 20240216追記　ニュース　YouTube埋め込み */

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.youtube-wrapper{
	width: 600px;
	margin: 0 auto;
}
@media screen and (max-width: 479px){
    .youtube-wrapper{
		width: 100%;
	}
}

/* 公認PCページ */

.official-items-wrapper{
    display:flex;
}

.official-items-wrapper .items_ttl{
    width:30%;
}

.official-items-wrapper .items_txt{
    width:70%;
    margin-top: 1em;
}

@media screen and (max-width: 479px) {
    .official-items-wrapper .items_txt{
    margin-top: 0;
}
}

.official-items-wrapper .items_intro{
    display: flex;
    padding: 1em 0;
    letter-spacing: 0.05em;
    line-height: 2;
}

@media screen and (max-width: 1024px) {
    .official-items-wrapper{
    display:block;
}
    .official-items-wrapper .items_ttl,
    .official-items-wrapper .items_txt{
    width:100%;
}
    .official-items-wrapper .items_intro{
     display: block;
    }
}

.official-items-wrapper .items_intro .sponsors_logo{
    display:inline-block;
    margin-right:1em;
}

@media screen and (max-width: 479px) {
    .official-items-wrapper .items_intro .sponsors_logo{
    width: 100%;
    margin-right:0;
}
}

.official-items-wrapper h3{
	margin-top: 0px;
    padding-bottom: 8px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    color: #d6000f;
}

.official-items-wrapper .items_ttl p {
    padding-bottom: 40px;
    font-size: 16px;
    color: #aaaaaa;
}

@media screen and (max-width: 479px) {
    .official-items-wrapper h3, .official-items-wrapper .items_ttl p{
    text-align:center;
    }
}

.official-items-wrapper .article_cont h3{
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    font-weight: bold;
    padding-bottom: 26px;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .official-items-wrapper .article_cont h3{
        margin-top:40px;
    }
}

.official-items-wrapper .media{
	display: flex;
	border-top:solid 1px #ddd;
	border-right:solid 1px #ddd;
	border-left:solid 1px #ddd;
	border-bottom:solid 1px #ddd;
	padding:30px 0;
}

.official-items-wrapper .media ul{
    margin-top: 2.5em;
}

@media screen and (max-width: 768px) {
.official-items-wrapper .media-text{
    margin: 0 2em;
}
}

@media screen and (max-width: 479px) {
.official-items-wrapper .media-text{
    margin: 0 auto;
    width: max-content;
    max-width: 81vw;
}
}

.official-items-wrapper .media.notepc ul {         
    margin-top: 0.5em;
}

@media screen and (max-width: 1024px) {
    .official-items-wrapper .media ul {
    margin-top: 1.5em;
    }
    .official-items-wrapper .media.notepc ul {         
    margin-top: 0.5em;
    margin-left: 3em;
}
}

@media screen and (max-width: 768px) {
    .official-items-wrapper .media ul {
    margin-top: 0.5em;
    }
    .official-items-wrapper .media.notepc ul {         
    margin-left: 0;
}
}

@media screen and (max-width: 479px){
    .media { padding: 30px 0; } 
}

.official-items-wrapper .sponsors_logo img{
	width: 100px;
	margin-bottom: 0;
}

.official-items-wrapper .sponsors_logo a{
	border-bottom:none;
	display:block;
}

@media screen and (max-width: 479px) {
    .official-items-wrapper .sponsors_logo a{
    margin: 0 calc(50% - 50px)
}
}

.official-items-wrapper .media-image{
	width:40%;
    margin-left: 2em;
}

@media screen and (max-width: 1024px) {
.official-items-wrapper .media-image{
	width:30%;
}
}

@media screen and (max-width: 768px) {
.official-items-wrapper .media-image{
	margin-left:1em;
}
}

@media screen and (max-width: 479px){
.official-items-wrapper .media-image{
	margin-left:0;
}
}

.official-items-wrapper .media-image img{
	width:240px;
	margin-bottom:0;
}

@media screen and (max-width: 768px) {
.official-items-wrapper .media.notepc .media-image img{   
	margin-top:2em;
}
}

@media screen and (max-width: 479px){
    .official-items-wrapper .media-image img{
    margin: 0 auto;
    display: block;
    }
    .official-items-wrapper .media.notepc .media-image img{   
	margin-top:0;
}
}

.official-items-wrapper .media-text li:not(:first-child){
	padding-top:10px;
}

.official-items-link{
	margin-top: 4em;
    line-height: 25px;
    vertical-align: top;
    display: flex;
    letter-spacing:0.05em;
}

.official-items-link2{
	margin-top: 2em;
    line-height: 1.4;
    vertical-align: top;
    display: inline;
    letter-spacing:0.05em;
}

@media screen and (max-width: 479px){
    .official-items-link2{
    margin-top:0;
    line-height: 25px;
    }
}

.official-items-link img{
    object-fit: none;
    height: 50px;
    width: 300px;
}

@media screen and (max-width: 768px) {
    .official-items-link img, .official-items-link2{
    display: block;
    margin: 1em auto;
    text-align: center;
    }
    .official-items-link{
    display: block;
    margin: 2em auto;
    text-align: center;
    }
}

@media screen and (max-width: 479px){
	.official-items-wrapper .sponsors_logo{
		text-align:center;
        margin-bottom: 1em;
	}
	
	.official-items-wrapper .media{
		display: block;
	}
	
	.official-items-wrapper .media-image{
		width:100%;
		margin-bottom:20px;
	}
}

.reflection{
    position: relative;
    overflow:hidden;
}

.reflection:after {
content:"";
height:100%;
width:20px;
position:absolute;
top:0px;
left:0;
background-color: rgba(255,255,255,0.9);
opacity:0.9;
-webkit-transform: rotate(135deg);
-webkit-animation: reflection 3s ease-in-out infinite;
}
 
@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(135deg); opacity: 0; }
70% { -webkit-transform: scale(0) rotate(135deg); opacity: 0.5; }
71% { -webkit-transform: scale(4) rotate(135deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(135deg); opacity: 0; }
}


/* 202203 フッター スポンサーロゴ追加 */

.footer-sponsors{
	border-bottom: 1px solid #de333f;
}

.footer-sponsors-inner{
	padding:4rem 0;
}

.footer-sponsors .footer-sponsors-title{
	
	margin-bottom:2rem;
	color:#fff;
	font-size:0.9rem;
}

.footer-sponsors-title-last{
	margin-top:3rem;
}

.footer-sponsors_cont{
	display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
}

@media screen and (max-width: 479px){
.footer-sponsors_cont:after {
    content: "";
    width: 120px;
    margin: 0.5rem;
}
}

.footer-sponsors_logo{
	margin: 0.5rem;
}

.footer-sponsors_logo img{
	width:150px;
}

@media screen and (max-width: 959px){

.footer-sponsors_logo img{
	width:120px;
}
}
