/* Reset CSS */
body {
    color: #333;
    line-height: 1.6em;
    margin: 10px 0;
    font-size: 75%;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

a img {
    border: 0;
}

ul, li, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

* {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    outline: none;
    
	-ms-content-zooming: none;
	-content-zooming: none;
}

html {
    font-size: 87.5%;
    background: #fbf8f4;
}

#wrapper {
    width:1024px;
    height: auto;
    margin: 0 auto;
}

/* link */

a:link {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

a:visited {
    color: inherit;

 }

a:hover {
    text-decoration: none;
    /*color: #5c3a90;*/
}

/*header*/
header {
    width: 100%;
    height: 64px;
    background: #f9f9f9;
    border-bottom: 1px solid #dad1cf;
}

.headerWrap {
    width: 1024px;
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
}
.headerWrap .titleArea {
    width: 50%;
    margin-left: 15px;
}

.headerWrap .logoArea {
    width: 50%;
    text-align: right;
    margin-right: 15px;
}
.headerWrap .logoArea p {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%); /* Safari用 */
    transform: translateY(-50%);
}

.setLeft{
    list-style:none;
    margin:0;
    padding:0;
    float:left;
    position:relative;
    height:62px;
}

.setLeft li{
    float:left;
    position:relative;
}

.setLeft li.iconGenre{
    margin:3px 0 0 0;
    position:relative;
    clear:both;
}

.setLeft li.lessonTitle {
    float: left;
    margin: 8px 0 0 8px;
    position: relative;
}
.setLeft li.lessonTitle .tit01 {
    font-size: 13px;
    font-weight: normal;
}
.setLeft li.lessonTitle .tit01 span {
    font-weight: normal;
}
.setLeft li.lessonTitle .tit02 {
    font-size: 19px;
    line-height: 20px;
    font-weight: bold;
    overflow: hidden;
    margin: 5px 0 0 0;
}

/* Contents */

.menuWrap {
    margin: 0 15px 5px ;
    overflow: hidden;
    color: #301e19;
}

.menuSection {
    margin: 20px 0 5px ;
}

.menuSection  h2 {
    font-weight: 600;
}

.explain {
    /*color:#666666;*/
    margin-top: 5px;
    font-size: 1.1em;
}

.menuWrap .chapterMenu {
    padding: 0;
    margin: 0 10px;
    border: 1px solid #dad1cf;
}

.menuWrap .chapterMenu  > li {	/* 170602 リンクの有無を視認しやすいよう、初期状態をグレーアウト（#CCCCCC） */
    background: #ffffff;
    border-bottom: 1px dotted #dad1cf;
    font-size: 1.1em;
    position: relative;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    color: #CCCCCC;
}

.menuWrap .chapterMenu  > li a {
    color: #301e19;
    display: block;
    padding: 16px 0 16px 14px;
}

.menuWrap .chapterMenu > li:last-child {
    border-bottom: 0;
}

.menuWrap .chapterMenu > li a:hover {
    background-color: rgba(247, 216, 94, 0.1);
}

.menuWrap .chapterMenu > li a:after {	/* 170418 リンクの有無を視認しやすいよう、矢印画像の割当ををaタグ依存に変更 */
    position: absolute;
    top: 35%;
    right: 20px;
    content: url(../img/arrowicon.png);
}

.menuWrap .chapterMenu > li:hover:after {
    position: absolute;
    top: 35%;
    right: 20px;
}

.chapter {	/* 20170509 間隔微調整のため、paddingを追加、統合 */
    font-size: 1.3em;
    /*font-weight: bold;*/
    width: 20%;
    display: inline-block;
	padding: 16px 0 16px 22px;
}

a > .chapter {	/* 20170509 aタグに内包された場合、paddingのサイズを縮小 */
	padding: 0 4px 0 8px;
}

#mainContainer {
    width:1024px;
    height:612px;
    margin:auto;
    position:relative;
    z-index: 1;
}

/*曲メニュー１行版ここまで*/
.exerciseList {
    height: 550px;
    overflow-y: scroll;
    background-color: #FFFFFF;
}

.exerciseList ul li {	/* 170602 リンクの有無を視認しやすいよう、初期状態をグレーアウト（#CCCCCC） */
    border-bottom: 1px dotted #dad1cf;
    position: relative;
    -webkit-transition: background .2s ;
    transition: background .2s ;
    color: #CCCCCC;
}
.exerciseList ul li .chapterNo {	/* 170509 aタグが無い場合の間隔調整のためpaddingとdisplay属性を追加 */
    font-size: 1.1em;
    font-weight: bold;
    position: absolute;
    top: 5px;
    padding: 0 0 0 30px;
    display: block;
}

.exerciseList2 ul li a > .chapterNo {	/* 170509 aタグに内包されている場合はpaddingが不要 */
	padding: 0;
}

.exerciseList ul li .exTitle {
    font-size: 1.4em;
    /*font-weight: bold;*/
    padding: 22px 0 22px 30px;
    display: block;
}

.exerciseList ul li a > .exTitle {	/* 170509 aタグが無い場合の間隔調整のためpaddingとdisplay属性を追加 */
	padding: 0;
}

.exerciseList ul li a {
    color: #301e19;
    display: block;
    padding: 22px 0 22px 30px;
}
.exerciseList ul li a:after {	/* 170418 矢印マークがaタグに付随するようセレクタを修正 */
    position: absolute;
    top: 40%;
    right: 20px;
    content: url(../img/arrowicon.png);
}

.exerciseList ul li a:hover {	/* 170418 矢印マークがaタグに付随するようセレクタを修正 */
    background-color: rgba(247, 216, 94, 0.1);

}
/*曲メニュー１行版ここまで*/


/*曲メニュー2行版ここから*/
.exerciseList2 {
    height: 550px;
    overflow-y: scroll;
    display: flex;
    display: -webkit-flex;
    background-color: #FFFFFF;
}

.exerciseList2 ul {
    width:50%;
}

.leftColumn > li {
    border-right: 1px solid #dad1cf;
}

.exerciseList2 ul li {	/* 170602 リンクの有無を視認しやすいよう、初期状態をグレーアウト（#CCCCCC） */
    border-bottom: 1px dotted #dad1cf;
    position: relative;
    -webkit-transition: background .2s ;
    transition: background .2s ;
    color: #CCCCCC;
}

.exerciseList2 ul li .chapterNo {	/* 170509 aタグが無い場合の間隔調整のためpaddingとdisplay属性を追加 */
    font-size: 1.1em;
    font-weight: bold;
    position: absolute;
    top: 5px;
    padding: 0 0 0 30px;
    display: block;
}

.exerciseList2 ul li a > .chapterNo {	/* 170509 aタグに内包されている場合はpaddingが不要 */
	padding: 0;
}

.exerciseList2 ul li .exTitle {	/* 170509 aタグが無い場合の間隔調整のためpaddingとdisplay属性を追加 */
    font-size: 1.4em;
    /*font-weight: bold;*/
    padding: 22px 0 22px 30px;
    display: block;
}

.exerciseList2 ul li a > .exTitle {	/* 170509 aタグに内包されている場合はpaddingが不要 */
	padding: 0;
}

.exerciseList2 ul li a {
    color: #301e19;
    display: block;
    padding: 22px 0 22px 30px;
}

.exerciseList2 ul li a:after {	/* 170509 矢印マークがaタグに付随するようセレクタを修正 */
    position: absolute;
    top: 40%;
    right: 20px;
    content: url(../img/arrowicon.png);
}

.exerciseList2 ul li a:hover {	/* 170509 矢印マークがaタグに付随するようセレクタを修正 */
    background-color: rgba(247, 216, 94, 0.1);

}
/*曲メニュー2行版ここまで*/


::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}

/* songMenuFooter */
#footerNavi{
    background-size: 100% auto;
    width:1024px;
    height:60px;
    position: relative;
    padding: 13px 0 0 0;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

#footerNavi .footerNaviElem{
    position: relative;
    top: 0;
    height: 100%;
    font-weight: bold;
    font-size: 14px;
    line-height: 55px;
    color: #666666;
    display: inline-block;
    text-align: center;
}

#footerNavi .center{
    position:relative;
    height: 53px;
    width: 100%;
    background: url('../img/btn_footer_return_lessonmenu_def.jpg') no-repeat;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

#footerNavi .center:hover{
    background: url('../img/btn_footer_return_lessonmenu_over.jpg') no-repeat;
}

#footerNavi .center .footerNaviElem{
    padding-left: 30px;
    background: url('../img/btn_footer_icon_menu.png') left center no-repeat;
}

#footerNavi .center .footerNaviElem:hover {
    background: url('../img/btn_footer_icon_menu_on.png') left center no-repeat;
}

/* songSelect */

.songSelect　{
    overflow: hidden;
    float: none;
}

.songSelect li {
    float: left;
    width: 50%;
    text-align: center;
    vertical-align: middle;
    position: relative;
    cursor: default;
}

.songSelect li  > a {	/* 170612 リンクの有無を視認しやすいよう、aタグの有無でカーソルの種類を変更 */
    cursor: pointer;
}

.songSelect .SongBtn {	/* 170612 リンクの有無を視認しやすいよう、初期状態をグレーアウト（#CCCCCC） */
    padding: 20px;
    color: #FFFFFF;
    margin: 10px;
    font-size: 1.1em;
    position: relative;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #CCCCCC;
    box-shadow: 0 4px 0 #AAAAAA;
}
.songSelect .SongBtn:after {
    position: absolute;
    top: 40%;
    right: 20px;
}
.songSelect a .SongBtn:hover {	/* 170612 リンクの有無を視認しやすいよう、aタグの有無でアクション */
    opacity: .9;
}

.songSelect a .SongBtn:active {	/* 170612 リンクの有無を視認しやすいよう、aタグの有無でアクション */
    top: 4px;
    box-shadow: none;
}

a > .SongBtn.col01 {	/* 170612 リンクの有無を視認しやすいよう、aタグの有無で着色 */
    background-color: #1E5980;
    box-shadow: 0 4px 0 #1e4a71;
}

a > .SongBtn.col02 {	/* 170612 リンクの有無を視認しやすいよう、aタグの有無で着色 */
    background-color: #B33D3C;
    box-shadow: 0 4px 0 #953c3b;
}
a > .SongBtn.col03 {	/* 170612 リンクの有無を視認しやすいよう、aタグの有無で着色 */
    background-color: #3CB360;
    box-shadow: 0 4px 0 #36954b;
}
a > .SongBtn.col04 {	/* 170612 リンクの有無を視認しやすいよう、aタグの有無で着色 */
    background-color: #C0BF53;
    box-shadow: 0 4px 0 #a2a151;
}

.songSelect .SongName {
    font-size: 1.4em;
    margin-bottom: 3px;
    display: block;
}

.songSelect .btnClose{
	padding: 20px;
	color: #FFFFFF;
	margin: 20px;
	font-size: 1.1em;
	position: relative;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	background-color: #666666;
	box-shadow: 0 4px 0 #333333;
	text-align: center;
	width: 200px;
	left: 100%;
	margin-left: -120px;
}
	.songSelect .btnClose:hover {
	    opacity: .9;
	}
	
	.songSelect .btnClose:active {
	    top: 4px;
	    box-shadow: none;
	}
