@charset "utf-8";

/* ---------------
	reset
--------------------*/
body, div,
dl, dt, dd, ul, li,
h1, h2, h3, h4, h5, h6,
figure, pre, form, fieldset, textarea, p, blockquote, th ,td {
	margin: 0;
	padding: 0;
}

ul{
	list-style-type: none;
}

table {
	line-height: 1.6;
	border: 0px;
	border-collapse:collapse;
	font-size: 1em;
}

table th {
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	font-weight: normal;
}

input {
	vertical-align: middle;
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	border-radius: 0;
}

p {
	line-height: 1.5;
}

img {
	border: none;
	vertical-align: bottom;
	outline: none;
}

address {
	font-style:normal;
}

ul li {
	line-height: 1.4;
}

*,*::before,*::after{
	box-sizing: border-box;
}

button {
	outline: none;
}

/* ---------------
　　　共用
--------------- */

html {
    font-size: 62.5%;
}

body  {
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	line-height: 1;
	color: #222;
	background-color: #fff;
	-webkit-text-size-adjust: none;
	-webkit-print-color-adjust: exact;
	font-family: "游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,"ヒラギノ角ゴシック Pro","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

/* リンクの設定 */

a {
	outline: none;
}

a:link {
	border: none;
	color: #222;
	text-decoration: none;
	outline: none;
}

a:visited {
	border: none;
	color: #222;
	text-decoration: none;
	outline: none;
}

a:active {
	border: none;
	color: #222;
	text-decoration: none;
	outline: none;
}

a:hover {
	border: none;
	color: #222;
	text-decoration: underline;
	outline: none;
}

a:focus {
	border: none;
	outline: none;
}

.alpha a:hover > img {
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}

.alpha a > img {
	-webkit-transition: all 0.25s ease 0s;
	-moz-transition: all 0.25s ease 0s;
	transition: opacity 0.25s ease 0s;
}

/* =========================================================
	ヘッダー
========================================================= */

#header {
	border-top: 3px solid #122a88;
	height: 108px;
	min-width: 960px;
}

#header_lead {
	margin: 20px auto;
	width: 960px;
	overflow: hidden;
}

#header_inner {
	margin: 0 auto;
	width: 960px;
}

#header .logo {
	padding-top: 13px;
	float: left;
	width: 377px;
}

#header .logo img {
	max-width: 100%;
	height: auto;
}

#header_logo {
	float: left;
	margin-top: -62px;
}

#header p {
	float: right;
	text-align: right;
	font-size: 13px;
	color: #999;
	width: 540px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#header nav ul {
	float: right;
	overflow: hidden;
}

#header nav ul li {
	margin-left: 12px;
	padding-left: 12px;
	float: left;
	font-size: 16px;
	border-left: 2px solid #d0d0d0;
	font-weight: bold;
}

#header nav ul li:first-child {
	margin-left: 0;
	padding-left: 0;
	border: none;
}

#header nav ul li a:hover {
	color: #e84e76;
	text-decoration: none;
}

#menu_btn,
#menu_close {
	display: none;
}

@media screen and (max-width: 767px) {

	#header {
		height: 88px;
		min-width: 100%;
		overflow: hidden;
		width: 100%;
	}
	
	#header_lead {
		margin: 7px 0 0 20px;
		width: 100%;
		overflow: hidden;
	}

	#header_inner {
		margin-top: -30px;
		width: auto;
		overflow: hidden;
		width: 100%;
	}
	
	#header_logo {
		margin: 28px 0 0 20px;
		float: left;
		width: auto;
	}
	
	#header p {
		margin: 0;
		padding: 0 0 5px 0;
		float: none;
		font-size: 1.0rem;
		text-align: left;
		width: 240px;
	}
	
	#header .logo {
		padding-top: 0;
		float: none;
		max-width: 236px;
	}
	
	#header .logo img {
		max-width: 100%;
		height: auto;
	}

	#header nav {
		position: fixed;
		top: 88px;
		right: -100%;
		width: 100%;
		height: 100%;
		overflow: hidden;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		transition: all 0.3s ease;
		z-index: 500;
		background-color: rgba(255,255,255,0.7);
	}
	
	#header nav.menu_open {
		right: 0;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	
	#header nav ul {
		padding: 0 20px;
		float: none;
		background-color: #122a88;
	}

	#header nav ul li {
		margin: 0;
		padding: 15px 0;
		font-size: 1.6rem;
		text-align: center;
		border-left: none;
		border-top: 1px solid #4155a0;
		float: none;
		font-weight: bold;
	}

	#header nav ul li a {
		color: #fff;
	}

	#menu_btn,
	#menu_close {
		margin: 12px 5px 0 0;
		padding-top: 11px;
		float: right;
		display: block;
		width: 68px;
		height: 68px;
		border-left: 1px solid #eee;
		text-align: center;
	}

	#menu_close {
		display: none;
	}

	#menu_btn img,
	#menu_close img {
		width: 37px;
		height: 45px;
	}

	.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

}

@media screen and (max-width: 374px) {

	#header_lead {
		margin: 7px 0 0 3px;
	}

	#header_logo {
		margin: 34px 0 0 5px;
		float: left;
		width: 78%;
	}

	#menu_btn,
	#menu_close {
		margin: 15px 0 0 0;
		width: 60px;
		height: 60px;
	}

	#header p {
		margin: 0;
	}	

	#header h1 {
		margin-top: -5px;
		margin-left: 5px;
	}

}


/* =========================================================
	トップ
========================================================= */

#top_main {
	height: 493px;
	overflow: hidden;
	position: relative;
	min-width: 960px;
}

#top_back {
	background: url(../img/main_back.jpg) no-repeat center bottom;
	background-size: cover;
	position: relative;
	z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    
	height: 493px;
}

#top_back_over {
	position: relative;
	z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    
	height: 493px;
	background: #fff;
	opacity: 1;
}

#top_main_inner {
	margin: 0 auto;
	width: 1040px;
	z-index: 10;
	position: relative;
}

#main_img {
	position: absolute;
	top: -113px;
	left: 365px;
	z-index: 1;
	opacity: 0;
}

#main_text {
	opacity: 0;
}

#top_main h2 {
	padding-top: 25px;
	z-index: 2;
	position: relative;
}

#entry_btn {
	margin: 35px 0 0 95px;
	width: 360px;
	height: 66px;
	text-align: center;
	line-height: 66px;
	z-index: 2;
	position: relative;
}

#entry_btn a {
	border-bottom: 4px solid #960921;
	width: 360px;
	height: 66px;
	color: #fff;
	display: block;
	font-size: 22px;
	text-align: center;
	background: #e84e76 url(../img/entry_arrow.png)  no-repeat right bottom;
}

#entry_btn a:hover {	
	text-decoration: none;
	border-bottom: none;
}

#entry_btn:hover {	
	border-top: transparent 4px solid;
}

@media screen and (max-width: 767px) {

	#top_main {
		height: 225px;
		min-width: 100%;
	}
	
	#top_back {
		height: 225px;
	}
	
	#top_back_over {
		height: 225px;
	}
	
	#top_main_inner {
		height: 225px;
		width: auto;
	}
	
	#main_img {
		margin: auto 0;
		position: absolute;
		top: auto;
		bottom: auto;
		left: auto;
		right: -60px;
		width: 280px;
		height: auto;
	}
	
	#main_text {
		margin-left: 10px;
		width: 232px;
	}
	
	#top_main h2 {
		padding-top: 15px;
	}
	
	#top_main h2 img {
		width: 240px;
		height: auto;
	}
	
	#entry_btn {
		margin: 15px auto 0 auto;
		width: 180px;
		height: 33px;
		text-align: center;
		line-height: 33px;
		background-size: 20px auto;
	}
	
	#entry_btn a {
		width: 180px;
		height: 33px;
		border-bottom: 2px solid #960921;
		color: #fff;
		display: block;
		font-size: 1.6rem;
		background-size: 20px auto;
	}
	
}

@media screen and (max-width: 374px) {

	#main_img {
		left: auto;
		right: -90px;
	}

}

#top_topics {
	margin: 0 auto;
	width: 960px;
	overflow: hidden;
	display: table;
}

#top_topics h3 {
	width: 100px;
	background-color: #122a88;
	text-align: center;
	color: #fff;
	font-size: 16px;
	display: table-cell;
	vertical-align: middle;		
}

#top_topics ul {
	padding: 12px 0;
	float: left;
	width: 860px;
}

#top_topics ul li {
	padding: 5px 20px;
	font-size: 16px;
	overflow: hidden;
	font-weight: bold;
}

#top_topics ul li a {
	text-decoration: underline;
	color: #e84e76
}

@media screen and (max-width: 767px) {

	#top_topics {
		width: auto;
		display: table;
		width: 100%;
	}
	
	#top_topics h3 {
		width: 100px;
		color: #fff;
		font-size: 1.6rem;
		display: table-cell;
		vertical-align: middle;		
	}
	
	#top_topics ul {
		padding: 6px 0;
		float: none;
		display: table-cell;
		width: calc(100% - 100px);
	}
	
	#top_topics ul li {
		padding: 5px 15px;
		font-size: 1.6rem;
		height: auto;
		overflow: hidden;
	}

}

#top_news {
	padding-bottom: 60px;
	min-width: 960px;
	background: url(../img/news_back.png);
}

#top_news_inner {
	margin: 0 auto;
	width: 960px;
	overflow: hidden;
}

#top_news_box {
	margin-top: 60px;
	margin-right: 22px;
	width: 620px;
	height: 400px;
	background-color: #fff;
	float: left;
	overflow: hidden;
}

#top_news_box h2 {
	margin-bottom: 20px;
	float: left;
}

#top_news_box h2 img {
	width: 120px;
	height: auto;
}

#top_news_box p {
	margin: 35px 40px 0 0;
	float: right;
	font-size: 13px;
	background-color: #fdedf1;
	border: 1px solid #e84e76;
}

#top_news_box p a {
	padding: 3px 24px 2px 8px;
	color: #eb6161;
	display: block;
	background: url(../img/news_arrow_off.png) no-repeat right 10px center;
}

#top_news_box p a:hover {
	text-decoration: none;
	color: #fff;
	background: #e84e76 url(../img/news_arrow_on.png) no-repeat right 10px center;
}

#top_news_box_inner {
	margin: 0 35px 0 30px;
	clear: both;
	height: 290px;
	overflow-y: scroll;
}

#top_news_box dl {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.8;
	overflow: hidden;
}

#top_news_box dt {
	width: 100px;
	color: #666;
	float: left;
}

#top_news_box dd {
	width: 440px;
	float: left;
}

#top_news_box dd a {
	color: #e84e76;
	text-decoration: underline;
}

#top_news_box dd a:hover {
	text-decoration: none;
}

#top_fb {
	margin-top: 60px;
	width: 318px;
	height: 400px;
	float: left;
}

#top_news_banner {
	padding-top: 20px;
	clear: both;
}

#top_news_banner ul li {
	margin-bottom: 20px;
	width: 960px;
	text-align: center;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#top_news_banner ul li a {
	display: block;
}

#top_news_banner ul li img {
	vertical-align: middle;
}

.banner_abema {
	background: #000 url(../img/link_arrow.png) no-repeat right bottom;
	background-size: 40px auto;
	height: 110px;
	line-height: 110px;
}

#top_news_banner ul li:hover {
	opacity: 0.7;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.news_link_pc {
	display: block;
}

.news_link_sp {
	display: none;
}
@media screen and (max-width: 767px) {

	#top_news {
		padding-bottom: 40px;
		height: auto;
		min-width: 100%;
		background-size: 250px auto;
	}
	
	#top_news_inner {
		margin: 0 20px;
		width: auto;
	}
	
	#top_news_box {
		margin-top: 40px;
		margin-right: 0;
		width: auto;
		height: auto;
		float: none;
		text-align: center;
	}
	
	#top_news_box h2 img {
		width: 91px;
		height: auto;
	}
	
	#top_news_box p {
		margin: 20px auto 30px;
		float: none;
		text-align: center;
		display: inline-block;
		font-size: 1.3rem;
	}
	
	#top_news_box p a {
		padding: 6px 30px;
		background: url(../img/news_arrow_off.png) no-repeat right 10px center;
		background-size: 4.5px auto;
	}
	
	#top_news_box_inner {
		margin: 0 20px;
		height: auto;
		text-align: left;
	}
	
	#top_news_box dt {
		width: auto;
		float: none;
	}
	
	#top_news_box dd {
		width: auto;
		float: none;
	}
	
	#top_news_box p.news_link_pc {
		display: none;
	}
	.news_link_sp {
		display: block;
	}

	#top_fb {
		margin: 20px auto 0;
		width: auto;
		height: 400px;
		float: none;
		text-align: center;
	}

	#top_news_banner ul li {
		margin-bottom: 10px;
		width: auto;
	}
	
	#top_news_banner ul li img {
		width: calc(100% - 40px);
	}
	
	.banner_abema {
		padding: 15px 0;
		background: #000 url(../img/link.png) no-repeat right bottom;
		background-size: 20px auto;
		height: auto;
		line-height: 1;
	}
	
}

#top_menu {
	margin: 60px auto 110px;
	width: 960px;
}

#top_menu h3 {
	margin-bottom: 40px;
	padding-bottom: 20px;
	text-align: center;
	position: relative;
}

#top_menu h3::before {
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	width: 60px;
	height: 4px;
	background-color: #e84e76;
}

#top_menu h3 img {
	width: 115px;
	height: auto;
}

#top_menu ul {
	overflow: hidden;
}

#top_menu li {
	margin: 0 0 3px 3px;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	width: 318px;
	height: 184px;
	float: left;
	position: relative;
}

#top_menu li a::before {
	position: absolute;
	right: 0;
	bottom: 0;
	content: '';
	width: 40px;
	height: 40px;
	background: url(../img/link_arrow.png) no-repeat;
	background-size: 40px auto;
}

#top_menu li a {
	padding-top: 125px;
	color: #fff;
	display: block;
	width: 318px;
	height: 184px;
	z-index: 10;
	position: relative;
}

#top_menu li a:hover {
	text-decoration: none;
}

#top_menu li:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 318px;
	height: 184px;
}

#top_menu li:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 318px;
	height: 184px;
	opacity: 1;
    animation: fadeOut 0.4s ease forwards;
    -webkit-animation: fadeOut 0.4s ease forwards;
}

#top_menu li:hover:after {
    animation: fadeIn 0.5s ease forwards;
    -webkit-animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    0% {opacity: 1}
    100% {opacity: 0}
}

@keyframes fadeOut {
    0% {opacity: 0}
    100% {opacity: 1}
}

#top_menu #navi_outline {
	margin-left: 0;
}

#top_menu #navi_outline:after {
	background: url(../img/menu_img_outline_off.jpg) no-repeat;
}

#navi_course:after {
	background: url(../img/menu_img_course_off.jpg) no-repeat;
}

#navi_player:after {
	background: url(../img/menu_img_player_off.jpg) no-repeat;
}

#top_menu #navi_entry {
	margin-left: 0;
}

#top_menu #navi_entry:after {
	background: url(../img/menu_img_entry_off.jpg) no-repeat;
}

#navi_result:after {
	background: url(../img/menu_img_result_off.jpg) no-repeat;
}

#navi_contact:after {
	background: url(../img/menu_img_contact_off.jpg) no-repeat;
}

#top_menu #navi_photo {
	margin-left: 0;
	margin-bottom: 0;
	width: 960px;
}

#top_menu #navi_photo:before {
	width: 960px;
}

#top_menu #navi_photo:after {
	width: 960px;
	background: url(../img/menu_img_photo_off.jpg) no-repeat;
}

#navi_outline:before {
	background: url(../img/menu_img_outline_on.jpg) no-repeat;
}

#navi_course:before {
	background: url(../img/menu_img_course_on.jpg) no-repeat;
}

#navi_player:before {
	background: url(../img/menu_img_player_on.jpg) no-repeat;
}

#top_menu #navi_entry:before {
	background: url(../img/menu_img_entry_on.jpg) no-repeat;
}

#navi_result:before {
	background: url(../img/menu_img_result_on.jpg) no-repeat;
}

#navi_contact:before {
	background: url(../img/menu_img_contact_on.jpg) no-repeat;
}

#top_menu #navi_photo:before {
	background: url(../img/menu_img_photo_on.jpg) no-repeat;
}

#navi_outline a {
	background: url(../img/icon_outline.png) no-repeat center 40px;
}

#navi_course a {
	background: url(../img/icon_course.png) no-repeat center 40px;
}

#navi_player a {
	background: url(../img/icon_player.png) no-repeat center 40px;
}

#navi_entry a {
	background: url(../img/icon_entry.png) no-repeat center 36px;
}

#navi_result a {
	background: url(../img/icon_result.png) no-repeat center 31px;
}

#navi_contact a {
	background: url(../img/icon_contact.png) no-repeat center 48px;
}

#top_menu #navi_photo a {
	width: 960px;
	background: url(../img/icon_photo.png) no-repeat center 40px;
}

@media screen and (max-width: 767px) {

	#top_menu {
		margin: 40px 18.5px;
		width: auto;
	}
	
	#top_menu h3 {
		margin-bottom: 30px;
		padding-bottom: 18px;
	}
	
	#top_menu h3::before {
		width: 60px;
		height: 3px;
	}
	
	#top_menu h3 img {
		width: 85px;
	}
	
	#top_menu li {
		margin: 0 1.5px 3px 1.5px;
		font-size: 1.8rem;
		width: calc(50% - 3px);
		height: 96px;
		position: relative;
	}

	#top_menu li a::before {
		width: 20px;
		height: 20px;
		background: url(../img/link.png) no-repeat;
		background-size: 20px auto;
	}
	
	#top_menu li a {
		padding-top: 60px;
		width: 100%;
		height: 96px;
	}
	
	#top_menu li:before {
		display: none;
	}
	
	#top_menu li:after {
		display: none;
	}
	
	#top_menu #navi_outline {
		margin-left: 1.5px;
		background: url(../img/menu_img_outline.jpg) no-repeat center center;
		background-size: cover;
	}
	
	#navi_course {
		background: url(../img/menu_img_course.jpg) no-repeat center center;
		background-size: cover;
	}
	
	#navi_player {
		background: url(../img/menu_img_player.jpg) no-repeat center center;
		background-size: cover;
	}
	
	#top_menu #navi_entry {
		margin-left: 1.5px;
		background: url(../img/menu_img_entry.jpg) no-repeat center center;
		background-size: cover;
	}
	
	#navi_result {
		background: url(../img/menu_img_result.jpg) no-repeat center center;
		background-size: cover;
	}
	
	#navi_contact {
		background: url(../img/menu_img_contact.jpg) no-repeat center center;
		background-size: cover;
	}
	
	#top_menu #navi_photo {
		margin: 0 1.5px;
		width: calc(100% - 3px);
		background: url(../img/menu_img_photo.jpg) no-repeat center center;
		background-size: cover;
	}
	
	#navi_outline a {
		background: url(../img/icon_outline.png) no-repeat center 20px;
		background-size: 34px auto;
	}
	
	#navi_course a {
		background: url(../img/icon_course.png) no-repeat center 20px;
		background-size: 44.5px auto;
	}
	
	#navi_player a {
		background: url(../img/icon_player.png) no-repeat center 20px;
		background-size: 36.5px auto;
	}
	
	#navi_entry a {
		background: url(../img/icon_entry.png) no-repeat center 16px;
		background-size: 25px auto;
	}
	
	#navi_result a {
		background: url(../img/icon_result.png) no-repeat center 16px;
		background-size: 42.5px auto;
	}
	
	#navi_contact a {
		background: url(../img/icon_contact.png) no-repeat center 24px;
		background-size: 39.5px auto;
	}
	
	#top_menu #navi_photo a {
		width: auto;
		background: url(../img/icon_photo.png) no-repeat center 20px;
		background-size: 40px auto;
	}

}

#top_partner {
	margin: 0 auto;
	width: 960px;
}

.partner_column2 h4 {
	margin-bottom: 20px;
	padding: 10px 0;
	border-top: 2px solid #222222;
	border-bottom: 1px solid #222222;
	text-align: center;
	line-height: 1.3;
	font-size: 22px;
	width: 460px;
}

.partner_column2 {
	margin-left: 40px;
	margin-bottom: 40px;
	float: left;
	width: 460px;
	text-align: center;
}

.partner_column2:first-child {
	margin-left: 0;
}

.partner_column1 ul, 
.partner_column2 ul {
	margin: 0 auto;
	text-align: center;
	display: table;
}

.partner_column1 li,
.partner_column2 li {
	padding: 20px 25px;
	display: table-cell;
	vertical-align: middle;
}

.partner_column1 {
	clear: both;
	width: 960px;	
}

.partner_column1 h4 {
	margin-bottom: 20px;
	border-top: 2px solid #222222;
	border-bottom: 1px solid #222222;
	text-align: center;
	line-height: 2.2;
	font-size: 22px;
}

.partner_big img {
	max-width: 285px;
	max-height: 65px;	
}

.partner_middle img {
	max-width: 220px;
	max-height: 50px;	
}

@media screen and (max-width: 767px) {

	#top_partner {
		margin: 0 20px;
		width: auto;
	}

	#top_partner a {
		display: block;
	}

	#top_partner img {
		width: 100%;
		height: auto;
	}

	.partner_column2 {
		margin-left: 0;
		margin-bottom: 20px;
		float: none;
		width: auto;
	}
	
	.partner_column2 ul {
		width: 100%;
	}

	.partner_column2 h4 {
		margin-bottom: 10px;
		width: auto;
	}
	
	.partner_column2 li {
		padding: 10px 15px;
		display: table-cell;
		vertical-align: middle;
	}

	.partner_column1 {
		overflow: hidden;
		width: auto;
	}

	.partner_column1 ul {
		overflow: hidden;
		width: 100%;
	}
	
	.partner_column1 li {
		padding: 10px 5px;
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}
	
	.partner_column1 .partner_big li,
	.partner_column1 .partner_middle li {
		display: inline-block;
		width: calc(50% - 5px);
	}

	.partner_middle_end {
		margin: 0 auto;
		display: inline-block;
		text-align: center;
	}
	
	.partner_column1 .partner_middle_end li {
		padding: 10px 20px;
		width: calc(50% - 10px);
	}
	
	.partner_middle_end li a {
		display: block;
	}

	#partner_small_box {
		margin: 0 auto 30px;
		text-align: center;
	}

	.partner_column1 .partner_small {
		display: inline;
	}

	.partner_column1 .partner_small li {
		display: inline-block;
		width: calc(25% - 10px);
	}
	
	.partner_column1 .partner_small li img {
		max-width: 70px;
		max-height: 25px;
		height: auto;
		width: auto !important;
	}

	.partner_column1 h4 {
		margin-bottom: 10px;
	}
	
	.partner_column2:first-child .partner_big img {
		max-width: 50%;
		max-height: 50%;
	}
	
	.partner_column2 .partner_big img {
		max-width: 70%;
		max-height: 70%;
	}
	
	.partner_column1 .partner_big img,
	.partner_column1 .partner_middle img	 {
		max-width: 70%;
		max-height: 70%;
	}

}

@media screen and (max-width: 374px) {

	.partner_column1 .partner_small li img {
		max-width: 60px;
	}

}


/* =========================================================
	フッター
========================================================= */

#up {
	position: fixed;
	right: 20px;
	z-index: 200;
	bottom: 30px;
}

#up img {
	width: 80px;
	height: 80px;
}

footer {
	padding-top: 30px;
	height: 200px;
	min-width: 960px;
	background: url(../img/footer_back.png) repeat-x;
	background-size: auto 30px;
	position: relative;
}

#footer {
	position: relative;
	background-color: #ddd;
}

#footer:before {
	position: absolute;
	content: '';
	bottom: 194px;
	right: 47px;
	width: 24px;
	height: 39px;
	background: url(../img/pin.png) no-repeat;
	z-index: -1;
}

#footer_logo {
	width: 305px;
	float: left;
}

#footer_logo img {
	max-width: 100%;
	height: auto;
}

#footer_inner {
	margin: 0 auto;
	padding: 50px 0 40px;
	width: 960px;
	overflow: hidden;
}

#footer_navi {
	margin: 5px 0 15px;
	float: right;
	overflow: hidden;
}

#footer_navi li {
	margin-left: 8px;
	padding: 2px 0 0 8px;
	border-left: 1px solid #666;
	float: left;
	font-size: 14px;
	line-height: 1.2;
}

#footer_navi li:first-child {
	margin-left: 0;
	padding-left: 0;
	border: none;
}

#footer_navi li a {
	color: #666;
}

#footer_navi li a:hover {
	color: #222;
	text-decoration: none;
}

#footer_btn {
	float: right;
}

#footer_btn li {
	margin-left: 8px;
	float: left;
	height: 32px;
	line-height: 32px;
	font-size: 13px;
	text-align: center;
}

#footer_btn li:first-child {
	margin-left: 0;
}

#footer_btn li a {
	color: #fff;
	height: 32px;
	display: block;
}

#footer_btn li a:hover {
	text-decoration: none;
	border: none;
}

#footer_btn li:hover {
	border-top: transparent 3px solid;	
}

#fbtn_contact a {
	width: 185px;
	border-bottom: 3px solid #d36f28;
	background-color: #e88f4e;
}

#fbtn_contact a span {
	padding-left: 25px;
	background: url(../img/btn_icon_contact.png) no-repeat 0 center;
	background-size: 19px auto;
}

#fbtn_entry a {
	width: 185px;
	border-bottom: 3px solid #cf1f3c;
	background-color: #e84e76;
}

#fbtn_entry a span {
	padding-left: 25px;
	background: url(../img/btn_icon_entry.png) no-repeat 0 center;
	background-size: 19px auto;
}

#fbtn_leopalace a {
	width: 235px;
	border-bottom: 3px solid #aa830f;
	background: #c49c20 url(../img/btn_icon_link.png) no-repeat right 8px center;
	background-size: 11px auto;
}

#fbtn_leopalace a span {
	padding-left: 20px;
	padding-right: 10px;
	background: url(../img/btn_icon_leopalace.png) no-repeat 0 center;
	background-size: 17px auto;
}

#footer_bottom {
	background-color: #444444;
}

#footer_bottom_inner {
	margin: 0 auto;
	width: 960px;
	overflow: hidden;
}

#footer_bottom p {
	line-height: 30px;
}

#footer_bottom p {
	font-size: 10px;
	float: right;
	color: #999;
}

#footer_bottom_text {
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -480px;
}

#footer_bottom_text p {
	font-size: 12px;
	float: left;
	color: #ddd;
	width: 640px;
	white-space: nowrap;
    overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {

	#up {
		position: fixed;
		right: 7px;
		bottom: 30px;
		z-index: 200;
	}
	
	#up img {
		width: 45px;
		height: 45px;
		opacity: 1;
	}

	footer {
		padding-top: 24px;
		height: 560px;
		min-width: 100%;
		background-size: auto 25px;
	}
	
	#footer:before {
		position: absolute;
		content: '';
		bottom: 576px;
		right: 23px;
		width: 12px;
		height: 20px;
		background-size: 12px auto;
	}
	
	#footer_logo {
		margin: 0 auto 30px;
		width: 236px;
		float: none;
		text-align: center;
	}
	
	#footer_inner {
		margin: 0 auto;
		padding: 24px 0 20px;
		width: auto;
	}
	
	#footer_navi {
		margin: 0 0 30px;
		float: none;
		border-top: 1px solid #eee;
	}
	
	#footer_navi li,
	#footer_navi li:first-child {
		margin: 0;
		padding: 15px 0;
		float: left;
		font-size: 1.4rem;
		width: 50%;
		text-align: center;
		border-left: 0;
		border-bottom: 1px solid #eee;
	}

	#footer_navi li {
		border-left: 1px solid #eee;
		width: calc(50% - 1px);
	}
	
	#footer_navi li:nth-child(odd) {
		border-left: none;
		width: 50%;
	}
	
	#footer_btn {
		float: none;
		margin: 0 20px;
	}
	
	#footer_btn li {
		height: auto;
		text-align: center;
		font-size: 1.6rem;
		margin: 0 0 10px 0;
		width: 100%;
		float: none;
	}
	
	#footer_btn li a {
		padding: 5px 0;
		height: auto;
		width: 100%;
	}
	
	#fbtn_contact a {
		width: auto;
	}
	
	#fbtn_contact a span {
		padding-left: 32px;
		background-size: auto 15px;
	}
	
	#fbtn_entry a {
		width: auto;
	}
	
	#fbtn_entry a span {
		padding-left: 32px;
		background-size: auto 20px;
	}
	
	#fbtn_leopalace a {
		width: auto;
		background: #c49c20 url(../img/btn_icon_link.png) no-repeat right 12px center;
		background-size: 10px auto;
	}
	
	#fbtn_leopalace a span {
		padding-left: 24px;
		background-size: 22px auto;
	}
	
	#footer_bottom_inner {
		padding: 10px 0;
		width: auto;
	}
	
	#footer_bottom {
		padding-top: 20px;
	}
	
	#footer_bottom p {
		line-height: 1.8;
	}
	
	#footer_bottom p:first-child {
		font-size: 1.1rem;
		float: none;
		text-align: center;
	}
	
	#footer_bottom p {
		font-size: 1.0rem;
		float: none;
		text-align: center;
	}

	#footer_bottom_text {
		position: absolute;
		left: 50%;
		bottom: 0;
		margin-left: -142px;
	}

	#footer_bottom_text p {
		font-size: 1.1rem;
		float: none;
		text-align: center;
		width: 300px;
	}

	#footer_bottom_text p span {
		display: none;
	}
}

/* =========================================================
	下層共通パーツ
========================================================= */

#page_header {
	background: url(../img/back.png);
}

#page_header_inner {
	margin: 0 auto;
	width: 960px;
	height: 200px;
	display: table;
}

#page_header h1 {
	padding-left: 90px;
	font-size: 42px;
	color: #fff;
	font-weight: bold;
	display: table-cell;
	vertical-align: middle;
}

/* ----------------------------------------------------------------------*/
/* ページ毎にヘッダー画像とアイコンを変える場合はここに追加してください */

.page_common #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_common h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* 大会概要 */
.page_outline #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_outline h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* コース紹介 */
.page_course #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_course h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* 出場選手 */
.page_player #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_player h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* 募集要項 */
.page_entry #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:auto;
}

.page_entry h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* 大会結果 */
.page_result #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_result h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* お知らせ */
.page_news #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_news h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* アクセス */
.page_access #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_access h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* サイトマップ */
.page_sitemap #page_header_img {
	background: url(../img/header_img.jpg) no-repeat center top;
	background-size:cover;
}

.page_sitemap h1 {
	background: url(../img/icon.png) no-repeat 0 center;
}
/* ----------------------------------------------------------------------*/

.page {
	padding-bottom: 30px;
	background: url(../img/news_back.png);
}

.page_inner {
	margin: 0 auto;
	width: 960px;
}

#path {
	padding: 20px 0 30px;
}

#path ul {
	overflow: hidden;
}

#path li {
	font-size: 12px;
	float: left;
}

.path_mark {
	margin-right: 10px;
	padding-right: 15px;
	background: url(../img/path.png) no-repeat right center;
}

#path li a {
	color: #e84e76;
	text-decoration: underline;
	
}

.page_link {
	margin-bottom: 40px;
	width: 960px;
}

.page_link ul {
	overflow: hidden;
}

.page_link li {
	float: left;
	width: 50%;
	height: 60px;
	font-size: 18px;
	text-align: center;
	display: table;
	position: relative;
}

.page_link li a {
	color: #fff;
	height: 60px;
	background-color: #e84e76;
	font-weight: bold;
	display: table-cell;
	vertical-align: middle;
}

.page_link li a:hover {
	background-color: #d31837;
	text-decoration: none;
}

.page_link li a span {
	padding-right: 20px;
	background: url(../img/arrow_down.png) no-repeat right center;
}

.page_link li:last-child:after {
	position: absolute;
	content: '';
	width: 1px;
	height: 40px;
	left: 0;
	top: 10px;
	background-color: #eea5b8;
}

.page_column {
	margin-bottom: 20px;
	padding: 40px;
	overflow: hidden;
	background-color: #fff;
}

.page h2 {
	margin-bottom: 40px;
	padding-bottom: 20px;
	color: #e84e76;
	font-size: 26px;
	font-weight: bold;
	position: relative;
	text-align: center;
	clear: both;
	line-height: 1.2;
}

.page h2::after {
	margin: 0 auto;
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
	width: 100px;
	height: 2px;
	background-color: #e84e76;
}

.page h3 {
	margin: 30px 0 20px;
	padding: 12px 15px;
	background-color: #e84e76;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	border-radius: 4px;
	clear: both;
	line-height: 1.3;
}

.page h4 {
	margin: 30px 0 20px;
	padding: 12px 15px;
	background-color: #fde8ed;
	color: #e84e76;
	font-size: 18px;
	font-weight: bold;
	border-radius: 4px;
	clear: both;
	line-height: 1.3;
}

.page h5 {
	margin: 30px 0 20px;
	font-size: 18px;
	font-weight: bold;
	color: #222;	
	clear: both;
	line-height: 1.3;
}

.page p {
	margin-bottom: 10px;
	font-size: 16px;
	color: #222;
	line-height: 1.5;
}

.page p a {
	text-decoration: underline;
	color: #e84e76;
}

.page p a:hover {
	text-decoration: none;
	color: #e84e76;
}

.page p em {
	margin: 20px 0;
	font-size: 20px;
	font-weight: bold;
	color: #e84e76;
	font-style: normal;
}

.page p strong {
	font-weight: bold;
}

.page p.min {
	font-size: 14px;
	color: #666;
}

.page p.caption {
	padding-top: 8px;
	font-size: 14px;
	color: #666;	
}

.column_1 {
	margin-bottom: 40px;
	clear: both;
	overflow: hidden;
}

.column_2 {
	margin-bottom: 40px;
	overflow: hidden;
}

.box_img img {
	max-width: 100%;
	height: auto;
}

.img_l {
	width: 100%;
}

.img_m {
	width: 420px;
}

.img_s {
	width: 310px;
}

.img_l,
.img_m,
.img_s {
	margin-bottom: 5px;
}

.img_center {
	margin: 0 auto;
	text-align: center;	
}

.img_left {
	margin-right: 40px;
	float: left;
}

.img_right {
	margin-left: 40px;
	float: right;
}
/* ============ news ============ */
#news_list {
	margin-bottom: 40px;
}
#news_list dl {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.8;
	overflow: hidden;
}

#news_list dt {
	width: 100px;
	color: #666;
	float: left;
}

#news_list dd {
	width: 760px;
	float: left;
}

#news_list dd a {
	color: #e84e76;
	text-decoration: underline;
}

#news_list dd a:hover {
	text-decoration: none;
}
.btn_c {
	margin: 0 auto 20px;
	width: 430px;
	height: 66px;
	line-height: 66px;
	text-align: center;
	border-bottom: 4px solid #960921;
	background: #e84e76 url(../img/entry_arrow.png) no-repeat right bottom;
}

.btn {
	margin: 0 20px 20px 0;
	width: 430px;
	height: 66px;
	line-height: 66px;
	text-align: center;
	float: left;
	border-bottom: 4px solid #960921;
	background: #e84e76 url(../img/entry_arrow.png) no-repeat right bottom;
}
.btn_c:hover{
	border-top: 4px solid #fff;
	border-bottom: none;
}
.btn:hover {
	border-top: 4px solid #fff;
	border-bottom: none;
}

.btn_right {
	margin-right: 0;
}

.btn_c a {
	color: #fff;
	width: 430px;
	height: 66px;
	font-size: 22px;
	font-weight: bold;
	display: block;
}

.btn_c a:hover {
	text-decoration: none;
}
.btn a {
	color: #fff;
	width: 430px;
	height: 66px;
	font-size: 22px;
	font-weight: bold;
	display: block;
}

.btn a:hover {
	text-decoration: none;
}
.btn_pdf span {
	padding-right: 28px;
	background: #e84e76 url(../img/icon_pdf.png) no-repeat right center;
}

.btn_link span {
	padding-right: 28px;
	background: #e84e76 url(../img/icon_link.png) no-repeat right center;
}

.link_pdf {
	padding:10px 28px 10px 0;
	background: url(../img/icon_pdf2.png) no-repeat right center;
}

.link_out {
	padding:10px 28px 10px 0;
	background: url(../img/icon_link2.png) no-repeat right center;
}

.archives_table {
	margin-bottom: 30px;
	width: 100%;
	overflow: hidden;
}

.archives_table li {
	text-align: center;
	width: 20%;
	float: left;
	font-size: 16px;
	background: url(../img/link_arrow.png) no-repeat right bottom;
	background-size: 30px auto;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

.archives_table li:last-child {
	border-right: 1px solid #ddd;
}
.archives_table li:nth-child(5n) {
	border-right: 1px solid #ddd;
}
.archives_table li a {
	padding: 15px 0;
	display: block;
	color: #e84e76;
}

.archives_table li a:hover {
	text-decoration: underline;
	background: #fef6f8 url(../img/link_arrow.png) no-repeat right bottom;
	background-size: 30px auto;
}

.table_type1,
.table_type3,
.table_type4,
.table_type5 {
	margin-bottom: 40px;
	width: 100%;
	font-size: 16px;
}

table .pale {
	color: #bbb;
	margin-left: 20px;
}

.table_type1 th,
.table_type1 td,
.table_type2 th,
.table_type2 td {
	padding: 12px 40px;
}

.table_type3 th,
.table_type3 td,
.table_type4 th,
.table_type4 td,
.table_type5 th,
.table_type5 td {
	padding: 12px 15px;
}

.table_type1 th,
.table_type2 th {
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	background-color: #fef6f8;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	width: 20%;
}

.table_type1 td,
.table_type2 td {
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.table_type3 th,
.table_type4 th,
.table_type5 th {
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	background-color: #fef6f8;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.table_type3 tr th:last-child,
.table_type4 tr th:last-child,
.table_type5 tr th:last-child {
	border-right: none;
}

.table_type3 td,
.table_type4 td,
.table_type5 td {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.table_type3 tr td:last-child,
.table_type4 tr td:last-child,
.table_type5 tr td:last-child {
	border-right: none;
}
.table_member {
	width: 100%;
	margin: 20px 0 40px;
}
.table_member th{
	font-size: 1.4em;
	width: 15%;
	padding: 12px 40px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    background-color: #fef6f8;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.table_member td {
	font-size: 1.4em;
	padding: 12px 40px;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
table .btn {
	margin: 0;
	padding-right: 10px;
	width: 100%;
	height: auto;
	border-bottom: 2px solid #960921;
	background-image: none;
	background-color: #e84e76;
}

table .btn a {
	padding: 0 0 0 10px;
	font-size: 14px;
	width: 100%;
	height: auto;
	line-height: 2.2;
	font-weight: normal;
	display: block;
	background: #e84e76 url(../img/arrow_right.png) no-repeat right center;
}

table .btn:hover {
	border-top: 2px solid #fff;
}

.table_left {
	margin-bottom: 40px;
	width: 420px;
	float: left;	
}

.table_right {
	margin-left: 40px;
	margin-bottom: 40px;
	width: 420px;
	float: left;	
}

.table_type4 caption,
.table_type5 caption {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
	text-align: left;
}

.table_type4 caption {
	color: #004097;
}

.table_type5 caption {
	color: #008080;
}

.table_type4 th {
	background-color: #e5ecf4;
}

.table_type5 th {
	background-color: #e5f2f2;
}

.table_type4 td,
.table_type5 td {
	text-align: center;
}

.table_type4 tr th:last-child,
.table_type5 tr th:last-child {
	background: none;
}

.sitemap_box {
	margin-left: 40px;
	width: 420px;
	float: left;
}

.sitemap_box:first-child {
	margin-left: 0;
}

.sitemap_box h2 {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 16px;
	font-weight: normal;
	text-align: left;
}

.sitemap_box h2::after {
	display: none;
}

.sitemap_box h3 {
	margin: 0 0 20px 1em;
	padding: 0 0 0 20px;
	font-size: 16px;
	font-weight: normal;
	text-align: left;
	background: url(../img/keisen.png) no-repeat 0 center;
}

.sitemap_box h4 {
	margin: 0 0 20px 2.5em;
	padding: 0 0 0 20px;
	font-size: 16px;
	font-weight: normal;
	text-align: left;
	background: url(../img/keisen.png) no-repeat 0 center;
}

.sitemap_box h2 a,
.sitemap_box h3 a,
.sitemap_box h4 a {
	color: #e84e76;
	text-decoration: underline;
}
.sitemap_box a:hover{
	text-decoration: none;
}

@media screen and (max-width: 767px) {

	#page_header {
		background-size: 22px auto;
	}
	
	#page_header_inner {
		width: 100%;
		height: 100px;
		display: table;
	}
	
	#page_header h1 {
		padding-left: 50px;
		font-size: 2.0rem;
		background-position: 10px center;
		background-size: 35px auto;
	}

	#page_header_img {
		background-size: cover;
	}

	.page {
		padding-bottom: 20px;
		background-size: 250px auto;
	}
	
	.page_inner {
		margin: 0 10px;
		width: auto;
	}
	
	#path {
		padding: 10px 0 20px;
	}
	
	.path_mark {
		margin-right: 5px;
		padding-right: 10px;
	}
	
	.page_link {
		margin-bottom: 20px;
		width: auto;
	}
	
	.page_link li {
		width: 100%;
		height: 40px;
		font-size: 1.4rem;
	}
	.page_link li {
		border-bottom: 1px solid #eea5b8;
	}	
	.page_link li a {
		height: 40px;
	}
	
	.page_link li a span {
		padding-right: 15px;
	}
	.page_link li:last-child:after {
		display: none;
		width: 0px;
		height: 0px;
		background-color: none;
	}
	.page_column {
		margin-bottom: 10px;
		padding: 10px;
		width: auto;
	}
	
	.page h2 {
		margin-bottom: 20px;
		padding-bottom: 15px;
		font-size: 2.0rem;
	}
	
	.page h3 {
		margin: 20px 0;
		font-size: 1.6rem;
	}
	
	.page h4 {
		margin: 20px 0;
		font-size: 1.6rem;
	}
	
	.page h5 {
		margin: 20px 0;
		font-size: 1.6rem;
	}
	
	.page p {
		font-size: 1.4rem;
		line-height: 1.4;
	}
	
	.page p em {
		font-size: 1.8rem;
	}
	
	.page p.min {
		font-size: 1.2rem;
	}
	
	.page p.caption {
		padding-top: 5px;
		font-size: 1.2rem;
	}
	
	.column_1 {
		margin-bottom: 20px;
		width: 100%;
	}
	
	.column_2 {
		margin-bottom: 20px;
		width: 100%;
	}
	
	.img_l {
		width: 100%;
	}
	
	.img_m {
		width: 100%;
	}
	
	.img_s {
		width: 100%;
	}
	
	.img_left {
		margin-right: 0;
		float: none;
	}
	
	.img_right {
		margin-left: 0;
		float: none;
	}
	#news_list dt {
		width: auto;
		float: none;
	}

	#news_list dd {
		width: auto;
		float: none;
	}
	.btn_c {
		margin: 0 0 20px 0;
		width: 100%;
		height: auto;
		line-height: 30px;
		padding: 10px;
		float: none;
	}
	
	.btn_c a {
		width: 100%;
		height: auto;
		font-size: 1.8rem;
	}
	.btn {
		margin: 0 0 20px 0;
		width: 100%;
		height: auto;
		line-height: 30px;
		padding: 10px;
		float: none;
	}
	
	.btn a {
		width: 100%;
		height: auto;
		font-size: 1.8rem;
	}
	
	.link_pdf {
		display: inline-block;
		padding-right: 30px;
	}
	
	.link_out {
		display: inline-block;
		padding-right: 30px;
	}

	.archives_table li {
		width: 50%;
		font-size: 1.6rem;
		background-size: 15px auto;
	}

	.archives_table li:nth-child(2n) {
		border-right: 1px solid #ddd;
	}
	.archives_table li:nth-child(5n) {
		border-right: none;
	}
	.archives_table li:last-child {
		border-right: 1px solid #ddd;
	}
	.archives_table li a {
		padding: 10px 0;
	}

	.table_type1,
	.table_type2 {
		margin-bottom: 20px;
		font-size: 1.2rem;
		line-height: 1.4;
	}

	.table_type3,
	.table_type4,
	.table_type5 {
		margin-bottom: 10px;
		font-size: 1.0rem;
		line-height: 1.4;
	}

	.table_type1 th,
	.table_type1 td,
	.table_type2 th,
	.table_type2 td {
		padding: 8px;
	}
	
	.table_type3 th,
	.table_type3 td {
		padding: 8px;
	}
	.table_type1 th:first-child{
		border-top: 1px solid #ddd;
	}
	.table_type1 th{
		display: block;
    	border-top: 0px;
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
	    border-bottom: 1px solid #ddd;
	    width: 100%;
	}
	.table_type1 td{
		display: block;
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
    	border-top: 0px;
    	border-bottom: 1px solid #ddd;
	}	
	.table_type4 th,
	.table_type4 td,
	.table_type5 th,
	.table_type5 td {
		padding: 4px;
	}
	.table_member th{
		padding: 8px;
		font-size: 1.0em;
	}
	.table_member td{
		padding: 8px;
		font-size: 1.0em;
	}
	table .pale {
		margin-left: 0;
	}
	table .btn {
		padding-right: 10px;
	}
	
	table .btn a {
		padding: 0 15px 0 10px;
		font-size: 1.2rem;
	}

	.table_left {
		margin-bottom: 20px;
		width: 100%;
		float: none;	
	}
	
	.table_right {
		margin-left: 0;
		margin-bottom: 20px;
		width: 100%;
		float: none;	
	}
	
	.table_type4 caption,
	.table_type5 caption {
		margin-bottom: 5px;
		font-size: 1.4rem;
	}
	
	.scroll {
		margin-bottom: 20px;
		overflow: auto;
		white-space: nowrap;
	}
	
	.scroll::-webkit-scrollbar {
		 height: 2px;
	}

	.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}

	.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}

	.sitemap_box {
		margin-left: 0;
		width: 100%;
		float: none;
	}
	
	.sitemap_box h2 {
		margin: 0 0 15px 0;
		padding: 0;
		font-size: 1.6rem;
	}
	
	.sitemap_box h3 {
		margin: 0 0 15px 1em;
		font-size: 1.6rem;
	}
	
	.sitemap_box h4 {
		margin: 0 0 15px 2.5em;
		font-size: 1.6rem;
	}
}
/* =============================================================
Utility Module
============================================================= */
/* Text */
.txt_l {
	font-size: 18px !important;
}
.txt_overflow {
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Align */
.center {
	text-align: center;
	margin: 0 auto;
}
/* Width */
.m_wid200 {
	max-width: 200px;
}
.m_wid300 {
	max-width: 300px;
}
/* Margin */
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
/* Block */
.clearfix{
	clear: both;
}
.blk_col2 {
	display: inline-block;
	vertical-align: top;
}
.blk_col2:first-child {
	margin-right: 30px;
}
.blk_tbl {
	display: table-cell;
	vertical-align: top;
	padding-right: 30px;
}
.blk_tbl:last-child {
	padding-right: 0;
}
.sp{
	display: none;
}
@media screen and (max-width: 767px) {
	.sp{
		display: block;
	}
	.pc {
		display: none;
	}
	.blk_col2 {
		display: block;
		margin: 0 auto;
	}
	.blk_col2:first-child {
		margin-right: 0;
	}
	.blk_tbl {
		display: block;
		margin: 0 auto;
		padding-right: 0;
	}
}