@charset "UTF-8";

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
article,
aside,
dialog,
figure,
footer,
header,
button,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;

	font-size: 1em;
}

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

body {
	-webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
}

table,
input,
select,
option {
	line-height: 1.1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

button,
input:not([type="text"]),
select {
	margin: 0;
	cursor: pointer;
}

button,
input,
select {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

img {
	vertical-align: top;
}

a,
a:link {
	color: #000;
	text-decoration: none;
}

a:visited {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: none;
}

a:active {
	color: #000;
	text-decoration: none;
}

a:active,
a:hover {
	outline-width: 0;
}

/*PCへ切り替え*/
@media only screen and (min-width: 768px) {}

/*SPへ切り替え*/
@media only screen and (max-width: 767px) {
	a {
		text-decoration: none;
	}

	img {
		max-width: 100%;
		height: auto;
	}
}


/*------------------------------------------------------------
	書式設定
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft {
	text-align: left !important;
}

.taCenter {
	text-align: center !important;
}

.taRight {
	text-align: right !important;
}

.vTop {
	vertical-align: top !important;
}

.vMiddle {
	vertical-align: middle !important;
}

/* フォントの太さ */
.fwNormal {
	font-weight: normal !important;
}

.fwBold {
	font-weight: bold !important;
}

/*------------------------------------------------------------
	微調整用クラス（※多用しないこと）
------------------------------------------------------------*/
.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.clearfix {
	*zoom: 1;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
}

/*------------------------------------------------------------
	トラッキングタグの余計なスペースを削除
------------------------------------------------------------*/
.trackTags {
	display: none;
}

/*------------------------------------------------------------
	表示・非表示
------------------------------------------------------------*/
/*PCへ切り替え*/
@media only screen and (min-width: 768px) {
	.is_hide_type_pc {
		display: none;
	}
}

/*SPへ切り替え*/
@media only screen and (max-width: 767px) {
	.is_hide_type_sp {
		display: none;
	}
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1000px;
	/* ウインドウ幅で横スクロール時に背景が切れるバグ対策でコンテンツと同じ幅を指定 */
	color: #000;
	line-height: 1.5;
	text-align: center;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background: url(/assets/img/common/body_bg.jpg) repeat center top;
}

#container {
	text-align: left;
}

#main {
	margin: 0 auto;
	padding: 34px 0 127px;
	width: 820px;
	font-size: 1.4rem;
}

#main:after {
/*	display: block;
	clear: both;
	content: "";*/
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header {
	padding: 10px 0;
	position: relative;
	background: #fff url(/assets/img/common/header_bg.png) repeat-x left bottom;
	box-shadow: 0 0 15px #333;
	z-index: 100;
}

#header .hBox {
	margin: 0 auto;
	width: 940px;
}

#header h1 {
	float: left;
}

.menuBox {
	width: 100%;
	position: absolute;
	top: 70px;
	left: 0;
	display: none;
	background-color: #fff;
	z-index: 90;
}

.menuBox li {
	border-bottom: 1px solid #d2d2d2;
}

.menuBox a,
.menuBox span {
	padding: 10px 18px 9px 38px;
	display: block;
	font-size: 1.8rem;
	background: url(/assets/img/common/icon04.png) no-repeat 18px center;
	background-size: 13px auto;
}

.menuBox .subMenu {
	border-top: 1px solid #d2d2d2;
}

.menuBox .subMenu a,
.menuBox .subMenu span {
	padding: 7px 18px 5px 55px;
	font-size: 1.6rem;
	background-position: 38px center;
}

.menuBox a:active,
.menuBox a:hover {
	color: #660000;
	background-color: #ccc;
}

/*------------------------------------------------------------
	グローバルナビ
------------------------------------------------------------*/
#gNavi {
	margin-top: 8px;
	/*width: 776px;*/
	max-width: 600px;
	float: left;
	margin-left: 35px;
	font-size: 0;
}

#gNavi ul>li {
	padding-bottom: 5px;
	position: relative;
	display: inline-block;
	font-size: 1.6rem;
}

#gNavi a,
#gNavi span {
	padding: 0 10px 0 9px;
	color: #000;
	font-size: 1.4rem;
	text-decoration: none;
	cursor: pointer;
}

#gNavi a:hover {
	filter: alpha(opacity=70);
	opacity: 0.7;
}

#gNavi .subNavi {
	/*	width: 150px;*/
	width: auto;
	white-space: nowrap;

	position: absolute;
	top: 30px;
	left: 0;
	display: none;
	border-bottom: 1px solid #d2d2d2;
	z-index: 110;
}

#gNavi .subNavi li {
	padding-bottom: 0;
	display: block;
}

#gNavi .subNavi a {
	padding: 5px 5px 5px 17px;
	display: block;
	font-size: 1.4rem;
	border: 1px solid #d2d2d2;
	border-bottom: none;
	background: #fff url(/assets/img/common/icon03.png) no-repeat 5px center;
}

#gNavi .subNavi a:hover {
	color: #660000;
	filter: alpha(opacity=100);
	opacity: 1;
	background-color: #ccc;
}


/* 会員専用ボタン
------------------------------------------------------------ */
.membersBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff !important;
	background: #44a !important;
	border-radius: 10px;
	width: 135px;
	height: 46px;
	float: right;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: .1em;
	margin-top: 10px;
	margin-right: 10px;
}

.membersBtn::after {
	content: "";
	
}

.membersBtn.sp {
	display: none;
}

@media only screen and (max-width: 767px) {
	.membersBtn.pc {
		display: none;
	}
	
	.membersBtn.sp {
		display: flex;
		margin: 15px auto;
		width: 240px;
		float: none;
		font-size: 1.8rem;
		padding: 0;
	}
}

/* 会員専用ページ 共通タイトル
------------------------------------------------------------ */
.membersBg {
	background: #ccccff;
	display: none;
}

.membersBg h1 {
	font-size: 2rem;
	color: #fff;
	max-width: 960px;
	margin: 0 auto;
	padding: 20px 15px;
}

.post-type-archive-notice .membersBg,
.post-type-archive-lectures .membersBg,
.single-notice .membersBg,
.single-lectures .membersBg,
.membersTop .membersBg {
	display: block;
}


/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer {
	padding: 25px 0 22px;
	position: relative;
	text-align: center;
	background-color: #f08200;
}

#footer .pageTop {
	position: fixed;
	bottom: 40px;
	right: 250px;
}

#footer .fBox {
	margin: 0 auto;
	width: 800px;
}

#footer .fImg {
	margin-left: -99px;
	position: absolute;
	top: -79px;
	left: 50%;
	z-index: 50;
}

#footer .fNavi {
	margin-bottom: 8px;
	font-size: 0;
}

#footer .fNavi li {
	color: #fff;
	font-size: 1.5rem;
	display: inline-block;
}

#footer .fNavi a {
	margin: 0 11px;
	color: #fff;
	font-size: 1.5rem;
	text-decoration: none;
}

#footer .fNavi a:hover {
	text-decoration: underline;
}

#footer .copyright {
	color: #fff;
	font-size: 1.5rem;
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	padding: 13px 0 0 24px;
	height: 80px;
	background-color: #e04984;
	border-radius: 10px;
	box-sizing: border-box;
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	padding-left: 20px;
	font-size: 2rem;
	background: url(/assets/img/common/icon01.png) no-repeat 2px 7px;
}

/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
#main .headLine03 {
	margin-bottom: 7px;
	padding-bottom: 3px;
	color: #000;
	font-size: 2rem;
	line-height: 1.2;
	border-bottom: 2px solid #000;
}

/*------------------------------------------------------------
	comTabBox
------------------------------------------------------------*/
#main .comTabBox table {
	width: 100%;
	border-collapse: collapse;
}

#main .comTabBox a {
	color: #0033ff;
	text-decoration: underline;
}

#main .comTabBox a:hover {
	text-decoration: none;
}

#main .comTabBox .tag {
	margin-left: 4px;
	padding: 0 1px 0 2px;
	display: inline-block;
	color: #fff;
	line-height: 1;
	background-color: #ff0000;
}

#main .comTabBox th,
#main .comTabBox td {
	padding: 12px 5px 12px 15px;
	font-size: 1.4rem;
	text-align: left;
	vertical-align: middle;
	border: 1px solid #fff;
}

#main .comTabBox thead th {
	padding: 11px 15px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: normal;
	letter-spacing: 2px;
	background-color: #2962b7;
}

#main .comTabBox tbody tr {
	background-color: #f1f0fc;
}

#main .comTabBox tbody tr:nth-child(2n) {
	background-color: #eee8f9;
}

#main .comTabBox .thStyle01 {
	padding: 5px 5px 3px 10px;
	font-size: 1.2rem;
	line-height: 1.3;
	letter-spacing: normal;
}

#main .comTabBox tr td:last-child {
	padding: 12px 5px 12px;
	text-align: center;
}

#main .not_found .headLine01 {
	margin-bottom: 30px;
	padding: 24px 0 0 24px;
	color: #FFF;
	font-size: 2.5rem;
}

/* WPシングルページ */
.single-post #main p,
.single-post #main ul,
.single-post #main ol {
	margin-bottom: 15px;
}

.single-post #main ul li {
	margin-left: 15px;
	list-style-type: disc;
}

.single-post #main ol li {
	margin-left: 15px;
	list-style: decimal;
}

.single-post #main table {
	width: 100%;
	border-collapse: collapse;
}

.single-post #main table a {
	color: #0033ff;
	text-decoration: underline;
}

.single-post #main table a:hover {
	text-decoration: none;
}

.single-post #main table th,
.single-post #main table td {
	padding: 12px 5px 12px 15px;
	font-size: 1.4rem;
	text-align: left;
	vertical-align: middle;
	border: 1px solid #fff;
}

.single-post #main table thead th {
	padding: 11px 15px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: normal;
	letter-spacing: 2px;
	background-color: #2962b7;
}

.single-post #main table tbody tr {
	background-color: #f1f0fc;
}

.single-post #main table tbody tr:nth-child(2n) {
	background-color: #eee8f9;
}

.single-post #main .comTabBox tr td:last-child {
	padding: 12px 5px 12px;
	text-align: center;
}

.tip a {
	display: table;
	color: #0600ff;
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	body {
		min-width: inherit;
		background-size: 50px auto;
	}

	#main {
		padding: 16px 10px 63px;
	}

	/*------------------------------------------------------------
		ヘッダー
	------------------------------------------------------------*/
	#header {
		padding: 7px 7px 5px 6px;
		background: #fff url(/assets/img/common/sp_header_bg.png) repeat-x left bottom;
		background-size: auto 5px;
		box-shadow: 0 0 7px #333;
	}

	#header .hBox {
		width: auto;
	}

	#header h1 {
		width: 117px;
	}

	#header .rBox {
		width: 181px;
		float: right;
	}

	#header .rBox p {
		margin-top: 4px;
		width: 125px;
		float: left;
		color: #666;
		font-size: 1.1rem;
		line-height: 1.36;
	}

	#header .rBox .menu {
		width: 50px;
		float: right;
	}

	/*------------------------------------------------------------
		フッター
	------------------------------------------------------------*/
	#footer {
		padding: 17px 0 16px;
	}

	#footer .fBox {
		width: auto;
	}

	#footer .pageTop {
		right: 10px;
		bottom: 10px;
	}

	#footer .pageTop img {
		width: 25px;
		height: auto;
	}

	#footer .fImg {
		margin-left: -49px;
		width: 97px;
		top: -39px;
	}

	#footer .fNavi {
		margin-bottom: 2px;
	}

	#footer .fNavi a:hover {
		text-decoration: none;
	}

	/*------------------------------------------------------------
		headLine01
	------------------------------------------------------------*/
	.headLine01 {
		padding: 8px 0 0 12px;
		height: 40px;
		border-radius: 5px;
	}

	.headLine01 img {
		width: auto;
		height: 25px;
	}

	/*------------------------------------------------------------
		headLine02
	------------------------------------------------------------*/
	#main .headLine02 {
		padding-left: 16px;
		font-size: 1.8rem;
		background-position: left 7px;
		background-size: 15px auto;
	}

	/*------------------------------------------------------------
		headLine03
	------------------------------------------------------------*/
	#main .headLine03 {
		margin-bottom: 0;
		padding-bottom: 5px;
		font-size: 1.5rem;
		border-bottom-width: 1px;
	}

	/*------------------------------------------------------------
		comTabBox
	------------------------------------------------------------*/
	#main .comTabBox tbody td {
		width: 100%;
		display: block;
	}

	#main .comTabBox tr {
		margin-bottom: 11px;
		display: block;
		border-bottom: 1px solid #fff;
	}

	#main .comTabBox td,
	#main .comTabBox tr td:last-child {
		padding: 0;
		border-bottom: none;
		text-align: left;
	}

	#main .comTabBox .tableIn {
		width: 100%;
		display: table;
		font-size: 1.3rem;
		border-collapse: collapse;
	}

	#main .comTabBox .th,
	#main .comTabBox .td {
		padding: 0 2px;
		display: table-cell;
		line-height: 1.5;
	}

	#main .comTabBox .th {
		border-right: 1px solid #fff;
		width: 31.4%;
		color: #fff;
		box-sizing: border-box;
		background-color: #366bbc;
	}

	#main .comTabBox .td {
		padding-left: 5px;
		width: 68.6%;
	}

	#main .comTabBox .thLast {
		letter-spacing: -1px;
	}

	#main .comTabBox a {
		text-decoration: underline;
	}

	#main .comTabBox a:hover {
		text-decoration: underline;
	}

	#main .comTabBox .tag {
		padding: 2px 1px 0 3px;
		font-size: 1.2rem;
	}
}




/*------------------------------------------------------------
	pagerArea
------------------------------------------------------------*/
.pagerArea {
	margin-bottom: 10px;
}

.pagerArea .pageList {
	text-align: center;
}

.pagerArea .pageList li {
	display: inline-block;
}

.pagerArea .pageList li .page-numbers {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 2.0rem;
	font-weight: bold;
}

.pagerArea .pageList li .page-numbers.current {
	-webkit-box-shadow: 0 0 3px 3px #aaa inset;
	box-shadow: 0 0 3px 3px #aaa inset;
}