@charset "UTF-8";


/* リセット */
*{ box-sizing: border-box; }




/* 基本色 */
:root {
	--main-color: #5D9AB2;
	--accent-color: #BF6A7A;
	--dark-color: #2B5566;
}

/* 基本設定: ページ全体 */
body {
	margin: 0;
	font-family: 'メイリオ','Hiragino Kaku Gothic Pro',sans-serif;

}


/* 基本設定: フォントサイズ */
@media (max-width: 599px){
	:root { font-size: 14px; }
}

@media (min-width: 600px) and (max-width: 799px){
	:root { font-size: 16px; }
}

@media (min-width: 800px){
	:root { font-size: 18px; }
}

body { font-size: 16px; padding-top: 70px; }






/* ヘッダー 固定 */
header { position: fixed; top: 0; left:0; z-index: 100; width: 100%; background-color: rgba(255,255,255,0.9); opacity: 1.0; }
header { background-color: #1e90ff; }
header.blue { background-color: #0000cd; opacity: 0.9; }
header.green { background-color: #2e8b57; opacity: 0.9; }


/* ヘッダーA サイト名 */
.headA {
	display: inline-block; line-height: 70px; padding-left: 20px; padding-right: 20px;
	/*background-color: #5D9AB2;*/ color: #fff; font-size: 20px; text-decoration: none;
}


/* ヘッダーB ナビゲーション */
.headB ul { margin: 0; padding: 0; list-style: none; }
.headB a { display: block; padding: 15px; color: #fff; font-size: 12px; text-decoration: none; }
.headB a:hover { background-color: rgba(255,255,255,0.3); }


@media (min-width: 768px){
	header .container {
		display: flex; align-items: center; justify-content: space-between;
		max-width: 1000px; margin-left: auto; margin-right: auto;
	}
	.headB ul { display: flex; }
	.headA { font-size: 26px; }
}


/* ヘッダーC トグルボタン */

@media (max-width: 767px){
	/* 小さい画面用 */
	header .container-small { display: flex; align-items: center; justify-content: space-between; }
	.headC { margin-right: 10px; padding: 0; border: none; out-line: none; background: none; font-size: 28px; opacity: 1.0; cursor: pointer; color: #fff; }
	.headC:hover { /*opacity: 0.3;*/ }
	.headB { display: none; }
}


@media (min-width: 768px){
	/* 大きい画面用 */
	.headC { display: none; }
	.headB { display: block !important }
}





/* セクションA スライド */
.conA { /*margin-top: 70px;*/ background-color: #eeeeee; }
.conA ul { margin: 0; padding: 0; list-style: none; }
.conA a { text-decoration: none; }
.conA img { height: auto; width: 100%; }





@media (min-width: 768px){
	.conA .container { max-width: 1000px; margin-left: auto; margin-right: auto; }
}






/* 記事一覧 トピックス用 */
.listD { background-color: #fff; color: #000; }
.listD .container { display: flex; flex-wrap: wrap; max-width: 1000px; margin: 20px auto 20px auto; }
.listD article { flex: 0 0 50%; display: flex; }
.listD a { position: relative; flex: 1; margin: 10px; display: block; border: solid 1px #ddd; color: inherit; text-decoration: none; }
.listD a:hover { opacity: 0.8; }
.listD .photo { padding-top: 100%; /*min-height: 200px;*/ background-position: center; background-size: cover; background-repeat: no-repeat; }
.listD .text { width: 100%; box-sizing:border-box; position: absolute; bottom: 0; left: 0; margin: 0px; padding: 10px; color: #fff; background-color: rgba(0,0,0,0.7); /*rgba(204,39,39,0.7);*/ }
.listD h2 { margin: 0; font-size: 18px; opacity: 1; }
.listD p { margin: 0; font-size: 14px; opacity: 1; }
@media (min-width: 768px) {
	.listD article { flex: 0 0 33.3%; display: flex; }
	.listD .photo { min-height: 250px; }
}









/* セクションB 大記事項目 */
.conB { background-color: #f5f5dc; color: #000; }
.conB .container { padding-top: 0px; padding-bottom: 20px; }

.conB .text { padding: 20px; }
.conB h2 { margin-top: 0; margin-bottom: 10px; font-size: 20px; }
.conB p { margin-top: 0; margin-bottom: 20px; font-size: 14px; line-height: 1.8; opacity: 0.8; }
.conB a {
	width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: rgba(204,39,39,1); color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conB a:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }

.conB .photo {
	min-height: 200px; background-image: url(../img/img_conb.jpg);
	background-position: center; background-size: cover;
}



@media (min-width: 768px){
	.conB .container { display: flex; max-width: 1000px; padding-top: 20px; margin-left: auto; margin-right: auto; }
	.conB .photo { flex: 3; }
	.conB .text { flex: 2; padding: 50px; }
}





/* セクションC 大記事項目 */
.conC { background-color: #fff; color: #1a1611; }
.conC .container { padding-top: 0px; padding-bottom: 20px; }

.conC .text { padding: 20px; }
.conC h2 { margin-top: 0; margin-bottom: 10px; font-size: 20px; }
.conC p { margin-top: 0; margin-bottom: 20px; font-size: 14px; line-height: 1.8; opacity: 0.8; }
.conC a {
	width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: rgba(204,39,39,1); color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conC a:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }

.conC .photo {
	min-height: 200px; background-image: url(../img/img_conc.jpg);
	background-position: center; background-size: cover;
}



@media (min-width: 768px){
	.conC .container { display: flex; flex-direction: row-reverse; /* 逆順にする場合 */ max-width: 1000px; margin-left: auto; margin-right: auto; padding-top: 20px;}
	.conC .photo { flex: 0 0 400px; /* 横幅固定する場合 */ }
	.conC .text { flex: 1; padding: 50px; }
	.conC .photo { flex: 3; /* 幅を元に戻した */ }
	.conC .text { flex: 2; padding: 50px; }
}








/* セクションD 大記事項目 */
.conD { background-color: #eeeeee; color: #000; }
.conD .container { padding-top: 0px; padding-bottom: 20px; }

.conD .text { padding: 20px; }
.conD h2 { margin-top: 0; margin-bottom: 10px; font-size: 20px; }
.conD p { margin-top: 0; margin-bottom: 20px; font-size: 14px; line-height: 1.8; opacity: 0.8; }
.conD a {
	width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: rgba(204,39,39,1); color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conD a:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }

.conD .photo {
	min-height: 200px; background-image: url(../img/img_cond.jpg);
	background-position: center; background-size: cover;
}



@media (min-width: 768px){
	.conD .container { display: flex; max-width: 1000px; margin-left: auto; margin-right: auto; padding-top: 20px; }
	.conD .photo { flex: 3; }
	.conD .text { flex: 2; padding: 50px; }
}



/* フォントサイズ調整★2022/10/14★ */
.conB h2,
.conC h2,
.conD h2 { font-size: 26px; }





/* セクションE 協会役員 */
.conE { background-color: #fff; color: #000; }
.conE .container { padding-top: 0px; padding-bottom: 20px; }

.conE .text { padding: 20px 10px; background-color: #fff; }
.conE .namecard { padding: 30px 10px;  border-top: 2px solid #000; border-bottom: 2px solid #000; margin-bottom: 20px; }

.conE h2 { margin-top: 0; margin-bottom: 10px; font-size: 26px; }
.conE p.post { margin-top: 0; margin-bottom: 10px; font-size: 18px; line-height: 1.0; opacity: 1; }
.conE p.dojo { margin-top: 0; margin-bottom: 0px; font-size: 14px; line-height: 1.0; opacity: 0.8; }

.conE p { margin-top: 0; margin-bottom: 20px; font-size: 14px; line-height: 1.8; opacity: 0.8; }
.conE a {
	/* 協会役員部分のaタグ適用削除 */
	/*width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: rgba(204,39,39,1); color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conE a:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }

.conE .photo {
	/*min-height: 200px; /* background-image: url(../img/img_cond.jpg); background-position: center; background-size: cover; */
	/*width: 100%; margin: 0; padding: 0; background-color: #eee;*/
	padding: 0 10px;
}
.conE img { width: 100%; margin: 0; padding: 0; }

.conE .history { }
.conE h3 { margin: 0; padding: 0; font-size: 20px; }
.conE p {}

.conE .line {
	/* 区切り線 */
 	width: 100%; margin-top: 60px; height: 34px; background-image: url(../img/line2.jpg); background-position: center; background-size: cover;
}


@media (min-width: 768px){
	.conE .container { display: flex; max-width: 1000px; margin-left: auto; margin-right: auto; }
	.conE .photo { flex: 1; }
	.conE .text { flex: 1; padding: 10px 30px 30px 30px; }
	.conE .line { /* 区切り線非表示 */ display: none; }
}









/* セクションF トップページトピックス */
.conF { background-color: #fff; color: #000; }
.conF .container { padding-top: 0px; padding-bottom: 20px; }

.conF .text { padding: 20px 10px 10px 10px; /*background-color: #fff;*/ }

.conF h2 { margin-top: 0; margin-bottom: 10px; font-size: 26px; color: #4682b4; border-bottom: solid 5px #4682b4; }
.conF p { margin-top: 0; margin-bottom: 20px; font-size: 14px; line-height: 1.8; opacity: 0.8; }
.conF a.btn {
	width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: #4169e1; color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conF a.btn:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }


/* グリーンボタン追加 */
.conF a.btn2 {
	width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: #20b2aa; color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conF a.btn2:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }


/* ピンクボタン追加 */
.conF a.btn3 {
	width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: #ff69b4; color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conF a.btn3:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }



.conF .photo {
	/*min-height: 200px; /* background-image: url(../img/img_cond.jpg); background-position: center; background-size: cover; */
	/*width: 100%; margin: 0; padding: 0; background-color: #eee;*/
	padding: 0 10px;
}
.conF img { width: 100%; margin: 0; padding: 0; }

@media (min-width: 768px){
	.conF .container { display: flex; max-width: 1000px; margin-left: auto; margin-right: auto; }
	.conF .photo { flex: 1; }
	.conF .text { flex: 2; padding: 30px; }
}








/* セクションG 空手道選手権大会　全日本大会 */
.conG { background-color: #000; color: #fff; }
.conG .container { padding-top: 20px; padding-bottom: 20px; }

.conG .text { padding: 20px 10px 10px 10px; /*background-color: #fff;*/ }

.conG h2 { margin-top: 0; margin-bottom: 10px; font-size: 36px; color: #b39978; border-bottom: solid 5px #b39978; }
.conG p { margin-top: 0; margin-bottom: 20px; font-size: 18px; line-height: 1.8; color: #fff; /*opacity: 0.8;*/ }
.conG a { color: #FFF; text-decoration: none; }	/* aリンク追加 */
.conG a.btn {
	width: 100%; box-sizing:border-box; text-align: center;
	display: inline-block; margin-top: 20px; padding: 10px 30px; border: solid 3px currentColor;
	border-radius: 6px; background-color: #4169e1; color: #FFF; font-size: 14px; text-decoration: none;
	box-shadow: 0 0 0 1px #888; /* リンクボタン枠線 */
}

.conG a.btn:hover { background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2)); }

.conG .photo {
	/*min-height: 200px; /* background-image: url(../img/img_cond.jpg); background-position: center; background-size: cover; */
	/*width: 100%; margin: 0; padding: 0; background-color: #eee;*/
	padding: 0px 10px;
}
.conG img { width: 100%; margin: 0; padding: 0; }

@media (min-width: 768px){
	.conG .container { display: flex; max-width: 1000px; margin-left: auto; margin-right: auto; }
	.conG .photo { flex: 1; }
	.conG .text { flex: 2; padding: 30px; }
}


/* 第36回POINT&K.O.空手道選手権大会 */
.pko36th { background-color: #fffaf0; }
.pko36th .container { padding: 30px 10px; }
.pko36th .photo {
	/*min-height: 500px;*/
	background-repeat: no-repeat;
	padding-top: 100%;
	position: relative;
}
.pko36th .photo0 { /*background-image: url(../img/pko_36th/pko_36th_00.jpg);*/ background-position: center; background-size: cover; }
.pko36th .photo1 { /*background-image: url(../img/pko_36th/pko_36th_01.jpg);*/ background-position: top; background-size: contain; padding-top: 75%; }

.pko36th .photo a { position: absolute; top:0; left: 0; width: 100%; height: 100%; }

.pko36th .text { padding: 20px 0 0 0; }
.pko36th .text h2 { color: #1a1a1a; padding-left: 20px; border-left: solid 10px #dc143c; border-bottom: solid 0px #b35b78; margin-bottom: 20px; font-size: 28px; }
.pko36th .text p  { color: #333333; font-size: 16px; }
.pko36th .text p:last-child { margin-bottom: 0px; }

.pko36th .photo1,
.pko36th .text1 { margin-top : 0px; }

@media (min-width: 768px){
	.pko36th .container { padding: 30px 0; }
	.pko36th .container { flex-wrap: wrap; }
	.pko36th .photo0 { flex: 0 0 25%; padding-top: 25%; }
	.pko36th .photo1 { flex: 0 0 25%; padding-top: 19%; }
	.pko36th .text  { flex: 0 0 75%; padding: 10px; }
}
.pko36th .text a { color: #0000cd; text-decoration: underline; }






/* セクションH 公認審査員 */
.conH { background-color: #fff; color: #000; }
.conH .container { padding-top: 0px; padding-bottom: 20px; background-color: #fff; }

.conH .text { padding: 20px 0px 0px 0px; background-color: #fff; }

.conH h2 { margin-top: 0; margin-bottom: 10px; font-size: 28px; color: #000; border-bottom: solid 2px #000; }
.conH p { margin-top: 0; margin-bottom: 20px; font-size: 14px; line-height: 1.8; color: #000; opacity: 0.8; }

.conH .photo {
	/*min-height: 200px; /* background-image: url(../img/img_cond.jpg); background-position: center; background-size: cover; */
	/*width: 100%; margin: 0; padding: 0; background-color: #eee;*/
	padding: 0 10px;
}
.conH img { width: 100%; margin: 0; padding: 0; }

/*@media (min-width: 768px){*/
	.conH .container { display: flex; max-width: 1000px; margin-left: auto; margin-right: auto; }
	.conH .photo { flex: 1; }
	.conH .text { flex: 3; padding: 10px; }
/*}*/

/* ★2024/09/24★ */
.conH ul.historylist { margin: 0; padding: 0; font-size: 14px; line-height: 1.8; color: #000; opacity: 0.8; }
.conH ul.historylist li { margin: 0; padding: 0; padding-left: 14px; list-style: none; position: relative; }
.conH ul.historylist li:before {
	content:''; width: 10px; height: 10px; background: #000; border-radius: 5px;
	position: absolute; left: 0px; top: 7px;
}





/* 記事一覧 */
.listB { background-color: #fff; color: #000; }
.listB h1 {
	text-align: center; max-width: 1000px; margin: 0 auto;
	border-top: solid 1px #000; border-bottom: solid 1px #000; font-size: 20px;
}
.listB .container { padding-top: 20px; padding-bottom: 0px; }
.listB ul { margin: 0; padding: 0; list-style: none; }
.listB a { display: flex; text-decoration: none; padding: 10px; border-bottom: solid 1px #ccc; }
.listB a:hover { background-color: #fff8dc; }
.listB .photo { flex: 0 0 100px; height: 100px; background-position: center; background-size: cover; }
.listB .text { flex: 1; padding: 10px 0 10px 10px; }
.listB .text h2 { margin:0; padding: 0; color: #000; font-size: 18px;}
.listB .text p { margin-bottom:10px; font-size: 14px; opacity: 0.8; color: #000; }
.listB .date { margin: 0; font-size: 12px; opacity: 0.5; color: #000; }

@media (min-width: 768px) {
	.listB .container { max-width: 1000px; margin-left: auto; margin-right: auto; }
}







/* 記事一覧 リンク */
.listC .container { display: flex; flex-wrap: wrap; max-width: 1000px; margin: 20px auto; }
.listC article { flex: 0 0 24%; display: flex; }
.listC a { flex: 1; margin: 5px; display: block; border: solid 0px #ddd; color: inherit; text-decoration: none; }
.listC a:hover { opacity: 0.8; }
.listC .photo { min-height: 100px; background-position: center; background-size: contain; background-repeat: no-repeat; }
.listC .text { margin: 5px; }
.listC h2 { font-size: 18px; }
.listC p { font-size: 14px; opacity: 0.8; }
@media (min-width: 768px) {
	.listC article { flex: 0 0 100px; display: flex; }
}






/* フッター */
footer {
	color: #fff;
	/*color: var(--text-bright-color);*/
	background-color: #4682b4;
	/*background-color: var(--dark-main-color);*/
	margin-top: 30px;
}

footer .container { padding: 40px 20px; }

@media (min-width: 768px){
	footer .container { display: flex; flex-wrap: wrap; max-width: 1000px; margin-left: auto; margin-right: auto; }
	.footA { flex: 0 0 40%; }
	.footB { flex: 0 0 60%; }
	.footC { flex: 0 0 100%; }
}


/* フッターA サイト情報 */
.footA { margin-bottom: 30px; }
.footA h2 { margin-top: 0; margin-bottom: 10px; font-size: 18px; }
.footA p { margin-top: 0; margin-bottom: 0; font-size: 14px; }
.footA a { color: inherit; text-decoration: none; }


/* フッターB フッターメニュー */
.footB div { margin-bottom: 20px; }
.footB h3 { margin-top: 0; margin-bottom: 10px; border-bottom: solid 1px currentColor; font-size: 14px; }
.footB ul { margin: 0; padding: 0; list-style: none; }
.footB a { display: block; padding: 5px; color: inherit; font-size: 12px; text-decoration: none; }
.footB a:hover { background-color: rgba(0,0,0,0.3); }
.footB span { margin-right: 10px; }

@media (min-width: 768px){
	.footB { display: flex; }
	.footB div { flex: 1; }
	.footB div:not(:first-child){ margin-left: 40px; }
}


/* フッターCコピーライト */
.footC { font-size: 12px; text-align: center; font-family: sans-serif; }



/* ページトップへ */
#page-top{ width:60px; height:30px; display:none; position:fixed;	right:16px;	bottom:30px; }
#page-top p{ margin:0; padding:0; text-align:center; background:#3b3b3b;
				-webkit-transition:all 0.3s; -moz-transition:all 0.3s; transition:all 0.3s; }
#page-top p:hover{ background:#8b8b8b; }
#move-page-top{ color:#fff; line-height:50px; text-decoration:none; display:block; cursor:pointer; }


/* フッターD 問合せアイコン */
.footD ul { display: flex; margin: 0; padding: 0; list-style: none; margin-top: 20px; }
.footD a {
	display: block; margin-right: 8px; padding: 0px; color: inherit; font-size: 16px; text-decoration: none;
	border: solid 1px currentColor; width: 2em; line-height: 2em; border-radius: 50%; text-align: center;
}
.footD a:hover { background-color: rgba(0,0,0,0.3); }







/* コンテンツページ: 記事 */
.post .container { max-width: 1000px; margin: 0 auto 0 auto; padding: 30px 10px; }

.post h1 { padding-left: 0.5rem; border-left: solid 0.75rem rgba(204,39,39,1); font-size: 2rem; margin-bottom: 30px; }
.post h2 { padding-left: 0; font-size: 1.8rem; }
.post h2.ttl { padding-left: 0; border-bottom: solid 5px #4682b4; font-size: 1.6rem; }

.post h3 { margin-bottom: 0; padding: 0;; font-size: 1.2rem; }
.post p { margin: 40px 0; font-size: 1.1rem; line-height: 1.6; }
.post p.desc { margin-top: 30px; margin-bottom: 30px; font-size: 14px; line-height: 1.8; opacity: 0.8; }

.post img { max-width: 100%; }

.post img.pdf { vertical-align: middle; margin-right: 10px; }

.post a.result { text-decoration: none; padding: 5px 10px 5px 0px; color: #000; }
.post a.result:hover { background-color: #fffacd; }

.post a { color: #0000cd; }
.post span.att { color: #dc143c; }

/* iframe追加★2020/01/29★ */
.post iframe { max-width: 100%; height: 300px;}





/* 記事一覧 関連記事用 */
.listE { background-color: #fff; color: #000; }
.listE .container { display: flex; flex-wrap: wrap; max-width: 1000px; margin: 20px auto 20px auto; }
.listE article { flex: 0 0 50%; display: flex; }
.listE a { position: relative; flex: 1; margin: 10px; display: block; border: solid 1px #ddd; color: inherit; text-decoration: none; }
.listE a:hover { opacity: 0.8; }
.listE .photo { min-height: 200px; background-position: center; background-size: cover; background-repeat: no-repeat; }
.listE .text { width: 100%; box-sizing:border-box; position: absolute; bottom: 0; left: 0; margin: 0px; padding: 10px; color: #fff; background-color: rgba(0,0,0,0.7); /*rgba(204,39,39,0.7);*/ }
.listE h2 {  margin: 0; font-size: 18px; opacity: 1; }
.listE p { margin: 0; font-size: 14px; opacity: 1; }
@media (min-width: 768px) {
	.listE article { flex: 0 0 33.3%; display: flex; }
	.listE .photo { min-height: 250px; }
}









/* 記事一覧 大会規約用 */
.listF { background-color: #fff; color: #000; display: flex; flex-wrap: wrap; max-width: 1000px; margin: 20px 0 20px 0; }
.listF .kiyakuphoto { flex: 0 0 50%; display: flex; }
.listF a { position: relative; flex: 1; margin: 10px; display: block; border: solid 0px #ddd; color: inherit; text-decoration: none; }
.listF a:hover { /*opacity: 0.8;*/ }
/*.listF .photo { min-height: 200px; background-position: center; background-size: cover; background-repeat: no-repeat; }*/
/*.listF .text { width: 100%; box-sizing:border-box; position: absolute; bottom: 0; left: 0; margin: 0px; padding: 10px; color: #000; background-color: #FFF; /*rgba(204,39,39,0.7);*/ /*}*/
.listF h2 { margin: 0; font-size: 18px; opacity: 1; }
.listF p { margin: 0; font-size: 14px; opacity: 1; }
@media (min-width: 768px) {
	.listF .kiyakuphoto { flex: 0 0 33.3%; display: flex; }
	/*.listF .photo { min-height: 250px; }*/
}











/* お問合せフォーム */
/*.form .container { max-width: 1000px; margin: 0 auto 0 auto; padding: 10px; }*/


/* DLテーブル ----------------------------------------------------------------------- */
.dltable dl { 	width: 100%; overflow: hidden;	font-size: 16px; margin: 0px; padding: 0px; 
		background: #eee;	border: 0px solid #000; border-top: 0;
		box-sizing: border-box; }

.dltable dt {	float: left; width: 200px; border-top: 0px solid #000;
		padding: 20px 10px 10px 10px;	font-size: 16px; line-height: 1.2; font-weight: bold;
		box-sizing: border-box; }

.dltable dd {	background: #fff;	border-top: 0px solid #000; border-left: 0px solid #000;
		padding: 10px 10px;	box-sizing: border-box; font-size: 16px; line-height: 1.2;
		margin-left: 200px; }

.dltable dd:after {content: "";  clear: both;  display: block;}	/* 追加 */

/* ・dlのborder-topは値を0にする	*/
/* ・dt、ddにborder-topの数値を設定	*/
/* ・ddにはborder-leftの数値を設定	*/


/* 余白調整 */
/* .nowpw { padding-top: 10px; } */
/* .dltblp { padding-top: 10px; } */

/* 入力必須 */
.dltable span.must{ padding: 3px; font-size: 10px; background-color: #dc143c; color: #fff; font-weight: normal; margin-left: 5px; float: right; }


@media (max-width: 600px) {

.dltable dl {	width: 100%; margin: 10px auto;  }
.dltable dt {	width: 100%; float: none; padding: 10px; }
.dltable dd {	width: 100%; margin-left: 0; padding: 10px 0px; padding-bottom: 30px; }
.dltable dd:last-child { padding-bottom: 10px; }

/* 余白調整 */
/* .nowpw { padding-top: 0px; } */
/* .dltblp { padding-top: 0px; } */

}



/* フォームスタイル				***********************************************************/

/* フォーム全体 */
.form { margin: 0px 0 0 0; padding: 0px 0px; background-color: #FFFFFF; }

/* グループ枠 */
.form .group{ margin: 0 0 30px 0; padding: 10px; border: solid 1px #808080; }

/* グループタイトル */
.form h3 { font-size: 16px; margin: 0 0 20px 0; background-color:#fff; padding: 5px; color:#2f4f4f;  }
.form p.info { font-size: 14px; font-weight: normal; color:#DF0101; }


/*  */
.form p.b { font-size: 16px; font-weight: bold; color:#000; margin: 5px 0px; }

/* エラーメッセージ */
.form p.red { color:#DF0101; margin-top: 5px; }
.form p.visibleoff { display: none; }


/* 入力ボックス用 */
.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form input[type="date"], .form input[type="password"], .form textarea {
	width: 100%; padding: 5px 5px 5px 5px; border: solid 1px #aaa; border-radius: 0;margin: 0;
	background-image: none;	font-family: inherit; font-size: 14px; color: #000;
	-webkit-appearance: none;	-moz-box-sizing: border-box; -webkitbox-sizing: border-box;	box-sizing: border-box;
}

.form textarea { height: 100px; }

.form input[type="text"]:focus, .form input[type="tel"]:focus, .form input[type="email"]:focus, .form input[type="password"]:focus, .form select:focus, .form textarea:focus {
	background-color: #FFFACD; outline: none;
}

.form select {
	margin: 0px; width: 100%; padding: 5px 5px 5px 5px; border: solid 1px #aaa; border-radius: 0;
	background-color: #FFFFFF; font-family: inherit; font-size: 14px;
	-webkit-appearance: none; -moz-box-sizing: border-box; -webkitbox-sizing: border-box; box-sizing: border-box;
}


/* ラジオボタン　余白調整 */
.radio { padding-top:10px; }




/* 実行ボタン */
.form input[type="submit"] {
	display: inline-block; padding: 10px 0px 10px 0px; border: none; border-radius: 0;
	background-color: #4682b4; color:#ffffff; background-image: none; font-family: inherit;
	font-size: 16px; text-decoration: none; cursor: pointer; -webkit-appearance: none;
}

.form input[type="submit"]:hover, .form input[type="submit"]:focus {
	outline: none; background-color: #4682b4;
}

.form input[type="submit"]::-moz-focus-inner { padding: 0; border: none; }

.form input[type="submit"].w100{	width: 100%; }


/* 完了ボタン */
.form input[type="submit"].r100{ width: 100%; background-color: #dc143c; margin-bottom: 20px;}
.form input[type="submit"].r100:hover{ opacity:0.8; }


/* 進むボタン */
.form input[type="submit"].nextbtn{ width: 100%; background-color: #4682b4; margin-bottom: 20px;}
.form input[type="submit"].nextbtn:hover{ opacity:0.8; }


/* 戻るボタン */
.form input[type="submit"].rtnbtn{ width: 100%; background-color: #a9a9a9; margin-bottom: 20px;}
.form input[type="submit"].rtnbtn:hover{ opacity:0.8; }


/* パスワード変更ボタン */
.form input[type="submit"].pw{	width: 100%; margin-bottom: 20px; background-color: #1e90ff; }
.form input[type="submit"].pw:hover{ opacity:0.8; }


/* 左ボタン */
.form input[type="submit"].lft{	width: 100%; margin-bottom: 0px; background-color: #1e90ff; }
.form input[type="submit"].lft:hover{ opacity:0.8; }



/* 横幅600ピクセル以上調整  */
/*
@media (min-width: 600px){

.form input[type="submit"].pw { float: right; width: 45%; }
.form input[type="submit"].r100 { float: right; width: 45%; }
.form input[type="submit"].nextbtn { float: right; width: 45%; }

.form input[type="submit"].lft { float: left; width: 45%; }
.form input[type="submit"].lft:after { content: "";  clear: both;  display: block; }

.form input[type="submit"].rtnbtn { float: left; width: 45%; }
.form input[type="submit"].rtnbtn:after { content: "";  clear: both;  display: block; }
*/

/* ボタン括り */
/*.btns { margin-bottom: 70px; }


}
*/


/* エラーメッセージ */
.form .errmsg {
	color:#DF0101; background-color:#FFE4E1; padding: 10px; border: solid 1px #DF0101;
	margin-bottom: 30px; font-size: 14px;
}

/* 成功メッセージ */
.form .sccmsg {
	color:#2f4f4f; background-color:#e0ffff; padding: 10px; border: solid 1px #2f4f4f;
	margin-bottom: 30px; font-size: 14px;
}



/* 選抜大会　テーブルなど */
.selection h2 { margin: 0; padding: 10px; /*border-bottom: solid 1px #ccc;*/ font-size: 1.4rem; }
.selection table { width: 100%; border-collapse: collapse; border: solid 1px #aaa; margin-bottom:10px; }
.selection th { width: 120px; vertical-align:middle; background-color:#F5F5F5; border: solid 1px #aaa; padding:10px; font-size:14px; }
.selection td { vertical-align:top; border: solid 1px #aaa;  padding:10px; font-size:14px;}

.selection td.fin { color:#dc143c; }

.selection img.pdf { vertical-align: middle; margin-right: 10px; }
.selection a { text-decoration: none; padding: 5px 10px 5px 0px; color: #000; }
.selection a:hover { background-color: #fffacd; }
/*.selection span { margin-right: 10px; color: #dc143c; font-size: 16px; font-weight: bold; }*/
.selection h2 span { margin-right: 10px; color: #b3936d; }




/* ページネーション追加★2020/02/25 */

.pager { margin: 50px 0; }
.pager .container { text-align: center; }

.pager ul.pagenation { margin: 0; padding: 0; }
.pager .pagenation li { display:inline-block; height:60px; line-height:30px; width:48%; max-width: 350px; min-width: 100px; border:1px #ccc solid; border-radius: 5px / 5px; font-size: 14px; overflow: hidden; }
.pager .pagenation li.none { display: none; }

.pager .pagenation li.nopage { background-color: #eee; }

.pagenation li a { display:block; text-decoration: none; color:#696969; }
.pagenation li a:hover {color: #fff; text-decoration: none; background-color: #696969;}
.pagenation li.nopage a:hover {color: #696969; text-decoration: none; background-color: #eee;}

.pagenation li span { font-weight: bold; }

@media (min-width: 768px){
	.pagenation .container { max-width: 1000px; margin-left: auto; margin-right: auto; }
}


/* 注意文追加★2020/02/25 */
.att01 { text-align: center; font-size: 20px; background-color: #dc143c; color: #fff; }
.att02 { color: #dc143c; }

/* 取消線追加★2020/02/25 */
.cancel { text-decoration: line-through; }



/* 試合結果テーブル ★2021/12/20 */
article.result {  }
article.result dl.exp { padding: 10px; background-color: #f5f5f5; display: flex; flex-wrap: wrap; }
article.result dl.exp dt { margin: 0; padding: 5px;  flex: 100px; box-sizing: border-box; }
article.result dl.exp dd { margin: 0; padding: 5px;  flex: calc(100% - 100px); box-sizing: border-box; }

article.result .resulttbl_wrap { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: flex-start; }

article.result .resulttbl { flex: 0 0 33.3%; margin-bottom: 30px; padding: 10px; }

article.result .resulttbl h2 { margin: 0; padding: 0px; font-size: 20px; }

article.result .photo { margin: 60px 0; }
article.result h3.classttl { padding: 10px; background-color: #f5f5dc; font-size: 24px; }

article.result .resulttbl i { color: #daa520; margin-right: 10px; }
article.result .resulttbl dl { margin: 0; padding: 0px; border-top: 1px #808080 solid; display: flex; flex-wrap: wrap; }
article.result .resulttbl dt { margin: 0; padding: 10px 5px; border-bottom: 1px #808080 solid; background-color: #e6e6fa; flex: 80px; box-sizing: border-box; }
article.result .resulttbl dd { margin: 0; padding: 10px 5px; border-bottom: 1px #808080 solid; flex: calc(100% - 80px); box-sizing: border-box; }

@media (max-width: 767px){
	/* 767px以下 */
	article.result .resulttbl_wrap{ display: block; }
}



/* 関西選抜2022 */
section.pko_kansai { margin:0; padding: 30px 0; background-color: #fff; }
section.pko_kansai .container { margin: 0 auto; max-width: 1000px; }

section.pko_kansai .postwrap { display: flex; }
section.pko_kansai .photo { flex: 50%; }
section.pko_kansai .text  { flex: 50%; padding: 10px; }

section.pko_kansai .text h1 { font-size: 26px; border-left: solid 10px #dc143c; padding: 10px 0 10px 20px; margin-bottom: 30px; }
section.pko_kansai .text p  { margin-bottom: 20px; }
section.pko_kansai .text a  { color: #0000cd; }

section.pko_kansai img { width: 100%; }

@media (max-width: 767px){
	/* 767px以下 */
	section.pko_kansai .postwrap{ display: block; }
	section.pko_kansai .photo { padding: 0 10px;  }
}


/* 規約 変更 ★2022/12/19★ */
section.kiyaku {}

/* 表 */
section.kiyaku table  { width: 100%; border-collapse:  collapse; }
section.kiyaku table.jikan { margin : 40px 0 40px 0; }

section.kiyaku th, td { border: solid 1px #666; padding: 5px; }

section.kiyaku tr.tblhead td { background-color: #eee; }
section.kiyaku th     { font-size: 16px; background-color: #eee; }
section.kiyaku th br   { display: none; }

section.kiyaku td { font-size: 16px; text-align: center; }
section.kiyaku td br   { display: none; }
section.kiyaku td span { font-size: 12px; color: 333; margin-left: 10px; }

/* リスト */
section.kiyaku ul { list-style: none; margin: 0; padding: 0; margin-bottom: 30px; }
section.kiyaku li { padding : 10px 0px 10px 30px; position: relative; font-size: 16px; }
section.kiyaku li::before {
	content: ""; width: 16px; height: 16px; display: inline-block;
	background-color: #333; border-radius:  50%;
	position: absolute; top: 13px; left: 5px;
}
section.kiyaku span.att   { color: #dc143c; font-weight: bold; }
section.kiyaku span.under { text-decoration: underline; }

section.kiyaku p.hosuku { padding: 30px; font-size: 16px; background-color: #fff0f5; }

@media (max-width: 600px){
	/* 600px以下 */
	section.kiyaku td br   { display: block; }
	section.kiyaku td span { font-size: 10px; margin-left: 0px; }
	section.kiyaku th      { font-size: 14px; }
	section.kiyaku th br   { display: block; }
	section.kiyaku td      { font-size: 14px; }

	section.kiyaku li         { font-size: 14px; padding-left: 26px; }
	section.kiyaku li::before { width: 14px; height: 14px; }
}


/* 記事概要記載部分にFontAwesome追加 */
article.post p.desc i { margin-left: 10px; }




/* メイン記事用 ★2023/04/04★ */
section.mainpost { background-color: #fff; }
section.mainpost .container { margin: 0 auto; padding: 10px; max-width: 1000px; }

section.mainpost .container .photo { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; }
section.mainpost .container .photo .sq { flex: 0 0 49%;  padding-top: 49%; margin-bottom: 2%; }
section.mainpost .container .photo .sq { background-position: center; background-size: cover; }

section.mainpost .container .text { }
section.mainpost .container .text h2{ color: #1a1a1a; padding-left: 20px; border-left: solid 10px #dc143c; border-bottom: solid 0px #b35b78; margin-bottom: 20px; font-size: 28px; }
section.mainpost .container .text p{ margin-top: 0; margin-bottom: 20px; font-size: 18px; line-height: 1.8; color: #fff; /*opacity: 0.8;*/ }
section.mainpost .container .text p  { color: #333333; font-size: 16px; }
section.mainpost .container .text p:last-child { margin-bottom: 0px; }

@media (max-width: 768px){
	section.mainpost .container .text h2 { font-size: 24px; }
	section.mainpost .container .text p  { font-size: 16px; }
}

/* 第37回全国大会 */
section.mainpost.pko37th { background-color: #fffaf0; }





/* 大会規約変更 ★2023/10/31★ */

/* ポイントグラフ */

div.pointgraph { margin-top: 20px; background-color: #fdf5e6; padding: 10px 0; }

div.pointgraph ul { display: flex; margin: 0px; padding: 0px; }
div.pointgraph ul.uplist  { align-items: flex-end; }
div.pointgraph ul.lowlist { align-items: flex-start; }

div.pointgraph ul li { padding: 0; flex: 1; text-align: center;}
div.pointgraph ul li::before { width: 0px; height: 0px; }


div.pointgraph .line { width: 80%; margin: 0 auto; }
div.pointgraph .line .upper { border-bottom: 1px solid #000; display: flex; }
div.pointgraph .line .lower { border-top: 1px solid #000; display: flex; }

div.pointgraph .line .upper p { margin: 0; padding: 0; height: 10px; flex: 1; }
div.pointgraph .line .lower p { margin: 0; padding: 0; height: 10px; flex: 1; }

div.pointgraph .line p.bl { border-left: 2px solid #000; }
div.pointgraph .line p.br { border-right: 2px solid #000; }
div.pointgraph .line p.blr { border-left: 2px solid #000; border-right: 2px solid #000; }

div.border { margin-top: 20px; padding: 20px 0; background-color: #fdf5e6; border: 0px solid #000; text-align: center; display: flex; align-items: center; justify-content: center; }
div.border p { margin: 0px; padding: 0px; text-align: center; }
div.border p.mrk { padding: 0 30px; }
div.border p.txt {  }

@media (max-width: 768px){
	div.border p.mrk { padding: 0 10px; }
}

section.kiyaku p.hosoku2 { background-color: #fff; margin: 0; padding: 20px 0 30px; text-align: left; }
section.kiyaku span.bld { font-weight: bold; }
section.kiyaku span.maru { margin-right: 10px; padding: 3px 8px; color: #fff; background-color: #4682b4; border-radius: 50%; }
section.kiyaku h3.basicttl { font-weight: normal; display: flex; align-items: flex-start;  }

section.kiyaku p.nrm { margin: 0px; padding: 0px; font-size: 16px; }
section.kiyaku p.posr { text-align: right;  }

table.bougu { margin-top: 0px; margin-bottom: 0px; }



/* トップ記事変更 ★2024/03/25★ */
section.toppost { }
section.toppost .container { max-width: 1000px; margin: 0 auto; padding: 10px; display: flex; justify-content: space-between; }
section.toppost .photo { flex: 40%; }
section.toppost .text  { flex: 60%; padding: 10px; }
section.toppost .photo img { width: 100%; }
section.toppost .text h2 { margin: 0 0 10px 0; padding: 5px 0px 5px 15px; font-size: 24px; border-left: solid 10px #dc143c; }
section.toppost .text h3 { margin: 0; padding: 10px 0 0 0; font-size: 20px; }
section.toppost .text p  { margin: 0; padding: 10px 0 0 0; font-size: 16px; }
section.toppost .text a  { color: #0000cd; }
section.toppost .text .arrow { padding-left: 5px; }

/* トップ記事背景色指定 */
.bk00 { background-color: #ffffff; }
.bk01 { background-color: #fff0f5; }
.bk02 { background-color: #fffaf0; }

@media (max-width: 600px){
	section.toppost .container { display: block; }
	section.toppost .text h2 { font-size: 20px; }
	section.toppost .text h3 { font-size: 16px; }
	section.toppost .text p  { font-size: 14px; }
}


/* 補足 ★2024/11/30★ */
.att { color: #dc143c; }
p.mrgu30 { margin-top: -30px; }
p.font16 { font-size: 16px;   }


