.mypage {
	position: relative;
}

.basic_info {
	position:absolute;
	left:160px;
	top:115px;
	font-weight:bold;
	font-size:150%;
	z-index: 20;
}

.mypage input[type=radio] + label {
	margin: 0 !important;
}

.tabs {
    position: relative;
	margin: 40px auto;
/*	width: 100%; */
}

.tabs input {
	position: absolute;
	z-index: 1000;
	width: 150px;
	height: 90px;
	left: 0px;
	top: 0px;
	opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
	cursor: pointer;
}
.tabs input#tab-2{
	left: 155px;
}
.tabs input#tab-3{
	left: 310px;
}
.tabs input#tab-4{
	left: 465px;
}

.tabs input#tab-5{
	left: 620px;
}

.tabs label {
	background: #5ba4a4;
	background: -moz-linear-gradient(top, #fafafa 0%, #eaeaea 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fafafa), color-stop(100%,#eaeaea));
	background: -webkit-linear-gradient(top, #fafafa 0%,#eaeaea 100%);
	background: -o-linear-gradient(top, #fafafa 0%,#eaeaea 100%);
	background: -ms-linear-gradient(top, #fafafa 0%,#eaeaea 100%);
	background: linear-gradient(top, #fafafa 0%,#eaeaea 100%);
	font-size: 15px;
	line-height: 40px;
	height: 100px;
	position: relative;
	padding: 0 20px;
    float: left;
	display: block;
	width: 115px;
	color: #385c5b;
	top: 0px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
    border-radius: 3px 3px 0 0;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1), -2px 0 2px rgba(0,0,0,0.1);
}

.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 8px;
	display: block;
}

.tabs input:hover + label {
	background: #eaeaea;
	top: -8px;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}
.tabs input:hover + label:after{
	background: #eaeaea;
}
.tabs input:hover + label ~ .clear-shadow {
    top: -8px;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}

.tabs input:checked:hover + label {
    top: 0;
}
.tabs input:checked:hover + label:after{
	background: #fff;
}
.tabs input:checked:hover + label ~ .clear-shadow {
    top: 0;
	background: #fff;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}

.tabs input.tab-selector-1:hover + label.tab-label-1 ~ .clear-shadow{
    z-index: 4;
}

.tabs input.tab-selector-2:hover + label.tab-label-2 ~ .clear-shadow {
    z-index: 3;
}

.tabs input.tab-selector-3:hover + label.tab-label-3 ~ .clear-shadow {
    z-index: 2;
}

.tabs input.tab-selector-4:hover + label.tab-label-4 ~ .clear-shadow {
    z-index: 1;
}
.tabs input.tab-selector-5:hover + label.tab-label-5 ~ .clear-shadow {
    z-index: 0;
}
.tabs label:first-of-type {
    z-index: 5;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}

.tab-label-2 {
    z-index: 4;
}

.tab-label-3 {
    z-index: 3;
}

.tab-label-4 {
    z-index: 2;
}

.tab-label-5 {
    z-index: 1;
}

.tabs input:checked + label {
    background: #fff;
	z-index: 8;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}

.clear-shadow {
    background: #eaeaea;
	position: relative;
	top: 0;
    height: 10px;
	margin-bottom: -10px;
    clear: both;
	z-index: -2;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2);
    border-radius: 3px;
}

.my_content {
    background: #fff;
	position: relative;
    width: 100%;
/*	min-height: 920px; */
	min-height: 1050px;
	z-index: 5;
	overflow: hidden;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2), 0 2px 2px rgba(0,0,0,0.1);
    border-radius: 0 3px 3px 3px;
}

.my_content h2 {
	position: relative;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #3498db;
	font-weight: bold;
}
.my_content h2::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}

.my_content div.content_page {
    position: absolute;
	top: 0;
	left: 0;
	bottom: 100%;
	padding: 40px 40px;
	overflow: hidden;
	z-index: 1;
    opacity: 0;
    -webkit-transition: all linear 0.1s;
    -moz-transition: all linear 0.1s;
    -o-transition: all linear 0.1s;
    -ms-transition: all linear 0.1s;
    transition: all linear 0.1s;
}

.content_page h3 {
	position:relative;
	padding:6px;
	padding-left:15px;
	font-weight: bold;
	font-size: 16px;
	background-color: #51A2C1;
	color: #fff !important;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-ms-border-radius:3px;
	border-radius:3px;
	margin-bottom: 5px;
}

.content_page h3:before{
	content:''; 
	height:25px; 
	width:2px; 
	display:block; 
	position:absolute; 
	top:3px; 
	left:4px; 
	background-color:#fff;
	border-left: 4px solid #fff;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-ms-border-radius:3px;
	border-radius:3px;
}

.sub_heading {
	position:relative;
	padding:6px;
	padding-left:15px;
	font-weight: bold;
	font-size: 16px;
	background-color: #3C924A;
	color: #fff !important;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-ms-border-radius:3px;
	border-radius:3px;
	margin-bottom: 5px;
}

.sub_heading:before{
	content:''; 
	height:25px; 
	width:2px; 
	display:block; 
	position:absolute; 
	top:3px; 
	left:4px; 
	background-color:#fff;
	border-left: 4px solid #fff;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-ms-border-radius:3px;
	border-radius:3px;
}

.grid_menu li {
	margin: 5px;
	float: left;
	list-style: none;
}

/******************************/
/* 学会誌・抄録集　EPUB版説明 */
/******************************/

.journal_info {
	display: none;
}

.accordion_top {
	position:relative;
}

/*
div.journal_sub_nav {
	text-align: center;
	position: absolute;
	top: 12px;
	margin-left: 120px;
	width: 90%;
	height: 20px;
}
*/
ul.journal_sub_nav{
	position: absolute;
	top: 10px;
	left: 160px;
	height: 30px;
}	

.journal_sub_nav {
	overflow: hidden;
    clear: both;
    width: 90%;
}

.journal_sub_nav ul li > a {
	font-size: 1.0em !important;
}


.journal_sub_nav li {
	text-align: center;
	line-height: 1.5em !important;
    width: 15%;
    margin-bottom: 2%;
    padding: 0 0.98%;
	float: left;
	border-right: #CCCCCC 1px solid !important;
	border-bottom: none !important;
}

.journal_sub_nav li:first-child {
/*	border-right: none !important; */
	border-left: #CCCCCC 1px solid !important;
}


@media screen and (-webkit-min-device-pixel-ratio:0) {
	.content_page h3:before {
		top:5px !important; 
	}
}

.tabs input.tab-selector-1:checked ~ .my_content .content-1,
.tabs input.tab-selector-2:checked ~ .my_content .content-2,
.tabs input.tab-selector-3:checked ~ .my_content .content-3,
.tabs input.tab-selector-4:checked ~ .my_content .content-4,
.tabs input.tab-selector-5:checked ~ .my_content .content-5 {
	width: 95%;
	bottom: 0px;
    z-index: 100;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all ease-out 0.2s 0.2s;
    -moz-transition: all ease-out 0.2s 0.2s;
    -o-transition: all ease-out 0.2s 0.2s;
    -ms-transition: all ease-out 0.2s 0.2s;
    transition: all ease-out 0.2s 0.2s;
}

.my_content div h2,
.my_content div h3{
	color: #666666;
}

/*
.my_content div p {
	font-size: 14px;
	line-height: 22px;
	font-style: italic;
	text-align: left;
	margin: 0;
	color: #777;
	padding-left: 15px;
	font-family: Cambria, Georgia, serif;
	border-left: 8px solid rgba(63,148,148, 0.1);
}
*/

.mybutton {
	display:table-cell;
	width: 120px;
	height: 80px;
	border: 1px solid #ddd;
	background-color: #ccc;
	background-image: -webkit-linear-gradient(top, #f3f0e2, #efebdd);
	background-image: linear-gradient(to bottom, #f3f0e2, #efebdd);
	border-radius: 4px;
	color: #666;
	padding: 20px 2px 5px;
	text-align: center;
/*	font-size: 130%; */
	line-height: 15px;
	-webkit-transition: none;
	transition: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 3px rgba(0, 0, 0, .2), inset 0 1px 1px rgba(255, 255, 255, .7);
/*
	display:table-cell;
	width: 200px;
	height: 200px;
	border: 1px solid #15aeec;
	background-color: #49c0f0;
	background-image: -webkit-linear-gradient(top, #49c0f0, #2cafe3);
	background-image: linear-gradient(to bottom, #49c0f0, #2cafe3);
	border-radius: 4px;
	color: #fff;
	line-height: 50px;
	-webkit-transition: none;
	transition: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 3px rgba(0, 0, 0, .2), inset 0 1px 1px rgba(255, 255, 255, .7);
*/
}
.mybutton:hover {
	border:1px solid #ccc;
	background-color: #ccc;
	background-image: -webkit-linear-gradient(top, #f3f0e2, #d8d2bf);
	background-image: linear-gradient(to bottom, #f3f0e2, #d8d2bf);
/*
	background-image: -webkit-linear-gradient(top, #1ab0ec, #1a92c2);
	background-image: linear-gradient(to bottom, #1ab0ec, #1a92c2);
*/
}
.mybutton:active {
	background: #d8d2bf;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
	color: #1679a1;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}

.btn_logout {
	left: 300px;
}

.list th{
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
/*	width: 100px; */
	padding: 3px 5px 2px 5px !important;
}
.list td{
	 padding: 3px 5px 2px 5px !important;
}

.list th.section_title {
	background-color: #ccc;
	background-image: -webkit-linear-gradient(top, #f3f0e2, #d8d2bf);
	background-image: linear-gradient(to bottom, #f3f0e2, #d8d2bf);
}

table.round_table {
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-radius: 8px;
	background: #F1F1EB;
}

table.round_table tr:first-child td:last-child {
	border-radius: 0 8px 0 0;
}
table.round_table tr:last-child td:first-child {
	border-radius: 0 0 0 8px;
}
table.round_table tr:last-child td:last-child {
	border-radius: 0 0 8px 0;
}
table.round_table td {
	padding: 5px 10px;
}

#calendar h2{
	border-left: none;
	padding:10px 15px;
	background: #1D8ADE;
	color:#FFF;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
	border-radius:4px;
	text-shadow:1px 1px 2px #333;
	box-shadow:inset -1px -1px 2px rgba(0,0,0, 0.6),inset 1px 1px 2px rgba(255,255,255,0.8);
}

.mypage_menu_area {
	width: 46%;
	float: right;
	position: relative;
	height: 85%;
}
.mypage_top_menu {
	background: #FAFAFA;
	color: #111;
	border: 1px solid #EEE;
	-ms-box-shadow: -1px -1px 1px rgba(000,000,000,0.3),1px 1px 1px rgba(255,255,255,1);
	-moz-box-shadow: -1px -1px 1px rgba(000,000,000,0.3),1px 1px 1px rgba(255,255,255,1);
	-webkit-box-shadow: -1px -1px 1px rgba(000,000,000,0.3),1px 1px 1px rgba(255,255,255,1);
	padding: 10px 3px;
	margin-top: 35px;
}

.calendar_tooltips {
	position: absolute;
	bottom: -2.8em;
	left: 0.3em;
	z-index: 9998;
	padding: 0.3em 0.5em;
	color: #666666;
	background: #F8F8F8;
	border: 1px solid #c72439;
	border-radius: 0.5em;
	/* max-height: 100px; */
	/*box-shadow*/
	box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -webkit-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -moz-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -ms-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
}
.calendar_tooltips:after {
	z-index: 9999;
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	left: 0.5em;
	top: -8px;
	border-top:8px solid transparent;
	border-left:8px solid #c72439;
}

.list_info dt, .list_info dd{
/*	line-height: 1.2em; */
	line-height: 1.0em; 
/*	margin-top:  1.0em; */
}

.list_info dt{
	border: none;
	clear: left;
	float: left;
	text-indent: 0px;
	font-weight: bold;
	margin-bottom: 0px;
	width: 140px;
	text-align: left;
	padding: 0px 5px;
}

.list_info dd{
	padding: 5px 5px;
	margin-top: 14px;
	min-height: 1.0rem;
/*	padding: 20px 5px 10px 0px; */
/*	margin-left: 80px; */
}

.info_important_frame {
/*	background: #FFFDF4; */
	background: #FFEEEE;
	background: -ms-linear-gradient(top,#FFFDF7 0%,#F4EAD5);
	background: -moz-linear-gradient(top,#FFFDF7 0%,#F4EAD5);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFDF7), to(#F4EAD5));
/*	border: #EEEEEE solid 1px; */
	border: #990000 solid 1px;
	border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	width: 100%;
	padding: 5px 5px;
	margin-left: -5px;
}

/* マイページ資格取得リストヘッダ */
#mypage_shikaku tr.head td {
	background: #EEEEEE;
	border-right: solid 1px #FFFFFF;
	text-align: center;
}

/************************************************

	お知らせタブボタン

*************************************************/
.info_tabs {
	position: relative;
	margin-top: 10px;
}

.info_tab_group {
	border-bottom: 3px solid #0099CC;
	height: 27px;
}

.info_tab_btn {
	text-align: center;
	line-height: 20px;
	background: #FAFAFA;
	background: -ms-linear-gradient(top,#FFF 0%,#FFF 3%,#E6E6E6 3%,#FFF);
	background: -moz-linear-gradient(top,#FFF 0%,#FFF 3%,#E6E6E6 3%,#FFF);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(0.03,#FFF), color-stop(0.03,#E6E6E6), to(#FFF));
	color: #111;
	border-radius: 8px 8px 0px 0px;
	-ms-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border: 1px solid #CCC;
	border-bottom: 3px solid #0099CC;
	width: 85px;
	padding: 3px 0;
	float: left;
}

.info_tab_btn a{
	display: block;
    width:100%;
    height:100%;
	color: #111;
}

.info_tab_btn_enabale {
	text-align: center;
	line-height: 20px;
	background: #0099CC;
	background: -ms-linear-gradient(top,#B1D2E0 0%,#B1D2E0 3%,#0099CC 3%,#069);
	background: -moz-linear-gradient(top,#B1D2E0 0%,#B1D2E0 3%,#0099CC 3%,#069);
	background: -webkit-gradient(linear, left top, left bottom, from(#B1D2E0), color-stop(0.03,#B1D2E0), color-stop(0.03,#0099CC), to(#069));
	color: #FFF;
	border-radius: 8px 8px 0px 0px;
	-ms-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border: 1px solid #09C;
	border-bottom: 3px solid #09C;
	width: 85px;
	padding: 3px 0;
	float: left;
}

.info_tab_btn_enabale a{
	display: block;
    width:100%;
    height:100%;
	color: #FFF;
}

.event_color_sq {
	display: block;
	float: left;
	border: #CCCCCC 1px solid;
	width: 10px;
	height: 10px;
}

.event_item {
    cursor: pointer;
}

.event_item:hover {
    color: #1D8ADE;
}

.event_item_detail {
	width: 90%;
	padding: 5px 5px 5px 5px;
	margin-left: 30px;
	color: #444444;
	background: #F8F8F8;
/*	border: 1px solid #c72439; */
	border: 1px solid #1D8ADE;
	border-radius: 0.5em;
	max-height: 100px;
	/*box-shadow*/
	box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -webkit-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -moz-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -ms-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
	display: none;
}

/********************************************************************

	Email Hint Help（会員マイページ個人情報でのEmail変更ヒント）

*********************************************************************/
#email-help-sign li {
	position:relative;
}
#email-help-sign li:hover {
	background: #ffffff;
}
.email-sample {
	display: none;
	position: absolute;
	bottom: -2.8em;
	top: -20em;
	left: 0em;
	z-index: 9999;
	padding: 0.3em 0.5em;
	color: #FFFFFF;
	border-radius: 0.5em;
	background: url(../img/chg_emal_hlp.png) no-repeat;
	width:300px;
	height:240px;
}
/*
.email-sample:after {
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	left: 0.5em;
	top: -8px;
	border-top:8px solid transparent;
	border-left:8px solid #c72439;
}
*/
#email-help-sign div:hover~.email-sample {
/*	display: block; */
	display:inline-block;
}
.email-question {
	display:inline-block;
	backface-visibility: hidden;
	position: absolute;
	top: -1.4em;
	left: 4.0em;
	width:19px;
	height:19px;
	background: url(../img/ico_question.png) no-repeat;
}

/* IE10 Over Hack */
@media all and (-ms-high-contrast: none){
  .email-question{
	top: -1.3em;
  }
}

/* Chrome Hack */
@media screen and (-webkit-min-device-pixel-ratio:0){
  .email-question{
	top: -1.3em;
  }
}

/* PC用 */
@media only screen and (min-width:960px){	
	.mypage_news, .individual_data {
 		float:left;
		width:50%;
	}
	
	.individual_other_data {
		 float: right;
		 width: 45%;
		 margin-left: 30px;
	}

	.event_list_frame{
	 	float:left;
		width:40%;
	 }
	 
	.calendar_frame {
		float: right;
		width: 60%;
	}

	.seminar_list_frame{
	 	float:left;
		width:55%;
	 }
	 
	.seminar_frame {
		float: right;
		width: 45%;
	}

	.list_seminar p {
		border-bottom: dotted #CCCCCC 1px;
		float: left;
		width: 95%;
		line-height: 35px;
		text-indent: 15px;
		font-weight: bold;
		text-align: left;
		padding: 10px 5px;
	}

}


/* モニター幅940px以下 */
@media only screen and (max-width:940px){
	.my_content {
		min-height: 1250px !important;
	}
	.tabs input.tab-selector-1:checked ~ .my_content .content-1,
	.tabs input.tab-selector-2:checked ~ .my_content .content-2,
	.tabs input.tab-selector-3:checked ~ .my_content .content-3,
	.tabs input.tab-selector-4:checked ~ .my_content .content-4,
	.tabs input.tab-selector-5:checked ~ .my_content .content-5 {
		width: 90% !important;
	}
	.mypage_news {
		width:auto;"
	 }

	.mypage_top_menu {
		display: none  !important;
		float: none !important;
	}

	.individual_other_data {
		 margin-top: 10px;
	}


}

@media only screen and (min-width: 768px) {
	.mypage-news-label {
		float:right;
		margin-top: -3px;
		line-height: 60%;
	}	
}

@media only screen and (min-width: 320px) and ( max-width: 640px ){
	.content_inner {
		padding: 15px;
	}
	
	.mypage-news-date-label{
		width: auto !important;
		margin-top: 5px;
	}
	
	.mypage-news-label {
		line-height: 60%;
		margin-top: 0px;
	}
	
	.mypage-period-cell {
		line-height: 1.0em;
		text-align:center;
	}
	
	.mypage-period-time::before {
		content: "\A" ;
		white-space: pre ;
	}
}